blob: a1c2db377eff7d3dc72b58bdf33f1c6981ecbcb8 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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>
Damjan Marion6b0f5892017-07-27 04:01:24 -040047#include <vppinfra/lock.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070048#include <vlib/error.h> /* for vlib_error_t */
Damjan Marion19010202016-03-24 17:17:47 +010049
Dave Barach9b8ffd92016-07-08 08:13:45 -040050#include <vlib/config.h> /* for __PRE_DATA_SIZE */
Damjan Marion878c6092017-01-04 13:19:27 +010051#define VLIB_BUFFER_DATA_SIZE (2048)
Damjan Marion19010202016-03-24 17:17:47 +010052#define VLIB_BUFFER_PRE_DATA_SIZE __PRE_DATA_SIZE
Ed Warnickecb9cada2015-12-08 15:45:58 -070053
Damjan Mariondac03522018-02-01 15:30:13 +010054typedef u8 vlib_buffer_free_list_index_t;
55
Ed Warnickecb9cada2015-12-08 15:45:58 -070056/** \file
57 vlib buffer structure definition and a few select
58 access methods. This structure and the buffer allocation
Dave Barach9b8ffd92016-07-08 08:13:45 -040059 mechanism should perhaps live in vnet, but it would take a lot
Ed Warnickecb9cada2015-12-08 15:45:58 -070060 of typing to make it so.
61*/
Dave Barach9b8ffd92016-07-08 08:13:45 -040062
Damjan Mariondac03522018-02-01 15:30:13 +010063/**
64 * Buffer Flags
65 */
66#define foreach_vlib_buffer_flag \
67 _( 0, NON_DEFAULT_FREELIST, "non-default-fl") \
68 _( 1, IS_TRACED, 0) \
69 _( 2, NEXT_PRESENT, 0) \
70 _( 3, IS_RECYCLED, "is-recycled") \
71 _( 4, TOTAL_LENGTH_VALID, 0) \
72 _( 5, REPL_FAIL, "repl-fail") \
73 _( 6, RECYCLE, "recycle") \
74 _( 7, EXT_HDR_VALID, "ext-hdr-valid")
75
76/* NOTE: only buffer generic flags should be defined here, please consider
77 using user flags. i.e. src/vnet/buffer.h */
78
79enum
80{
81#define _(bit, name, v) VLIB_BUFFER_##name = (1 << (bit)),
82 foreach_vlib_buffer_flag
83#undef _
84};
85
86enum
87{
88#define _(bit, name, v) VLIB_BUFFER_LOG2_##name = (bit),
89 foreach_vlib_buffer_flag
90#undef _
91};
92
93 /* User defined buffer flags. */
94#define LOG2_VLIB_BUFFER_FLAG_USER(n) (32 - (n))
95#define VLIB_BUFFER_FLAG_USER(n) (1 << LOG2_VLIB_BUFFER_FLAG_USER(n))
96
Ed Warnickecb9cada2015-12-08 15:45:58 -070097/* VLIB buffer representation. */
Dave Barach9b8ffd92016-07-08 08:13:45 -040098typedef struct
99{
100 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Dave Barachf8690282017-03-01 11:38:02 -0500101 STRUCT_MARK (template_start);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102 /* Offset within data[] that we are currently processing.
Dave Barach9b8ffd92016-07-08 08:13:45 -0400103 If negative current header points into predata area. */
104 i16 current_data; /**< signed offset in data[], pre_data[]
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105 that we are currently processing.
106 If negative current header points into predata area.
107 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400108 u16 current_length; /**< Nbytes between current data and
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109 the end of this buffer.
110 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400111 u32 flags; /**< buffer flags:
Damjan Marion072401e2017-07-13 18:53:27 +0200112 <br> VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113 <br> VLIB_BUFFER_IS_TRACED: trace this buffer.
114 <br> VLIB_BUFFER_NEXT_PRESENT: this is a multi-chunk buffer.
115 <br> VLIB_BUFFER_TOTAL_LENGTH_VALID: as it says
116 <br> VLIB_BUFFER_REPL_FAIL: packet replication failure
Dave Barachb5adaea2016-06-17 14:09:56 -0400117 <br> VLIB_BUFFER_RECYCLE: as it says
Damjan Marionff542702017-02-27 11:29:20 +0100118 <br> VLIB_BUFFER_EXT_HDR_VALID: buffer contains valid external buffer manager header,
Dave Barachad41b352016-10-07 08:30:23 -0700119 set to avoid adding it to a flow report
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120 <br> VLIB_BUFFER_FLAG_USER(n): user-defined bit N
121 */
Damjan Marion072401e2017-07-13 18:53:27 +0200122
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123
Dave Barachf8690282017-03-01 11:38:02 -0500124 STRUCT_MARK (template_end);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126 u32 next_buffer; /**< Next buffer for this linked-list of buffers.
Dave Barach9b8ffd92016-07-08 08:13:45 -0400127 Only valid if VLIB_BUFFER_NEXT_PRESENT flag is set.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128 */
129
Dave Barach9b8ffd92016-07-08 08:13:45 -0400130 vlib_error_t error; /**< Error code for buffers to be enqueued
131 to error handler.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700132 */
Dave Barachd6534602016-06-14 18:38:02 -0400133 u32 current_config_index; /**< Used by feature subgraph arcs to
134 visit enabled feature nodes
135 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136
Damjan Marion87cd1192016-11-04 11:00:27 +0100137 u8 feature_arc_index; /**< Used to identify feature arcs by intermediate
138 feature node
139 */
140
Damjan Marionc47ed032017-01-25 14:18:03 +0100141 u8 n_add_refs; /**< Number of additional references to this buffer. */
142
Damjan Marion149ba772017-10-12 13:09:26 +0200143 u8 buffer_pool_index; /**< index of buffer pool this buffer belongs. */
144 u8 dont_waste_me[1]; /**< Available space in the (precious)
Damjan Marion87cd1192016-11-04 11:00:27 +0100145 first 32 octets of buffer metadata
146 Before allocating any of it, discussion required!
147 */
Dave Barachb5adaea2016-06-17 14:09:56 -0400148
Damjan Marion072401e2017-07-13 18:53:27 +0200149 u32 opaque[10]; /**< Opaque data used by sub-graphs for their own purposes.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150 See .../vnet/vnet/buffer.h
151 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400152 CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700153
Dave Barach9b8ffd92016-07-08 08:13:45 -0400154 u32 trace_index; /**< Specifies index into trace buffer
155 if VLIB_PACKET_IS_TRACED flag is set.
Dave Barachd6534602016-06-14 18:38:02 -0400156 */
Dave Barachb5adaea2016-06-17 14:09:56 -0400157 u32 recycle_count; /**< Used by L2 path recycle code */
Damjan Marion072401e2017-07-13 18:53:27 +0200158
159 u32 total_length_not_including_first_buffer;
160 /**< Only valid for first buffer in chain. Current length plus
161 total length given here give total number of bytes in buffer chain.
162 */
Damjan Mariondac03522018-02-01 15:30:13 +0100163 vlib_buffer_free_list_index_t free_list_index; /** < only used if
164 VLIB_BUFFER_NON_DEFAULT_FREELIST
165 flag is set */
166 u8 align_pad[3]; /**< available */
Dave Barach7bee7732017-10-18 18:48:11 -0400167 u32 opaque2[12]; /**< More opaque data, see ../vnet/vnet/buffer.h */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168
169 /***** end of second cache line */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400170 CLIB_CACHE_LINE_ALIGN_MARK (cacheline2);
171 u8 pre_data[VLIB_BUFFER_PRE_DATA_SIZE]; /**< Space for inserting data
Damjan Marion19010202016-03-24 17:17:47 +0100172 before buffer start.
173 Packet rewrite string will be
174 rewritten backwards and may extend
175 back before buffer->data[0].
176 Must come directly before packet data.
177 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179 u8 data[0]; /**< Packet data. Hardware DMA here */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400180} vlib_buffer_t; /* Must be a multiple of 64B. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181
Damjan Marion19010202016-03-24 17:17:47 +0100182#define VLIB_BUFFER_HDR_SIZE (sizeof(vlib_buffer_t) - VLIB_BUFFER_PRE_DATA_SIZE)
183
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184/** \brief Prefetch buffer metadata.
185 The first 64 bytes of buffer contains most header information
186
187 @param b - (vlib_buffer_t *) pointer to the buffer
188 @param type - LOAD, STORE. In most cases, STORE is the right answer
189*/
190
191#define vlib_prefetch_buffer_header(b,type) CLIB_PREFETCH (b, 64, type)
192
193always_inline vlib_buffer_t *
194vlib_buffer_next_contiguous (vlib_buffer_t * b, u32 buffer_bytes)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400195{
196 return (void *) (b + 1) + buffer_bytes;
197}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198
199always_inline void
200vlib_buffer_struct_is_sane (vlib_buffer_t * b)
201{
202 ASSERT (sizeof (b[0]) % 64 == 0);
203
204 /* Rewrite data must be before and contiguous with packet data. */
205 ASSERT (b->pre_data + VLIB_BUFFER_PRE_DATA_SIZE == b->data);
206}
207
208/** \brief Get pointer to current data to process
209
210 @param b - (vlib_buffer_t *) pointer to the buffer
211 @return - (void *) (b->data + b->current_data)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400212*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213
214always_inline void *
215vlib_buffer_get_current (vlib_buffer_t * b)
216{
217 /* Check bounds. */
218 ASSERT ((signed) b->current_data >= (signed) -VLIB_BUFFER_PRE_DATA_SIZE);
219 return b->data + b->current_data;
220}
221
222/** \brief Advance current data pointer by the supplied (signed!) amount
223
224 @param b - (vlib_buffer_t *) pointer to the buffer
225 @param l - (word) signed increment
Dave Barach9b8ffd92016-07-08 08:13:45 -0400226*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227always_inline void
228vlib_buffer_advance (vlib_buffer_t * b, word l)
229{
230 ASSERT (b->current_length >= l);
231 b->current_data += l;
232 b->current_length -= l;
233}
234
Filip Tehlar816f4372017-04-26 16:09:06 +0200235/** \brief Check if there is enough space in buffer to advance
236
237 @param b - (vlib_buffer_t *) pointer to the buffer
238 @param l - (word) size to check
239 @return - 0 if there is less space than 'l' in buffer
240*/
241always_inline u8
242vlib_buffer_has_space (vlib_buffer_t * b, word l)
243{
244 return b->current_length >= l;
245}
246
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247/** \brief Reset current header & length to state they were in when
248 packet was received.
249
250 @param b - (vlib_buffer_t *) pointer to the buffer
251*/
252
253always_inline void
254vlib_buffer_reset (vlib_buffer_t * b)
255{
256 b->current_length += clib_max (b->current_data, 0);
257 b->current_data = 0;
258}
259
260/** \brief Get pointer to buffer's opaque data array
261
262 @param b - (vlib_buffer_t *) pointer to the buffer
263 @return - (void *) b->opaque
264*/
265always_inline void *
266vlib_get_buffer_opaque (vlib_buffer_t * b)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400267{
268 return (void *) b->opaque;
269}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270
271/** \brief Get pointer to buffer's opaque2 data array
272
273 @param b - (vlib_buffer_t *) pointer to the buffer
274 @return - (void *) b->opaque2
275*/
276always_inline void *
277vlib_get_buffer_opaque2 (vlib_buffer_t * b)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400278{
279 return (void *) b->opaque2;
280}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281
Dave Barach68b0fb02017-02-28 15:15:56 -0500282/** \brief Get pointer to the end of buffer's data
283 * @param b pointer to the buffer
284 * @return pointer to tail of packet's data
285 */
286always_inline u8 *
287vlib_buffer_get_tail (vlib_buffer_t * b)
288{
289 return b->data + b->current_data + b->current_length;
290}
291
292/** \brief Append uninitialized data to buffer
293 * @param b pointer to the buffer
294 * @param size number of uninitialized bytes
295 * @return pointer to beginning of uninitialized data
296 */
297always_inline void *
298vlib_buffer_put_uninit (vlib_buffer_t * b, u8 size)
299{
300 void *p = vlib_buffer_get_tail (b);
301 /* XXX make sure there's enough space */
302 b->current_length += size;
303 return p;
304}
305
306/** \brief Prepend uninitialized data to buffer
307 * @param b pointer to the buffer
308 * @param size number of uninitialized bytes
309 * @return pointer to beginning of uninitialized data
310 */
311always_inline void *
312vlib_buffer_push_uninit (vlib_buffer_t * b, u8 size)
313{
314 ASSERT (b->current_data + VLIB_BUFFER_PRE_DATA_SIZE >= size);
315 b->current_data -= size;
316 b->current_length += size;
317
318 return vlib_buffer_get_current (b);
319}
320
321/** \brief Make head room, typically for packet headers
322 * @param b pointer to the buffer
323 * @param size number of head room bytes
324 * @return pointer to start of buffer (current data)
325 */
326always_inline void *
327vlib_buffer_make_headroom (vlib_buffer_t * b, u8 size)
328{
329 ASSERT (b->current_data + VLIB_BUFFER_PRE_DATA_SIZE >= size);
330 b->current_data += size;
331 return vlib_buffer_get_current (b);
332}
333
334/** \brief Retrieve bytes from buffer head
335 * @param b pointer to the buffer
336 * @param size number of bytes to pull
337 * @return pointer to start of buffer (current data)
338 */
339always_inline void *
340vlib_buffer_pull (vlib_buffer_t * b, u8 size)
341{
342 if (b->current_length + VLIB_BUFFER_PRE_DATA_SIZE < size)
343 return 0;
344
345 void *data = vlib_buffer_get_current (b);
346 vlib_buffer_advance (b, size);
347 return data;
348}
349
Ed Warnickecb9cada2015-12-08 15:45:58 -0700350/* Forward declaration. */
351struct vlib_main_t;
352
Dave Barach9b8ffd92016-07-08 08:13:45 -0400353typedef struct vlib_buffer_free_list_t
354{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700355 /* Template buffer used to initialize first 16 bytes of buffers
356 allocated on this free list. */
357 vlib_buffer_t buffer_init_template;
358
359 /* Our index into vlib_main_t's buffer_free_list_pool. */
Damjan Mariondac03522018-02-01 15:30:13 +0100360 vlib_buffer_free_list_index_t index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361
362 /* Number of data bytes for buffers in this free list. */
363 u32 n_data_bytes;
364
365 /* Number of buffers to allocate when we need to allocate new buffers
366 from physmem heap. */
367 u32 min_n_buffers_each_physmem_alloc;
368
369 /* Total number of buffers allocated from this free list. */
370 u32 n_alloc;
371
Damjan Marionbd69a5f2017-02-05 23:44:42 +0100372 /* Vector of free buffers. Each element is a byte offset into I/O heap. */
373 u32 *buffers;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700374
Damjan Marionb6a8ed72017-08-29 00:15:35 +0200375 /* global vector of free buffers, used only on main thread.
376 Bufers are returned to global buffers only in case when number of
377 buffers on free buffers list grows about threshold */
378 u32 *global_buffers;
379 clib_spinlock_t global_buffers_lock;
380
Ed Warnickecb9cada2015-12-08 15:45:58 -0700381 /* Memory chunks allocated for this free list
382 recorded here so they can be freed when free list
383 is deleted. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400384 void **buffer_memory_allocated;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385
386 /* Free list name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400387 u8 *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700388
389 /* Callback functions to initialize newly allocated buffers.
390 If null buffers are zeroed. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400391 void (*buffer_init_function) (struct vlib_main_t * vm,
392 struct vlib_buffer_free_list_t * fl,
393 u32 * buffers, u32 n_buffers);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700394
395 /* Callback function to announce that buffers have been
396 added to the freelist */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400397 void (*buffers_added_to_freelist_function)
398 (struct vlib_main_t * vm, struct vlib_buffer_free_list_t * fl);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700399
400 uword buffer_init_function_opaque;
401} __attribute__ ((aligned (16))) vlib_buffer_free_list_t;
402
Damjan Marionc8a26c62017-11-24 20:15:23 +0100403typedef uword (vlib_buffer_fill_free_list_cb_t) (struct vlib_main_t * vm,
404 vlib_buffer_free_list_t * fl,
405 uword min_free_buffers);
Damjan Marion04f3db32017-11-10 21:55:45 +0100406typedef void (vlib_buffer_free_cb_t) (struct vlib_main_t * vm, u32 * buffers,
407 u32 n_buffers);
408typedef void (vlib_buffer_free_no_next_cb_t) (struct vlib_main_t * vm,
409 u32 * buffers, u32 n_buffers);
410
Dave Barach9b8ffd92016-07-08 08:13:45 -0400411typedef struct
412{
Damjan Marionc8a26c62017-11-24 20:15:23 +0100413 vlib_buffer_fill_free_list_cb_t *vlib_buffer_fill_free_list_cb;
Damjan Marion04f3db32017-11-10 21:55:45 +0100414 vlib_buffer_free_cb_t *vlib_buffer_free_cb;
415 vlib_buffer_free_no_next_cb_t *vlib_buffer_free_no_next_cb;
Damjan Marion878c6092017-01-04 13:19:27 +0100416 void (*vlib_packet_template_init_cb) (struct vlib_main_t * vm, void *t,
417 void *packet_data,
418 uword n_packet_data_bytes,
419 uword
420 min_n_buffers_each_physmem_alloc,
421 u8 * name);
422 void (*vlib_buffer_delete_free_list_cb) (struct vlib_main_t * vm,
Damjan Mariondac03522018-02-01 15:30:13 +0100423 vlib_buffer_free_list_index_t
424 free_list_index);
Damjan Marion878c6092017-01-04 13:19:27 +0100425} vlib_buffer_callbacks_t;
426
Damjan Marion04a7f052017-07-10 15:06:17 +0200427extern vlib_buffer_callbacks_t *vlib_buffer_callbacks;
428
Damjan Marion878c6092017-01-04 13:19:27 +0100429typedef struct
430{
Damjan Marion04a7f052017-07-10 15:06:17 +0200431 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Damjan Marion149ba772017-10-12 13:09:26 +0200432 uword start;
433 uword size;
434 vlib_physmem_region_index_t physmem_region;
435} vlib_buffer_pool_t;
436
437typedef struct
438{
439 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Damjan Marion04a7f052017-07-10 15:06:17 +0200440 /* Virtual memory address and size of buffer memory, used for calculating
441 buffer index */
442 uword buffer_mem_start;
443 uword buffer_mem_size;
Damjan Marion149ba772017-10-12 13:09:26 +0200444 vlib_buffer_pool_t *buffer_pools;
Damjan Marion04a7f052017-07-10 15:06:17 +0200445
Ed Warnickecb9cada2015-12-08 15:45:58 -0700446 /* Buffer free callback, for subversive activities */
Damjan Marion04a7f052017-07-10 15:06:17 +0200447 u32 (*buffer_free_callback) (struct vlib_main_t * vm,
448 u32 * buffers,
449 u32 n_buffers, u32 follow_buffer_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700450 /* Pool of buffer free lists.
451 Multiple free lists exist for packet generator which uses
452 separate free lists for each packet stream --- so as to avoid
453 initializing static data for each packet generated. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400454 vlib_buffer_free_list_t *buffer_free_list_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700455#define VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX (0)
Damjan Marion19010202016-03-24 17:17:47 +0100456#define VLIB_BUFFER_DEFAULT_FREE_LIST_BYTES VLIB_BUFFER_DATA_SIZE
Ed Warnickecb9cada2015-12-08 15:45:58 -0700457
458 /* Hash table mapping buffer size (rounded to next unit of
459 sizeof (vlib_buffer_t)) to free list index. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400460 uword *free_list_by_size;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700461
462 /* Hash table mapping buffer index into number
463 0 => allocated but free, 1 => allocated and not-free.
464 If buffer index is not in hash table then this buffer
465 has never been allocated. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400466 uword *buffer_known_hash;
Damjan Marion6b0f5892017-07-27 04:01:24 -0400467 clib_spinlock_t buffer_known_hash_lockp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700468
469 /* List of free-lists needing Blue Light Special announcements */
470 vlib_buffer_free_list_t **announce_list;
471
Damjan Marion878c6092017-01-04 13:19:27 +0100472 /* Callbacks */
473 vlib_buffer_callbacks_t cb;
Damjan Marion04a7f052017-07-10 15:06:17 +0200474 int callbacks_registered;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700475} vlib_buffer_main_t;
476
Damjan Marion149ba772017-10-12 13:09:26 +0200477u8 vlib_buffer_add_physmem_region (struct vlib_main_t *vm,
478 vlib_physmem_region_index_t region);
479
Damjan Marion49d66f12017-07-20 18:10:35 +0200480clib_error_t *vlib_buffer_main_init (struct vlib_main_t *vm);
Damjan Marion878c6092017-01-04 13:19:27 +0100481
Dave Barach9b8ffd92016-07-08 08:13:45 -0400482typedef struct
483{
484 struct vlib_main_t *vlib_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700485
486 u32 first_buffer, last_buffer;
487
Dave Barach9b8ffd92016-07-08 08:13:45 -0400488 union
489 {
490 struct
491 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700492 /* Total accumulated bytes in chain starting with first_buffer. */
493 u32 n_total_data_bytes;
494
495 /* Max number of bytes to accumulate in chain starting with first_buffer.
Dave Barach9b8ffd92016-07-08 08:13:45 -0400496 As this limit is reached buffers are enqueued to next node. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700497 u32 max_n_data_bytes_per_chain;
498
499 /* Next node to enqueue buffers to relative to current process node. */
500 u32 next_index;
501
502 /* Free list to use to allocate new buffers. */
Damjan Mariondac03522018-02-01 15:30:13 +0100503 vlib_buffer_free_list_index_t free_list_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700504 } tx;
505
Dave Barach9b8ffd92016-07-08 08:13:45 -0400506 struct
507 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700508 /* CLIB fifo of buffer indices waiting to be unserialized. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400509 u32 *buffer_fifo;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700510
511 /* Event type used to signal that RX buffers have been added to fifo. */
512 uword ready_one_time_event;
513 } rx;
514 };
515} vlib_serialize_buffer_main_t;
516
Dave Barach9b8ffd92016-07-08 08:13:45 -0400517void serialize_open_vlib_buffer (serialize_main_t * m, struct vlib_main_t *vm,
518 vlib_serialize_buffer_main_t * sm);
519void unserialize_open_vlib_buffer (serialize_main_t * m,
520 struct vlib_main_t *vm,
521 vlib_serialize_buffer_main_t * sm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700522
523u32 serialize_close_vlib_buffer (serialize_main_t * m);
524void unserialize_close_vlib_buffer (serialize_main_t * m);
525void *vlib_set_buffer_free_callback (struct vlib_main_t *vm, void *fp);
526
527always_inline u32
528serialize_vlib_buffer_n_bytes (serialize_main_t * m)
529{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400530 serialize_stream_t *s = &m->stream;
531 vlib_serialize_buffer_main_t *sm
532 = uword_to_pointer (m->stream.data_function_opaque,
533 vlib_serialize_buffer_main_t *);
534 return sm->tx.n_total_data_bytes + s->current_buffer_index +
535 vec_len (s->overflow_buffer);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536}
537
Ed Warnickecb9cada2015-12-08 15:45:58 -0700538/*
539 */
540
541/** \brief Compile time buffer trajectory tracing option
Dave Barach9b8ffd92016-07-08 08:13:45 -0400542 Turn this on if you run into "bad monkey" contexts,
543 and you want to know exactly which nodes they've visited...
Ed Warnickecb9cada2015-12-08 15:45:58 -0700544 See vlib/main.c...
545*/
546#define VLIB_BUFFER_TRACE_TRAJECTORY 0
547
548#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
Dave Barach7bee7732017-10-18 18:48:11 -0400549extern void (*vlib_buffer_trace_trajectory_cb) (vlib_buffer_t * b, u32 index);
550extern void (*vlib_buffer_trace_trajectory_init_cb) (vlib_buffer_t * b);
551extern void vlib_buffer_trace_trajectory_init (vlib_buffer_t * b);
552#define VLIB_BUFFER_TRACE_TRAJECTORY_INIT(b) \
553 vlib_buffer_trace_trajectory_init (b);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400554#else
Ed Warnickecb9cada2015-12-08 15:45:58 -0700555#define VLIB_BUFFER_TRACE_TRAJECTORY_INIT(b)
556#endif /* VLIB_BUFFER_TRACE_TRAJECTORY */
557
558#endif /* included_vlib_buffer_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400559
Damjan Marion04a7f052017-07-10 15:06:17 +0200560#define VLIB_BUFFER_REGISTER_CALLBACKS(x,...) \
561 __VA_ARGS__ vlib_buffer_callbacks_t __##x##_buffer_callbacks; \
562static void __vlib_add_buffer_callbacks_t_##x (void) \
563 __attribute__((__constructor__)) ; \
564static void __vlib_add_buffer_callbacks_t_##x (void) \
565{ \
566 if (vlib_buffer_callbacks) \
567 clib_panic ("vlib buffer callbacks already registered"); \
568 vlib_buffer_callbacks = &__##x##_buffer_callbacks; \
569} \
570__VA_ARGS__ vlib_buffer_callbacks_t __##x##_buffer_callbacks
571
Dave Barach9b8ffd92016-07-08 08:13:45 -0400572/*
573 * fd.io coding-style-patch-verification: ON
574 *
575 * Local Variables:
576 * eval: (c-set-style "gnu")
577 * End:
578 */