New upstream version 17.11.1
[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  * When doing Tx offload like TSO or checksum, the HW needs to configure the
226  * tunnel type into the HW descriptors.
227  */
228 #define PKT_TX_TUNNEL_VXLAN   (0x1ULL << 45)
229 #define PKT_TX_TUNNEL_GRE     (0x2ULL << 45)
230 #define PKT_TX_TUNNEL_IPIP    (0x3ULL << 45)
231 #define PKT_TX_TUNNEL_GENEVE  (0x4ULL << 45)
232 /**< TX packet with MPLS-in-UDP RFC 7510 header. */
233 #define PKT_TX_TUNNEL_MPLSINUDP (0x5ULL << 45)
234 /* add new TX TUNNEL type here */
235 #define PKT_TX_TUNNEL_MASK    (0xFULL << 45)
236
237 /**
238  * Second VLAN insertion (QinQ) flag.
239  */
240 #define PKT_TX_QINQ_PKT    (1ULL << 49)   /**< TX packet with double VLAN inserted. */
241
242 /**
243  * TCP segmentation offload. To enable this offload feature for a
244  * packet to be transmitted on hardware supporting TSO:
245  *  - set the PKT_TX_TCP_SEG flag in mbuf->ol_flags (this flag implies
246  *    PKT_TX_TCP_CKSUM)
247  *  - set the flag PKT_TX_IPV4 or PKT_TX_IPV6
248  *  - if it's IPv4, set the PKT_TX_IP_CKSUM flag and write the IP checksum
249  *    to 0 in the packet
250  *  - fill the mbuf offload information: l2_len, l3_len, l4_len, tso_segsz
251  *  - calculate the pseudo header checksum without taking ip_len in account,
252  *    and set it in the TCP header. Refer to rte_ipv4_phdr_cksum() and
253  *    rte_ipv6_phdr_cksum() that can be used as helpers.
254  */
255 #define PKT_TX_TCP_SEG       (1ULL << 50)
256
257 #define PKT_TX_IEEE1588_TMST (1ULL << 51) /**< TX IEEE1588 packet to timestamp. */
258
259 /**
260  * Bits 52+53 used for L4 packet type with checksum enabled: 00: Reserved,
261  * 01: TCP checksum, 10: SCTP checksum, 11: UDP checksum. To use hardware
262  * L4 checksum offload, the user needs to:
263  *  - fill l2_len and l3_len in mbuf
264  *  - set the flags PKT_TX_TCP_CKSUM, PKT_TX_SCTP_CKSUM or PKT_TX_UDP_CKSUM
265  *  - set the flag PKT_TX_IPV4 or PKT_TX_IPV6
266  *  - calculate the pseudo header checksum and set it in the L4 header (only
267  *    for TCP or UDP). See rte_ipv4_phdr_cksum() and rte_ipv6_phdr_cksum().
268  *    For SCTP, set the crc field to 0.
269  */
270 #define PKT_TX_L4_NO_CKSUM   (0ULL << 52) /**< Disable L4 cksum of TX pkt. */
271 #define PKT_TX_TCP_CKSUM     (1ULL << 52) /**< TCP cksum of TX pkt. computed by NIC. */
272 #define PKT_TX_SCTP_CKSUM    (2ULL << 52) /**< SCTP cksum of TX pkt. computed by NIC. */
273 #define PKT_TX_UDP_CKSUM     (3ULL << 52) /**< UDP cksum of TX pkt. computed by NIC. */
274 #define PKT_TX_L4_MASK       (3ULL << 52) /**< Mask for L4 cksum offload request. */
275
276 /**
277  * Offload the IP checksum in the hardware. The flag PKT_TX_IPV4 should
278  * also be set by the application, although a PMD will only check
279  * PKT_TX_IP_CKSUM.
280  *  - set the IP checksum field in the packet to 0
281  *  - fill the mbuf offload information: l2_len, l3_len
282  */
283 #define PKT_TX_IP_CKSUM      (1ULL << 54)
284
285 /**
286  * Packet is IPv4. This flag must be set when using any offload feature
287  * (TSO, L3 or L4 checksum) to tell the NIC that the packet is an IPv4
288  * packet. If the packet is a tunneled packet, this flag is related to
289  * the inner headers.
290  */
291 #define PKT_TX_IPV4          (1ULL << 55)
292
293 /**
294  * Packet is IPv6. This flag must be set when using an offload feature
295  * (TSO or L4 checksum) to tell the NIC that the packet is an IPv6
296  * packet. If the packet is a tunneled packet, this flag is related to
297  * the inner headers.
298  */
299 #define PKT_TX_IPV6          (1ULL << 56)
300
301 #define PKT_TX_VLAN_PKT      (1ULL << 57) /**< TX packet is a 802.1q VLAN packet. */
302
303 /**
304  * Offload the IP checksum of an external header in the hardware. The
305  * flag PKT_TX_OUTER_IPV4 should also be set by the application, alto ugh
306  * a PMD will only check PKT_TX_IP_CKSUM.  The IP checksum field in the
307  * packet must be set to 0.
308  *  - set the outer IP checksum field in the packet to 0
309  *  - fill the mbuf offload information: outer_l2_len, outer_l3_len
310  */
311 #define PKT_TX_OUTER_IP_CKSUM   (1ULL << 58)
312
313 /**
314  * Packet outer header is IPv4. This flag must be set when using any
315  * outer offload feature (L3 or L4 checksum) to tell the NIC that the
316  * outer header of the tunneled packet is an IPv4 packet.
317  */
318 #define PKT_TX_OUTER_IPV4   (1ULL << 59)
319
320 /**
321  * Packet outer header is IPv6. This flag must be set when using any
322  * outer offload feature (L4 checksum) to tell the NIC that the outer
323  * header of the tunneled packet is an IPv6 packet.
324  */
325 #define PKT_TX_OUTER_IPV6    (1ULL << 60)
326
327 /**
328  * Bitmask of all supported packet Tx offload features flags,
329  * which can be set for packet.
330  */
331 #define PKT_TX_OFFLOAD_MASK (    \
332                 PKT_TX_IP_CKSUM |        \
333                 PKT_TX_L4_MASK |         \
334                 PKT_TX_OUTER_IP_CKSUM |  \
335                 PKT_TX_TCP_SEG |         \
336                 PKT_TX_IEEE1588_TMST |   \
337                 PKT_TX_QINQ_PKT |        \
338                 PKT_TX_VLAN_PKT |        \
339                 PKT_TX_TUNNEL_MASK |     \
340                 PKT_TX_MACSEC |          \
341                 PKT_TX_SEC_OFFLOAD)
342
343 #define __RESERVED           (1ULL << 61) /**< reserved for future mbuf use */
344
345 #define IND_ATTACHED_MBUF    (1ULL << 62) /**< Indirect attached mbuf */
346
347 /* Use final bit of flags to indicate a control mbuf */
348 #define CTRL_MBUF_FLAG       (1ULL << 63) /**< Mbuf contains control data */
349
350 /** Alignment constraint of mbuf private area. */
351 #define RTE_MBUF_PRIV_ALIGN 8
352
353 /**
354  * Get the name of a RX offload flag
355  *
356  * @param mask
357  *   The mask describing the flag.
358  * @return
359  *   The name of this flag, or NULL if it's not a valid RX flag.
360  */
361 const char *rte_get_rx_ol_flag_name(uint64_t mask);
362
363 /**
364  * Dump the list of RX offload flags in a buffer
365  *
366  * @param mask
367  *   The mask describing the RX flags.
368  * @param buf
369  *   The output buffer.
370  * @param buflen
371  *   The length of the buffer.
372  * @return
373  *   0 on success, (-1) on error.
374  */
375 int rte_get_rx_ol_flag_list(uint64_t mask, char *buf, size_t buflen);
376
377 /**
378  * Get the name of a TX offload flag
379  *
380  * @param mask
381  *   The mask describing the flag. Usually only one bit must be set.
382  *   Several bits can be given if they belong to the same mask.
383  *   Ex: PKT_TX_L4_MASK.
384  * @return
385  *   The name of this flag, or NULL if it's not a valid TX flag.
386  */
387 const char *rte_get_tx_ol_flag_name(uint64_t mask);
388
389 /**
390  * Dump the list of TX offload flags in a buffer
391  *
392  * @param mask
393  *   The mask describing the TX flags.
394  * @param buf
395  *   The output buffer.
396  * @param buflen
397  *   The length of the buffer.
398  * @return
399  *   0 on success, (-1) on error.
400  */
401 int rte_get_tx_ol_flag_list(uint64_t mask, char *buf, size_t buflen);
402
403 /**
404  * Some NICs need at least 2KB buffer to RX standard Ethernet frame without
405  * splitting it into multiple segments.
406  * So, for mbufs that planned to be involved into RX/TX, the recommended
407  * minimal buffer length is 2KB + RTE_PKTMBUF_HEADROOM.
408  */
409 #define RTE_MBUF_DEFAULT_DATAROOM       2048
410 #define RTE_MBUF_DEFAULT_BUF_SIZE       \
411         (RTE_MBUF_DEFAULT_DATAROOM + RTE_PKTMBUF_HEADROOM)
412
413 /* define a set of marker types that can be used to refer to set points in the
414  * mbuf */
415 __extension__
416 typedef void    *MARKER[0];   /**< generic marker for a point in a structure */
417 __extension__
418 typedef uint8_t  MARKER8[0];  /**< generic marker with 1B alignment */
419 __extension__
420 typedef uint64_t MARKER64[0]; /**< marker that allows us to overwrite 8 bytes
421                                * with a single assignment */
422
423 /**
424  * The generic rte_mbuf, containing a packet mbuf.
425  */
426 struct rte_mbuf {
427         MARKER cacheline0;
428
429         void *buf_addr;           /**< Virtual address of segment buffer. */
430         /**
431          * Physical address of segment buffer.
432          * Force alignment to 8-bytes, so as to ensure we have the exact
433          * same mbuf cacheline0 layout for 32-bit and 64-bit. This makes
434          * working on vector drivers easier.
435          */
436         RTE_STD_C11
437         union {
438                 rte_iova_t buf_iova;
439                 rte_iova_t buf_physaddr; /**< deprecated */
440         } __rte_aligned(sizeof(rte_iova_t));
441
442         /* next 8 bytes are initialised on RX descriptor rearm */
443         MARKER64 rearm_data;
444         uint16_t data_off;
445
446         /**
447          * Reference counter. Its size should at least equal to the size
448          * of port field (16 bits), to support zero-copy broadcast.
449          * It should only be accessed using the following functions:
450          * rte_mbuf_refcnt_update(), rte_mbuf_refcnt_read(), and
451          * rte_mbuf_refcnt_set(). The functionality of these functions (atomic,
452          * or non-atomic) is controlled by the CONFIG_RTE_MBUF_REFCNT_ATOMIC
453          * config option.
454          */
455         RTE_STD_C11
456         union {
457                 rte_atomic16_t refcnt_atomic; /**< Atomically accessed refcnt */
458                 uint16_t refcnt;              /**< Non-atomically accessed refcnt */
459         };
460         uint16_t nb_segs;         /**< Number of segments. */
461
462         /** Input port (16 bits to support more than 256 virtual ports). */
463         uint16_t port;
464
465         uint64_t ol_flags;        /**< Offload features. */
466
467         /* remaining bytes are set on RX when pulling packet from descriptor */
468         MARKER rx_descriptor_fields1;
469
470         /*
471          * The packet type, which is the combination of outer/inner L2, L3, L4
472          * and tunnel types. The packet_type is about data really present in the
473          * mbuf. Example: if vlan stripping is enabled, a received vlan packet
474          * would have RTE_PTYPE_L2_ETHER and not RTE_PTYPE_L2_VLAN because the
475          * vlan is stripped from the data.
476          */
477         RTE_STD_C11
478         union {
479                 uint32_t packet_type; /**< L2/L3/L4 and tunnel information. */
480                 struct {
481                         uint32_t l2_type:4; /**< (Outer) L2 type. */
482                         uint32_t l3_type:4; /**< (Outer) L3 type. */
483                         uint32_t l4_type:4; /**< (Outer) L4 type. */
484                         uint32_t tun_type:4; /**< Tunnel type. */
485                         RTE_STD_C11
486                         union {
487                                 uint8_t inner_esp_next_proto;
488                                 /**< ESP next protocol type, valid if
489                                  * RTE_PTYPE_TUNNEL_ESP tunnel type is set
490                                  * on both Tx and Rx.
491                                  */
492                                 __extension__
493                                 struct {
494                                         uint8_t inner_l2_type:4;
495                                         /**< Inner L2 type. */
496                                         uint8_t inner_l3_type:4;
497                                         /**< Inner L3 type. */
498                                 };
499                         };
500                         uint32_t inner_l4_type:4; /**< Inner L4 type. */
501                 };
502         };
503
504         uint32_t pkt_len;         /**< Total pkt len: sum of all segments. */
505         uint16_t data_len;        /**< Amount of data in segment buffer. */
506         /** VLAN TCI (CPU order), valid if PKT_RX_VLAN_STRIPPED is set. */
507         uint16_t vlan_tci;
508
509         union {
510                 uint32_t rss;     /**< RSS hash result if RSS enabled */
511                 struct {
512                         RTE_STD_C11
513                         union {
514                                 struct {
515                                         uint16_t hash;
516                                         uint16_t id;
517                                 };
518                                 uint32_t lo;
519                                 /**< Second 4 flexible bytes */
520                         };
521                         uint32_t hi;
522                         /**< First 4 flexible bytes or FD ID, dependent on
523                              PKT_RX_FDIR_* flag in ol_flags. */
524                 } fdir;           /**< Filter identifier if FDIR enabled */
525                 struct {
526                         uint32_t lo;
527                         uint32_t hi;
528                 } sched;          /**< Hierarchical scheduler */
529                 uint32_t usr;     /**< User defined tags. See rte_distributor_process() */
530         } hash;                   /**< hash information */
531
532         /** Outer VLAN TCI (CPU order), valid if PKT_RX_QINQ_STRIPPED is set. */
533         uint16_t vlan_tci_outer;
534
535         uint16_t buf_len;         /**< Length of segment buffer. */
536
537         /** Valid if PKT_RX_TIMESTAMP is set. The unit and time reference
538          * are not normalized but are always the same for a given port.
539          */
540         uint64_t timestamp;
541
542         /* second cache line - fields only used in slow path or on TX */
543         MARKER cacheline1 __rte_cache_min_aligned;
544
545         RTE_STD_C11
546         union {
547                 void *userdata;   /**< Can be used for external metadata */
548                 uint64_t udata64; /**< Allow 8-byte userdata on 32-bit */
549         };
550
551         struct rte_mempool *pool; /**< Pool from which mbuf was allocated. */
552         struct rte_mbuf *next;    /**< Next segment of scattered packet. */
553
554         /* fields to support TX offloads */
555         RTE_STD_C11
556         union {
557                 uint64_t tx_offload;       /**< combined for easy fetch */
558                 __extension__
559                 struct {
560                         uint64_t l2_len:7;
561                         /**< L2 (MAC) Header Length for non-tunneling pkt.
562                          * Outer_L4_len + ... + Inner_L2_len for tunneling pkt.
563                          */
564                         uint64_t l3_len:9; /**< L3 (IP) Header Length. */
565                         uint64_t l4_len:8; /**< L4 (TCP/UDP) Header Length. */
566                         uint64_t tso_segsz:16; /**< TCP TSO segment size */
567
568                         /* fields for TX offloading of tunnels */
569                         uint64_t outer_l3_len:9; /**< Outer L3 (IP) Hdr Length. */
570                         uint64_t outer_l2_len:7; /**< Outer L2 (MAC) Hdr Length. */
571
572                         /* uint64_t unused:8; */
573                 };
574         };
575
576         /** Size of the application private data. In case of an indirect
577          * mbuf, it stores the direct mbuf private data size. */
578         uint16_t priv_size;
579
580         /** Timesync flags for use with IEEE1588. */
581         uint16_t timesync;
582
583         /** Sequence number. See also rte_reorder_insert(). */
584         uint32_t seqn;
585
586 } __rte_cache_aligned;
587
588 /**< Maximum number of nb_segs allowed. */
589 #define RTE_MBUF_MAX_NB_SEGS    UINT16_MAX
590
591 /**
592  * Prefetch the first part of the mbuf
593  *
594  * The first 64 bytes of the mbuf corresponds to fields that are used early
595  * in the receive path. If the cache line of the architecture is higher than
596  * 64B, the second part will also be prefetched.
597  *
598  * @param m
599  *   The pointer to the mbuf.
600  */
601 static inline void
602 rte_mbuf_prefetch_part1(struct rte_mbuf *m)
603 {
604         rte_prefetch0(&m->cacheline0);
605 }
606
607 /**
608  * Prefetch the second part of the mbuf
609  *
610  * The next 64 bytes of the mbuf corresponds to fields that are used in the
611  * transmit path. If the cache line of the architecture is higher than 64B,
612  * this function does nothing as it is expected that the full mbuf is
613  * already in cache.
614  *
615  * @param m
616  *   The pointer to the mbuf.
617  */
618 static inline void
619 rte_mbuf_prefetch_part2(struct rte_mbuf *m)
620 {
621 #if RTE_CACHE_LINE_SIZE == 64
622         rte_prefetch0(&m->cacheline1);
623 #else
624         RTE_SET_USED(m);
625 #endif
626 }
627
628
629 static inline uint16_t rte_pktmbuf_priv_size(struct rte_mempool *mp);
630
631 /**
632  * Return the IO address of the beginning of the mbuf data
633  *
634  * @param mb
635  *   The pointer to the mbuf.
636  * @return
637  *   The IO address of the beginning of the mbuf data
638  */
639 static inline rte_iova_t
640 rte_mbuf_data_iova(const struct rte_mbuf *mb)
641 {
642         return mb->buf_iova + mb->data_off;
643 }
644
645 __rte_deprecated
646 static inline phys_addr_t
647 rte_mbuf_data_dma_addr(const struct rte_mbuf *mb)
648 {
649         return rte_mbuf_data_iova(mb);
650 }
651
652 /**
653  * Return the default IO address of the beginning of the mbuf data
654  *
655  * This function is used by drivers in their receive function, as it
656  * returns the location where data should be written by the NIC, taking
657  * the default headroom in account.
658  *
659  * @param mb
660  *   The pointer to the mbuf.
661  * @return
662  *   The IO address of the beginning of the mbuf data
663  */
664 static inline rte_iova_t
665 rte_mbuf_data_iova_default(const struct rte_mbuf *mb)
666 {
667         return mb->buf_iova + RTE_PKTMBUF_HEADROOM;
668 }
669
670 __rte_deprecated
671 static inline phys_addr_t
672 rte_mbuf_data_dma_addr_default(const struct rte_mbuf *mb)
673 {
674         return rte_mbuf_data_iova_default(mb);
675 }
676
677 /**
678  * Return the mbuf owning the data buffer address of an indirect mbuf.
679  *
680  * @param mi
681  *   The pointer to the indirect mbuf.
682  * @return
683  *   The address of the direct mbuf corresponding to buffer_addr.
684  */
685 static inline struct rte_mbuf *
686 rte_mbuf_from_indirect(struct rte_mbuf *mi)
687 {
688         return (struct rte_mbuf *)RTE_PTR_SUB(mi->buf_addr, sizeof(*mi) + mi->priv_size);
689 }
690
691 /**
692  * Return the buffer address embedded in the given mbuf.
693  *
694  * @param md
695  *   The pointer to the mbuf.
696  * @return
697  *   The address of the data buffer owned by the mbuf.
698  */
699 static inline char *
700 rte_mbuf_to_baddr(struct rte_mbuf *md)
701 {
702         char *buffer_addr;
703         buffer_addr = (char *)md + sizeof(*md) + rte_pktmbuf_priv_size(md->pool);
704         return buffer_addr;
705 }
706
707 /**
708  * Returns TRUE if given mbuf is indirect, or FALSE otherwise.
709  */
710 #define RTE_MBUF_INDIRECT(mb)   ((mb)->ol_flags & IND_ATTACHED_MBUF)
711
712 /**
713  * Returns TRUE if given mbuf is direct, or FALSE otherwise.
714  */
715 #define RTE_MBUF_DIRECT(mb)     (!RTE_MBUF_INDIRECT(mb))
716
717 /**
718  * Private data in case of pktmbuf pool.
719  *
720  * A structure that contains some pktmbuf_pool-specific data that are
721  * appended after the mempool structure (in private data).
722  */
723 struct rte_pktmbuf_pool_private {
724         uint16_t mbuf_data_room_size; /**< Size of data space in each mbuf. */
725         uint16_t mbuf_priv_size;      /**< Size of private area in each mbuf. */
726 };
727
728 #ifdef RTE_LIBRTE_MBUF_DEBUG
729
730 /**  check mbuf type in debug mode */
731 #define __rte_mbuf_sanity_check(m, is_h) rte_mbuf_sanity_check(m, is_h)
732
733 #else /*  RTE_LIBRTE_MBUF_DEBUG */
734
735 /**  check mbuf type in debug mode */
736 #define __rte_mbuf_sanity_check(m, is_h) do { } while (0)
737
738 #endif /*  RTE_LIBRTE_MBUF_DEBUG */
739
740 #ifdef RTE_MBUF_REFCNT_ATOMIC
741
742 /**
743  * Reads the value of an mbuf's refcnt.
744  * @param m
745  *   Mbuf to read
746  * @return
747  *   Reference count number.
748  */
749 static inline uint16_t
750 rte_mbuf_refcnt_read(const struct rte_mbuf *m)
751 {
752         return (uint16_t)(rte_atomic16_read(&m->refcnt_atomic));
753 }
754
755 /**
756  * Sets an mbuf's refcnt to a defined value.
757  * @param m
758  *   Mbuf to update
759  * @param new_value
760  *   Value set
761  */
762 static inline void
763 rte_mbuf_refcnt_set(struct rte_mbuf *m, uint16_t new_value)
764 {
765         rte_atomic16_set(&m->refcnt_atomic, new_value);
766 }
767
768 /* internal */
769 static inline uint16_t
770 __rte_mbuf_refcnt_update(struct rte_mbuf *m, int16_t value)
771 {
772         return (uint16_t)(rte_atomic16_add_return(&m->refcnt_atomic, value));
773 }
774
775 /**
776  * Adds given value to an mbuf's refcnt and returns its new value.
777  * @param m
778  *   Mbuf to update
779  * @param value
780  *   Value to add/subtract
781  * @return
782  *   Updated value
783  */
784 static inline uint16_t
785 rte_mbuf_refcnt_update(struct rte_mbuf *m, int16_t value)
786 {
787         /*
788          * The atomic_add is an expensive operation, so we don't want to
789          * call it in the case where we know we are the uniq holder of
790          * this mbuf (i.e. ref_cnt == 1). Otherwise, an atomic
791          * operation has to be used because concurrent accesses on the
792          * reference counter can occur.
793          */
794         if (likely(rte_mbuf_refcnt_read(m) == 1)) {
795                 rte_mbuf_refcnt_set(m, 1 + value);
796                 return 1 + value;
797         }
798
799         return __rte_mbuf_refcnt_update(m, value);
800 }
801
802 #else /* ! RTE_MBUF_REFCNT_ATOMIC */
803
804 /* internal */
805 static inline uint16_t
806 __rte_mbuf_refcnt_update(struct rte_mbuf *m, int16_t value)
807 {
808         m->refcnt = (uint16_t)(m->refcnt + value);
809         return m->refcnt;
810 }
811
812 /**
813  * Adds given value to an mbuf's refcnt and returns its new value.
814  */
815 static inline uint16_t
816 rte_mbuf_refcnt_update(struct rte_mbuf *m, int16_t value)
817 {
818         return __rte_mbuf_refcnt_update(m, value);
819 }
820
821 /**
822  * Reads the value of an mbuf's refcnt.
823  */
824 static inline uint16_t
825 rte_mbuf_refcnt_read(const struct rte_mbuf *m)
826 {
827         return m->refcnt;
828 }
829
830 /**
831  * Sets an mbuf's refcnt to the defined value.
832  */
833 static inline void
834 rte_mbuf_refcnt_set(struct rte_mbuf *m, uint16_t new_value)
835 {
836         m->refcnt = new_value;
837 }
838
839 #endif /* RTE_MBUF_REFCNT_ATOMIC */
840
841 /** Mbuf prefetch */
842 #define RTE_MBUF_PREFETCH_TO_FREE(m) do {       \
843         if ((m) != NULL)                        \
844                 rte_prefetch0(m);               \
845 } while (0)
846
847
848 /**
849  * Sanity checks on an mbuf.
850  *
851  * Check the consistency of the given mbuf. The function will cause a
852  * panic if corruption is detected.
853  *
854  * @param m
855  *   The mbuf to be checked.
856  * @param is_header
857  *   True if the mbuf is a packet header, false if it is a sub-segment
858  *   of a packet (in this case, some fields like nb_segs are not checked)
859  */
860 void
861 rte_mbuf_sanity_check(const struct rte_mbuf *m, int is_header);
862
863 #define MBUF_RAW_ALLOC_CHECK(m) do {                            \
864         RTE_ASSERT(rte_mbuf_refcnt_read(m) == 1);               \
865         RTE_ASSERT((m)->next == NULL);                          \
866         RTE_ASSERT((m)->nb_segs == 1);                          \
867         __rte_mbuf_sanity_check(m, 0);                          \
868 } while (0)
869
870 /**
871  * Allocate an uninitialized mbuf from mempool *mp*.
872  *
873  * This function can be used by PMDs (especially in RX functions) to
874  * allocate an uninitialized mbuf. The driver is responsible of
875  * initializing all the required fields. See rte_pktmbuf_reset().
876  * For standard needs, prefer rte_pktmbuf_alloc().
877  *
878  * The caller can expect that the following fields of the mbuf structure
879  * are initialized: buf_addr, buf_iova, buf_len, refcnt=1, nb_segs=1,
880  * next=NULL, pool, priv_size. The other fields must be initialized
881  * by the caller.
882  *
883  * @param mp
884  *   The mempool from which mbuf is allocated.
885  * @return
886  *   - The pointer to the new mbuf on success.
887  *   - NULL if allocation failed.
888  */
889 static inline struct rte_mbuf *rte_mbuf_raw_alloc(struct rte_mempool *mp)
890 {
891         struct rte_mbuf *m;
892         void *mb = NULL;
893
894         if (rte_mempool_get(mp, &mb) < 0)
895                 return NULL;
896         m = (struct rte_mbuf *)mb;
897         MBUF_RAW_ALLOC_CHECK(m);
898         return m;
899 }
900
901 /**
902  * Put mbuf back into its original mempool.
903  *
904  * The caller must ensure that the mbuf is direct and properly
905  * reinitialized (refcnt=1, next=NULL, nb_segs=1), as done by
906  * rte_pktmbuf_prefree_seg().
907  *
908  * This function should be used with care, when optimization is
909  * required. For standard needs, prefer rte_pktmbuf_free() or
910  * rte_pktmbuf_free_seg().
911  *
912  * @param m
913  *   The mbuf to be freed.
914  */
915 static __rte_always_inline void
916 rte_mbuf_raw_free(struct rte_mbuf *m)
917 {
918         RTE_ASSERT(RTE_MBUF_DIRECT(m));
919         RTE_ASSERT(rte_mbuf_refcnt_read(m) == 1);
920         RTE_ASSERT(m->next == NULL);
921         RTE_ASSERT(m->nb_segs == 1);
922         __rte_mbuf_sanity_check(m, 0);
923         rte_mempool_put(m->pool, m);
924 }
925
926 /* compat with older versions */
927 __rte_deprecated
928 static inline void
929 __rte_mbuf_raw_free(struct rte_mbuf *m)
930 {
931         rte_mbuf_raw_free(m);
932 }
933
934 /* Operations on ctrl mbuf */
935
936 /**
937  * The control mbuf constructor.
938  *
939  * This function initializes some fields in an mbuf structure that are
940  * not modified by the user once created (mbuf type, origin pool, buffer
941  * start address, and so on). This function is given as a callback function
942  * to rte_mempool_obj_iter() or rte_mempool_create() at pool creation time.
943  *
944  * @param mp
945  *   The mempool from which the mbuf is allocated.
946  * @param opaque_arg
947  *   A pointer that can be used by the user to retrieve useful information
948  *   for mbuf initialization. This pointer is the opaque argument passed to
949  *   rte_mempool_obj_iter() or rte_mempool_create().
950  * @param m
951  *   The mbuf to initialize.
952  * @param i
953  *   The index of the mbuf in the pool table.
954  */
955 void rte_ctrlmbuf_init(struct rte_mempool *mp, void *opaque_arg,
956                 void *m, unsigned i);
957
958 /**
959  * Allocate a new mbuf (type is ctrl) from mempool *mp*.
960  *
961  * This new mbuf is initialized with data pointing to the beginning of
962  * buffer, and with a length of zero.
963  *
964  * @param mp
965  *   The mempool from which the mbuf is allocated.
966  * @return
967  *   - The pointer to the new mbuf on success.
968  *   - NULL if allocation failed.
969  */
970 #define rte_ctrlmbuf_alloc(mp) rte_pktmbuf_alloc(mp)
971
972 /**
973  * Free a control mbuf back into its original mempool.
974  *
975  * @param m
976  *   The control mbuf to be freed.
977  */
978 #define rte_ctrlmbuf_free(m) rte_pktmbuf_free(m)
979
980 /**
981  * A macro that returns the pointer to the carried data.
982  *
983  * The value that can be read or assigned.
984  *
985  * @param m
986  *   The control mbuf.
987  */
988 #define rte_ctrlmbuf_data(m) ((char *)((m)->buf_addr) + (m)->data_off)
989
990 /**
991  * A macro that returns the length of the carried data.
992  *
993  * The value that can be read or assigned.
994  *
995  * @param m
996  *   The control mbuf.
997  */
998 #define rte_ctrlmbuf_len(m) rte_pktmbuf_data_len(m)
999
1000 /**
1001  * Tests if an mbuf is a control mbuf
1002  *
1003  * @param m
1004  *   The mbuf to be tested
1005  * @return
1006  *   - True (1) if the mbuf is a control mbuf
1007  *   - False(0) otherwise
1008  */
1009 static inline int
1010 rte_is_ctrlmbuf(struct rte_mbuf *m)
1011 {
1012         return !!(m->ol_flags & CTRL_MBUF_FLAG);
1013 }
1014
1015 /* Operations on pkt mbuf */
1016
1017 /**
1018  * The packet mbuf constructor.
1019  *
1020  * This function initializes some fields in the mbuf structure that are
1021  * not modified by the user once created (origin pool, buffer start
1022  * address, and so on). This function is given as a callback function to
1023  * rte_mempool_obj_iter() or rte_mempool_create() at pool creation time.
1024  *
1025  * @param mp
1026  *   The mempool from which mbufs originate.
1027  * @param opaque_arg
1028  *   A pointer that can be used by the user to retrieve useful information
1029  *   for mbuf initialization. This pointer is the opaque argument passed to
1030  *   rte_mempool_obj_iter() or rte_mempool_create().
1031  * @param m
1032  *   The mbuf to initialize.
1033  * @param i
1034  *   The index of the mbuf in the pool table.
1035  */
1036 void rte_pktmbuf_init(struct rte_mempool *mp, void *opaque_arg,
1037                       void *m, unsigned i);
1038
1039
1040 /**
1041  * A  packet mbuf pool constructor.
1042  *
1043  * This function initializes the mempool private data in the case of a
1044  * pktmbuf pool. This private data is needed by the driver. The
1045  * function must be called on the mempool before it is used, or it
1046  * can be given as a callback function to rte_mempool_create() at
1047  * pool creation. It can be extended by the user, for example, to
1048  * provide another packet size.
1049  *
1050  * @param mp
1051  *   The mempool from which mbufs originate.
1052  * @param opaque_arg
1053  *   A pointer that can be used by the user to retrieve useful information
1054  *   for mbuf initialization. This pointer is the opaque argument passed to
1055  *   rte_mempool_create().
1056  */
1057 void rte_pktmbuf_pool_init(struct rte_mempool *mp, void *opaque_arg);
1058
1059 /**
1060  * Create a mbuf pool.
1061  *
1062  * This function creates and initializes a packet mbuf pool. It is
1063  * a wrapper to rte_mempool functions.
1064  *
1065  * @param name
1066  *   The name of the mbuf pool.
1067  * @param n
1068  *   The number of elements in the mbuf pool. The optimum size (in terms
1069  *   of memory usage) for a mempool is when n is a power of two minus one:
1070  *   n = (2^q - 1).
1071  * @param cache_size
1072  *   Size of the per-core object cache. See rte_mempool_create() for
1073  *   details.
1074  * @param priv_size
1075  *   Size of application private are between the rte_mbuf structure
1076  *   and the data buffer. This value must be aligned to RTE_MBUF_PRIV_ALIGN.
1077  * @param data_room_size
1078  *   Size of data buffer in each mbuf, including RTE_PKTMBUF_HEADROOM.
1079  * @param socket_id
1080  *   The socket identifier where the memory should be allocated. The
1081  *   value can be *SOCKET_ID_ANY* if there is no NUMA constraint for the
1082  *   reserved zone.
1083  * @return
1084  *   The pointer to the new allocated mempool, on success. NULL on error
1085  *   with rte_errno set appropriately. Possible rte_errno values include:
1086  *    - E_RTE_NO_CONFIG - function could not get pointer to rte_config structure
1087  *    - E_RTE_SECONDARY - function was called from a secondary process instance
1088  *    - EINVAL - cache size provided is too large, or priv_size is not aligned.
1089  *    - ENOSPC - the maximum number of memzones has already been allocated
1090  *    - EEXIST - a memzone with the same name already exists
1091  *    - ENOMEM - no appropriate memory area found in which to create memzone
1092  */
1093 struct rte_mempool *
1094 rte_pktmbuf_pool_create(const char *name, unsigned n,
1095         unsigned cache_size, uint16_t priv_size, uint16_t data_room_size,
1096         int socket_id);
1097
1098 /**
1099  * Get the data room size of mbufs stored in a pktmbuf_pool
1100  *
1101  * The data room size is the amount of data that can be stored in a
1102  * mbuf including the headroom (RTE_PKTMBUF_HEADROOM).
1103  *
1104  * @param mp
1105  *   The packet mbuf pool.
1106  * @return
1107  *   The data room size of mbufs stored in this mempool.
1108  */
1109 static inline uint16_t
1110 rte_pktmbuf_data_room_size(struct rte_mempool *mp)
1111 {
1112         struct rte_pktmbuf_pool_private *mbp_priv;
1113
1114         mbp_priv = (struct rte_pktmbuf_pool_private *)rte_mempool_get_priv(mp);
1115         return mbp_priv->mbuf_data_room_size;
1116 }
1117
1118 /**
1119  * Get the application private size of mbufs stored in a pktmbuf_pool
1120  *
1121  * The private size of mbuf is a zone located between the rte_mbuf
1122  * structure and the data buffer where an application can store data
1123  * associated to a packet.
1124  *
1125  * @param mp
1126  *   The packet mbuf pool.
1127  * @return
1128  *   The private size of mbufs stored in this mempool.
1129  */
1130 static inline uint16_t
1131 rte_pktmbuf_priv_size(struct rte_mempool *mp)
1132 {
1133         struct rte_pktmbuf_pool_private *mbp_priv;
1134
1135         mbp_priv = (struct rte_pktmbuf_pool_private *)rte_mempool_get_priv(mp);
1136         return mbp_priv->mbuf_priv_size;
1137 }
1138
1139 /**
1140  * Reset the data_off field of a packet mbuf to its default value.
1141  *
1142  * The given mbuf must have only one segment, which should be empty.
1143  *
1144  * @param m
1145  *   The packet mbuf's data_off field has to be reset.
1146  */
1147 static inline void rte_pktmbuf_reset_headroom(struct rte_mbuf *m)
1148 {
1149         m->data_off = RTE_MIN(RTE_PKTMBUF_HEADROOM, (uint16_t)m->buf_len);
1150 }
1151
1152 /**
1153  * Reset the fields of a packet mbuf to their default values.
1154  *
1155  * The given mbuf must have only one segment.
1156  *
1157  * @param m
1158  *   The packet mbuf to be resetted.
1159  */
1160 #define MBUF_INVALID_PORT UINT16_MAX
1161
1162 static inline void rte_pktmbuf_reset(struct rte_mbuf *m)
1163 {
1164         m->next = NULL;
1165         m->pkt_len = 0;
1166         m->tx_offload = 0;
1167         m->vlan_tci = 0;
1168         m->vlan_tci_outer = 0;
1169         m->nb_segs = 1;
1170         m->port = MBUF_INVALID_PORT;
1171
1172         m->ol_flags = 0;
1173         m->packet_type = 0;
1174         rte_pktmbuf_reset_headroom(m);
1175
1176         m->data_len = 0;
1177         __rte_mbuf_sanity_check(m, 1);
1178 }
1179
1180 /**
1181  * Allocate a new mbuf from a mempool.
1182  *
1183  * This new mbuf contains one segment, which has a length of 0. The pointer
1184  * to data is initialized to have some bytes of headroom in the buffer
1185  * (if buffer size allows).
1186  *
1187  * @param mp
1188  *   The mempool from which the mbuf is allocated.
1189  * @return
1190  *   - The pointer to the new mbuf on success.
1191  *   - NULL if allocation failed.
1192  */
1193 static inline struct rte_mbuf *rte_pktmbuf_alloc(struct rte_mempool *mp)
1194 {
1195         struct rte_mbuf *m;
1196         if ((m = rte_mbuf_raw_alloc(mp)) != NULL)
1197                 rte_pktmbuf_reset(m);
1198         return m;
1199 }
1200
1201 /**
1202  * Allocate a bulk of mbufs, initialize refcnt and reset the fields to default
1203  * values.
1204  *
1205  *  @param pool
1206  *    The mempool from which mbufs are allocated.
1207  *  @param mbufs
1208  *    Array of pointers to mbufs
1209  *  @param count
1210  *    Array size
1211  *  @return
1212  *   - 0: Success
1213  *   - -ENOENT: Not enough entries in the mempool; no mbufs are retrieved.
1214  */
1215 static inline int rte_pktmbuf_alloc_bulk(struct rte_mempool *pool,
1216          struct rte_mbuf **mbufs, unsigned count)
1217 {
1218         unsigned idx = 0;
1219         int rc;
1220
1221         rc = rte_mempool_get_bulk(pool, (void **)mbufs, count);
1222         if (unlikely(rc))
1223                 return rc;
1224
1225         /* To understand duff's device on loop unwinding optimization, see
1226          * https://en.wikipedia.org/wiki/Duff's_device.
1227          * Here while() loop is used rather than do() while{} to avoid extra
1228          * check if count is zero.
1229          */
1230         switch (count % 4) {
1231         case 0:
1232                 while (idx != count) {
1233                         MBUF_RAW_ALLOC_CHECK(mbufs[idx]);
1234                         rte_pktmbuf_reset(mbufs[idx]);
1235                         idx++;
1236                         /* fall-through */
1237         case 3:
1238                         MBUF_RAW_ALLOC_CHECK(mbufs[idx]);
1239                         rte_pktmbuf_reset(mbufs[idx]);
1240                         idx++;
1241                         /* fall-through */
1242         case 2:
1243                         MBUF_RAW_ALLOC_CHECK(mbufs[idx]);
1244                         rte_pktmbuf_reset(mbufs[idx]);
1245                         idx++;
1246                         /* fall-through */
1247         case 1:
1248                         MBUF_RAW_ALLOC_CHECK(mbufs[idx]);
1249                         rte_pktmbuf_reset(mbufs[idx]);
1250                         idx++;
1251                         /* fall-through */
1252                 }
1253         }
1254         return 0;
1255 }
1256
1257 /**
1258  * Attach packet mbuf to another packet mbuf.
1259  *
1260  * After attachment we refer the mbuf we attached as 'indirect',
1261  * while mbuf we attached to as 'direct'.
1262  * The direct mbuf's reference counter is incremented.
1263  *
1264  * Right now, not supported:
1265  *  - attachment for already indirect mbuf (e.g. - mi has to be direct).
1266  *  - mbuf we trying to attach (mi) is used by someone else
1267  *    e.g. it's reference counter is greater then 1.
1268  *
1269  * @param mi
1270  *   The indirect packet mbuf.
1271  * @param m
1272  *   The packet mbuf we're attaching to.
1273  */
1274 static inline void rte_pktmbuf_attach(struct rte_mbuf *mi, struct rte_mbuf *m)
1275 {
1276         struct rte_mbuf *md;
1277
1278         RTE_ASSERT(RTE_MBUF_DIRECT(mi) &&
1279             rte_mbuf_refcnt_read(mi) == 1);
1280
1281         /* if m is not direct, get the mbuf that embeds the data */
1282         if (RTE_MBUF_DIRECT(m))
1283                 md = m;
1284         else
1285                 md = rte_mbuf_from_indirect(m);
1286
1287         rte_mbuf_refcnt_update(md, 1);
1288         mi->priv_size = m->priv_size;
1289         mi->buf_iova = m->buf_iova;
1290         mi->buf_addr = m->buf_addr;
1291         mi->buf_len = m->buf_len;
1292
1293         mi->data_off = m->data_off;
1294         mi->data_len = m->data_len;
1295         mi->port = m->port;
1296         mi->vlan_tci = m->vlan_tci;
1297         mi->vlan_tci_outer = m->vlan_tci_outer;
1298         mi->tx_offload = m->tx_offload;
1299         mi->hash = m->hash;
1300
1301         mi->next = NULL;
1302         mi->pkt_len = mi->data_len;
1303         mi->nb_segs = 1;
1304         mi->ol_flags = m->ol_flags | IND_ATTACHED_MBUF;
1305         mi->packet_type = m->packet_type;
1306         mi->timestamp = m->timestamp;
1307
1308         __rte_mbuf_sanity_check(mi, 1);
1309         __rte_mbuf_sanity_check(m, 0);
1310 }
1311
1312 /**
1313  * Detach an indirect packet mbuf.
1314  *
1315  *  - restore original mbuf address and length values.
1316  *  - reset pktmbuf data and data_len to their default values.
1317  *  - decrement the direct mbuf's reference counter. When the
1318  *  reference counter becomes 0, the direct mbuf is freed.
1319  *
1320  * All other fields of the given packet mbuf will be left intact.
1321  *
1322  * @param m
1323  *   The indirect attached packet mbuf.
1324  */
1325 static inline void rte_pktmbuf_detach(struct rte_mbuf *m)
1326 {
1327         struct rte_mbuf *md = rte_mbuf_from_indirect(m);
1328         struct rte_mempool *mp = m->pool;
1329         uint32_t mbuf_size, buf_len, priv_size;
1330
1331         priv_size = rte_pktmbuf_priv_size(mp);
1332         mbuf_size = 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         m->data_off -= len;
1670         m->data_len = (uint16_t)(m->data_len + len);
1671         m->pkt_len  = (m->pkt_len + len);
1672
1673         return (char *)m->buf_addr + m->data_off;
1674 }
1675
1676 /**
1677  * Append len bytes to an mbuf.
1678  *
1679  * Append len bytes to an mbuf and return a pointer to the start address
1680  * of the added data. If there is not enough tailroom in the last
1681  * segment, the function will return NULL, without modifying the mbuf.
1682  *
1683  * @param m
1684  *   The packet mbuf.
1685  * @param len
1686  *   The amount of data to append (in bytes).
1687  * @return
1688  *   A pointer to the start of the newly appended data, or
1689  *   NULL if there is not enough tailroom space in the last segment
1690  */
1691 static inline char *rte_pktmbuf_append(struct rte_mbuf *m, uint16_t len)
1692 {
1693         void *tail;
1694         struct rte_mbuf *m_last;
1695
1696         __rte_mbuf_sanity_check(m, 1);
1697
1698         m_last = rte_pktmbuf_lastseg(m);
1699         if (unlikely(len > rte_pktmbuf_tailroom(m_last)))
1700                 return NULL;
1701
1702         tail = (char *)m_last->buf_addr + m_last->data_off + m_last->data_len;
1703         m_last->data_len = (uint16_t)(m_last->data_len + len);
1704         m->pkt_len  = (m->pkt_len + len);
1705         return (char*) tail;
1706 }
1707
1708 /**
1709  * Remove len bytes at the beginning of an mbuf.
1710  *
1711  * Returns a pointer to the start address of the new data area. If the
1712  * length is greater than the length of the first segment, then the
1713  * function will fail and return NULL, without modifying the mbuf.
1714  *
1715  * @param m
1716  *   The packet mbuf.
1717  * @param len
1718  *   The amount of data to remove (in bytes).
1719  * @return
1720  *   A pointer to the new start of the data.
1721  */
1722 static inline char *rte_pktmbuf_adj(struct rte_mbuf *m, uint16_t len)
1723 {
1724         __rte_mbuf_sanity_check(m, 1);
1725
1726         if (unlikely(len > m->data_len))
1727                 return NULL;
1728
1729         m->data_len = (uint16_t)(m->data_len - len);
1730         m->data_off += len;
1731         m->pkt_len  = (m->pkt_len - len);
1732         return (char *)m->buf_addr + m->data_off;
1733 }
1734
1735 /**
1736  * Remove len bytes of data at the end of the mbuf.
1737  *
1738  * If the length is greater than the length of the last segment, the
1739  * function will fail and return -1 without modifying the mbuf.
1740  *
1741  * @param m
1742  *   The packet mbuf.
1743  * @param len
1744  *   The amount of data to remove (in bytes).
1745  * @return
1746  *   - 0: On success.
1747  *   - -1: On error.
1748  */
1749 static inline int rte_pktmbuf_trim(struct rte_mbuf *m, uint16_t len)
1750 {
1751         struct rte_mbuf *m_last;
1752
1753         __rte_mbuf_sanity_check(m, 1);
1754
1755         m_last = rte_pktmbuf_lastseg(m);
1756         if (unlikely(len > m_last->data_len))
1757                 return -1;
1758
1759         m_last->data_len = (uint16_t)(m_last->data_len - len);
1760         m->pkt_len  = (m->pkt_len - len);
1761         return 0;
1762 }
1763
1764 /**
1765  * Test if mbuf data is contiguous.
1766  *
1767  * @param m
1768  *   The packet mbuf.
1769  * @return
1770  *   - 1, if all data is contiguous (one segment).
1771  *   - 0, if there is several segments.
1772  */
1773 static inline int rte_pktmbuf_is_contiguous(const struct rte_mbuf *m)
1774 {
1775         __rte_mbuf_sanity_check(m, 1);
1776         return !!(m->nb_segs == 1);
1777 }
1778
1779 /**
1780  * @internal used by rte_pktmbuf_read().
1781  */
1782 const void *__rte_pktmbuf_read(const struct rte_mbuf *m, uint32_t off,
1783         uint32_t len, void *buf);
1784
1785 /**
1786  * Read len data bytes in a mbuf at specified offset.
1787  *
1788  * If the data is contiguous, return the pointer in the mbuf data, else
1789  * copy the data in the buffer provided by the user and return its
1790  * pointer.
1791  *
1792  * @param m
1793  *   The pointer to the mbuf.
1794  * @param off
1795  *   The offset of the data in the mbuf.
1796  * @param len
1797  *   The amount of bytes to read.
1798  * @param buf
1799  *   The buffer where data is copied if it is not contiguous in mbuf
1800  *   data. Its length should be at least equal to the len parameter.
1801  * @return
1802  *   The pointer to the data, either in the mbuf if it is contiguous,
1803  *   or in the user buffer. If mbuf is too small, NULL is returned.
1804  */
1805 static inline const void *rte_pktmbuf_read(const struct rte_mbuf *m,
1806         uint32_t off, uint32_t len, void *buf)
1807 {
1808         if (likely(off + len <= rte_pktmbuf_data_len(m)))
1809                 return rte_pktmbuf_mtod_offset(m, char *, off);
1810         else
1811                 return __rte_pktmbuf_read(m, off, len, buf);
1812 }
1813
1814 /**
1815  * Chain an mbuf to another, thereby creating a segmented packet.
1816  *
1817  * Note: The implementation will do a linear walk over the segments to find
1818  * the tail entry. For cases when there are many segments, it's better to
1819  * chain the entries manually.
1820  *
1821  * @param head
1822  *   The head of the mbuf chain (the first packet)
1823  * @param tail
1824  *   The mbuf to put last in the chain
1825  *
1826  * @return
1827  *   - 0, on success.
1828  *   - -EOVERFLOW, if the chain segment limit exceeded
1829  */
1830 static inline int rte_pktmbuf_chain(struct rte_mbuf *head, struct rte_mbuf *tail)
1831 {
1832         struct rte_mbuf *cur_tail;
1833
1834         /* Check for number-of-segments-overflow */
1835         if (head->nb_segs + tail->nb_segs > RTE_MBUF_MAX_NB_SEGS)
1836                 return -EOVERFLOW;
1837
1838         /* Chain 'tail' onto the old tail */
1839         cur_tail = rte_pktmbuf_lastseg(head);
1840         cur_tail->next = tail;
1841
1842         /* accumulate number of segments and total length. */
1843         head->nb_segs += tail->nb_segs;
1844         head->pkt_len += tail->pkt_len;
1845
1846         /* pkt_len is only set in the head */
1847         tail->pkt_len = tail->data_len;
1848
1849         return 0;
1850 }
1851
1852 /**
1853  * Validate general requirements for Tx offload in mbuf.
1854  *
1855  * This function checks correctness and completeness of Tx offload settings.
1856  *
1857  * @param m
1858  *   The packet mbuf to be validated.
1859  * @return
1860  *   0 if packet is valid
1861  */
1862 static inline int
1863 rte_validate_tx_offload(const struct rte_mbuf *m)
1864 {
1865         uint64_t ol_flags = m->ol_flags;
1866         uint64_t inner_l3_offset = m->l2_len;
1867
1868         /* Does packet set any of available offloads? */
1869         if (!(ol_flags & PKT_TX_OFFLOAD_MASK))
1870                 return 0;
1871
1872         if (ol_flags & PKT_TX_OUTER_IP_CKSUM)
1873                 inner_l3_offset += m->outer_l2_len + m->outer_l3_len;
1874
1875         /* Headers are fragmented */
1876         if (rte_pktmbuf_data_len(m) < inner_l3_offset + m->l3_len + m->l4_len)
1877                 return -ENOTSUP;
1878
1879         /* IP checksum can be counted only for IPv4 packet */
1880         if ((ol_flags & PKT_TX_IP_CKSUM) && (ol_flags & PKT_TX_IPV6))
1881                 return -EINVAL;
1882
1883         /* IP type not set when required */
1884         if (ol_flags & (PKT_TX_L4_MASK | PKT_TX_TCP_SEG))
1885                 if (!(ol_flags & (PKT_TX_IPV4 | PKT_TX_IPV6)))
1886                         return -EINVAL;
1887
1888         /* Check requirements for TSO packet */
1889         if (ol_flags & PKT_TX_TCP_SEG)
1890                 if ((m->tso_segsz == 0) ||
1891                                 ((ol_flags & PKT_TX_IPV4) &&
1892                                 !(ol_flags & PKT_TX_IP_CKSUM)))
1893                         return -EINVAL;
1894
1895         /* PKT_TX_OUTER_IP_CKSUM set for non outer IPv4 packet. */
1896         if ((ol_flags & PKT_TX_OUTER_IP_CKSUM) &&
1897                         !(ol_flags & PKT_TX_OUTER_IPV4))
1898                 return -EINVAL;
1899
1900         return 0;
1901 }
1902
1903 /**
1904  * Linearize data in mbuf.
1905  *
1906  * This function moves the mbuf data in the first segment if there is enough
1907  * tailroom. The subsequent segments are unchained and freed.
1908  *
1909  * @param mbuf
1910  *   mbuf to linearize
1911  * @return
1912  *   - 0, on success
1913  *   - -1, on error
1914  */
1915 static inline int
1916 rte_pktmbuf_linearize(struct rte_mbuf *mbuf)
1917 {
1918         int seg_len, copy_len;
1919         struct rte_mbuf *m;
1920         struct rte_mbuf *m_next;
1921         char *buffer;
1922
1923         if (rte_pktmbuf_is_contiguous(mbuf))
1924                 return 0;
1925
1926         /* Extend first segment to the total packet length */
1927         copy_len = rte_pktmbuf_pkt_len(mbuf) - rte_pktmbuf_data_len(mbuf);
1928
1929         if (unlikely(copy_len > rte_pktmbuf_tailroom(mbuf)))
1930                 return -1;
1931
1932         buffer = rte_pktmbuf_mtod_offset(mbuf, char *, mbuf->data_len);
1933         mbuf->data_len = (uint16_t)(mbuf->pkt_len);
1934
1935         /* Append data from next segments to the first one */
1936         m = mbuf->next;
1937         while (m != NULL) {
1938                 m_next = m->next;
1939
1940                 seg_len = rte_pktmbuf_data_len(m);
1941                 rte_memcpy(buffer, rte_pktmbuf_mtod(m, char *), seg_len);
1942                 buffer += seg_len;
1943
1944                 rte_pktmbuf_free_seg(m);
1945                 m = m_next;
1946         }
1947
1948         mbuf->next = NULL;
1949         mbuf->nb_segs = 1;
1950
1951         return 0;
1952 }
1953
1954 /**
1955  * Dump an mbuf structure to a file.
1956  *
1957  * Dump all fields for the given packet mbuf and all its associated
1958  * segments (in the case of a chained buffer).
1959  *
1960  * @param f
1961  *   A pointer to a file for output
1962  * @param m
1963  *   The packet mbuf.
1964  * @param dump_len
1965  *   If dump_len != 0, also dump the "dump_len" first data bytes of
1966  *   the packet.
1967  */
1968 void rte_pktmbuf_dump(FILE *f, const struct rte_mbuf *m, unsigned dump_len);
1969
1970 #ifdef __cplusplus
1971 }
1972 #endif
1973
1974 #endif /* _RTE_MBUF_H_ */