Add counter for the number of barrier syncs performed.
[vpp.git] / vlib / vlib / threads.h
1 /*
2  * Copyright (c) 2015 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_vlib_threads_h
16 #define included_vlib_threads_h
17
18 #include <vlib/main.h>
19
20 vlib_main_t **vlib_mains;
21
22 void
23 vlib_set_thread_name (char *name);
24
25 /* arg is actually a vlib__thread_t * */
26 typedef void (vlib_thread_function_t) (void * arg);
27
28 typedef struct vlib_thread_registration_ {
29   /* constructor generated list of thread registrations */
30   struct vlib_thread_registration_ * next;
31
32   /* config parameters */
33   char * name;
34   char * short_name;
35   vlib_thread_function_t * function;
36   uword mheap_size;
37   int fixed_count;
38   u32 count;
39   int no_data_structure_clone;
40   /* All threads of this type run on pthreads */
41   int use_pthreads;
42   u32 first_index;
43   uword * coremask;
44 } vlib_thread_registration_t;
45
46 /*
47  * Frames have their cpu / vlib_main_t index in the low-order N bits
48  * Make VLIB_MAX_CPUS a power-of-two, please...
49  */
50
51 #define VLIB_MAX_CPUS 256
52
53 #if VLIB_MAX_CPUS > CLIB_MAX_MHEAPS
54 #error Please increase number of per-cpu mheaps
55 #endif
56
57 #define VLIB_CPU_MASK (VLIB_MAX_CPUS - 1) /* 0x3f, max */
58 #define VLIB_OFFSET_MASK (~VLIB_CPU_MASK)
59
60 #define VLIB_LOG2_THREAD_STACK_SIZE (20)
61 #define VLIB_THREAD_STACK_SIZE (1<<VLIB_LOG2_THREAD_STACK_SIZE)
62
63 typedef enum {
64     VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME,
65 } vlib_frame_queue_msg_type_t;
66
67 typedef struct {
68   volatile u32 valid;
69   u32 msg_type;         
70   u32 n_vectors;
71   u32 last_n_vectors;
72
73   /* 256 * 4 = 1024 bytes, even mult of cache line size */
74   u32 buffer_index[VLIB_FRAME_SIZE];
75
76   /* Pad to a cache line boundary */
77   u8 pad[CLIB_CACHE_LINE_BYTES - 4 * sizeof(u32)];
78 } vlib_frame_queue_elt_t;
79
80 typedef struct {
81   /* First cache line */
82   volatile u32 *wait_at_barrier;
83   volatile u32 *workers_at_barrier;
84   u8 pad0[CLIB_CACHE_LINE_BYTES - (2 * sizeof (u32 *))];
85
86   /* Second Cache Line */
87   void *thread_mheap;
88   u8 * thread_stack;
89   void (*thread_function)(void *);
90   void * thread_function_arg;
91   i64 recursion_level; 
92   elog_track_t elog_track; 
93   u32 instance_id;
94   vlib_thread_registration_t *registration;
95   u8 *name;
96   u64 barrier_sync_count;
97
98   long lwp;
99   int dpdk_lcore_id;
100 } vlib_worker_thread_t;
101
102 vlib_worker_thread_t *vlib_worker_threads;
103
104 typedef struct {
105   /* enqueue side */
106   volatile u64 tail;
107   u64 enqueues;
108   u64 enqueue_ticks;
109   u64 enqueue_vectors;
110   u32 enqueue_full_events;
111   u32 enqueue_efd_discards;
112   u8 pad2[CLIB_CACHE_LINE_BYTES 
113           - (2 * sizeof(u32))
114           - (4 * sizeof(u64))];
115
116   /* dequeue side */
117   volatile u64 head;
118   u64 dequeues;
119   u64 dequeue_ticks;
120   u64 dequeue_vectors;
121   u64 trace;
122   u64 vector_threshold;
123   u8 pad4[CLIB_CACHE_LINE_BYTES 
124           - (6 * sizeof(u64))];
125
126   /* dequeue hint to enqueue side */
127   volatile u64 head_hint;
128   u8 pad5 [CLIB_CACHE_LINE_BYTES - sizeof(u64)];
129
130   /* read-only, constant, shared */
131   vlib_frame_queue_elt_t *elts;
132   u32 nelts;
133 } vlib_frame_queue_t;
134
135 vlib_frame_queue_t **vlib_frame_queues;
136
137 /* Called early, in thread 0's context */
138 clib_error_t * vlib_thread_init (vlib_main_t * vm);
139
140 vlib_worker_thread_t * vlib_alloc_thread (vlib_main_t * vm);
141
142 int vlib_frame_queue_enqueue (vlib_main_t *vm, u32 node_runtime_index,
143                               u32 frame_queue_index, vlib_frame_t *frame,
144                               vlib_frame_queue_msg_type_t type);
145
146 int vlib_frame_queue_dequeue (int thread_id, 
147                               vlib_main_t *vm, 
148                               vlib_node_main_t *nm);
149
150 u64 dispatch_node (vlib_main_t * vm,
151                    vlib_node_runtime_t * node,
152                    vlib_node_type_t type,
153                    vlib_node_state_t dispatch_state,
154                    vlib_frame_t * frame,
155                    u64 last_time_stamp);
156
157 u64 dispatch_pending_node (vlib_main_t * vm,
158                            vlib_pending_frame_t * p,
159                            u64 last_time_stamp);
160
161 void vlib_worker_thread_node_runtime_update(void);
162
163 void vlib_create_worker_threads (vlib_main_t *vm, int n, 
164                                  void (*thread_function)(void *));
165
166 void vlib_worker_thread_init (vlib_worker_thread_t * w);
167
168 /* Check for a barrier sync request every 30ms */
169 #define BARRIER_SYNC_DELAY (0.030000)
170
171 #if CLIB_DEBUG > 0
172 /* long barrier timeout, for gdb... */
173 #define BARRIER_SYNC_TIMEOUT (600.1)
174 #else
175 #define BARRIER_SYNC_TIMEOUT (1.0)
176 #endif
177
178 void vlib_worker_thread_barrier_sync(vlib_main_t *vm);
179 void vlib_worker_thread_barrier_release(vlib_main_t *vm);
180
181 always_inline void vlib_smp_unsafe_warning (void)
182 {
183   if (CLIB_DEBUG > 0)
184     {
185       if (os_get_cpu_number())
186         fformat(stderr, "%s: SMP unsafe warning...\n", __FUNCTION__);
187     }
188 }
189
190 typedef enum {
191     VLIB_WORKER_THREAD_FORK_FIXUP_ILLEGAL = 0,
192     VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX,
193 } vlib_fork_fixup_t;
194
195 void vlib_worker_thread_fork_fixup (vlib_fork_fixup_t which);
196
197 static inline void vlib_worker_thread_barrier_check (void)
198 {
199     if (PREDICT_FALSE(*vlib_worker_threads->wait_at_barrier))
200     {
201         clib_smp_atomic_add (vlib_worker_threads->workers_at_barrier, 1);
202         while (*vlib_worker_threads->wait_at_barrier)
203             ;
204         clib_smp_atomic_add (vlib_worker_threads->workers_at_barrier, -1);
205     }
206 }
207
208 #define foreach_vlib_main(body)                                         \
209 do {                                                                    \
210     vlib_main_t ** __vlib_mains = 0, *this_vlib_main;                   \
211     int ii;                                                             \
212                                                                         \
213     if (vec_len (vlib_mains) == 0)                                      \
214         vec_add1 (__vlib_mains, &vlib_global_main);                     \
215     else                                                                \
216     {                                                                   \
217         for (ii = 0; ii < vec_len (vlib_mains); ii++)                   \
218         {                                                               \
219             this_vlib_main = vlib_mains[ii];                            \
220             if (this_vlib_main)                                         \
221                 vec_add1 (__vlib_mains, this_vlib_main);                \
222         }                                                               \
223     }                                                                   \
224                                                                         \
225     for (ii = 0; ii < vec_len (__vlib_mains); ii++)                     \
226     {                                                                   \
227         this_vlib_main = __vlib_mains[ii];                              \
228         /* body uses this_vlib_main... */                               \
229         (body);                                                         \
230     }                                                                   \
231     vec_free (__vlib_mains);                                            \
232 } while (0);
233
234
235 /* Early-Fast-Discard (EFD) */
236 #define VLIB_EFD_DISABLED                   0
237 #define VLIB_EFD_DISCARD_ENABLED            (1 << 0)
238 #define VLIB_EFD_MONITOR_ENABLED            (1 << 1)
239
240 #define VLIB_EFD_DEF_WORKER_HI_THRESH_PCT   90
241
242 /* EFD worker thread settings */
243 typedef struct vlib_efd_t {
244   u16 enabled;
245   u16 queue_hi_thresh;
246   u8  ip_prec_bitmap;
247   u8  mpls_exp_bitmap;
248   u8  vlan_cos_bitmap;
249   u8  pad;
250 } vlib_efd_t;
251
252 typedef struct {
253   /* Link list of registrations, built by constructors */
254   vlib_thread_registration_t * next;
255   
256   /* Vector of registrations, w/ non-data-structure clones at the top */
257   vlib_thread_registration_t ** registrations;
258
259   uword * thread_registrations_by_name;
260
261   vlib_worker_thread_t * worker_threads;
262
263   /* thread / cpu / io thread parameters */
264   u32 main_thread_is_io_node;
265
266   /* 
267    * Launch all threads as pthreads, 
268    * not eal_rte_launch (strict affinity) threads 
269    */
270   int use_pthreads;
271
272   /* Number of vlib_main / vnet_main clones */
273   u32 n_vlib_mains;
274
275   /* Number of thread stacks to create */
276   u32 n_thread_stacks;
277
278   /* Number of pthreads */
279   u32 n_pthreads;
280
281   /* Number of DPDK eal threads */
282   u32 n_eal_threads;
283
284   /* Number of cores to skip, must match the core mask */
285   u32 skip_cores;
286
287   /* Thread prefix name */
288   u8 *thread_prefix;
289
290   /* main thread lcore */
291   u8 main_lcore;
292
293   /* Bitmap of available CPU cores */
294   uword * cpu_core_bitmap;
295
296   /* Bitmap of available CPU sockets (NUMA nodes) */
297   uword * cpu_socket_bitmap;
298
299   vlib_efd_t efd;
300   
301 } vlib_thread_main_t;
302
303 vlib_thread_main_t vlib_thread_main;
304
305 #define VLIB_REGISTER_THREAD(x,...)                     \
306   __VA_ARGS__ vlib_thread_registration_t x;             \
307 static void __vlib_add_thread_registration_##x (void)   \
308   __attribute__((__constructor__)) ;                    \
309 static void __vlib_add_thread_registration_##x (void)   \
310 {                                                       \
311   vlib_thread_main_t * tm = &vlib_thread_main;          \
312   x.next = tm->next;                                    \
313   tm->next = &x;                                        \
314 }                                                       \
315 __VA_ARGS__ vlib_thread_registration_t x 
316
317 #endif /* included_vlib_threads_h */