vcl: add apis that expos fifo as buffer
[vpp.git] / src / svm / svm_fifo.h
1 /*
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
26 /** Out-of-order segment */
27 typedef struct
28 {
29   u32 next;     /**< Next linked-list element pool index */
30   u32 prev;     /**< Previous linked-list element pool index */
31
32   u32 start;    /**< Start of segment, normalized*/
33   u32 length;   /**< Length of segment */
34 } ooo_segment_t;
35
36 format_function_t format_ooo_segment;
37 format_function_t format_ooo_list;
38
39 #define SVM_FIFO_TRACE (0)
40 #define OOO_SEGMENT_INVALID_INDEX ((u32)~0)
41
42 typedef struct
43 {
44   u32 offset;
45   u32 len;
46   u32 action;
47 } svm_fifo_trace_elem_t;
48
49 typedef struct _svm_fifo
50 {
51   volatile u32 cursize;         /**< current fifo size */
52   u32 nitems;
53     CLIB_CACHE_LINE_ALIGN_MARK (end_cursize);
54
55   volatile u32 has_event;       /**< non-zero if deq event exists */
56
57   /* Backpointers */
58   u32 master_session_index;
59   u32 client_session_index;
60   u8 master_thread_index;
61   u8 client_thread_index;
62   u32 segment_manager;
63     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 */
73   struct _svm_fifo *next;       /**< next in freelist/active chain */
74   struct _svm_fifo *prev;       /**< prev in active chain */
75 #if SVM_FIFO_TRACE
76   svm_fifo_trace_elem_t *trace;
77 #endif
78   u32 freelist_index;           /**< aka log2(allocated_size) - const. */
79   i8 refcnt;                    /**< reference count  */
80     CLIB_CACHE_LINE_ALIGN_MARK (data);
81 } svm_fifo_t;
82
83 typedef enum
84 {
85   SVM_FIFO_FULL = -2,
86 } svm_fifo_err_t;
87
88 typedef struct svm_fifo_segment_
89 {
90   u8 *data;
91   u32 len;
92 } svm_fifo_segment_t;
93
94 #if SVM_FIFO_TRACE
95 #define svm_fifo_trace_add(_f, _s, _l, _t)              \
96 {                                                       \
97   svm_fifo_trace_elem_t *trace_elt;                     \
98   vec_add2(_f->trace, trace_elt, 1);                    \
99   trace_elt->offset = _s;                               \
100   trace_elt->len = _l;                                  \
101   trace_elt->action = _t;                               \
102 }
103 #else
104 #define svm_fifo_trace_add(_f, _s, _l, _t)
105 #endif
106
107 u8 *svm_fifo_dump_trace (u8 * s, svm_fifo_t * f);
108 u8 *svm_fifo_replay (u8 * s, svm_fifo_t * f, u8 no_read, u8 verbose);
109
110 static inline u32
111 svm_fifo_max_dequeue (svm_fifo_t * f)
112 {
113   return f->cursize;
114 }
115
116 static inline int
117 svm_fifo_is_full (svm_fifo_t * f)
118 {
119   return (f->cursize == f->nitems);
120 }
121
122 static inline int
123 svm_fifo_is_empty (svm_fifo_t * f)
124 {
125   return (f->cursize == 0);
126 }
127
128 static inline u32
129 svm_fifo_max_enqueue (svm_fifo_t * f)
130 {
131   return f->nitems - svm_fifo_max_dequeue (f);
132 }
133
134 static inline int
135 svm_fifo_has_event (svm_fifo_t * f)
136 {
137   return f->has_event;
138 }
139
140 static inline u8
141 svm_fifo_has_ooo_data (svm_fifo_t * f)
142 {
143   return f->ooos_list_head != OOO_SEGMENT_INVALID_INDEX;
144 }
145
146 /**
147  * Sets fifo event flag.
148  *
149  * Also acts as a release barrier.
150  *
151  * @return 1 if flag was not set.
152  */
153 always_inline u8
154 svm_fifo_set_event (svm_fifo_t * f)
155 {
156   /* return __sync_lock_test_and_set (&f->has_event, 1) == 0;
157      return __sync_bool_compare_and_swap (&f->has_event, 0, 1); */
158   return !__atomic_exchange_n (&f->has_event, 1, __ATOMIC_RELEASE);
159 }
160
161 /**
162  * Unsets fifo event flag.
163  *
164  * Also acts as a release barrier.
165  */
166 always_inline void
167 svm_fifo_unset_event (svm_fifo_t * f)
168 {
169   __sync_lock_release (&f->has_event);
170 }
171
172 svm_fifo_t *svm_fifo_create (u32 data_size_in_bytes);
173 void svm_fifo_free (svm_fifo_t * f);
174
175 int svm_fifo_enqueue_nowait (svm_fifo_t * f, u32 max_bytes,
176                              const u8 * copy_from_here);
177 int svm_fifo_enqueue_with_offset (svm_fifo_t * f, u32 offset,
178                                   u32 required_bytes, u8 * copy_from_here);
179 int svm_fifo_dequeue_nowait (svm_fifo_t * f, u32 max_bytes, u8 * copy_here);
180
181 int svm_fifo_peek (svm_fifo_t * f, u32 offset, u32 max_bytes, u8 * copy_here);
182 int svm_fifo_dequeue_drop (svm_fifo_t * f, u32 max_bytes);
183 void svm_fifo_dequeue_drop_all (svm_fifo_t * f);
184 int svm_fifo_segments (svm_fifo_t * f, svm_fifo_segment_t * fs);
185 void svm_fifo_segments_free (svm_fifo_t * f, svm_fifo_segment_t * fs);
186 u32 svm_fifo_number_ooo_segments (svm_fifo_t * f);
187 ooo_segment_t *svm_fifo_first_ooo_segment (svm_fifo_t * f);
188 void svm_fifo_init_pointers (svm_fifo_t * f, u32 pointer);
189 void svm_fifo_overwrite_head (svm_fifo_t * f, u8 * data, u32 len);
190
191 format_function_t format_svm_fifo;
192
193 always_inline ooo_segment_t *
194 svm_fifo_newest_ooo_segment (svm_fifo_t * f)
195 {
196   if (f->ooos_newest == OOO_SEGMENT_INVALID_INDEX)
197     return 0;
198   return pool_elt_at_index (f->ooo_segments, f->ooos_newest);
199 }
200
201 always_inline void
202 svm_fifo_newest_ooo_segment_reset (svm_fifo_t * f)
203 {
204   f->ooos_newest = OOO_SEGMENT_INVALID_INDEX;
205 }
206
207 /**
208  * Max contiguous chunk of data that can be read
209  */
210 always_inline u32
211 svm_fifo_max_read_chunk (svm_fifo_t * f)
212 {
213   return ((f->tail > f->head) ? (f->tail - f->head) : (f->nitems - f->head));
214 }
215
216 /**
217  * Max contiguous chunk of data that can be written
218  */
219 always_inline u32
220 svm_fifo_max_write_chunk (svm_fifo_t * f)
221 {
222   return ((f->tail >= f->head) ? (f->nitems - f->tail) : (f->head - f->tail));
223 }
224
225 /**
226  * Advance tail pointer
227  *
228  * Useful for moving tail pointer after external enqueue.
229  */
230 always_inline void
231 svm_fifo_enqueue_nocopy (svm_fifo_t * f, u32 bytes)
232 {
233   ASSERT (bytes <= svm_fifo_max_enqueue (f));
234   f->tail = (f->tail + bytes) % f->nitems;
235   f->cursize += bytes;
236 }
237
238 always_inline u8 *
239 svm_fifo_head (svm_fifo_t * f)
240 {
241   return (f->data + f->head);
242 }
243
244 always_inline u8 *
245 svm_fifo_tail (svm_fifo_t * f)
246 {
247   return (f->data + f->tail);
248 }
249
250 always_inline u32
251 ooo_segment_distance_from_tail (svm_fifo_t * f, u32 pos)
252 {
253   /* Ambiguous. Assumption is that ooo segments don't touch tail */
254   if (PREDICT_FALSE (pos == f->tail && f->tail == f->head))
255     return f->nitems;
256
257   return (((f->nitems + pos) - f->tail) % f->nitems);
258 }
259
260 always_inline u32
261 ooo_segment_distance_to_tail (svm_fifo_t * f, u32 pos)
262 {
263   return (((f->nitems + f->tail) - pos) % f->nitems);
264 }
265
266 always_inline u32
267 ooo_segment_offset (svm_fifo_t * f, ooo_segment_t * s)
268 {
269   return ooo_segment_distance_from_tail (f, s->start);
270 }
271
272 always_inline u32
273 ooo_segment_end_offset (svm_fifo_t * f, ooo_segment_t * s)
274 {
275   return ooo_segment_distance_from_tail (f, s->start) + s->length;
276 }
277
278 always_inline u32
279 ooo_segment_length (svm_fifo_t * f, ooo_segment_t * s)
280 {
281   return s->length;
282 }
283
284 always_inline ooo_segment_t *
285 ooo_segment_get_prev (svm_fifo_t * f, ooo_segment_t * s)
286 {
287   if (s->prev == OOO_SEGMENT_INVALID_INDEX)
288     return 0;
289   return pool_elt_at_index (f->ooo_segments, s->prev);
290 }
291
292 always_inline ooo_segment_t *
293 ooo_segment_next (svm_fifo_t * f, ooo_segment_t * s)
294 {
295   if (s->next == OOO_SEGMENT_INVALID_INDEX)
296     return 0;
297   return pool_elt_at_index (f->ooo_segments, s->next);
298 }
299
300 #endif /* __included_ssvm_fifo_h__ */
301
302 /*
303  * fd.io coding-style-patch-verification: ON
304  *
305  * Local Variables:
306  * eval: (c-set-style "gnu")
307  * End:
308  */