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