blob: 64ed53bf82796aa271e9e6486c3e7d89a661ddd8 [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 Coras4375fa32019-04-19 15:56:00 -070026#include <vppinfra/rbtree.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050027
Dave Barach68b0fb02017-02-28 15:15:56 -050028/** Out-of-order segment */
29typedef struct
30{
31 u32 next; /**< Next linked-list element pool index */
32 u32 prev; /**< Previous linked-list element pool index */
Dave Barach1f75cfd2017-04-14 16:46:44 -040033 u32 start; /**< Start of segment, normalized*/
Florin Corasa5464812017-04-19 13:00:05 -070034 u32 length; /**< Length of segment */
Dave Barach68b0fb02017-02-28 15:15:56 -050035} ooo_segment_t;
36
Florin Coras326b81e2018-10-04 19:03:05 -070037#define SVM_FIFO_TRACE (0)
38#define OOO_SEGMENT_INVALID_INDEX ((u32)~0)
39#define SVM_FIFO_INVALID_SESSION_INDEX ((u32)~0)
Florin Corasfa76a762018-11-29 12:40:10 -080040#define SVM_FIFO_INVALID_INDEX ((u32)~0)
Florin Coras4375fa32019-04-19 15:56:00 -070041#define SVM_FIFO_MAX_EVT_SUBSCRIBERS 7
Dave Barach68b0fb02017-02-28 15:15:56 -050042
Florin Coras2d379d82019-06-28 12:45:12 -070043typedef enum svm_fifo_deq_ntf_
Florin Coras1bcad5c2019-01-09 20:04:38 -080044{
Florin Coras2d379d82019-06-28 12:45:12 -070045 SVM_FIFO_NO_DEQ_NOTIF = 0, /**< No notification requested */
46 SVM_FIFO_WANT_DEQ_NOTIF = 1, /**< Notify on dequeue */
47 SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL = 2, /**< Notify on transition from full */
48 SVM_FIFO_WANT_DEQ_NOTIF_IF_EMPTY = 4, /**< Notify on transition to empty */
49} svm_fifo_deq_ntf_t;
Florin Coras1bcad5c2019-01-09 20:04:38 -080050
Florin Coras3eb50622017-07-13 01:24:57 -040051typedef struct
52{
53 u32 offset;
54 u32 len;
55 u32 action;
56} svm_fifo_trace_elem_t;
57
Florin Coras0a846802019-04-09 18:29:14 -070058typedef struct svm_fifo_chunk_
59{
Florin Coras87b15ce2019-04-28 21:16:30 -070060 u32 start_byte; /**< chunk start byte */
61 u32 length; /**< length of chunk in bytes */
62 struct svm_fifo_chunk_ *next; /**< pointer to next chunk in linked-lists */
63 u8 data[0]; /**< start of chunk data */
Florin Coras0a846802019-04-09 18:29:14 -070064} svm_fifo_chunk_t;
65
Florin Coras2309e7a2019-04-18 18:58:10 -070066typedef enum svm_fifo_flag_
67{
Florin Corasa7570b02019-05-02 12:52:19 -070068 SVM_FIFO_F_MULTI_CHUNK = 1 << 0,
69 SVM_FIFO_F_GROW = 1 << 1,
70 SVM_FIFO_F_SHRINK = 1 << 2,
71 SVM_FIFO_F_COLLECT_CHUNKS = 1 << 3,
72 SVM_FIFO_F_LL_TRACKED = 1 << 4,
Florin Coras2309e7a2019-04-18 18:58:10 -070073} svm_fifo_flag_t;
74
Dave Barach10d8cc62017-05-30 09:30:07 -040075typedef struct _svm_fifo
Dave Barach68b0fb02017-02-28 15:15:56 -050076{
Florin Coras72b04282019-01-14 17:23:11 -080077 CLIB_CACHE_LINE_ALIGN_MARK (shared_first);
Florin Coras87b15ce2019-04-28 21:16:30 -070078 u32 size; /**< size of the fifo in bytes */
79 u32 nitems; /**< usable size (size-1) */
Florin Coras2309e7a2019-04-18 18:58:10 -070080 u8 flags; /**< fifo flags */
81 svm_fifo_chunk_t *start_chunk;/**< first chunk in fifo chunk list */
82 svm_fifo_chunk_t *end_chunk; /**< end chunk in fifo chunk list */
83 svm_fifo_chunk_t *new_chunks; /**< chunks yet to be added to list */
Florin Coras4375fa32019-04-19 15:56:00 -070084 rb_tree_t chunk_lookup;
Florin Coras3e350af2017-03-30 02:54:28 -070085
Florin Coras72b04282019-01-14 17:23:11 -080086 CLIB_CACHE_LINE_ALIGN_MARK (shared_second);
Dave Barachacd2a6a2017-05-16 17:41:34 -040087 volatile u32 has_event; /**< non-zero if deq event exists */
Florin Coras87b15ce2019-04-28 21:16:30 -070088 u32 master_session_index; /**< session layer session index */
89 u32 client_session_index; /**< app session index */
90 u8 master_thread_index; /**< session layer thread index */
91 u8 client_thread_index; /**< app worker index */
Florin Corasa7570b02019-05-02 12:52:19 -070092 i8 refcnt; /**< reference count */
Florin Coras87b15ce2019-04-28 21:16:30 -070093 u32 segment_manager; /**< session layer segment manager index */
94 u32 segment_index; /**< segment index in segment manager */
Florin Coras2309e7a2019-04-18 18:58:10 -070095 struct _svm_fifo *next; /**< next in freelist/active chain */
96 struct _svm_fifo *prev; /**< prev in active chain */
Florin Corasa7570b02019-05-02 12:52:19 -070097 u32 size_decrement; /**< bytes to remove from fifo */
Florin Coras72b04282019-01-14 17:23:11 -080098
99 CLIB_CACHE_LINE_ALIGN_MARK (consumer);
Florin Coras4375fa32019-04-19 15:56:00 -0700100 u32 head; /**< fifo head position/byte */
Florin Coras2309e7a2019-04-18 18:58:10 -0700101 svm_fifo_chunk_t *head_chunk; /**< tracks chunk where head lands */
Florin Coras4375fa32019-04-19 15:56:00 -0700102 svm_fifo_chunk_t *ooo_deq; /**< last chunk used for ooo dequeue */
Florin Coras2d379d82019-06-28 12:45:12 -0700103 volatile u32 want_deq_ntf; /**< producer wants nudge */
104 volatile u32 has_deq_ntf;
Dave Barach68b0fb02017-02-28 15:15:56 -0500105
Florin Coras72b04282019-01-14 17:23:11 -0800106 CLIB_CACHE_LINE_ALIGN_MARK (producer);
Florin Coras4375fa32019-04-19 15:56:00 -0700107 u32 tail; /**< fifo tail position/byte */
Dave Barach68b0fb02017-02-28 15:15:56 -0500108 u32 ooos_list_head; /**< Head of out-of-order linked-list */
Florin Coras4375fa32019-04-19 15:56:00 -0700109 svm_fifo_chunk_t *tail_chunk; /**< tracks chunk where tail lands */
110 svm_fifo_chunk_t *ooo_enq; /**< last chunk used for ooo enqueue */
111 ooo_segment_t *ooo_segments; /**< Pool of ooo segments */
Dave Barach68b0fb02017-02-28 15:15:56 -0500112 u32 ooos_newest; /**< Last segment to have been updated */
Florin Coras87b15ce2019-04-28 21:16:30 -0700113 volatile u8 n_subscribers; /**< Number of subscribers for io events */
Florin Coras72b04282019-01-14 17:23:11 -0800114 u8 subscribers[SVM_FIFO_MAX_EVT_SUBSCRIBERS];
115
Florin Coras3eb50622017-07-13 01:24:57 -0400116#if SVM_FIFO_TRACE
117 svm_fifo_trace_elem_t *trace;
118#endif
Florin Coras72b04282019-01-14 17:23:11 -0800119
Dave Barach68b0fb02017-02-28 15:15:56 -0500120} svm_fifo_t;
121
Florin Coras7fb0fe12018-04-09 09:24:52 -0700122typedef enum
123{
Florin Coras87b15ce2019-04-28 21:16:30 -0700124 SVM_FIFO_EFULL = -2,
125 SVM_FIFO_EEMPTY = -3,
Florin Coras7fb0fe12018-04-09 09:24:52 -0700126} svm_fifo_err_t;
127
Florin Coras88001c62019-04-24 14:44:46 -0700128typedef struct svm_fifo_seg_
Florin Coras2cba8532018-09-11 16:33:36 -0700129{
130 u8 *data;
131 u32 len;
Florin Coras88001c62019-04-24 14:44:46 -0700132} svm_fifo_seg_t;
Florin Coras2cba8532018-09-11 16:33:36 -0700133
Florin Coras3eb50622017-07-13 01:24:57 -0400134#if SVM_FIFO_TRACE
135#define svm_fifo_trace_add(_f, _s, _l, _t) \
136{ \
137 svm_fifo_trace_elem_t *trace_elt; \
138 vec_add2(_f->trace, trace_elt, 1); \
139 trace_elt->offset = _s; \
140 trace_elt->len = _l; \
141 trace_elt->action = _t; \
142}
143#else
144#define svm_fifo_trace_add(_f, _s, _l, _t)
145#endif
146
147u8 *svm_fifo_dump_trace (u8 * s, svm_fifo_t * f);
148u8 *svm_fifo_replay (u8 * s, svm_fifo_t * f, u8 no_read, u8 verbose);
149
Florin Coras87b15ce2019-04-28 21:16:30 -0700150/**
151 * Load head and tail optimized for consumer
152 *
153 * Internal function.
154 */
Sirshak Das28aa5392019-02-05 01:33:33 -0600155static inline void
156f_load_head_tail_cons (svm_fifo_t * f, u32 * head, u32 * tail)
157{
158 /* load-relaxed: consumer owned index */
159 *head = f->head;
160 /* load-acq: consumer foreign index (paired with store-rel in producer) */
161 *tail = clib_atomic_load_acq_n (&f->tail);
162}
163
Florin Coras87b15ce2019-04-28 21:16:30 -0700164/** Load head and tail optimized for producer
165 *
166 * Internal function
167 */
Sirshak Das28aa5392019-02-05 01:33:33 -0600168static inline void
169f_load_head_tail_prod (svm_fifo_t * f, u32 * head, u32 * tail)
170{
171 /* load relaxed: producer owned index */
172 *tail = f->tail;
173 /* load-acq: producer foreign index (paired with store-rel in consumer) */
174 *head = clib_atomic_load_acq_n (&f->head);
175}
176
Florin Corasa7570b02019-05-02 12:52:19 -0700177/**
178 * Load head and tail independent of producer/consumer role
Florin Coras87b15ce2019-04-28 21:16:30 -0700179 *
180 * Internal function.
181 */
Sirshak Das28aa5392019-02-05 01:33:33 -0600182static inline void
183f_load_head_tail_all_acq (svm_fifo_t * f, u32 * head, u32 * tail)
184{
185 /* load-acq : consumer foreign index (paired with store-rel) */
186 *tail = clib_atomic_load_acq_n (&f->tail);
187 /* load-acq : producer foriegn index (paired with store-rel) */
188 *head = clib_atomic_load_acq_n (&f->head);
189}
190
Florin Coras87b15ce2019-04-28 21:16:30 -0700191/**
Florin Coras87b15ce2019-04-28 21:16:30 -0700192 * Distance to a from b, i.e., a - b in the fifo
193 *
194 * Internal function.
Sirshak Das28aa5392019-02-05 01:33:33 -0600195 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500196static inline u32
Florin Coras87b15ce2019-04-28 21:16:30 -0700197f_distance_to (svm_fifo_t * f, u32 a, u32 b)
Dave Barach68b0fb02017-02-28 15:15:56 -0500198{
Florin Coras87b15ce2019-04-28 21:16:30 -0700199 return ((f->size + a - b) % f->size);
Dave Barach68b0fb02017-02-28 15:15:56 -0500200}
201
Florin Coras6792ec02017-03-13 03:49:51 -0700202/**
Florin Coras87b15ce2019-04-28 21:16:30 -0700203 * Distance from a to b, i.e., b - a in the fifo
Florin Coras6792ec02017-03-13 03:49:51 -0700204 *
Florin Coras87b15ce2019-04-28 21:16:30 -0700205 * Internal function.
Florin Coras6792ec02017-03-13 03:49:51 -0700206 */
Florin Coras87b15ce2019-04-28 21:16:30 -0700207static inline u32
208f_distance_from (svm_fifo_t * f, u32 a, u32 b)
Florin Coras6792ec02017-03-13 03:49:51 -0700209{
Florin Coras87b15ce2019-04-28 21:16:30 -0700210 return ((f->size + b - a) % f->size);
Florin Coras6792ec02017-03-13 03:49:51 -0700211}
212
213/**
Florin Coras29a59c32019-05-02 12:52:19 -0700214 * Fifo current size, i.e., number of bytes enqueued
215 *
216 * Internal function.
217 */
218static inline u32
219f_cursize (svm_fifo_t * f, u32 head, u32 tail)
220{
221 return (head <= tail ? tail - head : f->size + tail - head);
222}
223
224/**
225 * Fifo free bytes, i.e., number of free bytes
226 *
227 * Internal function
228 */
229static inline u32
230f_free_count (svm_fifo_t * f, u32 head, u32 tail)
231{
232 return (f->nitems - f_cursize (f, head, tail));
233}
234
235/**
Florin Corasa7570b02019-05-02 12:52:19 -0700236 * Try to shrink fifo size.
237 *
238 * Internal function.
239 */
240void svm_fifo_try_shrink (svm_fifo_t * f, u32 head, u32 tail);
241
242/**
Florin Coras87b15ce2019-04-28 21:16:30 -0700243 * Create fifo of requested size
Florin Coras41c9e042018-09-11 00:10:41 -0700244 *
Florin Coras87b15ce2019-04-28 21:16:30 -0700245 * Allocates fifo on current heap.
246 *
247 * @param size data size in bytes for fifo to be allocated. Will be
248 * rounded to the next highest power-of-two value.
249 * @return pointer to new fifo
Florin Coras6792ec02017-03-13 03:49:51 -0700250 */
Florin Coras87b15ce2019-04-28 21:16:30 -0700251svm_fifo_t *svm_fifo_create (u32 size);
252/**
253 * Initialize fifo
254 *
Florin Coraseaacce42019-07-02 13:07:37 -0700255 * @param f fifo
Florin Coras87b15ce2019-04-28 21:16:30 -0700256 * @param size size for fifo
257 */
Florin Coras0a846802019-04-09 18:29:14 -0700258void svm_fifo_init (svm_fifo_t * f, u32 size);
Florin Corasb095a3c2019-04-25 12:58:46 -0700259/**
Florin Coraseaacce42019-07-02 13:07:37 -0700260 * Initialize fifo chunks and rbtree
261 *
262 * @param f fifo
263 */
264void svm_fifo_init_chunks (svm_fifo_t * f);
265/**
Florin Corasb095a3c2019-04-25 12:58:46 -0700266 * Allocate a fifo chunk on heap
267 *
268 * If the chunk is allocated on a fifo segment, this should be called
269 * with the segment's heap pushed.
270 *
271 * @param size chunk size in bytes. Will be rounded to the next highest
272 * power-of-two
273 * @return new chunk or 0 if alloc failed
274 */
275svm_fifo_chunk_t *svm_fifo_chunk_alloc (u32 size);
Florin Coras4375fa32019-04-19 15:56:00 -0700276/**
277 * Grow fifo size by adding chunk to chunk list
278 *
279 * If fifos are allocated on a segment, this should be called with
280 * the segment's heap pushed.
281 *
282 * @param f fifo to be extended
283 * @param c chunk or linked list of chunks to be added
284 */
Florin Coras99ad2fc2019-04-18 21:25:49 -0700285void svm_fifo_add_chunk (svm_fifo_t * f, svm_fifo_chunk_t * c);
Florin Coras87b15ce2019-04-28 21:16:30 -0700286/**
Florin Corasa7570b02019-05-02 12:52:19 -0700287 * Request to reduce fifo size by amount of bytes
288 *
289 * Because the producer might be enqueuing data when this is called, the
290 * actual size update is only applied when producer tries to enqueue new
291 * data, unless @param try_shrink is set.
292 *
293 * @param f fifo
294 * @param len number of bytes to remove from fifo. The actual number
295 * of bytes to be removed will be less or equal to this
296 * value.
297 * @param try_shrink flg to indicate if it's safe to try to shrink fifo
298 * size. It should be set only if this is called by the
299 * producer of if the producer is not using the fifo
300 * @return actual length fifo size will be reduced by
301 */
302int svm_fifo_reduce_size (svm_fifo_t * f, u32 len, u8 try_shrink);
303/**
304 * Removes chunks that are after fifo end byte
305 *
306 * Needs to be called with segment heap pushed.
307 *
308 * @param f fifo
309 */
310svm_fifo_chunk_t *svm_fifo_collect_chunks (svm_fifo_t * f);
311/**
Florin Coras87b15ce2019-04-28 21:16:30 -0700312 * Free fifo and associated state
313 *
314 * @param f fifo
315 */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700316void svm_fifo_free (svm_fifo_t * f);
Florin Corasb095a3c2019-04-25 12:58:46 -0700317/**
318 * Cleanup fifo chunk lookup rb tree
319 *
320 * The rb tree is allocated in segment heap so this should be called
321 * with it pushed.
322 *
323 * @param f fifo to cleanup
324 */
325void svm_fifo_free_chunk_lookup (svm_fifo_t * f);
326/**
327 * Cleanup fifo ooo data
328 *
329 * The ooo data is allocated in producer process memory. The fifo
330 * segment heap should not be pushed.
331 *
332 * @param f fifo to cleanup
333 */
334void svm_fifo_free_ooo_data (svm_fifo_t * f);
Florin Coras87b15ce2019-04-28 21:16:30 -0700335/**
336 * Init fifo head and tail
337 *
338 * @param f fifo
339 * @param head head value that will be matched to a chunk
340 * @param tail tail value that will be matched to a chunk
341 */
342void svm_fifo_init_pointers (svm_fifo_t * f, u32 head, u32 tail);
343/**
344 * Clone fifo
345 *
346 * Clones single/default chunk fifo. It does not work for fifos with
347 * multiple chunks.
348 */
349void svm_fifo_clone (svm_fifo_t * df, svm_fifo_t * sf);
350/**
351 * Enqueue data to fifo
352 *
353 * Data is enqueued and tail pointer is updated atomically. If the new data
354 * enqueued partly overlaps or "touches" an out-of-order segment, said segment
355 * is "consumed" and the number of bytes returned is appropriately updated.
356 *
357 * @param f fifo
358 * @param len length of data to copy
359 * @param src buffer from where to copy the data
360 * @return number of contiguous bytes that can be consumed or error
361 */
362int svm_fifo_enqueue (svm_fifo_t * f, u32 len, const u8 * src);
363/**
364 * Enqueue data to fifo with offset
365 *
366 * Data is enqueued without updating tail pointer. Instead, an out-of-order
367 * list of segments is generated and maintained. Fifo takes care of coalescing
368 * contiguous or overlapping segments.
369 *
370 * @param f fifo
371 * @param offset offset at which to copy the data
372 * @param len len of data to copy
373 * @param src buffer from where to copy the data
374 * @return 0 if enqueue was successful, error otherwise
375 */
376int svm_fifo_enqueue_with_offset (svm_fifo_t * f, u32 offset, u32 len,
377 u8 * src);
Florin Corasa7570b02019-05-02 12:52:19 -0700378
379/**
380 * Advance tail pointer
381 *
382 * Useful for moving tail pointer after external enqueue.
383 *
384 * @param f fifo
385 * @param len number of bytes to add to tail
386 */
387void svm_fifo_enqueue_nocopy (svm_fifo_t * f, u32 len);
Florin Coras87b15ce2019-04-28 21:16:30 -0700388/**
389 * Overwrite fifo head with new data
390 *
391 * This should be typically used by dgram transport protocols that need
392 * to update the dgram header after dequeueing a chunk of data. It assumes
393 * that the dgram header is at most spread over two chunks.
394 *
395 * @param f fifo
396 * @param src src of new data
397 * @param len length of new data
398 */
399void svm_fifo_overwrite_head (svm_fifo_t * f, u8 * src, u32 len);
400/**
401 * Dequeue data from fifo
402 *
403 * Data is dequeued to consumer provided buffer and head is atomically
404 * updated.
405 *
406 * @param f fifo
407 * @param len length of data to dequeue
408 * @param dst buffer to where to dequeue the data
409 * @return number of bytes dequeued or error
410 */
411int svm_fifo_dequeue (svm_fifo_t * f, u32 len, u8 * dst);
412/**
413 * Peek data from fifo
414 *
415 * Data is copied from requested offset into provided dst buffer. Head is
416 * not updated.
417 *
418 * @param f fifo
419 * @param offset offset from which to copy the data
420 * @param len length of data to copy
421 * @param dst buffer to where to dequeue the data
422 * @return number of bytes peeked
423 */
424int svm_fifo_peek (svm_fifo_t * f, u32 offset, u32 len, u8 * dst);
425/**
426 * Dequeue and drop bytes from fifo
427 *
428 * Advances fifo head by requested amount of bytes.
429 *
430 * @param f fifo
431 * @param len number of bytes to drop
432 * @return number of bytes dropped
433 */
434int svm_fifo_dequeue_drop (svm_fifo_t * f, u32 len);
435/**
436 * Dequeue and drop all bytes from fifo
437 *
438 * Advances head to tail position.
439 *
440 * @param f fifo
441 */
Florin Coras25579b42018-06-06 17:55:02 -0700442void svm_fifo_dequeue_drop_all (svm_fifo_t * f);
Florin Coras88001c62019-04-24 14:44:46 -0700443int svm_fifo_segments (svm_fifo_t * f, svm_fifo_seg_t * fs);
444void svm_fifo_segments_free (svm_fifo_t * f, svm_fifo_seg_t * fs);
Florin Coras87b15ce2019-04-28 21:16:30 -0700445/**
446 * Add io events subscriber to list
447 *
448 * @param f fifo
449 * @param sub subscriber opaque index (typically app worker index)
450 */
451void svm_fifo_add_subscriber (svm_fifo_t * f, u8 sub);
452/**
453 * Remove io events subscriber form list
454 *
455 * @param f fifo
456 * @param sub subscriber index to be removed
457 */
Florin Coras72b04282019-01-14 17:23:11 -0800458void svm_fifo_del_subscriber (svm_fifo_t * f, u8 subscriber);
Florin Coras87b15ce2019-04-28 21:16:30 -0700459/**
460 * Number of out-of-order segments for fifo
461 *
462 * @param f fifo
463 * @return number of out of order segments
464 */
465u32 svm_fifo_n_ooo_segments (svm_fifo_t * f);
Florin Coraseaacce42019-07-02 13:07:37 -0700466/**
Florin Coras87b15ce2019-04-28 21:16:30 -0700467 * First out-of-order segment for fifo
468 *
469 * @param f fifo
470 * @return first out-of-order segment for fifo
471 */
472ooo_segment_t *svm_fifo_first_ooo_segment (svm_fifo_t * f);
Florin Coraseaacce42019-07-02 13:07:37 -0700473/**
474 * Check if fifo is sane. Debug only.
475 *
476 * @param f fifo
477 * @return 1 if sane, 0 otherwise
478 */
479u8 svm_fifo_is_sane (svm_fifo_t * f);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700480format_function_t format_svm_fifo;
481
Florin Coras58d36f02018-03-09 13:05:53 -0800482/**
Florin Coras87b15ce2019-04-28 21:16:30 -0700483 * Fifo max bytes to dequeue optimized for consumer
484 *
485 * @param f fifo
486 * @return max number of bytes that can be dequeued
487 */
488static inline u32
489svm_fifo_max_dequeue_cons (svm_fifo_t * f)
490{
491 u32 tail, head;
492 f_load_head_tail_cons (f, &head, &tail);
493 return f_cursize (f, head, tail);
494}
495
496/**
497 * Fifo max bytes to dequeue optimized for producer
498 *
499 * @param f fifo
500 * @return max number of bytes that can be dequeued
501 */
502static inline u32
503svm_fifo_max_dequeue_prod (svm_fifo_t * f)
504{
505 u32 tail, head;
506 f_load_head_tail_prod (f, &head, &tail);
507 return f_cursize (f, head, tail);
508}
509
510/**
511 * Fifo max bytes to dequeue
512 *
513 * Note: use producer or consumer specific functions for performance:
514 * @ref svm_fifo_max_dequeue_cons (svm_fifo_t *f)
515 * @ref svm_fifo_max_dequeue_prod (svm_fifo_t *f)
516 */
517static inline u32
518svm_fifo_max_dequeue (svm_fifo_t * f)
519{
520 u32 tail, head;
521 f_load_head_tail_all_acq (f, &head, &tail);
522 return f_cursize (f, head, tail);
523}
524
525/**
526 * Check if fifo is full optimized for producer
527 *
528 * @param f fifo
529 * @return 1 if fifo is full 0 otherwise
530 */
531static inline int
532svm_fifo_is_full_prod (svm_fifo_t * f)
533{
534 return (svm_fifo_max_dequeue_prod (f) == f->nitems);
535}
536
537/* Check if fifo is full.
538 *
539 * Note: use producer or consumer specific functions for performance.
540 * @ref svm_fifo_is_full_prod (svm_fifo_t * f)
541 * add cons version if needed
542 */
543static inline int
544svm_fifo_is_full (svm_fifo_t * f)
545{
546 return (svm_fifo_max_dequeue (f) == f->nitems);
547}
548
549/**
550 * Check if fifo is empty optimized for consumer
551 *
552 * @param f fifo
553 * @return 1 if fifo is empty 0 otherwise
554 */
555static inline int
556svm_fifo_is_empty_cons (svm_fifo_t * f)
557{
558 return (svm_fifo_max_dequeue_cons (f) == 0);
559}
560
561/**
562 * Check if fifo is empty optimized for producer
563 *
564 * @param f fifo
565 * @return 1 if fifo is empty 0 otherwise
566 */
567static inline int
568svm_fifo_is_empty_prod (svm_fifo_t * f)
569{
570 return (svm_fifo_max_dequeue_prod (f) == 0);
571}
572
573/**
574 * Check if fifo is empty
575 *
576 * Note: use producer or consumer specific functions for perfomance.
577 * @ref svm_fifo_is_empty_cons (svm_fifo_t * f)
578 * @ref svm_fifo_is_empty_prod (svm_fifo_t * f)
579 */
580static inline int
581svm_fifo_is_empty (svm_fifo_t * f)
582{
583 return (svm_fifo_max_dequeue (f) == 0);
584}
585
586/**
587 * Check if fifo is wrapped
588 *
589 * @param f fifo
590 * @return 1 if 'normalized' head is ahead of tail
591 */
592static inline u8
593svm_fifo_is_wrapped (svm_fifo_t * f)
594{
595 u32 head, tail;
596 f_load_head_tail_all_acq (f, &head, &tail);
Florin Coras29a59c32019-05-02 12:52:19 -0700597 return head > tail;
Florin Coras87b15ce2019-04-28 21:16:30 -0700598}
599
600/**
601 * Maximum number of bytes that can be enqueued into fifo
602 *
603 * Optimized for producer
604 *
605 * @param f fifo
606 * @return max number of bytes that can be enqueued into fifo
607 */
608static inline u32
609svm_fifo_max_enqueue_prod (svm_fifo_t * f)
610{
611 u32 head, tail;
612 f_load_head_tail_prod (f, &head, &tail);
Florin Corasa7570b02019-05-02 12:52:19 -0700613 if (PREDICT_FALSE (f->flags & SVM_FIFO_F_SHRINK))
614 svm_fifo_try_shrink (f, head, tail);
Florin Coras87b15ce2019-04-28 21:16:30 -0700615 return f_free_count (f, head, tail);
616}
617
618/* Maximum number of bytes that can be enqueued into fifo
619 *
620 * Note: use producer or consumer specific functions for performance.
621 * @ref svm_fifo_max_enqueue_prod (svm_fifo_t *f)
622 * add consumer specific version if needed.
623 */
624static inline u32
625svm_fifo_max_enqueue (svm_fifo_t * f)
626{
627 u32 head, tail;
628 f_load_head_tail_all_acq (f, &head, &tail);
Florin Corasa7570b02019-05-02 12:52:19 -0700629 if (PREDICT_FALSE (f->flags & SVM_FIFO_F_SHRINK))
630 svm_fifo_try_shrink (f, head, tail);
Florin Coras87b15ce2019-04-28 21:16:30 -0700631 return f_free_count (f, head, tail);
632}
633
634/**
Florin Coras58d36f02018-03-09 13:05:53 -0800635 * Max contiguous chunk of data that can be read
636 */
Florin Coras87b15ce2019-04-28 21:16:30 -0700637static inline u32
Florin Coras58d36f02018-03-09 13:05:53 -0800638svm_fifo_max_read_chunk (svm_fifo_t * f)
639{
Sirshak Das28aa5392019-02-05 01:33:33 -0600640 u32 head, tail;
Sirshak Das28aa5392019-02-05 01:33:33 -0600641 f_load_head_tail_cons (f, &head, &tail);
Florin Coras29a59c32019-05-02 12:52:19 -0700642 return tail >= head ? (tail - head) : (f->size - head);
Florin Coras58d36f02018-03-09 13:05:53 -0800643}
644
645/**
646 * Max contiguous chunk of data that can be written
647 */
Florin Coras87b15ce2019-04-28 21:16:30 -0700648static inline u32
Florin Coras58d36f02018-03-09 13:05:53 -0800649svm_fifo_max_write_chunk (svm_fifo_t * f)
650{
Sirshak Das28aa5392019-02-05 01:33:33 -0600651 u32 head, tail;
Sirshak Das28aa5392019-02-05 01:33:33 -0600652 f_load_head_tail_prod (f, &head, &tail);
Florin Corasfcd26a02019-08-08 12:57:48 -0700653 return tail >= head ? f->size - tail : f_free_count (f, head, tail);
Florin Coras58d36f02018-03-09 13:05:53 -0800654}
655
Florin Coras87b15ce2019-04-28 21:16:30 -0700656static inline u8 *
Florin Coras58d36f02018-03-09 13:05:53 -0800657svm_fifo_head (svm_fifo_t * f)
658{
Sirshak Das28aa5392019-02-05 01:33:33 -0600659 /* load-relaxed: consumer owned index */
Florin Coras29a59c32019-05-02 12:52:19 -0700660 return (f->head_chunk->data + (f->head - f->head_chunk->start_byte));
Florin Coras58d36f02018-03-09 13:05:53 -0800661}
662
Florin Coras87b15ce2019-04-28 21:16:30 -0700663static inline u8 *
Florin Coras58d36f02018-03-09 13:05:53 -0800664svm_fifo_tail (svm_fifo_t * f)
665{
Sirshak Das28aa5392019-02-05 01:33:33 -0600666 /* load-relaxed: producer owned index */
Florin Coras29a59c32019-05-02 12:52:19 -0700667 return (f->tail_chunk->data + (f->tail - f->tail_chunk->start_byte));
Florin Coras1bcad5c2019-01-09 20:04:38 -0800668}
669
Florin Coras87b15ce2019-04-28 21:16:30 -0700670static inline u8
671svm_fifo_n_subscribers (svm_fifo_t * f)
672{
673 return f->n_subscribers;
674}
675
676/**
677 * Check if fifo has out-of-order data
678 *
679 * @param f fifo
680 * @return 1 if fifo has ooo data, 0 otherwise
681 */
682static inline u8
683svm_fifo_has_ooo_data (svm_fifo_t * f)
684{
685 return f->ooos_list_head != OOO_SEGMENT_INVALID_INDEX;
686}
687
688static inline ooo_segment_t *
689svm_fifo_newest_ooo_segment (svm_fifo_t * f)
690{
691 if (f->ooos_newest == OOO_SEGMENT_INVALID_INDEX)
692 return 0;
693 return pool_elt_at_index (f->ooo_segments, f->ooos_newest);
694}
695
696static inline void
697svm_fifo_newest_ooo_segment_reset (svm_fifo_t * f)
698{
699 f->ooos_newest = OOO_SEGMENT_INVALID_INDEX;
700}
701
702static inline u32
703ooo_segment_offset_prod (svm_fifo_t * f, ooo_segment_t * s)
704{
705 u32 tail;
706 /* load-relaxed: producer owned index */
707 tail = f->tail;
708
709 return f_distance_to (f, s->start, tail);
710}
711
712static inline u32
713ooo_segment_length (svm_fifo_t * f, ooo_segment_t * s)
714{
715 return s->length;
716}
717
718/**
719 * Check if fifo has io event
720 *
721 * @param f fifo
722 * @return 1 if fifo has event, 0 otherwise
723 */
724static inline int
725svm_fifo_has_event (svm_fifo_t * f)
726{
727 return f->has_event;
728}
729
730/**
731 * Set fifo event flag.
732 *
733 * Forces release semantics.
734 *
735 * @param f fifo
736 * @return 1 if flag was not set, 0 otherwise
737 */
738always_inline u8
739svm_fifo_set_event (svm_fifo_t * f)
740{
741 return !clib_atomic_swap_rel_n (&f->has_event, 1);
742}
743
744/**
745 * Unset fifo event flag.
746 *
747 * Forces acquire semantics
748 *
749 * @param f fifo
750 */
751always_inline void
752svm_fifo_unset_event (svm_fifo_t * f)
753{
754 clib_atomic_swap_acq_n (&f->has_event, 0);
755}
756
757/**
Florin Coras2d379d82019-06-28 12:45:12 -0700758 * Set specific want notification flag
Florin Coras87b15ce2019-04-28 21:16:30 -0700759 *
Florin Coras2d379d82019-06-28 12:45:12 -0700760 * For list of flags see @ref svm_fifo_deq_ntf_t
Florin Coras87b15ce2019-04-28 21:16:30 -0700761 *
762 * @param f fifo
763 * @param ntf_type type of notification requested
764 */
Florin Coras1bcad5c2019-01-09 20:04:38 -0800765static inline void
Florin Coras2d379d82019-06-28 12:45:12 -0700766svm_fifo_add_want_deq_ntf (svm_fifo_t * f, u8 ntf_type)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800767{
Florin Coras2d379d82019-06-28 12:45:12 -0700768 f->want_deq_ntf |= ntf_type;
Florin Coras1bcad5c2019-01-09 20:04:38 -0800769}
770
Florin Coras87b15ce2019-04-28 21:16:30 -0700771/**
Florin Coras2d379d82019-06-28 12:45:12 -0700772 * Clear specific want notification flag
Florin Coras87b15ce2019-04-28 21:16:30 -0700773 *
Florin Coras2d379d82019-06-28 12:45:12 -0700774 * For list of flags see @ref svm_fifo_ntf_t
Florin Coras87b15ce2019-04-28 21:16:30 -0700775 *
776 * @param f fifo
777 * @param ntf_type type of notification to be cleared
778 */
Florin Coras1bcad5c2019-01-09 20:04:38 -0800779static inline void
Florin Coras2d379d82019-06-28 12:45:12 -0700780svm_fifo_del_want_deq_ntf (svm_fifo_t * f, u8 ntf_type)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800781{
Florin Coras2d379d82019-06-28 12:45:12 -0700782 f->want_deq_ntf &= ~ntf_type;
Florin Coras1bcad5c2019-01-09 20:04:38 -0800783}
784
Florin Coras87b15ce2019-04-28 21:16:30 -0700785/**
Florin Coras2d379d82019-06-28 12:45:12 -0700786 * Clear the want notification flag and set has notification
Florin Coras87b15ce2019-04-28 21:16:30 -0700787 *
Florin Coras2d379d82019-06-28 12:45:12 -0700788 * Should be used after enqueuing an event. This clears the
789 * SVM_FIFO_WANT_NOTIF flag but it does not clear
790 * SVM_FIFO_WANT_NOTIF_IF_FULL. If the latter was set, has_ntf is
791 * set to avoid enqueueing events for for all dequeue operations until
Florin Coras87b15ce2019-04-28 21:16:30 -0700792 * it is manually cleared.
793 *
794 * @param f fifo
795 */
Florin Coras1bcad5c2019-01-09 20:04:38 -0800796static inline void
Florin Coras2d379d82019-06-28 12:45:12 -0700797svm_fifo_clear_deq_ntf (svm_fifo_t * f)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800798{
Florin Coras2d379d82019-06-28 12:45:12 -0700799 /* Set the flag if want_notif_if_full was the only ntf requested */
800 f->has_deq_ntf = f->want_deq_ntf == SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL;
801 svm_fifo_del_want_deq_ntf (f, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras1bcad5c2019-01-09 20:04:38 -0800802}
803
Florin Coras87b15ce2019-04-28 21:16:30 -0700804/**
Florin Coras2d379d82019-06-28 12:45:12 -0700805 * Clear has notification flag
Florin Coras87b15ce2019-04-28 21:16:30 -0700806 *
Florin Coras2d379d82019-06-28 12:45:12 -0700807 * The fifo generates only one event per SVM_FIFO_WANT_NOTIF_IF_FULL
808 * request and sets has_ntf. To received new events the flag must be
Florin Coras87b15ce2019-04-28 21:16:30 -0700809 * cleared using this function.
810 *
811 * @param f fifo
812 */
Florin Coras1bcad5c2019-01-09 20:04:38 -0800813static inline void
Florin Coras2d379d82019-06-28 12:45:12 -0700814svm_fifo_reset_has_deq_ntf (svm_fifo_t * f)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800815{
Florin Coras2d379d82019-06-28 12:45:12 -0700816 f->has_deq_ntf = 0;
Florin Coras1bcad5c2019-01-09 20:04:38 -0800817}
818
Florin Coras87b15ce2019-04-28 21:16:30 -0700819/**
Florin Coras2d379d82019-06-28 12:45:12 -0700820 * Check if fifo needs dequeue notification
Florin Coras87b15ce2019-04-28 21:16:30 -0700821 *
Florin Coras2d379d82019-06-28 12:45:12 -0700822 * Determines based on notification request flags and state of the fifo if
823 * an event should be generated.
Florin Coras87b15ce2019-04-28 21:16:30 -0700824 *
825 * @param f fifo
826 * @param n_last_deq number of bytes last dequeued
Florin Coras2d379d82019-06-28 12:45:12 -0700827 * @return 1 if event should be generated, 0 otherwise
Florin Coras87b15ce2019-04-28 21:16:30 -0700828 */
Florin Coras1bcad5c2019-01-09 20:04:38 -0800829static inline u8
Florin Coras2d379d82019-06-28 12:45:12 -0700830svm_fifo_needs_deq_ntf (svm_fifo_t * f, u32 n_last_deq)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800831{
Florin Coras2d379d82019-06-28 12:45:12 -0700832 u8 want_ntf = f->want_deq_ntf;
Florin Coras1bcad5c2019-01-09 20:04:38 -0800833
Florin Coras2d379d82019-06-28 12:45:12 -0700834 if (PREDICT_TRUE (want_ntf == SVM_FIFO_NO_DEQ_NOTIF))
Florin Coras1bcad5c2019-01-09 20:04:38 -0800835 return 0;
Florin Coras2d379d82019-06-28 12:45:12 -0700836 else if (want_ntf & SVM_FIFO_WANT_DEQ_NOTIF)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800837 return 1;
Florin Coras2d379d82019-06-28 12:45:12 -0700838 if (want_ntf & SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800839 {
Sirshak Das28aa5392019-02-05 01:33:33 -0600840 u32 max_deq = svm_fifo_max_dequeue_cons (f);
841 u32 nitems = f->nitems;
Florin Coras2d379d82019-06-28 12:45:12 -0700842 if (!f->has_deq_ntf && max_deq < nitems
Florin Coras1bcad5c2019-01-09 20:04:38 -0800843 && max_deq + n_last_deq >= nitems)
844 return 1;
Nathan Skrzypczake82a7ad2019-05-22 18:41:50 +0200845 }
Florin Coras2d379d82019-06-28 12:45:12 -0700846 if (want_ntf & SVM_FIFO_WANT_DEQ_NOTIF_IF_EMPTY)
Nathan Skrzypczake82a7ad2019-05-22 18:41:50 +0200847 {
Florin Coras2d379d82019-06-28 12:45:12 -0700848 if (!f->has_deq_ntf && svm_fifo_is_empty (f))
Nathan Skrzypczake82a7ad2019-05-22 18:41:50 +0200849 return 1;
Florin Coras1bcad5c2019-01-09 20:04:38 -0800850 }
851 return 0;
852}
853
Dave Barach68b0fb02017-02-28 15:15:56 -0500854#endif /* __included_ssvm_fifo_h__ */
855
856/*
857 * fd.io coding-style-patch-verification: ON
858 *
859 * Local Variables:
860 * eval: (c-set-style "gnu")
861 * End:
862 */