New upstream version 17.11.5
[deb_dpdk.git] / lib / librte_mbuf / rte_mbuf.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   Copyright 2014 6WIND S.A.
6  *   All rights reserved.
7  *
8  *   Redistribution and use in source and binary forms, with or without
9  *   modification, are permitted provided that the following conditions
10  *   are met:
11  *
12  *     * Redistributions of source code must retain the above copyright
13  *       notice, this list of conditions and the following disclaimer.
14  *     * Redistributions in binary form must reproduce the above copyright
15  *       notice, this list of conditions and the following disclaimer in
16  *       the documentation and/or other materials provided with the
17  *       distribution.
18  *     * Neither the name of Intel Corporation nor the names of its
19  *       contributors may be used to endorse or promote products derived
20  *       from this software without specific prior written permission.
21  *
22  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33  */
34
35 #ifndef _RTE_MBUF_H_
36 #define _RTE_MBUF_H_
37
38 /**
39  * @file
40  * RTE Mbuf
41  *
42  * The mbuf library provides the ability to create and destroy buffers
43  * that may be used by the RTE application to store message
44  * buffers. The message buffers are stored in a mempool, using the
45  * RTE mempool library.
46  *
47  * The preferred way to create a mbuf pool is to use
48  * rte_pktmbuf_pool_create(). However, in some situations, an
49  * application may want to have more control (ex: populate the pool with
50  * specific memory), in this case it is possible to use functions from
51  * rte_mempool. See how rte_pktmbuf_pool_create() is implemented for
52  * details.
53  *
54  * This library provides an API to allocate/free packet mbufs, which are
55  * used to carry network packets.
56  *
57  * To understand the concepts of packet buffers or mbufs, you
58  * should read "TCP/IP Illustrated, Volume 2: The Implementation,
59  * Addison-Wesley, 1995, ISBN 0-201-63354-X from Richard Stevens"
60  * http://www.kohala.com/start/tcpipiv2.html
61  */
62
63 #include <stdint.h>
64 #include <rte_common.h>
65 #include <rte_config.h>
66 #include <rte_mempool.h>
67 #include <rte_memory.h>
68 #include <rte_atomic.h>
69 #include <rte_prefetch.h>
70 #include <rte_branch_prediction.h>
71 #include <rte_mbuf_ptype.h>
72
73 #ifdef __cplusplus
74 extern "C" {
75 #endif
76
77 /*
78  * Packet Offload Features Flags. It also carry packet type information.
79  * Critical resources. Both rx/tx shared these bits. Be cautious on any change
80  *
81  * - RX flags start at bit position zero, and get added to the left of previous
82  *   flags.
83  * - The most-significant 3 bits are reserved for generic mbuf flags
84  * - TX flags therefore start at bit position 60 (i.e. 63-3), and new flags get
85  *   added to the right of the previously defined flags i.e. they should count
86  *   downwards, not upwards.
87  *
88  * Keep these flags synchronized with rte_get_rx_ol_flag_name() and
89  * rte_get_tx_ol_flag_name().
90  */
91
92 /**
93  * The RX packet is a 802.1q VLAN packet, and the tci has been
94  * saved in in mbuf->vlan_tci.
95  * If the flag PKT_RX_VLAN_STRIPPED is also present, the VLAN
96  * header has been stripped from mbuf data, else it is still
97  * present.
98  */
99 #define PKT_RX_VLAN          (1ULL << 0)
100
101 #define PKT_RX_RSS_HASH      (1ULL << 1)  /**< RX packet with RSS hash result. */
102 #define PKT_RX_FDIR          (1ULL << 2)  /**< RX packet with FDIR match indicate. */
103
104 /**
105  * Deprecated.
106  * Checking this flag alone is deprecated: check the 2 bits of
107  * PKT_RX_L4_CKSUM_MASK.
108  * This flag was set when the L4 checksum of a packet was detected as
109  * wrong by the hardware.
110  */
111 #define PKT_RX_L4_CKSUM_BAD  (1ULL << 3)
112
113 /**
114  * Deprecated.
115  * Checking this flag alone is deprecated: check the 2 bits of
116  * PKT_RX_IP_CKSUM_MASK.
117  * This flag was set when the IP checksum of a packet was detected as
118  * wrong by the hardware.
119  */
120 #define PKT_RX_IP_CKSUM_BAD  (1ULL << 4)
121
122 #define PKT_RX_EIP_CKSUM_BAD (1ULL << 5)  /**< External IP header checksum error. */
123
124 /**
125  * A vlan has been stripped by the hardware and its tci is saved in
126  * mbuf->vlan_tci. This can only happen if vlan stripping is enabled
127  * in the RX configuration of the PMD.
128  * When PKT_RX_VLAN_STRIPPED is set, PKT_RX_VLAN must also be set.
129  */
130 #define PKT_RX_VLAN_STRIPPED (1ULL << 6)
131
132 /**
133  * Mask of bits used to determine the status of RX IP checksum.
134  * - PKT_RX_IP_CKSUM_UNKNOWN: no information about the RX IP checksum
135  * - PKT_RX_IP_CKSUM_BAD: the IP checksum in the packet is wrong
136  * - PKT_RX_IP_CKSUM_GOOD: the IP checksum in the packet is valid
137  * - PKT_RX_IP_CKSUM_NONE: the IP checksum is not correct in the packet
138  *   data, but the integrity of the IP header is verified.
139  */
140 #define PKT_RX_IP_CKSUM_MASK ((1ULL << 4) | (1ULL << 7))
141
142 #define PKT_RX_IP_CKSUM_UNKNOWN 0
143 #define PKT_RX_IP_CKSUM_BAD     (1ULL << 4)
144 #define PKT_RX_IP_CKSUM_GOOD    (1ULL << 7)
145 #define PKT_RX_IP_CKSUM_NONE    ((1ULL << 4) | (1ULL << 7))
146
147 /**
148  * Mask of bits used to determine the status of RX L4 checksum.
149  * - PKT_RX_L4_CKSUM_UNKNOWN: no information about the RX L4 checksum
150  * - PKT_RX_L4_CKSUM_BAD: the L4 checksum in the packet is wrong
151  * - PKT_RX_L4_CKSUM_GOOD: the L4 checksum in the packet is valid
152  * - PKT_RX_L4_CKSUM_NONE: the L4 checksum is not correct in the packet
153  *   data, but the integrity of the L4 data is verified.
154  */
155 #define PKT_RX_L4_CKSUM_MASK ((1ULL << 3) | (1ULL << 8))
156
157 #define PKT_RX_L4_CKSUM_UNKNOWN 0
158 #define PKT_RX_L4_CKSUM_BAD     (1ULL << 3)
159 #define PKT_RX_L4_CKSUM_GOOD    (1ULL << 8)
160 #define PKT_RX_L4_CKSUM_NONE    ((1ULL << 3) | (1ULL << 8))
161
162 #define PKT_RX_IEEE1588_PTP  (1ULL << 9)  /**< RX IEEE1588 L2 Ethernet PT Packet. */
163 #define PKT_RX_IEEE1588_TMST (1ULL << 10) /**< RX IEEE1588 L2/L4 timestamped packet.*/
164 #define PKT_RX_FDIR_ID       (1ULL << 13) /**< FD id reported if FDIR match. */
165 #define PKT_RX_FDIR_FLX      (1ULL << 14) /**< Flexible bytes reported if FDIR match. */
166
167 /**
168  * The 2 vlans have been stripped by the hardware and their tci are
169  * saved in mbuf->vlan_tci (inner) and mbuf->vlan_tci_outer (outer).
170  * This can only happen if vlan stripping is enabled in the RX
171  * configuration of the PMD. If this flag is set,
172  * When PKT_RX_QINQ_STRIPPED is set, the flags (PKT_RX_VLAN |
173  * PKT_RX_VLAN_STRIPPED | PKT_RX_QINQ) must also be set.
174  */
175 #define PKT_RX_QINQ_STRIPPED (1ULL << 15)
176
177 /**
178  * When packets are coalesced by a hardware or virtual driver, this flag
179  * can be set in the RX mbuf, meaning that the m->tso_segsz field is
180  * valid and is set to the segment size of original packets.
181  */
182 #define PKT_RX_LRO           (1ULL << 16)
183
184 /**
185  * Indicate that the timestamp field in the mbuf is valid.
186  */
187 #define PKT_RX_TIMESTAMP     (1ULL << 17)
188
189 /**
190  * Indicate that security offload processing was applied on the RX packet.
191  */
192 #define PKT_RX_SEC_OFFLOAD              (1ULL << 18)
193
194 /**
195  * Indicate that security offload processing failed on the RX packet.
196  */
197 #define PKT_RX_SEC_OFFLOAD_FAILED       (1ULL << 19)
198
199 /**
200  * The RX packet is a double VLAN, and the outer tci has been
201  * saved in in mbuf->vlan_tci_outer.
202  * If the flag PKT_RX_QINQ_STRIPPED is also present, both VLANs
203  * headers have been stripped from mbuf data, else they are still
204  * present.
205  */
206 #define PKT_RX_QINQ          (1ULL << 20)
207
208 /* add new RX flags here */
209
210 /* add new TX flags here */
211
212 /**
213  * Request security offload processing on the TX packet.
214  */
215 #define PKT_TX_SEC_OFFLOAD              (1ULL << 43)
216
217 /**
218  * Offload the MACsec. This flag must be set by the application to enable
219  * this offload feature for a packet to be transmitted.
220  */
221 #define PKT_TX_MACSEC        (1ULL << 44)
222
223 /**
224  * Bits 45:48 used for the tunnel type.
225  * The tunnel type must be specified for TSO or checksum on the inner part
226  * of tunnel packets.
227  * These flags can be used with PKT_TX_TCP_SEG for TSO, or PKT_TX_xxx_CKSUM.
228  * The mbuf fields for inner and outer header lengths are required:
229  * outer_l2_len, outer_l3_len, l2_len, l3_len, l4_len and tso_segsz for TSO.
230  */
231 #define PKT_TX_TUNNEL_VXLAN   (0x1ULL << 45)
232 #define PKT_TX_TUNNEL_GRE     (0x2ULL << 45)
233 #define PKT_TX_TUNNEL_IPIP    (0x3ULL << 45)
234 #define PKT_TX_TUNNEL_GENEVE  (0x4ULL << 45)
235 /** TX packet with MPLS-in-UDP RFC 7510 header. */
236 #define PKT_TX_TUNNEL_MPLSINUDP (0x5ULL << 45)
237 /* add new TX TUNNEL type here */
238 #define PKT_TX_TUNNEL_MASK    (0xFULL << 45)
239
240 /**
241  * Second VLAN insertion (QinQ) flag.
242  */
243 #define PKT_TX_QINQ_PKT    (1ULL << 49)   /**< TX packet with double VLAN inserted. */
244
245 /**
246  * TCP segmentation offload. To enable this offload feature for a
247  * packet to be transmitted on hardware supporting TSO:
248  *  - set the PKT_TX_TCP_SEG flag in mbuf->ol_flags (this flag implies
249  *    PKT_TX_TCP_CKSUM)
250  *  - set the flag PKT_TX_IPV4 or PKT_TX_IPV6
251  *  - if it's IPv4, set the PKT_TX_IP_CKSUM flag
252  *  - fill the mbuf offload information: l2_len, l3_len, l4_len, tso_segsz
253  */
254 #define PKT_TX_TCP_SEG       (1ULL << 50)
255
256 #define PKT_TX_IEEE1588_TMST (1ULL << 51) /**< TX IEEE1588 packet to timestamp. */
257
258 /**
259  * Bits 52+53 used for L4 packet type with checksum enabled: 00: Reserved,
260  * 01: TCP checksum, 10: SCTP checksum, 11: UDP checksum. To use hardware
261  * L4 checksum offload, the user needs to:
262  *  - fill l2_len and l3_len in mbuf
263  *  - set the flags PKT_TX_TCP_CKSUM, PKT_TX_SCTP_CKSUM or PKT_TX_UDP_CKSUM
264  *  - set the flag PKT_TX_IPV4 or PKT_TX_IPV6
265  */
266 #define PKT_TX_L4_NO_CKSUM   (0ULL << 52) /**< Disable L4 cksum of TX pkt. */
267 #define PKT_TX_TCP_CKSUM     (1ULL << 52) /**< TCP cksum of TX pkt. computed by NIC. */
268 #define PKT_TX_SCTP_CKSUM    (2ULL << 52) /**< SCTP cksum of TX pkt. computed by NIC. */
269 #define PKT_TX_UDP_CKSUM     (3ULL << 52) /**< UDP cksum of TX pkt. computed by NIC. */
270 #define PKT_TX_L4_MASK       (3ULL << 52) /**< Mask for L4 cksum offload request. */
271
272 /**
273  * Offload the IP checksum in the hardware. The flag PKT_TX_IPV4 should
274  * also be set by the application, although a PMD will only check
275  * PKT_TX_IP_CKSUM.
276  *  - fill the mbuf offload information: l2_len, l3_len
277  */
278 #define PKT_TX_IP_CKSUM      (1ULL << 54)
279
280 /**
281  * Packet is IPv4. This flag must be set when using any offload feature
282  * (TSO, L3 or L4 checksum) to tell the NIC that the packet is an IPv4
283  * packet. If the packet is a tunneled packet, this flag is related to
284  * the inner headers.
285  */
286 #define PKT_TX_IPV4          (1ULL << 55)
287
288 /**
289  * Packet is IPv6. This flag must be set when using an offload feature
290  * (TSO or L4 checksum) to tell the NIC that the packet is an IPv6
291  * packet. If the packet is a tunneled packet, this flag is related to
292  * the inner headers.
293  */
294 #define PKT_TX_IPV6          (1ULL << 56)
295
296 #define PKT_TX_VLAN_PKT      (1ULL << 57) /**< TX packet is a 802.1q VLAN packet. */
297
298 /**
299  * Offload the IP checksum of an external header in the hardware. The
300  * flag PKT_TX_OUTER_IPV4 should also be set by the application, although
301  * a PMD will only check PKT_TX_OUTER_IP_CKSUM.
302  *  - fill the mbuf offload information: outer_l2_len, outer_l3_len
303  */
304 #define PKT_TX_OUTER_IP_CKSUM   (1ULL << 58)
305
306 /**
307  * Packet outer header is IPv4. This flag must be set when using any
308  * outer offload feature (L3 or L4 checksum) to tell the NIC that the
309  * outer header of the tunneled packet is an IPv4 packet.
310  */
311 #define PKT_TX_OUTER_IPV4   (1ULL << 59)
312
313 /**
314  * Packet outer header is IPv6. This flag must be set when using any
315  * outer offload feature (L4 checksum) to tell the NIC that the outer
316  * header of the tunneled packet is an IPv6 packet.
317  */
318 #define PKT_TX_OUTER_IPV6    (1ULL << 60)
319
320 /**
321  * Bitmask of all supported packet Tx offload features flags,
322  * which can be set for packet.
323  */
324 #define PKT_TX_OFFLOAD_MASK (    \
325                 PKT_TX_OUTER_IPV6 |      \
326                 PKT_TX_OUTER_IPV4 |      \
327                 PKT_TX_OUTER_IP_CKSUM |  \
328                 PKT_TX_VLAN_PKT |        \
329                 PKT_TX_IPV6 |            \
330                 PKT_TX_IPV4 |            \
331                 PKT_TX_IP_CKSUM |        \
332                 PKT_TX_L4_MASK |         \
333                 PKT_TX_IEEE1588_TMST |   \
334                 PKT_TX_TCP_SEG |         \
335                 PKT_TX_QINQ_PKT |        \
336                 PKT_TX_TUNNEL_MASK |     \
337                 PKT_TX_MACSEC |          \
338                 PKT_TX_SEC_OFFLOAD)
339
340 #define __RESERVED           (1ULL << 61) /**< reserved for future mbuf use */
341
342 #define IND_ATTACHED_MBUF    (1ULL << 62) /**< Indirect attached mbuf */
343
344 /* Use final bit of flags to indicate a control mbuf */
345 #define CTRL_MBUF_FLAG       (1ULL << 63) /**< Mbuf contains control data */
346
347 /** Alignment constraint of mbuf private area. */
348 #define RTE_MBUF_PRIV_ALIGN 8
349
350 /**
351  * Get the name of a RX offload flag
352  *
353  * @param mask
354  *   The mask describing the flag.
355  * @return
356  *   The name of this flag, or NULL if it's not a valid RX flag.
357  */
358 const char *rte_get_rx_ol_flag_name(uint64_t mask);
359
360 /**
361  * Dump the list of RX offload flags in a buffer
362  *
363  * @param mask
364  *   The mask describing the RX flags.
365  * @param buf
366  *   The output buffer.
367  * @param buflen
368  *   The length of the buffer.
369  * @return
370  *   0 on success, (-1) on error.
371  */
372 int rte_get_rx_ol_flag_list(uint64_t mask, char *buf, size_t buflen);
373
374 /**
375  * Get the name of a TX offload flag
376  *
377  * @param mask
378  *   The mask describing the flag. Usually only one bit must be set.
379  *   Several bits can be given if they belong to the same mask.
380  *   Ex: PKT_TX_L4_MASK.
381  * @return
382  *   The name of this flag, or NULL if it's not a valid TX flag.
383  */
384 const char *rte_get_tx_ol_flag_name(uint64_t mask);
385
386 /**
387  * Dump the list of TX offload flags in a buffer
388  *
389  * @param mask
390  *   The mask describing the TX flags.
391  * @param buf
392  *   The output buffer.
393  * @param buflen
394  *   The length of the buffer.
395  * @return
396  *   0 on success, (-1) on error.
397  */
398 int rte_get_tx_ol_flag_list(uint64_t mask, char *buf, size_t buflen);
399
400 /**
401  * Some NICs need at least 2KB buffer to RX standard Ethernet frame without
402  * splitting it into multiple segments.
403  * So, for mbufs that planned to be involved into RX/TX, the recommended
404  * minimal buffer length is 2KB + RTE_PKTMBUF_HEADROOM.
405  */
406 #define RTE_MBUF_DEFAULT_DATAROOM       2048
407 #define RTE_MBUF_DEFAULT_BUF_SIZE       \
408         (RTE_MBUF_DEFAULT_DATAROOM + RTE_PKTMBUF_HEADROOM)
409
410 /* define a set of marker types that can be used to refer to set points in the
411  * mbuf */
412 __extension__
413 typedef void    *MARKER[0];   /**< generic marker for a point in a structure */
414 __extension__
415 typedef uint8_t  MARKER8[0];  /**< generic marker with 1B alignment */
416 __extension__
417 typedef uint64_t MARKER64[0]; /**< marker that allows us to overwrite 8 bytes
418                                * with a single assignment */
419
420 /**
421  * The generic rte_mbuf, containing a packet mbuf.
422  */
423 struct rte_mbuf {
424         MARKER cacheline0;
425
426         void *buf_addr;           /**< Virtual address of segment buffer. */
427         /**
428          * Physical address of segment buffer.
429          * Force alignment to 8-bytes, so as to ensure we have the exact
430          * same mbuf cacheline0 layout for 32-bit and 64-bit. This makes
431          * working on vector drivers easier.
432          */
433         RTE_STD_C11
434         union {
435                 rte_iova_t buf_iova;
436                 rte_iova_t buf_physaddr; /**< deprecated */
437         } __rte_aligned(sizeof(rte_iova_t));
438
439         /* next 8 bytes are initialised on RX descriptor rearm */
440         MARKER64 rearm_data;
441         uint16_t data_off;
442
443         /**
444          * Reference counter. Its size should at least equal to the size
445          * of port field (16 bits), to support zero-copy broadcast.
446          * It should only be accessed using the following functions:
447          * rte_mbuf_refcnt_update(), rte_mbuf_refcnt_read(), and
448          * rte_mbuf_refcnt_set(). The functionality of these functions (atomic,
449          * or non-atomic) is controlled by the CONFIG_RTE_MBUF_REFCNT_ATOMIC
450          * config option.
451          */
452         RTE_STD_C11
453         union {
454                 rte_atomic16_t refcnt_atomic; /**< Atomically accessed refcnt */
455                 uint16_t refcnt;              /**< Non-atomically accessed refcnt */
456         };
457         uint16_t nb_segs;         /**< Number of segments. */
458
459         /** Input port (16 bits to support more than 256 virtual ports). */
460         uint16_t port;
461
462         uint64_t ol_flags;        /**< Offload features. */
463
464         /* remaining bytes are set on RX when pulling packet from descriptor */
465         MARKER rx_descriptor_fields1;
466
467         /*
468          * The packet type, which is the combination of outer/inner L2, L3, L4
469          * and tunnel types. The packet_type is about data really present in the
470          * mbuf. Example: if vlan stripping is enabled, a received vlan packet
471          * would have RTE_PTYPE_L2_ETHER and not RTE_PTYPE_L2_VLAN because the
472          * vlan is stripped from the data.
473          */
474         RTE_STD_C11
475         union {
476                 uint32_t packet_type; /**< L2/L3/L4 and tunnel information. */
477                 struct {
478                         uint32_t l2_type:4; /**< (Outer) L2 type. */
479                         uint32_t l3_type:4; /**< (Outer) L3 type. */
480                         uint32_t l4_type:4; /**< (Outer) L4 type. */
481                         uint32_t tun_type:4; /**< Tunnel type. */
482                         RTE_STD_C11
483                         union {
484                                 uint8_t inner_esp_next_proto;
485                                 /**< ESP next protocol type, valid if
486                                  * RTE_PTYPE_TUNNEL_ESP tunnel type is set
487                                  * on both Tx and Rx.
488                                  */
489                                 __extension__
490                                 struct {
491                                         uint8_t inner_l2_type:4;
492                                         /**< Inner L2 type. */
493                                         uint8_t inner_l3_type:4;
494                                         /**< Inner L3 type. */
495                                 };
496                         };
497                         uint32_t inner_l4_type:4; /**< Inner L4 type. */
498                 };
499         };
500
501         uint32_t pkt_len;         /**< Total pkt len: sum of all segments. */
502         uint16_t data_len;        /**< Amount of data in segment buffer. */
503         /** VLAN TCI (CPU order), valid if PKT_RX_VLAN_STRIPPED is set. */
504         uint16_t vlan_tci;
505
506         union {
507                 uint32_t rss;     /**< RSS hash result if RSS enabled */
508                 struct {
509                         RTE_STD_C11
510                         union {
511                                 struct {
512                                         uint16_t hash;
513                                         uint16_t id;
514                                 };
515                                 uint32_t lo;
516                                 /**< Second 4 flexible bytes */
517                         };
518                         uint32_t hi;
519                         /**< First 4 flexible bytes or FD ID, dependent on
520                              PKT_RX_FDIR_* flag in ol_flags. */
521                 } fdir;           /**< Filter identifier if FDIR enabled */
522                 struct {
523                         uint32_t lo;
524                         uint32_t hi;
525                 } sched;          /**< Hierarchical scheduler */
526                 uint32_t usr;     /**< User defined tags. See rte_distributor_process() */
527         } hash;                   /**< hash information */
528
529         /** Outer VLAN TCI (CPU order), valid if PKT_RX_QINQ_STRIPPED is set. */
530         uint16_t vlan_tci_outer;
531
532         uint16_t buf_len;         /**< Length of segment buffer. */
533
534         /** Valid if PKT_RX_TIMESTAMP is set. The unit and time reference
535          * are not normalized but are always the same for a given port.
536          */
537         uint64_t timestamp;
538
539         /* second cache line - fields only used in slow path or on TX */
540         MARKER cacheline1 __rte_cache_min_aligned;
541
542         RTE_STD_C11
543         union {
544                 void *userdata;   /**< Can be used for external metadata */
545                 uint64_t udata64; /**< Allow 8-byte userdata on 32-bit */
546         };
547
548         struct rte_mempool *pool; /**< Pool from which mbuf was allocated. */
549         struct rte_mbuf *next;    /**< Next segment of scattered packet. */
550
551         /* fields to support TX offloads */
552         RTE_STD_C11
553         union {
554                 uint64_t tx_offload;       /**< combined for easy fetch */
555                 __extension__
556                 struct {
557                         uint64_t l2_len:7;
558                         /**< L2 (MAC) Header Length for non-tunneling pkt.
559                          * Outer_L4_len + ... + Inner_L2_len for tunneling pkt.
560                          */
561                         uint64_t l3_len:9; /**< L3 (IP) Header Length. */
562                         uint64_t l4_len:8; /**< L4 (TCP/UDP) Header Length. */
563                         uint64_t tso_segsz:16; /**< TCP TSO segment size */
564
565                         /* fields for TX offloading of tunnels */
566                         uint64_t outer_l3_len:9; /**< Outer L3 (IP) Hdr Length. */
567                         uint64_t outer_l2_len:7; /**< Outer L2 (MAC) Hdr Length. */
568
569                         /* uint64_t unused:8; */
570                 };
571         };
572
573         /** Size of the application private data. In case of an indirect
574          * mbuf, it stores the direct mbuf private data size. */
575         uint16_t priv_size;
576
577         /** Timesync flags for use with IEEE1588. */
578         uint16_t timesync;
579
580         /** Sequence number. See also rte_reorder_insert(). */
581         uint32_t seqn;
582
583 } __rte_cache_aligned;
584
585 /**< Maximum number of nb_segs allowed. */
586 #define RTE_MBUF_MAX_NB_SEGS    UINT16_MAX
587
588 /**
589  * Prefetch the first part of the mbuf
590  *
591  * The first 64 bytes of the mbuf corresponds to fields that are used early
592  * in the receive path. If the cache line of the architecture is higher than
593  * 64B, the second part will also be prefetched.
594  *
595  * @param m
596  *   The pointer to the mbuf.
597  */
598 static inline void
599 rte_mbuf_prefetch_part1(struct rte_mbuf *m)
600 {
601         rte_prefetch0(&m->cacheline0);
602 }
603
604 /**
605  * Prefetch the second part of the mbuf
606  *
607  * The next 64 bytes of the mbuf corresponds to fields that are used in the
608  * transmit path. If the cache line of the architecture is higher than 64B,
609  * this function does nothing as it is expected that the full mbuf is
610  * already in cache.
611  *
612  * @param m
613  *   The pointer to the mbuf.
614  */
615 static inline void
616 rte_mbuf_prefetch_part2(struct rte_mbuf *m)
617 {
618 #if RTE_CACHE_LINE_SIZE == 64
619         rte_prefetch0(&m->cacheline1);
620 #else
621         RTE_SET_USED(m);
622 #endif
623 }
624
625
626 static inline uint16_t rte_pktmbuf_priv_size(struct rte_mempool *mp);
627
628 /**
629  * Return the IO address of the beginning of the mbuf data
630  *
631  * @param mb
632  *   The pointer to the mbuf.
633  * @return
634  *   The IO address of the beginning of the mbuf data
635  */
636 static inline rte_iova_t
637 rte_mbuf_data_iova(const struct rte_mbuf *mb)
638 {
639         return mb->buf_iova + mb->data_off;
640 }
641
642 __rte_deprecated
643 static inline phys_addr_t
644 rte_mbuf_data_dma_addr(const struct rte_mbuf *mb)
645 {
646         return rte_mbuf_data_iova(mb);
647 }
648
649 /**
650  * Return the default IO address of the beginning of the mbuf data
651  *
652  * This function is used by drivers in their receive function, as it
653  * returns the location where data should be written by the NIC, taking
654  * the default headroom in account.
655  *
656  * @param mb
657  *   The pointer to the mbuf.
658  * @return
659  *   The IO address of the beginning of the mbuf data
660  */
661 static inline rte_iova_t
662 rte_mbuf_data_iova_default(const struct rte_mbuf *mb)
663 {
664         return mb->buf_iova + RTE_PKTMBUF_HEADROOM;
665 }
666
667 __rte_deprecated
668 static inline phys_addr_t
669 rte_mbuf_data_dma_addr_default(const struct rte_mbuf *mb)
670 {
671         return rte_mbuf_data_iova_default(mb);
672 }
673
674 /**
675  * Return the mbuf owning the data buffer address of an indirect mbuf.
676  *
677  * @param mi
678  *   The pointer to the indirect mbuf.
679  * @return
680  *   The address of the direct mbuf corresponding to buffer_addr.
681  */
682 static inline struct rte_mbuf *
683 rte_mbuf_from_indirect(struct rte_mbuf *mi)
684 {
685         return (struct rte_mbuf *)RTE_PTR_SUB(mi->buf_addr, sizeof(*mi) + mi->priv_size);
686 }
687
688 /**
689  * Return the buffer address embedded in the given mbuf.
690  *
691  * @param md
692  *   The pointer to the mbuf.
693  * @return
694  *   The address of the data buffer owned by the mbuf.
695  */
696 static inline char *
697 rte_mbuf_to_baddr(struct rte_mbuf *md)
698 {
699         char *buffer_addr;
700         buffer_addr = (char *)md + sizeof(*md) + rte_pktmbuf_priv_size(md->pool);
701         return buffer_addr;
702 }
703
704 /**
705  * Returns TRUE if given mbuf is indirect, or FALSE otherwise.
706  */
707 #define RTE_MBUF_INDIRECT(mb)   ((mb)->ol_flags & IND_ATTACHED_MBUF)
708
709 /**
710  * Returns TRUE if given mbuf is direct, or FALSE otherwise.
711  */
712 #define RTE_MBUF_DIRECT(mb)     (!RTE_MBUF_INDIRECT(mb))
713
714 /**
715  * Private data in case of pktmbuf pool.
716  *
717  * A structure that contains some pktmbuf_pool-specific data that are
718  * appended after the mempool structure (in private data).
719  */
720 struct rte_pktmbuf_pool_private {
721         uint16_t mbuf_data_room_size; /**< Size of data space in each mbuf. */
722         uint16_t mbuf_priv_size;      /**< Size of private area in each mbuf. */
723 };
724
725 #ifdef RTE_LIBRTE_MBUF_DEBUG
726
727 /**  check mbuf type in debug mode */
728 #define __rte_mbuf_sanity_check(m, is_h) rte_mbuf_sanity_check(m, is_h)
729
730 #else /*  RTE_LIBRTE_MBUF_DEBUG */
731
732 /**  check mbuf type in debug mode */
733 #define __rte_mbuf_sanity_check(m, is_h) do { } while (0)
734
735 #endif /*  RTE_LIBRTE_MBUF_DEBUG */
736
737 #ifdef RTE_MBUF_REFCNT_ATOMIC
738
739 /**
740  * Reads the value of an mbuf's refcnt.
741  * @param m
742  *   Mbuf to read
743  * @return
744  *   Reference count number.
745  */
746 static inline uint16_t
747 rte_mbuf_refcnt_read(const struct rte_mbuf *m)
748 {
749         return (uint16_t)(rte_atomic16_read(&m->refcnt_atomic));
750 }
751
752 /**
753  * Sets an mbuf's refcnt to a defined value.
754  * @param m
755  *   Mbuf to update
756  * @param new_value
757  *   Value set
758  */
759 static inline void
760 rte_mbuf_refcnt_set(struct rte_mbuf *m, uint16_t new_value)
761 {
762         rte_atomic16_set(&m->refcnt_atomic, (int16_t)new_value);
763 }
764
765 /* internal */
766 static inline uint16_t
767 __rte_mbuf_refcnt_update(struct rte_mbuf *m, int16_t value)
768 {
769         return (uint16_t)(rte_atomic16_add_return(&m->refcnt_atomic, value));
770 }
771
772 /**
773  * Adds given value to an mbuf's refcnt and returns its new value.
774  * @param m
775  *   Mbuf to update
776  * @param value
777  *   Value to add/subtract
778  * @return
779  *   Updated value
780  */
781 static inline uint16_t
782 rte_mbuf_refcnt_update(struct rte_mbuf *m, int16_t value)
783 {
784         /*
785          * The atomic_add is an expensive operation, so we don't want to
786          * call it in the case where we know we are the uniq holder of
787          * this mbuf (i.e. ref_cnt == 1). Otherwise, an atomic
788          * operation has to be used because concurrent accesses on the
789          * reference counter can occur.
790          */
791         if (likely(rte_mbuf_refcnt_read(m) == 1)) {
792                 ++value;
793                 rte_mbuf_refcnt_set(m, (uint16_t)value);
794                 return (uint16_t)value;
795         }
796
797         return __rte_mbuf_refcnt_update(m, value);
798 }
799
800 #else /* ! RTE_MBUF_REFCNT_ATOMIC */
801
802 /* internal */
803 static inline uint16_t
804 __rte_mbuf_refcnt_update(struct rte_mbuf *m, int16_t value)
805 {
806         m->refcnt = (uint16_t)(m->refcnt + value);
807         return m->refcnt;
808 }
809
810 /**
811  * Adds given value to an mbuf's refcnt and returns its new value.
812  */
813 static inline uint16_t
814 rte_mbuf_refcnt_update(struct rte_mbuf *m, int16_t value)
815 {
816         return __rte_mbuf_refcnt_update(m, value);
817 }
818
819 /**
820  * Reads the value of an mbuf's refcnt.
821  */
822 static inline uint16_t
823 rte_mbuf_refcnt_read(const struct rte_mbuf *m)
824 {
825         return m->refcnt;
826 }
827
828 /**
829  * Sets an mbuf's refcnt to the defined value.
830  */
831 static inline void
832 rte_mbuf_refcnt_set(struct rte_mbuf *m, uint16_t new_value)
833 {
834         m->refcnt = new_value;
835 }
836
837 #endif /* RTE_MBUF_REFCNT_ATOMIC */
838
839 /** Mbuf prefetch */
840 #define RTE_MBUF_PREFETCH_TO_FREE(m) do {       \
841         if ((m) != NULL)                        \
842                 rte_prefetch0(m);               \
843 } while (0)
844
845
846 /**
847  * Sanity checks on an mbuf.
848  *
849  * Check the consistency of the given mbuf. The function will cause a
850  * panic if corruption is detected.
851  *
852  * @param m
853  *   The mbuf to be checked.
854  * @param is_header
855  *   True if the mbuf is a packet header, false if it is a sub-segment
856  *   of a packet (in this case, some fields like nb_segs are not checked)
857  */
858 void
859 rte_mbuf_sanity_check(const struct rte_mbuf *m, int is_header);
860
861 #define MBUF_RAW_ALLOC_CHECK(m) do {                            \
862         RTE_ASSERT(rte_mbuf_refcnt_read(m) == 1);               \
863         RTE_ASSERT((m)->next == NULL);                          \
864         RTE_ASSERT((m)->nb_segs == 1);                          \
865         __rte_mbuf_sanity_check(m, 0);                          \
866 } while (0)
867
868 /**
869  * Allocate an uninitialized mbuf from mempool *mp*.
870  *
871  * This function can be used by PMDs (especially in RX functions) to
872  * allocate an uninitialized mbuf. The driver is responsible of
873  * initializing all the required fields. See rte_pktmbuf_reset().
874  * For standard needs, prefer rte_pktmbuf_alloc().
875  *
876  * The caller can expect that the following fields of the mbuf structure
877  * are initialized: buf_addr, buf_iova, buf_len, refcnt=1, nb_segs=1,
878  * next=NULL, pool, priv_size. The other fields must be initialized
879  * by the caller.
880  *
881  * @param mp
882  *   The mempool from which mbuf is allocated.
883  * @return
884  *   - The pointer to the new mbuf on success.
885  *   - NULL if allocation failed.
886  */
887 static inline struct rte_mbuf *rte_mbuf_raw_alloc(struct rte_mempool *mp)
888 {
889         struct rte_mbuf *m;
890         void *mb = NULL;
891
892         if (rte_mempool_get(mp, &mb) < 0)
893                 return NULL;
894         m = (struct rte_mbuf *)mb;
895         MBUF_RAW_ALLOC_CHECK(m);
896         return m;
897 }
898
899 /**
900  * Put mbuf back into its original mempool.
901  *
902  * The caller must ensure that the mbuf is direct and properly
903  * reinitialized (refcnt=1, next=NULL, nb_segs=1), as done by
904  * rte_pktmbuf_prefree_seg().
905  *
906  * This function should be used with care, when optimization is
907  * required. For standard needs, prefer rte_pktmbuf_free() or
908  * rte_pktmbuf_free_seg().
909  *
910  * @param m
911  *   The mbuf to be freed.
912  */
913 static __rte_always_inline void
914 rte_mbuf_raw_free(struct rte_mbuf *m)
915 {
916         RTE_ASSERT(RTE_MBUF_DIRECT(m));
917         RTE_ASSERT(rte_mbuf_refcnt_read(m) == 1);
918         RTE_ASSERT(m->next == NULL);
919         RTE_ASSERT(m->nb_segs == 1);
920         __rte_mbuf_sanity_check(m, 0);
921         rte_mempool_put(m->pool, m);
922 }
923
924 /* compat with older versions */
925 __rte_deprecated
926 static inline void
927 __rte_mbuf_raw_free(struct rte_mbuf *m)
928 {
929         rte_mbuf_raw_free(m);
930 }
931
932 /* Operations on ctrl mbuf */
933
934 /**
935  * The control mbuf constructor.
936  *
937  * This function initializes some fields in an mbuf structure that are
938  * not modified by the user once created (mbuf type, origin pool, buffer
939  * start address, and so on). This function is given as a callback function
940  * to rte_mempool_obj_iter() or rte_mempool_create() at pool creation time.
941  *
942  * @param mp
943  *   The mempool from which the mbuf is allocated.
944  * @param opaque_arg
945  *   A pointer that can be used by the user to retrieve useful information
946  *   for mbuf initialization. This pointer is the opaque argument passed to
947  *   rte_mempool_obj_iter() or rte_mempool_create().
948  * @param m
949  *   The mbuf to initialize.
950  * @param i
951  *   The index of the mbuf in the pool table.
952  */
953 void rte_ctrlmbuf_init(struct rte_mempool *mp, void *opaque_arg,
954                 void *m, unsigned i);
955
956 /**
957  * Allocate a new mbuf (type is ctrl) from mempool *mp*.
958  *
959  * This new mbuf is initialized with data pointing to the beginning of
960  * buffer, and with a length of zero.
961  *
962  * @param mp
963  *   The mempool from which the mbuf is allocated.
964  * @return
965  *   - The pointer to the new mbuf on success.
966  *   - NULL if allocation failed.
967  */
968 #define rte_ctrlmbuf_alloc(mp) rte_pktmbuf_alloc(mp)
969
970 /**
971  * Free a control mbuf back into its original mempool.
972  *
973  * @param m
974  *   The control mbuf to be freed.
975  */
976 #define rte_ctrlmbuf_free(m) rte_pktmbuf_free(m)
977
978 /**
979  * A macro that returns the pointer to the carried data.
980  *
981  * The value that can be read or assigned.
982  *
983  * @param m
984  *   The control mbuf.
985  */
986 #define rte_ctrlmbuf_data(m) ((char *)((m)->buf_addr) + (m)->data_off)
987
988 /**
989  * A macro that returns the length of the carried data.
990  *
991  * The value that can be read or assigned.
992  *
993  * @param m
994  *   The control mbuf.
995  */
996 #define rte_ctrlmbuf_len(m) rte_pktmbuf_data_len(m)
997
998 /**
999  * Tests if an mbuf is a control mbuf
1000  *
1001  * @param m
1002  *   The mbuf to be tested
1003  * @return
1004  *   - True (1) if the mbuf is a control mbuf
1005  *   - False(0) otherwise
1006  */
1007 static inline int
1008 rte_is_ctrlmbuf(struct rte_mbuf *m)
1009 {
1010         return !!(m->ol_flags & CTRL_MBUF_FLAG);
1011 }
1012
1013 /* Operations on pkt mbuf */
1014
1015 /**
1016  * The packet mbuf constructor.
1017  *
1018  * This function initializes some fields in the mbuf structure that are
1019  * not modified by the user once created (origin pool, buffer start
1020  * address, and so on). This function is given as a callback function to
1021  * rte_mempool_obj_iter() or rte_mempool_create() at pool creation time.
1022  *
1023  * @param mp
1024  *   The mempool from which mbufs originate.
1025  * @param opaque_arg
1026  *   A pointer that can be used by the user to retrieve useful information
1027  *   for mbuf initialization. This pointer is the opaque argument passed to
1028  *   rte_mempool_obj_iter() or rte_mempool_create().
1029  * @param m
1030  *   The mbuf to initialize.
1031  * @param i
1032  *   The index of the mbuf in the pool table.
1033  */
1034 void rte_pktmbuf_init(struct rte_mempool *mp, void *opaque_arg,
1035                       void *m, unsigned i);
1036
1037
1038 /**
1039  * A  packet mbuf pool constructor.
1040  *
1041  * This function initializes the mempool private data in the case of a
1042  * pktmbuf pool. This private data is needed by the driver. The
1043  * function must be called on the mempool before it is used, or it
1044  * can be given as a callback function to rte_mempool_create() at
1045  * pool creation. It can be extended by the user, for example, to
1046  * provide another packet size.
1047  *
1048  * @param mp
1049  *   The mempool from which mbufs originate.
1050  * @param opaque_arg
1051  *   A pointer that can be used by the user to retrieve useful information
1052  *   for mbuf initialization. This pointer is the opaque argument passed to
1053  *   rte_mempool_create().
1054  */
1055 void rte_pktmbuf_pool_init(struct rte_mempool *mp, void *opaque_arg);
1056
1057 /**
1058  * Create a mbuf pool.
1059  *
1060  * This function creates and initializes a packet mbuf pool. It is
1061  * a wrapper to rte_mempool functions.
1062  *
1063  * @param name
1064  *   The name of the mbuf pool.
1065  * @param n
1066  *   The number of elements in the mbuf pool. The optimum size (in terms
1067  *   of memory usage) for a mempool is when n is a power of two minus one:
1068  *   n = (2^q - 1).
1069  * @param cache_size
1070  *   Size of the per-core object cache. See rte_mempool_create() for
1071  *   details.
1072  * @param priv_size
1073  *   Size of application private are between the rte_mbuf structure
1074  *   and the data buffer. This value must be aligned to RTE_MBUF_PRIV_ALIGN.
1075  * @param data_room_size
1076  *   Size of data buffer in each mbuf, including RTE_PKTMBUF_HEADROOM.
1077  * @param socket_id
1078  *   The socket identifier where the memory should be allocated. The
1079  *   value can be *SOCKET_ID_ANY* if there is no NUMA constraint for the
1080  *   reserved zone.
1081  * @return
1082  *   The pointer to the new allocated mempool, on success. NULL on error
1083  *   with rte_errno set appropriately. Possible rte_errno values include:
1084  *    - E_RTE_NO_CONFIG - function could not get pointer to rte_config structure
1085  *    - E_RTE_SECONDARY - function was called from a secondary process instance
1086  *    - EINVAL - cache size provided is too large, or priv_size is not aligned.
1087  *    - ENOSPC - the maximum number of memzones has already been allocated
1088  *    - EEXIST - a memzone with the same name already exists
1089  *    - ENOMEM - no appropriate memory area found in which to create memzone
1090  */
1091 struct rte_mempool *
1092 rte_pktmbuf_pool_create(const char *name, unsigned n,
1093         unsigned cache_size, uint16_t priv_size, uint16_t data_room_size,
1094         int socket_id);
1095
1096 /**
1097  * Get the data room size of mbufs stored in a pktmbuf_pool
1098  *
1099  * The data room size is the amount of data that can be stored in a
1100  * mbuf including the headroom (RTE_PKTMBUF_HEADROOM).
1101  *
1102  * @param mp
1103  *   The packet mbuf pool.
1104  * @return
1105  *   The data room size of mbufs stored in this mempool.
1106  */
1107 static inline uint16_t
1108 rte_pktmbuf_data_room_size(struct rte_mempool *mp)
1109 {
1110         struct rte_pktmbuf_pool_private *mbp_priv;
1111
1112         mbp_priv = (struct rte_pktmbuf_pool_private *)rte_mempool_get_priv(mp);
1113         return mbp_priv->mbuf_data_room_size;
1114 }
1115
1116 /**
1117  * Get the application private size of mbufs stored in a pktmbuf_pool
1118  *
1119  * The private size of mbuf is a zone located between the rte_mbuf
1120  * structure and the data buffer where an application can store data
1121  * associated to a packet.
1122  *
1123  * @param mp
1124  *   The packet mbuf pool.
1125  * @return
1126  *   The private size of mbufs stored in this mempool.
1127  */
1128 static inline uint16_t
1129 rte_pktmbuf_priv_size(struct rte_mempool *mp)
1130 {
1131         struct rte_pktmbuf_pool_private *mbp_priv;
1132
1133         mbp_priv = (struct rte_pktmbuf_pool_private *)rte_mempool_get_priv(mp);
1134         return mbp_priv->mbuf_priv_size;
1135 }
1136
1137 /**
1138  * Reset the data_off field of a packet mbuf to its default value.
1139  *
1140  * The given mbuf must have only one segment, which should be empty.
1141  *
1142  * @param m
1143  *   The packet mbuf's data_off field has to be reset.
1144  */
1145 static inline void rte_pktmbuf_reset_headroom(struct rte_mbuf *m)
1146 {
1147         m->data_off = (uint16_t)RTE_MIN((uint16_t)RTE_PKTMBUF_HEADROOM,
1148                                         (uint16_t)m->buf_len);
1149 }
1150
1151 /**
1152  * Reset the fields of a packet mbuf to their default values.
1153  *
1154  * The given mbuf must have only one segment.
1155  *
1156  * @param m
1157  *   The packet mbuf to be resetted.
1158  */
1159 #define MBUF_INVALID_PORT UINT16_MAX
1160
1161 static inline void rte_pktmbuf_reset(struct rte_mbuf *m)
1162 {
1163         m->next = NULL;
1164         m->pkt_len = 0;
1165         m->tx_offload = 0;
1166         m->vlan_tci = 0;
1167         m->vlan_tci_outer = 0;
1168         m->nb_segs = 1;
1169         m->port = MBUF_INVALID_PORT;
1170
1171         m->ol_flags = 0;
1172         m->packet_type = 0;
1173         rte_pktmbuf_reset_headroom(m);
1174
1175         m->data_len = 0;
1176         __rte_mbuf_sanity_check(m, 1);
1177 }
1178
1179 /**
1180  * Allocate a new mbuf from a mempool.
1181  *
1182  * This new mbuf contains one segment, which has a length of 0. The pointer
1183  * to data is initialized to have some bytes of headroom in the buffer
1184  * (if buffer size allows).
1185  *
1186  * @param mp
1187  *   The mempool from which the mbuf is allocated.
1188  * @return
1189  *   - The pointer to the new mbuf on success.
1190  *   - NULL if allocation failed.
1191  */
1192 static inline struct rte_mbuf *rte_pktmbuf_alloc(struct rte_mempool *mp)
1193 {
1194         struct rte_mbuf *m;
1195         if ((m = rte_mbuf_raw_alloc(mp)) != NULL)
1196                 rte_pktmbuf_reset(m);
1197         return m;
1198 }
1199
1200 /**
1201  * Allocate a bulk of mbufs, initialize refcnt and reset the fields to default
1202  * values.
1203  *
1204  *  @param pool
1205  *    The mempool from which mbufs are allocated.
1206  *  @param mbufs
1207  *    Array of pointers to mbufs
1208  *  @param count
1209  *    Array size
1210  *  @return
1211  *   - 0: Success
1212  *   - -ENOENT: Not enough entries in the mempool; no mbufs are retrieved.
1213  */
1214 static inline int rte_pktmbuf_alloc_bulk(struct rte_mempool *pool,
1215          struct rte_mbuf **mbufs, unsigned count)
1216 {
1217         unsigned idx = 0;
1218         int rc;
1219
1220         rc = rte_mempool_get_bulk(pool, (void **)mbufs, count);
1221         if (unlikely(rc))
1222                 return rc;
1223
1224         /* To understand duff's device on loop unwinding optimization, see
1225          * https://en.wikipedia.org/wiki/Duff's_device.
1226          * Here while() loop is used rather than do() while{} to avoid extra
1227          * check if count is zero.
1228          */
1229         switch (count % 4) {
1230         case 0:
1231                 while (idx != count) {
1232                         MBUF_RAW_ALLOC_CHECK(mbufs[idx]);
1233                         rte_pktmbuf_reset(mbufs[idx]);
1234                         idx++;
1235                         /* fall-through */
1236         case 3:
1237                         MBUF_RAW_ALLOC_CHECK(mbufs[idx]);
1238                         rte_pktmbuf_reset(mbufs[idx]);
1239                         idx++;
1240                         /* fall-through */
1241         case 2:
1242                         MBUF_RAW_ALLOC_CHECK(mbufs[idx]);
1243                         rte_pktmbuf_reset(mbufs[idx]);
1244                         idx++;
1245                         /* fall-through */
1246         case 1:
1247                         MBUF_RAW_ALLOC_CHECK(mbufs[idx]);
1248                         rte_pktmbuf_reset(mbufs[idx]);
1249                         idx++;
1250                         /* fall-through */
1251                 }
1252         }
1253         return 0;
1254 }
1255
1256 /**
1257  * Attach packet mbuf to another packet mbuf.
1258  *
1259  * After attachment we refer the mbuf we attached as 'indirect',
1260  * while mbuf we attached to as 'direct'.
1261  * The direct mbuf's reference counter is incremented.
1262  *
1263  * Right now, not supported:
1264  *  - attachment for already indirect mbuf (e.g. - mi has to be direct).
1265  *  - mbuf we trying to attach (mi) is used by someone else
1266  *    e.g. it's reference counter is greater then 1.
1267  *
1268  * @param mi
1269  *   The indirect packet mbuf.
1270  * @param m
1271  *   The packet mbuf we're attaching to.
1272  */
1273 static inline void rte_pktmbuf_attach(struct rte_mbuf *mi, struct rte_mbuf *m)
1274 {
1275         struct rte_mbuf *md;
1276
1277         RTE_ASSERT(RTE_MBUF_DIRECT(mi) &&
1278             rte_mbuf_refcnt_read(mi) == 1);
1279
1280         /* if m is not direct, get the mbuf that embeds the data */
1281         if (RTE_MBUF_DIRECT(m))
1282                 md = m;
1283         else
1284                 md = rte_mbuf_from_indirect(m);
1285
1286         rte_mbuf_refcnt_update(md, 1);
1287         mi->priv_size = m->priv_size;
1288         mi->buf_iova = m->buf_iova;
1289         mi->buf_addr = m->buf_addr;
1290         mi->buf_len = m->buf_len;
1291
1292         mi->data_off = m->data_off;
1293         mi->data_len = m->data_len;
1294         mi->port = m->port;
1295         mi->vlan_tci = m->vlan_tci;
1296         mi->vlan_tci_outer = m->vlan_tci_outer;
1297         mi->tx_offload = m->tx_offload;
1298         mi->hash = m->hash;
1299
1300         mi->next = NULL;
1301         mi->pkt_len = mi->data_len;
1302         mi->nb_segs = 1;
1303         mi->ol_flags = m->ol_flags | IND_ATTACHED_MBUF;
1304         mi->packet_type = m->packet_type;
1305         mi->timestamp = m->timestamp;
1306
1307         __rte_mbuf_sanity_check(mi, 1);
1308         __rte_mbuf_sanity_check(m, 0);
1309 }
1310
1311 /**
1312  * Detach an indirect packet mbuf.
1313  *
1314  *  - restore original mbuf address and length values.
1315  *  - reset pktmbuf data and data_len to their default values.
1316  *  - decrement the direct mbuf's reference counter. When the
1317  *  reference counter becomes 0, the direct mbuf is freed.
1318  *
1319  * All other fields of the given packet mbuf will be left intact.
1320  *
1321  * @param m
1322  *   The indirect attached packet mbuf.
1323  */
1324 static inline void rte_pktmbuf_detach(struct rte_mbuf *m)
1325 {
1326         struct rte_mbuf *md = rte_mbuf_from_indirect(m);
1327         struct rte_mempool *mp = m->pool;
1328         uint32_t mbuf_size, buf_len;
1329         uint16_t priv_size;
1330
1331         priv_size = rte_pktmbuf_priv_size(mp);
1332         mbuf_size = (uint32_t)(sizeof(struct rte_mbuf) + priv_size);
1333         buf_len = rte_pktmbuf_data_room_size(mp);
1334
1335         m->priv_size = priv_size;
1336         m->buf_addr = (char *)m + mbuf_size;
1337         m->buf_iova = rte_mempool_virt2iova(m) + mbuf_size;
1338         m->buf_len = (uint16_t)buf_len;
1339         rte_pktmbuf_reset_headroom(m);
1340         m->data_len = 0;
1341         m->ol_flags = 0;
1342
1343         if (rte_mbuf_refcnt_update(md, -1) == 0) {
1344                 md->next = NULL;
1345                 md->nb_segs = 1;
1346                 rte_mbuf_refcnt_set(md, 1);
1347                 rte_mbuf_raw_free(md);
1348         }
1349 }
1350
1351 /**
1352  * Decrease reference counter and unlink a mbuf segment
1353  *
1354  * This function does the same than a free, except that it does not
1355  * return the segment to its pool.
1356  * It decreases the reference counter, and if it reaches 0, it is
1357  * detached from its parent for an indirect mbuf.
1358  *
1359  * @param m
1360  *   The mbuf to be unlinked
1361  * @return
1362  *   - (m) if it is the last reference. It can be recycled or freed.
1363  *   - (NULL) if the mbuf still has remaining references on it.
1364  */
1365 static __rte_always_inline struct rte_mbuf *
1366 rte_pktmbuf_prefree_seg(struct rte_mbuf *m)
1367 {
1368         __rte_mbuf_sanity_check(m, 0);
1369
1370         if (likely(rte_mbuf_refcnt_read(m) == 1)) {
1371
1372                 if (RTE_MBUF_INDIRECT(m))
1373                         rte_pktmbuf_detach(m);
1374
1375                 if (m->next != NULL) {
1376                         m->next = NULL;
1377                         m->nb_segs = 1;
1378                 }
1379
1380                 return m;
1381
1382         } else if (__rte_mbuf_refcnt_update(m, -1) == 0) {
1383
1384                 if (RTE_MBUF_INDIRECT(m))
1385                         rte_pktmbuf_detach(m);
1386
1387                 if (m->next != NULL) {
1388                         m->next = NULL;
1389                         m->nb_segs = 1;
1390                 }
1391                 rte_mbuf_refcnt_set(m, 1);
1392
1393                 return m;
1394         }
1395         return NULL;
1396 }
1397
1398 /* deprecated, replaced by rte_pktmbuf_prefree_seg() */
1399 __rte_deprecated
1400 static inline struct rte_mbuf *
1401 __rte_pktmbuf_prefree_seg(struct rte_mbuf *m)
1402 {
1403         return rte_pktmbuf_prefree_seg(m);
1404 }
1405
1406 /**
1407  * Free a segment of a packet mbuf into its original mempool.
1408  *
1409  * Free an mbuf, without parsing other segments in case of chained
1410  * buffers.
1411  *
1412  * @param m
1413  *   The packet mbuf segment to be freed.
1414  */
1415 static __rte_always_inline void
1416 rte_pktmbuf_free_seg(struct rte_mbuf *m)
1417 {
1418         m = rte_pktmbuf_prefree_seg(m);
1419         if (likely(m != NULL))
1420                 rte_mbuf_raw_free(m);
1421 }
1422
1423 /**
1424  * Free a packet mbuf back into its original mempool.
1425  *
1426  * Free an mbuf, and all its segments in case of chained buffers. Each
1427  * segment is added back into its original mempool.
1428  *
1429  * @param m
1430  *   The packet mbuf to be freed. If NULL, the function does nothing.
1431  */
1432 static inline void rte_pktmbuf_free(struct rte_mbuf *m)
1433 {
1434         struct rte_mbuf *m_next;
1435
1436         if (m != NULL)
1437                 __rte_mbuf_sanity_check(m, 1);
1438
1439         while (m != NULL) {
1440                 m_next = m->next;
1441                 rte_pktmbuf_free_seg(m);
1442                 m = m_next;
1443         }
1444 }
1445
1446 /**
1447  * Creates a "clone" of the given packet mbuf.
1448  *
1449  * Walks through all segments of the given packet mbuf, and for each of them:
1450  *  - Creates a new packet mbuf from the given pool.
1451  *  - Attaches newly created mbuf to the segment.
1452  * Then updates pkt_len and nb_segs of the "clone" packet mbuf to match values
1453  * from the original packet mbuf.
1454  *
1455  * @param md
1456  *   The packet mbuf to be cloned.
1457  * @param mp
1458  *   The mempool from which the "clone" mbufs are allocated.
1459  * @return
1460  *   - The pointer to the new "clone" mbuf on success.
1461  *   - NULL if allocation fails.
1462  */
1463 static inline struct rte_mbuf *rte_pktmbuf_clone(struct rte_mbuf *md,
1464                 struct rte_mempool *mp)
1465 {
1466         struct rte_mbuf *mc, *mi, **prev;
1467         uint32_t pktlen;
1468         uint16_t nseg;
1469
1470         if (unlikely ((mc = rte_pktmbuf_alloc(mp)) == NULL))
1471                 return NULL;
1472
1473         mi = mc;
1474         prev = &mi->next;
1475         pktlen = md->pkt_len;
1476         nseg = 0;
1477
1478         do {
1479                 nseg++;
1480                 rte_pktmbuf_attach(mi, md);
1481                 *prev = mi;
1482                 prev = &mi->next;
1483         } while ((md = md->next) != NULL &&
1484             (mi = rte_pktmbuf_alloc(mp)) != NULL);
1485
1486         *prev = NULL;
1487         mc->nb_segs = nseg;
1488         mc->pkt_len = pktlen;
1489
1490         /* Allocation of new indirect segment failed */
1491         if (unlikely (mi == NULL)) {
1492                 rte_pktmbuf_free(mc);
1493                 return NULL;
1494         }
1495
1496         __rte_mbuf_sanity_check(mc, 1);
1497         return mc;
1498 }
1499
1500 /**
1501  * Adds given value to the refcnt of all packet mbuf segments.
1502  *
1503  * Walks through all segments of given packet mbuf and for each of them
1504  * invokes rte_mbuf_refcnt_update().
1505  *
1506  * @param m
1507  *   The packet mbuf whose refcnt to be updated.
1508  * @param v
1509  *   The value to add to the mbuf's segments refcnt.
1510  */
1511 static inline void rte_pktmbuf_refcnt_update(struct rte_mbuf *m, int16_t v)
1512 {
1513         __rte_mbuf_sanity_check(m, 1);
1514
1515         do {
1516                 rte_mbuf_refcnt_update(m, v);
1517         } while ((m = m->next) != NULL);
1518 }
1519
1520 /**
1521  * Get the headroom in a packet mbuf.
1522  *
1523  * @param m
1524  *   The packet mbuf.
1525  * @return
1526  *   The length of the headroom.
1527  */
1528 static inline uint16_t rte_pktmbuf_headroom(const struct rte_mbuf *m)
1529 {
1530         __rte_mbuf_sanity_check(m, 0);
1531         return m->data_off;
1532 }
1533
1534 /**
1535  * Get the tailroom of a packet mbuf.
1536  *
1537  * @param m
1538  *   The packet mbuf.
1539  * @return
1540  *   The length of the tailroom.
1541  */
1542 static inline uint16_t rte_pktmbuf_tailroom(const struct rte_mbuf *m)
1543 {
1544         __rte_mbuf_sanity_check(m, 0);
1545         return (uint16_t)(m->buf_len - rte_pktmbuf_headroom(m) -
1546                           m->data_len);
1547 }
1548
1549 /**
1550  * Get the last segment of the packet.
1551  *
1552  * @param m
1553  *   The packet mbuf.
1554  * @return
1555  *   The last segment of the given mbuf.
1556  */
1557 static inline struct rte_mbuf *rte_pktmbuf_lastseg(struct rte_mbuf *m)
1558 {
1559         struct rte_mbuf *m2 = (struct rte_mbuf *)m;
1560
1561         __rte_mbuf_sanity_check(m, 1);
1562         while (m2->next != NULL)
1563                 m2 = m2->next;
1564         return m2;
1565 }
1566
1567 /**
1568  * A macro that points to an offset into the data in the mbuf.
1569  *
1570  * The returned pointer is cast to type t. Before using this
1571  * function, the user must ensure that the first segment is large
1572  * enough to accommodate its data.
1573  *
1574  * @param m
1575  *   The packet mbuf.
1576  * @param o
1577  *   The offset into the mbuf data.
1578  * @param t
1579  *   The type to cast the result into.
1580  */
1581 #define rte_pktmbuf_mtod_offset(m, t, o)        \
1582         ((t)((char *)(m)->buf_addr + (m)->data_off + (o)))
1583
1584 /**
1585  * A macro that points to the start of the data in the mbuf.
1586  *
1587  * The returned pointer is cast to type t. Before using this
1588  * function, the user must ensure that the first segment is large
1589  * enough to accommodate its data.
1590  *
1591  * @param m
1592  *   The packet mbuf.
1593  * @param t
1594  *   The type to cast the result into.
1595  */
1596 #define rte_pktmbuf_mtod(m, t) rte_pktmbuf_mtod_offset(m, t, 0)
1597
1598 /**
1599  * A macro that returns the IO address that points to an offset of the
1600  * start of the data in the mbuf
1601  *
1602  * @param m
1603  *   The packet mbuf.
1604  * @param o
1605  *   The offset into the data to calculate address from.
1606  */
1607 #define rte_pktmbuf_iova_offset(m, o) \
1608         (rte_iova_t)((m)->buf_iova + (m)->data_off + (o))
1609
1610 /* deprecated */
1611 #define rte_pktmbuf_mtophys_offset(m, o) \
1612         rte_pktmbuf_iova_offset(m, o)
1613
1614 /**
1615  * A macro that returns the IO address that points to the start of the
1616  * data in the mbuf
1617  *
1618  * @param m
1619  *   The packet mbuf.
1620  */
1621 #define rte_pktmbuf_iova(m) rte_pktmbuf_iova_offset(m, 0)
1622
1623 /* deprecated */
1624 #define rte_pktmbuf_mtophys(m) rte_pktmbuf_iova(m)
1625
1626 /**
1627  * A macro that returns the length of the packet.
1628  *
1629  * The value can be read or assigned.
1630  *
1631  * @param m
1632  *   The packet mbuf.
1633  */
1634 #define rte_pktmbuf_pkt_len(m) ((m)->pkt_len)
1635
1636 /**
1637  * A macro that returns the length of the segment.
1638  *
1639  * The value can be read or assigned.
1640  *
1641  * @param m
1642  *   The packet mbuf.
1643  */
1644 #define rte_pktmbuf_data_len(m) ((m)->data_len)
1645
1646 /**
1647  * Prepend len bytes to an mbuf data area.
1648  *
1649  * Returns a pointer to the new
1650  * data start address. If there is not enough headroom in the first
1651  * segment, the function will return NULL, without modifying the mbuf.
1652  *
1653  * @param m
1654  *   The pkt mbuf.
1655  * @param len
1656  *   The amount of data to prepend (in bytes).
1657  * @return
1658  *   A pointer to the start of the newly prepended data, or
1659  *   NULL if there is not enough headroom space in the first segment
1660  */
1661 static inline char *rte_pktmbuf_prepend(struct rte_mbuf *m,
1662                                         uint16_t len)
1663 {
1664         __rte_mbuf_sanity_check(m, 1);
1665
1666         if (unlikely(len > rte_pktmbuf_headroom(m)))
1667                 return NULL;
1668
1669         /* NB: elaborating the subtraction like this instead of using
1670          *     -= allows us to ensure the result type is uint16_t
1671          *     avoiding compiler warnings on gcc 8.1 at least */
1672         m->data_off = (uint16_t)(m->data_off - len);
1673         m->data_len = (uint16_t)(m->data_len + len);
1674         m->pkt_len  = (m->pkt_len + len);
1675
1676         return (char *)m->buf_addr + m->data_off;
1677 }
1678
1679 /**
1680  * Append len bytes to an mbuf.
1681  *
1682  * Append len bytes to an mbuf and return a pointer to the start address
1683  * of the added data. If there is not enough tailroom in the last
1684  * segment, the function will return NULL, without modifying the mbuf.
1685  *
1686  * @param m
1687  *   The packet mbuf.
1688  * @param len
1689  *   The amount of data to append (in bytes).
1690  * @return
1691  *   A pointer to the start of the newly appended data, or
1692  *   NULL if there is not enough tailroom space in the last segment
1693  */
1694 static inline char *rte_pktmbuf_append(struct rte_mbuf *m, uint16_t len)
1695 {
1696         void *tail;
1697         struct rte_mbuf *m_last;
1698
1699         __rte_mbuf_sanity_check(m, 1);
1700
1701         m_last = rte_pktmbuf_lastseg(m);
1702         if (unlikely(len > rte_pktmbuf_tailroom(m_last)))
1703                 return NULL;
1704
1705         tail = (char *)m_last->buf_addr + m_last->data_off + m_last->data_len;
1706         m_last->data_len = (uint16_t)(m_last->data_len + len);
1707         m->pkt_len  = (m->pkt_len + len);
1708         return (char*) tail;
1709 }
1710
1711 /**
1712  * Remove len bytes at the beginning of an mbuf.
1713  *
1714  * Returns a pointer to the start address of the new data area. If the
1715  * length is greater than the length of the first segment, then the
1716  * function will fail and return NULL, without modifying the mbuf.
1717  *
1718  * @param m
1719  *   The packet mbuf.
1720  * @param len
1721  *   The amount of data to remove (in bytes).
1722  * @return
1723  *   A pointer to the new start of the data.
1724  */
1725 static inline char *rte_pktmbuf_adj(struct rte_mbuf *m, uint16_t len)
1726 {
1727         __rte_mbuf_sanity_check(m, 1);
1728
1729         if (unlikely(len > m->data_len))
1730                 return NULL;
1731
1732         /* NB: elaborating the addition like this instead of using
1733          *     += allows us to ensure the result type is uint16_t
1734          *     avoiding compiler warnings on gcc 8.1 at least */
1735         m->data_len = (uint16_t)(m->data_len - len);
1736         m->data_off = (uint16_t)(m->data_off + len);
1737         m->pkt_len  = (m->pkt_len - len);
1738         return (char *)m->buf_addr + m->data_off;
1739 }
1740
1741 /**
1742  * Remove len bytes of data at the end of the mbuf.
1743  *
1744  * If the length is greater than the length of the last segment, the
1745  * function will fail and return -1 without modifying the mbuf.
1746  *
1747  * @param m
1748  *   The packet mbuf.
1749  * @param len
1750  *   The amount of data to remove (in bytes).
1751  * @return
1752  *   - 0: On success.
1753  *   - -1: On error.
1754  */
1755 static inline int rte_pktmbuf_trim(struct rte_mbuf *m, uint16_t len)
1756 {
1757         struct rte_mbuf *m_last;
1758
1759         __rte_mbuf_sanity_check(m, 1);
1760
1761         m_last = rte_pktmbuf_lastseg(m);
1762         if (unlikely(len > m_last->data_len))
1763                 return -1;
1764
1765         m_last->data_len = (uint16_t)(m_last->data_len - len);
1766         m->pkt_len  = (m->pkt_len - len);
1767         return 0;
1768 }
1769
1770 /**
1771  * Test if mbuf data is contiguous.
1772  *
1773  * @param m
1774  *   The packet mbuf.
1775  * @return
1776  *   - 1, if all data is contiguous (one segment).
1777  *   - 0, if there is several segments.
1778  */
1779 static inline int rte_pktmbuf_is_contiguous(const struct rte_mbuf *m)
1780 {
1781         __rte_mbuf_sanity_check(m, 1);
1782         return !!(m->nb_segs == 1);
1783 }
1784
1785 /**
1786  * @internal used by rte_pktmbuf_read().
1787  */
1788 const void *__rte_pktmbuf_read(const struct rte_mbuf *m, uint32_t off,
1789         uint32_t len, void *buf);
1790
1791 /**
1792  * Read len data bytes in a mbuf at specified offset.
1793  *
1794  * If the data is contiguous, return the pointer in the mbuf data, else
1795  * copy the data in the buffer provided by the user and return its
1796  * pointer.
1797  *
1798  * @param m
1799  *   The pointer to the mbuf.
1800  * @param off
1801  *   The offset of the data in the mbuf.
1802  * @param len
1803  *   The amount of bytes to read.
1804  * @param buf
1805  *   The buffer where data is copied if it is not contiguous in mbuf
1806  *   data. Its length should be at least equal to the len parameter.
1807  * @return
1808  *   The pointer to the data, either in the mbuf if it is contiguous,
1809  *   or in the user buffer. If mbuf is too small, NULL is returned.
1810  */
1811 static inline const void *rte_pktmbuf_read(const struct rte_mbuf *m,
1812         uint32_t off, uint32_t len, void *buf)
1813 {
1814         if (likely(off + len <= rte_pktmbuf_data_len(m)))
1815                 return rte_pktmbuf_mtod_offset(m, char *, off);
1816         else
1817                 return __rte_pktmbuf_read(m, off, len, buf);
1818 }
1819
1820 /**
1821  * Chain an mbuf to another, thereby creating a segmented packet.
1822  *
1823  * Note: The implementation will do a linear walk over the segments to find
1824  * the tail entry. For cases when there are many segments, it's better to
1825  * chain the entries manually.
1826  *
1827  * @param head
1828  *   The head of the mbuf chain (the first packet)
1829  * @param tail
1830  *   The mbuf to put last in the chain
1831  *
1832  * @return
1833  *   - 0, on success.
1834  *   - -EOVERFLOW, if the chain segment limit exceeded
1835  */
1836 static inline int rte_pktmbuf_chain(struct rte_mbuf *head, struct rte_mbuf *tail)
1837 {
1838         struct rte_mbuf *cur_tail;
1839
1840         /* Check for number-of-segments-overflow */
1841         if (head->nb_segs + tail->nb_segs > RTE_MBUF_MAX_NB_SEGS)
1842                 return -EOVERFLOW;
1843
1844         /* Chain 'tail' onto the old tail */
1845         cur_tail = rte_pktmbuf_lastseg(head);
1846         cur_tail->next = tail;
1847
1848         /* accumulate number of segments and total length.
1849          * NB: elaborating the addition like this instead of using
1850          *     -= allows us to ensure the result type is uint16_t
1851          *     avoiding compiler warnings on gcc 8.1 at least */
1852         head->nb_segs = (uint16_t)(head->nb_segs + tail->nb_segs);
1853         head->pkt_len += tail->pkt_len;
1854
1855         /* pkt_len is only set in the head */
1856         tail->pkt_len = tail->data_len;
1857
1858         return 0;
1859 }
1860
1861 /**
1862  * Validate general requirements for Tx offload in mbuf.
1863  *
1864  * This function checks correctness and completeness of Tx offload settings.
1865  *
1866  * @param m
1867  *   The packet mbuf to be validated.
1868  * @return
1869  *   0 if packet is valid
1870  */
1871 static inline int
1872 rte_validate_tx_offload(const struct rte_mbuf *m)
1873 {
1874         uint64_t ol_flags = m->ol_flags;
1875         uint64_t inner_l3_offset = m->l2_len;
1876
1877         /* Does packet set any of available offloads? */
1878         if (!(ol_flags & PKT_TX_OFFLOAD_MASK))
1879                 return 0;
1880
1881         if (ol_flags & PKT_TX_OUTER_IP_CKSUM)
1882                 /* NB: elaborating the addition like this instead of using
1883                  *     += gives the result uint64_t type instead of int,
1884                  *     avoiding compiler warnings on gcc 8.1 at least */
1885                 inner_l3_offset = inner_l3_offset + m->outer_l2_len +
1886                                   m->outer_l3_len;
1887
1888         /* Headers are fragmented */
1889         if (rte_pktmbuf_data_len(m) < inner_l3_offset + m->l3_len + m->l4_len)
1890                 return -ENOTSUP;
1891
1892         /* IP checksum can be counted only for IPv4 packet */
1893         if ((ol_flags & PKT_TX_IP_CKSUM) && (ol_flags & PKT_TX_IPV6))
1894                 return -EINVAL;
1895
1896         /* IP type not set when required */
1897         if (ol_flags & (PKT_TX_L4_MASK | PKT_TX_TCP_SEG))
1898                 if (!(ol_flags & (PKT_TX_IPV4 | PKT_TX_IPV6)))
1899                         return -EINVAL;
1900
1901         /* Check requirements for TSO packet */
1902         if (ol_flags & PKT_TX_TCP_SEG)
1903                 if ((m->tso_segsz == 0) ||
1904                                 ((ol_flags & PKT_TX_IPV4) &&
1905                                 !(ol_flags & PKT_TX_IP_CKSUM)))
1906                         return -EINVAL;
1907
1908         /* PKT_TX_OUTER_IP_CKSUM set for non outer IPv4 packet. */
1909         if ((ol_flags & PKT_TX_OUTER_IP_CKSUM) &&
1910                         !(ol_flags & PKT_TX_OUTER_IPV4))
1911                 return -EINVAL;
1912
1913         return 0;
1914 }
1915
1916 /**
1917  * Linearize data in mbuf.
1918  *
1919  * This function moves the mbuf data in the first segment if there is enough
1920  * tailroom. The subsequent segments are unchained and freed.
1921  *
1922  * @param mbuf
1923  *   mbuf to linearize
1924  * @return
1925  *   - 0, on success
1926  *   - -1, on error
1927  */
1928 static inline int
1929 rte_pktmbuf_linearize(struct rte_mbuf *mbuf)
1930 {
1931         size_t seg_len, copy_len;
1932         struct rte_mbuf *m;
1933         struct rte_mbuf *m_next;
1934         char *buffer;
1935
1936         if (rte_pktmbuf_is_contiguous(mbuf))
1937                 return 0;
1938
1939         /* Extend first segment to the total packet length */
1940         copy_len = rte_pktmbuf_pkt_len(mbuf) - rte_pktmbuf_data_len(mbuf);
1941
1942         if (unlikely(copy_len > rte_pktmbuf_tailroom(mbuf)))
1943                 return -1;
1944
1945         buffer = rte_pktmbuf_mtod_offset(mbuf, char *, mbuf->data_len);
1946         mbuf->data_len = (uint16_t)(mbuf->pkt_len);
1947
1948         /* Append data from next segments to the first one */
1949         m = mbuf->next;
1950         while (m != NULL) {
1951                 m_next = m->next;
1952
1953                 seg_len = rte_pktmbuf_data_len(m);
1954                 rte_memcpy(buffer, rte_pktmbuf_mtod(m, char *), seg_len);
1955                 buffer += seg_len;
1956
1957                 rte_pktmbuf_free_seg(m);
1958                 m = m_next;
1959         }
1960
1961         mbuf->next = NULL;
1962         mbuf->nb_segs = 1;
1963
1964         return 0;
1965 }
1966
1967 /**
1968  * Dump an mbuf structure to a file.
1969  *
1970  * Dump all fields for the given packet mbuf and all its associated
1971  * segments (in the case of a chained buffer).
1972  *
1973  * @param f
1974  *   A pointer to a file for output
1975  * @param m
1976  *   The packet mbuf.
1977  * @param dump_len
1978  *   If dump_len != 0, also dump the "dump_len" first data bytes of
1979  *   the packet.
1980  */
1981 void rte_pktmbuf_dump(FILE *f, const struct rte_mbuf *m, unsigned dump_len);
1982
1983 #ifdef __cplusplus
1984 }
1985 #endif
1986
1987 #endif /* _RTE_MBUF_H_ */