mbuf: add a copy routine
[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 /* internal */
1688 static inline void
1689 __rte_pktmbuf_copy_hdr(struct rte_mbuf *mdst, const struct rte_mbuf *msrc)
1690 {
1691         mdst->port = msrc->port;
1692         mdst->vlan_tci = msrc->vlan_tci;
1693         mdst->vlan_tci_outer = msrc->vlan_tci_outer;
1694         mdst->tx_offload = msrc->tx_offload;
1695         mdst->hash = msrc->hash;
1696         mdst->packet_type = msrc->packet_type;
1697         mdst->timestamp = msrc->timestamp;
1698 }
1699
1700 /**
1701  * Attach packet mbuf to another packet mbuf.
1702  *
1703  * If the mbuf we are attaching to isn't a direct buffer and is attached to
1704  * an external buffer, the mbuf being attached will be attached to the
1705  * external buffer instead of mbuf indirection.
1706  *
1707  * Otherwise, the mbuf will be indirectly attached. After attachment we
1708  * refer the mbuf we attached as 'indirect', while mbuf we attached to as
1709  * 'direct'.  The direct mbuf's reference counter is incremented.
1710  *
1711  * Right now, not supported:
1712  *  - attachment for already indirect mbuf (e.g. - mi has to be direct).
1713  *  - mbuf we trying to attach (mi) is used by someone else
1714  *    e.g. it's reference counter is greater then 1.
1715  *
1716  * @param mi
1717  *   The indirect packet mbuf.
1718  * @param m
1719  *   The packet mbuf we're attaching to.
1720  */
1721 static inline void rte_pktmbuf_attach(struct rte_mbuf *mi, struct rte_mbuf *m)
1722 {
1723         RTE_ASSERT(RTE_MBUF_DIRECT(mi) &&
1724             rte_mbuf_refcnt_read(mi) == 1);
1725
1726         if (RTE_MBUF_HAS_EXTBUF(m)) {
1727                 rte_mbuf_ext_refcnt_update(m->shinfo, 1);
1728                 mi->ol_flags = m->ol_flags;
1729                 mi->shinfo = m->shinfo;
1730         } else {
1731                 /* if m is not direct, get the mbuf that embeds the data */
1732                 rte_mbuf_refcnt_update(rte_mbuf_from_indirect(m), 1);
1733                 mi->priv_size = m->priv_size;
1734                 mi->ol_flags = m->ol_flags | IND_ATTACHED_MBUF;
1735         }
1736
1737         __rte_pktmbuf_copy_hdr(mi, m);
1738
1739         mi->data_off = m->data_off;
1740         mi->data_len = m->data_len;
1741         mi->buf_iova = m->buf_iova;
1742         mi->buf_addr = m->buf_addr;
1743         mi->buf_len = m->buf_len;
1744
1745         mi->next = NULL;
1746         mi->pkt_len = mi->data_len;
1747         mi->nb_segs = 1;
1748
1749         __rte_mbuf_sanity_check(mi, 1);
1750         __rte_mbuf_sanity_check(m, 0);
1751 }
1752
1753 /**
1754  * @internal used by rte_pktmbuf_detach().
1755  *
1756  * Decrement the reference counter of the external buffer. When the
1757  * reference counter becomes 0, the buffer is freed by pre-registered
1758  * callback.
1759  */
1760 static inline void
1761 __rte_pktmbuf_free_extbuf(struct rte_mbuf *m)
1762 {
1763         RTE_ASSERT(RTE_MBUF_HAS_EXTBUF(m));
1764         RTE_ASSERT(m->shinfo != NULL);
1765
1766         if (rte_mbuf_ext_refcnt_update(m->shinfo, -1) == 0)
1767                 m->shinfo->free_cb(m->buf_addr, m->shinfo->fcb_opaque);
1768 }
1769
1770 /**
1771  * @internal used by rte_pktmbuf_detach().
1772  *
1773  * Decrement the direct mbuf's reference counter. When the reference
1774  * counter becomes 0, the direct mbuf is freed.
1775  */
1776 static inline void
1777 __rte_pktmbuf_free_direct(struct rte_mbuf *m)
1778 {
1779         struct rte_mbuf *md;
1780
1781         RTE_ASSERT(RTE_MBUF_CLONED(m));
1782
1783         md = rte_mbuf_from_indirect(m);
1784
1785         if (rte_mbuf_refcnt_update(md, -1) == 0) {
1786                 md->next = NULL;
1787                 md->nb_segs = 1;
1788                 rte_mbuf_refcnt_set(md, 1);
1789                 rte_mbuf_raw_free(md);
1790         }
1791 }
1792
1793 /**
1794  * Detach a packet mbuf from external buffer or direct buffer.
1795  *
1796  *  - decrement refcnt and free the external/direct buffer if refcnt
1797  *    becomes zero.
1798  *  - restore original mbuf address and length values.
1799  *  - reset pktmbuf data and data_len to their default values.
1800  *
1801  * All other fields of the given packet mbuf will be left intact.
1802  *
1803  * @param m
1804  *   The indirect attached packet mbuf.
1805  */
1806 static inline void rte_pktmbuf_detach(struct rte_mbuf *m)
1807 {
1808         struct rte_mempool *mp = m->pool;
1809         uint32_t mbuf_size, buf_len;
1810         uint16_t priv_size;
1811
1812         if (RTE_MBUF_HAS_EXTBUF(m))
1813                 __rte_pktmbuf_free_extbuf(m);
1814         else
1815                 __rte_pktmbuf_free_direct(m);
1816
1817         priv_size = rte_pktmbuf_priv_size(mp);
1818         mbuf_size = (uint32_t)(sizeof(struct rte_mbuf) + priv_size);
1819         buf_len = rte_pktmbuf_data_room_size(mp);
1820
1821         m->priv_size = priv_size;
1822         m->buf_addr = (char *)m + mbuf_size;
1823         m->buf_iova = rte_mempool_virt2iova(m) + mbuf_size;
1824         m->buf_len = (uint16_t)buf_len;
1825         rte_pktmbuf_reset_headroom(m);
1826         m->data_len = 0;
1827         m->ol_flags = 0;
1828 }
1829
1830 /**
1831  * Decrease reference counter and unlink a mbuf segment
1832  *
1833  * This function does the same than a free, except that it does not
1834  * return the segment to its pool.
1835  * It decreases the reference counter, and if it reaches 0, it is
1836  * detached from its parent for an indirect mbuf.
1837  *
1838  * @param m
1839  *   The mbuf to be unlinked
1840  * @return
1841  *   - (m) if it is the last reference. It can be recycled or freed.
1842  *   - (NULL) if the mbuf still has remaining references on it.
1843  */
1844 static __rte_always_inline struct rte_mbuf *
1845 rte_pktmbuf_prefree_seg(struct rte_mbuf *m)
1846 {
1847         __rte_mbuf_sanity_check(m, 0);
1848
1849         if (likely(rte_mbuf_refcnt_read(m) == 1)) {
1850
1851                 if (!RTE_MBUF_DIRECT(m))
1852                         rte_pktmbuf_detach(m);
1853
1854                 if (m->next != NULL) {
1855                         m->next = NULL;
1856                         m->nb_segs = 1;
1857                 }
1858
1859                 return m;
1860
1861         } else if (__rte_mbuf_refcnt_update(m, -1) == 0) {
1862
1863                 if (!RTE_MBUF_DIRECT(m))
1864                         rte_pktmbuf_detach(m);
1865
1866                 if (m->next != NULL) {
1867                         m->next = NULL;
1868                         m->nb_segs = 1;
1869                 }
1870                 rte_mbuf_refcnt_set(m, 1);
1871
1872                 return m;
1873         }
1874         return NULL;
1875 }
1876
1877 /**
1878  * Free a segment of a packet mbuf into its original mempool.
1879  *
1880  * Free an mbuf, without parsing other segments in case of chained
1881  * buffers.
1882  *
1883  * @param m
1884  *   The packet mbuf segment to be freed.
1885  */
1886 static __rte_always_inline void
1887 rte_pktmbuf_free_seg(struct rte_mbuf *m)
1888 {
1889         m = rte_pktmbuf_prefree_seg(m);
1890         if (likely(m != NULL))
1891                 rte_mbuf_raw_free(m);
1892 }
1893
1894 /**
1895  * Free a packet mbuf back into its original mempool.
1896  *
1897  * Free an mbuf, and all its segments in case of chained buffers. Each
1898  * segment is added back into its original mempool.
1899  *
1900  * @param m
1901  *   The packet mbuf to be freed. If NULL, the function does nothing.
1902  */
1903 static inline void rte_pktmbuf_free(struct rte_mbuf *m)
1904 {
1905         struct rte_mbuf *m_next;
1906
1907         if (m != NULL)
1908                 __rte_mbuf_sanity_check(m, 1);
1909
1910         while (m != NULL) {
1911                 m_next = m->next;
1912                 rte_pktmbuf_free_seg(m);
1913                 m = m_next;
1914         }
1915 }
1916
1917 /**
1918  * Create a "clone" of the given packet mbuf.
1919  *
1920  * Walks through all segments of the given packet mbuf, and for each of them:
1921  *  - Creates a new packet mbuf from the given pool.
1922  *  - Attaches newly created mbuf to the segment.
1923  * Then updates pkt_len and nb_segs of the "clone" packet mbuf to match values
1924  * from the original packet mbuf.
1925  *
1926  * @param md
1927  *   The packet mbuf to be cloned.
1928  * @param mp
1929  *   The mempool from which the "clone" mbufs are allocated.
1930  * @return
1931  *   - The pointer to the new "clone" mbuf on success.
1932  *   - NULL if allocation fails.
1933  */
1934 struct rte_mbuf *
1935 rte_pktmbuf_clone(struct rte_mbuf *md, struct rte_mempool *mp);
1936
1937 /**
1938  * Create a full copy of a given packet mbuf.
1939  *
1940  * Copies all the data from a given packet mbuf to a newly allocated
1941  * set of mbufs. The private data are is not copied.
1942  *
1943  * @param m
1944  *   The packet mbuf to be copiedd.
1945  * @param mp
1946  *   The mempool from which the "clone" mbufs are allocated.
1947  * @param offset
1948  *   The number of bytes to skip before copying.
1949  *   If the mbuf does not have that many bytes, it is an error
1950  *   and NULL is returned.
1951  * @param length
1952  *   The upper limit on bytes to copy.  Passing UINT32_MAX
1953  *   means all data (after offset).
1954  * @return
1955  *   - The pointer to the new "clone" mbuf on success.
1956  *   - NULL if allocation fails.
1957  */
1958 __rte_experimental
1959 struct rte_mbuf *
1960 rte_pktmbuf_copy(const struct rte_mbuf *m, struct rte_mempool *mp,
1961                  uint32_t offset, uint32_t length);
1962
1963 /**
1964  * Adds given value to the refcnt of all packet mbuf segments.
1965  *
1966  * Walks through all segments of given packet mbuf and for each of them
1967  * invokes rte_mbuf_refcnt_update().
1968  *
1969  * @param m
1970  *   The packet mbuf whose refcnt to be updated.
1971  * @param v
1972  *   The value to add to the mbuf's segments refcnt.
1973  */
1974 static inline void rte_pktmbuf_refcnt_update(struct rte_mbuf *m, int16_t v)
1975 {
1976         __rte_mbuf_sanity_check(m, 1);
1977
1978         do {
1979                 rte_mbuf_refcnt_update(m, v);
1980         } while ((m = m->next) != NULL);
1981 }
1982
1983 /**
1984  * Get the headroom in a packet mbuf.
1985  *
1986  * @param m
1987  *   The packet mbuf.
1988  * @return
1989  *   The length of the headroom.
1990  */
1991 static inline uint16_t rte_pktmbuf_headroom(const struct rte_mbuf *m)
1992 {
1993         __rte_mbuf_sanity_check(m, 0);
1994         return m->data_off;
1995 }
1996
1997 /**
1998  * Get the tailroom of a packet mbuf.
1999  *
2000  * @param m
2001  *   The packet mbuf.
2002  * @return
2003  *   The length of the tailroom.
2004  */
2005 static inline uint16_t rte_pktmbuf_tailroom(const struct rte_mbuf *m)
2006 {
2007         __rte_mbuf_sanity_check(m, 0);
2008         return (uint16_t)(m->buf_len - rte_pktmbuf_headroom(m) -
2009                           m->data_len);
2010 }
2011
2012 /**
2013  * Get the last segment of the packet.
2014  *
2015  * @param m
2016  *   The packet mbuf.
2017  * @return
2018  *   The last segment of the given mbuf.
2019  */
2020 static inline struct rte_mbuf *rte_pktmbuf_lastseg(struct rte_mbuf *m)
2021 {
2022         __rte_mbuf_sanity_check(m, 1);
2023         while (m->next != NULL)
2024                 m = m->next;
2025         return m;
2026 }
2027
2028 /**
2029  * A macro that points to an offset into the data in the mbuf.
2030  *
2031  * The returned pointer is cast to type t. Before using this
2032  * function, the user must ensure that the first segment is large
2033  * enough to accommodate its data.
2034  *
2035  * @param m
2036  *   The packet mbuf.
2037  * @param o
2038  *   The offset into the mbuf data.
2039  * @param t
2040  *   The type to cast the result into.
2041  */
2042 #define rte_pktmbuf_mtod_offset(m, t, o)        \
2043         ((t)((char *)(m)->buf_addr + (m)->data_off + (o)))
2044
2045 /**
2046  * A macro that points to the start of the data in the mbuf.
2047  *
2048  * The returned pointer is cast to type t. Before using this
2049  * function, the user must ensure that the first segment is large
2050  * enough to accommodate its data.
2051  *
2052  * @param m
2053  *   The packet mbuf.
2054  * @param t
2055  *   The type to cast the result into.
2056  */
2057 #define rte_pktmbuf_mtod(m, t) rte_pktmbuf_mtod_offset(m, t, 0)
2058
2059 /**
2060  * A macro that returns the IO address that points to an offset of the
2061  * start of the data in the mbuf
2062  *
2063  * @param m
2064  *   The packet mbuf.
2065  * @param o
2066  *   The offset into the data to calculate address from.
2067  */
2068 #define rte_pktmbuf_iova_offset(m, o) \
2069         (rte_iova_t)((m)->buf_iova + (m)->data_off + (o))
2070
2071 /* deprecated */
2072 #define rte_pktmbuf_mtophys_offset(m, o) \
2073         rte_pktmbuf_iova_offset(m, o)
2074
2075 /**
2076  * A macro that returns the IO address that points to the start of the
2077  * data in the mbuf
2078  *
2079  * @param m
2080  *   The packet mbuf.
2081  */
2082 #define rte_pktmbuf_iova(m) rte_pktmbuf_iova_offset(m, 0)
2083
2084 /* deprecated */
2085 #define rte_pktmbuf_mtophys(m) rte_pktmbuf_iova(m)
2086
2087 /**
2088  * A macro that returns the length of the packet.
2089  *
2090  * The value can be read or assigned.
2091  *
2092  * @param m
2093  *   The packet mbuf.
2094  */
2095 #define rte_pktmbuf_pkt_len(m) ((m)->pkt_len)
2096
2097 /**
2098  * A macro that returns the length of the segment.
2099  *
2100  * The value can be read or assigned.
2101  *
2102  * @param m
2103  *   The packet mbuf.
2104  */
2105 #define rte_pktmbuf_data_len(m) ((m)->data_len)
2106
2107 /**
2108  * Prepend len bytes to an mbuf data area.
2109  *
2110  * Returns a pointer to the new
2111  * data start address. If there is not enough headroom in the first
2112  * segment, the function will return NULL, without modifying the mbuf.
2113  *
2114  * @param m
2115  *   The pkt mbuf.
2116  * @param len
2117  *   The amount of data to prepend (in bytes).
2118  * @return
2119  *   A pointer to the start of the newly prepended data, or
2120  *   NULL if there is not enough headroom space in the first segment
2121  */
2122 static inline char *rte_pktmbuf_prepend(struct rte_mbuf *m,
2123                                         uint16_t len)
2124 {
2125         __rte_mbuf_sanity_check(m, 1);
2126
2127         if (unlikely(len > rte_pktmbuf_headroom(m)))
2128                 return NULL;
2129
2130         /* NB: elaborating the subtraction like this instead of using
2131          *     -= allows us to ensure the result type is uint16_t
2132          *     avoiding compiler warnings on gcc 8.1 at least */
2133         m->data_off = (uint16_t)(m->data_off - len);
2134         m->data_len = (uint16_t)(m->data_len + len);
2135         m->pkt_len  = (m->pkt_len + len);
2136
2137         return (char *)m->buf_addr + m->data_off;
2138 }
2139
2140 /**
2141  * Append len bytes to an mbuf.
2142  *
2143  * Append len bytes to an mbuf and return a pointer to the start address
2144  * of the added data. If there is not enough tailroom in the last
2145  * segment, the function will return NULL, without modifying the mbuf.
2146  *
2147  * @param m
2148  *   The packet mbuf.
2149  * @param len
2150  *   The amount of data to append (in bytes).
2151  * @return
2152  *   A pointer to the start of the newly appended data, or
2153  *   NULL if there is not enough tailroom space in the last segment
2154  */
2155 static inline char *rte_pktmbuf_append(struct rte_mbuf *m, uint16_t len)
2156 {
2157         void *tail;
2158         struct rte_mbuf *m_last;
2159
2160         __rte_mbuf_sanity_check(m, 1);
2161
2162         m_last = rte_pktmbuf_lastseg(m);
2163         if (unlikely(len > rte_pktmbuf_tailroom(m_last)))
2164                 return NULL;
2165
2166         tail = (char *)m_last->buf_addr + m_last->data_off + m_last->data_len;
2167         m_last->data_len = (uint16_t)(m_last->data_len + len);
2168         m->pkt_len  = (m->pkt_len + len);
2169         return (char*) tail;
2170 }
2171
2172 /**
2173  * Remove len bytes at the beginning of an mbuf.
2174  *
2175  * Returns a pointer to the start address of the new data area. If the
2176  * length is greater than the length of the first segment, then the
2177  * function will fail and return NULL, without modifying the mbuf.
2178  *
2179  * @param m
2180  *   The packet mbuf.
2181  * @param len
2182  *   The amount of data to remove (in bytes).
2183  * @return
2184  *   A pointer to the new start of the data.
2185  */
2186 static inline char *rte_pktmbuf_adj(struct rte_mbuf *m, uint16_t len)
2187 {
2188         __rte_mbuf_sanity_check(m, 1);
2189
2190         if (unlikely(len > m->data_len))
2191                 return NULL;
2192
2193         /* NB: elaborating the addition like this instead of using
2194          *     += allows us to ensure the result type is uint16_t
2195          *     avoiding compiler warnings on gcc 8.1 at least */
2196         m->data_len = (uint16_t)(m->data_len - len);
2197         m->data_off = (uint16_t)(m->data_off + len);
2198         m->pkt_len  = (m->pkt_len - len);
2199         return (char *)m->buf_addr + m->data_off;
2200 }
2201
2202 /**
2203  * Remove len bytes of data at the end of the mbuf.
2204  *
2205  * If the length is greater than the length of the last segment, the
2206  * function will fail and return -1 without modifying the mbuf.
2207  *
2208  * @param m
2209  *   The packet mbuf.
2210  * @param len
2211  *   The amount of data to remove (in bytes).
2212  * @return
2213  *   - 0: On success.
2214  *   - -1: On error.
2215  */
2216 static inline int rte_pktmbuf_trim(struct rte_mbuf *m, uint16_t len)
2217 {
2218         struct rte_mbuf *m_last;
2219
2220         __rte_mbuf_sanity_check(m, 1);
2221
2222         m_last = rte_pktmbuf_lastseg(m);
2223         if (unlikely(len > m_last->data_len))
2224                 return -1;
2225
2226         m_last->data_len = (uint16_t)(m_last->data_len - len);
2227         m->pkt_len  = (m->pkt_len - len);
2228         return 0;
2229 }
2230
2231 /**
2232  * Test if mbuf data is contiguous.
2233  *
2234  * @param m
2235  *   The packet mbuf.
2236  * @return
2237  *   - 1, if all data is contiguous (one segment).
2238  *   - 0, if there is several segments.
2239  */
2240 static inline int rte_pktmbuf_is_contiguous(const struct rte_mbuf *m)
2241 {
2242         __rte_mbuf_sanity_check(m, 1);
2243         return !!(m->nb_segs == 1);
2244 }
2245
2246 /**
2247  * @internal used by rte_pktmbuf_read().
2248  */
2249 const void *__rte_pktmbuf_read(const struct rte_mbuf *m, uint32_t off,
2250         uint32_t len, void *buf);
2251
2252 /**
2253  * Read len data bytes in a mbuf at specified offset.
2254  *
2255  * If the data is contiguous, return the pointer in the mbuf data, else
2256  * copy the data in the buffer provided by the user and return its
2257  * pointer.
2258  *
2259  * @param m
2260  *   The pointer to the mbuf.
2261  * @param off
2262  *   The offset of the data in the mbuf.
2263  * @param len
2264  *   The amount of bytes to read.
2265  * @param buf
2266  *   The buffer where data is copied if it is not contiguous in mbuf
2267  *   data. Its length should be at least equal to the len parameter.
2268  * @return
2269  *   The pointer to the data, either in the mbuf if it is contiguous,
2270  *   or in the user buffer. If mbuf is too small, NULL is returned.
2271  */
2272 static inline const void *rte_pktmbuf_read(const struct rte_mbuf *m,
2273         uint32_t off, uint32_t len, void *buf)
2274 {
2275         if (likely(off + len <= rte_pktmbuf_data_len(m)))
2276                 return rte_pktmbuf_mtod_offset(m, char *, off);
2277         else
2278                 return __rte_pktmbuf_read(m, off, len, buf);
2279 }
2280
2281 /**
2282  * Chain an mbuf to another, thereby creating a segmented packet.
2283  *
2284  * Note: The implementation will do a linear walk over the segments to find
2285  * the tail entry. For cases when there are many segments, it's better to
2286  * chain the entries manually.
2287  *
2288  * @param head
2289  *   The head of the mbuf chain (the first packet)
2290  * @param tail
2291  *   The mbuf to put last in the chain
2292  *
2293  * @return
2294  *   - 0, on success.
2295  *   - -EOVERFLOW, if the chain segment limit exceeded
2296  */
2297 static inline int rte_pktmbuf_chain(struct rte_mbuf *head, struct rte_mbuf *tail)
2298 {
2299         struct rte_mbuf *cur_tail;
2300
2301         /* Check for number-of-segments-overflow */
2302         if (head->nb_segs + tail->nb_segs > RTE_MBUF_MAX_NB_SEGS)
2303                 return -EOVERFLOW;
2304
2305         /* Chain 'tail' onto the old tail */
2306         cur_tail = rte_pktmbuf_lastseg(head);
2307         cur_tail->next = tail;
2308
2309         /* accumulate number of segments and total length.
2310          * NB: elaborating the addition like this instead of using
2311          *     -= allows us to ensure the result type is uint16_t
2312          *     avoiding compiler warnings on gcc 8.1 at least */
2313         head->nb_segs = (uint16_t)(head->nb_segs + tail->nb_segs);
2314         head->pkt_len += tail->pkt_len;
2315
2316         /* pkt_len is only set in the head */
2317         tail->pkt_len = tail->data_len;
2318
2319         return 0;
2320 }
2321
2322 /*
2323  * @warning
2324  * @b EXPERIMENTAL: This API may change without prior notice.
2325  *
2326  * For given input values generate raw tx_offload value.
2327  * Note that it is caller responsibility to make sure that input parameters
2328  * don't exceed maximum bit-field values.
2329  * @param il2
2330  *   l2_len value.
2331  * @param il3
2332  *   l3_len value.
2333  * @param il4
2334  *   l4_len value.
2335  * @param tso
2336  *   tso_segsz value.
2337  * @param ol3
2338  *   outer_l3_len value.
2339  * @param ol2
2340  *   outer_l2_len value.
2341  * @param unused
2342  *   unused value.
2343  * @return
2344  *   raw tx_offload value.
2345  */
2346 static __rte_always_inline uint64_t
2347 rte_mbuf_tx_offload(uint64_t il2, uint64_t il3, uint64_t il4, uint64_t tso,
2348         uint64_t ol3, uint64_t ol2, uint64_t unused)
2349 {
2350         return il2 << RTE_MBUF_L2_LEN_OFS |
2351                 il3 << RTE_MBUF_L3_LEN_OFS |
2352                 il4 << RTE_MBUF_L4_LEN_OFS |
2353                 tso << RTE_MBUF_TSO_SEGSZ_OFS |
2354                 ol3 << RTE_MBUF_OUTL3_LEN_OFS |
2355                 ol2 << RTE_MBUF_OUTL2_LEN_OFS |
2356                 unused << RTE_MBUF_TXOFLD_UNUSED_OFS;
2357 }
2358
2359 /**
2360  * Validate general requirements for Tx offload in mbuf.
2361  *
2362  * This function checks correctness and completeness of Tx offload settings.
2363  *
2364  * @param m
2365  *   The packet mbuf to be validated.
2366  * @return
2367  *   0 if packet is valid
2368  */
2369 static inline int
2370 rte_validate_tx_offload(const struct rte_mbuf *m)
2371 {
2372         uint64_t ol_flags = m->ol_flags;
2373
2374         /* Does packet set any of available offloads? */
2375         if (!(ol_flags & PKT_TX_OFFLOAD_MASK))
2376                 return 0;
2377
2378         /* IP checksum can be counted only for IPv4 packet */
2379         if ((ol_flags & PKT_TX_IP_CKSUM) && (ol_flags & PKT_TX_IPV6))
2380                 return -EINVAL;
2381
2382         /* IP type not set when required */
2383         if (ol_flags & (PKT_TX_L4_MASK | PKT_TX_TCP_SEG))
2384                 if (!(ol_flags & (PKT_TX_IPV4 | PKT_TX_IPV6)))
2385                         return -EINVAL;
2386
2387         /* Check requirements for TSO packet */
2388         if (ol_flags & PKT_TX_TCP_SEG)
2389                 if ((m->tso_segsz == 0) ||
2390                                 ((ol_flags & PKT_TX_IPV4) &&
2391                                 !(ol_flags & PKT_TX_IP_CKSUM)))
2392                         return -EINVAL;
2393
2394         /* PKT_TX_OUTER_IP_CKSUM set for non outer IPv4 packet. */
2395         if ((ol_flags & PKT_TX_OUTER_IP_CKSUM) &&
2396                         !(ol_flags & PKT_TX_OUTER_IPV4))
2397                 return -EINVAL;
2398
2399         return 0;
2400 }
2401
2402 /**
2403  * @internal used by rte_pktmbuf_linearize().
2404  */
2405 int __rte_pktmbuf_linearize(struct rte_mbuf *mbuf);
2406
2407 /**
2408  * Linearize data in mbuf.
2409  *
2410  * This function moves the mbuf data in the first segment if there is enough
2411  * tailroom. The subsequent segments are unchained and freed.
2412  *
2413  * @param mbuf
2414  *   mbuf to linearize
2415  * @return
2416  *   - 0, on success
2417  *   - -1, on error
2418  */
2419 static inline int
2420 rte_pktmbuf_linearize(struct rte_mbuf *mbuf)
2421 {
2422         if (rte_pktmbuf_is_contiguous(mbuf))
2423                 return 0;
2424         return __rte_pktmbuf_linearize(mbuf);
2425 }
2426
2427 /**
2428  * Dump an mbuf structure to a file.
2429  *
2430  * Dump all fields for the given packet mbuf and all its associated
2431  * segments (in the case of a chained buffer).
2432  *
2433  * @param f
2434  *   A pointer to a file for output
2435  * @param m
2436  *   The packet mbuf.
2437  * @param dump_len
2438  *   If dump_len != 0, also dump the "dump_len" first data bytes of
2439  *   the packet.
2440  */
2441 void rte_pktmbuf_dump(FILE *f, const struct rte_mbuf *m, unsigned dump_len);
2442
2443 /**
2444  * Get the value of mbuf sched queue_id field.
2445  */
2446 static inline uint32_t
2447 rte_mbuf_sched_queue_get(const struct rte_mbuf *m)
2448 {
2449         return m->hash.sched.queue_id;
2450 }
2451
2452 /**
2453  * Get the value of mbuf sched traffic_class field.
2454  */
2455 static inline uint8_t
2456 rte_mbuf_sched_traffic_class_get(const struct rte_mbuf *m)
2457 {
2458         return m->hash.sched.traffic_class;
2459 }
2460
2461 /**
2462  * Get the value of mbuf sched color field.
2463  */
2464 static inline uint8_t
2465 rte_mbuf_sched_color_get(const struct rte_mbuf *m)
2466 {
2467         return m->hash.sched.color;
2468 }
2469
2470 /**
2471  * Get the values of mbuf sched queue_id, traffic_class and color.
2472  *
2473  * @param m
2474  *   Mbuf to read
2475  * @param queue_id
2476  *  Returns the queue id
2477  * @param traffic_class
2478  *  Returns the traffic class id
2479  * @param color
2480  *  Returns the colour id
2481  */
2482 static inline void
2483 rte_mbuf_sched_get(const struct rte_mbuf *m, uint32_t *queue_id,
2484                         uint8_t *traffic_class,
2485                         uint8_t *color)
2486 {
2487         struct rte_mbuf_sched sched = m->hash.sched;
2488
2489         *queue_id = sched.queue_id;
2490         *traffic_class = sched.traffic_class;
2491         *color = sched.color;
2492 }
2493
2494 /**
2495  * Set the mbuf sched queue_id to the defined value.
2496  */
2497 static inline void
2498 rte_mbuf_sched_queue_set(struct rte_mbuf *m, uint32_t queue_id)
2499 {
2500         m->hash.sched.queue_id = queue_id;
2501 }
2502
2503 /**
2504  * Set the mbuf sched traffic_class id to the defined value.
2505  */
2506 static inline void
2507 rte_mbuf_sched_traffic_class_set(struct rte_mbuf *m, uint8_t traffic_class)
2508 {
2509         m->hash.sched.traffic_class = traffic_class;
2510 }
2511
2512 /**
2513  * Set the mbuf sched color id to the defined value.
2514  */
2515 static inline void
2516 rte_mbuf_sched_color_set(struct rte_mbuf *m, uint8_t color)
2517 {
2518         m->hash.sched.color = color;
2519 }
2520
2521 /**
2522  * Set the mbuf sched queue_id, traffic_class and color.
2523  *
2524  * @param m
2525  *   Mbuf to set
2526  * @param queue_id
2527  *  Queue id value to be set
2528  * @param traffic_class
2529  *  Traffic class id value to be set
2530  * @param color
2531  *  Color id to be set
2532  */
2533 static inline void
2534 rte_mbuf_sched_set(struct rte_mbuf *m, uint32_t queue_id,
2535                         uint8_t traffic_class,
2536                         uint8_t color)
2537 {
2538         m->hash.sched = (struct rte_mbuf_sched){
2539                                 .queue_id = queue_id,
2540                                 .traffic_class = traffic_class,
2541                                 .color = color,
2542                                 .reserved = 0,
2543                         };
2544 }
2545
2546 #ifdef __cplusplus
2547 }
2548 #endif
2549
2550 #endif /* _RTE_MBUF_H_ */