FD.io VPP  v21.06-3-gbb25fbf28
Vector Packet Processing
buffer.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 /*
16  * buffer.h: VLIB buffers
17  *
18  * Copyright (c) 2008 Eliot Dresselhaus
19  *
20  * Permission is hereby granted, free of charge, to any person obtaining
21  * a copy of this software and associated documentation files (the
22  * "Software"), to deal in the Software without restriction, including
23  * without limitation the rights to use, copy, modify, merge, publish,
24  * distribute, sublicense, and/or sell copies of the Software, and to
25  * permit persons to whom the Software is furnished to do so, subject to
26  * the following conditions:
27  *
28  * The above copyright notice and this permission notice shall be
29  * included in all copies or substantial portions of the Software.
30  *
31  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38  */
39 
40 #ifndef included_vlib_buffer_h
41 #define included_vlib_buffer_h
42 
43 #include <vppinfra/types.h>
44 #include <vppinfra/cache.h>
45 #include <vppinfra/serialize.h>
46 #include <vppinfra/vector.h>
47 #include <vppinfra/lock.h>
48 #include <vlib/error.h> /* for vlib_error_t */
49 
50 #include <vlib/config.h> /* for __PRE_DATA_SIZE */
51 #define VLIB_BUFFER_PRE_DATA_SIZE __PRE_DATA_SIZE
52 
53 #define VLIB_BUFFER_DEFAULT_DATA_SIZE (2048)
54 
55 /* Minimum buffer chain segment size. Does not apply to last buffer in chain.
56  Dataplane code can safely asume that specified amount of data is not split
57  into 2 chained buffers */
58 #define VLIB_BUFFER_MIN_CHAIN_SEG_SIZE (128)
59 
60 /* Amount of head buffer data copied to each replica head buffer */
61 #define VLIB_BUFFER_CLONE_HEAD_SIZE (256)
62 
63 /** \file
64  vlib buffer structure definition and a few select
65  access methods. This structure and the buffer allocation
66  mechanism should perhaps live in vnet, but it would take a lot
67  of typing to make it so.
68 */
69 
70 /**
71  * Buffer Flags
72  */
73 #define foreach_vlib_buffer_flag \
74  _( 0, IS_TRACED, 0) \
75  _( 1, NEXT_PRESENT, "next-present") \
76  _( 2, TOTAL_LENGTH_VALID, 0) \
77  _( 3, EXT_HDR_VALID, "ext-hdr-valid")
78 
79 /* NOTE: only buffer generic flags should be defined here, please consider
80  using user flags. i.e. src/vnet/buffer.h */
81 
82 enum
83 {
84 #define _(bit, name, v) VLIB_BUFFER_##name = (1 << (bit)),
86 #undef _
87 };
88 
89 enum
90 {
91 #define _(bit, name, v) VLIB_BUFFER_LOG2_##name = (bit),
93 #undef _
94 };
95 
96  /* User defined buffer flags. */
97 #define LOG2_VLIB_BUFFER_FLAG_USER(n) (32 - (n))
98 #define VLIB_BUFFER_FLAG_USER(n) (1 << LOG2_VLIB_BUFFER_FLAG_USER(n))
99 #define VLIB_BUFFER_FLAGS_ALL (0x0f)
100 
101 /** \brief Compile time buffer trajectory tracing option
102  Turn this on if you run into "bad monkey" contexts,
103  and you want to know exactly which nodes they've visited...
104  See vlib/main.c...
105 */
106 #ifndef VLIB_BUFFER_TRACE_TRAJECTORY
107 #define VLIB_BUFFER_TRACE_TRAJECTORY 0
108 #endif /* VLIB_BUFFER_TRACE_TRAJECTORY */
109 
110 /** VLIB buffer representation. */
111 typedef union
112 {
113  struct
114  {
115  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
116 
117  /** signed offset in data[], pre_data[] that we are currently
118  * processing. If negative current header points into predata area. */
120 
121  /** Nbytes between current data and the end of this buffer. */
123 
124  /** buffer flags:
125  <br> VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index,
126  <br> VLIB_BUFFER_IS_TRACED: trace this buffer.
127  <br> VLIB_BUFFER_NEXT_PRESENT: this is a multi-chunk buffer.
128  <br> VLIB_BUFFER_TOTAL_LENGTH_VALID: as it says
129  <br> VLIB_BUFFER_EXT_HDR_VALID: buffer contains valid external buffer manager header,
130  set to avoid adding it to a flow report
131  <br> VLIB_BUFFER_FLAG_USER(n): user-defined bit N
132  */
134 
135  /** Generic flow identifier */
137 
138  /** Reference count for this buffer. */
139  volatile u8 ref_count;
140 
141  /** index of buffer pool this buffer belongs. */
143 
144  /** Error code for buffers to be enqueued to error handler. */
146 
147  /** Next buffer for this linked-list of buffers. Only valid if
148  * VLIB_BUFFER_NEXT_PRESENT flag is set. */
150 
151  /** The following fields can be in a union because once a packet enters
152  * the punt path, it is no longer on a feature arc */
153  union
154  {
155  /** Used by feature subgraph arcs to visit enabled feature nodes */
157  /* the reason the packet once punted */
159  };
160 
161  /** Opaque data used by sub-graphs for their own purposes. */
162  u32 opaque[10];
163 
164  /** part of buffer metadata which is initialized on alloc ends here. */
165  STRUCT_MARK (template_end);
166 
167  /** start of 2nd half (2nd cacheline on systems where cacheline size is 64) */
168  CLIB_ALIGN_MARK (second_half, 64);
169 
170  /** Specifies trace buffer handle if VLIB_PACKET_IS_TRACED flag is
171  * set. */
173 
174  /** Only valid for first buffer in chain. Current length plus total length
175  * given here give total number of bytes in buffer chain. */
177 
178  /**< More opaque data, see ../vnet/vnet/buffer.h */
179  u32 opaque2[14];
180 
181 #if VLIB_BUFFER_TRACE_TRAJECTORY > 0
182  /** trace trajectory data - we use a specific cacheline for that in the
183  * buffer when it is compiled-in */
184 #define VLIB_BUFFER_TRACE_TRAJECTORY_MAX 31
185 #define VLIB_BUFFER_TRACE_TRAJECTORY_SZ 64
186 #define VLIB_BUFFER_TRACE_TRAJECTORY_INIT(b) (b)->trajectory_nb = 0
187  CLIB_ALIGN_MARK (trajectory, 64);
188  u16 trajectory_nb;
189  u16 trajectory_trace[VLIB_BUFFER_TRACE_TRAJECTORY_MAX];
190 #else /* VLIB_BUFFER_TRACE_TRAJECTORY */
191 #define VLIB_BUFFER_TRACE_TRAJECTORY_SZ 0
192 #define VLIB_BUFFER_TRACE_TRAJECTORY_INIT(b)
193 #endif /* VLIB_BUFFER_TRACE_TRAJECTORY */
194 
195  /** start of buffer headroom */
196  CLIB_ALIGN_MARK (headroom, 64);
197 
198  /** Space for inserting data before buffer start. Packet rewrite string
199  * will be rewritten backwards and may extend back before
200  * buffer->data[0]. Must come directly before packet data. */
202 
203  /** Packet data */
204  u8 data[];
205  };
206 #ifdef CLIB_HAVE_VEC128
207  u8x16 as_u8x16[4];
208 #endif
209 #ifdef CLIB_HAVE_VEC256
210  u8x32 as_u8x32[2];
211 #endif
212 #ifdef CLIB_HAVE_VEC512
213  u8x64 as_u8x64[1];
214 #endif
215 } vlib_buffer_t;
216 
220  "VLIB_BUFFER_PRE_DATA_SIZE must be divisible by cache line size");
221 
222 #define VLIB_BUFFER_HDR_SIZE (sizeof(vlib_buffer_t) - VLIB_BUFFER_PRE_DATA_SIZE)
223 
224 /** \brief Prefetch buffer metadata.
225  The first 64 bytes of buffer contains most header information
226 
227  @param b - (vlib_buffer_t *) pointer to the buffer
228  @param type - LOAD, STORE. In most cases, STORE is the right answer
229 */
230 
231 #define vlib_prefetch_buffer_header(b,type) CLIB_PREFETCH (b, 64, type)
232 #define vlib_prefetch_buffer_data(b,type) \
233  CLIB_PREFETCH (vlib_buffer_get_current(b), CLIB_CACHE_LINE_BYTES, type)
234 
235 always_inline void
237 {
238  ASSERT (sizeof (b[0]) % 64 == 0);
239 
240  /* Rewrite data must be before and contiguous with packet data. */
242 }
243 
246 {
247  return pointer_to_uword (b->data);
248 }
249 
250 /** \brief Get pointer to current data to process
251 
252  @param b - (vlib_buffer_t *) pointer to the buffer
253  @return - (void *) (b->data + b->current_data)
254 */
255 
256 always_inline void *
258 {
259  /* Check bounds. */
260  ASSERT ((signed) b->current_data >= (signed) -VLIB_BUFFER_PRE_DATA_SIZE);
261  return b->data + b->current_data;
262 }
263 
266 {
267  return vlib_buffer_get_va (b) + b->current_data;
268 }
269 
270 /** \brief Advance current data pointer by the supplied (signed!) amount
271 
272  @param b - (vlib_buffer_t *) pointer to the buffer
273  @param l - (word) signed increment
274 */
275 always_inline void
277 {
278  ASSERT (b->current_length >= l);
279  b->current_data += l;
280  b->current_length -= l;
281 
282  ASSERT ((b->flags & VLIB_BUFFER_NEXT_PRESENT) == 0 ||
284 }
285 
286 /** \brief Check if there is enough space in buffer to advance
287 
288  @param b - (vlib_buffer_t *) pointer to the buffer
289  @param l - (word) size to check
290  @return - 0 if there is less space than 'l' in buffer
291 */
294 {
295  return b->current_length >= l;
296 }
297 
298 /** \brief Reset current header & length to state they were in when
299  packet was received.
300 
301  @param b - (vlib_buffer_t *) pointer to the buffer
302 */
303 
304 always_inline void
306 {
308  b->current_data = 0;
309 }
310 
311 /** \brief Get pointer to buffer's opaque data array
312 
313  @param b - (vlib_buffer_t *) pointer to the buffer
314  @return - (void *) b->opaque
315 */
316 always_inline void *
318 {
319  return (void *) b->opaque;
320 }
321 
322 /** \brief Get pointer to buffer's opaque2 data array
323 
324  @param b - (vlib_buffer_t *) pointer to the buffer
325  @return - (void *) b->opaque2
326 */
327 always_inline void *
329 {
330  return (void *) b->opaque2;
331 }
332 
333 /** \brief Get pointer to the end of buffer's data
334  * @param b pointer to the buffer
335  * @return pointer to tail of packet's data
336  */
339 {
340  return b->data + b->current_data + b->current_length;
341 }
342 
343 /** \brief Append uninitialized data to buffer
344  * @param b pointer to the buffer
345  * @param size number of uninitialized bytes
346  * @return pointer to beginning of uninitialized data
347  */
348 always_inline void *
350 {
351  void *p = vlib_buffer_get_tail (b);
352  /* XXX make sure there's enough space */
353  b->current_length += size;
354  return p;
355 }
356 
357 /** \brief Prepend uninitialized data to buffer
358  * @param b pointer to the buffer
359  * @param size number of uninitialized bytes
360  * @return pointer to beginning of uninitialized data
361  */
362 always_inline void *
364 {
366  b->current_data -= size;
367  b->current_length += size;
368 
369  return vlib_buffer_get_current (b);
370 }
371 
372 /** \brief Make head room, typically for packet headers
373  * @param b pointer to the buffer
374  * @param size number of head room bytes
375  * @return pointer to start of buffer (current data)
376  */
377 always_inline void *
379 {
380  b->current_data += size;
381  return vlib_buffer_get_current (b);
382 }
383 
384 /** \brief Construct a trace handle from thread and pool index
385  * @param thread Thread id
386  * @param pool_index Pool index
387  * @return trace handle
388  */
391 {
392  u32 rv;
393  ASSERT (thread < 0xff);
394  ASSERT (pool_index < 0x00FFFFFF);
395  rv = (thread << 24) | (pool_index & 0x00FFFFFF);
396  return rv;
397 }
398 
399 /** \brief Extract the thread id from a trace handle
400  * @param trace_handle the trace handle
401  * @return the thread id
402  */
405 {
406  u32 trace_handle = b->trace_handle;
407 
408  return trace_handle >> 24;
409 }
410 
411 /** \brief Extract the trace (pool) index from a trace handle
412  * @param trace_handle the trace handle
413  * @return the trace index
414  */
417 {
418  u32 trace_handle = b->trace_handle;
419  return trace_handle & 0x00FFFFFF;
420 }
421 
422 /** \brief Retrieve bytes from buffer head
423  * @param b pointer to the buffer
424  * @param size number of bytes to pull
425  * @return pointer to start of buffer (current data)
426  */
427 always_inline void *
429 {
431  return 0;
432 
433  void *data = vlib_buffer_get_current (b);
435  return data;
436 }
437 
438 /* Forward declaration. */
439 struct vlib_main_t;
440 
441 #define VLIB_BUFFER_POOL_PER_THREAD_CACHE_SZ 512
442 
443 typedef struct
444 {
445  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
449 
450 typedef struct
451 {
452  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
465 
466  /* per-thread data */
468 
469  /* buffer metadata template */
472 
473 #define VLIB_BUFFER_MAX_NUMA_NODES 32
474 
475 typedef struct
476 {
477  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
478  /* Virtual memory address and size of buffer memory, used for calculating
479  buffer index */
483 
484  /* Hash table mapping buffer index into number
485  0 => allocated but free, 1 => allocated and not-free.
486  If buffer index is not in hash table then this buffer
487  has never been allocated. */
490  u8 default_buffer_pool_index_for_numa[VLIB_BUFFER_MAX_NUMA_NODES];
491 
492  /* config */
497 
498  /* logging */
501 
503 
504 extern u16 __vlib_buffer_external_hdr_size;
505 #define VLIB_BUFFER_SET_EXT_HDR_SIZE(x) \
506 static void __clib_constructor \
507 vnet_buffer_set_ext_hdr_size() \
508 { \
509  if (__vlib_buffer_external_hdr_size) \
510  clib_error ("buffer external header space already set"); \
511  __vlib_buffer_external_hdr_size = CLIB_CACHE_LINE_ROUND (x); \
512 }
513 
514 #endif /* included_vlib_buffer_h */
515 
516 /*
517  * fd.io coding-style-patch-verification: ON
518  *
519  * Local Variables:
520  * eval: (c-set-style "gnu")
521  * End:
522  */
vlib_buffer_main_t
Definition: buffer.h:475
vlib_buffer_pool_t::start
uword start
Definition: buffer.h:453
vlib_buffer_t::next_buffer
u32 next_buffer
Next buffer for this linked-list of buffers.
Definition: buffer.h:149
vlib_buffer_t::buffer_pool_index
u8 buffer_pool_index
index of buffer pool this buffer belongs.
Definition: buffer.h:142
vlib_get_buffer_opaque2
static void * vlib_get_buffer_opaque2(vlib_buffer_t *b)
Get pointer to buffer's opaque2 data array.
Definition: buffer.h:328
vlib_buffer_put_uninit
static void * vlib_buffer_put_uninit(vlib_buffer_t *b, u16 size)
Append uninitialized data to buffer.
Definition: buffer.h:349
vlib_buffer_pool_t::index
u8 index
Definition: buffer.h:456
vlib_buffer_main_t::buffers_per_numa
u32 buffers_per_numa
Definition: buffer.h:493
types.h
VLIB_BUFFER_MIN_CHAIN_SEG_SIZE
#define VLIB_BUFFER_MIN_CHAIN_SEG_SIZE
Definition: buffer.h:58
clib_max
#define clib_max(x, y)
Definition: clib.h:335
VLIB_BUFFER_TRACE_TRAJECTORY_SZ
#define VLIB_BUFFER_TRACE_TRAJECTORY_SZ
Definition: buffer.h:191
pointer_to_uword
static uword pointer_to_uword(const void *p)
Definition: types.h:131
vlib_buffer_main_init
clib_error_t * vlib_buffer_main_init(struct vlib_main_t *vm)
Definition: buffer.c:829
CLIB_CACHE_LINE_ALIGN_MARK
#define CLIB_CACHE_LINE_ALIGN_MARK(mark)
Definition: cache.h:60
vlib_buffer_pool_t::data_size
u32 data_size
Definition: buffer.h:459
vlib_log_class_t
u32 vlib_log_class_t
Definition: vlib.h:52
vlib_buffer_pull
static void * vlib_buffer_pull(vlib_buffer_t *b, u8 size)
Retrieve bytes from buffer head.
Definition: buffer.h:428
vlib_get_buffer_opaque
static void * vlib_get_buffer_opaque(vlib_buffer_t *b)
Get pointer to buffer's opaque data array.
Definition: buffer.h:317
vlib_buffer_pool_t
Definition: buffer.h:450
vlib_buffer_pool_t::physmem_map_index
u32 physmem_map_index
Definition: buffer.h:458
thread
pthread_t thread[MAX_CONNS]
Definition: main.c:142
vlib_buffer_struct_is_sane
static void vlib_buffer_struct_is_sane(vlib_buffer_t *b)
Definition: buffer.h:236
vlib_buffer_pool_t::log2_page_size
uword log2_page_size
Definition: buffer.h:455
u16
unsigned short u16
Definition: types.h:57
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
vlib_buffer_t::trace_handle
u32 trace_handle
Specifies trace buffer handle if VLIB_PACKET_IS_TRACED flag is set.
Definition: buffer.h:172
vlib_buffer_get_trace_thread
static u32 vlib_buffer_get_trace_thread(vlib_buffer_t *b)
Extract the thread id from a trace handle.
Definition: buffer.h:404
vlib_buffer_main_t::log2_page_size
clib_mem_page_sz_t log2_page_size
Definition: buffer.h:496
CLIB_ALIGN_MARK
#define CLIB_ALIGN_MARK(name, alignment)
Definition: clib.h:93
vlib_buffer_t::punt_reason
u32 punt_reason
Definition: buffer.h:158
u8x16
u8x16
Definition: vector_sse42.h:194
vlib_buffer_get_va
static uword vlib_buffer_get_va(vlib_buffer_t *b)
Definition: buffer.h:245
vlib_buffer_has_space
static u8 vlib_buffer_has_space(vlib_buffer_t *b, word l)
Check if there is enough space in buffer to advance.
Definition: buffer.h:293
i16
signed short i16
Definition: types.h:46
vlib_buffer_t::current_data
i16 current_data
signed offset in data[], pre_data[] that we are currently processing.
Definition: buffer.h:119
vlib_buffer_pool_t::threads
vlib_buffer_pool_thread_t * threads
Definition: buffer.h:467
vlib_buffer_t::opaque2
u32 opaque2[14]
Definition: buffer.h:179
vlib_buffer_pool_t::size
uword size
Definition: buffer.h:454
vlib_buffer_advance
static void vlib_buffer_advance(vlib_buffer_t *b, word l)
Advance current data pointer by the supplied (signed!) amount.
Definition: buffer.h:276
vlib_buffer_t::error
vlib_error_t error
Error code for buffers to be enqueued to error handler.
Definition: buffer.h:145
vlib_buffer_pool_t::buffers
u32 * buffers
Definition: buffer.h:462
vlib_buffer_main_t::log_default
vlib_log_class_t log_default
Definition: buffer.h:499
lock.h
STATIC_ASSERT
STATIC_ASSERT(((VNET_BUFFER_FLAGS_ALL_AVAIL &VLIB_BUFFER_FLAGS_ALL)==0), "VLIB / VNET buffer flags overlap")
vlib_buffer_pool_t::buffer_template
vlib_buffer_t buffer_template
Definition: buffer.h:470
VLIB_BUFFER_MAX_NUMA_NODES
#define VLIB_BUFFER_MAX_NUMA_NODES
Definition: buffer.h:473
clib_spinlock_s
Definition: lock.h:51
uword
u64 uword
Definition: types.h:112
vlib_buffer_t::ref_count
volatile u8 ref_count
Reference count for this buffer.
Definition: buffer.h:139
vlib_buffer_main_t::buffer_known_hash_lockp
clib_spinlock_t buffer_known_hash_lockp
Definition: buffer.h:489
vlib_buffer_pool_t::name
u8 * name
Definition: buffer.h:463
vlib_buffer_t::flow_id
u32 flow_id
Generic flow identifier.
Definition: buffer.h:136
vlib_buffer_main_t::buffer_mem_size
uword buffer_mem_size
Definition: buffer.h:481
CLIB_CACHE_LINE_BYTES
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:59
vlib_buffer_main_t::buffer_mem_start
uword buffer_mem_start
Definition: buffer.h:480
vlib_buffer_t::current_length
u16 current_length
Nbytes between current data and the end of this buffer.
Definition: buffer.h:122
vlib_buffer_make_trace_handle
static u32 vlib_buffer_make_trace_handle(u32 thread, u32 pool_index)
Construct a trace handle from thread and pool index.
Definition: buffer.h:390
data
u8 data[128]
Definition: ipsec_types.api:92
vlib_buffer_main_t::ext_hdr_size
u16 ext_hdr_size
Definition: buffer.h:494
vlib_buffer_t::current_config_index
u32 current_config_index
Used by feature subgraph arcs to visit enabled feature nodes.
Definition: buffer.h:156
vlib_buffer_push_uninit
static void * vlib_buffer_push_uninit(vlib_buffer_t *b, u8 size)
Prepend uninitialized data to buffer.
Definition: buffer.h:363
size
u32 size
Definition: vhost_user.h:125
always_inline
#define always_inline
Definition: rdma_mlx5dv.h:23
error.h
foreach_vlib_buffer_flag
#define foreach_vlib_buffer_flag
Buffer Flags.
Definition: buffer.h:73
vlib_buffer_main_t::buffer_pools
vlib_buffer_pool_t * buffer_pools
Definition: buffer.h:482
vlib_buffer_pool_t::numa_node
u32 numa_node
Definition: buffer.h:457
u8x32
u8x32
Definition: vector_avx2.h:116
ASSERT
#define ASSERT(truth)
Definition: error_bootstrap.h:69
cache.h
vlib_buffer_get_tail
static u8 * vlib_buffer_get_tail(vlib_buffer_t *b)
Get pointer to the end of buffer's data.
Definition: buffer.h:338
VLIB_BUFFER_PRE_DATA_SIZE
#define VLIB_BUFFER_PRE_DATA_SIZE
Definition: buffer.h:51
u32
unsigned int u32
Definition: types.h:88
vlib_buffer_make_headroom
static void * vlib_buffer_make_headroom(vlib_buffer_t *b, u8 size)
Make head room, typically for packet headers.
Definition: buffer.h:378
vlib_buffer_pool_thread_t::n_cached
u32 n_cached
Definition: buffer.h:447
vlib_buffer_main_t::buffer_known_hash
uword * buffer_known_hash
Definition: buffer.h:488
vector.h
vlib_buffer_pool_t::n_avail
u32 n_avail
Definition: buffer.h:461
STRUCT_MARK
#define STRUCT_MARK(mark)
Definition: clib.h:78
vlib_main_t
Definition: main.h:102
vlib_buffer_get_current_va
static uword vlib_buffer_get_current_va(vlib_buffer_t *b)
Definition: buffer.h:265
clib_mem_page_sz_t
clib_mem_page_sz_t
Definition: mem.h:57
b
vlib_buffer_t ** b
Definition: nat44_ei_out2in.c:717
u8
unsigned char u8
Definition: types.h:56
clib_error_t
Definition: clib_error.h:21
serialize.h
vlib_buffer_get_current
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:257
vlib_buffer_t::data
u8 data[]
Packet data.
Definition: buffer.h:204
word
i64 word
Definition: types.h:111
vlib_buffer_pool_t::lock
clib_spinlock_t lock
Definition: buffer.h:464
rv
int __clib_unused rv
Definition: application.c:491
vlib_buffer_pool_thread_t
Definition: buffer.h:443
vlib_buffer_t::pre_data
u8 pre_data[VLIB_BUFFER_PRE_DATA_SIZE]
Space for inserting data before buffer start.
Definition: buffer.h:201
vlib_error_t
u16 vlib_error_t
Definition: error.h:45
u8x64
u8x64
Definition: vector_avx512.h:96
vlib_buffer_reset
static void vlib_buffer_reset(vlib_buffer_t *b)
Reset current header & length to state they were in when packet was received.
Definition: buffer.h:305
vlib_buffer_get_trace_index
static u32 vlib_buffer_get_trace_index(vlib_buffer_t *b)
Extract the trace (pool) index from a trace handle.
Definition: buffer.h:416
vlib_buffer_t::total_length_not_including_first_buffer
u32 total_length_not_including_first_buffer
Only valid for first buffer in chain.
Definition: buffer.h:176
vlib_buffer_t::opaque
u32 opaque[10]
Opaque data used by sub-graphs for their own purposes.
Definition: buffer.h:162
STATIC_ASSERT_SIZEOF
STATIC_ASSERT_SIZEOF(vlib_buffer_t, 128+VLIB_BUFFER_TRACE_TRAJECTORY_SZ+VLIB_BUFFER_PRE_DATA_SIZE)
VLIB_BUFFER_POOL_PER_THREAD_CACHE_SZ
#define VLIB_BUFFER_POOL_PER_THREAD_CACHE_SZ
Definition: buffer.h:441
vlib_buffer_t::flags
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index,...
Definition: buffer.h:133
vlib_buffer_t
VLIB buffer representation.
Definition: buffer.h:111
vlib_buffer_main_t::default_data_size
u32 default_data_size
Definition: buffer.h:495
vlib_buffer_pool_t::n_buffers
u32 n_buffers
Definition: buffer.h:460