Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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 <vlib/error.h> /* for vlib_error_t */ |
Damjan Marion | 1901020 | 2016-03-24 17:17:47 +0100 | [diff] [blame] | 48 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 49 | #include <vlib/config.h> /* for __PRE_DATA_SIZE */ |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 50 | #define VLIB_BUFFER_DATA_SIZE (2048) |
Damjan Marion | 1901020 | 2016-03-24 17:17:47 +0100 | [diff] [blame] | 51 | #define VLIB_BUFFER_PRE_DATA_SIZE __PRE_DATA_SIZE |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 52 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 53 | /** \file |
| 54 | vlib buffer structure definition and a few select |
| 55 | access methods. This structure and the buffer allocation |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 56 | mechanism should perhaps live in vnet, but it would take a lot |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 57 | of typing to make it so. |
| 58 | */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 59 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 60 | /* VLIB buffer representation. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 61 | typedef struct |
| 62 | { |
| 63 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Dave Barach | f869028 | 2017-03-01 11:38:02 -0500 | [diff] [blame^] | 64 | STRUCT_MARK (template_start); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 65 | /* Offset within data[] that we are currently processing. |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 66 | If negative current header points into predata area. */ |
| 67 | i16 current_data; /**< signed offset in data[], pre_data[] |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 68 | that we are currently processing. |
| 69 | If negative current header points into predata area. |
| 70 | */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 71 | u16 current_length; /**< Nbytes between current data and |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 72 | the end of this buffer. |
| 73 | */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 74 | u32 flags; /**< buffer flags: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 75 | <br> VLIB_BUFFER_IS_TRACED: trace this buffer. |
| 76 | <br> VLIB_BUFFER_NEXT_PRESENT: this is a multi-chunk buffer. |
| 77 | <br> VLIB_BUFFER_TOTAL_LENGTH_VALID: as it says |
| 78 | <br> VLIB_BUFFER_REPL_FAIL: packet replication failure |
Dave Barach | b5adaea | 2016-06-17 14:09:56 -0400 | [diff] [blame] | 79 | <br> VLIB_BUFFER_RECYCLE: as it says |
Dave Barach | ad41b35 | 2016-10-07 08:30:23 -0700 | [diff] [blame] | 80 | <br> VLIB_BUFFER_FLOW_REPORT: buffer is a flow report, |
Damjan Marion | ff54270 | 2017-02-27 11:29:20 +0100 | [diff] [blame] | 81 | <br> VLIB_BUFFER_EXT_HDR_VALID: buffer contains valid external buffer manager header, |
Dave Barach | ad41b35 | 2016-10-07 08:30:23 -0700 | [diff] [blame] | 82 | set to avoid adding it to a flow report |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 83 | <br> VLIB_BUFFER_FLAG_USER(n): user-defined bit N |
| 84 | */ |
| 85 | #define VLIB_BUFFER_IS_TRACED (1 << 0) |
| 86 | #define VLIB_BUFFER_LOG2_NEXT_PRESENT (1) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 87 | #define VLIB_BUFFER_NEXT_PRESENT (1 << VLIB_BUFFER_LOG2_NEXT_PRESENT) |
| 88 | #define VLIB_BUFFER_IS_RECYCLED (1 << 2) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 89 | #define VLIB_BUFFER_TOTAL_LENGTH_VALID (1 << 3) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 90 | #define VLIB_BUFFER_REPL_FAIL (1 << 4) |
Dave Barach | b5adaea | 2016-06-17 14:09:56 -0400 | [diff] [blame] | 91 | #define VLIB_BUFFER_RECYCLE (1 << 5) |
Dave Barach | ad41b35 | 2016-10-07 08:30:23 -0700 | [diff] [blame] | 92 | #define VLIB_BUFFER_FLOW_REPORT (1 << 6) |
Damjan Marion | ff54270 | 2017-02-27 11:29:20 +0100 | [diff] [blame] | 93 | #define VLIB_BUFFER_EXT_HDR_VALID (1 << 7) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 94 | |
| 95 | /* User defined buffer flags. */ |
| 96 | #define LOG2_VLIB_BUFFER_FLAG_USER(n) (32 - (n)) |
| 97 | #define VLIB_BUFFER_FLAG_USER(n) (1 << LOG2_VLIB_BUFFER_FLAG_USER(n)) |
| 98 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 99 | u32 free_list_index; /**< Buffer free list that this buffer was |
| 100 | allocated from and will be freed to. |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 101 | */ |
| 102 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 103 | u32 total_length_not_including_first_buffer; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 104 | /**< Only valid for first buffer in chain. Current length plus |
| 105 | total length given here give total number of bytes in buffer chain. |
| 106 | */ |
Dave Barach | f869028 | 2017-03-01 11:38:02 -0500 | [diff] [blame^] | 107 | STRUCT_MARK (template_end); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 108 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 109 | u32 next_buffer; /**< Next buffer for this linked-list of buffers. |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 110 | Only valid if VLIB_BUFFER_NEXT_PRESENT flag is set. |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 111 | */ |
| 112 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 113 | vlib_error_t error; /**< Error code for buffers to be enqueued |
| 114 | to error handler. |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 115 | */ |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 116 | u32 current_config_index; /**< Used by feature subgraph arcs to |
| 117 | visit enabled feature nodes |
| 118 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 119 | |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 120 | u8 feature_arc_index; /**< Used to identify feature arcs by intermediate |
| 121 | feature node |
| 122 | */ |
| 123 | |
Damjan Marion | c47ed03 | 2017-01-25 14:18:03 +0100 | [diff] [blame] | 124 | u8 n_add_refs; /**< Number of additional references to this buffer. */ |
| 125 | |
| 126 | u8 dont_waste_me[2]; /**< Available space in the (precious) |
Damjan Marion | 87cd119 | 2016-11-04 11:00:27 +0100 | [diff] [blame] | 127 | first 32 octets of buffer metadata |
| 128 | Before allocating any of it, discussion required! |
| 129 | */ |
Dave Barach | b5adaea | 2016-06-17 14:09:56 -0400 | [diff] [blame] | 130 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 131 | u32 opaque[8]; /**< Opaque data used by sub-graphs for their own purposes. |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 132 | See .../vnet/vnet/buffer.h |
| 133 | */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 134 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 135 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 136 | u32 trace_index; /**< Specifies index into trace buffer |
| 137 | if VLIB_PACKET_IS_TRACED flag is set. |
Dave Barach | d653460 | 2016-06-14 18:38:02 -0400 | [diff] [blame] | 138 | */ |
Dave Barach | b5adaea | 2016-06-17 14:09:56 -0400 | [diff] [blame] | 139 | u32 recycle_count; /**< Used by L2 path recycle code */ |
| 140 | u32 opaque2[14]; /**< More opaque data, currently unused */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 141 | |
| 142 | /***** end of second cache line */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 143 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline2); |
| 144 | u8 pre_data[VLIB_BUFFER_PRE_DATA_SIZE]; /**< Space for inserting data |
Damjan Marion | 1901020 | 2016-03-24 17:17:47 +0100 | [diff] [blame] | 145 | before buffer start. |
| 146 | Packet rewrite string will be |
| 147 | rewritten backwards and may extend |
| 148 | back before buffer->data[0]. |
| 149 | Must come directly before packet data. |
| 150 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 151 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 152 | u8 data[0]; /**< Packet data. Hardware DMA here */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 153 | } vlib_buffer_t; /* Must be a multiple of 64B. */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 154 | |
Damjan Marion | 1901020 | 2016-03-24 17:17:47 +0100 | [diff] [blame] | 155 | #define VLIB_BUFFER_HDR_SIZE (sizeof(vlib_buffer_t) - VLIB_BUFFER_PRE_DATA_SIZE) |
| 156 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 157 | /** \brief Prefetch buffer metadata. |
| 158 | The first 64 bytes of buffer contains most header information |
| 159 | |
| 160 | @param b - (vlib_buffer_t *) pointer to the buffer |
| 161 | @param type - LOAD, STORE. In most cases, STORE is the right answer |
| 162 | */ |
| 163 | |
| 164 | #define vlib_prefetch_buffer_header(b,type) CLIB_PREFETCH (b, 64, type) |
| 165 | |
| 166 | always_inline vlib_buffer_t * |
| 167 | vlib_buffer_next_contiguous (vlib_buffer_t * b, u32 buffer_bytes) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 168 | { |
| 169 | return (void *) (b + 1) + buffer_bytes; |
| 170 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 171 | |
| 172 | always_inline void |
| 173 | vlib_buffer_struct_is_sane (vlib_buffer_t * b) |
| 174 | { |
| 175 | ASSERT (sizeof (b[0]) % 64 == 0); |
| 176 | |
| 177 | /* Rewrite data must be before and contiguous with packet data. */ |
| 178 | ASSERT (b->pre_data + VLIB_BUFFER_PRE_DATA_SIZE == b->data); |
| 179 | } |
| 180 | |
| 181 | /** \brief Get pointer to current data to process |
| 182 | |
| 183 | @param b - (vlib_buffer_t *) pointer to the buffer |
| 184 | @return - (void *) (b->data + b->current_data) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 185 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 186 | |
| 187 | always_inline void * |
| 188 | vlib_buffer_get_current (vlib_buffer_t * b) |
| 189 | { |
| 190 | /* Check bounds. */ |
| 191 | ASSERT ((signed) b->current_data >= (signed) -VLIB_BUFFER_PRE_DATA_SIZE); |
| 192 | return b->data + b->current_data; |
| 193 | } |
| 194 | |
| 195 | /** \brief Advance current data pointer by the supplied (signed!) amount |
| 196 | |
| 197 | @param b - (vlib_buffer_t *) pointer to the buffer |
| 198 | @param l - (word) signed increment |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 199 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 200 | always_inline void |
| 201 | vlib_buffer_advance (vlib_buffer_t * b, word l) |
| 202 | { |
| 203 | ASSERT (b->current_length >= l); |
| 204 | b->current_data += l; |
| 205 | b->current_length -= l; |
| 206 | } |
| 207 | |
| 208 | /** \brief Reset current header & length to state they were in when |
| 209 | packet was received. |
| 210 | |
| 211 | @param b - (vlib_buffer_t *) pointer to the buffer |
| 212 | */ |
| 213 | |
| 214 | always_inline void |
| 215 | vlib_buffer_reset (vlib_buffer_t * b) |
| 216 | { |
| 217 | b->current_length += clib_max (b->current_data, 0); |
| 218 | b->current_data = 0; |
| 219 | } |
| 220 | |
| 221 | /** \brief Get pointer to buffer's opaque data array |
| 222 | |
| 223 | @param b - (vlib_buffer_t *) pointer to the buffer |
| 224 | @return - (void *) b->opaque |
| 225 | */ |
| 226 | always_inline void * |
| 227 | vlib_get_buffer_opaque (vlib_buffer_t * b) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 228 | { |
| 229 | return (void *) b->opaque; |
| 230 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 231 | |
| 232 | /** \brief Get pointer to buffer's opaque2 data array |
| 233 | |
| 234 | @param b - (vlib_buffer_t *) pointer to the buffer |
| 235 | @return - (void *) b->opaque2 |
| 236 | */ |
| 237 | always_inline void * |
| 238 | vlib_get_buffer_opaque2 (vlib_buffer_t * b) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 239 | { |
| 240 | return (void *) b->opaque2; |
| 241 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 242 | |
| 243 | /* Forward declaration. */ |
| 244 | struct vlib_main_t; |
| 245 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 246 | typedef struct vlib_buffer_free_list_t |
| 247 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 248 | /* Template buffer used to initialize first 16 bytes of buffers |
| 249 | allocated on this free list. */ |
| 250 | vlib_buffer_t buffer_init_template; |
| 251 | |
| 252 | /* Our index into vlib_main_t's buffer_free_list_pool. */ |
| 253 | u32 index; |
| 254 | |
| 255 | /* Number of data bytes for buffers in this free list. */ |
| 256 | u32 n_data_bytes; |
| 257 | |
| 258 | /* Number of buffers to allocate when we need to allocate new buffers |
| 259 | from physmem heap. */ |
| 260 | u32 min_n_buffers_each_physmem_alloc; |
| 261 | |
| 262 | /* Total number of buffers allocated from this free list. */ |
| 263 | u32 n_alloc; |
| 264 | |
Damjan Marion | bd69a5f | 2017-02-05 23:44:42 +0100 | [diff] [blame] | 265 | /* Vector of free buffers. Each element is a byte offset into I/O heap. */ |
| 266 | u32 *buffers; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 267 | |
| 268 | /* Memory chunks allocated for this free list |
| 269 | recorded here so they can be freed when free list |
| 270 | is deleted. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 271 | void **buffer_memory_allocated; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 272 | |
| 273 | /* Free list name. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 274 | u8 *name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 275 | |
| 276 | /* Callback functions to initialize newly allocated buffers. |
| 277 | If null buffers are zeroed. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 278 | void (*buffer_init_function) (struct vlib_main_t * vm, |
| 279 | struct vlib_buffer_free_list_t * fl, |
| 280 | u32 * buffers, u32 n_buffers); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 281 | |
| 282 | /* Callback function to announce that buffers have been |
| 283 | added to the freelist */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 284 | void (*buffers_added_to_freelist_function) |
| 285 | (struct vlib_main_t * vm, struct vlib_buffer_free_list_t * fl); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 286 | |
| 287 | uword buffer_init_function_opaque; |
| 288 | } __attribute__ ((aligned (16))) vlib_buffer_free_list_t; |
| 289 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 290 | typedef struct |
| 291 | { |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 292 | u32 (*vlib_buffer_alloc_cb) (struct vlib_main_t * vm, u32 * buffers, |
| 293 | u32 n_buffers); |
| 294 | u32 (*vlib_buffer_alloc_from_free_list_cb) (struct vlib_main_t * vm, |
| 295 | u32 * buffers, u32 n_buffers, |
| 296 | u32 free_list_index); |
| 297 | void (*vlib_buffer_free_cb) (struct vlib_main_t * vm, u32 * buffers, |
| 298 | u32 n_buffers); |
| 299 | void (*vlib_buffer_free_no_next_cb) (struct vlib_main_t * vm, u32 * buffers, |
| 300 | u32 n_buffers); |
| 301 | void (*vlib_packet_template_init_cb) (struct vlib_main_t * vm, void *t, |
| 302 | void *packet_data, |
| 303 | uword n_packet_data_bytes, |
| 304 | uword |
| 305 | min_n_buffers_each_physmem_alloc, |
| 306 | u8 * name); |
| 307 | void (*vlib_buffer_delete_free_list_cb) (struct vlib_main_t * vm, |
| 308 | u32 free_list_index); |
| 309 | } vlib_buffer_callbacks_t; |
| 310 | |
| 311 | typedef struct |
| 312 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 313 | /* Buffer free callback, for subversive activities */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 314 | u32 (*buffer_free_callback) (struct vlib_main_t * vm, |
| 315 | u32 * buffers, |
| 316 | u32 n_buffers, u32 follow_buffer_next); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 317 | /* Pool of buffer free lists. |
| 318 | Multiple free lists exist for packet generator which uses |
| 319 | separate free lists for each packet stream --- so as to avoid |
| 320 | initializing static data for each packet generated. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 321 | vlib_buffer_free_list_t *buffer_free_list_pool; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 322 | #define VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX (0) |
Damjan Marion | 1901020 | 2016-03-24 17:17:47 +0100 | [diff] [blame] | 323 | #define VLIB_BUFFER_DEFAULT_FREE_LIST_BYTES VLIB_BUFFER_DATA_SIZE |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 324 | |
| 325 | /* Hash table mapping buffer size (rounded to next unit of |
| 326 | sizeof (vlib_buffer_t)) to free list index. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 327 | uword *free_list_by_size; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 328 | |
| 329 | /* Hash table mapping buffer index into number |
| 330 | 0 => allocated but free, 1 => allocated and not-free. |
| 331 | If buffer index is not in hash table then this buffer |
| 332 | has never been allocated. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 333 | uword *buffer_known_hash; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 334 | |
| 335 | /* List of free-lists needing Blue Light Special announcements */ |
| 336 | vlib_buffer_free_list_t **announce_list; |
| 337 | |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 338 | /* Callbacks */ |
| 339 | vlib_buffer_callbacks_t cb; |
| 340 | int extern_buffer_mgmt; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 341 | } vlib_buffer_main_t; |
| 342 | |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 343 | void vlib_buffer_cb_init (struct vlib_main_t *vm); |
| 344 | int vlib_buffer_cb_register (struct vlib_main_t *vm, |
| 345 | vlib_buffer_callbacks_t * cb); |
| 346 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 347 | typedef struct |
| 348 | { |
| 349 | struct vlib_main_t *vlib_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 350 | |
| 351 | u32 first_buffer, last_buffer; |
| 352 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 353 | union |
| 354 | { |
| 355 | struct |
| 356 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 357 | /* Total accumulated bytes in chain starting with first_buffer. */ |
| 358 | u32 n_total_data_bytes; |
| 359 | |
| 360 | /* Max number of bytes to accumulate in chain starting with first_buffer. |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 361 | As this limit is reached buffers are enqueued to next node. */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 362 | u32 max_n_data_bytes_per_chain; |
| 363 | |
| 364 | /* Next node to enqueue buffers to relative to current process node. */ |
| 365 | u32 next_index; |
| 366 | |
| 367 | /* Free list to use to allocate new buffers. */ |
| 368 | u32 free_list_index; |
| 369 | } tx; |
| 370 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 371 | struct |
| 372 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 373 | /* CLIB fifo of buffer indices waiting to be unserialized. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 374 | u32 *buffer_fifo; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 375 | |
| 376 | /* Event type used to signal that RX buffers have been added to fifo. */ |
| 377 | uword ready_one_time_event; |
| 378 | } rx; |
| 379 | }; |
| 380 | } vlib_serialize_buffer_main_t; |
| 381 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 382 | void serialize_open_vlib_buffer (serialize_main_t * m, struct vlib_main_t *vm, |
| 383 | vlib_serialize_buffer_main_t * sm); |
| 384 | void unserialize_open_vlib_buffer (serialize_main_t * m, |
| 385 | struct vlib_main_t *vm, |
| 386 | vlib_serialize_buffer_main_t * sm); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 387 | |
| 388 | u32 serialize_close_vlib_buffer (serialize_main_t * m); |
| 389 | void unserialize_close_vlib_buffer (serialize_main_t * m); |
| 390 | void *vlib_set_buffer_free_callback (struct vlib_main_t *vm, void *fp); |
| 391 | |
| 392 | always_inline u32 |
| 393 | serialize_vlib_buffer_n_bytes (serialize_main_t * m) |
| 394 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 395 | serialize_stream_t *s = &m->stream; |
| 396 | vlib_serialize_buffer_main_t *sm |
| 397 | = uword_to_pointer (m->stream.data_function_opaque, |
| 398 | vlib_serialize_buffer_main_t *); |
| 399 | return sm->tx.n_total_data_bytes + s->current_buffer_index + |
| 400 | vec_len (s->overflow_buffer); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 401 | } |
| 402 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 403 | /* |
| 404 | */ |
| 405 | |
| 406 | /** \brief Compile time buffer trajectory tracing option |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 407 | Turn this on if you run into "bad monkey" contexts, |
| 408 | and you want to know exactly which nodes they've visited... |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 409 | See vlib/main.c... |
| 410 | */ |
| 411 | #define VLIB_BUFFER_TRACE_TRAJECTORY 0 |
| 412 | |
| 413 | #if VLIB_BUFFER_TRACE_TRAJECTORY > 0 |
| 414 | #define VLIB_BUFFER_TRACE_TRAJECTORY_INIT(b) (b)->pre_data[0]=0 |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 415 | #else |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 416 | #define VLIB_BUFFER_TRACE_TRAJECTORY_INIT(b) |
| 417 | #endif /* VLIB_BUFFER_TRACE_TRAJECTORY */ |
| 418 | |
| 419 | #endif /* included_vlib_buffer_h */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 420 | |
| 421 | /* |
| 422 | * fd.io coding-style-patch-verification: ON |
| 423 | * |
| 424 | * Local Variables: |
| 425 | * eval: (c-set-style "gnu") |
| 426 | * End: |
| 427 | */ |