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> |
Damjan Marion | 6b0f589 | 2017-07-27 04:01:24 -0400 | [diff] [blame] | 47 | #include <vppinfra/lock.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 48 | #include <vlib/error.h> /* for vlib_error_t */ |
Damjan Marion | 1901020 | 2016-03-24 17:17:47 +0100 | [diff] [blame] | 49 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 50 | #include <vlib/config.h> /* for __PRE_DATA_SIZE */ |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 51 | #define VLIB_BUFFER_DATA_SIZE (2048) |
Damjan Marion | 1901020 | 2016-03-24 17:17:47 +0100 | [diff] [blame] | 52 | #define VLIB_BUFFER_PRE_DATA_SIZE __PRE_DATA_SIZE |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 53 | |
Damjan Marion | bd0da97 | 2018-10-31 10:59:02 +0100 | [diff] [blame] | 54 | /* 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 Marion | dac0352 | 2018-02-01 15:30:13 +0100 | [diff] [blame] | 62 | typedef u8 vlib_buffer_free_list_index_t; |
| 63 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 64 | /** \file |
| 65 | vlib buffer structure definition and a few select |
| 66 | access methods. This structure and the buffer allocation |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 67 | mechanism should perhaps live in vnet, but it would take a lot |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 68 | of typing to make it so. |
| 69 | */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 70 | |
Damjan Marion | dac0352 | 2018-02-01 15:30:13 +0100 | [diff] [blame] | 71 | /** |
| 72 | * Buffer Flags |
| 73 | */ |
| 74 | #define foreach_vlib_buffer_flag \ |
Damjan Marion | 36eb7c2 | 2019-01-18 20:45:30 +0100 | [diff] [blame] | 75 | _( 0, IS_TRACED, 0) \ |
| 76 | _( 1, NEXT_PRESENT, 0) \ |
| 77 | _( 2, TOTAL_LENGTH_VALID, 0) \ |
| 78 | _( 3, EXT_HDR_VALID, "ext-hdr-valid") |
Damjan Marion | dac0352 | 2018-02-01 15:30:13 +0100 | [diff] [blame] | 79 | |
| 80 | /* NOTE: only buffer generic flags should be defined here, please consider |
| 81 | using user flags. i.e. src/vnet/buffer.h */ |
| 82 | |
| 83 | enum |
| 84 | { |
| 85 | #define _(bit, name, v) VLIB_BUFFER_##name = (1 << (bit)), |
| 86 | foreach_vlib_buffer_flag |
| 87 | #undef _ |
| 88 | }; |
| 89 | |
| 90 | enum |
| 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 Marion | 36eb7c2 | 2019-01-18 20:45:30 +0100 | [diff] [blame] | 100 | #define VLIB_BUFFER_FLAGS_ALL (0x0f) |
Damjan Marion | dac0352 | 2018-02-01 15:30:13 +0100 | [diff] [blame] | 101 | |
Damjan Marion | 9a8a12a | 2019-01-23 16:52:10 +0100 | [diff] [blame] | 102 | /** VLIB buffer representation. */ |
| 103 | typedef union |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 104 | { |
Damjan Marion | 9a8a12a | 2019-01-23 16:52:10 +0100 | [diff] [blame] | 105 | struct |
| 106 | { |
| 107 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Damjan Marion | 072401e | 2017-07-13 18:53:27 +0200 | [diff] [blame] | 108 | |
Damjan Marion | 9a8a12a | 2019-01-23 16:52:10 +0100 | [diff] [blame] | 109 | /** signed offset in data[], pre_data[] that we are currently |
| 110 | * processing. If negative current header points into predata area. */ |
| 111 | i16 current_data; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 112 | |
Damjan Marion | 9a8a12a | 2019-01-23 16:52:10 +0100 | [diff] [blame] | 113 | /** Nbytes between current data and the end of this buffer. */ |
| 114 | u16 current_length; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 115 | |
Damjan Marion | 9a8a12a | 2019-01-23 16:52:10 +0100 | [diff] [blame] | 116 | /** buffer flags: |
| 117 | <br> VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, |
| 118 | <br> VLIB_BUFFER_IS_TRACED: trace this buffer. |
| 119 | <br> VLIB_BUFFER_NEXT_PRESENT: this is a multi-chunk buffer. |
| 120 | <br> VLIB_BUFFER_TOTAL_LENGTH_VALID: as it says |
| 121 | <br> VLIB_BUFFER_EXT_HDR_VALID: buffer contains valid external buffer manager header, |
| 122 | set to avoid adding it to a flow report |
| 123 | <br> VLIB_BUFFER_FLAG_USER(n): user-defined bit N |
| 124 | */ |
| 125 | u32 flags; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 126 | |
Damjan Marion | 9a8a12a | 2019-01-23 16:52:10 +0100 | [diff] [blame] | 127 | /** Generic flow identifier */ |
| 128 | u32 flow_id; |
Damjan Marion | c47ed03 | 2017-01-25 14:18:03 +0100 | [diff] [blame] | 129 | |
Damjan Marion | 9a8a12a | 2019-01-23 16:52:10 +0100 | [diff] [blame] | 130 | /** Number of additional references to this buffer. */ |
| 131 | u8 n_add_refs; |
Dave Barach | b5adaea | 2016-06-17 14:09:56 -0400 | [diff] [blame] | 132 | |
Damjan Marion | 9a8a12a | 2019-01-23 16:52:10 +0100 | [diff] [blame] | 133 | /** index of buffer pool this buffer belongs. */ |
| 134 | u8 buffer_pool_index; |
Damjan Marion | e58041f | 2019-01-18 19:56:09 +0100 | [diff] [blame] | 135 | |
Damjan Marion | 9a8a12a | 2019-01-23 16:52:10 +0100 | [diff] [blame] | 136 | /** Error code for buffers to be enqueued to error handler. */ |
| 137 | vlib_error_t error; |
Damjan Marion | e58041f | 2019-01-18 19:56:09 +0100 | [diff] [blame] | 138 | |
Damjan Marion | 9a8a12a | 2019-01-23 16:52:10 +0100 | [diff] [blame] | 139 | /** Next buffer for this linked-list of buffers. Only valid if |
| 140 | * VLIB_BUFFER_NEXT_PRESENT flag is set. */ |
| 141 | u32 next_buffer; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 142 | |
Damjan Marion | 9a8a12a | 2019-01-23 16:52:10 +0100 | [diff] [blame] | 143 | /** Used by feature subgraph arcs to visit enabled feature nodes */ |
| 144 | u32 current_config_index; |
Damjan Marion | 072401e | 2017-07-13 18:53:27 +0200 | [diff] [blame] | 145 | |
Damjan Marion | 9a8a12a | 2019-01-23 16:52:10 +0100 | [diff] [blame] | 146 | /** Opaque data used by sub-graphs for their own purposes. */ |
| 147 | u32 opaque[10]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 148 | |
Damjan Marion | 9a8a12a | 2019-01-23 16:52:10 +0100 | [diff] [blame] | 149 | /** part of buffer metadata which is initialized on alloc ends here. */ |
| 150 | STRUCT_MARK (template_end); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 151 | |
Damjan Marion | 9a8a12a | 2019-01-23 16:52:10 +0100 | [diff] [blame] | 152 | /** start of 2nd cache line */ |
| 153 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline1); |
| 154 | |
| 155 | /** Specifies index into trace buffer if VLIB_PACKET_IS_TRACED flag is |
| 156 | * set. */ |
| 157 | u32 trace_index; |
| 158 | |
| 159 | /** Only valid for first buffer in chain. Current length plus total length |
| 160 | * given here give total number of bytes in buffer chain. */ |
| 161 | u32 total_length_not_including_first_buffer; |
| 162 | |
| 163 | /**< More opaque data, see ../vnet/vnet/buffer.h */ |
| 164 | u32 opaque2[14]; |
| 165 | |
| 166 | /** start of third cache line */ |
| 167 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline2); |
| 168 | |
| 169 | /** Space for inserting data before buffer start. Packet rewrite string |
| 170 | * will be rewritten backwards and may extend back before |
| 171 | * buffer->data[0]. Must come directly before packet data. */ |
| 172 | u8 pre_data[VLIB_BUFFER_PRE_DATA_SIZE]; |
| 173 | |
| 174 | /** Packet data */ |
| 175 | u8 data[0]; |
| 176 | }; |
| 177 | #ifdef CLIB_HAVE_VEC128 |
| 178 | u8x16 as_u8x16[4]; |
| 179 | #endif |
| 180 | #ifdef CLIB_HAVE_VEC256 |
| 181 | u8x16 as_u8x32[2]; |
| 182 | #endif |
| 183 | #ifdef CLIB_HAVE_VEC512 |
| 184 | u8x16 as_u8x64[1]; |
| 185 | #endif |
| 186 | } vlib_buffer_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 187 | |
Damjan Marion | 1901020 | 2016-03-24 17:17:47 +0100 | [diff] [blame] | 188 | #define VLIB_BUFFER_HDR_SIZE (sizeof(vlib_buffer_t) - VLIB_BUFFER_PRE_DATA_SIZE) |
| 189 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 190 | /** \brief Prefetch buffer metadata. |
| 191 | The first 64 bytes of buffer contains most header information |
| 192 | |
| 193 | @param b - (vlib_buffer_t *) pointer to the buffer |
| 194 | @param type - LOAD, STORE. In most cases, STORE is the right answer |
| 195 | */ |
| 196 | |
| 197 | #define vlib_prefetch_buffer_header(b,type) CLIB_PREFETCH (b, 64, type) |
Damjan Marion | d30bf01 | 2018-11-18 23:48:43 +0100 | [diff] [blame] | 198 | #define vlib_prefetch_buffer_data(b,type) \ |
| 199 | CLIB_PREFETCH (vlib_buffer_get_current(b), CLIB_CACHE_LINE_BYTES, type) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 200 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 201 | always_inline void |
| 202 | vlib_buffer_struct_is_sane (vlib_buffer_t * b) |
| 203 | { |
| 204 | ASSERT (sizeof (b[0]) % 64 == 0); |
| 205 | |
| 206 | /* Rewrite data must be before and contiguous with packet data. */ |
| 207 | ASSERT (b->pre_data + VLIB_BUFFER_PRE_DATA_SIZE == b->data); |
| 208 | } |
| 209 | |
Damjan Marion | 8f49936 | 2018-10-22 13:07:02 +0200 | [diff] [blame] | 210 | always_inline uword |
| 211 | vlib_buffer_get_va (vlib_buffer_t * b) |
| 212 | { |
| 213 | return pointer_to_uword (b->data); |
| 214 | } |
| 215 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 216 | /** \brief Get pointer to current data to process |
| 217 | |
| 218 | @param b - (vlib_buffer_t *) pointer to the buffer |
| 219 | @return - (void *) (b->data + b->current_data) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 220 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 221 | |
| 222 | always_inline void * |
| 223 | vlib_buffer_get_current (vlib_buffer_t * b) |
| 224 | { |
| 225 | /* Check bounds. */ |
| 226 | ASSERT ((signed) b->current_data >= (signed) -VLIB_BUFFER_PRE_DATA_SIZE); |
| 227 | return b->data + b->current_data; |
| 228 | } |
| 229 | |
Damjan Marion | 8f49936 | 2018-10-22 13:07:02 +0200 | [diff] [blame] | 230 | always_inline uword |
| 231 | vlib_buffer_get_current_va (vlib_buffer_t * b) |
| 232 | { |
| 233 | return vlib_buffer_get_va (b) + b->current_data; |
| 234 | } |
| 235 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 236 | /** \brief Advance current data pointer by the supplied (signed!) amount |
| 237 | |
| 238 | @param b - (vlib_buffer_t *) pointer to the buffer |
| 239 | @param l - (word) signed increment |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 240 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 241 | always_inline void |
| 242 | vlib_buffer_advance (vlib_buffer_t * b, word l) |
| 243 | { |
| 244 | ASSERT (b->current_length >= l); |
| 245 | b->current_data += l; |
| 246 | b->current_length -= l; |
Damjan Marion | bd0da97 | 2018-10-31 10:59:02 +0100 | [diff] [blame] | 247 | |
| 248 | ASSERT ((b->flags & VLIB_BUFFER_NEXT_PRESENT) == 0 || |
| 249 | b->current_length >= VLIB_BUFFER_MIN_CHAIN_SEG_SIZE); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 250 | } |
| 251 | |
Filip Tehlar | 816f437 | 2017-04-26 16:09:06 +0200 | [diff] [blame] | 252 | /** \brief Check if there is enough space in buffer to advance |
| 253 | |
| 254 | @param b - (vlib_buffer_t *) pointer to the buffer |
| 255 | @param l - (word) size to check |
| 256 | @return - 0 if there is less space than 'l' in buffer |
| 257 | */ |
| 258 | always_inline u8 |
| 259 | vlib_buffer_has_space (vlib_buffer_t * b, word l) |
| 260 | { |
| 261 | return b->current_length >= l; |
| 262 | } |
| 263 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 264 | /** \brief Reset current header & length to state they were in when |
| 265 | packet was received. |
| 266 | |
| 267 | @param b - (vlib_buffer_t *) pointer to the buffer |
| 268 | */ |
| 269 | |
| 270 | always_inline void |
| 271 | vlib_buffer_reset (vlib_buffer_t * b) |
| 272 | { |
| 273 | b->current_length += clib_max (b->current_data, 0); |
| 274 | b->current_data = 0; |
| 275 | } |
| 276 | |
| 277 | /** \brief Get pointer to buffer's opaque data array |
| 278 | |
| 279 | @param b - (vlib_buffer_t *) pointer to the buffer |
| 280 | @return - (void *) b->opaque |
| 281 | */ |
| 282 | always_inline void * |
| 283 | vlib_get_buffer_opaque (vlib_buffer_t * b) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 284 | { |
| 285 | return (void *) b->opaque; |
| 286 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 287 | |
| 288 | /** \brief Get pointer to buffer's opaque2 data array |
| 289 | |
| 290 | @param b - (vlib_buffer_t *) pointer to the buffer |
| 291 | @return - (void *) b->opaque2 |
| 292 | */ |
| 293 | always_inline void * |
| 294 | vlib_get_buffer_opaque2 (vlib_buffer_t * b) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 295 | { |
| 296 | return (void *) b->opaque2; |
| 297 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 298 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 299 | /** \brief Get pointer to the end of buffer's data |
| 300 | * @param b pointer to the buffer |
| 301 | * @return pointer to tail of packet's data |
| 302 | */ |
| 303 | always_inline u8 * |
| 304 | vlib_buffer_get_tail (vlib_buffer_t * b) |
| 305 | { |
| 306 | return b->data + b->current_data + b->current_length; |
| 307 | } |
| 308 | |
| 309 | /** \brief Append uninitialized data to buffer |
| 310 | * @param b pointer to the buffer |
| 311 | * @param size number of uninitialized bytes |
| 312 | * @return pointer to beginning of uninitialized data |
| 313 | */ |
| 314 | always_inline void * |
Eyal Bari | d3d4241 | 2018-11-05 13:29:25 +0200 | [diff] [blame] | 315 | vlib_buffer_put_uninit (vlib_buffer_t * b, u16 size) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 316 | { |
| 317 | void *p = vlib_buffer_get_tail (b); |
| 318 | /* XXX make sure there's enough space */ |
| 319 | b->current_length += size; |
| 320 | return p; |
| 321 | } |
| 322 | |
| 323 | /** \brief Prepend uninitialized data to buffer |
| 324 | * @param b pointer to the buffer |
| 325 | * @param size number of uninitialized bytes |
| 326 | * @return pointer to beginning of uninitialized data |
| 327 | */ |
| 328 | always_inline void * |
| 329 | vlib_buffer_push_uninit (vlib_buffer_t * b, u8 size) |
| 330 | { |
| 331 | ASSERT (b->current_data + VLIB_BUFFER_PRE_DATA_SIZE >= size); |
| 332 | b->current_data -= size; |
| 333 | b->current_length += size; |
| 334 | |
| 335 | return vlib_buffer_get_current (b); |
| 336 | } |
| 337 | |
| 338 | /** \brief Make head room, typically for packet headers |
| 339 | * @param b pointer to the buffer |
| 340 | * @param size number of head room bytes |
| 341 | * @return pointer to start of buffer (current data) |
| 342 | */ |
| 343 | always_inline void * |
| 344 | vlib_buffer_make_headroom (vlib_buffer_t * b, u8 size) |
| 345 | { |
| 346 | ASSERT (b->current_data + VLIB_BUFFER_PRE_DATA_SIZE >= size); |
| 347 | b->current_data += size; |
| 348 | return vlib_buffer_get_current (b); |
| 349 | } |
| 350 | |
| 351 | /** \brief Retrieve bytes from buffer head |
| 352 | * @param b pointer to the buffer |
| 353 | * @param size number of bytes to pull |
| 354 | * @return pointer to start of buffer (current data) |
| 355 | */ |
| 356 | always_inline void * |
| 357 | vlib_buffer_pull (vlib_buffer_t * b, u8 size) |
| 358 | { |
| 359 | if (b->current_length + VLIB_BUFFER_PRE_DATA_SIZE < size) |
| 360 | return 0; |
| 361 | |
| 362 | void *data = vlib_buffer_get_current (b); |
| 363 | vlib_buffer_advance (b, size); |
| 364 | return data; |
| 365 | } |
| 366 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 367 | /* Forward declaration. */ |
| 368 | struct vlib_main_t; |
| 369 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 370 | typedef struct vlib_buffer_free_list_t |
| 371 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 372 | /* Template buffer used to initialize first 16 bytes of buffers |
| 373 | allocated on this free list. */ |
| 374 | vlib_buffer_t buffer_init_template; |
| 375 | |
| 376 | /* Our index into vlib_main_t's buffer_free_list_pool. */ |
Damjan Marion | dac0352 | 2018-02-01 15:30:13 +0100 | [diff] [blame] | 377 | vlib_buffer_free_list_index_t index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 378 | |
Damjan Marion | d1274cb | 2018-03-13 21:32:17 +0100 | [diff] [blame] | 379 | /* Number of buffers to allocate when we need to allocate new buffers */ |
| 380 | u32 min_n_buffers_each_alloc; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 381 | |
| 382 | /* Total number of buffers allocated from this free list. */ |
| 383 | u32 n_alloc; |
| 384 | |
Damjan Marion | bd69a5f | 2017-02-05 23:44:42 +0100 | [diff] [blame] | 385 | /* Vector of free buffers. Each element is a byte offset into I/O heap. */ |
| 386 | u32 *buffers; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 387 | |
Damjan Marion | d1274cb | 2018-03-13 21:32:17 +0100 | [diff] [blame] | 388 | /* index of buffer pool used to get / put buffers */ |
| 389 | u8 buffer_pool_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 390 | |
| 391 | /* Free list name. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 392 | u8 *name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 393 | |
| 394 | /* Callback functions to initialize newly allocated buffers. |
| 395 | If null buffers are zeroed. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 396 | void (*buffer_init_function) (struct vlib_main_t * vm, |
| 397 | struct vlib_buffer_free_list_t * fl, |
| 398 | u32 * buffers, u32 n_buffers); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 399 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 400 | uword buffer_init_function_opaque; |
| 401 | } __attribute__ ((aligned (16))) vlib_buffer_free_list_t; |
| 402 | |
Damjan Marion | c8a26c6 | 2017-11-24 20:15:23 +0100 | [diff] [blame] | 403 | typedef 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 Marion | 04f3db3 | 2017-11-10 21:55:45 +0100 | [diff] [blame] | 406 | typedef void (vlib_buffer_free_cb_t) (struct vlib_main_t * vm, u32 * buffers, |
| 407 | u32 n_buffers); |
| 408 | typedef void (vlib_buffer_free_no_next_cb_t) (struct vlib_main_t * vm, |
| 409 | u32 * buffers, u32 n_buffers); |
| 410 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 411 | typedef struct |
| 412 | { |
Damjan Marion | c8a26c6 | 2017-11-24 20:15:23 +0100 | [diff] [blame] | 413 | vlib_buffer_fill_free_list_cb_t *vlib_buffer_fill_free_list_cb; |
Damjan Marion | 04f3db3 | 2017-11-10 21:55:45 +0100 | [diff] [blame] | 414 | vlib_buffer_free_cb_t *vlib_buffer_free_cb; |
| 415 | vlib_buffer_free_no_next_cb_t *vlib_buffer_free_no_next_cb; |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 416 | } vlib_buffer_callbacks_t; |
| 417 | |
Damjan Marion | 04a7f05 | 2017-07-10 15:06:17 +0200 | [diff] [blame] | 418 | extern vlib_buffer_callbacks_t *vlib_buffer_callbacks; |
| 419 | |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 420 | typedef struct |
| 421 | { |
Damjan Marion | 04a7f05 | 2017-07-10 15:06:17 +0200 | [diff] [blame] | 422 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Damjan Marion | 149ba77 | 2017-10-12 13:09:26 +0200 | [diff] [blame] | 423 | uword start; |
| 424 | uword size; |
Damjan Marion | d1274cb | 2018-03-13 21:32:17 +0100 | [diff] [blame] | 425 | uword log2_page_size; |
Damjan Marion | 68b4da6 | 2018-09-30 18:26:20 +0200 | [diff] [blame] | 426 | u32 physmem_map_index; |
| 427 | u32 buffer_size; |
Damjan Marion | d1274cb | 2018-03-13 21:32:17 +0100 | [diff] [blame] | 428 | u32 *buffers; |
Damjan Marion | d1274cb | 2018-03-13 21:32:17 +0100 | [diff] [blame] | 429 | clib_spinlock_t lock; |
Damjan Marion | 149ba77 | 2017-10-12 13:09:26 +0200 | [diff] [blame] | 430 | } vlib_buffer_pool_t; |
| 431 | |
| 432 | typedef struct |
| 433 | { |
| 434 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Damjan Marion | 04a7f05 | 2017-07-10 15:06:17 +0200 | [diff] [blame] | 435 | /* Virtual memory address and size of buffer memory, used for calculating |
| 436 | buffer index */ |
| 437 | uword buffer_mem_start; |
| 438 | uword buffer_mem_size; |
Damjan Marion | 149ba77 | 2017-10-12 13:09:26 +0200 | [diff] [blame] | 439 | vlib_buffer_pool_t *buffer_pools; |
Damjan Marion | 04a7f05 | 2017-07-10 15:06:17 +0200 | [diff] [blame] | 440 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 441 | /* Buffer free callback, for subversive activities */ |
Damjan Marion | 04a7f05 | 2017-07-10 15:06:17 +0200 | [diff] [blame] | 442 | u32 (*buffer_free_callback) (struct vlib_main_t * vm, |
| 443 | u32 * buffers, |
| 444 | u32 n_buffers, u32 follow_buffer_next); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 445 | #define VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX (0) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 446 | |
| 447 | /* Hash table mapping buffer size (rounded to next unit of |
| 448 | sizeof (vlib_buffer_t)) to free list index. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 449 | uword *free_list_by_size; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 450 | |
| 451 | /* Hash table mapping buffer index into number |
| 452 | 0 => allocated but free, 1 => allocated and not-free. |
| 453 | If buffer index is not in hash table then this buffer |
| 454 | has never been allocated. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 455 | uword *buffer_known_hash; |
Damjan Marion | 6b0f589 | 2017-07-27 04:01:24 -0400 | [diff] [blame] | 456 | clib_spinlock_t buffer_known_hash_lockp; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 457 | |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 458 | /* Callbacks */ |
| 459 | vlib_buffer_callbacks_t cb; |
Damjan Marion | 04a7f05 | 2017-07-10 15:06:17 +0200 | [diff] [blame] | 460 | int callbacks_registered; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 461 | } vlib_buffer_main_t; |
| 462 | |
Damjan Marion | d50e347 | 2019-01-20 00:03:56 +0100 | [diff] [blame] | 463 | u8 vlib_buffer_register_physmem_map (struct vlib_main_t *vm, |
Damjan Marion | 68b4da6 | 2018-09-30 18:26:20 +0200 | [diff] [blame] | 464 | u32 physmem_map_index); |
Damjan Marion | 149ba77 | 2017-10-12 13:09:26 +0200 | [diff] [blame] | 465 | |
Damjan Marion | 49d66f1 | 2017-07-20 18:10:35 +0200 | [diff] [blame] | 466 | clib_error_t *vlib_buffer_main_init (struct vlib_main_t *vm); |
Damjan Marion | 878c609 | 2017-01-04 13:19:27 +0100 | [diff] [blame] | 467 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 468 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 469 | void *vlib_set_buffer_free_callback (struct vlib_main_t *vm, void *fp); |
| 470 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 471 | /* |
| 472 | */ |
| 473 | |
| 474 | /** \brief Compile time buffer trajectory tracing option |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 475 | Turn this on if you run into "bad monkey" contexts, |
| 476 | and you want to know exactly which nodes they've visited... |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 477 | See vlib/main.c... |
| 478 | */ |
| 479 | #define VLIB_BUFFER_TRACE_TRAJECTORY 0 |
| 480 | |
| 481 | #if VLIB_BUFFER_TRACE_TRAJECTORY > 0 |
Dave Barach | 7bee773 | 2017-10-18 18:48:11 -0400 | [diff] [blame] | 482 | extern void (*vlib_buffer_trace_trajectory_cb) (vlib_buffer_t * b, u32 index); |
| 483 | extern void (*vlib_buffer_trace_trajectory_init_cb) (vlib_buffer_t * b); |
| 484 | extern void vlib_buffer_trace_trajectory_init (vlib_buffer_t * b); |
| 485 | #define VLIB_BUFFER_TRACE_TRAJECTORY_INIT(b) \ |
| 486 | vlib_buffer_trace_trajectory_init (b); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 487 | #else |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 488 | #define VLIB_BUFFER_TRACE_TRAJECTORY_INIT(b) |
| 489 | #endif /* VLIB_BUFFER_TRACE_TRAJECTORY */ |
| 490 | |
| 491 | #endif /* included_vlib_buffer_h */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 492 | |
Damjan Marion | 04a7f05 | 2017-07-10 15:06:17 +0200 | [diff] [blame] | 493 | #define VLIB_BUFFER_REGISTER_CALLBACKS(x,...) \ |
| 494 | __VA_ARGS__ vlib_buffer_callbacks_t __##x##_buffer_callbacks; \ |
| 495 | static void __vlib_add_buffer_callbacks_t_##x (void) \ |
| 496 | __attribute__((__constructor__)) ; \ |
| 497 | static void __vlib_add_buffer_callbacks_t_##x (void) \ |
| 498 | { \ |
| 499 | if (vlib_buffer_callbacks) \ |
| 500 | clib_panic ("vlib buffer callbacks already registered"); \ |
| 501 | vlib_buffer_callbacks = &__##x##_buffer_callbacks; \ |
| 502 | } \ |
Damjan Marion | 72d2c4f | 2018-04-05 21:32:29 +0200 | [diff] [blame] | 503 | static void __vlib_rm_buffer_callbacks_t_##x (void) \ |
| 504 | __attribute__((__destructor__)) ; \ |
| 505 | static void __vlib_rm_buffer_callbacks_t_##x (void) \ |
| 506 | { vlib_buffer_callbacks = 0; } \ |
Damjan Marion | 04a7f05 | 2017-07-10 15:06:17 +0200 | [diff] [blame] | 507 | __VA_ARGS__ vlib_buffer_callbacks_t __##x##_buffer_callbacks |
| 508 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 509 | /* |
| 510 | * fd.io coding-style-patch-verification: ON |
| 511 | * |
| 512 | * Local Variables: |
| 513 | * eval: (c-set-style "gnu") |
| 514 | * End: |
| 515 | */ |