blob: 560628d2d07e268383ef9af17d49d44f89e4ceb5 [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 */
Florin Corasc547e912020-12-08 17:50:45 -080083 *head = f->shr->head;
Sirshak Das28aa5392019-02-05 01:33:33 -060084 /* load-acq: consumer foreign index (paired with store-rel in producer) */
Florin Corasc547e912020-12-08 17:50:45 -080085 *tail = clib_atomic_load_acq_n (&f->shr->tail);
Sirshak Das28aa5392019-02-05 01:33:33 -060086}
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 */
Florin Corasc547e912020-12-08 17:50:45 -080096 *tail = f->shr->tail;
Sirshak Das28aa5392019-02-05 01:33:33 -060097 /* load-acq: producer foreign index (paired with store-rel in consumer) */
Florin Corasc547e912020-12-08 17:50:45 -080098 *head = clib_atomic_load_acq_n (&f->shr->head);
Sirshak Das28aa5392019-02-05 01:33:33 -060099}
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) */
Florin Corasc547e912020-12-08 17:50:45 -0800110 *tail = clib_atomic_load_acq_n (&f->shr->tail);
Sirshak Das28aa5392019-02-05 01:33:33 -0600111 /* load-acq : producer foriegn index (paired with store-rel) */
Florin Corasc547e912020-12-08 17:50:45 -0800112 *head = clib_atomic_load_acq_n (&f->shr->head);
Sirshak Das28aa5392019-02-05 01:33:33 -0600113}
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 Corasc547e912020-12-08 17:50:45 -0800134 return (f->shr->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
Florin Corasaf588822020-12-09 12:51:13 -0800174always_inline svm_fifo_chunk_t *
175f_start_cptr (svm_fifo_t *f)
176{
177 return fs_chunk_ptr (f->fs_hdr, f->shr->start_chunk);
178}
179
180always_inline svm_fifo_chunk_t *
181f_end_cptr (svm_fifo_t *f)
182{
183 return fs_chunk_ptr (f->fs_hdr, f->shr->end_chunk);
184}
185
186always_inline svm_fifo_chunk_t *
187f_head_cptr (svm_fifo_t *f)
188{
189 return fs_chunk_ptr (f->fs_hdr, f->shr->head_chunk);
190}
191
192always_inline svm_fifo_chunk_t *
193f_tail_cptr (svm_fifo_t *f)
194{
195 return fs_chunk_ptr (f->fs_hdr, f->shr->tail_chunk);
196}
197
198always_inline svm_fifo_chunk_t *
Florin Coras17672aa2020-12-29 16:55:32 -0800199f_cptr (svm_fifo_t *f, fs_sptr_t cp)
Florin Corasaf588822020-12-09 12:51:13 -0800200{
201 return fs_chunk_ptr (f->fs_hdr, cp);
202}
203
Florin Coras17672aa2020-12-29 16:55:32 -0800204always_inline fs_sptr_t
Florin Corasaf588822020-12-09 12:51:13 -0800205f_csptr (svm_fifo_t *f, svm_fifo_chunk_t *c)
206{
207 return fs_chunk_sptr (f->fs_hdr, c);
208}
209
210always_inline void
Florin Coras17672aa2020-12-29 16:55:32 -0800211f_csptr_link (svm_fifo_t *f, fs_sptr_t cp, svm_fifo_chunk_t *c)
Florin Corasaf588822020-12-09 12:51:13 -0800212{
213 fs_chunk_ptr (f->fs_hdr, cp)->next = fs_chunk_sptr (f->fs_hdr, c);
214}
215
Florin Corasa7570b02019-05-02 12:52:19 -0700216/**
Florin Coras87b15ce2019-04-28 21:16:30 -0700217 * Create fifo of requested size
Florin Coras41c9e042018-09-11 00:10:41 -0700218 *
Florin Coras87b15ce2019-04-28 21:16:30 -0700219 * Allocates fifo on current heap.
220 *
221 * @param size data size in bytes for fifo to be allocated. Will be
222 * rounded to the next highest power-of-two value.
223 * @return pointer to new fifo
Florin Coras6792ec02017-03-13 03:49:51 -0700224 */
Florin Corasf22f4e52019-12-19 16:10:58 -0800225svm_fifo_t *svm_fifo_alloc (u32 size);
Florin Coras87b15ce2019-04-28 21:16:30 -0700226/**
227 * Initialize fifo
228 *
Florin Coraseaacce42019-07-02 13:07:37 -0700229 * @param f fifo
Florin Coras87b15ce2019-04-28 21:16:30 -0700230 * @param size size for fifo
231 */
Florin Coras0a846802019-04-09 18:29:14 -0700232void svm_fifo_init (svm_fifo_t * f, u32 size);
Florin Corasb095a3c2019-04-25 12:58:46 -0700233/**
234 * Allocate a fifo chunk on heap
235 *
236 * If the chunk is allocated on a fifo segment, this should be called
237 * with the segment's heap pushed.
238 *
239 * @param size chunk size in bytes. Will be rounded to the next highest
240 * power-of-two
241 * @return new chunk or 0 if alloc failed
242 */
243svm_fifo_chunk_t *svm_fifo_chunk_alloc (u32 size);
Florin Coras4375fa32019-04-19 15:56:00 -0700244/**
Florin Coras9e61d9a2020-02-05 21:13:18 +0000245 * Ensure the whole fifo size is writeable
Florin Coras4375fa32019-04-19 15:56:00 -0700246 *
Florin Coras9e61d9a2020-02-05 21:13:18 +0000247 * Allocates enough chunks to cover the whole fifo size.
Florin Coras4375fa32019-04-19 15:56:00 -0700248 *
Florin Coras9e61d9a2020-02-05 21:13:18 +0000249 * @param f fifo
Florin Coras4375fa32019-04-19 15:56:00 -0700250 */
Florin Corasf22f4e52019-12-19 16:10:58 -0800251int svm_fifo_fill_chunk_list (svm_fifo_t * f);
Florin Coras9e61d9a2020-02-05 21:13:18 +0000252/**
Florin Coras40a5da82020-12-18 09:19:18 -0800253 * Provision and return chunks for number of bytes requested
254 *
255 * Allocates enough chunks to cover the bytes requested and returns them
256 * in the fifo segment array. The number of bytes provisioned may be less
257 * than requested if not enough segments were provided.
258 *
259 * @param f fifo
260 * @param fs array of fifo segments
261 * @param n_segs length of fifo segments array
262 * @param len number of bytes to preallocate
263 * @return number of fifo segments provisioned or error
264 */
265int svm_fifo_provision_chunks (svm_fifo_t *f, svm_fifo_seg_t *fs, u32 n_segs,
266 u32 len);
267/**
Florin Coras9e61d9a2020-02-05 21:13:18 +0000268 * Initialize rbtrees used for ooo lookups
269 *
270 * @param f fifo
271 * @param ooo_type type of ooo operation (0 enqueue, 1 dequeue)
272 */
Florin Corasf22f4e52019-12-19 16:10:58 -0800273void svm_fifo_init_ooo_lookup (svm_fifo_t * f, u8 ooo_type);
Florin Corasa7570b02019-05-02 12:52:19 -0700274/**
Florin Coras87b15ce2019-04-28 21:16:30 -0700275 * Free fifo and associated state
276 *
277 * @param f fifo
278 */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700279void svm_fifo_free (svm_fifo_t * f);
Florin Corasb095a3c2019-04-25 12:58:46 -0700280/**
281 * Cleanup fifo chunk lookup rb tree
282 *
283 * The rb tree is allocated in segment heap so this should be called
284 * with it pushed.
285 *
286 * @param f fifo to cleanup
287 */
288void svm_fifo_free_chunk_lookup (svm_fifo_t * f);
289/**
290 * Cleanup fifo ooo data
291 *
292 * The ooo data is allocated in producer process memory. The fifo
293 * segment heap should not be pushed.
294 *
295 * @param f fifo to cleanup
296 */
297void svm_fifo_free_ooo_data (svm_fifo_t * f);
Florin Coras87b15ce2019-04-28 21:16:30 -0700298/**
299 * Init fifo head and tail
300 *
301 * @param f fifo
302 * @param head head value that will be matched to a chunk
303 * @param tail tail value that will be matched to a chunk
304 */
305void svm_fifo_init_pointers (svm_fifo_t * f, u32 head, u32 tail);
306/**
307 * Clone fifo
308 *
309 * Clones single/default chunk fifo. It does not work for fifos with
310 * multiple chunks.
311 */
312void svm_fifo_clone (svm_fifo_t * df, svm_fifo_t * sf);
313/**
314 * Enqueue data to fifo
315 *
316 * Data is enqueued and tail pointer is updated atomically. If the new data
317 * enqueued partly overlaps or "touches" an out-of-order segment, said segment
318 * is "consumed" and the number of bytes returned is appropriately updated.
319 *
320 * @param f fifo
321 * @param len length of data to copy
322 * @param src buffer from where to copy the data
323 * @return number of contiguous bytes that can be consumed or error
324 */
325int svm_fifo_enqueue (svm_fifo_t * f, u32 len, const u8 * src);
326/**
327 * Enqueue data to fifo with offset
328 *
329 * Data is enqueued without updating tail pointer. Instead, an out-of-order
330 * list of segments is generated and maintained. Fifo takes care of coalescing
331 * contiguous or overlapping segments.
332 *
333 * @param f fifo
334 * @param offset offset at which to copy the data
335 * @param len len of data to copy
336 * @param src buffer from where to copy the data
337 * @return 0 if enqueue was successful, error otherwise
338 */
339int svm_fifo_enqueue_with_offset (svm_fifo_t * f, u32 offset, u32 len,
340 u8 * src);
Florin Corasa7570b02019-05-02 12:52:19 -0700341
342/**
343 * Advance tail pointer
344 *
345 * Useful for moving tail pointer after external enqueue.
346 *
347 * @param f fifo
348 * @param len number of bytes to add to tail
349 */
350void svm_fifo_enqueue_nocopy (svm_fifo_t * f, u32 len);
Florin Coras87b15ce2019-04-28 21:16:30 -0700351/**
Florin Corasc95cfa22020-11-24 08:41:17 -0800352 * Enqueue array of @ref svm_fifo_seg_t in order
353 *
354 * @param f fifo
355 * @param segs array of segments to enqueue
356 * @param n_segs number of segments
357 * @param allow_partial if set partial enqueues are allowed
358 * @return len if enqueue was successful, error otherwise
359 */
360int svm_fifo_enqueue_segments (svm_fifo_t * f, const svm_fifo_seg_t segs[],
361 u32 n_segs, u8 allow_partial);
362/**
Florin Coras87b15ce2019-04-28 21:16:30 -0700363 * Overwrite fifo head with new data
364 *
365 * This should be typically used by dgram transport protocols that need
Florin Coras97d39e32020-09-04 08:57:27 -0700366 * to update the dgram header after dequeuing a chunk of data. It assumes
Florin Coras87b15ce2019-04-28 21:16:30 -0700367 * that the dgram header is at most spread over two chunks.
368 *
369 * @param f fifo
370 * @param src src of new data
371 * @param len length of new data
372 */
373void svm_fifo_overwrite_head (svm_fifo_t * f, u8 * src, u32 len);
374/**
375 * Dequeue data from fifo
376 *
377 * Data is dequeued to consumer provided buffer and head is atomically
Florin Coras97d39e32020-09-04 08:57:27 -0700378 * updated. This should not be used in combination with ooo lookups. If
379 * ooo peeking of data is needed in combination with dequeuing use @ref
380 * svm_fifo_dequeue_drop.
Florin Coras87b15ce2019-04-28 21:16:30 -0700381 *
382 * @param f fifo
383 * @param len length of data to dequeue
384 * @param dst buffer to where to dequeue the data
385 * @return number of bytes dequeued or error
386 */
387int svm_fifo_dequeue (svm_fifo_t * f, u32 len, u8 * dst);
388/**
389 * Peek data from fifo
390 *
391 * Data is copied from requested offset into provided dst buffer. Head is
392 * not updated.
393 *
394 * @param f fifo
395 * @param offset offset from which to copy the data
396 * @param len length of data to copy
397 * @param dst buffer to where to dequeue the data
398 * @return number of bytes peeked
399 */
400int svm_fifo_peek (svm_fifo_t * f, u32 offset, u32 len, u8 * dst);
401/**
402 * Dequeue and drop bytes from fifo
403 *
404 * Advances fifo head by requested amount of bytes.
405 *
406 * @param f fifo
407 * @param len number of bytes to drop
408 * @return number of bytes dropped
409 */
410int svm_fifo_dequeue_drop (svm_fifo_t * f, u32 len);
411/**
412 * Dequeue and drop all bytes from fifo
413 *
414 * Advances head to tail position.
415 *
416 * @param f fifo
417 */
Florin Coras25579b42018-06-06 17:55:02 -0700418void svm_fifo_dequeue_drop_all (svm_fifo_t * f);
Florin Corasd68faf82020-09-25 15:18:13 -0700419/**
420 * Get pointers to fifo chunks data in @ref svm_fifo_seg_t array
421 *
422 * Populates fifo segment array with pointers to fifo chunk data and lengths.
423 * Because this returns pointers to data, it must be paired with
424 * @ref svm_fifo_dequeue_drop to actually release the fifo chunks after the
425 * data is consumed.
426 *
427 * @param f fifo
Florin Corasd1cc38d2020-10-11 11:05:04 -0700428 * @param offset offset from where to retrieve segments
Florin Corasd68faf82020-09-25 15:18:13 -0700429 * @param fs array of fifo segments allocated by caller
430 * @param n_segs number of fifo segments in array
431 * @param max_bytes max bytes to be mapped to fifo segments
432 * @return number of bytes in fifo segments or SVM_FIFO_EEMPTY
433 */
Florin Corasd1cc38d2020-10-11 11:05:04 -0700434int svm_fifo_segments (svm_fifo_t * f, u32 offset, svm_fifo_seg_t * fs,
435 u32 n_segs, u32 max_bytes);
Florin Coras87b15ce2019-04-28 21:16:30 -0700436/**
437 * Add io events subscriber to list
438 *
439 * @param f fifo
440 * @param sub subscriber opaque index (typically app worker index)
441 */
442void svm_fifo_add_subscriber (svm_fifo_t * f, u8 sub);
443/**
444 * Remove io events subscriber form list
445 *
446 * @param f fifo
447 * @param sub subscriber index to be removed
448 */
Florin Coras72b04282019-01-14 17:23:11 -0800449void svm_fifo_del_subscriber (svm_fifo_t * f, u8 subscriber);
Florin Coras87b15ce2019-04-28 21:16:30 -0700450/**
451 * Number of out-of-order segments for fifo
452 *
453 * @param f fifo
454 * @return number of out of order segments
455 */
456u32 svm_fifo_n_ooo_segments (svm_fifo_t * f);
Florin Coraseaacce42019-07-02 13:07:37 -0700457/**
Florin Coras87b15ce2019-04-28 21:16:30 -0700458 * First out-of-order segment for fifo
459 *
460 * @param f fifo
461 * @return first out-of-order segment for fifo
462 */
463ooo_segment_t *svm_fifo_first_ooo_segment (svm_fifo_t * f);
Florin Coraseaacce42019-07-02 13:07:37 -0700464/**
465 * Check if fifo is sane. Debug only.
466 *
467 * @param f fifo
468 * @return 1 if sane, 0 otherwise
469 */
470u8 svm_fifo_is_sane (svm_fifo_t * f);
Florin Coras9e61d9a2020-02-05 21:13:18 +0000471/**
472 * Number of chunks linked into the fifo
473 *
474 * @param f fifo
475 * @return number of chunks in fifo linked list
476 */
Florin Corasf22f4e52019-12-19 16:10:58 -0800477u32 svm_fifo_n_chunks (svm_fifo_t * f);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700478format_function_t format_svm_fifo;
479
Florin Coras58d36f02018-03-09 13:05:53 -0800480/**
Florin Coras87b15ce2019-04-28 21:16:30 -0700481 * Fifo max bytes to dequeue optimized for consumer
482 *
483 * @param f fifo
484 * @return max number of bytes that can be dequeued
485 */
486static inline u32
487svm_fifo_max_dequeue_cons (svm_fifo_t * f)
488{
489 u32 tail, head;
490 f_load_head_tail_cons (f, &head, &tail);
491 return f_cursize (f, head, tail);
492}
493
494/**
495 * Fifo max bytes to dequeue optimized for producer
496 *
497 * @param f fifo
498 * @return max number of bytes that can be dequeued
499 */
500static inline u32
501svm_fifo_max_dequeue_prod (svm_fifo_t * f)
502{
503 u32 tail, head;
504 f_load_head_tail_prod (f, &head, &tail);
505 return f_cursize (f, head, tail);
506}
507
508/**
509 * Fifo max bytes to dequeue
510 *
511 * Note: use producer or consumer specific functions for performance:
512 * @ref svm_fifo_max_dequeue_cons (svm_fifo_t *f)
513 * @ref svm_fifo_max_dequeue_prod (svm_fifo_t *f)
514 */
515static inline u32
516svm_fifo_max_dequeue (svm_fifo_t * f)
517{
518 u32 tail, head;
519 f_load_head_tail_all_acq (f, &head, &tail);
520 return f_cursize (f, head, tail);
521}
522
523/**
524 * Check if fifo is full optimized for producer
525 *
526 * @param f fifo
527 * @return 1 if fifo is full 0 otherwise
528 */
529static inline int
530svm_fifo_is_full_prod (svm_fifo_t * f)
531{
Florin Corasc547e912020-12-08 17:50:45 -0800532 return (svm_fifo_max_dequeue_prod (f) == f->shr->size);
Florin Coras87b15ce2019-04-28 21:16:30 -0700533}
534
535/* Check if fifo is full.
536 *
537 * Note: use producer or consumer specific functions for performance.
538 * @ref svm_fifo_is_full_prod (svm_fifo_t * f)
539 * add cons version if needed
540 */
541static inline int
542svm_fifo_is_full (svm_fifo_t * f)
543{
Florin Corasc547e912020-12-08 17:50:45 -0800544 return (svm_fifo_max_dequeue (f) == f->shr->size);
Florin Coras87b15ce2019-04-28 21:16:30 -0700545}
546
547/**
548 * Check if fifo is empty optimized for consumer
549 *
550 * @param f fifo
551 * @return 1 if fifo is empty 0 otherwise
552 */
553static inline int
554svm_fifo_is_empty_cons (svm_fifo_t * f)
555{
556 return (svm_fifo_max_dequeue_cons (f) == 0);
557}
558
559/**
560 * Check if fifo is empty optimized for producer
561 *
562 * @param f fifo
563 * @return 1 if fifo is empty 0 otherwise
564 */
565static inline int
566svm_fifo_is_empty_prod (svm_fifo_t * f)
567{
568 return (svm_fifo_max_dequeue_prod (f) == 0);
569}
570
571/**
572 * Check if fifo is empty
573 *
574 * Note: use producer or consumer specific functions for perfomance.
575 * @ref svm_fifo_is_empty_cons (svm_fifo_t * f)
576 * @ref svm_fifo_is_empty_prod (svm_fifo_t * f)
577 */
578static inline int
579svm_fifo_is_empty (svm_fifo_t * f)
580{
581 return (svm_fifo_max_dequeue (f) == 0);
582}
583
584/**
585 * Check if fifo is wrapped
586 *
587 * @param f fifo
588 * @return 1 if 'normalized' head is ahead of tail
589 */
590static inline u8
591svm_fifo_is_wrapped (svm_fifo_t * f)
592{
593 u32 head, tail;
594 f_load_head_tail_all_acq (f, &head, &tail);
Florin Coras29a59c32019-05-02 12:52:19 -0700595 return head > tail;
Florin Coras87b15ce2019-04-28 21:16:30 -0700596}
597
598/**
599 * Maximum number of bytes that can be enqueued into fifo
600 *
601 * Optimized for producer
602 *
603 * @param f fifo
604 * @return max number of bytes that can be enqueued into fifo
605 */
606static inline u32
607svm_fifo_max_enqueue_prod (svm_fifo_t * f)
608{
609 u32 head, tail;
610 f_load_head_tail_prod (f, &head, &tail);
611 return f_free_count (f, head, tail);
612}
613
614/* Maximum number of bytes that can be enqueued into fifo
615 *
616 * Note: use producer or consumer specific functions for performance.
617 * @ref svm_fifo_max_enqueue_prod (svm_fifo_t *f)
618 * add consumer specific version if needed.
619 */
620static inline u32
621svm_fifo_max_enqueue (svm_fifo_t * f)
622{
623 u32 head, tail;
624 f_load_head_tail_all_acq (f, &head, &tail);
625 return f_free_count (f, head, tail);
626}
627
628/**
Florin Corasf22f4e52019-12-19 16:10:58 -0800629 * Max contiguous chunk of data that can be read.
630 *
631 * Should only be called by consumers.
Florin Coras58d36f02018-03-09 13:05:53 -0800632 */
Florin Corasf22f4e52019-12-19 16:10:58 -0800633u32 svm_fifo_max_read_chunk (svm_fifo_t * f);
Florin Coras58d36f02018-03-09 13:05:53 -0800634
635/**
636 * Max contiguous chunk of data that can be written
Florin Corasf22f4e52019-12-19 16:10:58 -0800637 *
638 * Should only be called by producers
Florin Coras58d36f02018-03-09 13:05:53 -0800639 */
Florin Corasf22f4e52019-12-19 16:10:58 -0800640u32 svm_fifo_max_write_chunk (svm_fifo_t * f);
641
Florin Coras9e61d9a2020-02-05 21:13:18 +0000642/**
643 * Fifo head chunk getter
644 *
645 * @param f fifo
646 * @return head chunk pointer
647 */
Florin Corasf22f4e52019-12-19 16:10:58 -0800648static inline svm_fifo_chunk_t *
649svm_fifo_head_chunk (svm_fifo_t * f)
Florin Coras58d36f02018-03-09 13:05:53 -0800650{
Florin Corasaf588822020-12-09 12:51:13 -0800651 return f_head_cptr (f);
Florin Coras58d36f02018-03-09 13:05:53 -0800652}
653
Florin Coras9e61d9a2020-02-05 21:13:18 +0000654/**
655 * Fifo head pointer getter
656 *
657 * @param f fifo
658 * @return head pointer
659 */
Florin Coras87b15ce2019-04-28 21:16:30 -0700660static inline u8 *
Florin Coras58d36f02018-03-09 13:05:53 -0800661svm_fifo_head (svm_fifo_t * f)
662{
Florin Corasaf588822020-12-09 12:51:13 -0800663 svm_fifo_chunk_t *head_chunk;
Florin Corasc547e912020-12-08 17:50:45 -0800664 if (!f->shr->head_chunk)
Florin Corasf22f4e52019-12-19 16:10:58 -0800665 return 0;
Sirshak Das28aa5392019-02-05 01:33:33 -0600666 /* load-relaxed: consumer owned index */
Florin Corasaf588822020-12-09 12:51:13 -0800667 head_chunk = f_head_cptr (f);
668 return (head_chunk->data + (f->shr->head - head_chunk->start_byte));
Florin Coras58d36f02018-03-09 13:05:53 -0800669}
670
Florin Coras9e61d9a2020-02-05 21:13:18 +0000671/**
672 * Fifo tail chunk getter
673 *
674 * @param f fifo
675 * @return tail chunk pointer
676 */
Florin Corasf22f4e52019-12-19 16:10:58 -0800677static inline svm_fifo_chunk_t *
678svm_fifo_tail_chunk (svm_fifo_t * f)
679{
Florin Corasaf588822020-12-09 12:51:13 -0800680 return f_tail_cptr (f);
Florin Corasf22f4e52019-12-19 16:10:58 -0800681}
682
Florin Coras9e61d9a2020-02-05 21:13:18 +0000683/**
684 * Fifo tail pointer getter
685 *
686 * @param f fifo
687 * @return tail pointer
688 */
Florin Coras87b15ce2019-04-28 21:16:30 -0700689static inline u8 *
Florin Coras58d36f02018-03-09 13:05:53 -0800690svm_fifo_tail (svm_fifo_t * f)
691{
Florin Corasaf588822020-12-09 12:51:13 -0800692 svm_fifo_chunk_t *tail_chunk;
693
Sirshak Das28aa5392019-02-05 01:33:33 -0600694 /* load-relaxed: producer owned index */
Florin Corasaf588822020-12-09 12:51:13 -0800695 tail_chunk = f_tail_cptr (f);
696 return (tail_chunk->data + (f->shr->tail - tail_chunk->start_byte));
Florin Coras1bcad5c2019-01-09 20:04:38 -0800697}
698
Florin Coras9e61d9a2020-02-05 21:13:18 +0000699/**
700 * Fifo number of subscribers getter
701 *
702 * @param f fifo
703 * @return number of subscribers
704 */
Florin Coras87b15ce2019-04-28 21:16:30 -0700705static inline u8
706svm_fifo_n_subscribers (svm_fifo_t * f)
707{
Florin Corasc547e912020-12-08 17:50:45 -0800708 return f->shr->n_subscribers;
Florin Coras87b15ce2019-04-28 21:16:30 -0700709}
710
711/**
712 * Check if fifo has out-of-order data
713 *
714 * @param f fifo
715 * @return 1 if fifo has ooo data, 0 otherwise
716 */
717static inline u8
718svm_fifo_has_ooo_data (svm_fifo_t * f)
719{
720 return f->ooos_list_head != OOO_SEGMENT_INVALID_INDEX;
721}
722
723static inline ooo_segment_t *
724svm_fifo_newest_ooo_segment (svm_fifo_t * f)
725{
726 if (f->ooos_newest == OOO_SEGMENT_INVALID_INDEX)
727 return 0;
728 return pool_elt_at_index (f->ooo_segments, f->ooos_newest);
729}
730
731static inline void
732svm_fifo_newest_ooo_segment_reset (svm_fifo_t * f)
733{
734 f->ooos_newest = OOO_SEGMENT_INVALID_INDEX;
735}
736
737static inline u32
738ooo_segment_offset_prod (svm_fifo_t * f, ooo_segment_t * s)
739{
740 u32 tail;
741 /* load-relaxed: producer owned index */
Florin Corasc547e912020-12-08 17:50:45 -0800742 tail = f->shr->tail;
Florin Coras87b15ce2019-04-28 21:16:30 -0700743
Florin Corasf22f4e52019-12-19 16:10:58 -0800744 return (s->start - tail);
Florin Coras87b15ce2019-04-28 21:16:30 -0700745}
746
747static inline u32
748ooo_segment_length (svm_fifo_t * f, ooo_segment_t * s)
749{
750 return s->length;
751}
752
Florin Corasf22f4e52019-12-19 16:10:58 -0800753static inline u32
754svm_fifo_size (svm_fifo_t * f)
755{
Florin Corasc547e912020-12-08 17:50:45 -0800756 return f->shr->size;
Florin Corasf22f4e52019-12-19 16:10:58 -0800757}
758
759static inline void
760svm_fifo_set_size (svm_fifo_t * f, u32 size)
761{
Florin Coras4b8011e2020-12-07 19:38:23 -0800762 if (size > (1 << f->fs_hdr->max_log2_fifo_size))
Florin Coras0e6199d2020-04-17 20:15:22 +0000763 return;
Florin Corasc547e912020-12-08 17:50:45 -0800764 fsh_virtual_mem_update (f->fs_hdr, f->shr->slice_index,
765 (int) f->shr->size - size);
766 f->shr->size = size;
Florin Corasf22f4e52019-12-19 16:10:58 -0800767}
768
Florin Coras87b15ce2019-04-28 21:16:30 -0700769/**
770 * Check if fifo has io event
771 *
772 * @param f fifo
773 * @return 1 if fifo has event, 0 otherwise
774 */
775static inline int
776svm_fifo_has_event (svm_fifo_t * f)
777{
Florin Corasc547e912020-12-08 17:50:45 -0800778 return f->shr->has_event;
Florin Coras87b15ce2019-04-28 21:16:30 -0700779}
780
781/**
782 * Set fifo event flag.
783 *
784 * Forces release semantics.
785 *
786 * @param f fifo
787 * @return 1 if flag was not set, 0 otherwise
788 */
789always_inline u8
790svm_fifo_set_event (svm_fifo_t * f)
791{
Florin Corasc547e912020-12-08 17:50:45 -0800792 return !clib_atomic_swap_rel_n (&f->shr->has_event, 1);
Florin Coras87b15ce2019-04-28 21:16:30 -0700793}
794
795/**
796 * Unset fifo event flag.
797 *
798 * Forces acquire semantics
799 *
800 * @param f fifo
801 */
802always_inline void
803svm_fifo_unset_event (svm_fifo_t * f)
804{
Florin Corasc547e912020-12-08 17:50:45 -0800805 clib_atomic_swap_acq_n (&f->shr->has_event, 0);
Florin Coras87b15ce2019-04-28 21:16:30 -0700806}
807
808/**
Florin Coras2d379d82019-06-28 12:45:12 -0700809 * Set specific want notification flag
Florin Coras87b15ce2019-04-28 21:16:30 -0700810 *
Florin Coras2d379d82019-06-28 12:45:12 -0700811 * For list of flags see @ref svm_fifo_deq_ntf_t
Florin Coras87b15ce2019-04-28 21:16:30 -0700812 *
813 * @param f fifo
814 * @param ntf_type type of notification requested
815 */
Florin Coras1bcad5c2019-01-09 20:04:38 -0800816static inline void
Florin Coras2d379d82019-06-28 12:45:12 -0700817svm_fifo_add_want_deq_ntf (svm_fifo_t * f, u8 ntf_type)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800818{
Florin Corasc547e912020-12-08 17:50:45 -0800819 f->shr->want_deq_ntf |= ntf_type;
Florin Coras1bcad5c2019-01-09 20:04:38 -0800820}
821
Florin Coras87b15ce2019-04-28 21:16:30 -0700822/**
Florin Coras2d379d82019-06-28 12:45:12 -0700823 * Clear specific want notification flag
Florin Coras87b15ce2019-04-28 21:16:30 -0700824 *
Florin Coras2d379d82019-06-28 12:45:12 -0700825 * For list of flags see @ref svm_fifo_ntf_t
Florin Coras87b15ce2019-04-28 21:16:30 -0700826 *
827 * @param f fifo
828 * @param ntf_type type of notification to be cleared
829 */
Florin Coras1bcad5c2019-01-09 20:04:38 -0800830static inline void
Florin Coras2d379d82019-06-28 12:45:12 -0700831svm_fifo_del_want_deq_ntf (svm_fifo_t * f, u8 ntf_type)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800832{
Florin Corasc547e912020-12-08 17:50:45 -0800833 f->shr->want_deq_ntf &= ~ntf_type;
Florin Coras1bcad5c2019-01-09 20:04:38 -0800834}
835
Florin Coras87b15ce2019-04-28 21:16:30 -0700836/**
Florin Coras2d379d82019-06-28 12:45:12 -0700837 * Clear the want notification flag and set has notification
Florin Coras87b15ce2019-04-28 21:16:30 -0700838 *
Florin Coras2d379d82019-06-28 12:45:12 -0700839 * Should be used after enqueuing an event. This clears the
840 * SVM_FIFO_WANT_NOTIF flag but it does not clear
841 * SVM_FIFO_WANT_NOTIF_IF_FULL. If the latter was set, has_ntf is
842 * set to avoid enqueueing events for for all dequeue operations until
Florin Coras87b15ce2019-04-28 21:16:30 -0700843 * it is manually cleared.
844 *
845 * @param f fifo
846 */
Florin Coras1bcad5c2019-01-09 20:04:38 -0800847static inline void
Florin Coras2d379d82019-06-28 12:45:12 -0700848svm_fifo_clear_deq_ntf (svm_fifo_t * f)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800849{
Florin Coras2d379d82019-06-28 12:45:12 -0700850 /* Set the flag if want_notif_if_full was the only ntf requested */
Florin Corasc547e912020-12-08 17:50:45 -0800851 f->shr->has_deq_ntf =
852 f->shr->want_deq_ntf == SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL;
Florin Coras2d379d82019-06-28 12:45:12 -0700853 svm_fifo_del_want_deq_ntf (f, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras1bcad5c2019-01-09 20:04:38 -0800854}
855
Florin Coras87b15ce2019-04-28 21:16:30 -0700856/**
Florin Coras2d379d82019-06-28 12:45:12 -0700857 * Clear has notification flag
Florin Coras87b15ce2019-04-28 21:16:30 -0700858 *
Florin Coras2d379d82019-06-28 12:45:12 -0700859 * The fifo generates only one event per SVM_FIFO_WANT_NOTIF_IF_FULL
860 * request and sets has_ntf. To received new events the flag must be
Florin Coras87b15ce2019-04-28 21:16:30 -0700861 * cleared using this function.
862 *
863 * @param f fifo
864 */
Florin Coras1bcad5c2019-01-09 20:04:38 -0800865static inline void
Florin Coras2d379d82019-06-28 12:45:12 -0700866svm_fifo_reset_has_deq_ntf (svm_fifo_t * f)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800867{
Florin Corasc547e912020-12-08 17:50:45 -0800868 f->shr->has_deq_ntf = 0;
Florin Coras1bcad5c2019-01-09 20:04:38 -0800869}
870
Florin Coras87b15ce2019-04-28 21:16:30 -0700871/**
Florin Coras2d379d82019-06-28 12:45:12 -0700872 * Check if fifo needs dequeue notification
Florin Coras87b15ce2019-04-28 21:16:30 -0700873 *
Florin Coras2d379d82019-06-28 12:45:12 -0700874 * Determines based on notification request flags and state of the fifo if
875 * an event should be generated.
Florin Coras87b15ce2019-04-28 21:16:30 -0700876 *
877 * @param f fifo
878 * @param n_last_deq number of bytes last dequeued
Florin Coras2d379d82019-06-28 12:45:12 -0700879 * @return 1 if event should be generated, 0 otherwise
Florin Coras87b15ce2019-04-28 21:16:30 -0700880 */
Florin Coras1bcad5c2019-01-09 20:04:38 -0800881static inline u8
Florin Coras2d379d82019-06-28 12:45:12 -0700882svm_fifo_needs_deq_ntf (svm_fifo_t * f, u32 n_last_deq)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800883{
Florin Corasc547e912020-12-08 17:50:45 -0800884 u8 want_ntf = f->shr->want_deq_ntf;
Florin Coras1bcad5c2019-01-09 20:04:38 -0800885
Florin Coras2d379d82019-06-28 12:45:12 -0700886 if (PREDICT_TRUE (want_ntf == SVM_FIFO_NO_DEQ_NOTIF))
Florin Coras1bcad5c2019-01-09 20:04:38 -0800887 return 0;
Florin Coras2d379d82019-06-28 12:45:12 -0700888 else if (want_ntf & SVM_FIFO_WANT_DEQ_NOTIF)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800889 return 1;
Florin Coras2d379d82019-06-28 12:45:12 -0700890 if (want_ntf & SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800891 {
Sirshak Das28aa5392019-02-05 01:33:33 -0600892 u32 max_deq = svm_fifo_max_dequeue_cons (f);
Florin Corasc547e912020-12-08 17:50:45 -0800893 u32 size = f->shr->size;
894 if (!f->shr->has_deq_ntf && max_deq < size &&
895 max_deq + n_last_deq >= size)
Florin Coras1bcad5c2019-01-09 20:04:38 -0800896 return 1;
Nathan Skrzypczake82a7ad2019-05-22 18:41:50 +0200897 }
Florin Coras2d379d82019-06-28 12:45:12 -0700898 if (want_ntf & SVM_FIFO_WANT_DEQ_NOTIF_IF_EMPTY)
Nathan Skrzypczake82a7ad2019-05-22 18:41:50 +0200899 {
Florin Corasc547e912020-12-08 17:50:45 -0800900 if (!f->shr->has_deq_ntf && svm_fifo_is_empty (f))
Nathan Skrzypczake82a7ad2019-05-22 18:41:50 +0200901 return 1;
Florin Coras1bcad5c2019-01-09 20:04:38 -0800902 }
903 return 0;
904}
905
Dave Barach68b0fb02017-02-28 15:15:56 -0500906#endif /* __included_ssvm_fifo_h__ */
907
908/*
909 * fd.io coding-style-patch-verification: ON
910 *
911 * Local Variables:
912 * eval: (c-set-style "gnu")
913 * End:
914 */