Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1 | /* |
Florin Coras | c5df8c7 | 2019-04-08 07:42:30 -0700 | [diff] [blame] | 2 | * Copyright (c) 2016-2019 Cisco and/or its affiliates. |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 3 | * Copyright (c) 2019 Arm Limited |
| 4 | * Copyright (c) 2010-2017 Intel Corporation and/or its affiliates. |
| 5 | * Copyright (c) 2007-2009 Kip Macy kmacy@freebsd.org |
| 6 | * Inspired from DPDK rte_ring.h (SPSC only) (derived from freebsd bufring.h). |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 7 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | * you may not use this file except in compliance with the License. |
| 9 | * You may obtain a copy of the License at: |
| 10 | * |
| 11 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | * |
| 13 | * Unless required by applicable law or agreed to in writing, software |
| 14 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | * See the License for the specific language governing permissions and |
| 17 | * limitations under the License. |
| 18 | */ |
| 19 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 20 | #include <svm/svm_fifo.h> |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 21 | #include <svm/fifo_segment.h> |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 22 | #include <vppinfra/cpu.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 23 | |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 24 | CLIB_MARCH_FN (svm_fifo_copy_to_chunk, void, svm_fifo_t * f, |
| 25 | svm_fifo_chunk_t * c, u32 tail_idx, const u8 * src, u32 len, |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 26 | svm_fifo_chunk_t ** last) |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 27 | { |
| 28 | u32 n_chunk; |
| 29 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 30 | ASSERT (f_pos_geq (tail_idx, c->start_byte) |
| 31 | && f_pos_lt (tail_idx, c->start_byte + c->length)); |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 32 | |
| 33 | tail_idx -= c->start_byte; |
| 34 | n_chunk = c->length - tail_idx; |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 35 | if (n_chunk <= len) |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 36 | { |
| 37 | u32 to_copy = len; |
| 38 | clib_memcpy_fast (&c->data[tail_idx], src, n_chunk); |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 39 | c = c->next; |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 40 | while ((to_copy -= n_chunk)) |
| 41 | { |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 42 | n_chunk = clib_min (c->length, to_copy); |
| 43 | clib_memcpy_fast (&c->data[0], src + (len - to_copy), n_chunk); |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 44 | c = c->length <= to_copy ? c->next : c; |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 45 | } |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 46 | if (*last) |
| 47 | *last = c; |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 48 | } |
| 49 | else |
| 50 | { |
| 51 | clib_memcpy_fast (&c->data[tail_idx], src, len); |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | CLIB_MARCH_FN (svm_fifo_copy_from_chunk, void, svm_fifo_t * f, |
| 56 | svm_fifo_chunk_t * c, u32 head_idx, u8 * dst, u32 len, |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 57 | svm_fifo_chunk_t ** last) |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 58 | { |
| 59 | u32 n_chunk; |
| 60 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 61 | ASSERT (f_pos_geq (head_idx, c->start_byte) |
| 62 | && f_pos_lt (head_idx, c->start_byte + c->length)); |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 63 | |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 64 | head_idx -= c->start_byte; |
| 65 | n_chunk = c->length - head_idx; |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 66 | if (n_chunk <= len) |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 67 | { |
| 68 | u32 to_copy = len; |
| 69 | clib_memcpy_fast (dst, &c->data[head_idx], n_chunk); |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 70 | c = c->next; |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 71 | while ((to_copy -= n_chunk)) |
| 72 | { |
BenoƮt Ganne | df601ae | 2020-10-20 14:31:55 +0200 | [diff] [blame] | 73 | CLIB_MEM_UNPOISON (c, sizeof (*c)); |
| 74 | CLIB_MEM_UNPOISON (c->data, c->length); |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 75 | n_chunk = clib_min (c->length, to_copy); |
| 76 | clib_memcpy_fast (dst + (len - to_copy), &c->data[0], n_chunk); |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 77 | c = c->length <= to_copy ? c->next : c; |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 78 | } |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 79 | if (*last) |
| 80 | *last = c; |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 81 | } |
| 82 | else |
| 83 | { |
| 84 | clib_memcpy_fast (dst, &c->data[head_idx], len); |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | #ifndef CLIB_MARCH_VARIANT |
| 89 | |
| 90 | static inline void |
| 91 | svm_fifo_copy_to_chunk (svm_fifo_t * f, svm_fifo_chunk_t * c, u32 tail_idx, |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 92 | const u8 * src, u32 len, svm_fifo_chunk_t ** last) |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 93 | { |
| 94 | CLIB_MARCH_FN_SELECT (svm_fifo_copy_to_chunk) (f, c, tail_idx, src, len, |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 95 | last); |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | static inline void |
| 99 | svm_fifo_copy_from_chunk (svm_fifo_t * f, svm_fifo_chunk_t * c, u32 head_idx, |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 100 | u8 * dst, u32 len, svm_fifo_chunk_t ** last) |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 101 | { |
| 102 | CLIB_MARCH_FN_SELECT (svm_fifo_copy_from_chunk) (f, c, head_idx, dst, len, |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 103 | last); |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 104 | } |
| 105 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 106 | static inline u32 |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 107 | ooo_segment_end_pos (ooo_segment_t * s) |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 108 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 109 | return (s->start + s->length); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 110 | } |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 111 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 112 | void |
| 113 | svm_fifo_free_ooo_data (svm_fifo_t * f) |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 114 | { |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 115 | pool_free (f->ooo_segments); |
| 116 | } |
| 117 | |
| 118 | static inline ooo_segment_t * |
Florin Coras | a7570b0 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 119 | ooo_segment_prev (svm_fifo_t * f, ooo_segment_t * s) |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 120 | { |
| 121 | if (s->prev == OOO_SEGMENT_INVALID_INDEX) |
| 122 | return 0; |
| 123 | return pool_elt_at_index (f->ooo_segments, s->prev); |
| 124 | } |
| 125 | |
| 126 | static inline ooo_segment_t * |
| 127 | ooo_segment_next (svm_fifo_t * f, ooo_segment_t * s) |
| 128 | { |
| 129 | if (s->next == OOO_SEGMENT_INVALID_INDEX) |
| 130 | return 0; |
| 131 | return pool_elt_at_index (f->ooo_segments, s->next); |
| 132 | } |
| 133 | |
| 134 | static inline ooo_segment_t * |
| 135 | ooo_segment_alloc (svm_fifo_t * f, u32 start, u32 length) |
| 136 | { |
| 137 | ooo_segment_t *s; |
| 138 | |
| 139 | pool_get (f->ooo_segments, s); |
| 140 | |
| 141 | s->start = start; |
| 142 | s->length = length; |
| 143 | s->prev = s->next = OOO_SEGMENT_INVALID_INDEX; |
| 144 | |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 145 | return s; |
| 146 | } |
| 147 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 148 | static inline void |
| 149 | ooo_segment_free (svm_fifo_t * f, u32 index) |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 150 | { |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 151 | ooo_segment_t *cur, *prev = 0, *next = 0; |
| 152 | cur = pool_elt_at_index (f->ooo_segments, index); |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 153 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 154 | if (cur->next != OOO_SEGMENT_INVALID_INDEX) |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 155 | { |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 156 | next = pool_elt_at_index (f->ooo_segments, cur->next); |
| 157 | next->prev = cur->prev; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 158 | } |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 159 | |
| 160 | if (cur->prev != OOO_SEGMENT_INVALID_INDEX) |
| 161 | { |
| 162 | prev = pool_elt_at_index (f->ooo_segments, cur->prev); |
| 163 | prev->next = cur->next; |
| 164 | } |
| 165 | else |
| 166 | { |
| 167 | f->ooos_list_head = cur->next; |
| 168 | } |
| 169 | |
| 170 | pool_put (f->ooo_segments, cur); |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 171 | } |
| 172 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 173 | /** |
| 174 | * Add segment to fifo's out-of-order segment list. Takes care of merging |
| 175 | * adjacent segments and removing overlapping ones. |
| 176 | */ |
| 177 | static void |
| 178 | ooo_segment_add (svm_fifo_t * f, u32 offset, u32 head, u32 tail, u32 length) |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 179 | { |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 180 | ooo_segment_t *s, *new_s, *prev, *next, *it; |
| 181 | u32 new_index, s_end_pos, s_index; |
| 182 | u32 offset_pos, offset_end_pos; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 183 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 184 | ASSERT (offset + length <= f_free_count (f, head, tail)); |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 185 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 186 | offset_pos = tail + offset; |
| 187 | offset_end_pos = tail + offset + length; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 188 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 189 | f->ooos_newest = OOO_SEGMENT_INVALID_INDEX; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 190 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 191 | if (f->ooos_list_head == OOO_SEGMENT_INVALID_INDEX) |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 192 | { |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 193 | s = ooo_segment_alloc (f, offset_pos, length); |
| 194 | f->ooos_list_head = s - f->ooo_segments; |
| 195 | f->ooos_newest = f->ooos_list_head; |
| 196 | return; |
| 197 | } |
| 198 | |
| 199 | /* Find first segment that starts after new segment */ |
| 200 | s = pool_elt_at_index (f->ooo_segments, f->ooos_list_head); |
| 201 | while (s->next != OOO_SEGMENT_INVALID_INDEX |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 202 | && f_pos_lt (s->start, offset_pos)) |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 203 | s = pool_elt_at_index (f->ooo_segments, s->next); |
| 204 | |
| 205 | /* If we have a previous and we overlap it, use it as starting point */ |
Florin Coras | a7570b0 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 206 | prev = ooo_segment_prev (f, s); |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 207 | if (prev && f_pos_leq (offset_pos, ooo_segment_end_pos (prev))) |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 208 | { |
| 209 | s = prev; |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 210 | s_end_pos = ooo_segment_end_pos (s); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 211 | |
| 212 | /* Since we have previous, offset start position cannot be smaller |
| 213 | * than prev->start. Check tail */ |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 214 | ASSERT (f_pos_lt (s->start, offset_pos)); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 215 | goto check_tail; |
| 216 | } |
| 217 | |
| 218 | s_index = s - f->ooo_segments; |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 219 | s_end_pos = ooo_segment_end_pos (s); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 220 | |
| 221 | /* No overlap, add before current segment */ |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 222 | if (f_pos_lt (offset_end_pos, s->start)) |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 223 | { |
| 224 | new_s = ooo_segment_alloc (f, offset_pos, length); |
| 225 | new_index = new_s - f->ooo_segments; |
| 226 | |
| 227 | /* Pool might've moved, get segment again */ |
| 228 | s = pool_elt_at_index (f->ooo_segments, s_index); |
| 229 | if (s->prev != OOO_SEGMENT_INVALID_INDEX) |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 230 | { |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 231 | new_s->prev = s->prev; |
| 232 | prev = pool_elt_at_index (f->ooo_segments, new_s->prev); |
| 233 | prev->next = new_index; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 234 | } |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 235 | else |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 236 | { |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 237 | /* New head */ |
| 238 | f->ooos_list_head = new_index; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 239 | } |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 240 | |
| 241 | new_s->next = s_index; |
| 242 | s->prev = new_index; |
| 243 | f->ooos_newest = new_index; |
| 244 | return; |
| 245 | } |
| 246 | /* No overlap, add after current segment */ |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 247 | else if (f_pos_gt (offset_pos, s_end_pos)) |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 248 | { |
| 249 | new_s = ooo_segment_alloc (f, offset_pos, length); |
| 250 | new_index = new_s - f->ooo_segments; |
| 251 | |
| 252 | /* Pool might've moved, get segment again */ |
| 253 | s = pool_elt_at_index (f->ooo_segments, s_index); |
| 254 | |
| 255 | /* Needs to be last */ |
| 256 | ASSERT (s->next == OOO_SEGMENT_INVALID_INDEX); |
| 257 | |
| 258 | new_s->prev = s_index; |
| 259 | s->next = new_index; |
| 260 | f->ooos_newest = new_index; |
| 261 | |
| 262 | return; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 263 | } |
| 264 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 265 | /* |
| 266 | * Merge needed |
| 267 | */ |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 268 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 269 | /* Merge at head */ |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 270 | if (f_pos_lt (offset_pos, s->start)) |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 271 | { |
| 272 | s->start = offset_pos; |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 273 | s->length = s_end_pos - s->start; |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 274 | f->ooos_newest = s - f->ooo_segments; |
| 275 | } |
| 276 | |
| 277 | check_tail: |
| 278 | |
| 279 | /* Overlapping tail */ |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 280 | if (f_pos_gt (offset_end_pos, s_end_pos)) |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 281 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 282 | s->length = offset_end_pos - s->start; |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 283 | |
| 284 | /* Remove the completely overlapped segments in the tail */ |
| 285 | it = ooo_segment_next (f, s); |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 286 | while (it && f_pos_leq (ooo_segment_end_pos (it), offset_end_pos)) |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 287 | { |
| 288 | next = ooo_segment_next (f, it); |
| 289 | ooo_segment_free (f, it - f->ooo_segments); |
| 290 | it = next; |
| 291 | } |
| 292 | |
| 293 | /* If partial overlap with last, merge */ |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 294 | if (it && f_pos_leq (it->start, offset_end_pos)) |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 295 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 296 | s->length = ooo_segment_end_pos (it) - s->start; |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 297 | ooo_segment_free (f, it - f->ooo_segments); |
| 298 | } |
| 299 | f->ooos_newest = s - f->ooo_segments; |
| 300 | } |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 301 | } |
| 302 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 303 | /** |
| 304 | * Removes segments that can now be enqueued because the fifo's tail has |
| 305 | * advanced. Returns the number of bytes added to tail. |
| 306 | */ |
| 307 | static int |
| 308 | ooo_segment_try_collect (svm_fifo_t * f, u32 n_bytes_enqueued, u32 * tail) |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 309 | { |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 310 | u32 s_index, bytes = 0; |
| 311 | ooo_segment_t *s; |
| 312 | i32 diff; |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 313 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 314 | s = pool_elt_at_index (f->ooo_segments, f->ooos_list_head); |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 315 | diff = *tail - s->start; |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 316 | |
| 317 | ASSERT (diff != n_bytes_enqueued); |
| 318 | |
| 319 | if (diff > n_bytes_enqueued) |
| 320 | return 0; |
| 321 | |
| 322 | /* If last tail update overlaps one/multiple ooo segments, remove them */ |
| 323 | while (0 <= diff && diff < n_bytes_enqueued) |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 324 | { |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 325 | s_index = s - f->ooo_segments; |
| 326 | |
| 327 | /* Segment end is beyond the tail. Advance tail and remove segment */ |
| 328 | if (s->length > diff) |
| 329 | { |
| 330 | bytes = s->length - diff; |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 331 | *tail = *tail + bytes; |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 332 | ooo_segment_free (f, s_index); |
| 333 | break; |
| 334 | } |
| 335 | |
| 336 | /* If we have next go on */ |
| 337 | if (s->next != OOO_SEGMENT_INVALID_INDEX) |
| 338 | { |
| 339 | s = pool_elt_at_index (f->ooo_segments, s->next); |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 340 | diff = *tail - s->start; |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 341 | ooo_segment_free (f, s_index); |
| 342 | } |
| 343 | /* End of search */ |
| 344 | else |
| 345 | { |
| 346 | ooo_segment_free (f, s_index); |
| 347 | break; |
| 348 | } |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 349 | } |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 350 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 351 | ASSERT (bytes <= f->size); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 352 | return bytes; |
Florin Coras | b59a705 | 2017-04-18 22:07:29 -0700 | [diff] [blame] | 353 | } |
| 354 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 355 | __clib_unused static ooo_segment_t * |
Florin Coras | a7570b0 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 356 | ooo_segment_last (svm_fifo_t * f) |
| 357 | { |
| 358 | ooo_segment_t *s; |
| 359 | |
| 360 | if (f->ooos_list_head == OOO_SEGMENT_INVALID_INDEX) |
| 361 | return 0; |
| 362 | |
| 363 | s = svm_fifo_first_ooo_segment (f); |
| 364 | while (s->next != OOO_SEGMENT_INVALID_INDEX) |
| 365 | s = pool_elt_at_index (f->ooo_segments, s->next); |
| 366 | return s; |
| 367 | } |
| 368 | |
Florin Coras | 0a84680 | 2019-04-09 18:29:14 -0700 | [diff] [blame] | 369 | void |
| 370 | svm_fifo_init (svm_fifo_t * f, u32 size) |
| 371 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 372 | svm_fifo_chunk_t *c, *prev; |
Florin Coras | 2de9c0f | 2020-02-02 19:30:39 +0000 | [diff] [blame] | 373 | u32 min_alloc; |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 374 | |
Florin Coras | 0a84680 | 2019-04-09 18:29:14 -0700 | [diff] [blame] | 375 | f->size = size; |
Florin Coras | 0a84680 | 2019-04-09 18:29:14 -0700 | [diff] [blame] | 376 | f->ooos_list_head = OOO_SEGMENT_INVALID_INDEX; |
Florin Coras | 0a84680 | 2019-04-09 18:29:14 -0700 | [diff] [blame] | 377 | f->segment_index = SVM_FIFO_INVALID_INDEX; |
| 378 | f->refcnt = 1; |
Florin Coras | 73cad33 | 2019-08-28 17:12:32 -0700 | [diff] [blame] | 379 | f->head = f->tail = f->flags = 0; |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 380 | f->head_chunk = f->tail_chunk = f->start_chunk; |
| 381 | f->ooo_deq = f->ooo_enq = 0; |
Florin Coras | 0a84680 | 2019-04-09 18:29:14 -0700 | [diff] [blame] | 382 | |
Florin Coras | 2de9c0f | 2020-02-02 19:30:39 +0000 | [diff] [blame] | 383 | min_alloc = size > 32 << 10 ? size >> 3 : 4096; |
| 384 | min_alloc = clib_min (min_alloc, 64 << 10); |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 385 | f->min_alloc = min_alloc; |
Florin Coras | eaacce4 | 2019-07-02 13:07:37 -0700 | [diff] [blame] | 386 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 387 | /* |
| 388 | * Initialize chunks |
| 389 | */ |
Florin Coras | eaacce4 | 2019-07-02 13:07:37 -0700 | [diff] [blame] | 390 | f->start_chunk->start_byte = 0; |
| 391 | prev = f->start_chunk; |
| 392 | c = prev->next; |
| 393 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 394 | while (c) |
Florin Coras | eaacce4 | 2019-07-02 13:07:37 -0700 | [diff] [blame] | 395 | { |
| 396 | c->start_byte = prev->start_byte + prev->length; |
Florin Coras | eaacce4 | 2019-07-02 13:07:37 -0700 | [diff] [blame] | 397 | prev = c; |
| 398 | c = c->next; |
| 399 | } |
| 400 | } |
| 401 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 402 | void |
| 403 | svm_fifo_init_ooo_lookup (svm_fifo_t * f, u8 ooo_type) |
| 404 | { |
| 405 | if (ooo_type == 0) |
| 406 | { |
| 407 | ASSERT (!rb_tree_is_init (&f->ooo_enq_lookup)); |
| 408 | rb_tree_init (&f->ooo_enq_lookup); |
| 409 | } |
| 410 | else |
| 411 | { |
| 412 | ASSERT (!rb_tree_is_init (&f->ooo_deq_lookup)); |
| 413 | rb_tree_init (&f->ooo_deq_lookup); |
| 414 | } |
| 415 | } |
| 416 | |
Florin Coras | b095a3c | 2019-04-25 12:58:46 -0700 | [diff] [blame] | 417 | /** |
| 418 | * Creates a fifo in the current heap. Fails vs blow up the process |
| 419 | */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 420 | svm_fifo_t * |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 421 | svm_fifo_alloc (u32 data_size_in_bytes) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 422 | { |
Dave Barach | 818eb54 | 2017-08-02 13:56:13 -0400 | [diff] [blame] | 423 | u32 rounded_data_size; |
Florin Coras | cefd5d8 | 2019-05-05 13:19:57 -0700 | [diff] [blame] | 424 | svm_fifo_chunk_t *c; |
| 425 | svm_fifo_t *f; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 426 | |
Florin Coras | cefd5d8 | 2019-05-05 13:19:57 -0700 | [diff] [blame] | 427 | f = clib_mem_alloc_aligned_or_null (sizeof (*f), CLIB_CACHE_LINE_BYTES); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 428 | if (f == 0) |
| 429 | return 0; |
| 430 | |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 431 | clib_memset (f, 0, sizeof (*f)); |
Florin Coras | cefd5d8 | 2019-05-05 13:19:57 -0700 | [diff] [blame] | 432 | |
| 433 | /* always round fifo data size to the next highest power-of-two */ |
| 434 | rounded_data_size = (1 << (max_log2 (data_size_in_bytes))); |
| 435 | c = clib_mem_alloc_aligned_or_null (sizeof (*c) + rounded_data_size, |
| 436 | CLIB_CACHE_LINE_BYTES); |
| 437 | if (!c) |
| 438 | { |
| 439 | clib_mem_free (f); |
| 440 | return 0; |
| 441 | } |
| 442 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 443 | clib_memset (c, 0, sizeof (*c)); |
Florin Coras | cefd5d8 | 2019-05-05 13:19:57 -0700 | [diff] [blame] | 444 | c->start_byte = 0; |
| 445 | c->length = data_size_in_bytes; |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 446 | c->enq_rb_index = RBTREE_TNIL_INDEX; |
| 447 | c->deq_rb_index = RBTREE_TNIL_INDEX; |
Florin Coras | cefd5d8 | 2019-05-05 13:19:57 -0700 | [diff] [blame] | 448 | f->start_chunk = f->end_chunk = c; |
| 449 | |
Florin Coras | 0a84680 | 2019-04-09 18:29:14 -0700 | [diff] [blame] | 450 | return f; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 451 | } |
| 452 | |
Florin Coras | b095a3c | 2019-04-25 12:58:46 -0700 | [diff] [blame] | 453 | /** |
| 454 | * Creates a fifo chunk in the current heap |
| 455 | */ |
| 456 | svm_fifo_chunk_t * |
| 457 | svm_fifo_chunk_alloc (u32 size) |
| 458 | { |
| 459 | svm_fifo_chunk_t *c; |
| 460 | u32 rounded_size; |
| 461 | |
| 462 | /* round chunk size to the next highest power-of-two */ |
| 463 | rounded_size = (1 << (max_log2 (size))); |
| 464 | c = clib_mem_alloc_aligned_or_null (sizeof (*c) + rounded_size, |
| 465 | CLIB_CACHE_LINE_BYTES); |
| 466 | if (c == 0) |
| 467 | return 0; |
| 468 | |
| 469 | clib_memset (c, 0, sizeof (*c)); |
| 470 | c->length = rounded_size; |
| 471 | return c; |
| 472 | } |
| 473 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 474 | /** |
| 475 | * Find chunk for given byte position |
| 476 | * |
| 477 | * @param f fifo |
| 478 | * @param pos normalized position in fifo |
| 479 | * |
| 480 | * @return chunk that includes given position or 0 |
| 481 | */ |
| 482 | static svm_fifo_chunk_t * |
| 483 | svm_fifo_find_chunk (svm_fifo_t * f, u32 pos) |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 484 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 485 | svm_fifo_chunk_t *c; |
| 486 | |
| 487 | c = f->start_chunk; |
| 488 | while (c && !f_chunk_includes_pos (c, pos)) |
| 489 | c = c->next; |
| 490 | |
| 491 | return c; |
| 492 | } |
| 493 | |
| 494 | static svm_fifo_chunk_t * |
| 495 | svm_fifo_find_next_chunk (svm_fifo_t * f, svm_fifo_chunk_t * start, u32 pos) |
| 496 | { |
| 497 | svm_fifo_chunk_t *c; |
| 498 | |
| 499 | ASSERT (start != 0); |
| 500 | |
| 501 | c = start; |
| 502 | while (c && !f_chunk_includes_pos (c, pos)) |
| 503 | c = c->next; |
| 504 | |
| 505 | return c; |
| 506 | } |
| 507 | |
| 508 | u32 |
| 509 | svm_fifo_max_read_chunk (svm_fifo_t * f) |
| 510 | { |
| 511 | u32 head, tail, end_chunk; |
| 512 | |
| 513 | f_load_head_tail_cons (f, &head, &tail); |
| 514 | ASSERT (!f->head_chunk || f_chunk_includes_pos (f->head_chunk, head)); |
| 515 | |
| 516 | if (!f->head_chunk) |
| 517 | { |
| 518 | f->head_chunk = svm_fifo_find_chunk (f, head); |
| 519 | if (PREDICT_FALSE (!f->head_chunk)) |
| 520 | return 0; |
| 521 | } |
| 522 | |
| 523 | end_chunk = f_chunk_end (f->head_chunk); |
| 524 | |
| 525 | return f_pos_lt (end_chunk, tail) ? end_chunk - head : tail - head; |
| 526 | } |
| 527 | |
| 528 | u32 |
| 529 | svm_fifo_max_write_chunk (svm_fifo_t * f) |
| 530 | { |
| 531 | u32 head, tail; |
| 532 | |
| 533 | f_load_head_tail_prod (f, &head, &tail); |
| 534 | ASSERT (!f->tail_chunk || f_chunk_includes_pos (f->tail_chunk, tail)); |
| 535 | |
| 536 | return f->tail_chunk ? f_chunk_end (f->tail_chunk) - tail : 0; |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 537 | } |
| 538 | |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 539 | static rb_node_t * |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 540 | f_find_node_rbtree (rb_tree_t * rt, u32 pos) |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 541 | { |
| 542 | rb_node_t *cur, *prev; |
| 543 | |
| 544 | cur = rb_node (rt, rt->root); |
| 545 | if (PREDICT_FALSE (rb_node_is_tnil (rt, cur))) |
| 546 | return 0; |
| 547 | |
| 548 | while (pos != cur->key) |
| 549 | { |
| 550 | prev = cur; |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 551 | if (f_pos_lt (pos, cur->key)) |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 552 | { |
| 553 | cur = rb_node_left (rt, cur); |
| 554 | if (rb_node_is_tnil (rt, cur)) |
| 555 | { |
| 556 | cur = rb_tree_predecessor (rt, prev); |
| 557 | break; |
| 558 | } |
| 559 | } |
| 560 | else |
| 561 | { |
| 562 | cur = rb_node_right (rt, cur); |
| 563 | if (rb_node_is_tnil (rt, cur)) |
| 564 | { |
| 565 | cur = prev; |
| 566 | break; |
| 567 | } |
| 568 | } |
| 569 | } |
| 570 | |
| 571 | if (rb_node_is_tnil (rt, cur)) |
| 572 | return 0; |
| 573 | |
| 574 | return cur; |
| 575 | } |
| 576 | |
| 577 | static svm_fifo_chunk_t * |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 578 | f_find_chunk_rbtree (rb_tree_t * rt, u32 pos) |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 579 | { |
| 580 | svm_fifo_chunk_t *c; |
| 581 | rb_node_t *n; |
| 582 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 583 | if (!rb_tree_is_init (rt)) |
| 584 | return 0; |
| 585 | |
| 586 | n = f_find_node_rbtree (rt, pos); |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 587 | if (!n) |
| 588 | return 0; |
| 589 | c = uword_to_pointer (n->opaque, svm_fifo_chunk_t *); |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 590 | if (f_chunk_includes_pos (c, pos)) |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 591 | return c; |
| 592 | |
| 593 | return 0; |
| 594 | } |
| 595 | |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 596 | static void |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 597 | f_update_ooo_enq (svm_fifo_t * f, u32 start_pos, u32 end_pos) |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 598 | { |
| 599 | rb_tree_t *rt = &f->ooo_enq_lookup; |
| 600 | svm_fifo_chunk_t *c; |
| 601 | rb_node_t *cur; |
| 602 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 603 | /* Use linear search if rbtree is not initialized */ |
| 604 | if (PREDICT_FALSE (!rb_tree_is_init (rt))) |
| 605 | { |
| 606 | f->ooo_enq = svm_fifo_find_next_chunk (f, f->tail_chunk, start_pos); |
| 607 | return; |
| 608 | } |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 609 | |
| 610 | if (rt->root == RBTREE_TNIL_INDEX) |
| 611 | { |
| 612 | c = f->tail_chunk; |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 613 | ASSERT (c->enq_rb_index == RBTREE_TNIL_INDEX); |
| 614 | c->enq_rb_index = rb_tree_add_custom (rt, c->start_byte, |
| 615 | pointer_to_uword (c), f_pos_lt); |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 616 | } |
| 617 | else |
| 618 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 619 | cur = f_find_node_rbtree (rt, start_pos); |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 620 | c = uword_to_pointer (cur->opaque, svm_fifo_chunk_t *); |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 621 | ASSERT (f_pos_leq (c->start_byte, start_pos)); |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 622 | } |
| 623 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 624 | if (f_chunk_includes_pos (c, start_pos)) |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 625 | f->ooo_enq = c; |
| 626 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 627 | if (f_chunk_includes_pos (c, end_pos)) |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 628 | return; |
| 629 | |
| 630 | do |
| 631 | { |
| 632 | c = c->next; |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 633 | if (!c || c->enq_rb_index != RBTREE_TNIL_INDEX) |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 634 | break; |
| 635 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 636 | c->enq_rb_index = rb_tree_add_custom (rt, c->start_byte, |
| 637 | pointer_to_uword (c), f_pos_lt); |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 638 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 639 | if (f_chunk_includes_pos (c, start_pos)) |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 640 | f->ooo_enq = c; |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 641 | } |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 642 | while (!f_chunk_includes_pos (c, end_pos)); |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 643 | } |
| 644 | |
| 645 | static void |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 646 | f_update_ooo_deq (svm_fifo_t * f, u32 start_pos, u32 end_pos) |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 647 | { |
| 648 | rb_tree_t *rt = &f->ooo_deq_lookup; |
| 649 | rb_node_t *cur; |
| 650 | svm_fifo_chunk_t *c; |
| 651 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 652 | /* Use linear search if rbtree is not initialized */ |
| 653 | if (PREDICT_FALSE (!rb_tree_is_init (rt))) |
| 654 | { |
| 655 | f->ooo_deq = svm_fifo_find_chunk (f, start_pos); |
| 656 | return; |
| 657 | } |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 658 | |
| 659 | if (rt->root == RBTREE_TNIL_INDEX) |
| 660 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 661 | c = f->start_chunk; |
| 662 | ASSERT (c->deq_rb_index == RBTREE_TNIL_INDEX); |
| 663 | c->deq_rb_index = rb_tree_add_custom (rt, c->start_byte, |
| 664 | pointer_to_uword (c), f_pos_lt); |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 665 | } |
| 666 | else |
| 667 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 668 | cur = f_find_node_rbtree (rt, start_pos); |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 669 | c = uword_to_pointer (cur->opaque, svm_fifo_chunk_t *); |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 670 | ASSERT (f_pos_leq (c->start_byte, start_pos)); |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 671 | } |
| 672 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 673 | if (f_chunk_includes_pos (c, start_pos)) |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 674 | f->ooo_deq = c; |
| 675 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 676 | if (f_chunk_includes_pos (c, end_pos)) |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 677 | return; |
| 678 | |
| 679 | do |
| 680 | { |
| 681 | c = c->next; |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 682 | if (!c || c->deq_rb_index != RBTREE_TNIL_INDEX) |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 683 | break; |
| 684 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 685 | c->deq_rb_index = rb_tree_add_custom (rt, c->start_byte, |
| 686 | pointer_to_uword (c), f_pos_lt); |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 687 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 688 | if (f_chunk_includes_pos (c, start_pos)) |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 689 | f->ooo_deq = c; |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 690 | } |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 691 | while (!f_chunk_includes_pos (c, end_pos)); |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 692 | } |
| 693 | |
| 694 | static svm_fifo_chunk_t * |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 695 | f_lookup_clear_enq_chunks (svm_fifo_t * f, svm_fifo_chunk_t * start, |
| 696 | u32 end_pos) |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 697 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 698 | rb_tree_t *rt = &f->ooo_enq_lookup; |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 699 | svm_fifo_chunk_t *c; |
| 700 | rb_node_t *n; |
| 701 | |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 702 | c = start; |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 703 | while (c && !f_chunk_includes_pos (c, end_pos)) |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 704 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 705 | if (c->enq_rb_index != RBTREE_TNIL_INDEX) |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 706 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 707 | n = rb_node (rt, c->enq_rb_index); |
| 708 | rb_tree_del_node (rt, n); |
| 709 | c->enq_rb_index = RBTREE_TNIL_INDEX; |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 710 | } |
| 711 | |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 712 | c = c->next; |
| 713 | } |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 714 | |
| 715 | /* No ooo segments left, so make sure the current chunk |
| 716 | * is not tracked in the enq rbtree */ |
| 717 | if (f->ooos_list_head == OOO_SEGMENT_INVALID_INDEX |
| 718 | && c && c->enq_rb_index != RBTREE_TNIL_INDEX) |
| 719 | { |
| 720 | n = rb_node (rt, c->enq_rb_index); |
| 721 | rb_tree_del_node (rt, n); |
| 722 | c->enq_rb_index = RBTREE_TNIL_INDEX; |
| 723 | } |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 724 | |
| 725 | return c; |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 726 | } |
| 727 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 728 | static svm_fifo_chunk_t * |
| 729 | f_lookup_clear_deq_chunks (svm_fifo_t * f, svm_fifo_chunk_t * start, |
| 730 | u32 end_pos) |
Florin Coras | a7570b0 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 731 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 732 | rb_tree_t *rt = &f->ooo_deq_lookup; |
| 733 | svm_fifo_chunk_t *c; |
| 734 | rb_node_t *n; |
Florin Coras | a7570b0 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 735 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 736 | c = start; |
| 737 | while (c && !f_chunk_includes_pos (c, end_pos)) |
Florin Coras | a7570b0 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 738 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 739 | if (c->deq_rb_index != RBTREE_TNIL_INDEX) |
| 740 | { |
| 741 | n = rb_node (rt, c->deq_rb_index); |
| 742 | rb_tree_del_node (rt, n); |
| 743 | c->deq_rb_index = RBTREE_TNIL_INDEX; |
| 744 | } |
| 745 | |
Florin Coras | a7570b0 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 746 | c = c->next; |
| 747 | } |
Florin Coras | a7570b0 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 748 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 749 | return c; |
Florin Coras | a7570b0 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 750 | } |
| 751 | |
| 752 | void |
Florin Coras | b095a3c | 2019-04-25 12:58:46 -0700 | [diff] [blame] | 753 | svm_fifo_free_chunk_lookup (svm_fifo_t * f) |
| 754 | { |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 755 | rb_tree_free_nodes (&f->ooo_enq_lookup); |
| 756 | rb_tree_free_nodes (&f->ooo_deq_lookup); |
Florin Coras | b095a3c | 2019-04-25 12:58:46 -0700 | [diff] [blame] | 757 | } |
| 758 | |
| 759 | void |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 760 | svm_fifo_free (svm_fifo_t * f) |
| 761 | { |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 762 | ASSERT (f->refcnt > 0); |
| 763 | |
| 764 | if (--f->refcnt == 0) |
| 765 | { |
Florin Coras | b095a3c | 2019-04-25 12:58:46 -0700 | [diff] [blame] | 766 | /* ooo data is not allocated on segment heap */ |
| 767 | svm_fifo_free_chunk_lookup (f); |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 768 | clib_mem_free (f); |
| 769 | } |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 770 | } |
| 771 | |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 772 | void |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 773 | svm_fifo_overwrite_head (svm_fifo_t * f, u8 * src, u32 len) |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 774 | { |
Florin Coras | 0a84680 | 2019-04-09 18:29:14 -0700 | [diff] [blame] | 775 | u32 n_chunk; |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 776 | u32 head, tail, head_idx; |
Florin Coras | 0a84680 | 2019-04-09 18:29:14 -0700 | [diff] [blame] | 777 | svm_fifo_chunk_t *c; |
| 778 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 779 | ASSERT (len <= f->size); |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 780 | |
| 781 | f_load_head_tail_cons (f, &head, &tail); |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 782 | |
| 783 | if (!f->head_chunk) |
| 784 | f->head_chunk = svm_fifo_find_chunk (f, head); |
| 785 | |
Florin Coras | 0a84680 | 2019-04-09 18:29:14 -0700 | [diff] [blame] | 786 | c = f->head_chunk; |
Florin Coras | 29a59c3 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 787 | head_idx = head - c->start_byte; |
Florin Coras | 0a84680 | 2019-04-09 18:29:14 -0700 | [diff] [blame] | 788 | n_chunk = c->length - head_idx; |
| 789 | if (len <= n_chunk) |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 790 | clib_memcpy_fast (&c->data[head_idx], src, len); |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 791 | else |
| 792 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 793 | ASSERT (len - n_chunk <= c->next->length); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 794 | clib_memcpy_fast (&c->data[head_idx], src, n_chunk); |
| 795 | clib_memcpy_fast (&c->next->data[0], src + n_chunk, len - n_chunk); |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 796 | } |
| 797 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 798 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 799 | static int |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 800 | f_try_chunk_alloc (svm_fifo_t * f, u32 head, u32 tail, u32 len) |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 801 | { |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 802 | svm_fifo_chunk_t *c, *cur, *prev; |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 803 | u32 alloc_size, free_alloced; |
| 804 | |
| 805 | free_alloced = f_chunk_end (f->end_chunk) - tail; |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 806 | |
| 807 | alloc_size = clib_min (f->min_alloc, f->size - (tail - head)); |
| 808 | alloc_size = clib_max (alloc_size, len - free_alloced); |
| 809 | |
| 810 | c = fsh_alloc_chunk (f->fs_hdr, f->slice_index, alloc_size); |
| 811 | if (PREDICT_FALSE (!c)) |
| 812 | return -1; |
| 813 | |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 814 | cur = c; |
| 815 | prev = f->end_chunk; |
| 816 | |
| 817 | while (cur) |
| 818 | { |
| 819 | cur->start_byte = prev->start_byte + prev->length; |
| 820 | cur->enq_rb_index = RBTREE_TNIL_INDEX; |
| 821 | cur->deq_rb_index = RBTREE_TNIL_INDEX; |
| 822 | |
| 823 | prev = cur; |
| 824 | cur = cur->next; |
| 825 | } |
| 826 | |
| 827 | prev->next = 0; |
| 828 | f->end_chunk->next = c; |
| 829 | f->end_chunk = prev; |
| 830 | |
| 831 | if (!f->tail_chunk) |
| 832 | f->tail_chunk = c; |
| 833 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 834 | return 0; |
| 835 | } |
| 836 | |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 837 | int |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 838 | svm_fifo_enqueue (svm_fifo_t * f, u32 len, const u8 * src) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 839 | { |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 840 | u32 tail, head, free_count; |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 841 | svm_fifo_chunk_t *old_tail_c; |
| 842 | |
| 843 | f->ooos_newest = OOO_SEGMENT_INVALID_INDEX; |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 844 | |
| 845 | f_load_head_tail_prod (f, &head, &tail); |
| 846 | |
| 847 | /* free space in fifo can only increase during enqueue: SPSC */ |
| 848 | free_count = f_free_count (f, head, tail); |
| 849 | |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 850 | if (PREDICT_FALSE (free_count == 0)) |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 851 | return SVM_FIFO_EFULL; |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 852 | |
| 853 | /* number of bytes we're going to copy */ |
| 854 | len = clib_min (free_count, len); |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 855 | |
| 856 | if (f_pos_gt (tail + len, f_chunk_end (f->end_chunk))) |
| 857 | { |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 858 | if (PREDICT_FALSE (f_try_chunk_alloc (f, head, tail, len))) |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 859 | { |
| 860 | len = f_chunk_end (f->end_chunk) - tail; |
| 861 | if (!len) |
| 862 | return SVM_FIFO_EGROW; |
| 863 | } |
| 864 | } |
| 865 | |
| 866 | old_tail_c = f->tail_chunk; |
| 867 | |
Florin Coras | 29a59c3 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 868 | svm_fifo_copy_to_chunk (f, f->tail_chunk, tail, src, len, &f->tail_chunk); |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 869 | tail = tail + len; |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 870 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 871 | svm_fifo_trace_add (f, head, len, 2); |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 872 | |
| 873 | /* collect out-of-order segments */ |
| 874 | if (PREDICT_FALSE (f->ooos_list_head != OOO_SEGMENT_INVALID_INDEX)) |
Florin Coras | eaacce4 | 2019-07-02 13:07:37 -0700 | [diff] [blame] | 875 | { |
| 876 | len += ooo_segment_try_collect (f, len, &tail); |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 877 | /* Tail chunk might've changed even if nothing was collected */ |
| 878 | f->tail_chunk = f_lookup_clear_enq_chunks (f, old_tail_c, tail); |
| 879 | f->ooo_enq = 0; |
Florin Coras | eaacce4 | 2019-07-02 13:07:37 -0700 | [diff] [blame] | 880 | } |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 881 | |
| 882 | /* store-rel: producer owned index (paired with load-acq in consumer) */ |
| 883 | clib_atomic_store_rel_n (&f->tail, tail); |
| 884 | |
| 885 | return len; |
| 886 | } |
| 887 | |
| 888 | /** |
| 889 | * Enqueue a future segment. |
| 890 | * |
| 891 | * Two choices: either copies the entire segment, or copies nothing |
| 892 | * Returns 0 of the entire segment was copied |
| 893 | * Returns -1 if none of the segment was copied due to lack of space |
| 894 | */ |
| 895 | int |
| 896 | svm_fifo_enqueue_with_offset (svm_fifo_t * f, u32 offset, u32 len, u8 * src) |
| 897 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 898 | u32 tail, head, free_count, enq_pos; |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 899 | |
| 900 | f_load_head_tail_prod (f, &head, &tail); |
| 901 | |
| 902 | /* free space in fifo can only increase during enqueue: SPSC */ |
| 903 | free_count = f_free_count (f, head, tail); |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 904 | f->ooos_newest = OOO_SEGMENT_INVALID_INDEX; |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 905 | |
| 906 | /* will this request fit? */ |
| 907 | if ((len + offset) > free_count) |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 908 | return SVM_FIFO_EFULL; |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 909 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 910 | enq_pos = tail + offset; |
| 911 | |
| 912 | if (f_pos_gt (enq_pos + len, f_chunk_end (f->end_chunk))) |
| 913 | { |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 914 | if (PREDICT_FALSE (f_try_chunk_alloc (f, head, tail, offset + len))) |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 915 | return SVM_FIFO_EGROW; |
| 916 | } |
| 917 | |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 918 | svm_fifo_trace_add (f, offset, len, 1); |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 919 | ooo_segment_add (f, offset, head, tail, len); |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 920 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 921 | if (!f->ooo_enq || !f_chunk_includes_pos (f->ooo_enq, enq_pos)) |
| 922 | f_update_ooo_enq (f, enq_pos, enq_pos + len); |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 923 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 924 | svm_fifo_copy_to_chunk (f, f->ooo_enq, enq_pos, src, len, &f->ooo_enq); |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 925 | |
| 926 | return 0; |
| 927 | } |
| 928 | |
Florin Coras | a7570b0 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 929 | /** |
| 930 | * Advance tail |
| 931 | */ |
| 932 | void |
| 933 | svm_fifo_enqueue_nocopy (svm_fifo_t * f, u32 len) |
| 934 | { |
| 935 | u32 tail; |
| 936 | |
| 937 | ASSERT (len <= svm_fifo_max_enqueue_prod (f)); |
| 938 | /* load-relaxed: producer owned index */ |
| 939 | tail = f->tail; |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 940 | tail = tail + len; |
Florin Coras | eaacce4 | 2019-07-02 13:07:37 -0700 | [diff] [blame] | 941 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 942 | if (rb_tree_is_init (&f->ooo_enq_lookup)) |
| 943 | { |
| 944 | f->tail_chunk = f_lookup_clear_enq_chunks (f, f->tail_chunk, tail); |
| 945 | f->ooo_enq = 0; |
| 946 | } |
| 947 | else |
| 948 | { |
| 949 | f->tail_chunk = svm_fifo_find_next_chunk (f, f->tail_chunk, tail); |
| 950 | } |
Florin Coras | eaacce4 | 2019-07-02 13:07:37 -0700 | [diff] [blame] | 951 | |
Florin Coras | a7570b0 | 2019-05-02 12:52:19 -0700 | [diff] [blame] | 952 | /* store-rel: producer owned index (paired with load-acq in consumer) */ |
| 953 | clib_atomic_store_rel_n (&f->tail, tail); |
| 954 | } |
| 955 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 956 | always_inline svm_fifo_chunk_t * |
| 957 | f_unlink_chunks (svm_fifo_t * f, u32 end_pos, u8 maybe_ooo) |
| 958 | { |
| 959 | svm_fifo_chunk_t *start, *prev = 0, *c; |
| 960 | rb_tree_t *rt; |
| 961 | rb_node_t *n; |
| 962 | |
| 963 | ASSERT (!f_chunk_includes_pos (f->start_chunk, end_pos)); |
| 964 | |
| 965 | if (maybe_ooo) |
| 966 | rt = &f->ooo_deq_lookup; |
| 967 | |
| 968 | c = f->start_chunk; |
| 969 | |
| 970 | do |
| 971 | { |
| 972 | if (maybe_ooo && c->deq_rb_index != RBTREE_TNIL_INDEX) |
| 973 | { |
| 974 | n = rb_node (rt, c->deq_rb_index); |
| 975 | ASSERT (n == f_find_node_rbtree (rt, c->start_byte)); |
| 976 | rb_tree_del_node (rt, n); |
| 977 | c->deq_rb_index = RBTREE_TNIL_INDEX; |
| 978 | } |
| 979 | if (!c->next) |
| 980 | break; |
| 981 | prev = c; |
| 982 | c = c->next; |
| 983 | } |
| 984 | while (!f_chunk_includes_pos (c, end_pos)); |
| 985 | |
| 986 | if (maybe_ooo) |
| 987 | { |
| 988 | if (f->ooo_deq && f_pos_lt (f->ooo_deq->start_byte, f_chunk_end (c))) |
| 989 | f->ooo_deq = 0; |
| 990 | } |
| 991 | else |
| 992 | { |
| 993 | if (PREDICT_FALSE (f->ooo_deq != 0)) |
| 994 | f->ooo_deq = 0; |
| 995 | } |
| 996 | |
| 997 | /* Avoid unlinking the last chunk */ |
| 998 | if (!prev) |
| 999 | return 0; |
| 1000 | |
| 1001 | prev->next = 0; |
| 1002 | start = f->start_chunk; |
| 1003 | f->start_chunk = c; |
| 1004 | |
| 1005 | return start; |
| 1006 | } |
| 1007 | |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 1008 | int |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1009 | svm_fifo_dequeue (svm_fifo_t * f, u32 len, u8 * dst) |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 1010 | { |
| 1011 | u32 tail, head, cursize; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1012 | |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 1013 | f_load_head_tail_cons (f, &head, &tail); |
| 1014 | |
| 1015 | /* current size of fifo can only increase during dequeue: SPSC */ |
| 1016 | cursize = f_cursize (f, head, tail); |
| 1017 | |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1018 | if (PREDICT_FALSE (cursize == 0)) |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1019 | return SVM_FIFO_EEMPTY; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1020 | |
Florin Coras | 99ad2fc | 2019-04-18 21:25:49 -0700 | [diff] [blame] | 1021 | len = clib_min (cursize, len); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1022 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1023 | if (!f->head_chunk) |
| 1024 | f->head_chunk = svm_fifo_find_chunk (f, head); |
| 1025 | |
| 1026 | svm_fifo_copy_from_chunk (f, f->head_chunk, head, dst, len, &f->head_chunk); |
| 1027 | head = head + len; |
| 1028 | |
Florin Coras | 97d39e3 | 2020-09-04 08:57:27 -0700 | [diff] [blame] | 1029 | /* In order dequeues are not supported in combination with ooo peeking. |
| 1030 | * Use svm_fifo_dequeue_drop instead. */ |
| 1031 | ASSERT (rb_tree_n_nodes (&f->ooo_deq_lookup) <= 1); |
| 1032 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1033 | if (f_pos_geq (head, f_chunk_end (f->start_chunk))) |
| 1034 | fsh_collect_chunks (f->fs_hdr, f->slice_index, |
| 1035 | f_unlink_chunks (f, head, 0)); |
Florin Coras | 2309e7a | 2019-04-18 18:58:10 -0700 | [diff] [blame] | 1036 | |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 1037 | /* store-rel: consumer owned index (paired with load-acq in producer) */ |
| 1038 | clib_atomic_store_rel_n (&f->head, head); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1039 | |
Florin Coras | 0a84680 | 2019-04-09 18:29:14 -0700 | [diff] [blame] | 1040 | return len; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1041 | } |
| 1042 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1043 | int |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 1044 | svm_fifo_peek (svm_fifo_t * f, u32 offset, u32 len, u8 * dst) |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 1045 | { |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 1046 | u32 tail, head, cursize, head_idx; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1047 | |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 1048 | f_load_head_tail_cons (f, &head, &tail); |
| 1049 | |
| 1050 | /* current size of fifo can only increase during peek: SPSC */ |
| 1051 | cursize = f_cursize (f, head, tail); |
| 1052 | |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 1053 | if (PREDICT_FALSE (cursize < offset)) |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1054 | return SVM_FIFO_EEMPTY; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1055 | |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 1056 | len = clib_min (cursize - offset, len); |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1057 | head_idx = head + offset; |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 1058 | |
BenoƮt Ganne | df601ae | 2020-10-20 14:31:55 +0200 | [diff] [blame] | 1059 | CLIB_MEM_UNPOISON (f->ooo_deq, sizeof (*f->ooo_deq)); |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1060 | if (!f->ooo_deq || !f_chunk_includes_pos (f->ooo_deq, head_idx)) |
| 1061 | f_update_ooo_deq (f, head_idx, head_idx + len); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1062 | |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 1063 | svm_fifo_copy_from_chunk (f, f->ooo_deq, head_idx, dst, len, &f->ooo_deq); |
Florin Coras | 0a84680 | 2019-04-09 18:29:14 -0700 | [diff] [blame] | 1064 | return len; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1065 | } |
| 1066 | |
| 1067 | int |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1068 | svm_fifo_dequeue_drop (svm_fifo_t * f, u32 len) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1069 | { |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1070 | u32 total_drop_bytes, tail, head, cursize; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1071 | |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 1072 | f_load_head_tail_cons (f, &head, &tail); |
| 1073 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1074 | /* number of bytes available */ |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 1075 | cursize = f_cursize (f, head, tail); |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1076 | if (PREDICT_FALSE (cursize == 0)) |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1077 | return SVM_FIFO_EEMPTY; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1078 | |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 1079 | /* number of bytes we're going to drop */ |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1080 | total_drop_bytes = clib_min (cursize, len); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1081 | |
Nathan Skrzypczak | b4c6775 | 2019-06-20 09:58:37 +0200 | [diff] [blame] | 1082 | svm_fifo_trace_add (f, tail, total_drop_bytes, 3); |
| 1083 | |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 1084 | /* move head */ |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1085 | head = head + total_drop_bytes; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 1086 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1087 | if (f_pos_geq (head, f_chunk_end (f->start_chunk))) |
| 1088 | { |
| 1089 | fsh_collect_chunks (f->fs_hdr, f->slice_index, |
| 1090 | f_unlink_chunks (f, head, 1)); |
| 1091 | f->head_chunk = |
| 1092 | f_chunk_includes_pos (f->start_chunk, head) ? f->start_chunk : 0; |
| 1093 | } |
Florin Coras | 0a6562c | 2019-08-05 09:39:47 -0700 | [diff] [blame] | 1094 | |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 1095 | /* store-rel: consumer owned index (paired with load-acq in producer) */ |
| 1096 | clib_atomic_store_rel_n (&f->head, head); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1097 | |
| 1098 | return total_drop_bytes; |
| 1099 | } |
| 1100 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1101 | /** |
| 1102 | * Drop all data from fifo |
| 1103 | * |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1104 | */ |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 1105 | void |
| 1106 | svm_fifo_dequeue_drop_all (svm_fifo_t * f) |
| 1107 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1108 | u32 head, tail; |
Florin Coras | eaacce4 | 2019-07-02 13:07:37 -0700 | [diff] [blame] | 1109 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1110 | f_load_head_tail_all_acq (f, &head, &tail); |
Florin Coras | eaacce4 | 2019-07-02 13:07:37 -0700 | [diff] [blame] | 1111 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1112 | if (!f->head_chunk || !f_chunk_includes_pos (f->head_chunk, head)) |
| 1113 | f->head_chunk = svm_fifo_find_chunk (f, head); |
| 1114 | |
| 1115 | f->head_chunk = f_lookup_clear_deq_chunks (f, f->head_chunk, tail); |
| 1116 | |
| 1117 | if (f_pos_geq (tail, f_chunk_end (f->start_chunk))) |
| 1118 | fsh_collect_chunks (f->fs_hdr, f->slice_index, |
| 1119 | f_unlink_chunks (f, tail, 0)); |
Florin Coras | 0a6562c | 2019-08-05 09:39:47 -0700 | [diff] [blame] | 1120 | |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 1121 | /* store-rel: consumer owned index (paired with load-acq in producer) */ |
| 1122 | clib_atomic_store_rel_n (&f->head, tail); |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 1123 | } |
| 1124 | |
Florin Coras | 2cba853 | 2018-09-11 16:33:36 -0700 | [diff] [blame] | 1125 | int |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1126 | svm_fifo_fill_chunk_list (svm_fifo_t * f) |
| 1127 | { |
| 1128 | u32 head, tail; |
| 1129 | |
| 1130 | f_load_head_tail_prod (f, &head, &tail); |
| 1131 | |
| 1132 | if (f_chunk_end (f->end_chunk) - head >= f->size) |
| 1133 | return 0; |
| 1134 | |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 1135 | if (f_try_chunk_alloc (f, head, tail, f->size - (tail - head))) |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1136 | return SVM_FIFO_EGROW; |
| 1137 | |
| 1138 | return 0; |
| 1139 | } |
| 1140 | |
| 1141 | int |
Florin Coras | d1cc38d | 2020-10-11 11:05:04 -0700 | [diff] [blame] | 1142 | svm_fifo_segments (svm_fifo_t * f, u32 offset, svm_fifo_seg_t * fs, |
| 1143 | u32 n_segs, u32 max_bytes) |
Florin Coras | 2cba853 | 2018-09-11 16:33:36 -0700 | [diff] [blame] | 1144 | { |
Florin Coras | d1cc38d | 2020-10-11 11:05:04 -0700 | [diff] [blame] | 1145 | u32 cursize, to_read, head, tail, fs_index = 1; |
| 1146 | u32 n_bytes, head_pos, len, start; |
Florin Coras | d68faf8 | 2020-09-25 15:18:13 -0700 | [diff] [blame] | 1147 | svm_fifo_chunk_t *c; |
Florin Coras | 2cba853 | 2018-09-11 16:33:36 -0700 | [diff] [blame] | 1148 | |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 1149 | f_load_head_tail_cons (f, &head, &tail); |
| 1150 | |
| 1151 | /* consumer function, cursize can only increase while we're working */ |
| 1152 | cursize = f_cursize (f, head, tail); |
| 1153 | |
Florin Coras | 2cba853 | 2018-09-11 16:33:36 -0700 | [diff] [blame] | 1154 | if (PREDICT_FALSE (cursize == 0)) |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1155 | return SVM_FIFO_EEMPTY; |
Florin Coras | 2cba853 | 2018-09-11 16:33:36 -0700 | [diff] [blame] | 1156 | |
Florin Coras | d1cc38d | 2020-10-11 11:05:04 -0700 | [diff] [blame] | 1157 | if (offset >= cursize) |
| 1158 | return SVM_FIFO_EEMPTY; |
| 1159 | |
| 1160 | to_read = clib_min (cursize - offset, max_bytes); |
| 1161 | start = head + offset; |
| 1162 | |
| 1163 | if (!f->head_chunk) |
| 1164 | f->head_chunk = svm_fifo_find_chunk (f, head); |
Florin Coras | 2cba853 | 2018-09-11 16:33:36 -0700 | [diff] [blame] | 1165 | |
Florin Coras | d68faf8 | 2020-09-25 15:18:13 -0700 | [diff] [blame] | 1166 | c = f->head_chunk; |
Florin Coras | d1cc38d | 2020-10-11 11:05:04 -0700 | [diff] [blame] | 1167 | |
| 1168 | while (!f_chunk_includes_pos (c, start)) |
| 1169 | c = c->next; |
| 1170 | |
| 1171 | head_pos = start - c->start_byte; |
Florin Coras | d68faf8 | 2020-09-25 15:18:13 -0700 | [diff] [blame] | 1172 | fs[0].data = c->data + head_pos; |
Florin Coras | d1cc38d | 2020-10-11 11:05:04 -0700 | [diff] [blame] | 1173 | fs[0].len = clib_min (c->length - head_pos, cursize - offset); |
Florin Coras | d68faf8 | 2020-09-25 15:18:13 -0700 | [diff] [blame] | 1174 | n_bytes = fs[0].len; |
Florin Coras | d68faf8 | 2020-09-25 15:18:13 -0700 | [diff] [blame] | 1175 | |
| 1176 | while (n_bytes < to_read && fs_index < n_segs) |
Florin Coras | 2cba853 | 2018-09-11 16:33:36 -0700 | [diff] [blame] | 1177 | { |
Florin Coras | d1cc38d | 2020-10-11 11:05:04 -0700 | [diff] [blame] | 1178 | c = c->next; |
Florin Coras | d68faf8 | 2020-09-25 15:18:13 -0700 | [diff] [blame] | 1179 | len = clib_min (c->length, to_read - n_bytes); |
| 1180 | fs[fs_index].data = c->data; |
| 1181 | fs[fs_index].len = len; |
| 1182 | n_bytes += len; |
Florin Coras | d68faf8 | 2020-09-25 15:18:13 -0700 | [diff] [blame] | 1183 | fs_index += 1; |
Florin Coras | 2cba853 | 2018-09-11 16:33:36 -0700 | [diff] [blame] | 1184 | } |
Florin Coras | 2cba853 | 2018-09-11 16:33:36 -0700 | [diff] [blame] | 1185 | |
Florin Coras | d68faf8 | 2020-09-25 15:18:13 -0700 | [diff] [blame] | 1186 | return n_bytes; |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 1187 | } |
| 1188 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1189 | /** |
| 1190 | * Clones fifo |
| 1191 | * |
| 1192 | * Assumptions: |
| 1193 | * - no prod and cons are accessing either dest or src fifo |
| 1194 | * - fifo is not multi chunk |
| 1195 | */ |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 1196 | void |
| 1197 | svm_fifo_clone (svm_fifo_t * df, svm_fifo_t * sf) |
| 1198 | { |
| 1199 | u32 head, tail; |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1200 | |
| 1201 | /* Support only single chunk clones for now */ |
| 1202 | ASSERT (svm_fifo_n_chunks (sf) == 1); |
| 1203 | |
Florin Coras | 0a84680 | 2019-04-09 18:29:14 -0700 | [diff] [blame] | 1204 | clib_memcpy_fast (df->head_chunk->data, sf->head_chunk->data, sf->size); |
Sirshak Das | 28aa539 | 2019-02-05 01:33:33 -0600 | [diff] [blame] | 1205 | |
| 1206 | f_load_head_tail_all_acq (sf, &head, &tail); |
| 1207 | clib_atomic_store_rel_n (&df->head, head); |
| 1208 | clib_atomic_store_rel_n (&df->tail, tail); |
Florin Coras | 2cba853 | 2018-09-11 16:33:36 -0700 | [diff] [blame] | 1209 | } |
| 1210 | |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 1211 | u32 |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1212 | svm_fifo_n_ooo_segments (svm_fifo_t * f) |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 1213 | { |
| 1214 | return pool_elts (f->ooo_segments); |
| 1215 | } |
| 1216 | |
| 1217 | ooo_segment_t * |
| 1218 | svm_fifo_first_ooo_segment (svm_fifo_t * f) |
| 1219 | { |
| 1220 | return pool_elt_at_index (f->ooo_segments, f->ooos_list_head); |
| 1221 | } |
| 1222 | |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 1223 | /** |
| 1224 | * Set fifo pointers to requested offset |
| 1225 | */ |
| 1226 | void |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 1227 | svm_fifo_init_pointers (svm_fifo_t * f, u32 head, u32 tail) |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 1228 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1229 | svm_fifo_chunk_t *c; |
| 1230 | |
Florin Coras | 4375fa3 | 2019-04-19 15:56:00 -0700 | [diff] [blame] | 1231 | clib_atomic_store_rel_n (&f->head, head); |
| 1232 | clib_atomic_store_rel_n (&f->tail, tail); |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1233 | |
| 1234 | c = svm_fifo_find_chunk (f, head); |
| 1235 | ASSERT (c != 0); |
| 1236 | f->head_chunk = f->ooo_deq = c; |
| 1237 | c = svm_fifo_find_chunk (f, tail); |
| 1238 | ASSERT (c != 0); |
| 1239 | f->tail_chunk = f->ooo_enq = c; |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 1240 | } |
| 1241 | |
Florin Coras | 72b0428 | 2019-01-14 17:23:11 -0800 | [diff] [blame] | 1242 | void |
| 1243 | svm_fifo_add_subscriber (svm_fifo_t * f, u8 subscriber) |
| 1244 | { |
| 1245 | if (f->n_subscribers >= SVM_FIFO_MAX_EVT_SUBSCRIBERS) |
| 1246 | return; |
| 1247 | f->subscribers[f->n_subscribers++] = subscriber; |
| 1248 | } |
| 1249 | |
| 1250 | void |
| 1251 | svm_fifo_del_subscriber (svm_fifo_t * f, u8 subscriber) |
| 1252 | { |
| 1253 | int i; |
| 1254 | |
| 1255 | for (i = 0; i < f->n_subscribers; i++) |
| 1256 | { |
| 1257 | if (f->subscribers[i] != subscriber) |
| 1258 | continue; |
| 1259 | f->subscribers[i] = f->subscribers[f->n_subscribers - 1]; |
| 1260 | f->n_subscribers--; |
| 1261 | break; |
| 1262 | } |
| 1263 | } |
| 1264 | |
Florin Coras | eaacce4 | 2019-07-02 13:07:37 -0700 | [diff] [blame] | 1265 | u8 |
| 1266 | svm_fifo_is_sane (svm_fifo_t * f) |
| 1267 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1268 | svm_fifo_chunk_t *tmp; |
Florin Coras | eaacce4 | 2019-07-02 13:07:37 -0700 | [diff] [blame] | 1269 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1270 | if (f->head_chunk && !f_chunk_includes_pos (f->head_chunk, f->head)) |
| 1271 | return 0; |
| 1272 | if (f->tail_chunk && !f_chunk_includes_pos (f->tail_chunk, f->tail)) |
| 1273 | return 0; |
| 1274 | if (f->ooo_deq) |
| 1275 | { |
| 1276 | if (rb_tree_is_init (&f->ooo_deq_lookup)) |
| 1277 | { |
| 1278 | if (f_pos_lt (f->ooo_deq->start_byte, f->start_chunk->start_byte) |
| 1279 | || f_pos_gt (f->ooo_deq->start_byte, |
| 1280 | f_chunk_end (f->end_chunk))) |
| 1281 | return 0; |
| 1282 | |
| 1283 | tmp = f_find_chunk_rbtree (&f->ooo_deq_lookup, |
| 1284 | f->ooo_deq->start_byte); |
| 1285 | } |
| 1286 | else |
| 1287 | tmp = svm_fifo_find_chunk (f, f->ooo_deq->start_byte); |
| 1288 | if (tmp != f->ooo_deq) |
| 1289 | return 0; |
| 1290 | } |
| 1291 | if (f->ooo_enq) |
| 1292 | { |
| 1293 | if (rb_tree_is_init (&f->ooo_enq_lookup)) |
| 1294 | { |
| 1295 | if (f_pos_lt (f->ooo_enq->start_byte, f->start_chunk->start_byte) |
| 1296 | || f_pos_gt (f->ooo_enq->start_byte, |
| 1297 | f_chunk_end (f->end_chunk))) |
| 1298 | return 0; |
| 1299 | |
| 1300 | tmp = f_find_chunk_rbtree (&f->ooo_enq_lookup, |
| 1301 | f->ooo_enq->start_byte); |
| 1302 | } |
| 1303 | else |
| 1304 | { |
| 1305 | tmp = svm_fifo_find_next_chunk (f, f->tail_chunk, |
| 1306 | f->ooo_enq->start_byte); |
| 1307 | } |
| 1308 | if (tmp != f->ooo_enq) |
| 1309 | return 0; |
| 1310 | } |
| 1311 | |
| 1312 | if (f->start_chunk->next) |
Florin Coras | eaacce4 | 2019-07-02 13:07:37 -0700 | [diff] [blame] | 1313 | { |
| 1314 | svm_fifo_chunk_t *c, *prev = 0, *tmp; |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1315 | u32 chunks_bytes = 0; |
Florin Coras | eaacce4 | 2019-07-02 13:07:37 -0700 | [diff] [blame] | 1316 | |
| 1317 | c = f->start_chunk; |
| 1318 | do |
| 1319 | { |
| 1320 | tmp = svm_fifo_find_chunk (f, c->start_byte); |
| 1321 | if (tmp != c) |
| 1322 | return 0; |
| 1323 | if (prev && (prev->start_byte + prev->length != c->start_byte)) |
| 1324 | return 0; |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 1325 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1326 | if (c->enq_rb_index != RBTREE_TNIL_INDEX) |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 1327 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1328 | tmp = f_find_chunk_rbtree (&f->ooo_enq_lookup, c->start_byte); |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 1329 | if (tmp) |
| 1330 | { |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 1331 | if (tmp != c) |
| 1332 | return 0; |
| 1333 | } |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1334 | } |
| 1335 | if (c->deq_rb_index != RBTREE_TNIL_INDEX) |
| 1336 | { |
| 1337 | tmp = f_find_chunk_rbtree (&f->ooo_deq_lookup, c->start_byte); |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 1338 | if (tmp) |
| 1339 | { |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 1340 | if (tmp != c) |
| 1341 | return 0; |
| 1342 | } |
Florin Coras | b020806 | 2019-12-12 12:09:29 -0800 | [diff] [blame] | 1343 | } |
| 1344 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1345 | chunks_bytes += c->length; |
Florin Coras | eaacce4 | 2019-07-02 13:07:37 -0700 | [diff] [blame] | 1346 | prev = c; |
| 1347 | c = c->next; |
| 1348 | } |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1349 | while (c); |
Florin Coras | eaacce4 | 2019-07-02 13:07:37 -0700 | [diff] [blame] | 1350 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1351 | if (chunks_bytes < f->tail - f->head) |
Florin Coras | eaacce4 | 2019-07-02 13:07:37 -0700 | [diff] [blame] | 1352 | return 0; |
| 1353 | } |
| 1354 | |
| 1355 | return 1; |
| 1356 | } |
| 1357 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1358 | u32 |
| 1359 | svm_fifo_n_chunks (svm_fifo_t * f) |
Ryujiro Shibuya | 8e20fe7 | 2019-10-16 06:30:02 +0100 | [diff] [blame] | 1360 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1361 | svm_fifo_chunk_t *c; |
| 1362 | int n_chunks = 0; |
Ryujiro Shibuya | 8e20fe7 | 2019-10-16 06:30:02 +0100 | [diff] [blame] | 1363 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1364 | c = f->start_chunk; |
| 1365 | while (c) |
| 1366 | { |
| 1367 | n_chunks++; |
| 1368 | c = c->next; |
Ryujiro Shibuya | 8e20fe7 | 2019-10-16 06:30:02 +0100 | [diff] [blame] | 1369 | } |
| 1370 | |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1371 | return n_chunks; |
Ryujiro Shibuya | 8e20fe7 | 2019-10-16 06:30:02 +0100 | [diff] [blame] | 1372 | } |
| 1373 | |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1374 | u8 * |
| 1375 | format_ooo_segment (u8 * s, va_list * args) |
| 1376 | { |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1377 | svm_fifo_t __clib_unused *f = va_arg (*args, svm_fifo_t *); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1378 | ooo_segment_t *seg = va_arg (*args, ooo_segment_t *); |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1379 | s = format (s, "[%u, %u], len %u, next %d, prev %d", seg->start, |
| 1380 | seg->start + seg->length, seg->length, seg->next, seg->prev); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1381 | return s; |
| 1382 | } |
| 1383 | |
| 1384 | u8 * |
| 1385 | svm_fifo_dump_trace (u8 * s, svm_fifo_t * f) |
| 1386 | { |
| 1387 | #if SVM_FIFO_TRACE |
| 1388 | svm_fifo_trace_elem_t *seg = 0; |
| 1389 | int i = 0; |
| 1390 | |
| 1391 | if (f->trace) |
| 1392 | { |
| 1393 | vec_foreach (seg, f->trace) |
| 1394 | { |
| 1395 | s = format (s, "{%u, %u, %u}, ", seg->offset, seg->len, seg->action); |
| 1396 | i++; |
| 1397 | if (i % 5 == 0) |
| 1398 | s = format (s, "\n"); |
| 1399 | } |
| 1400 | s = format (s, "\n"); |
| 1401 | } |
| 1402 | return s; |
| 1403 | #else |
| 1404 | return 0; |
| 1405 | #endif |
| 1406 | } |
| 1407 | |
| 1408 | u8 * |
| 1409 | svm_fifo_replay (u8 * s, svm_fifo_t * f, u8 no_read, u8 verbose) |
| 1410 | { |
| 1411 | int i, trace_len; |
| 1412 | u8 *data = 0; |
| 1413 | svm_fifo_trace_elem_t *trace; |
| 1414 | u32 offset; |
Dave Barach | 11fb09e | 2020-08-06 12:10:09 -0400 | [diff] [blame] | 1415 | svm_fifo_t *placeholder_fifo; |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1416 | |
| 1417 | if (!f) |
| 1418 | return s; |
| 1419 | |
| 1420 | #if SVM_FIFO_TRACE |
| 1421 | trace = f->trace; |
| 1422 | trace_len = vec_len (trace); |
| 1423 | #else |
| 1424 | trace = 0; |
| 1425 | trace_len = 0; |
| 1426 | #endif |
| 1427 | |
Dave Barach | 11fb09e | 2020-08-06 12:10:09 -0400 | [diff] [blame] | 1428 | placeholder_fifo = svm_fifo_alloc (f->size); |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1429 | svm_fifo_init (f, f->size); |
| 1430 | clib_memset (f->head_chunk->data, 0xFF, f->size); |
| 1431 | vec_validate (data, f->size); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1432 | for (i = 0; i < vec_len (data); i++) |
| 1433 | data[i] = i; |
| 1434 | |
| 1435 | for (i = 0; i < trace_len; i++) |
| 1436 | { |
| 1437 | offset = trace[i].offset; |
| 1438 | if (trace[i].action == 1) |
| 1439 | { |
| 1440 | if (verbose) |
| 1441 | s = format (s, "adding [%u, %u]:", trace[i].offset, |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1442 | (trace[i].offset + trace[i].len)); |
Dave Barach | 11fb09e | 2020-08-06 12:10:09 -0400 | [diff] [blame] | 1443 | svm_fifo_enqueue_with_offset (placeholder_fifo, trace[i].offset, |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1444 | trace[i].len, &data[offset]); |
| 1445 | } |
| 1446 | else if (trace[i].action == 2) |
| 1447 | { |
| 1448 | if (verbose) |
| 1449 | s = format (s, "adding [%u, %u]:", 0, trace[i].len); |
Dave Barach | 11fb09e | 2020-08-06 12:10:09 -0400 | [diff] [blame] | 1450 | svm_fifo_enqueue (placeholder_fifo, trace[i].len, &data[offset]); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1451 | } |
| 1452 | else if (!no_read) |
| 1453 | { |
| 1454 | if (verbose) |
| 1455 | s = format (s, "read: %u", trace[i].len); |
Dave Barach | 11fb09e | 2020-08-06 12:10:09 -0400 | [diff] [blame] | 1456 | svm_fifo_dequeue_drop (placeholder_fifo, trace[i].len); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1457 | } |
| 1458 | if (verbose) |
Dave Barach | 11fb09e | 2020-08-06 12:10:09 -0400 | [diff] [blame] | 1459 | s = format (s, "%U", format_svm_fifo, placeholder_fifo, 1); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1460 | } |
| 1461 | |
Dave Barach | 11fb09e | 2020-08-06 12:10:09 -0400 | [diff] [blame] | 1462 | s = format (s, "result: %U", format_svm_fifo, placeholder_fifo, 1); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1463 | |
| 1464 | return s; |
| 1465 | } |
| 1466 | |
| 1467 | u8 * |
| 1468 | format_ooo_list (u8 * s, va_list * args) |
| 1469 | { |
| 1470 | svm_fifo_t *f = va_arg (*args, svm_fifo_t *); |
| 1471 | u32 indent = va_arg (*args, u32); |
| 1472 | u32 ooo_segment_index = f->ooos_list_head; |
| 1473 | ooo_segment_t *seg; |
| 1474 | |
| 1475 | while (ooo_segment_index != OOO_SEGMENT_INVALID_INDEX) |
| 1476 | { |
| 1477 | seg = pool_elt_at_index (f->ooo_segments, ooo_segment_index); |
| 1478 | s = format (s, "%U%U\n", format_white_space, indent, format_ooo_segment, |
| 1479 | f, seg); |
| 1480 | ooo_segment_index = seg->next; |
| 1481 | } |
| 1482 | |
| 1483 | return s; |
| 1484 | } |
| 1485 | |
| 1486 | u8 * |
| 1487 | format_svm_fifo (u8 * s, va_list * args) |
| 1488 | { |
| 1489 | svm_fifo_t *f = va_arg (*args, svm_fifo_t *); |
| 1490 | int verbose = va_arg (*args, int); |
| 1491 | u32 indent; |
| 1492 | |
| 1493 | if (!s) |
| 1494 | return s; |
| 1495 | |
| 1496 | indent = format_get_indent (s); |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1497 | s = format (s, "cursize %u nitems %u has_event %d min_alloc %u\n", |
| 1498 | svm_fifo_max_dequeue (f), f->size, f->has_event, f->min_alloc); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1499 | s = format (s, "%Uhead %u tail %u segment manager %u\n", format_white_space, |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 1500 | indent, f->head, f->tail, f->segment_manager); |
Florin Coras | 87b15ce | 2019-04-28 21:16:30 -0700 | [diff] [blame] | 1501 | |
| 1502 | if (verbose > 1) |
| 1503 | s = format (s, "%Uvpp session %d thread %d app session %d thread %d\n", |
| 1504 | format_white_space, indent, f->master_session_index, |
| 1505 | f->master_thread_index, f->client_session_index, |
| 1506 | f->client_thread_index); |
| 1507 | |
| 1508 | if (verbose) |
| 1509 | { |
| 1510 | s = format (s, "%Uooo pool %d active elts newest %u\n", |
| 1511 | format_white_space, indent, pool_elts (f->ooo_segments), |
| 1512 | f->ooos_newest); |
| 1513 | if (svm_fifo_has_ooo_data (f)) |
| 1514 | s = format (s, " %U", format_ooo_list, f, indent, verbose); |
| 1515 | } |
| 1516 | return s; |
| 1517 | } |
| 1518 | |
Florin Coras | 3aa7af3 | 2018-06-29 08:44:31 -0700 | [diff] [blame] | 1519 | #endif |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1520 | /* |
| 1521 | * fd.io coding-style-patch-verification: ON |
| 1522 | * |
| 1523 | * Local Variables: |
| 1524 | * eval: (c-set-style "gnu") |
| 1525 | * End: |
| 1526 | */ |