blob: e08b3e9dfa55d4f5be25f132f7de94c327fabe97 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Corasc5df8c72019-04-08 07:42:30 -07002 * Copyright (c) 2016-2019 Cisco and/or its affiliates.
Sirshak Das28aa5392019-02-05 01:33:33 -06003 * 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 Barach68b0fb02017-02-28 15:15:56 -05007 * 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#ifndef __included_ssvm_fifo_h__
20#define __included_ssvm_fifo_h__
21
22#include <vppinfra/clib.h>
23#include <vppinfra/vec.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050024#include <vppinfra/pool.h>
25#include <vppinfra/format.h>
Florin Corasf22f4e52019-12-19 16:10:58 -080026#include <svm/fifo_types.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050027
Florin Coras326b81e2018-10-04 19:03:05 -070028#define OOO_SEGMENT_INVALID_INDEX ((u32)~0)
29#define SVM_FIFO_INVALID_SESSION_INDEX ((u32)~0)
Florin Corasfa76a762018-11-29 12:40:10 -080030#define SVM_FIFO_INVALID_INDEX ((u32)~0)
Dave Barach68b0fb02017-02-28 15:15:56 -050031
Florin Coras2d379d82019-06-28 12:45:12 -070032typedef enum svm_fifo_deq_ntf_
Florin Coras1bcad5c2019-01-09 20:04:38 -080033{
Florin Coras2d379d82019-06-28 12:45:12 -070034 SVM_FIFO_NO_DEQ_NOTIF = 0, /**< No notification requested */
35 SVM_FIFO_WANT_DEQ_NOTIF = 1, /**< Notify on dequeue */
36 SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL = 2, /**< Notify on transition from full */
37 SVM_FIFO_WANT_DEQ_NOTIF_IF_EMPTY = 4, /**< Notify on transition to empty */
38} svm_fifo_deq_ntf_t;
Florin Coras1bcad5c2019-01-09 20:04:38 -080039
Florin Coras2309e7a2019-04-18 18:58:10 -070040typedef enum svm_fifo_flag_
41{
Florin Corasf22f4e52019-12-19 16:10:58 -080042 SVM_FIFO_F_LL_TRACKED = 1 << 0,
Florin Coras2309e7a2019-04-18 18:58:10 -070043} svm_fifo_flag_t;
44
Florin Coras7fb0fe12018-04-09 09:24:52 -070045typedef enum
46{
Florin Coras87b15ce2019-04-28 21:16:30 -070047 SVM_FIFO_EFULL = -2,
48 SVM_FIFO_EEMPTY = -3,
Florin Corasf22f4e52019-12-19 16:10:58 -080049 SVM_FIFO_EGROW = -4,
Florin Coras7fb0fe12018-04-09 09:24:52 -070050} svm_fifo_err_t;
51
Florin Coras88001c62019-04-24 14:44:46 -070052typedef struct svm_fifo_seg_
Florin Coras2cba8532018-09-11 16:33:36 -070053{
54 u8 *data;
55 u32 len;
Florin Coras88001c62019-04-24 14:44:46 -070056} svm_fifo_seg_t;
Florin Coras2cba8532018-09-11 16:33:36 -070057
Florin Coras3eb50622017-07-13 01:24:57 -040058#if SVM_FIFO_TRACE
59#define svm_fifo_trace_add(_f, _s, _l, _t) \
60{ \
61 svm_fifo_trace_elem_t *trace_elt; \
62 vec_add2(_f->trace, trace_elt, 1); \
63 trace_elt->offset = _s; \
64 trace_elt->len = _l; \
65 trace_elt->action = _t; \
66}
67#else
68#define svm_fifo_trace_add(_f, _s, _l, _t)
69#endif
70
71u8 *svm_fifo_dump_trace (u8 * s, svm_fifo_t * f);
72u8 *svm_fifo_replay (u8 * s, svm_fifo_t * f, u8 no_read, u8 verbose);
73
Florin Coras87b15ce2019-04-28 21:16:30 -070074/**
75 * Load head and tail optimized for consumer
76 *
77 * Internal function.
78 */
Sirshak Das28aa5392019-02-05 01:33:33 -060079static inline void
80f_load_head_tail_cons (svm_fifo_t * f, u32 * head, u32 * tail)
81{
82 /* load-relaxed: consumer owned index */
83 *head = f->head;
84 /* load-acq: consumer foreign index (paired with store-rel in producer) */
85 *tail = clib_atomic_load_acq_n (&f->tail);
86}
87
Florin Coras87b15ce2019-04-28 21:16:30 -070088/** Load head and tail optimized for producer
89 *
90 * Internal function
91 */
Sirshak Das28aa5392019-02-05 01:33:33 -060092static inline void
93f_load_head_tail_prod (svm_fifo_t * f, u32 * head, u32 * tail)
94{
95 /* load relaxed: producer owned index */
96 *tail = f->tail;
97 /* load-acq: producer foreign index (paired with store-rel in consumer) */
98 *head = clib_atomic_load_acq_n (&f->head);
99}
100
Florin Corasa7570b02019-05-02 12:52:19 -0700101/**
102 * Load head and tail independent of producer/consumer role
Florin Coras87b15ce2019-04-28 21:16:30 -0700103 *
104 * Internal function.
105 */
Sirshak Das28aa5392019-02-05 01:33:33 -0600106static inline void
107f_load_head_tail_all_acq (svm_fifo_t * f, u32 * head, u32 * tail)
108{
109 /* load-acq : consumer foreign index (paired with store-rel) */
110 *tail = clib_atomic_load_acq_n (&f->tail);
111 /* load-acq : producer foriegn index (paired with store-rel) */
112 *head = clib_atomic_load_acq_n (&f->head);
113}
114
Florin Coras87b15ce2019-04-28 21:16:30 -0700115/**
Florin Coras29a59c32019-05-02 12:52:19 -0700116 * Fifo current size, i.e., number of bytes enqueued
117 *
118 * Internal function.
119 */
120static inline u32
121f_cursize (svm_fifo_t * f, u32 head, u32 tail)
122{
Florin Corasf22f4e52019-12-19 16:10:58 -0800123 return tail - head;
Florin Coras29a59c32019-05-02 12:52:19 -0700124}
125
126/**
127 * Fifo free bytes, i.e., number of free bytes
128 *
129 * Internal function
130 */
131static inline u32
132f_free_count (svm_fifo_t * f, u32 head, u32 tail)
133{
Florin Corasf22f4e52019-12-19 16:10:58 -0800134 return (f->size - f_cursize (f, head, tail));
Florin Coras29a59c32019-05-02 12:52:19 -0700135}
136
Florin Corasf22f4e52019-12-19 16:10:58 -0800137always_inline u32
138f_chunk_end (svm_fifo_chunk_t * c)
139{
140 return c->start_byte + c->length;
141}
142
143always_inline int
144f_pos_lt (u32 a, u32 b)
145{
146 return ((i32) (a - b) < 0);
147}
148
149always_inline int
150f_pos_leq (u32 a, u32 b)
151{
152 return ((i32) (a - b) <= 0);
153}
154
155always_inline int
156f_pos_gt (u32 a, u32 b)
157{
158 return ((i32) (a - b) > 0);
159}
160
161always_inline int
162f_pos_geq (u32 a, u32 b)
163{
164 return ((i32) (a - b) >= 0);
165}
166
167always_inline u8
168f_chunk_includes_pos (svm_fifo_chunk_t * c, u32 pos)
169{
170 return (f_pos_geq (pos, c->start_byte)
171 && f_pos_lt (pos, c->start_byte + c->length));
172}
Florin Corasa7570b02019-05-02 12:52:19 -0700173
174/**
Florin Coras87b15ce2019-04-28 21:16:30 -0700175 * Create fifo of requested size
Florin Coras41c9e042018-09-11 00:10:41 -0700176 *
Florin Coras87b15ce2019-04-28 21:16:30 -0700177 * Allocates fifo on current heap.
178 *
179 * @param size data size in bytes for fifo to be allocated. Will be
180 * rounded to the next highest power-of-two value.
181 * @return pointer to new fifo
Florin Coras6792ec02017-03-13 03:49:51 -0700182 */
Florin Corasf22f4e52019-12-19 16:10:58 -0800183svm_fifo_t *svm_fifo_alloc (u32 size);
Florin Coras87b15ce2019-04-28 21:16:30 -0700184/**
185 * Initialize fifo
186 *
Florin Coraseaacce42019-07-02 13:07:37 -0700187 * @param f fifo
Florin Coras87b15ce2019-04-28 21:16:30 -0700188 * @param size size for fifo
189 */
Florin Coras0a846802019-04-09 18:29:14 -0700190void svm_fifo_init (svm_fifo_t * f, u32 size);
Florin Corasb095a3c2019-04-25 12:58:46 -0700191/**
192 * Allocate a fifo chunk on heap
193 *
194 * If the chunk is allocated on a fifo segment, this should be called
195 * with the segment's heap pushed.
196 *
197 * @param size chunk size in bytes. Will be rounded to the next highest
198 * power-of-two
199 * @return new chunk or 0 if alloc failed
200 */
201svm_fifo_chunk_t *svm_fifo_chunk_alloc (u32 size);
Florin Coras4375fa32019-04-19 15:56:00 -0700202/**
Florin Coras9e61d9a2020-02-05 21:13:18 +0000203 * Ensure the whole fifo size is writeable
Florin Coras4375fa32019-04-19 15:56:00 -0700204 *
Florin Coras9e61d9a2020-02-05 21:13:18 +0000205 * Allocates enough chunks to cover the whole fifo size.
Florin Coras4375fa32019-04-19 15:56:00 -0700206 *
Florin Coras9e61d9a2020-02-05 21:13:18 +0000207 * @param f fifo
Florin Coras4375fa32019-04-19 15:56:00 -0700208 */
Florin Corasf22f4e52019-12-19 16:10:58 -0800209int svm_fifo_fill_chunk_list (svm_fifo_t * f);
Florin Coras9e61d9a2020-02-05 21:13:18 +0000210/**
211 * Initialize rbtrees used for ooo lookups
212 *
213 * @param f fifo
214 * @param ooo_type type of ooo operation (0 enqueue, 1 dequeue)
215 */
Florin Corasf22f4e52019-12-19 16:10:58 -0800216void svm_fifo_init_ooo_lookup (svm_fifo_t * f, u8 ooo_type);
Florin Corasa7570b02019-05-02 12:52:19 -0700217/**
Florin Coras87b15ce2019-04-28 21:16:30 -0700218 * Free fifo and associated state
219 *
220 * @param f fifo
221 */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700222void svm_fifo_free (svm_fifo_t * f);
Florin Corasb095a3c2019-04-25 12:58:46 -0700223/**
224 * Cleanup fifo chunk lookup rb tree
225 *
226 * The rb tree is allocated in segment heap so this should be called
227 * with it pushed.
228 *
229 * @param f fifo to cleanup
230 */
231void svm_fifo_free_chunk_lookup (svm_fifo_t * f);
232/**
233 * Cleanup fifo ooo data
234 *
235 * The ooo data is allocated in producer process memory. The fifo
236 * segment heap should not be pushed.
237 *
238 * @param f fifo to cleanup
239 */
240void svm_fifo_free_ooo_data (svm_fifo_t * f);
Florin Coras87b15ce2019-04-28 21:16:30 -0700241/**
242 * Init fifo head and tail
243 *
244 * @param f fifo
245 * @param head head value that will be matched to a chunk
246 * @param tail tail value that will be matched to a chunk
247 */
248void svm_fifo_init_pointers (svm_fifo_t * f, u32 head, u32 tail);
249/**
250 * Clone fifo
251 *
252 * Clones single/default chunk fifo. It does not work for fifos with
253 * multiple chunks.
254 */
255void svm_fifo_clone (svm_fifo_t * df, svm_fifo_t * sf);
256/**
257 * Enqueue data to fifo
258 *
259 * Data is enqueued and tail pointer is updated atomically. If the new data
260 * enqueued partly overlaps or "touches" an out-of-order segment, said segment
261 * is "consumed" and the number of bytes returned is appropriately updated.
262 *
263 * @param f fifo
264 * @param len length of data to copy
265 * @param src buffer from where to copy the data
266 * @return number of contiguous bytes that can be consumed or error
267 */
268int svm_fifo_enqueue (svm_fifo_t * f, u32 len, const u8 * src);
269/**
270 * Enqueue data to fifo with offset
271 *
272 * Data is enqueued without updating tail pointer. Instead, an out-of-order
273 * list of segments is generated and maintained. Fifo takes care of coalescing
274 * contiguous or overlapping segments.
275 *
276 * @param f fifo
277 * @param offset offset at which to copy the data
278 * @param len len of data to copy
279 * @param src buffer from where to copy the data
280 * @return 0 if enqueue was successful, error otherwise
281 */
282int svm_fifo_enqueue_with_offset (svm_fifo_t * f, u32 offset, u32 len,
283 u8 * src);
Florin Corasa7570b02019-05-02 12:52:19 -0700284
285/**
286 * Advance tail pointer
287 *
288 * Useful for moving tail pointer after external enqueue.
289 *
290 * @param f fifo
291 * @param len number of bytes to add to tail
292 */
293void svm_fifo_enqueue_nocopy (svm_fifo_t * f, u32 len);
Florin Coras87b15ce2019-04-28 21:16:30 -0700294/**
295 * Overwrite fifo head with new data
296 *
297 * This should be typically used by dgram transport protocols that need
298 * to update the dgram header after dequeueing a chunk of data. It assumes
299 * that the dgram header is at most spread over two chunks.
300 *
301 * @param f fifo
302 * @param src src of new data
303 * @param len length of new data
304 */
305void svm_fifo_overwrite_head (svm_fifo_t * f, u8 * src, u32 len);
306/**
307 * Dequeue data from fifo
308 *
309 * Data is dequeued to consumer provided buffer and head is atomically
310 * updated.
311 *
312 * @param f fifo
313 * @param len length of data to dequeue
314 * @param dst buffer to where to dequeue the data
315 * @return number of bytes dequeued or error
316 */
317int svm_fifo_dequeue (svm_fifo_t * f, u32 len, u8 * dst);
318/**
319 * Peek data from fifo
320 *
321 * Data is copied from requested offset into provided dst buffer. Head is
322 * not updated.
323 *
324 * @param f fifo
325 * @param offset offset from which to copy the data
326 * @param len length of data to copy
327 * @param dst buffer to where to dequeue the data
328 * @return number of bytes peeked
329 */
330int svm_fifo_peek (svm_fifo_t * f, u32 offset, u32 len, u8 * dst);
331/**
332 * Dequeue and drop bytes from fifo
333 *
334 * Advances fifo head by requested amount of bytes.
335 *
336 * @param f fifo
337 * @param len number of bytes to drop
338 * @return number of bytes dropped
339 */
340int svm_fifo_dequeue_drop (svm_fifo_t * f, u32 len);
341/**
342 * Dequeue and drop all bytes from fifo
343 *
344 * Advances head to tail position.
345 *
346 * @param f fifo
347 */
Florin Coras25579b42018-06-06 17:55:02 -0700348void svm_fifo_dequeue_drop_all (svm_fifo_t * f);
Florin Coras88001c62019-04-24 14:44:46 -0700349int svm_fifo_segments (svm_fifo_t * f, svm_fifo_seg_t * fs);
350void svm_fifo_segments_free (svm_fifo_t * f, svm_fifo_seg_t * fs);
Florin Coras87b15ce2019-04-28 21:16:30 -0700351/**
352 * Add io events subscriber to list
353 *
354 * @param f fifo
355 * @param sub subscriber opaque index (typically app worker index)
356 */
357void svm_fifo_add_subscriber (svm_fifo_t * f, u8 sub);
358/**
359 * Remove io events subscriber form list
360 *
361 * @param f fifo
362 * @param sub subscriber index to be removed
363 */
Florin Coras72b04282019-01-14 17:23:11 -0800364void svm_fifo_del_subscriber (svm_fifo_t * f, u8 subscriber);
Florin Coras87b15ce2019-04-28 21:16:30 -0700365/**
366 * Number of out-of-order segments for fifo
367 *
368 * @param f fifo
369 * @return number of out of order segments
370 */
371u32 svm_fifo_n_ooo_segments (svm_fifo_t * f);
Florin Coraseaacce42019-07-02 13:07:37 -0700372/**
Florin Coras87b15ce2019-04-28 21:16:30 -0700373 * First out-of-order segment for fifo
374 *
375 * @param f fifo
376 * @return first out-of-order segment for fifo
377 */
378ooo_segment_t *svm_fifo_first_ooo_segment (svm_fifo_t * f);
Florin Coraseaacce42019-07-02 13:07:37 -0700379/**
380 * Check if fifo is sane. Debug only.
381 *
382 * @param f fifo
383 * @return 1 if sane, 0 otherwise
384 */
385u8 svm_fifo_is_sane (svm_fifo_t * f);
Florin Coras9e61d9a2020-02-05 21:13:18 +0000386/**
387 * Number of chunks linked into the fifo
388 *
389 * @param f fifo
390 * @return number of chunks in fifo linked list
391 */
Florin Corasf22f4e52019-12-19 16:10:58 -0800392u32 svm_fifo_n_chunks (svm_fifo_t * f);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700393format_function_t format_svm_fifo;
394
Florin Coras58d36f02018-03-09 13:05:53 -0800395/**
Florin Coras87b15ce2019-04-28 21:16:30 -0700396 * Fifo max bytes to dequeue optimized for consumer
397 *
398 * @param f fifo
399 * @return max number of bytes that can be dequeued
400 */
401static inline u32
402svm_fifo_max_dequeue_cons (svm_fifo_t * f)
403{
404 u32 tail, head;
405 f_load_head_tail_cons (f, &head, &tail);
406 return f_cursize (f, head, tail);
407}
408
409/**
410 * Fifo max bytes to dequeue optimized for producer
411 *
412 * @param f fifo
413 * @return max number of bytes that can be dequeued
414 */
415static inline u32
416svm_fifo_max_dequeue_prod (svm_fifo_t * f)
417{
418 u32 tail, head;
419 f_load_head_tail_prod (f, &head, &tail);
420 return f_cursize (f, head, tail);
421}
422
423/**
424 * Fifo max bytes to dequeue
425 *
426 * Note: use producer or consumer specific functions for performance:
427 * @ref svm_fifo_max_dequeue_cons (svm_fifo_t *f)
428 * @ref svm_fifo_max_dequeue_prod (svm_fifo_t *f)
429 */
430static inline u32
431svm_fifo_max_dequeue (svm_fifo_t * f)
432{
433 u32 tail, head;
434 f_load_head_tail_all_acq (f, &head, &tail);
435 return f_cursize (f, head, tail);
436}
437
438/**
439 * Check if fifo is full optimized for producer
440 *
441 * @param f fifo
442 * @return 1 if fifo is full 0 otherwise
443 */
444static inline int
445svm_fifo_is_full_prod (svm_fifo_t * f)
446{
Florin Corasf22f4e52019-12-19 16:10:58 -0800447 return (svm_fifo_max_dequeue_prod (f) == f->size);
Florin Coras87b15ce2019-04-28 21:16:30 -0700448}
449
450/* Check if fifo is full.
451 *
452 * Note: use producer or consumer specific functions for performance.
453 * @ref svm_fifo_is_full_prod (svm_fifo_t * f)
454 * add cons version if needed
455 */
456static inline int
457svm_fifo_is_full (svm_fifo_t * f)
458{
Florin Corasf22f4e52019-12-19 16:10:58 -0800459 return (svm_fifo_max_dequeue (f) == f->size);
Florin Coras87b15ce2019-04-28 21:16:30 -0700460}
461
462/**
463 * Check if fifo is empty optimized for consumer
464 *
465 * @param f fifo
466 * @return 1 if fifo is empty 0 otherwise
467 */
468static inline int
469svm_fifo_is_empty_cons (svm_fifo_t * f)
470{
471 return (svm_fifo_max_dequeue_cons (f) == 0);
472}
473
474/**
475 * Check if fifo is empty optimized for producer
476 *
477 * @param f fifo
478 * @return 1 if fifo is empty 0 otherwise
479 */
480static inline int
481svm_fifo_is_empty_prod (svm_fifo_t * f)
482{
483 return (svm_fifo_max_dequeue_prod (f) == 0);
484}
485
486/**
487 * Check if fifo is empty
488 *
489 * Note: use producer or consumer specific functions for perfomance.
490 * @ref svm_fifo_is_empty_cons (svm_fifo_t * f)
491 * @ref svm_fifo_is_empty_prod (svm_fifo_t * f)
492 */
493static inline int
494svm_fifo_is_empty (svm_fifo_t * f)
495{
496 return (svm_fifo_max_dequeue (f) == 0);
497}
498
499/**
500 * Check if fifo is wrapped
501 *
502 * @param f fifo
503 * @return 1 if 'normalized' head is ahead of tail
504 */
505static inline u8
506svm_fifo_is_wrapped (svm_fifo_t * f)
507{
508 u32 head, tail;
509 f_load_head_tail_all_acq (f, &head, &tail);
Florin Coras29a59c32019-05-02 12:52:19 -0700510 return head > tail;
Florin Coras87b15ce2019-04-28 21:16:30 -0700511}
512
513/**
514 * Maximum number of bytes that can be enqueued into fifo
515 *
516 * Optimized for producer
517 *
518 * @param f fifo
519 * @return max number of bytes that can be enqueued into fifo
520 */
521static inline u32
522svm_fifo_max_enqueue_prod (svm_fifo_t * f)
523{
524 u32 head, tail;
525 f_load_head_tail_prod (f, &head, &tail);
526 return f_free_count (f, head, tail);
527}
528
529/* Maximum number of bytes that can be enqueued into fifo
530 *
531 * Note: use producer or consumer specific functions for performance.
532 * @ref svm_fifo_max_enqueue_prod (svm_fifo_t *f)
533 * add consumer specific version if needed.
534 */
535static inline u32
536svm_fifo_max_enqueue (svm_fifo_t * f)
537{
538 u32 head, tail;
539 f_load_head_tail_all_acq (f, &head, &tail);
540 return f_free_count (f, head, tail);
541}
542
543/**
Florin Corasf22f4e52019-12-19 16:10:58 -0800544 * Max contiguous chunk of data that can be read.
545 *
546 * Should only be called by consumers.
Florin Coras58d36f02018-03-09 13:05:53 -0800547 */
Florin Corasf22f4e52019-12-19 16:10:58 -0800548u32 svm_fifo_max_read_chunk (svm_fifo_t * f);
Florin Coras58d36f02018-03-09 13:05:53 -0800549
550/**
551 * Max contiguous chunk of data that can be written
Florin Corasf22f4e52019-12-19 16:10:58 -0800552 *
553 * Should only be called by producers
Florin Coras58d36f02018-03-09 13:05:53 -0800554 */
Florin Corasf22f4e52019-12-19 16:10:58 -0800555u32 svm_fifo_max_write_chunk (svm_fifo_t * f);
556
Florin Coras9e61d9a2020-02-05 21:13:18 +0000557/**
558 * Fifo head chunk getter
559 *
560 * @param f fifo
561 * @return head chunk pointer
562 */
Florin Corasf22f4e52019-12-19 16:10:58 -0800563static inline svm_fifo_chunk_t *
564svm_fifo_head_chunk (svm_fifo_t * f)
Florin Coras58d36f02018-03-09 13:05:53 -0800565{
Florin Corasf22f4e52019-12-19 16:10:58 -0800566 return f->head_chunk;
Florin Coras58d36f02018-03-09 13:05:53 -0800567}
568
Florin Coras9e61d9a2020-02-05 21:13:18 +0000569/**
570 * Fifo head pointer getter
571 *
572 * @param f fifo
573 * @return head pointer
574 */
Florin Coras87b15ce2019-04-28 21:16:30 -0700575static inline u8 *
Florin Coras58d36f02018-03-09 13:05:53 -0800576svm_fifo_head (svm_fifo_t * f)
577{
Florin Corasf22f4e52019-12-19 16:10:58 -0800578 if (!f->head_chunk)
579 return 0;
Sirshak Das28aa5392019-02-05 01:33:33 -0600580 /* load-relaxed: consumer owned index */
Florin Coras29a59c32019-05-02 12:52:19 -0700581 return (f->head_chunk->data + (f->head - f->head_chunk->start_byte));
Florin Coras58d36f02018-03-09 13:05:53 -0800582}
583
Florin Coras9e61d9a2020-02-05 21:13:18 +0000584/**
585 * Fifo tail chunk getter
586 *
587 * @param f fifo
588 * @return tail chunk pointer
589 */
Florin Corasf22f4e52019-12-19 16:10:58 -0800590static inline svm_fifo_chunk_t *
591svm_fifo_tail_chunk (svm_fifo_t * f)
592{
593 return f->tail_chunk;
594}
595
Florin Coras9e61d9a2020-02-05 21:13:18 +0000596/**
597 * Fifo tail pointer getter
598 *
599 * @param f fifo
600 * @return tail pointer
601 */
Florin Coras87b15ce2019-04-28 21:16:30 -0700602static inline u8 *
Florin Coras58d36f02018-03-09 13:05:53 -0800603svm_fifo_tail (svm_fifo_t * f)
604{
Sirshak Das28aa5392019-02-05 01:33:33 -0600605 /* load-relaxed: producer owned index */
Florin Coras29a59c32019-05-02 12:52:19 -0700606 return (f->tail_chunk->data + (f->tail - f->tail_chunk->start_byte));
Florin Coras1bcad5c2019-01-09 20:04:38 -0800607}
608
Florin Coras9e61d9a2020-02-05 21:13:18 +0000609/**
610 * Fifo number of subscribers getter
611 *
612 * @param f fifo
613 * @return number of subscribers
614 */
Florin Coras87b15ce2019-04-28 21:16:30 -0700615static inline u8
616svm_fifo_n_subscribers (svm_fifo_t * f)
617{
618 return f->n_subscribers;
619}
620
621/**
622 * Check if fifo has out-of-order data
623 *
624 * @param f fifo
625 * @return 1 if fifo has ooo data, 0 otherwise
626 */
627static inline u8
628svm_fifo_has_ooo_data (svm_fifo_t * f)
629{
630 return f->ooos_list_head != OOO_SEGMENT_INVALID_INDEX;
631}
632
633static inline ooo_segment_t *
634svm_fifo_newest_ooo_segment (svm_fifo_t * f)
635{
636 if (f->ooos_newest == OOO_SEGMENT_INVALID_INDEX)
637 return 0;
638 return pool_elt_at_index (f->ooo_segments, f->ooos_newest);
639}
640
641static inline void
642svm_fifo_newest_ooo_segment_reset (svm_fifo_t * f)
643{
644 f->ooos_newest = OOO_SEGMENT_INVALID_INDEX;
645}
646
647static inline u32
648ooo_segment_offset_prod (svm_fifo_t * f, ooo_segment_t * s)
649{
650 u32 tail;
651 /* load-relaxed: producer owned index */
652 tail = f->tail;
653
Florin Corasf22f4e52019-12-19 16:10:58 -0800654 return (s->start - tail);
Florin Coras87b15ce2019-04-28 21:16:30 -0700655}
656
657static inline u32
658ooo_segment_length (svm_fifo_t * f, ooo_segment_t * s)
659{
660 return s->length;
661}
662
Florin Corasf22f4e52019-12-19 16:10:58 -0800663static inline u32
664svm_fifo_size (svm_fifo_t * f)
665{
666 return f->size;
667}
668
669static inline void
670svm_fifo_set_size (svm_fifo_t * f, u32 size)
671{
Florin Coras0e6199d2020-04-17 20:15:22 +0000672 if (size > (1 << f->fs_hdr->max_log2_chunk_size))
673 return;
Florin Coras06d47752020-03-06 02:23:58 +0000674 fsh_virtual_mem_update (f->fs_hdr, f->slice_index, (int) f->size - size);
Florin Corasf22f4e52019-12-19 16:10:58 -0800675 f->size = size;
676}
677
Florin Coras87b15ce2019-04-28 21:16:30 -0700678/**
679 * Check if fifo has io event
680 *
681 * @param f fifo
682 * @return 1 if fifo has event, 0 otherwise
683 */
684static inline int
685svm_fifo_has_event (svm_fifo_t * f)
686{
687 return f->has_event;
688}
689
690/**
691 * Set fifo event flag.
692 *
693 * Forces release semantics.
694 *
695 * @param f fifo
696 * @return 1 if flag was not set, 0 otherwise
697 */
698always_inline u8
699svm_fifo_set_event (svm_fifo_t * f)
700{
701 return !clib_atomic_swap_rel_n (&f->has_event, 1);
702}
703
704/**
705 * Unset fifo event flag.
706 *
707 * Forces acquire semantics
708 *
709 * @param f fifo
710 */
711always_inline void
712svm_fifo_unset_event (svm_fifo_t * f)
713{
714 clib_atomic_swap_acq_n (&f->has_event, 0);
715}
716
717/**
Florin Coras2d379d82019-06-28 12:45:12 -0700718 * Set specific want notification flag
Florin Coras87b15ce2019-04-28 21:16:30 -0700719 *
Florin Coras2d379d82019-06-28 12:45:12 -0700720 * For list of flags see @ref svm_fifo_deq_ntf_t
Florin Coras87b15ce2019-04-28 21:16:30 -0700721 *
722 * @param f fifo
723 * @param ntf_type type of notification requested
724 */
Florin Coras1bcad5c2019-01-09 20:04:38 -0800725static inline void
Florin Coras2d379d82019-06-28 12:45:12 -0700726svm_fifo_add_want_deq_ntf (svm_fifo_t * f, u8 ntf_type)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800727{
Florin Coras2d379d82019-06-28 12:45:12 -0700728 f->want_deq_ntf |= ntf_type;
Florin Coras1bcad5c2019-01-09 20:04:38 -0800729}
730
Florin Coras87b15ce2019-04-28 21:16:30 -0700731/**
Florin Coras2d379d82019-06-28 12:45:12 -0700732 * Clear specific want notification flag
Florin Coras87b15ce2019-04-28 21:16:30 -0700733 *
Florin Coras2d379d82019-06-28 12:45:12 -0700734 * For list of flags see @ref svm_fifo_ntf_t
Florin Coras87b15ce2019-04-28 21:16:30 -0700735 *
736 * @param f fifo
737 * @param ntf_type type of notification to be cleared
738 */
Florin Coras1bcad5c2019-01-09 20:04:38 -0800739static inline void
Florin Coras2d379d82019-06-28 12:45:12 -0700740svm_fifo_del_want_deq_ntf (svm_fifo_t * f, u8 ntf_type)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800741{
Florin Coras2d379d82019-06-28 12:45:12 -0700742 f->want_deq_ntf &= ~ntf_type;
Florin Coras1bcad5c2019-01-09 20:04:38 -0800743}
744
Florin Coras87b15ce2019-04-28 21:16:30 -0700745/**
Florin Coras2d379d82019-06-28 12:45:12 -0700746 * Clear the want notification flag and set has notification
Florin Coras87b15ce2019-04-28 21:16:30 -0700747 *
Florin Coras2d379d82019-06-28 12:45:12 -0700748 * Should be used after enqueuing an event. This clears the
749 * SVM_FIFO_WANT_NOTIF flag but it does not clear
750 * SVM_FIFO_WANT_NOTIF_IF_FULL. If the latter was set, has_ntf is
751 * set to avoid enqueueing events for for all dequeue operations until
Florin Coras87b15ce2019-04-28 21:16:30 -0700752 * it is manually cleared.
753 *
754 * @param f fifo
755 */
Florin Coras1bcad5c2019-01-09 20:04:38 -0800756static inline void
Florin Coras2d379d82019-06-28 12:45:12 -0700757svm_fifo_clear_deq_ntf (svm_fifo_t * f)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800758{
Florin Coras2d379d82019-06-28 12:45:12 -0700759 /* Set the flag if want_notif_if_full was the only ntf requested */
760 f->has_deq_ntf = f->want_deq_ntf == SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL;
761 svm_fifo_del_want_deq_ntf (f, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras1bcad5c2019-01-09 20:04:38 -0800762}
763
Florin Coras87b15ce2019-04-28 21:16:30 -0700764/**
Florin Coras2d379d82019-06-28 12:45:12 -0700765 * Clear has notification flag
Florin Coras87b15ce2019-04-28 21:16:30 -0700766 *
Florin Coras2d379d82019-06-28 12:45:12 -0700767 * The fifo generates only one event per SVM_FIFO_WANT_NOTIF_IF_FULL
768 * request and sets has_ntf. To received new events the flag must be
Florin Coras87b15ce2019-04-28 21:16:30 -0700769 * cleared using this function.
770 *
771 * @param f fifo
772 */
Florin Coras1bcad5c2019-01-09 20:04:38 -0800773static inline void
Florin Coras2d379d82019-06-28 12:45:12 -0700774svm_fifo_reset_has_deq_ntf (svm_fifo_t * f)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800775{
Florin Coras2d379d82019-06-28 12:45:12 -0700776 f->has_deq_ntf = 0;
Florin Coras1bcad5c2019-01-09 20:04:38 -0800777}
778
Florin Coras87b15ce2019-04-28 21:16:30 -0700779/**
Florin Coras2d379d82019-06-28 12:45:12 -0700780 * Check if fifo needs dequeue notification
Florin Coras87b15ce2019-04-28 21:16:30 -0700781 *
Florin Coras2d379d82019-06-28 12:45:12 -0700782 * Determines based on notification request flags and state of the fifo if
783 * an event should be generated.
Florin Coras87b15ce2019-04-28 21:16:30 -0700784 *
785 * @param f fifo
786 * @param n_last_deq number of bytes last dequeued
Florin Coras2d379d82019-06-28 12:45:12 -0700787 * @return 1 if event should be generated, 0 otherwise
Florin Coras87b15ce2019-04-28 21:16:30 -0700788 */
Florin Coras1bcad5c2019-01-09 20:04:38 -0800789static inline u8
Florin Coras2d379d82019-06-28 12:45:12 -0700790svm_fifo_needs_deq_ntf (svm_fifo_t * f, u32 n_last_deq)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800791{
Florin Coras2d379d82019-06-28 12:45:12 -0700792 u8 want_ntf = f->want_deq_ntf;
Florin Coras1bcad5c2019-01-09 20:04:38 -0800793
Florin Coras2d379d82019-06-28 12:45:12 -0700794 if (PREDICT_TRUE (want_ntf == SVM_FIFO_NO_DEQ_NOTIF))
Florin Coras1bcad5c2019-01-09 20:04:38 -0800795 return 0;
Florin Coras2d379d82019-06-28 12:45:12 -0700796 else if (want_ntf & SVM_FIFO_WANT_DEQ_NOTIF)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800797 return 1;
Florin Coras2d379d82019-06-28 12:45:12 -0700798 if (want_ntf & SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800799 {
Sirshak Das28aa5392019-02-05 01:33:33 -0600800 u32 max_deq = svm_fifo_max_dequeue_cons (f);
Florin Corasf22f4e52019-12-19 16:10:58 -0800801 u32 size = f->size;
802 if (!f->has_deq_ntf && max_deq < size && max_deq + n_last_deq >= size)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800803 return 1;
Nathan Skrzypczake82a7ad2019-05-22 18:41:50 +0200804 }
Florin Coras2d379d82019-06-28 12:45:12 -0700805 if (want_ntf & SVM_FIFO_WANT_DEQ_NOTIF_IF_EMPTY)
Nathan Skrzypczake82a7ad2019-05-22 18:41:50 +0200806 {
Florin Coras2d379d82019-06-28 12:45:12 -0700807 if (!f->has_deq_ntf && svm_fifo_is_empty (f))
Nathan Skrzypczake82a7ad2019-05-22 18:41:50 +0200808 return 1;
Florin Coras1bcad5c2019-01-09 20:04:38 -0800809 }
810 return 0;
811}
812
Dave Barach68b0fb02017-02-28 15:15:56 -0500813#endif /* __included_ssvm_fifo_h__ */
814
815/*
816 * fd.io coding-style-patch-verification: ON
817 *
818 * Local Variables:
819 * eval: (c-set-style "gnu")
820 * End:
821 */