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