vlib: introduce vlib_get_elog_main()
[vpp.git] / src / 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 #include <vppinfra/callback.h>
20 #include <linux/sched.h>
21
22 extern vlib_main_t **vlib_mains;
23
24 void vlib_set_thread_name (char *name);
25
26 /* arg is actually a vlib__thread_t * */
27 typedef void (vlib_thread_function_t) (void *arg);
28
29 typedef struct vlib_thread_registration_
30 {
31   /* constructor generated list of thread registrations */
32   struct vlib_thread_registration_ *next;
33
34   /* config parameters */
35   char *name;
36   char *short_name;
37   vlib_thread_function_t *function;
38   uword mheap_size;
39   int fixed_count;
40   u32 count;
41   int no_data_structure_clone;
42   u32 frame_queue_nelts;
43
44   /* All threads of this type run on pthreads */
45   int use_pthreads;
46   u32 first_index;
47   uword *coremask;
48 } vlib_thread_registration_t;
49
50 /*
51  * Frames have their cpu / vlib_main_t index in the low-order N bits
52  * Make VLIB_MAX_CPUS a power-of-two, please...
53  */
54
55 #ifndef VLIB_MAX_CPUS
56 #define VLIB_MAX_CPUS 256
57 #endif
58
59 #if VLIB_MAX_CPUS > CLIB_MAX_MHEAPS
60 #error Please increase number of per-cpu mheaps
61 #endif
62
63 #define VLIB_CPU_MASK (VLIB_MAX_CPUS - 1)       /* 0x3f, max */
64 #define VLIB_OFFSET_MASK (~VLIB_CPU_MASK)
65
66 #define VLIB_LOG2_THREAD_STACK_SIZE (21)
67 #define VLIB_THREAD_STACK_SIZE (1<<VLIB_LOG2_THREAD_STACK_SIZE)
68
69 typedef enum
70 {
71   VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME,
72 } vlib_frame_queue_msg_type_t;
73
74 typedef struct
75 {
76   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
77   volatile u32 valid;
78   u32 msg_type;
79   u32 n_vectors;
80   u32 last_n_vectors;
81
82   /* 256 * 4 = 1024 bytes, even mult of cache line size */
83   u32 buffer_index[VLIB_FRAME_SIZE];
84 }
85 vlib_frame_queue_elt_t;
86
87 typedef struct
88 {
89   /* First cache line */
90   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
91   volatile u32 *wait_at_barrier;
92   volatile u32 *workers_at_barrier;
93
94   /* Second Cache Line */
95     CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
96   void *thread_mheap;
97   u8 *thread_stack;
98   void (*thread_function) (void *);
99   void *thread_function_arg;
100   i64 recursion_level;
101   elog_track_t elog_track;
102   u32 instance_id;
103   vlib_thread_registration_t *registration;
104   u8 *name;
105   u64 barrier_sync_count;
106   u8 barrier_elog_enabled;
107   const char *barrier_caller;
108   const char *barrier_context;
109   volatile u32 *node_reforks_required;
110
111   long lwp;
112   int cpu_id;
113   int core_id;
114   int numa_id;
115   pthread_t thread_id;
116 } vlib_worker_thread_t;
117
118 extern vlib_worker_thread_t *vlib_worker_threads;
119
120 typedef struct
121 {
122   /* enqueue side */
123   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
124   volatile u64 tail;
125   u64 enqueues;
126   u64 enqueue_ticks;
127   u64 enqueue_vectors;
128   u32 enqueue_full_events;
129
130   /* dequeue side */
131     CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
132   volatile u64 head;
133   u64 dequeues;
134   u64 dequeue_ticks;
135   u64 dequeue_vectors;
136   u64 trace;
137   u64 vector_threshold;
138
139   /* dequeue hint to enqueue side */
140     CLIB_CACHE_LINE_ALIGN_MARK (cacheline2);
141   volatile u64 head_hint;
142
143   /* read-only, constant, shared */
144     CLIB_CACHE_LINE_ALIGN_MARK (cacheline3);
145   vlib_frame_queue_elt_t *elts;
146   u32 nelts;
147 }
148 vlib_frame_queue_t;
149
150 typedef struct
151 {
152   vlib_frame_queue_elt_t **handoff_queue_elt_by_thread_index;
153   vlib_frame_queue_t **congested_handoff_queue_by_thread_index;
154 } vlib_frame_queue_per_thread_data_t;
155
156 typedef struct
157 {
158   u32 node_index;
159   u32 frame_queue_nelts;
160   u32 queue_hi_thresh;
161
162   vlib_frame_queue_t **vlib_frame_queues;
163   vlib_frame_queue_per_thread_data_t *per_thread_data;
164
165   /* for frame queue tracing */
166   frame_queue_trace_t *frame_queue_traces;
167   frame_queue_nelt_counter_t *frame_queue_histogram;
168 } vlib_frame_queue_main_t;
169
170 typedef struct
171 {
172   uword node_index;
173   uword type_opaque;
174   uword data;
175 } vlib_process_signal_event_mt_args_t;
176
177 /* Called early, in thread 0's context */
178 clib_error_t *vlib_thread_init (vlib_main_t * vm);
179
180 int vlib_frame_queue_enqueue (vlib_main_t * vm, u32 node_runtime_index,
181                               u32 frame_queue_index, vlib_frame_t * frame,
182                               vlib_frame_queue_msg_type_t type);
183
184 int
185 vlib_frame_queue_dequeue (vlib_main_t * vm, vlib_frame_queue_main_t * fqm);
186
187 void vlib_worker_thread_node_runtime_update (void);
188
189 void vlib_create_worker_threads (vlib_main_t * vm, int n,
190                                  void (*thread_function) (void *));
191
192 void vlib_worker_thread_init (vlib_worker_thread_t * w);
193 u32 vlib_frame_queue_main_init (u32 node_index, u32 frame_queue_nelts);
194
195 /* Check for a barrier sync request every 30ms */
196 #define BARRIER_SYNC_DELAY (0.030000)
197
198 #if CLIB_DEBUG > 0
199 /* long barrier timeout, for gdb... */
200 #define BARRIER_SYNC_TIMEOUT (600.1)
201 #else
202 #define BARRIER_SYNC_TIMEOUT (1.0)
203 #endif
204
205 #define vlib_worker_thread_barrier_sync(X) {vlib_worker_thread_barrier_sync_int(X, __FUNCTION__);}
206
207 void vlib_worker_thread_barrier_sync_int (vlib_main_t * vm,
208                                           const char *func_name);
209 void vlib_worker_thread_barrier_release (vlib_main_t * vm);
210 u8 vlib_worker_thread_barrier_held (void);
211 void vlib_worker_thread_initial_barrier_sync_and_release (vlib_main_t * vm);
212 void vlib_worker_thread_node_refork (void);
213 /**
214  * Wait until each of the workers has been once around the track
215  */
216 void vlib_worker_wait_one_loop (void);
217
218 static_always_inline uword
219 vlib_get_thread_index (void)
220 {
221   return __os_thread_index;
222 }
223
224 always_inline void
225 vlib_smp_unsafe_warning (void)
226 {
227   if (CLIB_DEBUG > 0)
228     {
229       if (vlib_get_thread_index ())
230         fformat (stderr, "%s: SMP unsafe warning...\n", __FUNCTION__);
231     }
232 }
233
234 typedef enum
235 {
236   VLIB_WORKER_THREAD_FORK_FIXUP_ILLEGAL = 0,
237   VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX,
238 } vlib_fork_fixup_t;
239
240 void vlib_worker_thread_fork_fixup (vlib_fork_fixup_t which);
241
242 #define foreach_vlib_main(body)                         \
243 do {                                                    \
244   vlib_main_t ** __vlib_mains = 0, *this_vlib_main;     \
245   int ii;                                               \
246                                                         \
247   for (ii = 0; ii < vec_len (vlib_mains); ii++)         \
248     {                                                   \
249       this_vlib_main = vlib_mains[ii];                  \
250       ASSERT (ii == 0 ||                                \
251               this_vlib_main->parked_at_barrier == 1);  \
252       if (this_vlib_main)                               \
253         vec_add1 (__vlib_mains, this_vlib_main);        \
254     }                                                   \
255                                                         \
256   for (ii = 0; ii < vec_len (__vlib_mains); ii++)       \
257     {                                                   \
258       this_vlib_main = __vlib_mains[ii];                \
259       /* body uses this_vlib_main... */                 \
260       (body);                                           \
261     }                                                   \
262   vec_free (__vlib_mains);                              \
263 } while (0);
264
265 #define foreach_sched_policy \
266   _(SCHED_OTHER, OTHER, "other") \
267   _(SCHED_BATCH, BATCH, "batch") \
268   _(SCHED_IDLE, IDLE, "idle")   \
269   _(SCHED_FIFO, FIFO, "fifo")   \
270   _(SCHED_RR, RR, "rr")
271
272 typedef enum
273 {
274 #define _(v,f,s) SCHED_POLICY_##f = v,
275   foreach_sched_policy
276 #undef _
277     SCHED_POLICY_N,
278 } sched_policy_t;
279
280 typedef struct
281 {
282   clib_error_t *(*vlib_launch_thread_cb) (void *fp, vlib_worker_thread_t * w,
283                                           unsigned cpu_id);
284   clib_error_t *(*vlib_thread_set_lcore_cb) (u32 thread, u16 cpu);
285 } vlib_thread_callbacks_t;
286
287 typedef struct
288 {
289   /* Link list of registrations, built by constructors */
290   vlib_thread_registration_t *next;
291
292   /* Vector of registrations, w/ non-data-structure clones at the top */
293   vlib_thread_registration_t **registrations;
294
295   uword *thread_registrations_by_name;
296
297   vlib_worker_thread_t *worker_threads;
298
299   /*
300    * Launch all threads as pthreads,
301    * not eal_rte_launch (strict affinity) threads
302    */
303   int use_pthreads;
304
305   /* Number of vlib_main / vnet_main clones */
306   u32 n_vlib_mains;
307
308   /* Number of thread stacks to create */
309   u32 n_thread_stacks;
310
311   /* Number of pthreads */
312   u32 n_pthreads;
313
314   /* Number of threads */
315   u32 n_threads;
316
317   /* Number of cores to skip, must match the core mask */
318   u32 skip_cores;
319
320   /* Thread prefix name */
321   u8 *thread_prefix;
322
323   /* main thread lcore */
324   u32 main_lcore;
325
326   /* Bitmap of available CPU cores */
327   uword *cpu_core_bitmap;
328
329   /* Bitmap of available CPU sockets (NUMA nodes) */
330   uword *cpu_socket_bitmap;
331
332   /* Worker handoff queues */
333   vlib_frame_queue_main_t *frame_queue_mains;
334
335   /* worker thread initialization barrier */
336   volatile u32 worker_thread_release;
337
338   /* scheduling policy */
339   u32 sched_policy;
340
341   /* scheduling policy priority */
342   u32 sched_priority;
343
344   /* callbacks */
345   vlib_thread_callbacks_t cb;
346   int extern_thread_mgmt;
347
348   /* NUMA-bound heap size */
349   uword numa_heap_size;
350
351 } vlib_thread_main_t;
352
353 extern vlib_thread_main_t vlib_thread_main;
354
355 #include <vlib/global_funcs.h>
356
357 #define VLIB_REGISTER_THREAD(x,...)                     \
358   __VA_ARGS__ vlib_thread_registration_t x;             \
359 static void __vlib_add_thread_registration_##x (void)   \
360   __attribute__((__constructor__)) ;                    \
361 static void __vlib_add_thread_registration_##x (void)   \
362 {                                                       \
363   vlib_thread_main_t * tm = &vlib_thread_main;          \
364   x.next = tm->next;                                    \
365   tm->next = &x;                                        \
366 }                                                       \
367 static void __vlib_rm_thread_registration_##x (void)    \
368   __attribute__((__destructor__)) ;                     \
369 static void __vlib_rm_thread_registration_##x (void)    \
370 {                                                       \
371   vlib_thread_main_t * tm = &vlib_thread_main;          \
372   VLIB_REMOVE_FROM_LINKED_LIST (tm->next, &x, next);    \
373 }                                                       \
374 __VA_ARGS__ vlib_thread_registration_t x
375
376 always_inline u32
377 vlib_num_workers ()
378 {
379   return vlib_thread_main.n_vlib_mains - 1;
380 }
381
382 always_inline u32
383 vlib_get_worker_thread_index (u32 worker_index)
384 {
385   return worker_index + 1;
386 }
387
388 always_inline u32
389 vlib_get_worker_index (u32 thread_index)
390 {
391   return thread_index - 1;
392 }
393
394 always_inline u32
395 vlib_get_current_worker_index ()
396 {
397   return vlib_get_thread_index () - 1;
398 }
399
400 static inline void
401 vlib_worker_thread_barrier_check (void)
402 {
403   if (PREDICT_FALSE (*vlib_worker_threads->wait_at_barrier))
404     {
405       vlib_main_t *vm = vlib_get_main ();
406       u32 thread_index = vm->thread_index;
407       f64 t = vlib_time_now (vm);
408
409       if (PREDICT_FALSE (vec_len (vm->barrier_perf_callbacks) != 0))
410         clib_call_callbacks (vm->barrier_perf_callbacks, vm,
411                              vm->clib_time.last_cpu_time, 0 /* enter */ );
412
413       if (PREDICT_FALSE (vlib_worker_threads->barrier_elog_enabled))
414         {
415           vlib_worker_thread_t *w = vlib_worker_threads + thread_index;
416           /* *INDENT-OFF* */
417           ELOG_TYPE_DECLARE (e) = {
418             .format = "barrier-wait-thread-%d",
419             .format_args = "i4",
420           };
421           /* *INDENT-ON* */
422
423           struct
424           {
425             u32 thread_index;
426           } __clib_packed *ed;
427
428           ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e, w->elog_track);
429           ed->thread_index = thread_index;
430         }
431
432       if (CLIB_DEBUG > 0)
433         {
434           vm = vlib_get_main ();
435           vm->parked_at_barrier = 1;
436         }
437       clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, 1);
438       while (*vlib_worker_threads->wait_at_barrier)
439         ;
440
441       /*
442        * Recompute the offset from thread-0 time.
443        * Note that vlib_time_now adds vm->time_offset, so
444        * clear it first. Save the resulting idea of "now", to
445        * see how well we're doing. See show_clock_command_fn(...)
446        */
447       {
448         f64 now;
449         vm->time_offset = 0.0;
450         now = vlib_time_now (vm);
451         vm->time_offset = vlib_global_main.time_last_barrier_release - now;
452         vm->time_last_barrier_release = vlib_time_now (vm);
453       }
454
455       if (CLIB_DEBUG > 0)
456         vm->parked_at_barrier = 0;
457       clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, -1);
458
459       if (PREDICT_FALSE (*vlib_worker_threads->node_reforks_required))
460         {
461           if (PREDICT_FALSE (vlib_worker_threads->barrier_elog_enabled))
462             {
463               t = vlib_time_now (vm) - t;
464               vlib_worker_thread_t *w = vlib_worker_threads + thread_index;
465               /* *INDENT-OFF* */
466               ELOG_TYPE_DECLARE (e) = {
467                 .format = "barrier-refork-thread-%d",
468                 .format_args = "i4",
469               };
470               /* *INDENT-ON* */
471
472               struct
473               {
474                 u32 thread_index;
475               } __clib_packed *ed;
476
477               ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
478                                     w->elog_track);
479               ed->thread_index = thread_index;
480             }
481
482           vlib_worker_thread_node_refork ();
483           clib_atomic_fetch_add (vlib_worker_threads->node_reforks_required,
484                                  -1);
485           while (*vlib_worker_threads->node_reforks_required)
486             ;
487         }
488       if (PREDICT_FALSE (vlib_worker_threads->barrier_elog_enabled))
489         {
490           t = vlib_time_now (vm) - t;
491           vlib_worker_thread_t *w = vlib_worker_threads + thread_index;
492           /* *INDENT-OFF* */
493           ELOG_TYPE_DECLARE (e) = {
494             .format = "barrier-released-thread-%d: %dus",
495             .format_args = "i4i4",
496           };
497           /* *INDENT-ON* */
498
499           struct
500           {
501             u32 thread_index;
502             u32 duration;
503           } __clib_packed *ed;
504
505           ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e, w->elog_track);
506           ed->thread_index = thread_index;
507           ed->duration = (int) (1000000.0 * t);
508         }
509
510       if (PREDICT_FALSE (vec_len (vm->barrier_perf_callbacks) != 0))
511         clib_call_callbacks (vm->barrier_perf_callbacks, vm,
512                              vm->clib_time.last_cpu_time, 1 /* leave */ );
513     }
514 }
515
516 always_inline vlib_main_t *
517 vlib_get_worker_vlib_main (u32 worker_index)
518 {
519   vlib_main_t *vm;
520   vlib_thread_main_t *tm = &vlib_thread_main;
521   ASSERT (worker_index < tm->n_vlib_mains - 1);
522   vm = vlib_get_main_by_index (worker_index + 1);
523   ASSERT (vm);
524   return vm;
525 }
526
527 static inline u8
528 vlib_thread_is_main_w_barrier (void)
529 {
530   return (!vlib_num_workers ()
531           || ((vlib_get_thread_index () == 0
532                && vlib_worker_threads->wait_at_barrier[0])));
533 }
534
535 static inline void
536 vlib_put_frame_queue_elt (vlib_frame_queue_elt_t * hf)
537 {
538   CLIB_MEMORY_BARRIER ();
539   hf->valid = 1;
540 }
541
542 static inline vlib_frame_queue_elt_t *
543 vlib_get_frame_queue_elt (u32 frame_queue_index, u32 index)
544 {
545   vlib_frame_queue_t *fq;
546   vlib_frame_queue_elt_t *elt;
547   vlib_thread_main_t *tm = &vlib_thread_main;
548   vlib_frame_queue_main_t *fqm =
549     vec_elt_at_index (tm->frame_queue_mains, frame_queue_index);
550   u64 new_tail;
551
552   fq = fqm->vlib_frame_queues[index];
553   ASSERT (fq);
554
555   new_tail = clib_atomic_add_fetch (&fq->tail, 1);
556
557   /* Wait until a ring slot is available */
558   while (new_tail >= fq->head_hint + fq->nelts)
559     vlib_worker_thread_barrier_check ();
560
561   elt = fq->elts + (new_tail & (fq->nelts - 1));
562
563   /* this would be very bad... */
564   while (elt->valid)
565     ;
566
567   elt->msg_type = VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME;
568   elt->last_n_vectors = elt->n_vectors = 0;
569
570   return elt;
571 }
572
573 static inline vlib_frame_queue_t *
574 is_vlib_frame_queue_congested (u32 frame_queue_index,
575                                u32 index,
576                                u32 queue_hi_thresh,
577                                vlib_frame_queue_t **
578                                handoff_queue_by_worker_index)
579 {
580   vlib_frame_queue_t *fq;
581   vlib_thread_main_t *tm = &vlib_thread_main;
582   vlib_frame_queue_main_t *fqm =
583     vec_elt_at_index (tm->frame_queue_mains, frame_queue_index);
584
585   fq = handoff_queue_by_worker_index[index];
586   if (fq != (vlib_frame_queue_t *) (~0))
587     return fq;
588
589   fq = fqm->vlib_frame_queues[index];
590   ASSERT (fq);
591
592   if (PREDICT_FALSE (fq->tail >= (fq->head_hint + queue_hi_thresh)))
593     {
594       /* a valid entry in the array will indicate the queue has reached
595        * the specified threshold and is congested
596        */
597       handoff_queue_by_worker_index[index] = fq;
598       fq->enqueue_full_events++;
599       return fq;
600     }
601
602   return NULL;
603 }
604
605 static inline vlib_frame_queue_elt_t *
606 vlib_get_worker_handoff_queue_elt (u32 frame_queue_index,
607                                    u32 vlib_worker_index,
608                                    vlib_frame_queue_elt_t **
609                                    handoff_queue_elt_by_worker_index)
610 {
611   vlib_frame_queue_elt_t *elt;
612
613   if (handoff_queue_elt_by_worker_index[vlib_worker_index])
614     return handoff_queue_elt_by_worker_index[vlib_worker_index];
615
616   elt = vlib_get_frame_queue_elt (frame_queue_index, vlib_worker_index);
617
618   handoff_queue_elt_by_worker_index[vlib_worker_index] = elt;
619
620   return elt;
621 }
622
623 u8 *vlib_thread_stack_init (uword thread_index);
624 int vlib_thread_cb_register (struct vlib_main_t *vm,
625                              vlib_thread_callbacks_t * cb);
626 extern void *rpc_call_main_thread_cb_fn;
627
628 void
629 vlib_process_signal_event_mt_helper (vlib_process_signal_event_mt_args_t *
630                                      args);
631 void vlib_rpc_call_main_thread (void *function, u8 * args, u32 size);
632 void vlib_get_thread_core_numa (vlib_worker_thread_t * w, unsigned cpu_id);
633 vlib_thread_main_t *vlib_get_thread_main_not_inline (void);
634
635 #endif /* included_vlib_threads_h */
636
637 /*
638  * fd.io coding-style-patch-verification: ON
639  *
640  * Local Variables:
641  * eval: (c-set-style "gnu")
642  * End:
643  */