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