95424885544b08e79ef7f733892994ad4557fb38
[dpdk.git] / lib / librte_mbuf / rte_mbuf.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2014 Intel Corporation.
3  * Copyright 2014 6WIND S.A.
4  */
5
6 #ifndef _RTE_MBUF_H_
7 #define _RTE_MBUF_H_
8
9 /**
10  * @file
11  * RTE Mbuf
12  *
13  * The mbuf library provides the ability to create and destroy buffers
14  * that may be used by the RTE application to store message
15  * buffers. The message buffers are stored in a mempool, using the
16  * RTE mempool library.
17  *
18  * The preferred way to create a mbuf pool is to use
19  * rte_pktmbuf_pool_create(). However, in some situations, an
20  * application may want to have more control (ex: populate the pool with
21  * specific memory), in this case it is possible to use functions from
22  * rte_mempool. See how rte_pktmbuf_pool_create() is implemented for
23  * details.
24  *
25  * This library provides an API to allocate/free packet mbufs, which are
26  * used to carry network packets.
27  *
28  * To understand the concepts of packet buffers or mbufs, you
29  * should read "TCP/IP Illustrated, Volume 2: The Implementation,
30  * Addison-Wesley, 1995, ISBN 0-201-63354-X from Richard Stevens"
31  * http://www.kohala.com/start/tcpipiv2.html
32  */
33
34 #include <stdint.h>
35 #include <rte_compat.h>
36 #include <rte_common.h>
37 #include <rte_config.h>
38 #include <rte_mempool.h>
39 #include <rte_memory.h>
40 #include <rte_atomic.h>
41 #include <rte_prefetch.h>
42 #include <rte_branch_prediction.h>
43 #include <rte_byteorder.h>
44 #include <rte_mbuf_ptype.h>
45
46 #ifdef __cplusplus
47 extern "C" {
48 #endif
49
50 /*
51  * Packet Offload Features Flags. It also carry packet type information.
52  * Critical resources. Both rx/tx shared these bits. Be cautious on any change
53  *
54  * - RX flags start at bit position zero, and get added to the left of previous
55  *   flags.
56  * - The most-significant 3 bits are reserved for generic mbuf flags
57  * - TX flags therefore start at bit position 60 (i.e. 63-3), and new flags get
58  *   added to the right of the previously defined flags i.e. they should count
59  *   downwards, not upwards.
60  *
61  * Keep these flags synchronized with rte_get_rx_ol_flag_name() and
62  * rte_get_tx_ol_flag_name().
63  */
64
65 /**
66  * The RX packet is a 802.1q VLAN packet, and the tci has been
67  * saved in in mbuf->vlan_tci.
68  * If the flag PKT_RX_VLAN_STRIPPED is also present, the VLAN
69  * header has been stripped from mbuf data, else it is still
70  * present.
71  */
72 #define PKT_RX_VLAN          (1ULL << 0)
73
74 #define PKT_RX_RSS_HASH      (1ULL << 1)  /**< RX packet with RSS hash result. */
75 #define PKT_RX_FDIR          (1ULL << 2)  /**< RX packet with FDIR match indicate. */
76
77 /**
78  * Deprecated.
79  * Checking this flag alone is deprecated: check the 2 bits of
80  * PKT_RX_L4_CKSUM_MASK.
81  * This flag was set when the L4 checksum of a packet was detected as
82  * wrong by the hardware.
83  */
84 #define PKT_RX_L4_CKSUM_BAD  (1ULL << 3)
85
86 /**
87  * Deprecated.
88  * Checking this flag alone is deprecated: check the 2 bits of
89  * PKT_RX_IP_CKSUM_MASK.
90  * This flag was set when the IP checksum of a packet was detected as
91  * wrong by the hardware.
92  */
93 #define PKT_RX_IP_CKSUM_BAD  (1ULL << 4)
94
95 #define PKT_RX_EIP_CKSUM_BAD (1ULL << 5)  /**< External IP header checksum error. */
96
97 /**
98  * A vlan has been stripped by the hardware and its tci is saved in
99  * mbuf->vlan_tci. This can only happen if vlan stripping is enabled
100  * in the RX configuration of the PMD.
101  * When PKT_RX_VLAN_STRIPPED is set, PKT_RX_VLAN must also be set.
102  */
103 #define PKT_RX_VLAN_STRIPPED (1ULL << 6)
104
105 /**
106  * Mask of bits used to determine the status of RX IP checksum.
107  * - PKT_RX_IP_CKSUM_UNKNOWN: no information about the RX IP checksum
108  * - PKT_RX_IP_CKSUM_BAD: the IP checksum in the packet is wrong
109  * - PKT_RX_IP_CKSUM_GOOD: the IP checksum in the packet is valid
110  * - PKT_RX_IP_CKSUM_NONE: the IP checksum is not correct in the packet
111  *   data, but the integrity of the IP header is verified.
112  */
113 #define PKT_RX_IP_CKSUM_MASK ((1ULL << 4) | (1ULL << 7))
114
115 #define PKT_RX_IP_CKSUM_UNKNOWN 0
116 #define PKT_RX_IP_CKSUM_BAD     (1ULL << 4)
117 #define PKT_RX_IP_CKSUM_GOOD    (1ULL << 7)
118 #define PKT_RX_IP_CKSUM_NONE    ((1ULL << 4) | (1ULL << 7))
119
120 /**
121  * Mask of bits used to determine the status of RX L4 checksum.
122  * - PKT_RX_L4_CKSUM_UNKNOWN: no information about the RX L4 checksum
123  * - PKT_RX_L4_CKSUM_BAD: the L4 checksum in the packet is wrong
124  * - PKT_RX_L4_CKSUM_GOOD: the L4 checksum in the packet is valid
125  * - PKT_RX_L4_CKSUM_NONE: the L4 checksum is not correct in the packet
126  *   data, but the integrity of the L4 data is verified.
127  */
128 #define PKT_RX_L4_CKSUM_MASK ((1ULL << 3) | (1ULL << 8))
129
130 #define PKT_RX_L4_CKSUM_UNKNOWN 0
131 #define PKT_RX_L4_CKSUM_BAD     (1ULL << 3)
132 #define PKT_RX_L4_CKSUM_GOOD    (1ULL << 8)
133 #define PKT_RX_L4_CKSUM_NONE    ((1ULL << 3) | (1ULL << 8))
134
135 #define PKT_RX_IEEE1588_PTP  (1ULL << 9)  /**< RX IEEE1588 L2 Ethernet PT Packet. */
136 #define PKT_RX_IEEE1588_TMST (1ULL << 10) /**< RX IEEE1588 L2/L4 timestamped packet.*/
137 #define PKT_RX_FDIR_ID       (1ULL << 13) /**< FD id reported if FDIR match. */
138 #define PKT_RX_FDIR_FLX      (1ULL << 14) /**< Flexible bytes reported if FDIR match. */
139
140 /**
141  * The 2 vlans have been stripped by the hardware and their tci are
142  * saved in mbuf->vlan_tci (inner) and mbuf->vlan_tci_outer (outer).
143  * This can only happen if vlan stripping is enabled in the RX
144  * configuration of the PMD.
145  * When PKT_RX_QINQ_STRIPPED is set, the flags (PKT_RX_VLAN |
146  * PKT_RX_VLAN_STRIPPED | PKT_RX_QINQ) must also be set.
147  */
148 #define PKT_RX_QINQ_STRIPPED (1ULL << 15)
149
150 /**
151  * When packets are coalesced by a hardware or virtual driver, this flag
152  * can be set in the RX mbuf, meaning that the m->tso_segsz field is
153  * valid and is set to the segment size of original packets.
154  */
155 #define PKT_RX_LRO           (1ULL << 16)
156
157 /**
158  * Indicate that the timestamp field in the mbuf is valid.
159  */
160 #define PKT_RX_TIMESTAMP     (1ULL << 17)
161
162 /**
163  * Indicate that security offload processing was applied on the RX packet.
164  */
165 #define PKT_RX_SEC_OFFLOAD              (1ULL << 18)
166
167 /**
168  * Indicate that security offload processing failed on the RX packet.
169  */
170 #define PKT_RX_SEC_OFFLOAD_FAILED       (1ULL << 19)
171
172 /**
173  * The RX packet is a double VLAN, and the outer tci has been
174  * saved in in mbuf->vlan_tci_outer. If PKT_RX_QINQ set, PKT_RX_VLAN
175  * also should be set and inner tci should be saved to mbuf->vlan_tci.
176  * If the flag PKT_RX_QINQ_STRIPPED is also present, both VLANs
177  * headers have been stripped from mbuf data, else they are still
178  * present.
179  */
180 #define PKT_RX_QINQ          (1ULL << 20)
181
182 /**
183  * Mask of bits used to determine the status of outer RX L4 checksum.
184  * - PKT_RX_OUTER_L4_CKSUM_UNKNOWN: no info about the outer RX L4 checksum
185  * - PKT_RX_OUTER_L4_CKSUM_BAD: the outer L4 checksum in the packet is wrong
186  * - PKT_RX_OUTER_L4_CKSUM_GOOD: the outer L4 checksum in the packet is valid
187  * - PKT_RX_OUTER_L4_CKSUM_INVALID: invalid outer L4 checksum state.
188  *
189  * The detection of PKT_RX_OUTER_L4_CKSUM_GOOD shall be based on the given
190  * HW capability, At minimum, the PMD should support
191  * PKT_RX_OUTER_L4_CKSUM_UNKNOWN and PKT_RX_OUTER_L4_CKSUM_BAD states
192  * if the DEV_RX_OFFLOAD_OUTER_UDP_CKSUM offload is available.
193  */
194 #define PKT_RX_OUTER_L4_CKSUM_MASK      ((1ULL << 21) | (1ULL << 22))
195
196 #define PKT_RX_OUTER_L4_CKSUM_UNKNOWN   0
197 #define PKT_RX_OUTER_L4_CKSUM_BAD       (1ULL << 21)
198 #define PKT_RX_OUTER_L4_CKSUM_GOOD      (1ULL << 22)
199 #define PKT_RX_OUTER_L4_CKSUM_INVALID   ((1ULL << 21) | (1ULL << 22))
200
201 /* add new RX flags here */
202
203 /* add new TX flags here */
204
205 /**
206  * Indicate that the metadata field in the mbuf is in use.
207  */
208 #define PKT_TX_METADATA (1ULL << 40)
209
210 /**
211  * Outer UDP checksum offload flag. This flag is used for enabling
212  * outer UDP checksum in PMD. To use outer UDP checksum, the user needs to
213  * 1) Enable the following in mbuf,
214  * a) Fill outer_l2_len and outer_l3_len in mbuf.
215  * b) Set the PKT_TX_OUTER_UDP_CKSUM flag.
216  * c) Set the PKT_TX_OUTER_IPV4 or PKT_TX_OUTER_IPV6 flag.
217  * 2) Configure DEV_TX_OFFLOAD_OUTER_UDP_CKSUM offload flag.
218  */
219 #define PKT_TX_OUTER_UDP_CKSUM     (1ULL << 41)
220
221 /**
222  * UDP Fragmentation Offload flag. This flag is used for enabling UDP
223  * fragmentation in SW or in HW. When use UFO, mbuf->tso_segsz is used
224  * to store the MSS of UDP fragments.
225  */
226 #define PKT_TX_UDP_SEG  (1ULL << 42)
227
228 /**
229  * Request security offload processing on the TX packet.
230  */
231 #define PKT_TX_SEC_OFFLOAD              (1ULL << 43)
232
233 /**
234  * Offload the MACsec. This flag must be set by the application to enable
235  * this offload feature for a packet to be transmitted.
236  */
237 #define PKT_TX_MACSEC        (1ULL << 44)
238
239 /**
240  * Bits 45:48 used for the tunnel type.
241  * The tunnel type must be specified for TSO or checksum on the inner part
242  * of tunnel packets.
243  * These flags can be used with PKT_TX_TCP_SEG for TSO, or PKT_TX_xxx_CKSUM.
244  * The mbuf fields for inner and outer header lengths are required:
245  * outer_l2_len, outer_l3_len, l2_len, l3_len, l4_len and tso_segsz for TSO.
246  */
247 #define PKT_TX_TUNNEL_VXLAN   (0x1ULL << 45)
248 #define PKT_TX_TUNNEL_GRE     (0x2ULL << 45)
249 #define PKT_TX_TUNNEL_IPIP    (0x3ULL << 45)
250 #define PKT_TX_TUNNEL_GENEVE  (0x4ULL << 45)
251 /** TX packet with MPLS-in-UDP RFC 7510 header. */
252 #define PKT_TX_TUNNEL_MPLSINUDP (0x5ULL << 45)
253 #define PKT_TX_TUNNEL_VXLAN_GPE (0x6ULL << 45)
254 /**
255  * Generic IP encapsulated tunnel type, used for TSO and checksum offload.
256  * It can be used for tunnels which are not standards or listed above.
257  * It is preferred to use specific tunnel flags like PKT_TX_TUNNEL_GRE
258  * or PKT_TX_TUNNEL_IPIP if possible.
259  * The ethdev must be configured with DEV_TX_OFFLOAD_IP_TNL_TSO.
260  * Outer and inner checksums are done according to the existing flags like
261  * PKT_TX_xxx_CKSUM.
262  * Specific tunnel headers that contain payload length, sequence id
263  * or checksum are not expected to be updated.
264  */
265 #define PKT_TX_TUNNEL_IP (0xDULL << 45)
266 /**
267  * Generic UDP encapsulated tunnel type, used for TSO and checksum offload.
268  * UDP tunnel type implies outer IP layer.
269  * It can be used for tunnels which are not standards or listed above.
270  * It is preferred to use specific tunnel flags like PKT_TX_TUNNEL_VXLAN
271  * if possible.
272  * The ethdev must be configured with DEV_TX_OFFLOAD_UDP_TNL_TSO.
273  * Outer and inner checksums are done according to the existing flags like
274  * PKT_TX_xxx_CKSUM.
275  * Specific tunnel headers that contain payload length, sequence id
276  * or checksum are not expected to be updated.
277  */
278 #define PKT_TX_TUNNEL_UDP (0xEULL << 45)
279 /* add new TX TUNNEL type here */
280 #define PKT_TX_TUNNEL_MASK    (0xFULL << 45)
281
282 /**
283  * Double VLAN insertion (QinQ) request to driver, driver may offload the
284  * insertion based on device capability.
285  * mbuf 'vlan_tci' & 'vlan_tci_outer' must be valid when this flag is set.
286  */
287 #define PKT_TX_QINQ        (1ULL << 49)
288 /* this old name is deprecated */
289 #define PKT_TX_QINQ_PKT    PKT_TX_QINQ
290
291 /**
292  * TCP segmentation offload. To enable this offload feature for a
293  * packet to be transmitted on hardware supporting TSO:
294  *  - set the PKT_TX_TCP_SEG flag in mbuf->ol_flags (this flag implies
295  *    PKT_TX_TCP_CKSUM)
296  *  - set the flag PKT_TX_IPV4 or PKT_TX_IPV6
297  *  - if it's IPv4, set the PKT_TX_IP_CKSUM flag
298  *  - fill the mbuf offload information: l2_len, l3_len, l4_len, tso_segsz
299  */
300 #define PKT_TX_TCP_SEG       (1ULL << 50)
301
302 #define PKT_TX_IEEE1588_TMST (1ULL << 51) /**< TX IEEE1588 packet to timestamp. */
303
304 /**
305  * Bits 52+53 used for L4 packet type with checksum enabled: 00: Reserved,
306  * 01: TCP checksum, 10: SCTP checksum, 11: UDP checksum. To use hardware
307  * L4 checksum offload, the user needs to:
308  *  - fill l2_len and l3_len in mbuf
309  *  - set the flags PKT_TX_TCP_CKSUM, PKT_TX_SCTP_CKSUM or PKT_TX_UDP_CKSUM
310  *  - set the flag PKT_TX_IPV4 or PKT_TX_IPV6
311  */
312 #define PKT_TX_L4_NO_CKSUM   (0ULL << 52) /**< Disable L4 cksum of TX pkt. */
313 #define PKT_TX_TCP_CKSUM     (1ULL << 52) /**< TCP cksum of TX pkt. computed by NIC. */
314 #define PKT_TX_SCTP_CKSUM    (2ULL << 52) /**< SCTP cksum of TX pkt. computed by NIC. */
315 #define PKT_TX_UDP_CKSUM     (3ULL << 52) /**< UDP cksum of TX pkt. computed by NIC. */
316 #define PKT_TX_L4_MASK       (3ULL << 52) /**< Mask for L4 cksum offload request. */
317
318 /**
319  * Offload the IP checksum in the hardware. The flag PKT_TX_IPV4 should
320  * also be set by the application, although a PMD will only check
321  * PKT_TX_IP_CKSUM.
322  *  - fill the mbuf offload information: l2_len, l3_len
323  */
324 #define PKT_TX_IP_CKSUM      (1ULL << 54)
325
326 /**
327  * Packet is IPv4. This flag must be set when using any offload feature
328  * (TSO, L3 or L4 checksum) to tell the NIC that the packet is an IPv4
329  * packet. If the packet is a tunneled packet, this flag is related to
330  * the inner headers.
331  */
332 #define PKT_TX_IPV4          (1ULL << 55)
333
334 /**
335  * Packet is IPv6. This flag must be set when using an offload feature
336  * (TSO or L4 checksum) to tell the NIC that the packet is an IPv6
337  * packet. If the packet is a tunneled packet, this flag is related to
338  * the inner headers.
339  */
340 #define PKT_TX_IPV6          (1ULL << 56)
341
342 /**
343  * VLAN tag insertion request to driver, driver may offload the insertion
344  * based on the device capability.
345  * mbuf 'vlan_tci' field must be valid when this flag is set.
346  */
347 #define PKT_TX_VLAN          (1ULL << 57)
348 /* this old name is deprecated */
349 #define PKT_TX_VLAN_PKT      PKT_TX_VLAN
350
351 /**
352  * Offload the IP checksum of an external header in the hardware. The
353  * flag PKT_TX_OUTER_IPV4 should also be set by the application, although
354  * a PMD will only check PKT_TX_OUTER_IP_CKSUM.
355  *  - fill the mbuf offload information: outer_l2_len, outer_l3_len
356  */
357 #define PKT_TX_OUTER_IP_CKSUM   (1ULL << 58)
358
359 /**
360  * Packet outer header is IPv4. This flag must be set when using any
361  * outer offload feature (L3 or L4 checksum) to tell the NIC that the
362  * outer header of the tunneled packet is an IPv4 packet.
363  */
364 #define PKT_TX_OUTER_IPV4   (1ULL << 59)
365
366 /**
367  * Packet outer header is IPv6. This flag must be set when using any
368  * outer offload feature (L4 checksum) to tell the NIC that the outer
369  * header of the tunneled packet is an IPv6 packet.
370  */
371 #define PKT_TX_OUTER_IPV6    (1ULL << 60)
372
373 /**
374  * Bitmask of all supported packet Tx offload features flags,
375  * which can be set for packet.
376  */
377 #define PKT_TX_OFFLOAD_MASK (    \
378                 PKT_TX_OUTER_IPV6 |      \
379                 PKT_TX_OUTER_IPV4 |      \
380                 PKT_TX_OUTER_IP_CKSUM |  \
381                 PKT_TX_VLAN_PKT |        \
382                 PKT_TX_IPV6 |            \
383                 PKT_TX_IPV4 |            \
384                 PKT_TX_IP_CKSUM |        \
385                 PKT_TX_L4_MASK |         \
386                 PKT_TX_IEEE1588_TMST |   \
387                 PKT_TX_TCP_SEG |         \
388                 PKT_TX_QINQ_PKT |        \
389                 PKT_TX_TUNNEL_MASK |     \
390                 PKT_TX_MACSEC |          \
391                 PKT_TX_SEC_OFFLOAD |     \
392                 PKT_TX_UDP_SEG |         \
393                 PKT_TX_OUTER_UDP_CKSUM | \
394                 PKT_TX_METADATA)
395
396 /**
397  * Mbuf having an external buffer attached. shinfo in mbuf must be filled.
398  */
399 #define EXT_ATTACHED_MBUF    (1ULL << 61)
400
401 #define IND_ATTACHED_MBUF    (1ULL << 62) /**< Indirect attached mbuf */
402
403 /** Alignment constraint of mbuf private area. */
404 #define RTE_MBUF_PRIV_ALIGN 8
405
406 /**
407  * Get the name of a RX offload flag
408  *
409  * @param mask
410  *   The mask describing the flag.
411  * @return
412  *   The name of this flag, or NULL if it's not a valid RX flag.
413  */
414 const char *rte_get_rx_ol_flag_name(uint64_t mask);
415
416 /**
417  * Dump the list of RX offload flags in a buffer
418  *
419  * @param mask
420  *   The mask describing the RX flags.
421  * @param buf
422  *   The output buffer.
423  * @param buflen
424  *   The length of the buffer.
425  * @return
426  *   0 on success, (-1) on error.
427  */
428 int rte_get_rx_ol_flag_list(uint64_t mask, char *buf, size_t buflen);
429
430 /**
431  * Get the name of a TX offload flag
432  *
433  * @param mask
434  *   The mask describing the flag. Usually only one bit must be set.
435  *   Several bits can be given if they belong to the same mask.
436  *   Ex: PKT_TX_L4_MASK.
437  * @return
438  *   The name of this flag, or NULL if it's not a valid TX flag.
439  */
440 const char *rte_get_tx_ol_flag_name(uint64_t mask);
441
442 /**
443  * Dump the list of TX offload flags in a buffer
444  *
445  * @param mask
446  *   The mask describing the TX flags.
447  * @param buf
448  *   The output buffer.
449  * @param buflen
450  *   The length of the buffer.
451  * @return
452  *   0 on success, (-1) on error.
453  */
454 int rte_get_tx_ol_flag_list(uint64_t mask, char *buf, size_t buflen);
455
456 /**
457  * Some NICs need at least 2KB buffer to RX standard Ethernet frame without
458  * splitting it into multiple segments.
459  * So, for mbufs that planned to be involved into RX/TX, the recommended
460  * minimal buffer length is 2KB + RTE_PKTMBUF_HEADROOM.
461  */
462 #define RTE_MBUF_DEFAULT_DATAROOM       2048
463 #define RTE_MBUF_DEFAULT_BUF_SIZE       \
464         (RTE_MBUF_DEFAULT_DATAROOM + RTE_PKTMBUF_HEADROOM)
465
466 /* define a set of marker types that can be used to refer to set points in the
467  * mbuf */
468 __extension__
469 typedef void    *MARKER[0];   /**< generic marker for a point in a structure */
470 __extension__
471 typedef uint8_t  MARKER8[0];  /**< generic marker with 1B alignment */
472 __extension__
473 typedef uint64_t MARKER64[0]; /**< marker that allows us to overwrite 8 bytes
474                                * with a single assignment */
475
476 struct rte_mbuf_sched {
477         uint32_t queue_id;   /**< Queue ID. */
478         uint8_t traffic_class;
479         /**< Traffic class ID. Traffic class 0
480          * is the highest priority traffic class.
481          */
482         uint8_t color;
483         /**< Color. @see enum rte_color.*/
484         uint16_t reserved;   /**< Reserved. */
485 }; /**< Hierarchical scheduler */
486
487 /**
488  * enum for the tx_offload bit-fields lengths and offsets.
489  * defines the layout of rte_mbuf tx_offload field.
490  */
491 enum {
492         RTE_MBUF_L2_LEN_BITS = 7,
493         RTE_MBUF_L3_LEN_BITS = 9,
494         RTE_MBUF_L4_LEN_BITS = 8,
495         RTE_MBUF_TSO_SEGSZ_BITS = 16,
496         RTE_MBUF_OUTL3_LEN_BITS = 9,
497         RTE_MBUF_OUTL2_LEN_BITS = 7,
498         RTE_MBUF_TXOFLD_UNUSED_BITS = sizeof(uint64_t) * CHAR_BIT -
499                 RTE_MBUF_L2_LEN_BITS -
500                 RTE_MBUF_L3_LEN_BITS -
501                 RTE_MBUF_L4_LEN_BITS -
502                 RTE_MBUF_TSO_SEGSZ_BITS -
503                 RTE_MBUF_OUTL3_LEN_BITS -
504                 RTE_MBUF_OUTL2_LEN_BITS,
505 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
506         RTE_MBUF_L2_LEN_OFS =
507                 sizeof(uint64_t) * CHAR_BIT - RTE_MBUF_L2_LEN_BITS,
508         RTE_MBUF_L3_LEN_OFS = RTE_MBUF_L2_LEN_OFS - RTE_MBUF_L3_LEN_BITS,
509         RTE_MBUF_L4_LEN_OFS = RTE_MBUF_L3_LEN_OFS - RTE_MBUF_L4_LEN_BITS,
510         RTE_MBUF_TSO_SEGSZ_OFS = RTE_MBUF_L4_LEN_OFS - RTE_MBUF_TSO_SEGSZ_BITS,
511         RTE_MBUF_OUTL3_LEN_OFS =
512                 RTE_MBUF_TSO_SEGSZ_OFS - RTE_MBUF_OUTL3_LEN_BITS,
513         RTE_MBUF_OUTL2_LEN_OFS =
514                 RTE_MBUF_OUTL3_LEN_OFS - RTE_MBUF_OUTL2_LEN_BITS,
515         RTE_MBUF_TXOFLD_UNUSED_OFS =
516                 RTE_MBUF_OUTL2_LEN_OFS - RTE_MBUF_TXOFLD_UNUSED_BITS,
517 #else
518         RTE_MBUF_L2_LEN_OFS = 0,
519         RTE_MBUF_L3_LEN_OFS = RTE_MBUF_L2_LEN_OFS + RTE_MBUF_L2_LEN_BITS,
520         RTE_MBUF_L4_LEN_OFS = RTE_MBUF_L3_LEN_OFS + RTE_MBUF_L3_LEN_BITS,
521         RTE_MBUF_TSO_SEGSZ_OFS = RTE_MBUF_L4_LEN_OFS + RTE_MBUF_L4_LEN_BITS,
522         RTE_MBUF_OUTL3_LEN_OFS =
523                 RTE_MBUF_TSO_SEGSZ_OFS + RTE_MBUF_TSO_SEGSZ_BITS,
524         RTE_MBUF_OUTL2_LEN_OFS =
525                 RTE_MBUF_OUTL3_LEN_OFS + RTE_MBUF_OUTL3_LEN_BITS,
526         RTE_MBUF_TXOFLD_UNUSED_OFS =
527                 RTE_MBUF_OUTL2_LEN_OFS + RTE_MBUF_OUTL2_LEN_BITS,
528 #endif
529 };
530
531 /**
532  * The generic rte_mbuf, containing a packet mbuf.
533  */
534 struct rte_mbuf {
535         MARKER cacheline0;
536
537         void *buf_addr;           /**< Virtual address of segment buffer. */
538         /**
539          * Physical address of segment buffer.
540          * Force alignment to 8-bytes, so as to ensure we have the exact
541          * same mbuf cacheline0 layout for 32-bit and 64-bit. This makes
542          * working on vector drivers easier.
543          */
544         RTE_STD_C11
545         union {
546                 rte_iova_t buf_iova;
547                 rte_iova_t buf_physaddr; /**< deprecated */
548         } __rte_aligned(sizeof(rte_iova_t));
549
550         /* next 8 bytes are initialised on RX descriptor rearm */
551         MARKER64 rearm_data;
552         uint16_t data_off;
553
554         /**
555          * Reference counter. Its size should at least equal to the size
556          * of port field (16 bits), to support zero-copy broadcast.
557          * It should only be accessed using the following functions:
558          * rte_mbuf_refcnt_update(), rte_mbuf_refcnt_read(), and
559          * rte_mbuf_refcnt_set(). The functionality of these functions (atomic,
560          * or non-atomic) is controlled by the CONFIG_RTE_MBUF_REFCNT_ATOMIC
561          * config option.
562          */
563         RTE_STD_C11
564         union {
565                 rte_atomic16_t refcnt_atomic; /**< Atomically accessed refcnt */
566                 uint16_t refcnt;              /**< Non-atomically accessed refcnt */
567         };
568         uint16_t nb_segs;         /**< Number of segments. */
569
570         /** Input port (16 bits to support more than 256 virtual ports).
571          * The event eth Tx adapter uses this field to specify the output port.
572          */
573         uint16_t port;
574
575         uint64_t ol_flags;        /**< Offload features. */
576
577         /* remaining bytes are set on RX when pulling packet from descriptor */
578         MARKER rx_descriptor_fields1;
579
580         /*
581          * The packet type, which is the combination of outer/inner L2, L3, L4
582          * and tunnel types. The packet_type is about data really present in the
583          * mbuf. Example: if vlan stripping is enabled, a received vlan packet
584          * would have RTE_PTYPE_L2_ETHER and not RTE_PTYPE_L2_VLAN because the
585          * vlan is stripped from the data.
586          */
587         RTE_STD_C11
588         union {
589                 uint32_t packet_type; /**< L2/L3/L4 and tunnel information. */
590                 struct {
591                         uint32_t l2_type:4; /**< (Outer) L2 type. */
592                         uint32_t l3_type:4; /**< (Outer) L3 type. */
593                         uint32_t l4_type:4; /**< (Outer) L4 type. */
594                         uint32_t tun_type:4; /**< Tunnel type. */
595                         RTE_STD_C11
596                         union {
597                                 uint8_t inner_esp_next_proto;
598                                 /**< ESP next protocol type, valid if
599                                  * RTE_PTYPE_TUNNEL_ESP tunnel type is set
600                                  * on both Tx and Rx.
601                                  */
602                                 __extension__
603                                 struct {
604                                         uint8_t inner_l2_type:4;
605                                         /**< Inner L2 type. */
606                                         uint8_t inner_l3_type:4;
607                                         /**< Inner L3 type. */
608                                 };
609                         };
610                         uint32_t inner_l4_type:4; /**< Inner L4 type. */
611                 };
612         };
613
614         uint32_t pkt_len;         /**< Total pkt len: sum of all segments. */
615         uint16_t data_len;        /**< Amount of data in segment buffer. */
616         /** VLAN TCI (CPU order), valid if PKT_RX_VLAN is set. */
617         uint16_t vlan_tci;
618
619         RTE_STD_C11
620         union {
621                 union {
622                         uint32_t rss;     /**< RSS hash result if RSS enabled */
623                         struct {
624                                 union {
625                                         struct {
626                                                 uint16_t hash;
627                                                 uint16_t id;
628                                         };
629                                         uint32_t lo;
630                                         /**< Second 4 flexible bytes */
631                                 };
632                                 uint32_t hi;
633                                 /**< First 4 flexible bytes or FD ID, dependent
634                                  * on PKT_RX_FDIR_* flag in ol_flags.
635                                  */
636                         } fdir; /**< Filter identifier if FDIR enabled */
637                         struct rte_mbuf_sched sched;
638                         /**< Hierarchical scheduler : 8 bytes */
639                         struct {
640                                 uint32_t reserved1;
641                                 uint16_t reserved2;
642                                 uint16_t txq;
643                                 /**< The event eth Tx adapter uses this field
644                                  * to store Tx queue id.
645                                  * @see rte_event_eth_tx_adapter_txq_set()
646                                  */
647                         } txadapter; /**< Eventdev ethdev Tx adapter */
648                         /**< User defined tags. See rte_distributor_process() */
649                         uint32_t usr;
650                 } hash;                   /**< hash information */
651                 struct {
652                         /**
653                          * Application specific metadata value
654                          * for egress flow rule match.
655                          * Valid if PKT_TX_METADATA is set.
656                          * Located here to allow conjunct use
657                          * with hash.sched.hi.
658                          */
659                         uint32_t tx_metadata;
660                         uint32_t reserved;
661                 };
662         };
663
664         /** Outer VLAN TCI (CPU order), valid if PKT_RX_QINQ is set. */
665         uint16_t vlan_tci_outer;
666
667         uint16_t buf_len;         /**< Length of segment buffer. */
668
669         /** Valid if PKT_RX_TIMESTAMP is set. The unit and time reference
670          * are not normalized but are always the same for a given port.
671          * Some devices allow to query rte_eth_read_clock that will return the
672          * current device timestamp.
673          */
674         uint64_t timestamp;
675
676         /* second cache line - fields only used in slow path or on TX */
677         MARKER cacheline1 __rte_cache_min_aligned;
678
679         RTE_STD_C11
680         union {
681                 void *userdata;   /**< Can be used for external metadata */
682                 uint64_t udata64; /**< Allow 8-byte userdata on 32-bit */
683         };
684
685         struct rte_mempool *pool; /**< Pool from which mbuf was allocated. */
686         struct rte_mbuf *next;    /**< Next segment of scattered packet. */
687
688         /* fields to support TX offloads */
689         RTE_STD_C11
690         union {
691                 uint64_t tx_offload;       /**< combined for easy fetch */
692                 __extension__
693                 struct {
694                         uint64_t l2_len:RTE_MBUF_L2_LEN_BITS;
695                         /**< L2 (MAC) Header Length for non-tunneling pkt.
696                          * Outer_L4_len + ... + Inner_L2_len for tunneling pkt.
697                          */
698                         uint64_t l3_len:RTE_MBUF_L3_LEN_BITS;
699                         /**< L3 (IP) Header Length. */
700                         uint64_t l4_len:RTE_MBUF_L4_LEN_BITS;
701                         /**< L4 (TCP/UDP) Header Length. */
702                         uint64_t tso_segsz:RTE_MBUF_TSO_SEGSZ_BITS;
703                         /**< TCP TSO segment size */
704
705                         /* fields for TX offloading of tunnels */
706                         uint64_t outer_l3_len:RTE_MBUF_OUTL3_LEN_BITS;
707                         /**< Outer L3 (IP) Hdr Length. */
708                         uint64_t outer_l2_len:RTE_MBUF_OUTL2_LEN_BITS;
709                         /**< Outer L2 (MAC) Hdr Length. */
710
711                         /* uint64_t unused:RTE_MBUF_TXOFLD_UNUSED_BITS; */
712                 };
713         };
714
715         /** Size of the application private data. In case of an indirect
716          * mbuf, it stores the direct mbuf private data size. */
717         uint16_t priv_size;
718
719         /** Timesync flags for use with IEEE1588. */
720         uint16_t timesync;
721
722         /** Sequence number. See also rte_reorder_insert(). */
723         uint32_t seqn;
724
725         /** Shared data for external buffer attached to mbuf. See
726          * rte_pktmbuf_attach_extbuf().
727          */
728         struct rte_mbuf_ext_shared_info *shinfo;
729
730 } __rte_cache_aligned;
731
732 /**
733  * Function typedef of callback to free externally attached buffer.
734  */
735 typedef void (*rte_mbuf_extbuf_free_callback_t)(void *addr, void *opaque);
736
737 /**
738  * Shared data at the end of an external buffer.
739  */
740 struct rte_mbuf_ext_shared_info {
741         rte_mbuf_extbuf_free_callback_t free_cb; /**< Free callback function */
742         void *fcb_opaque;                        /**< Free callback argument */
743         rte_atomic16_t refcnt_atomic;        /**< Atomically accessed refcnt */
744 };
745
746 /**< Maximum number of nb_segs allowed. */
747 #define RTE_MBUF_MAX_NB_SEGS    UINT16_MAX
748
749 /**
750  * Prefetch the first part of the mbuf
751  *
752  * The first 64 bytes of the mbuf corresponds to fields that are used early
753  * in the receive path. If the cache line of the architecture is higher than
754  * 64B, the second part will also be prefetched.
755  *
756  * @param m
757  *   The pointer to the mbuf.
758  */
759 static inline void
760 rte_mbuf_prefetch_part1(struct rte_mbuf *m)
761 {
762         rte_prefetch0(&m->cacheline0);
763 }
764
765 /**
766  * Prefetch the second part of the mbuf
767  *
768  * The next 64 bytes of the mbuf corresponds to fields that are used in the
769  * transmit path. If the cache line of the architecture is higher than 64B,
770  * this function does nothing as it is expected that the full mbuf is
771  * already in cache.
772  *
773  * @param m
774  *   The pointer to the mbuf.
775  */
776 static inline void
777 rte_mbuf_prefetch_part2(struct rte_mbuf *m)
778 {
779 #if RTE_CACHE_LINE_SIZE == 64
780         rte_prefetch0(&m->cacheline1);
781 #else
782         RTE_SET_USED(m);
783 #endif
784 }
785
786
787 static inline uint16_t rte_pktmbuf_priv_size(struct rte_mempool *mp);
788
789 /**
790  * Return the IO address of the beginning of the mbuf data
791  *
792  * @param mb
793  *   The pointer to the mbuf.
794  * @return
795  *   The IO address of the beginning of the mbuf data
796  */
797 static inline rte_iova_t
798 rte_mbuf_data_iova(const struct rte_mbuf *mb)
799 {
800         return mb->buf_iova + mb->data_off;
801 }
802
803 __rte_deprecated
804 static inline phys_addr_t
805 rte_mbuf_data_dma_addr(const struct rte_mbuf *mb)
806 {
807         return rte_mbuf_data_iova(mb);
808 }
809
810 /**
811  * Return the default IO address of the beginning of the mbuf data
812  *
813  * This function is used by drivers in their receive function, as it
814  * returns the location where data should be written by the NIC, taking
815  * the default headroom in account.
816  *
817  * @param mb
818  *   The pointer to the mbuf.
819  * @return
820  *   The IO address of the beginning of the mbuf data
821  */
822 static inline rte_iova_t
823 rte_mbuf_data_iova_default(const struct rte_mbuf *mb)
824 {
825         return mb->buf_iova + RTE_PKTMBUF_HEADROOM;
826 }
827
828 __rte_deprecated
829 static inline phys_addr_t
830 rte_mbuf_data_dma_addr_default(const struct rte_mbuf *mb)
831 {
832         return rte_mbuf_data_iova_default(mb);
833 }
834
835 /**
836  * Return the mbuf owning the data buffer address of an indirect mbuf.
837  *
838  * @param mi
839  *   The pointer to the indirect mbuf.
840  * @return
841  *   The address of the direct mbuf corresponding to buffer_addr.
842  */
843 static inline struct rte_mbuf *
844 rte_mbuf_from_indirect(struct rte_mbuf *mi)
845 {
846         return (struct rte_mbuf *)RTE_PTR_SUB(mi->buf_addr, sizeof(*mi) + mi->priv_size);
847 }
848
849 /**
850  * Return address of buffer embedded in the given mbuf.
851  *
852  * The return value shall be same as mb->buf_addr if the mbuf is already
853  * initialized and direct. However, this API is useful if mempool of the
854  * mbuf is already known because it doesn't need to access mbuf contents in
855  * order to get the mempool pointer.
856  *
857  * @warning
858  * @b EXPERIMENTAL: This API may change without prior notice.
859  * This will be used by rte_mbuf_to_baddr() which has redundant code once
860  * experimental tag is removed.
861  *
862  * @param mb
863  *   The pointer to the mbuf.
864  * @param mp
865  *   The pointer to the mempool of the mbuf.
866  * @return
867  *   The pointer of the mbuf buffer.
868  */
869 __rte_experimental
870 static inline char *
871 rte_mbuf_buf_addr(struct rte_mbuf *mb, struct rte_mempool *mp)
872 {
873         return (char *)mb + sizeof(*mb) + rte_pktmbuf_priv_size(mp);
874 }
875
876 /**
877  * Return the default address of the beginning of the mbuf data.
878  *
879  * @warning
880  * @b EXPERIMENTAL: This API may change without prior notice.
881  *
882  * @param mb
883  *   The pointer to the mbuf.
884  * @return
885  *   The pointer of the beginning of the mbuf data.
886  */
887 __rte_experimental
888 static inline char *
889 rte_mbuf_data_addr_default(__rte_unused struct rte_mbuf *mb)
890 {
891         /* gcc complains about calling this experimental function even
892          * when not using it. Hide it with ALLOW_EXPERIMENTAL_API.
893          */
894 #ifdef ALLOW_EXPERIMENTAL_API
895         return rte_mbuf_buf_addr(mb, mb->pool) + RTE_PKTMBUF_HEADROOM;
896 #else
897         return NULL;
898 #endif
899 }
900
901 /**
902  * Return address of buffer embedded in the given mbuf.
903  *
904  * @note: Accessing mempool pointer of a mbuf is expensive because the
905  * pointer is stored in the 2nd cache line of mbuf. If mempool is known, it
906  * is better not to reference the mempool pointer in mbuf but calling
907  * rte_mbuf_buf_addr() would be more efficient.
908  *
909  * @param md
910  *   The pointer to the mbuf.
911  * @return
912  *   The address of the data buffer owned by the mbuf.
913  */
914 static inline char *
915 rte_mbuf_to_baddr(struct rte_mbuf *md)
916 {
917 #ifdef ALLOW_EXPERIMENTAL_API
918         return rte_mbuf_buf_addr(md, md->pool);
919 #else
920         char *buffer_addr;
921         buffer_addr = (char *)md + sizeof(*md) + rte_pktmbuf_priv_size(md->pool);
922         return buffer_addr;
923 #endif
924 }
925
926 /**
927  * Return the starting address of the private data area embedded in
928  * the given mbuf.
929  *
930  * Note that no check is made to ensure that a private data area
931  * actually exists in the supplied mbuf.
932  *
933  * @param m
934  *   The pointer to the mbuf.
935  * @return
936  *   The starting address of the private data area of the given mbuf.
937  */
938 __rte_experimental
939 static inline void *
940 rte_mbuf_to_priv(struct rte_mbuf *m)
941 {
942         return RTE_PTR_ADD(m, sizeof(struct rte_mbuf));
943 }
944
945 /**
946  * Returns TRUE if given mbuf is cloned by mbuf indirection, or FALSE
947  * otherwise.
948  *
949  * If a mbuf has its data in another mbuf and references it by mbuf
950  * indirection, this mbuf can be defined as a cloned mbuf.
951  */
952 #define RTE_MBUF_CLONED(mb)     ((mb)->ol_flags & IND_ATTACHED_MBUF)
953
954 /**
955  * Returns TRUE if given mbuf has an external buffer, or FALSE otherwise.
956  *
957  * External buffer is a user-provided anonymous buffer.
958  */
959 #define RTE_MBUF_HAS_EXTBUF(mb) ((mb)->ol_flags & EXT_ATTACHED_MBUF)
960
961 /**
962  * Returns TRUE if given mbuf is direct, or FALSE otherwise.
963  *
964  * If a mbuf embeds its own data after the rte_mbuf structure, this mbuf
965  * can be defined as a direct mbuf.
966  */
967 #define RTE_MBUF_DIRECT(mb) \
968         (!((mb)->ol_flags & (IND_ATTACHED_MBUF | EXT_ATTACHED_MBUF)))
969
970 /**
971  * Private data in case of pktmbuf pool.
972  *
973  * A structure that contains some pktmbuf_pool-specific data that are
974  * appended after the mempool structure (in private data).
975  */
976 struct rte_pktmbuf_pool_private {
977         uint16_t mbuf_data_room_size; /**< Size of data space in each mbuf. */
978         uint16_t mbuf_priv_size;      /**< Size of private area in each mbuf. */
979 };
980
981 #ifdef RTE_LIBRTE_MBUF_DEBUG
982
983 /**  check mbuf type in debug mode */
984 #define __rte_mbuf_sanity_check(m, is_h) rte_mbuf_sanity_check(m, is_h)
985
986 #else /*  RTE_LIBRTE_MBUF_DEBUG */
987
988 /**  check mbuf type in debug mode */
989 #define __rte_mbuf_sanity_check(m, is_h) do { } while (0)
990
991 #endif /*  RTE_LIBRTE_MBUF_DEBUG */
992
993 #ifdef RTE_MBUF_REFCNT_ATOMIC
994
995 /**
996  * Reads the value of an mbuf's refcnt.
997  * @param m
998  *   Mbuf to read
999  * @return
1000  *   Reference count number.
1001  */
1002 static inline uint16_t
1003 rte_mbuf_refcnt_read(const struct rte_mbuf *m)
1004 {
1005         return (uint16_t)(rte_atomic16_read(&m->refcnt_atomic));
1006 }
1007
1008 /**
1009  * Sets an mbuf's refcnt to a defined value.
1010  * @param m
1011  *   Mbuf to update
1012  * @param new_value
1013  *   Value set
1014  */
1015 static inline void
1016 rte_mbuf_refcnt_set(struct rte_mbuf *m, uint16_t new_value)
1017 {
1018         rte_atomic16_set(&m->refcnt_atomic, (int16_t)new_value);
1019 }
1020
1021 /* internal */
1022 static inline uint16_t
1023 __rte_mbuf_refcnt_update(struct rte_mbuf *m, int16_t value)
1024 {
1025         return (uint16_t)(rte_atomic16_add_return(&m->refcnt_atomic, value));
1026 }
1027
1028 /**
1029  * Adds given value to an mbuf's refcnt and returns its new value.
1030  * @param m
1031  *   Mbuf to update
1032  * @param value
1033  *   Value to add/subtract
1034  * @return
1035  *   Updated value
1036  */
1037 static inline uint16_t
1038 rte_mbuf_refcnt_update(struct rte_mbuf *m, int16_t value)
1039 {
1040         /*
1041          * The atomic_add is an expensive operation, so we don't want to
1042          * call it in the case where we know we are the unique holder of
1043          * this mbuf (i.e. ref_cnt == 1). Otherwise, an atomic
1044          * operation has to be used because concurrent accesses on the
1045          * reference counter can occur.
1046          */
1047         if (likely(rte_mbuf_refcnt_read(m) == 1)) {
1048                 ++value;
1049                 rte_mbuf_refcnt_set(m, (uint16_t)value);
1050                 return (uint16_t)value;
1051         }
1052
1053         return __rte_mbuf_refcnt_update(m, value);
1054 }
1055
1056 #else /* ! RTE_MBUF_REFCNT_ATOMIC */
1057
1058 /* internal */
1059 static inline uint16_t
1060 __rte_mbuf_refcnt_update(struct rte_mbuf *m, int16_t value)
1061 {
1062         m->refcnt = (uint16_t)(m->refcnt + value);
1063         return m->refcnt;
1064 }
1065
1066 /**
1067  * Adds given value to an mbuf's refcnt and returns its new value.
1068  */
1069 static inline uint16_t
1070 rte_mbuf_refcnt_update(struct rte_mbuf *m, int16_t value)
1071 {
1072         return __rte_mbuf_refcnt_update(m, value);
1073 }
1074
1075 /**
1076  * Reads the value of an mbuf's refcnt.
1077  */
1078 static inline uint16_t
1079 rte_mbuf_refcnt_read(const struct rte_mbuf *m)
1080 {
1081         return m->refcnt;
1082 }
1083
1084 /**
1085  * Sets an mbuf's refcnt to the defined value.
1086  */
1087 static inline void
1088 rte_mbuf_refcnt_set(struct rte_mbuf *m, uint16_t new_value)
1089 {
1090         m->refcnt = new_value;
1091 }
1092
1093 #endif /* RTE_MBUF_REFCNT_ATOMIC */
1094
1095 /**
1096  * Reads the refcnt of an external buffer.
1097  *
1098  * @param shinfo
1099  *   Shared data of the external buffer.
1100  * @return
1101  *   Reference count number.
1102  */
1103 static inline uint16_t
1104 rte_mbuf_ext_refcnt_read(const struct rte_mbuf_ext_shared_info *shinfo)
1105 {
1106         return (uint16_t)(rte_atomic16_read(&shinfo->refcnt_atomic));
1107 }
1108
1109 /**
1110  * Set refcnt of an external buffer.
1111  *
1112  * @param shinfo
1113  *   Shared data of the external buffer.
1114  * @param new_value
1115  *   Value set
1116  */
1117 static inline void
1118 rte_mbuf_ext_refcnt_set(struct rte_mbuf_ext_shared_info *shinfo,
1119         uint16_t new_value)
1120 {
1121         rte_atomic16_set(&shinfo->refcnt_atomic, (int16_t)new_value);
1122 }
1123
1124 /**
1125  * Add given value to refcnt of an external buffer and return its new
1126  * value.
1127  *
1128  * @param shinfo
1129  *   Shared data of the external buffer.
1130  * @param value
1131  *   Value to add/subtract
1132  * @return
1133  *   Updated value
1134  */
1135 static inline uint16_t
1136 rte_mbuf_ext_refcnt_update(struct rte_mbuf_ext_shared_info *shinfo,
1137         int16_t value)
1138 {
1139         if (likely(rte_mbuf_ext_refcnt_read(shinfo) == 1)) {
1140                 ++value;
1141                 rte_mbuf_ext_refcnt_set(shinfo, (uint16_t)value);
1142                 return (uint16_t)value;
1143         }
1144
1145         return (uint16_t)rte_atomic16_add_return(&shinfo->refcnt_atomic, value);
1146 }
1147
1148 /** Mbuf prefetch */
1149 #define RTE_MBUF_PREFETCH_TO_FREE(m) do {       \
1150         if ((m) != NULL)                        \
1151                 rte_prefetch0(m);               \
1152 } while (0)
1153
1154
1155 /**
1156  * Sanity checks on an mbuf.
1157  *
1158  * Check the consistency of the given mbuf. The function will cause a
1159  * panic if corruption is detected.
1160  *
1161  * @param m
1162  *   The mbuf to be checked.
1163  * @param is_header
1164  *   True if the mbuf is a packet header, false if it is a sub-segment
1165  *   of a packet (in this case, some fields like nb_segs are not checked)
1166  */
1167 void
1168 rte_mbuf_sanity_check(const struct rte_mbuf *m, int is_header);
1169
1170 /**
1171  * Sanity checks on a mbuf.
1172  *
1173  * Almost like rte_mbuf_sanity_check(), but this function gives the reason
1174  * if corruption is detected rather than panic.
1175  *
1176  * @param m
1177  *   The mbuf to be checked.
1178  * @param is_header
1179  *   True if the mbuf is a packet header, false if it is a sub-segment
1180  *   of a packet (in this case, some fields like nb_segs are not checked)
1181  * @param reason
1182  *   A reference to a string pointer where to store the reason why a mbuf is
1183  *   considered invalid.
1184  * @return
1185  *   - 0 if no issue has been found, reason is left untouched.
1186  *   - -1 if a problem is detected, reason then points to a string describing
1187  *     the reason why the mbuf is deemed invalid.
1188  */
1189 __rte_experimental
1190 int rte_mbuf_check(const struct rte_mbuf *m, int is_header,
1191                    const char **reason);
1192
1193 #define MBUF_RAW_ALLOC_CHECK(m) do {                            \
1194         RTE_ASSERT(rte_mbuf_refcnt_read(m) == 1);               \
1195         RTE_ASSERT((m)->next == NULL);                          \
1196         RTE_ASSERT((m)->nb_segs == 1);                          \
1197         __rte_mbuf_sanity_check(m, 0);                          \
1198 } while (0)
1199
1200 /**
1201  * Allocate an uninitialized mbuf from mempool *mp*.
1202  *
1203  * This function can be used by PMDs (especially in RX functions) to
1204  * allocate an uninitialized mbuf. The driver is responsible of
1205  * initializing all the required fields. See rte_pktmbuf_reset().
1206  * For standard needs, prefer rte_pktmbuf_alloc().
1207  *
1208  * The caller can expect that the following fields of the mbuf structure
1209  * are initialized: buf_addr, buf_iova, buf_len, refcnt=1, nb_segs=1,
1210  * next=NULL, pool, priv_size. The other fields must be initialized
1211  * by the caller.
1212  *
1213  * @param mp
1214  *   The mempool from which mbuf is allocated.
1215  * @return
1216  *   - The pointer to the new mbuf on success.
1217  *   - NULL if allocation failed.
1218  */
1219 static inline struct rte_mbuf *rte_mbuf_raw_alloc(struct rte_mempool *mp)
1220 {
1221         struct rte_mbuf *m;
1222
1223         if (rte_mempool_get(mp, (void **)&m) < 0)
1224                 return NULL;
1225         MBUF_RAW_ALLOC_CHECK(m);
1226         return m;
1227 }
1228
1229 /**
1230  * Put mbuf back into its original mempool.
1231  *
1232  * The caller must ensure that the mbuf is direct and properly
1233  * reinitialized (refcnt=1, next=NULL, nb_segs=1), as done by
1234  * rte_pktmbuf_prefree_seg().
1235  *
1236  * This function should be used with care, when optimization is
1237  * required. For standard needs, prefer rte_pktmbuf_free() or
1238  * rte_pktmbuf_free_seg().
1239  *
1240  * @param m
1241  *   The mbuf to be freed.
1242  */
1243 static __rte_always_inline void
1244 rte_mbuf_raw_free(struct rte_mbuf *m)
1245 {
1246         RTE_ASSERT(RTE_MBUF_DIRECT(m));
1247         RTE_ASSERT(rte_mbuf_refcnt_read(m) == 1);
1248         RTE_ASSERT(m->next == NULL);
1249         RTE_ASSERT(m->nb_segs == 1);
1250         __rte_mbuf_sanity_check(m, 0);
1251         rte_mempool_put(m->pool, m);
1252 }
1253
1254 /**
1255  * The packet mbuf constructor.
1256  *
1257  * This function initializes some fields in the mbuf structure that are
1258  * not modified by the user once created (origin pool, buffer start
1259  * address, and so on). This function is given as a callback function to
1260  * rte_mempool_obj_iter() or rte_mempool_create() at pool creation time.
1261  *
1262  * @param mp
1263  *   The mempool from which mbufs originate.
1264  * @param opaque_arg
1265  *   A pointer that can be used by the user to retrieve useful information
1266  *   for mbuf initialization. This pointer is the opaque argument passed to
1267  *   rte_mempool_obj_iter() or rte_mempool_create().
1268  * @param m
1269  *   The mbuf to initialize.
1270  * @param i
1271  *   The index of the mbuf in the pool table.
1272  */
1273 void rte_pktmbuf_init(struct rte_mempool *mp, void *opaque_arg,
1274                       void *m, unsigned i);
1275
1276
1277 /**
1278  * A  packet mbuf pool constructor.
1279  *
1280  * This function initializes the mempool private data in the case of a
1281  * pktmbuf pool. This private data is needed by the driver. The
1282  * function must be called on the mempool before it is used, or it
1283  * can be given as a callback function to rte_mempool_create() at
1284  * pool creation. It can be extended by the user, for example, to
1285  * provide another packet size.
1286  *
1287  * @param mp
1288  *   The mempool from which mbufs originate.
1289  * @param opaque_arg
1290  *   A pointer that can be used by the user to retrieve useful information
1291  *   for mbuf initialization. This pointer is the opaque argument passed to
1292  *   rte_mempool_create().
1293  */
1294 void rte_pktmbuf_pool_init(struct rte_mempool *mp, void *opaque_arg);
1295
1296 /**
1297  * Create a mbuf pool.
1298  *
1299  * This function creates and initializes a packet mbuf pool. It is
1300  * a wrapper to rte_mempool functions.
1301  *
1302  * @param name
1303  *   The name of the mbuf pool.
1304  * @param n
1305  *   The number of elements in the mbuf pool. The optimum size (in terms
1306  *   of memory usage) for a mempool is when n is a power of two minus one:
1307  *   n = (2^q - 1).
1308  * @param cache_size
1309  *   Size of the per-core object cache. See rte_mempool_create() for
1310  *   details.
1311  * @param priv_size
1312  *   Size of application private are between the rte_mbuf structure
1313  *   and the data buffer. This value must be aligned to RTE_MBUF_PRIV_ALIGN.
1314  * @param data_room_size
1315  *   Size of data buffer in each mbuf, including RTE_PKTMBUF_HEADROOM.
1316  * @param socket_id
1317  *   The socket identifier where the memory should be allocated. The
1318  *   value can be *SOCKET_ID_ANY* if there is no NUMA constraint for the
1319  *   reserved zone.
1320  * @return
1321  *   The pointer to the new allocated mempool, on success. NULL on error
1322  *   with rte_errno set appropriately. Possible rte_errno values include:
1323  *    - E_RTE_NO_CONFIG - function could not get pointer to rte_config structure
1324  *    - E_RTE_SECONDARY - function was called from a secondary process instance
1325  *    - EINVAL - cache size provided is too large, or priv_size is not aligned.
1326  *    - ENOSPC - the maximum number of memzones has already been allocated
1327  *    - EEXIST - a memzone with the same name already exists
1328  *    - ENOMEM - no appropriate memory area found in which to create memzone
1329  */
1330 struct rte_mempool *
1331 rte_pktmbuf_pool_create(const char *name, unsigned n,
1332         unsigned cache_size, uint16_t priv_size, uint16_t data_room_size,
1333         int socket_id);
1334
1335 /**
1336  * Create a mbuf pool with a given mempool ops name
1337  *
1338  * This function creates and initializes a packet mbuf pool. It is
1339  * a wrapper to rte_mempool functions.
1340  *
1341  * @param name
1342  *   The name of the mbuf pool.
1343  * @param n
1344  *   The number of elements in the mbuf pool. The optimum size (in terms
1345  *   of memory usage) for a mempool is when n is a power of two minus one:
1346  *   n = (2^q - 1).
1347  * @param cache_size
1348  *   Size of the per-core object cache. See rte_mempool_create() for
1349  *   details.
1350  * @param priv_size
1351  *   Size of application private are between the rte_mbuf structure
1352  *   and the data buffer. This value must be aligned to RTE_MBUF_PRIV_ALIGN.
1353  * @param data_room_size
1354  *   Size of data buffer in each mbuf, including RTE_PKTMBUF_HEADROOM.
1355  * @param socket_id
1356  *   The socket identifier where the memory should be allocated. The
1357  *   value can be *SOCKET_ID_ANY* if there is no NUMA constraint for the
1358  *   reserved zone.
1359  * @param ops_name
1360  *   The mempool ops name to be used for this mempool instead of
1361  *   default mempool. The value can be *NULL* to use default mempool.
1362  * @return
1363  *   The pointer to the new allocated mempool, on success. NULL on error
1364  *   with rte_errno set appropriately. Possible rte_errno values include:
1365  *    - E_RTE_NO_CONFIG - function could not get pointer to rte_config structure
1366  *    - E_RTE_SECONDARY - function was called from a secondary process instance
1367  *    - EINVAL - cache size provided is too large, or priv_size is not aligned.
1368  *    - ENOSPC - the maximum number of memzones has already been allocated
1369  *    - EEXIST - a memzone with the same name already exists
1370  *    - ENOMEM - no appropriate memory area found in which to create memzone
1371  */
1372 struct rte_mempool *
1373 rte_pktmbuf_pool_create_by_ops(const char *name, unsigned int n,
1374         unsigned int cache_size, uint16_t priv_size, uint16_t data_room_size,
1375         int socket_id, const char *ops_name);
1376
1377 /**
1378  * Get the data room size of mbufs stored in a pktmbuf_pool
1379  *
1380  * The data room size is the amount of data that can be stored in a
1381  * mbuf including the headroom (RTE_PKTMBUF_HEADROOM).
1382  *
1383  * @param mp
1384  *   The packet mbuf pool.
1385  * @return
1386  *   The data room size of mbufs stored in this mempool.
1387  */
1388 static inline uint16_t
1389 rte_pktmbuf_data_room_size(struct rte_mempool *mp)
1390 {
1391         struct rte_pktmbuf_pool_private *mbp_priv;
1392
1393         mbp_priv = (struct rte_pktmbuf_pool_private *)rte_mempool_get_priv(mp);
1394         return mbp_priv->mbuf_data_room_size;
1395 }
1396
1397 /**
1398  * Get the application private size of mbufs stored in a pktmbuf_pool
1399  *
1400  * The private size of mbuf is a zone located between the rte_mbuf
1401  * structure and the data buffer where an application can store data
1402  * associated to a packet.
1403  *
1404  * @param mp
1405  *   The packet mbuf pool.
1406  * @return
1407  *   The private size of mbufs stored in this mempool.
1408  */
1409 static inline uint16_t
1410 rte_pktmbuf_priv_size(struct rte_mempool *mp)
1411 {
1412         struct rte_pktmbuf_pool_private *mbp_priv;
1413
1414         mbp_priv = (struct rte_pktmbuf_pool_private *)rte_mempool_get_priv(mp);
1415         return mbp_priv->mbuf_priv_size;
1416 }
1417
1418 /**
1419  * Reset the data_off field of a packet mbuf to its default value.
1420  *
1421  * The given mbuf must have only one segment, which should be empty.
1422  *
1423  * @param m
1424  *   The packet mbuf's data_off field has to be reset.
1425  */
1426 static inline void rte_pktmbuf_reset_headroom(struct rte_mbuf *m)
1427 {
1428         m->data_off = (uint16_t)RTE_MIN((uint16_t)RTE_PKTMBUF_HEADROOM,
1429                                         (uint16_t)m->buf_len);
1430 }
1431
1432 /**
1433  * Reset the fields of a packet mbuf to their default values.
1434  *
1435  * The given mbuf must have only one segment.
1436  *
1437  * @param m
1438  *   The packet mbuf to be reset.
1439  */
1440 #define MBUF_INVALID_PORT UINT16_MAX
1441
1442 static inline void rte_pktmbuf_reset(struct rte_mbuf *m)
1443 {
1444         m->next = NULL;
1445         m->pkt_len = 0;
1446         m->tx_offload = 0;
1447         m->vlan_tci = 0;
1448         m->vlan_tci_outer = 0;
1449         m->nb_segs = 1;
1450         m->port = MBUF_INVALID_PORT;
1451
1452         m->ol_flags = 0;
1453         m->packet_type = 0;
1454         rte_pktmbuf_reset_headroom(m);
1455
1456         m->data_len = 0;
1457         __rte_mbuf_sanity_check(m, 1);
1458 }
1459
1460 /**
1461  * Allocate a new mbuf from a mempool.
1462  *
1463  * This new mbuf contains one segment, which has a length of 0. The pointer
1464  * to data is initialized to have some bytes of headroom in the buffer
1465  * (if buffer size allows).
1466  *
1467  * @param mp
1468  *   The mempool from which the mbuf is allocated.
1469  * @return
1470  *   - The pointer to the new mbuf on success.
1471  *   - NULL if allocation failed.
1472  */
1473 static inline struct rte_mbuf *rte_pktmbuf_alloc(struct rte_mempool *mp)
1474 {
1475         struct rte_mbuf *m;
1476         if ((m = rte_mbuf_raw_alloc(mp)) != NULL)
1477                 rte_pktmbuf_reset(m);
1478         return m;
1479 }
1480
1481 /**
1482  * Allocate a bulk of mbufs, initialize refcnt and reset the fields to default
1483  * values.
1484  *
1485  *  @param pool
1486  *    The mempool from which mbufs are allocated.
1487  *  @param mbufs
1488  *    Array of pointers to mbufs
1489  *  @param count
1490  *    Array size
1491  *  @return
1492  *   - 0: Success
1493  *   - -ENOENT: Not enough entries in the mempool; no mbufs are retrieved.
1494  */
1495 static inline int rte_pktmbuf_alloc_bulk(struct rte_mempool *pool,
1496          struct rte_mbuf **mbufs, unsigned count)
1497 {
1498         unsigned idx = 0;
1499         int rc;
1500
1501         rc = rte_mempool_get_bulk(pool, (void **)mbufs, count);
1502         if (unlikely(rc))
1503                 return rc;
1504
1505         /* To understand duff's device on loop unwinding optimization, see
1506          * https://en.wikipedia.org/wiki/Duff's_device.
1507          * Here while() loop is used rather than do() while{} to avoid extra
1508          * check if count is zero.
1509          */
1510         switch (count % 4) {
1511         case 0:
1512                 while (idx != count) {
1513                         MBUF_RAW_ALLOC_CHECK(mbufs[idx]);
1514                         rte_pktmbuf_reset(mbufs[idx]);
1515                         idx++;
1516                         /* fall-through */
1517         case 3:
1518                         MBUF_RAW_ALLOC_CHECK(mbufs[idx]);
1519                         rte_pktmbuf_reset(mbufs[idx]);
1520                         idx++;
1521                         /* fall-through */
1522         case 2:
1523                         MBUF_RAW_ALLOC_CHECK(mbufs[idx]);
1524                         rte_pktmbuf_reset(mbufs[idx]);
1525                         idx++;
1526                         /* fall-through */
1527         case 1:
1528                         MBUF_RAW_ALLOC_CHECK(mbufs[idx]);
1529                         rte_pktmbuf_reset(mbufs[idx]);
1530                         idx++;
1531                         /* fall-through */
1532                 }
1533         }
1534         return 0;
1535 }
1536
1537 /**
1538  * Initialize shared data at the end of an external buffer before attaching
1539  * to a mbuf by ``rte_pktmbuf_attach_extbuf()``. This is not a mandatory
1540  * initialization but a helper function to simply spare a few bytes at the
1541  * end of the buffer for shared data. If shared data is allocated
1542  * separately, this should not be called but application has to properly
1543  * initialize the shared data according to its need.
1544  *
1545  * Free callback and its argument is saved and the refcnt is set to 1.
1546  *
1547  * @warning
1548  * The value of buf_len will be reduced to RTE_PTR_DIFF(shinfo, buf_addr)
1549  * after this initialization. This shall be used for
1550  * ``rte_pktmbuf_attach_extbuf()``
1551  *
1552  * @param buf_addr
1553  *   The pointer to the external buffer.
1554  * @param [in,out] buf_len
1555  *   The pointer to length of the external buffer. Input value must be
1556  *   larger than the size of ``struct rte_mbuf_ext_shared_info`` and
1557  *   padding for alignment. If not enough, this function will return NULL.
1558  *   Adjusted buffer length will be returned through this pointer.
1559  * @param free_cb
1560  *   Free callback function to call when the external buffer needs to be
1561  *   freed.
1562  * @param fcb_opaque
1563  *   Argument for the free callback function.
1564  *
1565  * @return
1566  *   A pointer to the initialized shared data on success, return NULL
1567  *   otherwise.
1568  */
1569 static inline struct rte_mbuf_ext_shared_info *
1570 rte_pktmbuf_ext_shinfo_init_helper(void *buf_addr, uint16_t *buf_len,
1571         rte_mbuf_extbuf_free_callback_t free_cb, void *fcb_opaque)
1572 {
1573         struct rte_mbuf_ext_shared_info *shinfo;
1574         void *buf_end = RTE_PTR_ADD(buf_addr, *buf_len);
1575         void *addr;
1576
1577         addr = RTE_PTR_ALIGN_FLOOR(RTE_PTR_SUB(buf_end, sizeof(*shinfo)),
1578                                    sizeof(uintptr_t));
1579         if (addr <= buf_addr)
1580                 return NULL;
1581
1582         shinfo = (struct rte_mbuf_ext_shared_info *)addr;
1583         shinfo->free_cb = free_cb;
1584         shinfo->fcb_opaque = fcb_opaque;
1585         rte_mbuf_ext_refcnt_set(shinfo, 1);
1586
1587         *buf_len = (uint16_t)RTE_PTR_DIFF(shinfo, buf_addr);
1588         return shinfo;
1589 }
1590
1591 /**
1592  * Attach an external buffer to a mbuf.
1593  *
1594  * User-managed anonymous buffer can be attached to an mbuf. When attaching
1595  * it, corresponding free callback function and its argument should be
1596  * provided via shinfo. This callback function will be called once all the
1597  * mbufs are detached from the buffer (refcnt becomes zero).
1598  *
1599  * The headroom for the attaching mbuf will be set to zero and this can be
1600  * properly adjusted after attachment. For example, ``rte_pktmbuf_adj()``
1601  * or ``rte_pktmbuf_reset_headroom()`` might be used.
1602  *
1603  * More mbufs can be attached to the same external buffer by
1604  * ``rte_pktmbuf_attach()`` once the external buffer has been attached by
1605  * this API.
1606  *
1607  * Detachment can be done by either ``rte_pktmbuf_detach_extbuf()`` or
1608  * ``rte_pktmbuf_detach()``.
1609  *
1610  * Memory for shared data must be provided and user must initialize all of
1611  * the content properly, especially free callback and refcnt. The pointer
1612  * of shared data will be stored in m->shinfo.
1613  * ``rte_pktmbuf_ext_shinfo_init_helper`` can help to simply spare a few
1614  * bytes at the end of buffer for the shared data, store free callback and
1615  * its argument and set the refcnt to 1. The following is an example:
1616  *
1617  *   struct rte_mbuf_ext_shared_info *shinfo =
1618  *          rte_pktmbuf_ext_shinfo_init_helper(buf_addr, &buf_len,
1619  *                                             free_cb, fcb_arg);
1620  *   rte_pktmbuf_attach_extbuf(m, buf_addr, buf_iova, buf_len, shinfo);
1621  *   rte_pktmbuf_reset_headroom(m);
1622  *   rte_pktmbuf_adj(m, data_len);
1623  *
1624  * Attaching an external buffer is quite similar to mbuf indirection in
1625  * replacing buffer addresses and length of a mbuf, but a few differences:
1626  * - When an indirect mbuf is attached, refcnt of the direct mbuf would be
1627  *   2 as long as the direct mbuf itself isn't freed after the attachment.
1628  *   In such cases, the buffer area of a direct mbuf must be read-only. But
1629  *   external buffer has its own refcnt and it starts from 1. Unless
1630  *   multiple mbufs are attached to a mbuf having an external buffer, the
1631  *   external buffer is writable.
1632  * - There's no need to allocate buffer from a mempool. Any buffer can be
1633  *   attached with appropriate free callback and its IO address.
1634  * - Smaller metadata is required to maintain shared data such as refcnt.
1635  *
1636  * @param m
1637  *   The pointer to the mbuf.
1638  * @param buf_addr
1639  *   The pointer to the external buffer.
1640  * @param buf_iova
1641  *   IO address of the external buffer.
1642  * @param buf_len
1643  *   The size of the external buffer.
1644  * @param shinfo
1645  *   User-provided memory for shared data of the external buffer.
1646  */
1647 static inline void
1648 rte_pktmbuf_attach_extbuf(struct rte_mbuf *m, void *buf_addr,
1649         rte_iova_t buf_iova, uint16_t buf_len,
1650         struct rte_mbuf_ext_shared_info *shinfo)
1651 {
1652         /* mbuf should not be read-only */
1653         RTE_ASSERT(RTE_MBUF_DIRECT(m) && rte_mbuf_refcnt_read(m) == 1);
1654         RTE_ASSERT(shinfo->free_cb != NULL);
1655
1656         m->buf_addr = buf_addr;
1657         m->buf_iova = buf_iova;
1658         m->buf_len = buf_len;
1659
1660         m->data_len = 0;
1661         m->data_off = 0;
1662
1663         m->ol_flags |= EXT_ATTACHED_MBUF;
1664         m->shinfo = shinfo;
1665 }
1666
1667 /**
1668  * Detach the external buffer attached to a mbuf, same as
1669  * ``rte_pktmbuf_detach()``
1670  *
1671  * @param m
1672  *   The mbuf having external buffer.
1673  */
1674 #define rte_pktmbuf_detach_extbuf(m) rte_pktmbuf_detach(m)
1675
1676 /**
1677  * Attach packet mbuf to another packet mbuf.
1678  *
1679  * If the mbuf we are attaching to isn't a direct buffer and is attached to
1680  * an external buffer, the mbuf being attached will be attached to the
1681  * external buffer instead of mbuf indirection.
1682  *
1683  * Otherwise, the mbuf will be indirectly attached. After attachment we
1684  * refer the mbuf we attached as 'indirect', while mbuf we attached to as
1685  * 'direct'.  The direct mbuf's reference counter is incremented.
1686  *
1687  * Right now, not supported:
1688  *  - attachment for already indirect mbuf (e.g. - mi has to be direct).
1689  *  - mbuf we trying to attach (mi) is used by someone else
1690  *    e.g. it's reference counter is greater then 1.
1691  *
1692  * @param mi
1693  *   The indirect packet mbuf.
1694  * @param m
1695  *   The packet mbuf we're attaching to.
1696  */
1697 static inline void rte_pktmbuf_attach(struct rte_mbuf *mi, struct rte_mbuf *m)
1698 {
1699         RTE_ASSERT(RTE_MBUF_DIRECT(mi) &&
1700             rte_mbuf_refcnt_read(mi) == 1);
1701
1702         if (RTE_MBUF_HAS_EXTBUF(m)) {
1703                 rte_mbuf_ext_refcnt_update(m->shinfo, 1);
1704                 mi->ol_flags = m->ol_flags;
1705                 mi->shinfo = m->shinfo;
1706         } else {
1707                 /* if m is not direct, get the mbuf that embeds the data */
1708                 rte_mbuf_refcnt_update(rte_mbuf_from_indirect(m), 1);
1709                 mi->priv_size = m->priv_size;
1710                 mi->ol_flags = m->ol_flags | IND_ATTACHED_MBUF;
1711         }
1712
1713         mi->buf_iova = m->buf_iova;
1714         mi->buf_addr = m->buf_addr;
1715         mi->buf_len = m->buf_len;
1716
1717         mi->data_off = m->data_off;
1718         mi->data_len = m->data_len;
1719         mi->port = m->port;
1720         mi->vlan_tci = m->vlan_tci;
1721         mi->vlan_tci_outer = m->vlan_tci_outer;
1722         mi->tx_offload = m->tx_offload;
1723         mi->hash = m->hash;
1724
1725         mi->next = NULL;
1726         mi->pkt_len = mi->data_len;
1727         mi->nb_segs = 1;
1728         mi->packet_type = m->packet_type;
1729         mi->timestamp = m->timestamp;
1730
1731         __rte_mbuf_sanity_check(mi, 1);
1732         __rte_mbuf_sanity_check(m, 0);
1733 }
1734
1735 /**
1736  * @internal used by rte_pktmbuf_detach().
1737  *
1738  * Decrement the reference counter of the external buffer. When the
1739  * reference counter becomes 0, the buffer is freed by pre-registered
1740  * callback.
1741  */
1742 static inline void
1743 __rte_pktmbuf_free_extbuf(struct rte_mbuf *m)
1744 {
1745         RTE_ASSERT(RTE_MBUF_HAS_EXTBUF(m));
1746         RTE_ASSERT(m->shinfo != NULL);
1747
1748         if (rte_mbuf_ext_refcnt_update(m->shinfo, -1) == 0)
1749                 m->shinfo->free_cb(m->buf_addr, m->shinfo->fcb_opaque);
1750 }
1751
1752 /**
1753  * @internal used by rte_pktmbuf_detach().
1754  *
1755  * Decrement the direct mbuf's reference counter. When the reference
1756  * counter becomes 0, the direct mbuf is freed.
1757  */
1758 static inline void
1759 __rte_pktmbuf_free_direct(struct rte_mbuf *m)
1760 {
1761         struct rte_mbuf *md;
1762
1763         RTE_ASSERT(RTE_MBUF_CLONED(m));
1764
1765         md = rte_mbuf_from_indirect(m);
1766
1767         if (rte_mbuf_refcnt_update(md, -1) == 0) {
1768                 md->next = NULL;
1769                 md->nb_segs = 1;
1770                 rte_mbuf_refcnt_set(md, 1);
1771                 rte_mbuf_raw_free(md);
1772         }
1773 }
1774
1775 /**
1776  * Detach a packet mbuf from external buffer or direct buffer.
1777  *
1778  *  - decrement refcnt and free the external/direct buffer if refcnt
1779  *    becomes zero.
1780  *  - restore original mbuf address and length values.
1781  *  - reset pktmbuf data and data_len to their default values.
1782  *
1783  * All other fields of the given packet mbuf will be left intact.
1784  *
1785  * @param m
1786  *   The indirect attached packet mbuf.
1787  */
1788 static inline void rte_pktmbuf_detach(struct rte_mbuf *m)
1789 {
1790         struct rte_mempool *mp = m->pool;
1791         uint32_t mbuf_size, buf_len;
1792         uint16_t priv_size;
1793
1794         if (RTE_MBUF_HAS_EXTBUF(m))
1795                 __rte_pktmbuf_free_extbuf(m);
1796         else
1797                 __rte_pktmbuf_free_direct(m);
1798
1799         priv_size = rte_pktmbuf_priv_size(mp);
1800         mbuf_size = (uint32_t)(sizeof(struct rte_mbuf) + priv_size);
1801         buf_len = rte_pktmbuf_data_room_size(mp);
1802
1803         m->priv_size = priv_size;
1804         m->buf_addr = (char *)m + mbuf_size;
1805         m->buf_iova = rte_mempool_virt2iova(m) + mbuf_size;
1806         m->buf_len = (uint16_t)buf_len;
1807         rte_pktmbuf_reset_headroom(m);
1808         m->data_len = 0;
1809         m->ol_flags = 0;
1810 }
1811
1812 /**
1813  * Decrease reference counter and unlink a mbuf segment
1814  *
1815  * This function does the same than a free, except that it does not
1816  * return the segment to its pool.
1817  * It decreases the reference counter, and if it reaches 0, it is
1818  * detached from its parent for an indirect mbuf.
1819  *
1820  * @param m
1821  *   The mbuf to be unlinked
1822  * @return
1823  *   - (m) if it is the last reference. It can be recycled or freed.
1824  *   - (NULL) if the mbuf still has remaining references on it.
1825  */
1826 static __rte_always_inline struct rte_mbuf *
1827 rte_pktmbuf_prefree_seg(struct rte_mbuf *m)
1828 {
1829         __rte_mbuf_sanity_check(m, 0);
1830
1831         if (likely(rte_mbuf_refcnt_read(m) == 1)) {
1832
1833                 if (!RTE_MBUF_DIRECT(m))
1834                         rte_pktmbuf_detach(m);
1835
1836                 if (m->next != NULL) {
1837                         m->next = NULL;
1838                         m->nb_segs = 1;
1839                 }
1840
1841                 return m;
1842
1843         } else if (__rte_mbuf_refcnt_update(m, -1) == 0) {
1844
1845                 if (!RTE_MBUF_DIRECT(m))
1846                         rte_pktmbuf_detach(m);
1847
1848                 if (m->next != NULL) {
1849                         m->next = NULL;
1850                         m->nb_segs = 1;
1851                 }
1852                 rte_mbuf_refcnt_set(m, 1);
1853
1854                 return m;
1855         }
1856         return NULL;
1857 }
1858
1859 /**
1860  * Free a segment of a packet mbuf into its original mempool.
1861  *
1862  * Free an mbuf, without parsing other segments in case of chained
1863  * buffers.
1864  *
1865  * @param m
1866  *   The packet mbuf segment to be freed.
1867  */
1868 static __rte_always_inline void
1869 rte_pktmbuf_free_seg(struct rte_mbuf *m)
1870 {
1871         m = rte_pktmbuf_prefree_seg(m);
1872         if (likely(m != NULL))
1873                 rte_mbuf_raw_free(m);
1874 }
1875
1876 /**
1877  * Free a packet mbuf back into its original mempool.
1878  *
1879  * Free an mbuf, and all its segments in case of chained buffers. Each
1880  * segment is added back into its original mempool.
1881  *
1882  * @param m
1883  *   The packet mbuf to be freed. If NULL, the function does nothing.
1884  */
1885 static inline void rte_pktmbuf_free(struct rte_mbuf *m)
1886 {
1887         struct rte_mbuf *m_next;
1888
1889         if (m != NULL)
1890                 __rte_mbuf_sanity_check(m, 1);
1891
1892         while (m != NULL) {
1893                 m_next = m->next;
1894                 rte_pktmbuf_free_seg(m);
1895                 m = m_next;
1896         }
1897 }
1898
1899 /**
1900  * Creates a "clone" of the given packet mbuf.
1901  *
1902  * Walks through all segments of the given packet mbuf, and for each of them:
1903  *  - Creates a new packet mbuf from the given pool.
1904  *  - Attaches newly created mbuf to the segment.
1905  * Then updates pkt_len and nb_segs of the "clone" packet mbuf to match values
1906  * from the original packet mbuf.
1907  *
1908  * @param md
1909  *   The packet mbuf to be cloned.
1910  * @param mp
1911  *   The mempool from which the "clone" mbufs are allocated.
1912  * @return
1913  *   - The pointer to the new "clone" mbuf on success.
1914  *   - NULL if allocation fails.
1915  */
1916 static inline struct rte_mbuf *rte_pktmbuf_clone(struct rte_mbuf *md,
1917                 struct rte_mempool *mp)
1918 {
1919         struct rte_mbuf *mc, *mi, **prev;
1920         uint32_t pktlen;
1921         uint16_t nseg;
1922
1923         if (unlikely ((mc = rte_pktmbuf_alloc(mp)) == NULL))
1924                 return NULL;
1925
1926         mi = mc;
1927         prev = &mi->next;
1928         pktlen = md->pkt_len;
1929         nseg = 0;
1930
1931         do {
1932                 nseg++;
1933                 rte_pktmbuf_attach(mi, md);
1934                 *prev = mi;
1935                 prev = &mi->next;
1936         } while ((md = md->next) != NULL &&
1937             (mi = rte_pktmbuf_alloc(mp)) != NULL);
1938
1939         *prev = NULL;
1940         mc->nb_segs = nseg;
1941         mc->pkt_len = pktlen;
1942
1943         /* Allocation of new indirect segment failed */
1944         if (unlikely (mi == NULL)) {
1945                 rte_pktmbuf_free(mc);
1946                 return NULL;
1947         }
1948
1949         __rte_mbuf_sanity_check(mc, 1);
1950         return mc;
1951 }
1952
1953 /**
1954  * Adds given value to the refcnt of all packet mbuf segments.
1955  *
1956  * Walks through all segments of given packet mbuf and for each of them
1957  * invokes rte_mbuf_refcnt_update().
1958  *
1959  * @param m
1960  *   The packet mbuf whose refcnt to be updated.
1961  * @param v
1962  *   The value to add to the mbuf's segments refcnt.
1963  */
1964 static inline void rte_pktmbuf_refcnt_update(struct rte_mbuf *m, int16_t v)
1965 {
1966         __rte_mbuf_sanity_check(m, 1);
1967
1968         do {
1969                 rte_mbuf_refcnt_update(m, v);
1970         } while ((m = m->next) != NULL);
1971 }
1972
1973 /**
1974  * Get the headroom in a packet mbuf.
1975  *
1976  * @param m
1977  *   The packet mbuf.
1978  * @return
1979  *   The length of the headroom.
1980  */
1981 static inline uint16_t rte_pktmbuf_headroom(const struct rte_mbuf *m)
1982 {
1983         __rte_mbuf_sanity_check(m, 0);
1984         return m->data_off;
1985 }
1986
1987 /**
1988  * Get the tailroom of a packet mbuf.
1989  *
1990  * @param m
1991  *   The packet mbuf.
1992  * @return
1993  *   The length of the tailroom.
1994  */
1995 static inline uint16_t rte_pktmbuf_tailroom(const struct rte_mbuf *m)
1996 {
1997         __rte_mbuf_sanity_check(m, 0);
1998         return (uint16_t)(m->buf_len - rte_pktmbuf_headroom(m) -
1999                           m->data_len);
2000 }
2001
2002 /**
2003  * Get the last segment of the packet.
2004  *
2005  * @param m
2006  *   The packet mbuf.
2007  * @return
2008  *   The last segment of the given mbuf.
2009  */
2010 static inline struct rte_mbuf *rte_pktmbuf_lastseg(struct rte_mbuf *m)
2011 {
2012         __rte_mbuf_sanity_check(m, 1);
2013         while (m->next != NULL)
2014                 m = m->next;
2015         return m;
2016 }
2017
2018 /**
2019  * A macro that points to an offset into the data in the mbuf.
2020  *
2021  * The returned pointer is cast to type t. Before using this
2022  * function, the user must ensure that the first segment is large
2023  * enough to accommodate its data.
2024  *
2025  * @param m
2026  *   The packet mbuf.
2027  * @param o
2028  *   The offset into the mbuf data.
2029  * @param t
2030  *   The type to cast the result into.
2031  */
2032 #define rte_pktmbuf_mtod_offset(m, t, o)        \
2033         ((t)((char *)(m)->buf_addr + (m)->data_off + (o)))
2034
2035 /**
2036  * A macro that points to the start of the data in the mbuf.
2037  *
2038  * The returned pointer is cast to type t. Before using this
2039  * function, the user must ensure that the first segment is large
2040  * enough to accommodate its data.
2041  *
2042  * @param m
2043  *   The packet mbuf.
2044  * @param t
2045  *   The type to cast the result into.
2046  */
2047 #define rte_pktmbuf_mtod(m, t) rte_pktmbuf_mtod_offset(m, t, 0)
2048
2049 /**
2050  * A macro that returns the IO address that points to an offset of the
2051  * start of the data in the mbuf
2052  *
2053  * @param m
2054  *   The packet mbuf.
2055  * @param o
2056  *   The offset into the data to calculate address from.
2057  */
2058 #define rte_pktmbuf_iova_offset(m, o) \
2059         (rte_iova_t)((m)->buf_iova + (m)->data_off + (o))
2060
2061 /* deprecated */
2062 #define rte_pktmbuf_mtophys_offset(m, o) \
2063         rte_pktmbuf_iova_offset(m, o)
2064
2065 /**
2066  * A macro that returns the IO address that points to the start of the
2067  * data in the mbuf
2068  *
2069  * @param m
2070  *   The packet mbuf.
2071  */
2072 #define rte_pktmbuf_iova(m) rte_pktmbuf_iova_offset(m, 0)
2073
2074 /* deprecated */
2075 #define rte_pktmbuf_mtophys(m) rte_pktmbuf_iova(m)
2076
2077 /**
2078  * A macro that returns the length of the packet.
2079  *
2080  * The value can be read or assigned.
2081  *
2082  * @param m
2083  *   The packet mbuf.
2084  */
2085 #define rte_pktmbuf_pkt_len(m) ((m)->pkt_len)
2086
2087 /**
2088  * A macro that returns the length of the segment.
2089  *
2090  * The value can be read or assigned.
2091  *
2092  * @param m
2093  *   The packet mbuf.
2094  */
2095 #define rte_pktmbuf_data_len(m) ((m)->data_len)
2096
2097 /**
2098  * Prepend len bytes to an mbuf data area.
2099  *
2100  * Returns a pointer to the new
2101  * data start address. If there is not enough headroom in the first
2102  * segment, the function will return NULL, without modifying the mbuf.
2103  *
2104  * @param m
2105  *   The pkt mbuf.
2106  * @param len
2107  *   The amount of data to prepend (in bytes).
2108  * @return
2109  *   A pointer to the start of the newly prepended data, or
2110  *   NULL if there is not enough headroom space in the first segment
2111  */
2112 static inline char *rte_pktmbuf_prepend(struct rte_mbuf *m,
2113                                         uint16_t len)
2114 {
2115         __rte_mbuf_sanity_check(m, 1);
2116
2117         if (unlikely(len > rte_pktmbuf_headroom(m)))
2118                 return NULL;
2119
2120         /* NB: elaborating the subtraction like this instead of using
2121          *     -= allows us to ensure the result type is uint16_t
2122          *     avoiding compiler warnings on gcc 8.1 at least */
2123         m->data_off = (uint16_t)(m->data_off - len);
2124         m->data_len = (uint16_t)(m->data_len + len);
2125         m->pkt_len  = (m->pkt_len + len);
2126
2127         return (char *)m->buf_addr + m->data_off;
2128 }
2129
2130 /**
2131  * Append len bytes to an mbuf.
2132  *
2133  * Append len bytes to an mbuf and return a pointer to the start address
2134  * of the added data. If there is not enough tailroom in the last
2135  * segment, the function will return NULL, without modifying the mbuf.
2136  *
2137  * @param m
2138  *   The packet mbuf.
2139  * @param len
2140  *   The amount of data to append (in bytes).
2141  * @return
2142  *   A pointer to the start of the newly appended data, or
2143  *   NULL if there is not enough tailroom space in the last segment
2144  */
2145 static inline char *rte_pktmbuf_append(struct rte_mbuf *m, uint16_t len)
2146 {
2147         void *tail;
2148         struct rte_mbuf *m_last;
2149
2150         __rte_mbuf_sanity_check(m, 1);
2151
2152         m_last = rte_pktmbuf_lastseg(m);
2153         if (unlikely(len > rte_pktmbuf_tailroom(m_last)))
2154                 return NULL;
2155
2156         tail = (char *)m_last->buf_addr + m_last->data_off + m_last->data_len;
2157         m_last->data_len = (uint16_t)(m_last->data_len + len);
2158         m->pkt_len  = (m->pkt_len + len);
2159         return (char*) tail;
2160 }
2161
2162 /**
2163  * Remove len bytes at the beginning of an mbuf.
2164  *
2165  * Returns a pointer to the start address of the new data area. If the
2166  * length is greater than the length of the first segment, then the
2167  * function will fail and return NULL, without modifying the mbuf.
2168  *
2169  * @param m
2170  *   The packet mbuf.
2171  * @param len
2172  *   The amount of data to remove (in bytes).
2173  * @return
2174  *   A pointer to the new start of the data.
2175  */
2176 static inline char *rte_pktmbuf_adj(struct rte_mbuf *m, uint16_t len)
2177 {
2178         __rte_mbuf_sanity_check(m, 1);
2179
2180         if (unlikely(len > m->data_len))
2181                 return NULL;
2182
2183         /* NB: elaborating the addition like this instead of using
2184          *     += allows us to ensure the result type is uint16_t
2185          *     avoiding compiler warnings on gcc 8.1 at least */
2186         m->data_len = (uint16_t)(m->data_len - len);
2187         m->data_off = (uint16_t)(m->data_off + len);
2188         m->pkt_len  = (m->pkt_len - len);
2189         return (char *)m->buf_addr + m->data_off;
2190 }
2191
2192 /**
2193  * Remove len bytes of data at the end of the mbuf.
2194  *
2195  * If the length is greater than the length of the last segment, the
2196  * function will fail and return -1 without modifying the mbuf.
2197  *
2198  * @param m
2199  *   The packet mbuf.
2200  * @param len
2201  *   The amount of data to remove (in bytes).
2202  * @return
2203  *   - 0: On success.
2204  *   - -1: On error.
2205  */
2206 static inline int rte_pktmbuf_trim(struct rte_mbuf *m, uint16_t len)
2207 {
2208         struct rte_mbuf *m_last;
2209
2210         __rte_mbuf_sanity_check(m, 1);
2211
2212         m_last = rte_pktmbuf_lastseg(m);
2213         if (unlikely(len > m_last->data_len))
2214                 return -1;
2215
2216         m_last->data_len = (uint16_t)(m_last->data_len - len);
2217         m->pkt_len  = (m->pkt_len - len);
2218         return 0;
2219 }
2220
2221 /**
2222  * Test if mbuf data is contiguous.
2223  *
2224  * @param m
2225  *   The packet mbuf.
2226  * @return
2227  *   - 1, if all data is contiguous (one segment).
2228  *   - 0, if there is several segments.
2229  */
2230 static inline int rte_pktmbuf_is_contiguous(const struct rte_mbuf *m)
2231 {
2232         __rte_mbuf_sanity_check(m, 1);
2233         return !!(m->nb_segs == 1);
2234 }
2235
2236 /**
2237  * @internal used by rte_pktmbuf_read().
2238  */
2239 const void *__rte_pktmbuf_read(const struct rte_mbuf *m, uint32_t off,
2240         uint32_t len, void *buf);
2241
2242 /**
2243  * Read len data bytes in a mbuf at specified offset.
2244  *
2245  * If the data is contiguous, return the pointer in the mbuf data, else
2246  * copy the data in the buffer provided by the user and return its
2247  * pointer.
2248  *
2249  * @param m
2250  *   The pointer to the mbuf.
2251  * @param off
2252  *   The offset of the data in the mbuf.
2253  * @param len
2254  *   The amount of bytes to read.
2255  * @param buf
2256  *   The buffer where data is copied if it is not contiguous in mbuf
2257  *   data. Its length should be at least equal to the len parameter.
2258  * @return
2259  *   The pointer to the data, either in the mbuf if it is contiguous,
2260  *   or in the user buffer. If mbuf is too small, NULL is returned.
2261  */
2262 static inline const void *rte_pktmbuf_read(const struct rte_mbuf *m,
2263         uint32_t off, uint32_t len, void *buf)
2264 {
2265         if (likely(off + len <= rte_pktmbuf_data_len(m)))
2266                 return rte_pktmbuf_mtod_offset(m, char *, off);
2267         else
2268                 return __rte_pktmbuf_read(m, off, len, buf);
2269 }
2270
2271 /**
2272  * Chain an mbuf to another, thereby creating a segmented packet.
2273  *
2274  * Note: The implementation will do a linear walk over the segments to find
2275  * the tail entry. For cases when there are many segments, it's better to
2276  * chain the entries manually.
2277  *
2278  * @param head
2279  *   The head of the mbuf chain (the first packet)
2280  * @param tail
2281  *   The mbuf to put last in the chain
2282  *
2283  * @return
2284  *   - 0, on success.
2285  *   - -EOVERFLOW, if the chain segment limit exceeded
2286  */
2287 static inline int rte_pktmbuf_chain(struct rte_mbuf *head, struct rte_mbuf *tail)
2288 {
2289         struct rte_mbuf *cur_tail;
2290
2291         /* Check for number-of-segments-overflow */
2292         if (head->nb_segs + tail->nb_segs > RTE_MBUF_MAX_NB_SEGS)
2293                 return -EOVERFLOW;
2294
2295         /* Chain 'tail' onto the old tail */
2296         cur_tail = rte_pktmbuf_lastseg(head);
2297         cur_tail->next = tail;
2298
2299         /* accumulate number of segments and total length.
2300          * NB: elaborating the addition like this instead of using
2301          *     -= allows us to ensure the result type is uint16_t
2302          *     avoiding compiler warnings on gcc 8.1 at least */
2303         head->nb_segs = (uint16_t)(head->nb_segs + tail->nb_segs);
2304         head->pkt_len += tail->pkt_len;
2305
2306         /* pkt_len is only set in the head */
2307         tail->pkt_len = tail->data_len;
2308
2309         return 0;
2310 }
2311
2312 /*
2313  * @warning
2314  * @b EXPERIMENTAL: This API may change without prior notice.
2315  *
2316  * For given input values generate raw tx_offload value.
2317  * Note that it is caller responsibility to make sure that input parameters
2318  * don't exceed maximum bit-field values.
2319  * @param il2
2320  *   l2_len value.
2321  * @param il3
2322  *   l3_len value.
2323  * @param il4
2324  *   l4_len value.
2325  * @param tso
2326  *   tso_segsz value.
2327  * @param ol3
2328  *   outer_l3_len value.
2329  * @param ol2
2330  *   outer_l2_len value.
2331  * @param unused
2332  *   unused value.
2333  * @return
2334  *   raw tx_offload value.
2335  */
2336 static __rte_always_inline uint64_t
2337 rte_mbuf_tx_offload(uint64_t il2, uint64_t il3, uint64_t il4, uint64_t tso,
2338         uint64_t ol3, uint64_t ol2, uint64_t unused)
2339 {
2340         return il2 << RTE_MBUF_L2_LEN_OFS |
2341                 il3 << RTE_MBUF_L3_LEN_OFS |
2342                 il4 << RTE_MBUF_L4_LEN_OFS |
2343                 tso << RTE_MBUF_TSO_SEGSZ_OFS |
2344                 ol3 << RTE_MBUF_OUTL3_LEN_OFS |
2345                 ol2 << RTE_MBUF_OUTL2_LEN_OFS |
2346                 unused << RTE_MBUF_TXOFLD_UNUSED_OFS;
2347 }
2348
2349 /**
2350  * Validate general requirements for Tx offload in mbuf.
2351  *
2352  * This function checks correctness and completeness of Tx offload settings.
2353  *
2354  * @param m
2355  *   The packet mbuf to be validated.
2356  * @return
2357  *   0 if packet is valid
2358  */
2359 static inline int
2360 rte_validate_tx_offload(const struct rte_mbuf *m)
2361 {
2362         uint64_t ol_flags = m->ol_flags;
2363
2364         /* Does packet set any of available offloads? */
2365         if (!(ol_flags & PKT_TX_OFFLOAD_MASK))
2366                 return 0;
2367
2368         /* IP checksum can be counted only for IPv4 packet */
2369         if ((ol_flags & PKT_TX_IP_CKSUM) && (ol_flags & PKT_TX_IPV6))
2370                 return -EINVAL;
2371
2372         /* IP type not set when required */
2373         if (ol_flags & (PKT_TX_L4_MASK | PKT_TX_TCP_SEG))
2374                 if (!(ol_flags & (PKT_TX_IPV4 | PKT_TX_IPV6)))
2375                         return -EINVAL;
2376
2377         /* Check requirements for TSO packet */
2378         if (ol_flags & PKT_TX_TCP_SEG)
2379                 if ((m->tso_segsz == 0) ||
2380                                 ((ol_flags & PKT_TX_IPV4) &&
2381                                 !(ol_flags & PKT_TX_IP_CKSUM)))
2382                         return -EINVAL;
2383
2384         /* PKT_TX_OUTER_IP_CKSUM set for non outer IPv4 packet. */
2385         if ((ol_flags & PKT_TX_OUTER_IP_CKSUM) &&
2386                         !(ol_flags & PKT_TX_OUTER_IPV4))
2387                 return -EINVAL;
2388
2389         return 0;
2390 }
2391
2392 /**
2393  * Linearize data in mbuf.
2394  *
2395  * This function moves the mbuf data in the first segment if there is enough
2396  * tailroom. The subsequent segments are unchained and freed.
2397  *
2398  * @param mbuf
2399  *   mbuf to linearize
2400  * @return
2401  *   - 0, on success
2402  *   - -1, on error
2403  */
2404 static inline int
2405 rte_pktmbuf_linearize(struct rte_mbuf *mbuf)
2406 {
2407         size_t seg_len, copy_len;
2408         struct rte_mbuf *m;
2409         struct rte_mbuf *m_next;
2410         char *buffer;
2411
2412         if (rte_pktmbuf_is_contiguous(mbuf))
2413                 return 0;
2414
2415         /* Extend first segment to the total packet length */
2416         copy_len = rte_pktmbuf_pkt_len(mbuf) - rte_pktmbuf_data_len(mbuf);
2417
2418         if (unlikely(copy_len > rte_pktmbuf_tailroom(mbuf)))
2419                 return -1;
2420
2421         buffer = rte_pktmbuf_mtod_offset(mbuf, char *, mbuf->data_len);
2422         mbuf->data_len = (uint16_t)(mbuf->pkt_len);
2423
2424         /* Append data from next segments to the first one */
2425         m = mbuf->next;
2426         while (m != NULL) {
2427                 m_next = m->next;
2428
2429                 seg_len = rte_pktmbuf_data_len(m);
2430                 rte_memcpy(buffer, rte_pktmbuf_mtod(m, char *), seg_len);
2431                 buffer += seg_len;
2432
2433                 rte_pktmbuf_free_seg(m);
2434                 m = m_next;
2435         }
2436
2437         mbuf->next = NULL;
2438         mbuf->nb_segs = 1;
2439
2440         return 0;
2441 }
2442
2443 /**
2444  * Dump an mbuf structure to a file.
2445  *
2446  * Dump all fields for the given packet mbuf and all its associated
2447  * segments (in the case of a chained buffer).
2448  *
2449  * @param f
2450  *   A pointer to a file for output
2451  * @param m
2452  *   The packet mbuf.
2453  * @param dump_len
2454  *   If dump_len != 0, also dump the "dump_len" first data bytes of
2455  *   the packet.
2456  */
2457 void rte_pktmbuf_dump(FILE *f, const struct rte_mbuf *m, unsigned dump_len);
2458
2459 /**
2460  * Get the value of mbuf sched queue_id field.
2461  */
2462 static inline uint32_t
2463 rte_mbuf_sched_queue_get(const struct rte_mbuf *m)
2464 {
2465         return m->hash.sched.queue_id;
2466 }
2467
2468 /**
2469  * Get the value of mbuf sched traffic_class field.
2470  */
2471 static inline uint8_t
2472 rte_mbuf_sched_traffic_class_get(const struct rte_mbuf *m)
2473 {
2474         return m->hash.sched.traffic_class;
2475 }
2476
2477 /**
2478  * Get the value of mbuf sched color field.
2479  */
2480 static inline uint8_t
2481 rte_mbuf_sched_color_get(const struct rte_mbuf *m)
2482 {
2483         return m->hash.sched.color;
2484 }
2485
2486 /**
2487  * Get the values of mbuf sched queue_id, traffic_class and color.
2488  *
2489  * @param m
2490  *   Mbuf to read
2491  * @param queue_id
2492  *  Returns the queue id
2493  * @param traffic_class
2494  *  Returns the traffic class id
2495  * @param color
2496  *  Returns the colour id
2497  */
2498 static inline void
2499 rte_mbuf_sched_get(const struct rte_mbuf *m, uint32_t *queue_id,
2500                         uint8_t *traffic_class,
2501                         uint8_t *color)
2502 {
2503         struct rte_mbuf_sched sched = m->hash.sched;
2504
2505         *queue_id = sched.queue_id;
2506         *traffic_class = sched.traffic_class;
2507         *color = sched.color;
2508 }
2509
2510 /**
2511  * Set the mbuf sched queue_id to the defined value.
2512  */
2513 static inline void
2514 rte_mbuf_sched_queue_set(struct rte_mbuf *m, uint32_t queue_id)
2515 {
2516         m->hash.sched.queue_id = queue_id;
2517 }
2518
2519 /**
2520  * Set the mbuf sched traffic_class id to the defined value.
2521  */
2522 static inline void
2523 rte_mbuf_sched_traffic_class_set(struct rte_mbuf *m, uint8_t traffic_class)
2524 {
2525         m->hash.sched.traffic_class = traffic_class;
2526 }
2527
2528 /**
2529  * Set the mbuf sched color id to the defined value.
2530  */
2531 static inline void
2532 rte_mbuf_sched_color_set(struct rte_mbuf *m, uint8_t color)
2533 {
2534         m->hash.sched.color = color;
2535 }
2536
2537 /**
2538  * Set the mbuf sched queue_id, traffic_class and color.
2539  *
2540  * @param m
2541  *   Mbuf to set
2542  * @param queue_id
2543  *  Queue id value to be set
2544  * @param traffic_class
2545  *  Traffic class id value to be set
2546  * @param color
2547  *  Color id to be set
2548  */
2549 static inline void
2550 rte_mbuf_sched_set(struct rte_mbuf *m, uint32_t queue_id,
2551                         uint8_t traffic_class,
2552                         uint8_t color)
2553 {
2554         m->hash.sched = (struct rte_mbuf_sched){
2555                                 .queue_id = queue_id,
2556                                 .traffic_class = traffic_class,
2557                                 .color = color,
2558                                 .reserved = 0,
2559                         };
2560 }
2561
2562 #ifdef __cplusplus
2563 }
2564 #endif
2565
2566 #endif /* _RTE_MBUF_H_ */