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