mbuf: redefine packet type
[dpdk.git] / lib / librte_mbuf / rte_mbuf.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   Copyright 2014 6WIND S.A.
6  *   All rights reserved.
7  *
8  *   Redistribution and use in source and binary forms, with or without
9  *   modification, are permitted provided that the following conditions
10  *   are met:
11  *
12  *     * Redistributions of source code must retain the above copyright
13  *       notice, this list of conditions and the following disclaimer.
14  *     * Redistributions in binary form must reproduce the above copyright
15  *       notice, this list of conditions and the following disclaimer in
16  *       the documentation and/or other materials provided with the
17  *       distribution.
18  *     * Neither the name of Intel Corporation nor the names of its
19  *       contributors may be used to endorse or promote products derived
20  *       from this software without specific prior written permission.
21  *
22  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33  */
34
35 #ifndef _RTE_MBUF_H_
36 #define _RTE_MBUF_H_
37
38 /**
39  * @file
40  * RTE Mbuf
41  *
42  * The mbuf library provides the ability to create and destroy buffers
43  * that may be used by the RTE application to store message
44  * buffers. The message buffers are stored in a mempool, using the
45  * RTE mempool library.
46  *
47  * This library provide an API to allocate/free packet mbufs, which are
48  * used to carry network packets.
49  *
50  * To understand the concepts of packet buffers or mbufs, you
51  * should read "TCP/IP Illustrated, Volume 2: The Implementation,
52  * Addison-Wesley, 1995, ISBN 0-201-63354-X from Richard Stevens"
53  * http://www.kohala.com/start/tcpipiv2.html
54  */
55
56 #include <stdint.h>
57 #include <rte_common.h>
58 #include <rte_mempool.h>
59 #include <rte_memory.h>
60 #include <rte_atomic.h>
61 #include <rte_prefetch.h>
62 #include <rte_branch_prediction.h>
63
64 #ifdef __cplusplus
65 extern "C" {
66 #endif
67
68 /* deprecated options */
69 #pragma GCC poison RTE_MBUF_SCATTER_GATHER
70 #pragma GCC poison RTE_MBUF_REFCNT
71
72 /*
73  * Packet Offload Features Flags. It also carry packet type information.
74  * Critical resources. Both rx/tx shared these bits. Be cautious on any change
75  *
76  * - RX flags start at bit position zero, and get added to the left of previous
77  *   flags.
78  * - The most-significant 8 bits are reserved for generic mbuf flags
79  * - TX flags therefore start at bit position 55 (i.e. 63-8), and new flags get
80  *   added to the right of the previously defined flags
81  *
82  * Keep these flags synchronized with rte_get_rx_ol_flag_name() and
83  * rte_get_tx_ol_flag_name().
84  */
85 #define PKT_RX_VLAN_PKT      (1ULL << 0)  /**< RX packet is a 802.1q VLAN packet. */
86 #define PKT_RX_RSS_HASH      (1ULL << 1)  /**< RX packet with RSS hash result. */
87 #define PKT_RX_FDIR          (1ULL << 2)  /**< RX packet with FDIR match indicate. */
88 #define PKT_RX_L4_CKSUM_BAD  (1ULL << 3)  /**< L4 cksum of RX pkt. is not OK. */
89 #define PKT_RX_IP_CKSUM_BAD  (1ULL << 4)  /**< IP cksum of RX pkt. is not OK. */
90 #define PKT_RX_EIP_CKSUM_BAD (0ULL << 0)  /**< External IP header checksum error. */
91 #define PKT_RX_OVERSIZE      (0ULL << 0)  /**< Num of desc of an RX pkt oversize. */
92 #define PKT_RX_HBUF_OVERFLOW (0ULL << 0)  /**< Header buffer overflow. */
93 #define PKT_RX_RECIP_ERR     (0ULL << 0)  /**< Hardware processing error. */
94 #define PKT_RX_MAC_ERR       (0ULL << 0)  /**< MAC error. */
95 #define PKT_RX_IPV4_HDR      (1ULL << 5)  /**< RX packet with IPv4 header. */
96 #define PKT_RX_IPV4_HDR_EXT  (1ULL << 6)  /**< RX packet with extended IPv4 header. */
97 #define PKT_RX_IPV6_HDR      (1ULL << 7)  /**< RX packet with IPv6 header. */
98 #define PKT_RX_IPV6_HDR_EXT  (1ULL << 8)  /**< RX packet with extended IPv6 header. */
99 #define PKT_RX_IEEE1588_PTP  (1ULL << 9)  /**< RX IEEE1588 L2 Ethernet PT Packet. */
100 #define PKT_RX_IEEE1588_TMST (1ULL << 10) /**< RX IEEE1588 L2/L4 timestamped packet.*/
101 #define PKT_RX_TUNNEL_IPV4_HDR (1ULL << 11) /**< RX tunnel packet with IPv4 header.*/
102 #define PKT_RX_TUNNEL_IPV6_HDR (1ULL << 12) /**< RX tunnel packet with IPv6 header. */
103 #define PKT_RX_FDIR_ID       (1ULL << 13) /**< FD id reported if FDIR match. */
104 #define PKT_RX_FDIR_FLX      (1ULL << 14) /**< Flexible bytes reported if FDIR match. */
105 #define PKT_RX_QINQ_PKT      (1ULL << 15)  /**< RX packet with double VLAN stripped. */
106 /* add new RX flags here */
107
108 /* add new TX flags here */
109
110 /**
111  * Second VLAN insertion (QinQ) flag.
112  */
113 #define PKT_TX_QINQ_PKT    (1ULL << 49)   /**< TX packet with double VLAN inserted. */
114
115 /**
116  * TCP segmentation offload. To enable this offload feature for a
117  * packet to be transmitted on hardware supporting TSO:
118  *  - set the PKT_TX_TCP_SEG flag in mbuf->ol_flags (this flag implies
119  *    PKT_TX_TCP_CKSUM)
120  *  - set the flag PKT_TX_IPV4 or PKT_TX_IPV6
121  *  - if it's IPv4, set the PKT_TX_IP_CKSUM flag and write the IP checksum
122  *    to 0 in the packet
123  *  - fill the mbuf offload information: l2_len, l3_len, l4_len, tso_segsz
124  *  - calculate the pseudo header checksum without taking ip_len in account,
125  *    and set it in the TCP header. Refer to rte_ipv4_phdr_cksum() and
126  *    rte_ipv6_phdr_cksum() that can be used as helpers.
127  */
128 #define PKT_TX_TCP_SEG       (1ULL << 50)
129
130 #define PKT_TX_IEEE1588_TMST (1ULL << 51) /**< TX IEEE1588 packet to timestamp. */
131
132 /**
133  * Bits 52+53 used for L4 packet type with checksum enabled: 00: Reserved,
134  * 01: TCP checksum, 10: SCTP checksum, 11: UDP checksum. To use hardware
135  * L4 checksum offload, the user needs to:
136  *  - fill l2_len and l3_len in mbuf
137  *  - set the flags PKT_TX_TCP_CKSUM, PKT_TX_SCTP_CKSUM or PKT_TX_UDP_CKSUM
138  *  - set the flag PKT_TX_IPV4 or PKT_TX_IPV6
139  *  - calculate the pseudo header checksum and set it in the L4 header (only
140  *    for TCP or UDP). See rte_ipv4_phdr_cksum() and rte_ipv6_phdr_cksum().
141  *    For SCTP, set the crc field to 0.
142  */
143 #define PKT_TX_L4_NO_CKSUM   (0ULL << 52) /**< Disable L4 cksum of TX pkt. */
144 #define PKT_TX_TCP_CKSUM     (1ULL << 52) /**< TCP cksum of TX pkt. computed by NIC. */
145 #define PKT_TX_SCTP_CKSUM    (2ULL << 52) /**< SCTP cksum of TX pkt. computed by NIC. */
146 #define PKT_TX_UDP_CKSUM     (3ULL << 52) /**< UDP cksum of TX pkt. computed by NIC. */
147 #define PKT_TX_L4_MASK       (3ULL << 52) /**< Mask for L4 cksum offload request. */
148
149 /**
150  * Offload the IP checksum in the hardware. The flag PKT_TX_IPV4 should
151  * also be set by the application, although a PMD will only check
152  * PKT_TX_IP_CKSUM.
153  *  - set the IP checksum field in the packet to 0
154  *  - fill the mbuf offload information: l2_len, l3_len
155  */
156 #define PKT_TX_IP_CKSUM      (1ULL << 54)
157
158 /**
159  * Packet is IPv4. This flag must be set when using any offload feature
160  * (TSO, L3 or L4 checksum) to tell the NIC that the packet is an IPv4
161  * packet. If the packet is a tunneled packet, this flag is related to
162  * the inner headers.
163  */
164 #define PKT_TX_IPV4          (1ULL << 55)
165
166 /**
167  * Packet is IPv6. This flag must be set when using an offload feature
168  * (TSO or L4 checksum) to tell the NIC that the packet is an IPv6
169  * packet. If the packet is a tunneled packet, this flag is related to
170  * the inner headers.
171  */
172 #define PKT_TX_IPV6          (1ULL << 56)
173
174 #define PKT_TX_VLAN_PKT      (1ULL << 57) /**< TX packet is a 802.1q VLAN packet. */
175
176 /**
177  * Offload the IP checksum of an external header in the hardware. The
178  * flag PKT_TX_OUTER_IPV4 should also be set by the application, alto ugh
179  * a PMD will only check PKT_TX_IP_CKSUM.  The IP checksum field in the
180  * packet must be set to 0.
181  *  - set the outer IP checksum field in the packet to 0
182  *  - fill the mbuf offload information: outer_l2_len, outer_l3_len
183  */
184 #define PKT_TX_OUTER_IP_CKSUM   (1ULL << 58)
185
186 /**
187  * Packet outer header is IPv4. This flag must be set when using any
188  * outer offload feature (L3 or L4 checksum) to tell the NIC that the
189  * outer header of the tunneled packet is an IPv4 packet.
190  */
191 #define PKT_TX_OUTER_IPV4   (1ULL << 59)
192
193 /**
194  * Packet outer header is IPv6. This flag must be set when using any
195  * outer offload feature (L4 checksum) to tell the NIC that the outer
196  * header of the tunneled packet is an IPv6 packet.
197  */
198 #define PKT_TX_OUTER_IPV6    (1ULL << 60)
199
200 #define IND_ATTACHED_MBUF    (1ULL << 62) /**< Indirect attached mbuf */
201
202 /* Use final bit of flags to indicate a control mbuf */
203 #define CTRL_MBUF_FLAG       (1ULL << 63) /**< Mbuf contains control data */
204
205 /**
206  * Get the name of a RX offload flag
207  *
208  * @param mask
209  *   The mask describing the flag.
210  * @return
211  *   The name of this flag, or NULL if it's not a valid RX flag.
212  */
213 const char *rte_get_rx_ol_flag_name(uint64_t mask);
214
215 /**
216  * Get the name of a TX offload flag
217  *
218  * @param mask
219  *   The mask describing the flag. Usually only one bit must be set.
220  *   Several bits can be given if they belong to the same mask.
221  *   Ex: PKT_TX_L4_MASK.
222  * @return
223  *   The name of this flag, or NULL if it's not a valid TX flag.
224  */
225 const char *rte_get_tx_ol_flag_name(uint64_t mask);
226
227 /**
228  * Some NICs need at least 2KB buffer to RX standard Ethernet frame without
229  * splitting it into multiple segments.
230  * So, for mbufs that planned to be involved into RX/TX, the recommended
231  * minimal buffer length is 2KB + RTE_PKTMBUF_HEADROOM.
232  */
233 #define RTE_MBUF_DEFAULT_DATAROOM       2048
234 #define RTE_MBUF_DEFAULT_BUF_SIZE       \
235         (RTE_MBUF_DEFAULT_DATAROOM + RTE_PKTMBUF_HEADROOM)
236
237 /* define a set of marker types that can be used to refer to set points in the
238  * mbuf */
239 typedef void    *MARKER[0];   /**< generic marker for a point in a structure */
240 typedef uint8_t  MARKER8[0];  /**< generic marker with 1B alignment */
241 typedef uint64_t MARKER64[0]; /**< marker that allows us to overwrite 8 bytes
242                                * with a single assignment */
243
244 /**
245  * The generic rte_mbuf, containing a packet mbuf.
246  */
247 struct rte_mbuf {
248         MARKER cacheline0;
249
250         void *buf_addr;           /**< Virtual address of segment buffer. */
251         phys_addr_t buf_physaddr; /**< Physical address of segment buffer. */
252
253         uint16_t buf_len;         /**< Length of segment buffer. */
254
255         /* next 6 bytes are initialised on RX descriptor rearm */
256         MARKER8 rearm_data;
257         uint16_t data_off;
258
259         /**
260          * 16-bit Reference counter.
261          * It should only be accessed using the following functions:
262          * rte_mbuf_refcnt_update(), rte_mbuf_refcnt_read(), and
263          * rte_mbuf_refcnt_set(). The functionality of these functions (atomic,
264          * or non-atomic) is controlled by the CONFIG_RTE_MBUF_REFCNT_ATOMIC
265          * config option.
266          */
267         union {
268                 rte_atomic16_t refcnt_atomic; /**< Atomically accessed refcnt */
269                 uint16_t refcnt;              /**< Non-atomically accessed refcnt */
270         };
271         uint8_t nb_segs;          /**< Number of segments. */
272         uint8_t port;             /**< Input port. */
273
274         uint64_t ol_flags;        /**< Offload features. */
275
276         /* remaining bytes are set on RX when pulling packet from descriptor */
277         MARKER rx_descriptor_fields1;
278
279 #ifdef RTE_NEXT_ABI
280         /*
281          * The packet type, which is the combination of outer/inner L2, L3, L4
282          * and tunnel types.
283          */
284         union {
285                 uint32_t packet_type; /**< L2/L3/L4 and tunnel information. */
286                 struct {
287                         uint32_t l2_type:4; /**< (Outer) L2 type. */
288                         uint32_t l3_type:4; /**< (Outer) L3 type. */
289                         uint32_t l4_type:4; /**< (Outer) L4 type. */
290                         uint32_t tun_type:4; /**< Tunnel type. */
291                         uint32_t inner_l2_type:4; /**< Inner L2 type. */
292                         uint32_t inner_l3_type:4; /**< Inner L3 type. */
293                         uint32_t inner_l4_type:4; /**< Inner L4 type. */
294                 };
295         };
296
297         uint32_t pkt_len;         /**< Total pkt len: sum of all segments. */
298         uint16_t data_len;        /**< Amount of data in segment buffer. */
299         uint16_t vlan_tci;        /**< VLAN Tag Control Identifier (CPU order) */
300 #else /* RTE_NEXT_ABI */
301         /**
302          * The packet type, which is used to indicate ordinary packet and also
303          * tunneled packet format, i.e. each number is represented a type of
304          * packet.
305          */
306         uint16_t packet_type;
307
308         uint16_t data_len;        /**< Amount of data in segment buffer. */
309         uint32_t pkt_len;         /**< Total pkt len: sum of all segments. */
310         uint16_t vlan_tci;        /**< VLAN Tag Control Identifier (CPU order) */
311         uint16_t vlan_tci_outer;  /**< Outer VLAN Tag Control Identifier (CPU order) */
312 #endif /* RTE_NEXT_ABI */
313         union {
314                 uint32_t rss;     /**< RSS hash result if RSS enabled */
315                 struct {
316                         union {
317                                 struct {
318                                         uint16_t hash;
319                                         uint16_t id;
320                                 };
321                                 uint32_t lo;
322                                 /**< Second 4 flexible bytes */
323                         };
324                         uint32_t hi;
325                         /**< First 4 flexible bytes or FD ID, dependent on
326                              PKT_RX_FDIR_* flag in ol_flags. */
327                 } fdir;           /**< Filter identifier if FDIR enabled */
328                 uint32_t sched;   /**< Hierarchical scheduler */
329                 uint32_t usr;     /**< User defined tags. See rte_distributor_process() */
330         } hash;                   /**< hash information */
331
332         uint32_t seqn; /**< Sequence number. See also rte_reorder_insert() */
333 #ifdef RTE_NEXT_ABI
334         uint16_t vlan_tci_outer;  /**< Outer VLAN Tag Control Identifier (CPU order) */
335 #endif /* RTE_NEXT_ABI */
336
337         /* second cache line - fields only used in slow path or on TX */
338         MARKER cacheline1 __rte_cache_aligned;
339
340         union {
341                 void *userdata;   /**< Can be used for external metadata */
342                 uint64_t udata64; /**< Allow 8-byte userdata on 32-bit */
343         };
344
345         struct rte_mempool *pool; /**< Pool from which mbuf was allocated. */
346         struct rte_mbuf *next;    /**< Next segment of scattered packet. */
347
348         /* fields to support TX offloads */
349         union {
350                 uint64_t tx_offload;       /**< combined for easy fetch */
351                 struct {
352                         uint64_t l2_len:7; /**< L2 (MAC) Header Length. */
353                         uint64_t l3_len:9; /**< L3 (IP) Header Length. */
354                         uint64_t l4_len:8; /**< L4 (TCP/UDP) Header Length. */
355                         uint64_t tso_segsz:16; /**< TCP TSO segment size */
356
357                         /* fields for TX offloading of tunnels */
358                         uint64_t outer_l3_len:9; /**< Outer L3 (IP) Hdr Length. */
359                         uint64_t outer_l2_len:7; /**< Outer L2 (MAC) Hdr Length. */
360
361                         /* uint64_t unused:8; */
362                 };
363         };
364
365         /** Size of the application private data. In case of an indirect
366          * mbuf, it stores the direct mbuf private data size. */
367         uint16_t priv_size;
368
369         /** Timesync flags for use with IEEE1588. */
370         uint16_t timesync;
371 } __rte_cache_aligned;
372
373 static inline uint16_t rte_pktmbuf_priv_size(struct rte_mempool *mp);
374
375 /**
376  * Return the mbuf owning the data buffer address of an indirect mbuf.
377  *
378  * @param mi
379  *   The pointer to the indirect mbuf.
380  * @return
381  *   The address of the direct mbuf corresponding to buffer_addr.
382  */
383 static inline struct rte_mbuf *
384 rte_mbuf_from_indirect(struct rte_mbuf *mi)
385 {
386         return RTE_PTR_SUB(mi->buf_addr, sizeof(*mi) + mi->priv_size);
387 }
388
389 /**
390  * Return the buffer address embedded in the given mbuf.
391  *
392  * @param md
393  *   The pointer to the mbuf.
394  * @return
395  *   The address of the data buffer owned by the mbuf.
396  */
397 static inline char *
398 rte_mbuf_to_baddr(struct rte_mbuf *md)
399 {
400         char *buffer_addr;
401         buffer_addr = (char *)md + sizeof(*md) + rte_pktmbuf_priv_size(md->pool);
402         return buffer_addr;
403 }
404
405 /**
406  * Returns TRUE if given mbuf is indirect, or FALSE otherwise.
407  */
408 #define RTE_MBUF_INDIRECT(mb)   ((mb)->ol_flags & IND_ATTACHED_MBUF)
409
410 /**
411  * Returns TRUE if given mbuf is direct, or FALSE otherwise.
412  */
413 #define RTE_MBUF_DIRECT(mb)     (!RTE_MBUF_INDIRECT(mb))
414
415 /**
416  * Private data in case of pktmbuf pool.
417  *
418  * A structure that contains some pktmbuf_pool-specific data that are
419  * appended after the mempool structure (in private data).
420  */
421 struct rte_pktmbuf_pool_private {
422         uint16_t mbuf_data_room_size; /**< Size of data space in each mbuf. */
423         uint16_t mbuf_priv_size;      /**< Size of private area in each mbuf. */
424 };
425
426 #ifdef RTE_LIBRTE_MBUF_DEBUG
427
428 /**  check mbuf type in debug mode */
429 #define __rte_mbuf_sanity_check(m, is_h) rte_mbuf_sanity_check(m, is_h)
430
431 /**  check mbuf type in debug mode if mbuf pointer is not null */
432 #define __rte_mbuf_sanity_check_raw(m, is_h)    do {       \
433         if ((m) != NULL)                                   \
434                 rte_mbuf_sanity_check(m, is_h);          \
435 } while (0)
436
437 /**  MBUF asserts in debug mode */
438 #define RTE_MBUF_ASSERT(exp)                                         \
439 if (!(exp)) {                                                        \
440         rte_panic("line%d\tassert \"" #exp "\" failed\n", __LINE__); \
441 }
442
443 #else /*  RTE_LIBRTE_MBUF_DEBUG */
444
445 /**  check mbuf type in debug mode */
446 #define __rte_mbuf_sanity_check(m, is_h) do { } while (0)
447
448 /**  check mbuf type in debug mode if mbuf pointer is not null */
449 #define __rte_mbuf_sanity_check_raw(m, is_h) do { } while (0)
450
451 /**  MBUF asserts in debug mode */
452 #define RTE_MBUF_ASSERT(exp)                do { } while (0)
453
454 #endif /*  RTE_LIBRTE_MBUF_DEBUG */
455
456 #ifdef RTE_MBUF_REFCNT_ATOMIC
457
458 /**
459  * Reads the value of an mbuf's refcnt.
460  * @param m
461  *   Mbuf to read
462  * @return
463  *   Reference count number.
464  */
465 static inline uint16_t
466 rte_mbuf_refcnt_read(const struct rte_mbuf *m)
467 {
468         return (uint16_t)(rte_atomic16_read(&m->refcnt_atomic));
469 }
470
471 /**
472  * Sets an mbuf's refcnt to a defined value.
473  * @param m
474  *   Mbuf to update
475  * @param new_value
476  *   Value set
477  */
478 static inline void
479 rte_mbuf_refcnt_set(struct rte_mbuf *m, uint16_t new_value)
480 {
481         rte_atomic16_set(&m->refcnt_atomic, new_value);
482 }
483
484 /**
485  * Adds given value to an mbuf's refcnt and returns its new value.
486  * @param m
487  *   Mbuf to update
488  * @param value
489  *   Value to add/subtract
490  * @return
491  *   Updated value
492  */
493 static inline uint16_t
494 rte_mbuf_refcnt_update(struct rte_mbuf *m, int16_t value)
495 {
496         /*
497          * The atomic_add is an expensive operation, so we don't want to
498          * call it in the case where we know we are the uniq holder of
499          * this mbuf (i.e. ref_cnt == 1). Otherwise, an atomic
500          * operation has to be used because concurrent accesses on the
501          * reference counter can occur.
502          */
503         if (likely(rte_mbuf_refcnt_read(m) == 1)) {
504                 rte_mbuf_refcnt_set(m, 1 + value);
505                 return 1 + value;
506         }
507
508         return (uint16_t)(rte_atomic16_add_return(&m->refcnt_atomic, value));
509 }
510
511 #else /* ! RTE_MBUF_REFCNT_ATOMIC */
512
513 /**
514  * Adds given value to an mbuf's refcnt and returns its new value.
515  */
516 static inline uint16_t
517 rte_mbuf_refcnt_update(struct rte_mbuf *m, int16_t value)
518 {
519         m->refcnt = (uint16_t)(m->refcnt + value);
520         return m->refcnt;
521 }
522
523 /**
524  * Reads the value of an mbuf's refcnt.
525  */
526 static inline uint16_t
527 rte_mbuf_refcnt_read(const struct rte_mbuf *m)
528 {
529         return m->refcnt;
530 }
531
532 /**
533  * Sets an mbuf's refcnt to the defined value.
534  */
535 static inline void
536 rte_mbuf_refcnt_set(struct rte_mbuf *m, uint16_t new_value)
537 {
538         m->refcnt = new_value;
539 }
540
541 #endif /* RTE_MBUF_REFCNT_ATOMIC */
542
543 /** Mbuf prefetch */
544 #define RTE_MBUF_PREFETCH_TO_FREE(m) do {       \
545         if ((m) != NULL)                        \
546                 rte_prefetch0(m);               \
547 } while (0)
548
549
550 /**
551  * Sanity checks on an mbuf.
552  *
553  * Check the consistency of the given mbuf. The function will cause a
554  * panic if corruption is detected.
555  *
556  * @param m
557  *   The mbuf to be checked.
558  * @param is_header
559  *   True if the mbuf is a packet header, false if it is a sub-segment
560  *   of a packet (in this case, some fields like nb_segs are not checked)
561  */
562 void
563 rte_mbuf_sanity_check(const struct rte_mbuf *m, int is_header);
564
565 /**
566  * @internal Allocate a new mbuf from mempool *mp*.
567  * The use of that function is reserved for RTE internal needs.
568  * Please use rte_pktmbuf_alloc().
569  *
570  * @param mp
571  *   The mempool from which mbuf is allocated.
572  * @return
573  *   - The pointer to the new mbuf on success.
574  *   - NULL if allocation failed.
575  */
576 static inline struct rte_mbuf *__rte_mbuf_raw_alloc(struct rte_mempool *mp)
577 {
578         struct rte_mbuf *m;
579         void *mb = NULL;
580         if (rte_mempool_get(mp, &mb) < 0)
581                 return NULL;
582         m = (struct rte_mbuf *)mb;
583         RTE_MBUF_ASSERT(rte_mbuf_refcnt_read(m) == 0);
584         rte_mbuf_refcnt_set(m, 1);
585         return m;
586 }
587
588 /**
589  * @internal Put mbuf back into its original mempool.
590  * The use of that function is reserved for RTE internal needs.
591  * Please use rte_pktmbuf_free().
592  *
593  * @param m
594  *   The mbuf to be freed.
595  */
596 static inline void __attribute__((always_inline))
597 __rte_mbuf_raw_free(struct rte_mbuf *m)
598 {
599         RTE_MBUF_ASSERT(rte_mbuf_refcnt_read(m) == 0);
600         rte_mempool_put(m->pool, m);
601 }
602
603 /* Operations on ctrl mbuf */
604
605 /**
606  * The control mbuf constructor.
607  *
608  * This function initializes some fields in an mbuf structure that are
609  * not modified by the user once created (mbuf type, origin pool, buffer
610  * start address, and so on). This function is given as a callback function
611  * to rte_mempool_create() at pool creation time.
612  *
613  * @param mp
614  *   The mempool from which the mbuf is allocated.
615  * @param opaque_arg
616  *   A pointer that can be used by the user to retrieve useful information
617  *   for mbuf initialization. This pointer comes from the ``init_arg``
618  *   parameter of rte_mempool_create().
619  * @param m
620  *   The mbuf to initialize.
621  * @param i
622  *   The index of the mbuf in the pool table.
623  */
624 void rte_ctrlmbuf_init(struct rte_mempool *mp, void *opaque_arg,
625                 void *m, unsigned i);
626
627 /**
628  * Allocate a new mbuf (type is ctrl) from mempool *mp*.
629  *
630  * This new mbuf is initialized with data pointing to the beginning of
631  * buffer, and with a length of zero.
632  *
633  * @param mp
634  *   The mempool from which the mbuf is allocated.
635  * @return
636  *   - The pointer to the new mbuf on success.
637  *   - NULL if allocation failed.
638  */
639 #define rte_ctrlmbuf_alloc(mp) rte_pktmbuf_alloc(mp)
640
641 /**
642  * Free a control mbuf back into its original mempool.
643  *
644  * @param m
645  *   The control mbuf to be freed.
646  */
647 #define rte_ctrlmbuf_free(m) rte_pktmbuf_free(m)
648
649 /**
650  * A macro that returns the pointer to the carried data.
651  *
652  * The value that can be read or assigned.
653  *
654  * @param m
655  *   The control mbuf.
656  */
657 #define rte_ctrlmbuf_data(m) ((char *)((m)->buf_addr) + (m)->data_off)
658
659 /**
660  * A macro that returns the length of the carried data.
661  *
662  * The value that can be read or assigned.
663  *
664  * @param m
665  *   The control mbuf.
666  */
667 #define rte_ctrlmbuf_len(m) rte_pktmbuf_data_len(m)
668
669 /**
670  * Tests if an mbuf is a control mbuf
671  *
672  * @param m
673  *   The mbuf to be tested
674  * @return
675  *   - True (1) if the mbuf is a control mbuf
676  *   - False(0) otherwise
677  */
678 static inline int
679 rte_is_ctrlmbuf(struct rte_mbuf *m)
680 {
681         return !!(m->ol_flags & CTRL_MBUF_FLAG);
682 }
683
684 /* Operations on pkt mbuf */
685
686 /**
687  * The packet mbuf constructor.
688  *
689  * This function initializes some fields in the mbuf structure that are
690  * not modified by the user once created (origin pool, buffer start
691  * address, and so on). This function is given as a callback function to
692  * rte_mempool_create() at pool creation time.
693  *
694  * @param mp
695  *   The mempool from which mbufs originate.
696  * @param opaque_arg
697  *   A pointer that can be used by the user to retrieve useful information
698  *   for mbuf initialization. This pointer comes from the ``init_arg``
699  *   parameter of rte_mempool_create().
700  * @param m
701  *   The mbuf to initialize.
702  * @param i
703  *   The index of the mbuf in the pool table.
704  */
705 void rte_pktmbuf_init(struct rte_mempool *mp, void *opaque_arg,
706                       void *m, unsigned i);
707
708
709 /**
710  * A  packet mbuf pool constructor.
711  *
712  * This function initializes the mempool private data in the case of a
713  * pktmbuf pool. This private data is needed by the driver. The
714  * function is given as a callback function to rte_mempool_create() at
715  * pool creation. It can be extended by the user, for example, to
716  * provide another packet size.
717  *
718  * @param mp
719  *   The mempool from which mbufs originate.
720  * @param opaque_arg
721  *   A pointer that can be used by the user to retrieve useful information
722  *   for mbuf initialization. This pointer comes from the ``init_arg``
723  *   parameter of rte_mempool_create().
724  */
725 void rte_pktmbuf_pool_init(struct rte_mempool *mp, void *opaque_arg);
726
727 /**
728  * Create a mbuf pool.
729  *
730  * This function creates and initializes a packet mbuf pool. It is
731  * a wrapper to rte_mempool_create() with the proper packet constructor
732  * and mempool constructor.
733  *
734  * @param name
735  *   The name of the mbuf pool.
736  * @param n
737  *   The number of elements in the mbuf pool. The optimum size (in terms
738  *   of memory usage) for a mempool is when n is a power of two minus one:
739  *   n = (2^q - 1).
740  * @param cache_size
741  *   Size of the per-core object cache. See rte_mempool_create() for
742  *   details.
743  * @param priv_size
744  *   Size of application private are between the rte_mbuf structure
745  *   and the data buffer.
746  * @param data_room_size
747  *   Size of data buffer in each mbuf, including RTE_PKTMBUF_HEADROOM.
748  * @param socket_id
749  *   The socket identifier where the memory should be allocated. The
750  *   value can be *SOCKET_ID_ANY* if there is no NUMA constraint for the
751  *   reserved zone.
752  * @return
753  *   The pointer to the new allocated mempool, on success. NULL on error
754  *   with rte_errno set appropriately. Possible rte_errno values include:
755  *    - E_RTE_NO_CONFIG - function could not get pointer to rte_config structure
756  *    - E_RTE_SECONDARY - function was called from a secondary process instance
757  *    - EINVAL - cache size provided is too large
758  *    - ENOSPC - the maximum number of memzones has already been allocated
759  *    - EEXIST - a memzone with the same name already exists
760  *    - ENOMEM - no appropriate memory area found in which to create memzone
761  */
762 struct rte_mempool *
763 rte_pktmbuf_pool_create(const char *name, unsigned n,
764         unsigned cache_size, uint16_t priv_size, uint16_t data_room_size,
765         int socket_id);
766
767 /**
768  * Get the data room size of mbufs stored in a pktmbuf_pool
769  *
770  * The data room size is the amount of data that can be stored in a
771  * mbuf including the headroom (RTE_PKTMBUF_HEADROOM).
772  *
773  * @param mp
774  *   The packet mbuf pool.
775  * @return
776  *   The data room size of mbufs stored in this mempool.
777  */
778 static inline uint16_t
779 rte_pktmbuf_data_room_size(struct rte_mempool *mp)
780 {
781         struct rte_pktmbuf_pool_private *mbp_priv;
782
783         mbp_priv = (struct rte_pktmbuf_pool_private *)rte_mempool_get_priv(mp);
784         return mbp_priv->mbuf_data_room_size;
785 }
786
787 /**
788  * Get the application private size of mbufs stored in a pktmbuf_pool
789  *
790  * The private size of mbuf is a zone located between the rte_mbuf
791  * structure and the data buffer where an application can store data
792  * associated to a packet.
793  *
794  * @param mp
795  *   The packet mbuf pool.
796  * @return
797  *   The private size of mbufs stored in this mempool.
798  */
799 static inline uint16_t
800 rte_pktmbuf_priv_size(struct rte_mempool *mp)
801 {
802         struct rte_pktmbuf_pool_private *mbp_priv;
803
804         mbp_priv = (struct rte_pktmbuf_pool_private *)rte_mempool_get_priv(mp);
805         return mbp_priv->mbuf_priv_size;
806 }
807
808 /**
809  * Reset the fields of a packet mbuf to their default values.
810  *
811  * The given mbuf must have only one segment.
812  *
813  * @param m
814  *   The packet mbuf to be resetted.
815  */
816 static inline void rte_pktmbuf_reset(struct rte_mbuf *m)
817 {
818         m->next = NULL;
819         m->pkt_len = 0;
820         m->tx_offload = 0;
821         m->vlan_tci = 0;
822         m->vlan_tci_outer = 0;
823         m->nb_segs = 1;
824         m->port = 0xff;
825
826         m->ol_flags = 0;
827         m->packet_type = 0;
828         m->data_off = (RTE_PKTMBUF_HEADROOM <= m->buf_len) ?
829                         RTE_PKTMBUF_HEADROOM : m->buf_len;
830
831         m->data_len = 0;
832         __rte_mbuf_sanity_check(m, 1);
833 }
834
835 /**
836  * Allocate a new mbuf from a mempool.
837  *
838  * This new mbuf contains one segment, which has a length of 0. The pointer
839  * to data is initialized to have some bytes of headroom in the buffer
840  * (if buffer size allows).
841  *
842  * @param mp
843  *   The mempool from which the mbuf is allocated.
844  * @return
845  *   - The pointer to the new mbuf on success.
846  *   - NULL if allocation failed.
847  */
848 static inline struct rte_mbuf *rte_pktmbuf_alloc(struct rte_mempool *mp)
849 {
850         struct rte_mbuf *m;
851         if ((m = __rte_mbuf_raw_alloc(mp)) != NULL)
852                 rte_pktmbuf_reset(m);
853         return m;
854 }
855
856 /**
857  * Attach packet mbuf to another packet mbuf.
858  *
859  * After attachment we refer the mbuf we attached as 'indirect',
860  * while mbuf we attached to as 'direct'.
861  * Right now, not supported:
862  *  - attachment for already indirect mbuf (e.g. - mi has to be direct).
863  *  - mbuf we trying to attach (mi) is used by someone else
864  *    e.g. it's reference counter is greater then 1.
865  *
866  * @param mi
867  *   The indirect packet mbuf.
868  * @param m
869  *   The packet mbuf we're attaching to.
870  */
871 static inline void rte_pktmbuf_attach(struct rte_mbuf *mi, struct rte_mbuf *m)
872 {
873         struct rte_mbuf *md;
874
875         RTE_MBUF_ASSERT(RTE_MBUF_DIRECT(mi) &&
876             rte_mbuf_refcnt_read(mi) == 1);
877
878         /* if m is not direct, get the mbuf that embeds the data */
879         if (RTE_MBUF_DIRECT(m))
880                 md = m;
881         else
882                 md = rte_mbuf_from_indirect(m);
883
884         rte_mbuf_refcnt_update(md, 1);
885         mi->priv_size = m->priv_size;
886         mi->buf_physaddr = m->buf_physaddr;
887         mi->buf_addr = m->buf_addr;
888         mi->buf_len = m->buf_len;
889
890         mi->next = m->next;
891         mi->data_off = m->data_off;
892         mi->data_len = m->data_len;
893         mi->port = m->port;
894         mi->vlan_tci = m->vlan_tci;
895         mi->vlan_tci_outer = m->vlan_tci_outer;
896         mi->tx_offload = m->tx_offload;
897         mi->hash = m->hash;
898
899         mi->next = NULL;
900         mi->pkt_len = mi->data_len;
901         mi->nb_segs = 1;
902         mi->ol_flags = m->ol_flags | IND_ATTACHED_MBUF;
903         mi->packet_type = m->packet_type;
904
905         __rte_mbuf_sanity_check(mi, 1);
906         __rte_mbuf_sanity_check(m, 0);
907 }
908
909 /**
910  * Detach an indirect packet mbuf.
911  *
912  *  - restore original mbuf address and length values.
913  *  - reset pktmbuf data and data_len to their default values.
914  *  All other fields of the given packet mbuf will be left intact.
915  *
916  * @param m
917  *   The indirect attached packet mbuf.
918  */
919 static inline void rte_pktmbuf_detach(struct rte_mbuf *m)
920 {
921         struct rte_mempool *mp = m->pool;
922         uint32_t mbuf_size, buf_len, priv_size;
923
924         priv_size = rte_pktmbuf_priv_size(mp);
925         mbuf_size = sizeof(struct rte_mbuf) + priv_size;
926         buf_len = rte_pktmbuf_data_room_size(mp);
927
928         m->priv_size = priv_size;
929         m->buf_addr = (char *)m + mbuf_size;
930         m->buf_physaddr = rte_mempool_virt2phy(mp, m) + mbuf_size;
931         m->buf_len = (uint16_t)buf_len;
932         m->data_off = RTE_MIN(RTE_PKTMBUF_HEADROOM, (uint16_t)m->buf_len);
933         m->data_len = 0;
934         m->ol_flags = 0;
935 }
936
937 static inline struct rte_mbuf* __attribute__((always_inline))
938 __rte_pktmbuf_prefree_seg(struct rte_mbuf *m)
939 {
940         __rte_mbuf_sanity_check(m, 0);
941
942         if (likely(rte_mbuf_refcnt_update(m, -1) == 0)) {
943
944                 /* if this is an indirect mbuf, then
945                  *  - detach mbuf
946                  *  - free attached mbuf segment
947                  */
948                 if (RTE_MBUF_INDIRECT(m)) {
949                         struct rte_mbuf *md = rte_mbuf_from_indirect(m);
950                         rte_pktmbuf_detach(m);
951                         if (rte_mbuf_refcnt_update(md, -1) == 0)
952                                 __rte_mbuf_raw_free(md);
953                 }
954                 return m;
955         }
956         return NULL;
957 }
958
959 /**
960  * Free a segment of a packet mbuf into its original mempool.
961  *
962  * Free an mbuf, without parsing other segments in case of chained
963  * buffers.
964  *
965  * @param m
966  *   The packet mbuf segment to be freed.
967  */
968 static inline void __attribute__((always_inline))
969 rte_pktmbuf_free_seg(struct rte_mbuf *m)
970 {
971         if (likely(NULL != (m = __rte_pktmbuf_prefree_seg(m)))) {
972                 m->next = NULL;
973                 __rte_mbuf_raw_free(m);
974         }
975 }
976
977 /**
978  * Free a packet mbuf back into its original mempool.
979  *
980  * Free an mbuf, and all its segments in case of chained buffers. Each
981  * segment is added back into its original mempool.
982  *
983  * @param m
984  *   The packet mbuf to be freed.
985  */
986 static inline void rte_pktmbuf_free(struct rte_mbuf *m)
987 {
988         struct rte_mbuf *m_next;
989
990         __rte_mbuf_sanity_check(m, 1);
991
992         while (m != NULL) {
993                 m_next = m->next;
994                 rte_pktmbuf_free_seg(m);
995                 m = m_next;
996         }
997 }
998
999 /**
1000  * Creates a "clone" of the given packet mbuf.
1001  *
1002  * Walks through all segments of the given packet mbuf, and for each of them:
1003  *  - Creates a new packet mbuf from the given pool.
1004  *  - Attaches newly created mbuf to the segment.
1005  * Then updates pkt_len and nb_segs of the "clone" packet mbuf to match values
1006  * from the original packet mbuf.
1007  *
1008  * @param md
1009  *   The packet mbuf to be cloned.
1010  * @param mp
1011  *   The mempool from which the "clone" mbufs are allocated.
1012  * @return
1013  *   - The pointer to the new "clone" mbuf on success.
1014  *   - NULL if allocation fails.
1015  */
1016 static inline struct rte_mbuf *rte_pktmbuf_clone(struct rte_mbuf *md,
1017                 struct rte_mempool *mp)
1018 {
1019         struct rte_mbuf *mc, *mi, **prev;
1020         uint32_t pktlen;
1021         uint8_t nseg;
1022
1023         if (unlikely ((mc = rte_pktmbuf_alloc(mp)) == NULL))
1024                 return NULL;
1025
1026         mi = mc;
1027         prev = &mi->next;
1028         pktlen = md->pkt_len;
1029         nseg = 0;
1030
1031         do {
1032                 nseg++;
1033                 rte_pktmbuf_attach(mi, md);
1034                 *prev = mi;
1035                 prev = &mi->next;
1036         } while ((md = md->next) != NULL &&
1037             (mi = rte_pktmbuf_alloc(mp)) != NULL);
1038
1039         *prev = NULL;
1040         mc->nb_segs = nseg;
1041         mc->pkt_len = pktlen;
1042
1043         /* Allocation of new indirect segment failed */
1044         if (unlikely (mi == NULL)) {
1045                 rte_pktmbuf_free(mc);
1046                 return NULL;
1047         }
1048
1049         __rte_mbuf_sanity_check(mc, 1);
1050         return mc;
1051 }
1052
1053 /**
1054  * Adds given value to the refcnt of all packet mbuf segments.
1055  *
1056  * Walks through all segments of given packet mbuf and for each of them
1057  * invokes rte_mbuf_refcnt_update().
1058  *
1059  * @param m
1060  *   The packet mbuf whose refcnt to be updated.
1061  * @param v
1062  *   The value to add to the mbuf's segments refcnt.
1063  */
1064 static inline void rte_pktmbuf_refcnt_update(struct rte_mbuf *m, int16_t v)
1065 {
1066         __rte_mbuf_sanity_check(m, 1);
1067
1068         do {
1069                 rte_mbuf_refcnt_update(m, v);
1070         } while ((m = m->next) != NULL);
1071 }
1072
1073 /**
1074  * Get the headroom in a packet mbuf.
1075  *
1076  * @param m
1077  *   The packet mbuf.
1078  * @return
1079  *   The length of the headroom.
1080  */
1081 static inline uint16_t rte_pktmbuf_headroom(const struct rte_mbuf *m)
1082 {
1083         __rte_mbuf_sanity_check(m, 1);
1084         return m->data_off;
1085 }
1086
1087 /**
1088  * Get the tailroom of a packet mbuf.
1089  *
1090  * @param m
1091  *   The packet mbuf.
1092  * @return
1093  *   The length of the tailroom.
1094  */
1095 static inline uint16_t rte_pktmbuf_tailroom(const struct rte_mbuf *m)
1096 {
1097         __rte_mbuf_sanity_check(m, 1);
1098         return (uint16_t)(m->buf_len - rte_pktmbuf_headroom(m) -
1099                           m->data_len);
1100 }
1101
1102 /**
1103  * Get the last segment of the packet.
1104  *
1105  * @param m
1106  *   The packet mbuf.
1107  * @return
1108  *   The last segment of the given mbuf.
1109  */
1110 static inline struct rte_mbuf *rte_pktmbuf_lastseg(struct rte_mbuf *m)
1111 {
1112         struct rte_mbuf *m2 = (struct rte_mbuf *)m;
1113
1114         __rte_mbuf_sanity_check(m, 1);
1115         while (m2->next != NULL)
1116                 m2 = m2->next;
1117         return m2;
1118 }
1119
1120 /**
1121  * A macro that points to an offset into the data in the mbuf.
1122  *
1123  * The returned pointer is cast to type t. Before using this
1124  * function, the user must ensure that the first segment is large
1125  * enough to accommodate its data.
1126  *
1127  * @param m
1128  *   The packet mbuf.
1129  * @param o
1130  *   The offset into the mbuf data.
1131  * @param t
1132  *   The type to cast the result into.
1133  */
1134 #define rte_pktmbuf_mtod_offset(m, t, o)        \
1135         ((t)((char *)(m)->buf_addr + (m)->data_off + (o)))
1136
1137 /**
1138  * A macro that points to the start of the data in the mbuf.
1139  *
1140  * The returned pointer is cast to type t. Before using this
1141  * function, the user must ensure that the first segment is large
1142  * enough to accommodate its data.
1143  *
1144  * @param m
1145  *   The packet mbuf.
1146  * @param t
1147  *   The type to cast the result into.
1148  */
1149 #define rte_pktmbuf_mtod(m, t) rte_pktmbuf_mtod_offset(m, t, 0)
1150
1151 /**
1152  * A macro that returns the length of the packet.
1153  *
1154  * The value can be read or assigned.
1155  *
1156  * @param m
1157  *   The packet mbuf.
1158  */
1159 #define rte_pktmbuf_pkt_len(m) ((m)->pkt_len)
1160
1161 /**
1162  * A macro that returns the length of the segment.
1163  *
1164  * The value can be read or assigned.
1165  *
1166  * @param m
1167  *   The packet mbuf.
1168  */
1169 #define rte_pktmbuf_data_len(m) ((m)->data_len)
1170
1171 /**
1172  * Prepend len bytes to an mbuf data area.
1173  *
1174  * Returns a pointer to the new
1175  * data start address. If there is not enough headroom in the first
1176  * segment, the function will return NULL, without modifying the mbuf.
1177  *
1178  * @param m
1179  *   The pkt mbuf.
1180  * @param len
1181  *   The amount of data to prepend (in bytes).
1182  * @return
1183  *   A pointer to the start of the newly prepended data, or
1184  *   NULL if there is not enough headroom space in the first segment
1185  */
1186 static inline char *rte_pktmbuf_prepend(struct rte_mbuf *m,
1187                                         uint16_t len)
1188 {
1189         __rte_mbuf_sanity_check(m, 1);
1190
1191         if (unlikely(len > rte_pktmbuf_headroom(m)))
1192                 return NULL;
1193
1194         m->data_off -= len;
1195         m->data_len = (uint16_t)(m->data_len + len);
1196         m->pkt_len  = (m->pkt_len + len);
1197
1198         return (char *)m->buf_addr + m->data_off;
1199 }
1200
1201 /**
1202  * Append len bytes to an mbuf.
1203  *
1204  * Append len bytes to an mbuf and return a pointer to the start address
1205  * of the added data. If there is not enough tailroom in the last
1206  * segment, the function will return NULL, without modifying the mbuf.
1207  *
1208  * @param m
1209  *   The packet mbuf.
1210  * @param len
1211  *   The amount of data to append (in bytes).
1212  * @return
1213  *   A pointer to the start of the newly appended data, or
1214  *   NULL if there is not enough tailroom space in the last segment
1215  */
1216 static inline char *rte_pktmbuf_append(struct rte_mbuf *m, uint16_t len)
1217 {
1218         void *tail;
1219         struct rte_mbuf *m_last;
1220
1221         __rte_mbuf_sanity_check(m, 1);
1222
1223         m_last = rte_pktmbuf_lastseg(m);
1224         if (unlikely(len > rte_pktmbuf_tailroom(m_last)))
1225                 return NULL;
1226
1227         tail = (char *)m_last->buf_addr + m_last->data_off + m_last->data_len;
1228         m_last->data_len = (uint16_t)(m_last->data_len + len);
1229         m->pkt_len  = (m->pkt_len + len);
1230         return (char*) tail;
1231 }
1232
1233 /**
1234  * Remove len bytes at the beginning of an mbuf.
1235  *
1236  * Returns a pointer to the start address of the new data area. If the
1237  * length is greater than the length of the first segment, then the
1238  * function will fail and return NULL, without modifying the mbuf.
1239  *
1240  * @param m
1241  *   The packet mbuf.
1242  * @param len
1243  *   The amount of data to remove (in bytes).
1244  * @return
1245  *   A pointer to the new start of the data.
1246  */
1247 static inline char *rte_pktmbuf_adj(struct rte_mbuf *m, uint16_t len)
1248 {
1249         __rte_mbuf_sanity_check(m, 1);
1250
1251         if (unlikely(len > m->data_len))
1252                 return NULL;
1253
1254         m->data_len = (uint16_t)(m->data_len - len);
1255         m->data_off += len;
1256         m->pkt_len  = (m->pkt_len - len);
1257         return (char *)m->buf_addr + m->data_off;
1258 }
1259
1260 /**
1261  * Remove len bytes of data at the end of the mbuf.
1262  *
1263  * If the length is greater than the length of the last segment, the
1264  * function will fail and return -1 without modifying the mbuf.
1265  *
1266  * @param m
1267  *   The packet mbuf.
1268  * @param len
1269  *   The amount of data to remove (in bytes).
1270  * @return
1271  *   - 0: On success.
1272  *   - -1: On error.
1273  */
1274 static inline int rte_pktmbuf_trim(struct rte_mbuf *m, uint16_t len)
1275 {
1276         struct rte_mbuf *m_last;
1277
1278         __rte_mbuf_sanity_check(m, 1);
1279
1280         m_last = rte_pktmbuf_lastseg(m);
1281         if (unlikely(len > m_last->data_len))
1282                 return -1;
1283
1284         m_last->data_len = (uint16_t)(m_last->data_len - len);
1285         m->pkt_len  = (m->pkt_len - len);
1286         return 0;
1287 }
1288
1289 /**
1290  * Test if mbuf data is contiguous.
1291  *
1292  * @param m
1293  *   The packet mbuf.
1294  * @return
1295  *   - 1, if all data is contiguous (one segment).
1296  *   - 0, if there is several segments.
1297  */
1298 static inline int rte_pktmbuf_is_contiguous(const struct rte_mbuf *m)
1299 {
1300         __rte_mbuf_sanity_check(m, 1);
1301         return !!(m->nb_segs == 1);
1302 }
1303
1304 /**
1305  * Dump an mbuf structure to the console.
1306  *
1307  * Dump all fields for the given packet mbuf and all its associated
1308  * segments (in the case of a chained buffer).
1309  *
1310  * @param f
1311  *   A pointer to a file for output
1312  * @param m
1313  *   The packet mbuf.
1314  * @param dump_len
1315  *   If dump_len != 0, also dump the "dump_len" first data bytes of
1316  *   the packet.
1317  */
1318 void rte_pktmbuf_dump(FILE *f, const struct rte_mbuf *m, unsigned dump_len);
1319
1320 #ifdef __cplusplus
1321 }
1322 #endif
1323
1324 #endif /* _RTE_MBUF_H_ */