blob: 505a5839a1810cbe4d3becf6c8c172ebee40fcea [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 Marionbd0da972018-10-31 10:59:02 +010054/* Minimum buffer chain segment size. Does not apply to last buffer in chain.
55 Dataplane code can safely asume that specified amount of data is not split
56 into 2 chained buffers */
57#define VLIB_BUFFER_MIN_CHAIN_SEG_SIZE (128)
58
59/* Amount of head buffer data copied to each replica head buffer */
60#define VLIB_BUFFER_CLONE_HEAD_SIZE (256)
61
Damjan Mariondac03522018-02-01 15:30:13 +010062typedef u8 vlib_buffer_free_list_index_t;
63
Ed Warnickecb9cada2015-12-08 15:45:58 -070064/** \file
65 vlib buffer structure definition and a few select
66 access methods. This structure and the buffer allocation
Dave Barach9b8ffd92016-07-08 08:13:45 -040067 mechanism should perhaps live in vnet, but it would take a lot
Ed Warnickecb9cada2015-12-08 15:45:58 -070068 of typing to make it so.
69*/
Dave Barach9b8ffd92016-07-08 08:13:45 -040070
Damjan Mariondac03522018-02-01 15:30:13 +010071/**
72 * Buffer Flags
73 */
74#define foreach_vlib_buffer_flag \
Damjan Marion36eb7c22019-01-18 20:45:30 +010075 _( 0, IS_TRACED, 0) \
76 _( 1, NEXT_PRESENT, 0) \
77 _( 2, TOTAL_LENGTH_VALID, 0) \
78 _( 3, EXT_HDR_VALID, "ext-hdr-valid")
Damjan Mariondac03522018-02-01 15:30:13 +010079
80/* NOTE: only buffer generic flags should be defined here, please consider
81 using user flags. i.e. src/vnet/buffer.h */
82
83enum
84{
85#define _(bit, name, v) VLIB_BUFFER_##name = (1 << (bit)),
86 foreach_vlib_buffer_flag
87#undef _
88};
89
90enum
91{
92#define _(bit, name, v) VLIB_BUFFER_LOG2_##name = (bit),
93 foreach_vlib_buffer_flag
94#undef _
95};
96
97 /* User defined buffer flags. */
98#define LOG2_VLIB_BUFFER_FLAG_USER(n) (32 - (n))
99#define VLIB_BUFFER_FLAG_USER(n) (1 << LOG2_VLIB_BUFFER_FLAG_USER(n))
Damjan Marion36eb7c22019-01-18 20:45:30 +0100100#define VLIB_BUFFER_FLAGS_ALL (0x0f)
Damjan Mariondac03522018-02-01 15:30:13 +0100101
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102/* VLIB buffer representation. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400103typedef struct
104{
105 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106 /* Offset within data[] that we are currently processing.
Dave Barach9b8ffd92016-07-08 08:13:45 -0400107 If negative current header points into predata area. */
108 i16 current_data; /**< signed offset in data[], pre_data[]
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109 that we are currently processing.
110 If negative current header points into predata area.
111 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400112 u16 current_length; /**< Nbytes between current data and
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113 the end of this buffer.
114 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400115 u32 flags; /**< buffer flags:
Damjan Marion072401e2017-07-13 18:53:27 +0200116 <br> VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700117 <br> VLIB_BUFFER_IS_TRACED: trace this buffer.
118 <br> VLIB_BUFFER_NEXT_PRESENT: this is a multi-chunk buffer.
119 <br> VLIB_BUFFER_TOTAL_LENGTH_VALID: as it says
Damjan Marionff542702017-02-27 11:29:20 +0100120 <br> VLIB_BUFFER_EXT_HDR_VALID: buffer contains valid external buffer manager header,
Dave Barachad41b352016-10-07 08:30:23 -0700121 set to avoid adding it to a flow report
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122 <br> VLIB_BUFFER_FLAG_USER(n): user-defined bit N
123 */
Damjan Marion072401e2017-07-13 18:53:27 +0200124
Damjan Marionaa682a32018-04-26 22:45:40 +0200125 u32 flow_id; /**< Generic flow identifier */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126
Ed Warnickecb9cada2015-12-08 15:45:58 -0700127
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128 u32 next_buffer; /**< Next buffer for this linked-list of buffers.
Dave Barach9b8ffd92016-07-08 08:13:45 -0400129 Only valid if VLIB_BUFFER_NEXT_PRESENT flag is set.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130 */
131
Dave Barachd6534602016-06-14 18:38:02 -0400132 u32 current_config_index; /**< Used by feature subgraph arcs to
133 visit enabled feature nodes
134 */
Damjan Marionaa682a32018-04-26 22:45:40 +0200135 vlib_error_t error; /**< Error code for buffers to be enqueued
136 to error handler.
Damjan Marion87cd1192016-11-04 11:00:27 +0100137 */
Damjan Marionc47ed032017-01-25 14:18:03 +0100138 u8 n_add_refs; /**< Number of additional references to this buffer. */
139
Damjan Marion149ba772017-10-12 13:09:26 +0200140 u8 buffer_pool_index; /**< index of buffer pool this buffer belongs. */
Dave Barachb5adaea2016-06-17 14:09:56 -0400141
Damjan Marion072401e2017-07-13 18:53:27 +0200142 u32 opaque[10]; /**< Opaque data used by sub-graphs for their own purposes.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143 See .../vnet/vnet/buffer.h
144 */
Damjan Marione58041f2019-01-18 19:56:09 +0100145
146 STRUCT_MARK (template_end); /**< part of buffer metadata which is
147 initialized on alloc ends here. It may be
148 different than cacheline on systems with
149 buffer cacheline size */
150
151 /***** end of first cache line */
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 Marion36eb7c22019-01-18 20:45:30 +0100163 u8 align_pad[4]; /**< available */
Dave Barach7bee7732017-10-18 18:48:11 -0400164 u32 opaque2[12]; /**< More opaque data, see ../vnet/vnet/buffer.h */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700165
166 /***** end of second cache line */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400167 CLIB_CACHE_LINE_ALIGN_MARK (cacheline2);
168 u8 pre_data[VLIB_BUFFER_PRE_DATA_SIZE]; /**< Space for inserting data
Damjan Marion19010202016-03-24 17:17:47 +0100169 before buffer start.
170 Packet rewrite string will be
171 rewritten backwards and may extend
172 back before buffer->data[0].
173 Must come directly before packet data.
174 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176 u8 data[0]; /**< Packet data. Hardware DMA here */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400177} vlib_buffer_t; /* Must be a multiple of 64B. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178
Damjan Marion19010202016-03-24 17:17:47 +0100179#define VLIB_BUFFER_HDR_SIZE (sizeof(vlib_buffer_t) - VLIB_BUFFER_PRE_DATA_SIZE)
180
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181/** \brief Prefetch buffer metadata.
182 The first 64 bytes of buffer contains most header information
183
184 @param b - (vlib_buffer_t *) pointer to the buffer
185 @param type - LOAD, STORE. In most cases, STORE is the right answer
186*/
187
188#define vlib_prefetch_buffer_header(b,type) CLIB_PREFETCH (b, 64, type)
Damjan Mariond30bf012018-11-18 23:48:43 +0100189#define vlib_prefetch_buffer_data(b,type) \
190 CLIB_PREFETCH (vlib_buffer_get_current(b), CLIB_CACHE_LINE_BYTES, type)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192always_inline void
193vlib_buffer_struct_is_sane (vlib_buffer_t * b)
194{
195 ASSERT (sizeof (b[0]) % 64 == 0);
196
197 /* Rewrite data must be before and contiguous with packet data. */
198 ASSERT (b->pre_data + VLIB_BUFFER_PRE_DATA_SIZE == b->data);
199}
200
Damjan Marion8f499362018-10-22 13:07:02 +0200201always_inline uword
202vlib_buffer_get_va (vlib_buffer_t * b)
203{
204 return pointer_to_uword (b->data);
205}
206
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207/** \brief Get pointer to current data to process
208
209 @param b - (vlib_buffer_t *) pointer to the buffer
210 @return - (void *) (b->data + b->current_data)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400211*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212
213always_inline void *
214vlib_buffer_get_current (vlib_buffer_t * b)
215{
216 /* Check bounds. */
217 ASSERT ((signed) b->current_data >= (signed) -VLIB_BUFFER_PRE_DATA_SIZE);
218 return b->data + b->current_data;
219}
220
Damjan Marion8f499362018-10-22 13:07:02 +0200221always_inline uword
222vlib_buffer_get_current_va (vlib_buffer_t * b)
223{
224 return vlib_buffer_get_va (b) + b->current_data;
225}
226
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227/** \brief Advance current data pointer by the supplied (signed!) amount
228
229 @param b - (vlib_buffer_t *) pointer to the buffer
230 @param l - (word) signed increment
Dave Barach9b8ffd92016-07-08 08:13:45 -0400231*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232always_inline void
233vlib_buffer_advance (vlib_buffer_t * b, word l)
234{
235 ASSERT (b->current_length >= l);
236 b->current_data += l;
237 b->current_length -= l;
Damjan Marionbd0da972018-10-31 10:59:02 +0100238
239 ASSERT ((b->flags & VLIB_BUFFER_NEXT_PRESENT) == 0 ||
240 b->current_length >= VLIB_BUFFER_MIN_CHAIN_SEG_SIZE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241}
242
Filip Tehlar816f4372017-04-26 16:09:06 +0200243/** \brief Check if there is enough space in buffer to advance
244
245 @param b - (vlib_buffer_t *) pointer to the buffer
246 @param l - (word) size to check
247 @return - 0 if there is less space than 'l' in buffer
248*/
249always_inline u8
250vlib_buffer_has_space (vlib_buffer_t * b, word l)
251{
252 return b->current_length >= l;
253}
254
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255/** \brief Reset current header & length to state they were in when
256 packet was received.
257
258 @param b - (vlib_buffer_t *) pointer to the buffer
259*/
260
261always_inline void
262vlib_buffer_reset (vlib_buffer_t * b)
263{
264 b->current_length += clib_max (b->current_data, 0);
265 b->current_data = 0;
266}
267
268/** \brief Get pointer to buffer's opaque data array
269
270 @param b - (vlib_buffer_t *) pointer to the buffer
271 @return - (void *) b->opaque
272*/
273always_inline void *
274vlib_get_buffer_opaque (vlib_buffer_t * b)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400275{
276 return (void *) b->opaque;
277}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278
279/** \brief Get pointer to buffer's opaque2 data array
280
281 @param b - (vlib_buffer_t *) pointer to the buffer
282 @return - (void *) b->opaque2
283*/
284always_inline void *
285vlib_get_buffer_opaque2 (vlib_buffer_t * b)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400286{
287 return (void *) b->opaque2;
288}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700289
Dave Barach68b0fb02017-02-28 15:15:56 -0500290/** \brief Get pointer to the end of buffer's data
291 * @param b pointer to the buffer
292 * @return pointer to tail of packet's data
293 */
294always_inline u8 *
295vlib_buffer_get_tail (vlib_buffer_t * b)
296{
297 return b->data + b->current_data + b->current_length;
298}
299
300/** \brief Append uninitialized data to buffer
301 * @param b pointer to the buffer
302 * @param size number of uninitialized bytes
303 * @return pointer to beginning of uninitialized data
304 */
305always_inline void *
Eyal Barid3d42412018-11-05 13:29:25 +0200306vlib_buffer_put_uninit (vlib_buffer_t * b, u16 size)
Dave Barach68b0fb02017-02-28 15:15:56 -0500307{
308 void *p = vlib_buffer_get_tail (b);
309 /* XXX make sure there's enough space */
310 b->current_length += size;
311 return p;
312}
313
314/** \brief Prepend uninitialized data to buffer
315 * @param b pointer to the buffer
316 * @param size number of uninitialized bytes
317 * @return pointer to beginning of uninitialized data
318 */
319always_inline void *
320vlib_buffer_push_uninit (vlib_buffer_t * b, u8 size)
321{
322 ASSERT (b->current_data + VLIB_BUFFER_PRE_DATA_SIZE >= size);
323 b->current_data -= size;
324 b->current_length += size;
325
326 return vlib_buffer_get_current (b);
327}
328
329/** \brief Make head room, typically for packet headers
330 * @param b pointer to the buffer
331 * @param size number of head room bytes
332 * @return pointer to start of buffer (current data)
333 */
334always_inline void *
335vlib_buffer_make_headroom (vlib_buffer_t * b, u8 size)
336{
337 ASSERT (b->current_data + VLIB_BUFFER_PRE_DATA_SIZE >= size);
338 b->current_data += size;
339 return vlib_buffer_get_current (b);
340}
341
342/** \brief Retrieve bytes from buffer head
343 * @param b pointer to the buffer
344 * @param size number of bytes to pull
345 * @return pointer to start of buffer (current data)
346 */
347always_inline void *
348vlib_buffer_pull (vlib_buffer_t * b, u8 size)
349{
350 if (b->current_length + VLIB_BUFFER_PRE_DATA_SIZE < size)
351 return 0;
352
353 void *data = vlib_buffer_get_current (b);
354 vlib_buffer_advance (b, size);
355 return data;
356}
357
Ed Warnickecb9cada2015-12-08 15:45:58 -0700358/* Forward declaration. */
359struct vlib_main_t;
360
Dave Barach9b8ffd92016-07-08 08:13:45 -0400361typedef struct vlib_buffer_free_list_t
362{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700363 /* Template buffer used to initialize first 16 bytes of buffers
364 allocated on this free list. */
365 vlib_buffer_t buffer_init_template;
366
367 /* Our index into vlib_main_t's buffer_free_list_pool. */
Damjan Mariondac03522018-02-01 15:30:13 +0100368 vlib_buffer_free_list_index_t index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369
Damjan Mariond1274cb2018-03-13 21:32:17 +0100370 /* Number of buffers to allocate when we need to allocate new buffers */
371 u32 min_n_buffers_each_alloc;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700372
373 /* Total number of buffers allocated from this free list. */
374 u32 n_alloc;
375
Damjan Marionbd69a5f2017-02-05 23:44:42 +0100376 /* Vector of free buffers. Each element is a byte offset into I/O heap. */
377 u32 *buffers;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378
Damjan Mariond1274cb2018-03-13 21:32:17 +0100379 /* index of buffer pool used to get / put buffers */
380 u8 buffer_pool_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700381
382 /* Free list name. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400383 u8 *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384
385 /* Callback functions to initialize newly allocated buffers.
386 If null buffers are zeroed. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400387 void (*buffer_init_function) (struct vlib_main_t * vm,
388 struct vlib_buffer_free_list_t * fl,
389 u32 * buffers, u32 n_buffers);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700390
Ed Warnickecb9cada2015-12-08 15:45:58 -0700391 uword buffer_init_function_opaque;
392} __attribute__ ((aligned (16))) vlib_buffer_free_list_t;
393
Damjan Marionc8a26c62017-11-24 20:15:23 +0100394typedef uword (vlib_buffer_fill_free_list_cb_t) (struct vlib_main_t * vm,
395 vlib_buffer_free_list_t * fl,
396 uword min_free_buffers);
Damjan Marion04f3db32017-11-10 21:55:45 +0100397typedef void (vlib_buffer_free_cb_t) (struct vlib_main_t * vm, u32 * buffers,
398 u32 n_buffers);
399typedef void (vlib_buffer_free_no_next_cb_t) (struct vlib_main_t * vm,
400 u32 * buffers, u32 n_buffers);
401
Dave Barach9b8ffd92016-07-08 08:13:45 -0400402typedef struct
403{
Damjan Marionc8a26c62017-11-24 20:15:23 +0100404 vlib_buffer_fill_free_list_cb_t *vlib_buffer_fill_free_list_cb;
Damjan Marion04f3db32017-11-10 21:55:45 +0100405 vlib_buffer_free_cb_t *vlib_buffer_free_cb;
406 vlib_buffer_free_no_next_cb_t *vlib_buffer_free_no_next_cb;
Damjan Marion878c6092017-01-04 13:19:27 +0100407} vlib_buffer_callbacks_t;
408
Damjan Marion04a7f052017-07-10 15:06:17 +0200409extern vlib_buffer_callbacks_t *vlib_buffer_callbacks;
410
Damjan Marion878c6092017-01-04 13:19:27 +0100411typedef struct
412{
Damjan Marion04a7f052017-07-10 15:06:17 +0200413 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Damjan Marion149ba772017-10-12 13:09:26 +0200414 uword start;
415 uword size;
Damjan Mariond1274cb2018-03-13 21:32:17 +0100416 uword log2_page_size;
Damjan Marion68b4da62018-09-30 18:26:20 +0200417 u32 physmem_map_index;
418 u32 buffer_size;
Damjan Mariond1274cb2018-03-13 21:32:17 +0100419 u32 *buffers;
Damjan Mariond1274cb2018-03-13 21:32:17 +0100420 clib_spinlock_t lock;
Damjan Marion149ba772017-10-12 13:09:26 +0200421} vlib_buffer_pool_t;
422
423typedef struct
424{
425 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Damjan Marion04a7f052017-07-10 15:06:17 +0200426 /* Virtual memory address and size of buffer memory, used for calculating
427 buffer index */
428 uword buffer_mem_start;
429 uword buffer_mem_size;
Damjan Marion149ba772017-10-12 13:09:26 +0200430 vlib_buffer_pool_t *buffer_pools;
Damjan Marion04a7f052017-07-10 15:06:17 +0200431
Ed Warnickecb9cada2015-12-08 15:45:58 -0700432 /* Buffer free callback, for subversive activities */
Damjan Marion04a7f052017-07-10 15:06:17 +0200433 u32 (*buffer_free_callback) (struct vlib_main_t * vm,
434 u32 * buffers,
435 u32 n_buffers, u32 follow_buffer_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700436#define VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX (0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700437
438 /* Hash table mapping buffer size (rounded to next unit of
439 sizeof (vlib_buffer_t)) to free list index. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400440 uword *free_list_by_size;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700441
442 /* Hash table mapping buffer index into number
443 0 => allocated but free, 1 => allocated and not-free.
444 If buffer index is not in hash table then this buffer
445 has never been allocated. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400446 uword *buffer_known_hash;
Damjan Marion6b0f5892017-07-27 04:01:24 -0400447 clib_spinlock_t buffer_known_hash_lockp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448
Damjan Marion878c6092017-01-04 13:19:27 +0100449 /* Callbacks */
450 vlib_buffer_callbacks_t cb;
Damjan Marion04a7f052017-07-10 15:06:17 +0200451 int callbacks_registered;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700452} vlib_buffer_main_t;
453
Damjan Mariond50e3472019-01-20 00:03:56 +0100454u8 vlib_buffer_register_physmem_map (struct vlib_main_t *vm,
Damjan Marion68b4da62018-09-30 18:26:20 +0200455 u32 physmem_map_index);
Damjan Marion149ba772017-10-12 13:09:26 +0200456
Damjan Marion49d66f12017-07-20 18:10:35 +0200457clib_error_t *vlib_buffer_main_init (struct vlib_main_t *vm);
Damjan Marion878c6092017-01-04 13:19:27 +0100458
Ed Warnickecb9cada2015-12-08 15:45:58 -0700459
Ed Warnickecb9cada2015-12-08 15:45:58 -0700460void *vlib_set_buffer_free_callback (struct vlib_main_t *vm, void *fp);
461
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462/*
463 */
464
465/** \brief Compile time buffer trajectory tracing option
Dave Barach9b8ffd92016-07-08 08:13:45 -0400466 Turn this on if you run into "bad monkey" contexts,
467 and you want to know exactly which nodes they've visited...
Ed Warnickecb9cada2015-12-08 15:45:58 -0700468 See vlib/main.c...
469*/
470#define VLIB_BUFFER_TRACE_TRAJECTORY 0
471
472#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
Dave Barach7bee7732017-10-18 18:48:11 -0400473extern void (*vlib_buffer_trace_trajectory_cb) (vlib_buffer_t * b, u32 index);
474extern void (*vlib_buffer_trace_trajectory_init_cb) (vlib_buffer_t * b);
475extern void vlib_buffer_trace_trajectory_init (vlib_buffer_t * b);
476#define VLIB_BUFFER_TRACE_TRAJECTORY_INIT(b) \
477 vlib_buffer_trace_trajectory_init (b);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400478#else
Ed Warnickecb9cada2015-12-08 15:45:58 -0700479#define VLIB_BUFFER_TRACE_TRAJECTORY_INIT(b)
480#endif /* VLIB_BUFFER_TRACE_TRAJECTORY */
481
482#endif /* included_vlib_buffer_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400483
Damjan Marion04a7f052017-07-10 15:06:17 +0200484#define VLIB_BUFFER_REGISTER_CALLBACKS(x,...) \
485 __VA_ARGS__ vlib_buffer_callbacks_t __##x##_buffer_callbacks; \
486static void __vlib_add_buffer_callbacks_t_##x (void) \
487 __attribute__((__constructor__)) ; \
488static void __vlib_add_buffer_callbacks_t_##x (void) \
489{ \
490 if (vlib_buffer_callbacks) \
491 clib_panic ("vlib buffer callbacks already registered"); \
492 vlib_buffer_callbacks = &__##x##_buffer_callbacks; \
493} \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200494static void __vlib_rm_buffer_callbacks_t_##x (void) \
495 __attribute__((__destructor__)) ; \
496static void __vlib_rm_buffer_callbacks_t_##x (void) \
497{ vlib_buffer_callbacks = 0; } \
Damjan Marion04a7f052017-07-10 15:06:17 +0200498__VA_ARGS__ vlib_buffer_callbacks_t __##x##_buffer_callbacks
499
Dave Barach9b8ffd92016-07-08 08:13:45 -0400500/*
501 * fd.io coding-style-patch-verification: ON
502 *
503 * Local Variables:
504 * eval: (c-set-style "gnu")
505 * End:
506 */