blob: 0d5a08b86ae4050a9b788fc9c406c16336b292a8 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15#ifndef __included_ssvm_fifo_h__
16#define __included_ssvm_fifo_h__
17
18#include <vppinfra/clib.h>
19#include <vppinfra/vec.h>
20#include <vppinfra/mheap.h>
21#include <vppinfra/heap.h>
22#include <vppinfra/pool.h>
23#include <vppinfra/format.h>
24#include <pthread.h>
25
Dave Barach68b0fb02017-02-28 15:15:56 -050026/** Out-of-order segment */
27typedef struct
28{
29 u32 next; /**< Next linked-list element pool index */
30 u32 prev; /**< Previous linked-list element pool index */
31
Dave Barach1f75cfd2017-04-14 16:46:44 -040032 u32 start; /**< Start of segment, normalized*/
Florin Corasa5464812017-04-19 13:00:05 -070033 u32 length; /**< Length of segment */
Dave Barach68b0fb02017-02-28 15:15:56 -050034} ooo_segment_t;
35
Dave Barach1f75cfd2017-04-14 16:46:44 -040036format_function_t format_ooo_segment;
37format_function_t format_ooo_list;
38
Florin Coras3eb50622017-07-13 01:24:57 -040039#define SVM_FIFO_TRACE (0)
Dave Barach68b0fb02017-02-28 15:15:56 -050040#define OOO_SEGMENT_INVALID_INDEX ((u32)~0)
41
Florin Coras3eb50622017-07-13 01:24:57 -040042typedef struct
43{
44 u32 offset;
45 u32 len;
46 u32 action;
47} svm_fifo_trace_elem_t;
48
Dave Barach10d8cc62017-05-30 09:30:07 -040049typedef struct _svm_fifo
Dave Barach68b0fb02017-02-28 15:15:56 -050050{
Florin Coras3e350af2017-03-30 02:54:28 -070051 volatile u32 cursize; /**< current fifo size */
52 u32 nitems;
53 CLIB_CACHE_LINE_ALIGN_MARK (end_cursize);
54
Dave Barachacd2a6a2017-05-16 17:41:34 -040055 volatile u32 has_event; /**< non-zero if deq event exists */
Dave Barach68b0fb02017-02-28 15:15:56 -050056
57 /* Backpointers */
Florin Corasa5464812017-04-19 13:00:05 -070058 u32 master_session_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050059 u32 client_session_index;
Florin Corasa5464812017-04-19 13:00:05 -070060 u8 master_thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050061 u8 client_thread_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -070062 u32 segment_manager;
Dave Barach68b0fb02017-02-28 15:15:56 -050063 CLIB_CACHE_LINE_ALIGN_MARK (end_shared);
64 u32 head;
65 CLIB_CACHE_LINE_ALIGN_MARK (end_consumer);
66
67 /* producer */
68 u32 tail;
69
70 ooo_segment_t *ooo_segments; /**< Pool of ooo segments */
71 u32 ooos_list_head; /**< Head of out-of-order linked-list */
72 u32 ooos_newest; /**< Last segment to have been updated */
Dave Barach10d8cc62017-05-30 09:30:07 -040073 struct _svm_fifo *next; /**< next in freelist/active chain */
74 struct _svm_fifo *prev; /**< prev in active chain */
Florin Coras3eb50622017-07-13 01:24:57 -040075#if SVM_FIFO_TRACE
76 svm_fifo_trace_elem_t *trace;
77#endif
Dave Barach818eb542017-08-02 13:56:13 -040078 u32 freelist_index; /**< aka log2(allocated_size) - const. */
79 i8 refcnt; /**< reference count */
Dave Barach68b0fb02017-02-28 15:15:56 -050080 CLIB_CACHE_LINE_ALIGN_MARK (data);
81} svm_fifo_t;
82
Florin Coras7fb0fe12018-04-09 09:24:52 -070083typedef enum
84{
85 SVM_FIFO_FULL = -2,
86} svm_fifo_err_t;
87
Florin Coras3eb50622017-07-13 01:24:57 -040088#if SVM_FIFO_TRACE
89#define svm_fifo_trace_add(_f, _s, _l, _t) \
90{ \
91 svm_fifo_trace_elem_t *trace_elt; \
92 vec_add2(_f->trace, trace_elt, 1); \
93 trace_elt->offset = _s; \
94 trace_elt->len = _l; \
95 trace_elt->action = _t; \
96}
97#else
98#define svm_fifo_trace_add(_f, _s, _l, _t)
99#endif
100
101u8 *svm_fifo_dump_trace (u8 * s, svm_fifo_t * f);
102u8 *svm_fifo_replay (u8 * s, svm_fifo_t * f, u8 no_read, u8 verbose);
103
Dave Barach68b0fb02017-02-28 15:15:56 -0500104static inline u32
105svm_fifo_max_dequeue (svm_fifo_t * f)
106{
107 return f->cursize;
108}
109
110static inline u32
111svm_fifo_max_enqueue (svm_fifo_t * f)
112{
Florin Coras3e350af2017-03-30 02:54:28 -0700113 return f->nitems - svm_fifo_max_dequeue (f);
Dave Barach68b0fb02017-02-28 15:15:56 -0500114}
115
Florin Coras46f001d2018-07-11 05:25:06 -0700116static inline int
117svm_fifo_has_event (svm_fifo_t * f)
118{
119 return f->has_event;
120}
121
Dave Barach68b0fb02017-02-28 15:15:56 -0500122static inline u8
123svm_fifo_has_ooo_data (svm_fifo_t * f)
124{
125 return f->ooos_list_head != OOO_SEGMENT_INVALID_INDEX;
126}
127
Florin Coras6792ec02017-03-13 03:49:51 -0700128/**
129 * Sets fifo event flag.
130 *
131 * @return 1 if flag was not set.
132 */
133always_inline u8
134svm_fifo_set_event (svm_fifo_t * f)
135{
136 /* Probably doesn't need to be atomic. Still, better avoid surprises */
137 return __sync_lock_test_and_set (&f->has_event, 1) == 0;
138}
139
140/**
141 * Unsets fifo event flag.
142 */
143always_inline void
144svm_fifo_unset_event (svm_fifo_t * f)
145{
146 /* Probably doesn't need to be atomic. Still, better avoid surprises */
Dave Barachacd2a6a2017-05-16 17:41:34 -0400147 __sync_lock_release (&f->has_event);
Florin Coras6792ec02017-03-13 03:49:51 -0700148}
149
Dave Barach68b0fb02017-02-28 15:15:56 -0500150svm_fifo_t *svm_fifo_create (u32 data_size_in_bytes);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700151void svm_fifo_free (svm_fifo_t * f);
Dave Barach68b0fb02017-02-28 15:15:56 -0500152
Florin Corasa5464812017-04-19 13:00:05 -0700153int svm_fifo_enqueue_nowait (svm_fifo_t * f, u32 max_bytes,
Florin Coras371ca502018-02-21 12:07:41 -0800154 const u8 * copy_from_here);
Florin Corasa5464812017-04-19 13:00:05 -0700155int svm_fifo_enqueue_with_offset (svm_fifo_t * f, u32 offset,
156 u32 required_bytes, u8 * copy_from_here);
157int svm_fifo_dequeue_nowait (svm_fifo_t * f, u32 max_bytes, u8 * copy_here);
Dave Barach68b0fb02017-02-28 15:15:56 -0500158
Florin Corasa5464812017-04-19 13:00:05 -0700159int svm_fifo_peek (svm_fifo_t * f, u32 offset, u32 max_bytes, u8 * copy_here);
160int svm_fifo_dequeue_drop (svm_fifo_t * f, u32 max_bytes);
Florin Coras25579b42018-06-06 17:55:02 -0700161void svm_fifo_dequeue_drop_all (svm_fifo_t * f);
Dave Barach1f75cfd2017-04-14 16:46:44 -0400162u32 svm_fifo_number_ooo_segments (svm_fifo_t * f);
163ooo_segment_t *svm_fifo_first_ooo_segment (svm_fifo_t * f);
Florin Corasc28764f2017-04-26 00:08:42 -0700164void svm_fifo_init_pointers (svm_fifo_t * f, u32 pointer);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700165void svm_fifo_overwrite_head (svm_fifo_t * f, u8 * data, u32 len);
Dave Barach68b0fb02017-02-28 15:15:56 -0500166
Florin Coras6cf30ad2017-04-04 23:08:23 -0700167format_function_t format_svm_fifo;
168
Dave Barach68b0fb02017-02-28 15:15:56 -0500169always_inline ooo_segment_t *
170svm_fifo_newest_ooo_segment (svm_fifo_t * f)
171{
Florin Corasf03a59a2017-06-09 21:07:32 -0700172 if (f->ooos_newest == OOO_SEGMENT_INVALID_INDEX)
173 return 0;
174 return pool_elt_at_index (f->ooo_segments, f->ooos_newest);
175}
176
Florin Coras3eb50622017-07-13 01:24:57 -0400177always_inline void
178svm_fifo_newest_ooo_segment_reset (svm_fifo_t * f)
179{
180 f->ooos_newest = OOO_SEGMENT_INVALID_INDEX;
181}
182
Florin Coras58d36f02018-03-09 13:05:53 -0800183/**
184 * Max contiguous chunk of data that can be read
185 */
186always_inline u32
187svm_fifo_max_read_chunk (svm_fifo_t * f)
188{
189 return ((f->tail > f->head) ? (f->tail - f->head) : (f->nitems - f->head));
190}
191
192/**
193 * Max contiguous chunk of data that can be written
194 */
195always_inline u32
196svm_fifo_max_write_chunk (svm_fifo_t * f)
197{
198 return ((f->tail >= f->head) ? (f->nitems - f->tail) : (f->head - f->tail));
199}
200
201/**
202 * Advance tail pointer
203 *
204 * Useful for moving tail pointer after external enqueue.
205 */
206always_inline void
207svm_fifo_enqueue_nocopy (svm_fifo_t * f, u32 bytes)
208{
209 ASSERT (bytes <= svm_fifo_max_enqueue (f));
210 f->tail = (f->tail + bytes) % f->nitems;
211 f->cursize += bytes;
212}
213
214always_inline u8 *
215svm_fifo_head (svm_fifo_t * f)
216{
217 return (f->data + f->head);
218}
219
220always_inline u8 *
221svm_fifo_tail (svm_fifo_t * f)
222{
223 return (f->data + f->tail);
224}
225
Florin Corasf03a59a2017-06-09 21:07:32 -0700226always_inline u32
Dave Barach2c25a622017-06-26 11:35:07 -0400227ooo_segment_distance_from_tail (svm_fifo_t * f, u32 pos)
Florin Corasf03a59a2017-06-09 21:07:32 -0700228{
229 /* Ambiguous. Assumption is that ooo segments don't touch tail */
Dave Barach2c25a622017-06-26 11:35:07 -0400230 if (PREDICT_FALSE (pos == f->tail && f->tail == f->head))
Florin Corasf03a59a2017-06-09 21:07:32 -0700231 return f->nitems;
232
Dave Barach2c25a622017-06-26 11:35:07 -0400233 return (((f->nitems + pos) - f->tail) % f->nitems);
234}
235
236always_inline u32
237ooo_segment_distance_to_tail (svm_fifo_t * f, u32 pos)
238{
239 return (((f->nitems + f->tail) - pos) % f->nitems);
Dave Barach68b0fb02017-02-28 15:15:56 -0500240}
241
242always_inline u32
243ooo_segment_offset (svm_fifo_t * f, ooo_segment_t * s)
244{
Dave Barach2c25a622017-06-26 11:35:07 -0400245 return ooo_segment_distance_from_tail (f, s->start);
Dave Barach68b0fb02017-02-28 15:15:56 -0500246}
247
248always_inline u32
249ooo_segment_end_offset (svm_fifo_t * f, ooo_segment_t * s)
250{
Dave Barach2c25a622017-06-26 11:35:07 -0400251 return ooo_segment_distance_from_tail (f, s->start) + s->length;
Florin Corasf03a59a2017-06-09 21:07:32 -0700252}
253
254always_inline u32
255ooo_segment_length (svm_fifo_t * f, ooo_segment_t * s)
256{
257 return s->length;
Dave Barach1f75cfd2017-04-14 16:46:44 -0400258}
259
260always_inline ooo_segment_t *
261ooo_segment_get_prev (svm_fifo_t * f, ooo_segment_t * s)
262{
263 if (s->prev == OOO_SEGMENT_INVALID_INDEX)
264 return 0;
265 return pool_elt_at_index (f->ooo_segments, s->prev);
Dave Barach68b0fb02017-02-28 15:15:56 -0500266}
267
Florin Coras3eb50622017-07-13 01:24:57 -0400268always_inline ooo_segment_t *
269ooo_segment_next (svm_fifo_t * f, ooo_segment_t * s)
270{
271 if (s->next == OOO_SEGMENT_INVALID_INDEX)
272 return 0;
273 return pool_elt_at_index (f->ooo_segments, s->next);
274}
275
Dave Barach68b0fb02017-02-28 15:15:56 -0500276#endif /* __included_ssvm_fifo_h__ */
277
278/*
279 * fd.io coding-style-patch-verification: ON
280 *
281 * Local Variables:
282 * eval: (c-set-style "gnu")
283 * End:
284 */