FD.io VPP  v18.07-rc0-415-g6c78436
Vector Packet Processing
svm_fifo.h
Go to the documentation of this file.
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 */
35 
38 
39 #define SVM_FIFO_TRACE (0)
40 #define OOO_SEGMENT_INVALID_INDEX ((u32)~0)
41 
42 typedef struct
43 {
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
77 #endif
78  u32 freelist_index; /**< aka log2(allocated_size) - const. */
79  i8 refcnt; /**< reference count */
81 } svm_fifo_t;
82 
83 typedef enum
84 {
87 
88 #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 
101 u8 *svm_fifo_dump_trace (u8 * s, svm_fifo_t * f);
102 u8 *svm_fifo_replay (u8 * s, svm_fifo_t * f, u8 no_read, u8 verbose);
103 
104 static inline u32
106 {
107  return f->cursize;
108 }
109 
110 static inline u32
112 {
113  return f->nitems - svm_fifo_max_dequeue (f);
114 }
115 
116 static inline u8
118 {
119  return f->ooos_list_head != OOO_SEGMENT_INVALID_INDEX;
120 }
121 
122 /**
123  * Sets fifo event flag.
124  *
125  * @return 1 if flag was not set.
126  */
129 {
130  /* Probably doesn't need to be atomic. Still, better avoid surprises */
131  return __sync_lock_test_and_set (&f->has_event, 1) == 0;
132 }
133 
134 /**
135  * Unsets fifo event flag.
136  */
137 always_inline void
139 {
140  /* Probably doesn't need to be atomic. Still, better avoid surprises */
141  __sync_lock_release (&f->has_event);
142 }
143 
144 svm_fifo_t *svm_fifo_create (u32 data_size_in_bytes);
145 void svm_fifo_free (svm_fifo_t * f);
146 
147 int svm_fifo_enqueue_nowait (svm_fifo_t * f, u32 max_bytes,
148  const u8 * copy_from_here);
150  u32 required_bytes, u8 * copy_from_here);
151 int svm_fifo_dequeue_nowait (svm_fifo_t * f, u32 max_bytes, u8 * copy_here);
152 
153 int svm_fifo_peek (svm_fifo_t * f, u32 offset, u32 max_bytes, u8 * copy_here);
154 int svm_fifo_dequeue_drop (svm_fifo_t * f, u32 max_bytes);
158 void svm_fifo_init_pointers (svm_fifo_t * f, u32 pointer);
159 void svm_fifo_overwrite_head (svm_fifo_t * f, u8 * data, u32 len);
160 
162 
165 {
166  if (f->ooos_newest == OOO_SEGMENT_INVALID_INDEX)
167  return 0;
168  return pool_elt_at_index (f->ooo_segments, f->ooos_newest);
169 }
170 
171 always_inline void
173 {
174  f->ooos_newest = OOO_SEGMENT_INVALID_INDEX;
175 }
176 
177 /**
178  * Max contiguous chunk of data that can be read
179  */
182 {
183  return ((f->tail > f->head) ? (f->tail - f->head) : (f->nitems - f->head));
184 }
185 
186 /**
187  * Max contiguous chunk of data that can be written
188  */
191 {
192  return ((f->tail >= f->head) ? (f->nitems - f->tail) : (f->head - f->tail));
193 }
194 
195 /**
196  * Advance tail pointer
197  *
198  * Useful for moving tail pointer after external enqueue.
199  */
200 always_inline void
202 {
203  ASSERT (bytes <= svm_fifo_max_enqueue (f));
204  f->tail = (f->tail + bytes) % f->nitems;
205  f->cursize += bytes;
206 }
207 
210 {
211  return (f->data + f->head);
212 }
213 
216 {
217  return (f->data + f->tail);
218 }
219 
222 {
223  /* Ambiguous. Assumption is that ooo segments don't touch tail */
224  if (PREDICT_FALSE (pos == f->tail && f->tail == f->head))
225  return f->nitems;
226 
227  return (((f->nitems + pos) - f->tail) % f->nitems);
228 }
229 
232 {
233  return (((f->nitems + f->tail) - pos) % f->nitems);
234 }
235 
238 {
239  return ooo_segment_distance_from_tail (f, s->start);
240 }
241 
244 {
245  return ooo_segment_distance_from_tail (f, s->start) + s->length;
246 }
247 
250 {
251  return s->length;
252 }
253 
256 {
258  return 0;
259  return pool_elt_at_index (f->ooo_segments, s->prev);
260 }
261 
264 {
266  return 0;
267  return pool_elt_at_index (f->ooo_segments, s->next);
268 }
269 
270 #endif /* __included_ssvm_fifo_h__ */
271 
272 /*
273  * fd.io coding-style-patch-verification: ON
274  *
275  * Local Variables:
276  * eval: (c-set-style "gnu")
277  * End:
278  */
int svm_fifo_dequeue_drop(svm_fifo_t *f, u32 max_bytes)
Definition: svm_fifo.c:792
static vlib_cli_command_t trace
(constructor) VLIB_CLI_COMMAND (trace)
Definition: vlib_api_cli.c:862
#define CLIB_CACHE_LINE_ALIGN_MARK(mark)
Definition: cache.h:63
format_function_t format_ooo_segment
Definition: svm_fifo.h:36
u8 * svm_fifo_replay(u8 *s, svm_fifo_t *f, u8 no_read, u8 verbose)
Definition: svm_fifo.c:90
static u8 svm_fifo_has_ooo_data(svm_fifo_t *f)
Definition: svm_fifo.h:117
format_function_t format_svm_fifo
Definition: svm_fifo.h:161
Fixed length block allocator.
u32 prev
Previous linked-list element pool index.
Definition: svm_fifo.h:30
static u32 svm_fifo_max_enqueue(svm_fifo_t *f)
Definition: svm_fifo.h:111
u8 *( format_function_t)(u8 *s, va_list *args)
Definition: format.h:48
svm_fifo_t * svm_fifo_create(u32 data_size_in_bytes)
create an svm fifo, in the current heap.
Definition: svm_fifo.c:198
static u8 * svm_fifo_tail(svm_fifo_t *f)
Definition: svm_fifo.h:215
unsigned char u8
Definition: types.h:56
static u32 ooo_segment_distance_from_tail(svm_fifo_t *f, u32 pos)
Definition: svm_fifo.h:221
struct _svm_fifo svm_fifo_t
static void svm_fifo_enqueue_nocopy(svm_fifo_t *f, u32 bytes)
Advance tail pointer.
Definition: svm_fifo.h:201
static u32 ooo_segment_end_offset(svm_fifo_t *f, ooo_segment_t *s)
Definition: svm_fifo.h:243
#define always_inline
Definition: clib.h:92
static u32 svm_fifo_max_dequeue(svm_fifo_t *f)
Definition: svm_fifo.h:105
static u32 svm_fifo_max_write_chunk(svm_fifo_t *f)
Max contiguous chunk of data that can be written.
Definition: svm_fifo.h:190
static u32 ooo_segment_length(svm_fifo_t *f, ooo_segment_t *s)
Definition: svm_fifo.h:249
u8 * svm_fifo_dump_trace(u8 *s, svm_fifo_t *f)
Definition: svm_fifo.c:66
int svm_fifo_dequeue_nowait(svm_fifo_t *f, u32 max_bytes, u8 *copy_here)
Definition: svm_fifo.c:710
unsigned int u32
Definition: types.h:88
static u8 * svm_fifo_head(svm_fifo_t *f)
Definition: svm_fifo.h:209
static u32 svm_fifo_max_read_chunk(svm_fifo_t *f)
Max contiguous chunk of data that can be read.
Definition: svm_fifo.h:181
static void svm_fifo_newest_ooo_segment_reset(svm_fifo_t *f)
Definition: svm_fifo.h:172
void svm_fifo_overwrite_head(svm_fifo_t *f, u8 *data, u32 len)
Definition: svm_fifo.c:623
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:461
void svm_fifo_dequeue_drop_all(svm_fifo_t *f)
Definition: svm_fifo.c:832
static u32 ooo_segment_offset(svm_fifo_t *f, ooo_segment_t *s)
Definition: svm_fifo.h:237
#define PREDICT_FALSE(x)
Definition: clib.h:105
static ooo_segment_t * ooo_segment_next(svm_fifo_t *f, ooo_segment_t *s)
Definition: svm_fifo.h:263
static void svm_fifo_unset_event(svm_fifo_t *f)
Unsets fifo event flag.
Definition: svm_fifo.h:138
signed char i8
Definition: types.h:45
static ooo_segment_t * svm_fifo_newest_ooo_segment(svm_fifo_t *f)
Definition: svm_fifo.h:164
static u8 svm_fifo_set_event(svm_fifo_t *f)
Sets fifo event flag.
Definition: svm_fifo.h:128
format_function_t format_ooo_list
Definition: svm_fifo.h:37
int svm_fifo_enqueue_nowait(svm_fifo_t *f, u32 max_bytes, const u8 *copy_from_here)
Definition: svm_fifo.c:538
static ooo_segment_t * ooo_segment_get_prev(svm_fifo_t *f, ooo_segment_t *s)
Definition: svm_fifo.h:255
#define OOO_SEGMENT_INVALID_INDEX
Definition: svm_fifo.h:40
void svm_fifo_init_pointers(svm_fifo_t *f, u32 pointer)
Set fifo pointers to requested offset.
Definition: svm_fifo.c:854
#define ASSERT(truth)
void svm_fifo_free(svm_fifo_t *f)
Definition: svm_fifo.c:218
Out-of-order segment.
Definition: svm_fifo.h:27
u32 length
Length of segment.
Definition: svm_fifo.h:33
u32 next
Next linked-list element pool index.
Definition: svm_fifo.h:29
template key/value backing page structure
Definition: bihash_doc.h:44
int svm_fifo_peek(svm_fifo_t *f, u32 offset, u32 max_bytes, u8 *copy_here)
Definition: svm_fifo.c:776
u32 svm_fifo_number_ooo_segments(svm_fifo_t *f)
Definition: svm_fifo.c:839
svm_fifo_err_t
Definition: svm_fifo.h:83
u32 start
Start of segment, normalized.
Definition: svm_fifo.h:32
ooo_segment_t * svm_fifo_first_ooo_segment(svm_fifo_t *f)
Definition: svm_fifo.c:845
int svm_fifo_enqueue_with_offset(svm_fifo_t *f, u32 offset, u32 required_bytes, u8 *copy_from_here)
Definition: svm_fifo.c:614
CLIB vectors are ubiquitous dynamically resized arrays with by user defined "headers".
static u32 ooo_segment_distance_to_tail(svm_fifo_t *f, u32 pos)
Definition: svm_fifo.h:231