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