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