edf5a0e071126e592f8dbf4e6f4a03f4862cf4c7
[vpp.git] / src / vlib / threads.c
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 #define _GNU_SOURCE
16
17 #include <signal.h>
18 #include <math.h>
19 #include <vppinfra/format.h>
20 #include <vlib/vlib.h>
21
22 #include <vlib/threads.h>
23 #include <vlib/unix/cj.h>
24
25 DECLARE_CJ_GLOBAL_LOG;
26
27 #define FRAME_QUEUE_NELTS 32
28
29 u32
30 vl (void *p)
31 {
32   return vec_len (p);
33 }
34
35 vlib_worker_thread_t *vlib_worker_threads;
36 vlib_thread_main_t vlib_thread_main;
37
38 /*
39  * Barrier tracing can be enabled on a normal build to collect information
40  * on barrier use, including timings and call stacks.  Deliberately not
41  * keyed off CLIB_DEBUG, because that can add significant overhead which
42  * imapacts observed timings.
43  */
44
45 #ifdef BARRIER_TRACING
46  /*
47   * Output of barrier tracing can be to syslog or elog as suits
48   */
49 #ifdef BARRIER_TRACING_ELOG
50 static u32
51 elog_id_for_msg_name (const char *msg_name)
52 {
53   uword *p, r;
54   static uword *h;
55   u8 *name_copy;
56
57   if (!h)
58     h = hash_create_string (0, sizeof (uword));
59
60   p = hash_get_mem (h, msg_name);
61   if (p)
62     return p[0];
63   r = elog_string (&vlib_global_main.elog_main, "%s", msg_name);
64
65   name_copy = format (0, "%s%c", msg_name, 0);
66
67   hash_set_mem (h, name_copy, r);
68
69   return r;
70 }
71
72   /*
73    * elog Barrier trace functions, which are nulled out if BARRIER_TRACING isn't
74    * defined
75    */
76
77 static inline void
78 barrier_trace_sync (f64 t_entry, f64 t_open, f64 t_closed)
79 {
80     /* *INDENT-OFF* */
81     ELOG_TYPE_DECLARE (e) =
82       {
83         .format = "barrier <%d#%s(O:%dus:%dus)(%dus)",
84         .format_args = "i4T4i4i4i4",
85       };
86     /* *INDENT-ON* */
87   struct
88   {
89     u32 count, caller, t_entry, t_open, t_closed;
90   } *ed = 0;
91
92   ed = ELOG_DATA (&vlib_global_main.elog_main, e);
93   ed->count = (int) vlib_worker_threads[0].barrier_sync_count;
94   ed->caller = elog_id_for_msg_name (vlib_worker_threads[0].barrier_caller);
95   ed->t_entry = (int) (1000000.0 * t_entry);
96   ed->t_open = (int) (1000000.0 * t_open);
97   ed->t_closed = (int) (1000000.0 * t_closed);
98 }
99
100 static inline void
101 barrier_trace_sync_rec (f64 t_entry)
102 {
103     /* *INDENT-OFF* */
104     ELOG_TYPE_DECLARE (e) =
105       {
106         .format = "barrier    <%d(%dus)%s",
107         .format_args = "i4i4T4",
108       };
109     /* *INDENT-ON* */
110   struct
111   {
112     u32 depth, t_entry, caller;
113   } *ed = 0;
114
115   ed = ELOG_DATA (&vlib_global_main.elog_main, e);
116   ed->depth = (int) vlib_worker_threads[0].recursion_level - 1;
117   ed->t_entry = (int) (1000000.0 * t_entry);
118   ed->caller = elog_id_for_msg_name (vlib_worker_threads[0].barrier_caller);
119 }
120
121 static inline void
122 barrier_trace_release_rec (f64 t_entry)
123 {
124     /* *INDENT-OFF* */
125     ELOG_TYPE_DECLARE (e) =
126       {
127         .format = "barrier      (%dus)%d>",
128         .format_args = "i4i4",
129       };
130     /* *INDENT-ON* */
131   struct
132   {
133     u32 t_entry, depth;
134   } *ed = 0;
135
136   ed = ELOG_DATA (&vlib_global_main.elog_main, e);
137   ed->t_entry = (int) (1000000.0 * t_entry);
138   ed->depth = (int) vlib_worker_threads[0].recursion_level;
139 }
140
141 static inline void
142 barrier_trace_release (f64 t_entry, f64 t_closed_total, f64 t_update_main)
143 {
144     /* *INDENT-OFF* */
145     ELOG_TYPE_DECLARE (e) =
146       {
147         .format = "barrier   (%dus){%d}(C:%dus)#%d>",
148         .format_args = "i4i4i4i4",
149       };
150     /* *INDENT-ON* */
151   struct
152   {
153     u32 t_entry, t_update_main, t_closed_total, count;
154   } *ed = 0;
155
156   ed = ELOG_DATA (&vlib_global_main.elog_main, e);
157   ed->t_entry = (int) (1000000.0 * t_entry);
158   ed->t_update_main = (int) (1000000.0 * t_update_main);
159   ed->t_closed_total = (int) (1000000.0 * t_closed_total);
160   ed->count = (int) vlib_worker_threads[0].barrier_sync_count;
161
162   /* Reset context for next trace */
163   vlib_worker_threads[0].barrier_context = NULL;
164 }
165 #else
166 char barrier_trace[65536];
167 char *btp = barrier_trace;
168
169   /*
170    * syslog Barrier trace functions, which are nulled out if BARRIER_TRACING
171    * isn't defined
172    */
173
174
175 static inline void
176 barrier_trace_sync (f64 t_entry, f64 t_open, f64 t_closed)
177 {
178   btp += sprintf (btp, "<%u#%s",
179                   (unsigned int) vlib_worker_threads[0].barrier_sync_count,
180                   vlib_worker_threads[0].barrier_caller);
181
182   if (vlib_worker_threads[0].barrier_context)
183     {
184       btp += sprintf (btp, "[%s]", vlib_worker_threads[0].barrier_context);
185
186     }
187
188   btp += sprintf (btp, "(O:%dus:%dus)(%dus):",
189                   (int) (1000000.0 * t_entry),
190                   (int) (1000000.0 * t_open), (int) (1000000.0 * t_closed));
191
192 }
193
194 static inline void
195 barrier_trace_sync_rec (f64 t_entry)
196 {
197   btp += sprintf (btp, "<%u(%dus)%s:",
198                   (int) vlib_worker_threads[0].recursion_level - 1,
199                   (int) (1000000.0 * t_entry),
200                   vlib_worker_threads[0].barrier_caller);
201 }
202
203 static inline void
204 barrier_trace_release_rec (f64 t_entry)
205 {
206   btp += sprintf (btp, ":(%dus)%u>", (int) (1000000.0 * t_entry),
207                   (int) vlib_worker_threads[0].recursion_level);
208 }
209
210 static inline void
211 barrier_trace_release (f64 t_entry, f64 t_closed_total, f64 t_update_main)
212 {
213
214   btp += sprintf (btp, ":(%dus)", (int) (1000000.0 * t_entry));
215   if (t_update_main > 0)
216     {
217       btp += sprintf (btp, "{%dus}", (int) (1000000.0 * t_update_main));
218     }
219
220   btp += sprintf (btp, "(C:%dus)#%u>",
221                   (int) (1000000.0 * t_closed_total),
222                   (int) vlib_worker_threads[0].barrier_sync_count);
223
224   /* Dump buffer to syslog, and reset for next trace */
225   fformat (stderr, "BTRC %s\n", barrier_trace);
226   btp = barrier_trace;
227   vlib_worker_threads[0].barrier_context = NULL;
228 }
229 #endif
230 #else
231
232   /* Null functions for default case where barrier tracing isn't used */
233 static inline void
234 barrier_trace_sync (f64 t_entry, f64 t_open, f64 t_closed)
235 {
236 }
237
238 static inline void
239 barrier_trace_sync_rec (f64 t_entry)
240 {
241 }
242
243 static inline void
244 barrier_trace_release_rec (f64 t_entry)
245 {
246 }
247
248 static inline void
249 barrier_trace_release (f64 t_entry, f64 t_closed_total, f64 t_update_main)
250 {
251 }
252 #endif
253
254 uword
255 os_get_nthreads (void)
256 {
257   u32 len;
258
259   len = vec_len (vlib_thread_stacks);
260   if (len == 0)
261     return 1;
262   else
263     return len;
264 }
265
266 void
267 vlib_set_thread_name (char *name)
268 {
269   int pthread_setname_np (pthread_t __target_thread, const char *__name);
270   int rv;
271   pthread_t thread = pthread_self ();
272
273   if (thread)
274     {
275       rv = pthread_setname_np (thread, name);
276       if (rv)
277         clib_warning ("pthread_setname_np returned %d", rv);
278     }
279 }
280
281 static int
282 sort_registrations_by_no_clone (void *a0, void *a1)
283 {
284   vlib_thread_registration_t **tr0 = a0;
285   vlib_thread_registration_t **tr1 = a1;
286
287   return ((i32) ((*tr0)->no_data_structure_clone)
288           - ((i32) ((*tr1)->no_data_structure_clone)));
289 }
290
291 static uword *
292 clib_sysfs_list_to_bitmap (char *filename)
293 {
294   FILE *fp;
295   uword *r = 0;
296
297   fp = fopen (filename, "r");
298
299   if (fp != NULL)
300     {
301       u8 *buffer = 0;
302       vec_validate (buffer, 256 - 1);
303       if (fgets ((char *) buffer, 256, fp))
304         {
305           unformat_input_t in;
306           unformat_init_string (&in, (char *) buffer,
307                                 strlen ((char *) buffer));
308           if (unformat (&in, "%U", unformat_bitmap_list, &r) != 1)
309             clib_warning ("unformat_bitmap_list failed");
310           unformat_free (&in);
311         }
312       vec_free (buffer);
313       fclose (fp);
314     }
315   return r;
316 }
317
318
319 /* Called early in the init sequence */
320
321 clib_error_t *
322 vlib_thread_init (vlib_main_t * vm)
323 {
324   vlib_thread_main_t *tm = &vlib_thread_main;
325   vlib_worker_thread_t *w;
326   vlib_thread_registration_t *tr;
327   u32 n_vlib_mains = 1;
328   u32 first_index = 1;
329   u32 i;
330   uword *avail_cpu;
331
332   /* get bitmaps of active cpu cores and sockets */
333   tm->cpu_core_bitmap =
334     clib_sysfs_list_to_bitmap ("/sys/devices/system/cpu/online");
335   tm->cpu_socket_bitmap =
336     clib_sysfs_list_to_bitmap ("/sys/devices/system/node/online");
337
338   avail_cpu = clib_bitmap_dup (tm->cpu_core_bitmap);
339
340   /* skip cores */
341   for (i = 0; i < tm->skip_cores; i++)
342     {
343       uword c = clib_bitmap_first_set (avail_cpu);
344       if (c == ~0)
345         return clib_error_return (0, "no available cpus to skip");
346
347       avail_cpu = clib_bitmap_set (avail_cpu, c, 0);
348     }
349
350   /* grab cpu for main thread */
351   if (!tm->main_lcore)
352     {
353       tm->main_lcore = clib_bitmap_first_set (avail_cpu);
354       if (tm->main_lcore == (u8) ~ 0)
355         return clib_error_return (0, "no available cpus to be used for the"
356                                   " main thread");
357     }
358   else
359     {
360       if (clib_bitmap_get (avail_cpu, tm->main_lcore) == 0)
361         return clib_error_return (0, "cpu %u is not available to be used"
362                                   " for the main thread", tm->main_lcore);
363     }
364   avail_cpu = clib_bitmap_set (avail_cpu, tm->main_lcore, 0);
365
366   /* assume that there is socket 0 only if there is no data from sysfs */
367   if (!tm->cpu_socket_bitmap)
368     tm->cpu_socket_bitmap = clib_bitmap_set (0, 0, 1);
369
370   /* pin main thread to main_lcore  */
371   if (tm->cb.vlib_thread_set_lcore_cb)
372     {
373       tm->cb.vlib_thread_set_lcore_cb (0, tm->main_lcore);
374     }
375   else
376     {
377       cpu_set_t cpuset;
378       CPU_ZERO (&cpuset);
379       CPU_SET (tm->main_lcore, &cpuset);
380       pthread_setaffinity_np (pthread_self (), sizeof (cpu_set_t), &cpuset);
381     }
382
383   /* as many threads as stacks... */
384   vec_validate_aligned (vlib_worker_threads, vec_len (vlib_thread_stacks) - 1,
385                         CLIB_CACHE_LINE_BYTES);
386
387   /* Preallocate thread 0 */
388   _vec_len (vlib_worker_threads) = 1;
389   w = vlib_worker_threads;
390   w->thread_mheap = clib_mem_get_heap ();
391   w->thread_stack = vlib_thread_stacks[0];
392   w->lcore_id = tm->main_lcore;
393   w->lwp = syscall (SYS_gettid);
394   w->thread_id = pthread_self ();
395   tm->n_vlib_mains = 1;
396
397   if (tm->sched_policy != ~0)
398     {
399       struct sched_param sched_param;
400       if (!sched_getparam (w->lwp, &sched_param))
401         {
402           if (tm->sched_priority != ~0)
403             sched_param.sched_priority = tm->sched_priority;
404           sched_setscheduler (w->lwp, tm->sched_policy, &sched_param);
405         }
406     }
407
408   /* assign threads to cores and set n_vlib_mains */
409   tr = tm->next;
410
411   while (tr)
412     {
413       vec_add1 (tm->registrations, tr);
414       tr = tr->next;
415     }
416
417   vec_sort_with_function (tm->registrations, sort_registrations_by_no_clone);
418
419   for (i = 0; i < vec_len (tm->registrations); i++)
420     {
421       int j;
422       tr = tm->registrations[i];
423       tr->first_index = first_index;
424       first_index += tr->count;
425       n_vlib_mains += (tr->no_data_structure_clone == 0) ? tr->count : 0;
426
427       /* construct coremask */
428       if (tr->use_pthreads || !tr->count)
429         continue;
430
431       if (tr->coremask)
432         {
433           uword c;
434           /* *INDENT-OFF* */
435           clib_bitmap_foreach (c, tr->coremask, ({
436             if (clib_bitmap_get(avail_cpu, c) == 0)
437               return clib_error_return (0, "cpu %u is not available to be used"
438                                         " for the '%s' thread",c, tr->name);
439
440             avail_cpu = clib_bitmap_set(avail_cpu, c, 0);
441           }));
442 /* *INDENT-ON* */
443
444         }
445       else
446         {
447           for (j = 0; j < tr->count; j++)
448             {
449               uword c = clib_bitmap_first_set (avail_cpu);
450               if (c == ~0)
451                 return clib_error_return (0,
452                                           "no available cpus to be used for"
453                                           " the '%s' thread", tr->name);
454
455               avail_cpu = clib_bitmap_set (avail_cpu, c, 0);
456               tr->coremask = clib_bitmap_set (tr->coremask, c, 1);
457             }
458         }
459     }
460
461   clib_bitmap_free (avail_cpu);
462
463   tm->n_vlib_mains = n_vlib_mains;
464
465   vec_validate_aligned (vlib_worker_threads, first_index - 1,
466                         CLIB_CACHE_LINE_BYTES);
467
468   return 0;
469 }
470
471 vlib_frame_queue_t *
472 vlib_frame_queue_alloc (int nelts)
473 {
474   vlib_frame_queue_t *fq;
475
476   fq = clib_mem_alloc_aligned (sizeof (*fq), CLIB_CACHE_LINE_BYTES);
477   memset (fq, 0, sizeof (*fq));
478   fq->nelts = nelts;
479   fq->vector_threshold = 128;   // packets
480   vec_validate_aligned (fq->elts, nelts - 1, CLIB_CACHE_LINE_BYTES);
481
482   if (1)
483     {
484       if (((uword) & fq->tail) & (CLIB_CACHE_LINE_BYTES - 1))
485         fformat (stderr, "WARNING: fq->tail unaligned\n");
486       if (((uword) & fq->head) & (CLIB_CACHE_LINE_BYTES - 1))
487         fformat (stderr, "WARNING: fq->head unaligned\n");
488       if (((uword) fq->elts) & (CLIB_CACHE_LINE_BYTES - 1))
489         fformat (stderr, "WARNING: fq->elts unaligned\n");
490
491       if (sizeof (fq->elts[0]) % CLIB_CACHE_LINE_BYTES)
492         fformat (stderr, "WARNING: fq->elts[0] size %d\n",
493                  sizeof (fq->elts[0]));
494       if (nelts & (nelts - 1))
495         {
496           fformat (stderr, "FATAL: nelts MUST be a power of 2\n");
497           abort ();
498         }
499     }
500
501   return (fq);
502 }
503
504 void vl_msg_api_handler_no_free (void *) __attribute__ ((weak));
505 void
506 vl_msg_api_handler_no_free (void *v)
507 {
508 }
509
510 /* Turned off, save as reference material... */
511 #if 0
512 static inline int
513 vlib_frame_queue_dequeue_internal (int thread_id,
514                                    vlib_main_t * vm, vlib_node_main_t * nm)
515 {
516   vlib_frame_queue_t *fq = vlib_frame_queues[thread_id];
517   vlib_frame_queue_elt_t *elt;
518   vlib_frame_t *f;
519   vlib_pending_frame_t *p;
520   vlib_node_runtime_t *r;
521   u32 node_runtime_index;
522   int msg_type;
523   u64 before;
524   int processed = 0;
525
526   ASSERT (vm == vlib_mains[thread_id]);
527
528   while (1)
529     {
530       if (fq->head == fq->tail)
531         return processed;
532
533       elt = fq->elts + ((fq->head + 1) & (fq->nelts - 1));
534
535       if (!elt->valid)
536         return processed;
537
538       before = clib_cpu_time_now ();
539
540       f = elt->frame;
541       node_runtime_index = elt->node_runtime_index;
542       msg_type = elt->msg_type;
543
544       switch (msg_type)
545         {
546         case VLIB_FRAME_QUEUE_ELT_FREE_BUFFERS:
547           vlib_buffer_free (vm, vlib_frame_vector_args (f), f->n_vectors);
548           /* note fallthrough... */
549         case VLIB_FRAME_QUEUE_ELT_FREE_FRAME:
550           r = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
551                                 node_runtime_index);
552           vlib_frame_free (vm, r, f);
553           break;
554         case VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME:
555           vec_add2 (vm->node_main.pending_frames, p, 1);
556           f->flags |= (VLIB_FRAME_PENDING | VLIB_FRAME_FREE_AFTER_DISPATCH);
557           p->node_runtime_index = elt->node_runtime_index;
558           p->frame_index = vlib_frame_index (vm, f);
559           p->next_frame_index = VLIB_PENDING_FRAME_NO_NEXT_FRAME;
560           fq->dequeue_vectors += (u64) f->n_vectors;
561           break;
562         case VLIB_FRAME_QUEUE_ELT_API_MSG:
563           vl_msg_api_handler_no_free (f);
564           break;
565         default:
566           clib_warning ("bogus frame queue message, type %d", msg_type);
567           break;
568         }
569       elt->valid = 0;
570       fq->dequeues++;
571       fq->dequeue_ticks += clib_cpu_time_now () - before;
572       CLIB_MEMORY_BARRIER ();
573       fq->head++;
574       processed++;
575     }
576   ASSERT (0);
577   return processed;
578 }
579
580 int
581 vlib_frame_queue_dequeue (int thread_id,
582                           vlib_main_t * vm, vlib_node_main_t * nm)
583 {
584   return vlib_frame_queue_dequeue_internal (thread_id, vm, nm);
585 }
586
587 int
588 vlib_frame_queue_enqueue (vlib_main_t * vm, u32 node_runtime_index,
589                           u32 frame_queue_index, vlib_frame_t * frame,
590                           vlib_frame_queue_msg_type_t type)
591 {
592   vlib_frame_queue_t *fq = vlib_frame_queues[frame_queue_index];
593   vlib_frame_queue_elt_t *elt;
594   u32 save_count;
595   u64 new_tail;
596   u64 before = clib_cpu_time_now ();
597
598   ASSERT (fq);
599
600   new_tail = __sync_add_and_fetch (&fq->tail, 1);
601
602   /* Wait until a ring slot is available */
603   while (new_tail >= fq->head + fq->nelts)
604     {
605       f64 b4 = vlib_time_now_ticks (vm, before);
606       vlib_worker_thread_barrier_check (vm, b4);
607       /* Bad idea. Dequeue -> enqueue -> dequeue -> trouble */
608       // vlib_frame_queue_dequeue (vm->thread_index, vm, nm);
609     }
610
611   elt = fq->elts + (new_tail & (fq->nelts - 1));
612
613   /* this would be very bad... */
614   while (elt->valid)
615     {
616     }
617
618   /* Once we enqueue the frame, frame->n_vectors is owned elsewhere... */
619   save_count = frame->n_vectors;
620
621   elt->frame = frame;
622   elt->node_runtime_index = node_runtime_index;
623   elt->msg_type = type;
624   CLIB_MEMORY_BARRIER ();
625   elt->valid = 1;
626
627   return save_count;
628 }
629 #endif /* 0 */
630
631 /* To be called by vlib worker threads upon startup */
632 void
633 vlib_worker_thread_init (vlib_worker_thread_t * w)
634 {
635   vlib_thread_main_t *tm = vlib_get_thread_main ();
636
637   /*
638    * Note: disabling signals in worker threads as follows
639    * prevents the api post-mortem dump scheme from working
640    * {
641    *    sigset_t s;
642    *    sigfillset (&s);
643    *    pthread_sigmask (SIG_SETMASK, &s, 0);
644    *  }
645    */
646
647   clib_mem_set_heap (w->thread_mheap);
648
649   if (vec_len (tm->thread_prefix) && w->registration->short_name)
650     {
651       w->name = format (0, "%v_%s_%d%c", tm->thread_prefix,
652                         w->registration->short_name, w->instance_id, '\0');
653       vlib_set_thread_name ((char *) w->name);
654     }
655
656   if (!w->registration->use_pthreads)
657     {
658
659       /* Initial barrier sync, for both worker and i/o threads */
660       clib_smp_atomic_add (vlib_worker_threads->workers_at_barrier, 1);
661
662       while (*vlib_worker_threads->wait_at_barrier)
663         ;
664
665       clib_smp_atomic_add (vlib_worker_threads->workers_at_barrier, -1);
666     }
667 }
668
669 void *
670 vlib_worker_thread_bootstrap_fn (void *arg)
671 {
672   void *rv;
673   vlib_worker_thread_t *w = arg;
674
675   w->lwp = syscall (SYS_gettid);
676   w->thread_id = pthread_self ();
677
678   __os_thread_index = w - vlib_worker_threads;
679
680   rv = (void *) clib_calljmp
681     ((uword (*)(uword)) w->thread_function,
682      (uword) arg, w->thread_stack + VLIB_THREAD_STACK_SIZE);
683   /* NOTREACHED, we hope */
684   return rv;
685 }
686
687 static clib_error_t *
688 vlib_launch_thread_int (void *fp, vlib_worker_thread_t * w, unsigned lcore_id)
689 {
690   vlib_thread_main_t *tm = &vlib_thread_main;
691   void *(*fp_arg) (void *) = fp;
692
693   w->lcore_id = lcore_id;
694   if (tm->cb.vlib_launch_thread_cb && !w->registration->use_pthreads)
695     return tm->cb.vlib_launch_thread_cb (fp, (void *) w, lcore_id);
696   else
697     {
698       pthread_t worker;
699       cpu_set_t cpuset;
700       CPU_ZERO (&cpuset);
701       CPU_SET (lcore_id, &cpuset);
702
703       if (pthread_create (&worker, NULL /* attr */ , fp_arg, (void *) w))
704         return clib_error_return_unix (0, "pthread_create");
705
706       if (pthread_setaffinity_np (worker, sizeof (cpu_set_t), &cpuset))
707         return clib_error_return_unix (0, "pthread_setaffinity_np");
708
709       return 0;
710     }
711 }
712
713 static clib_error_t *
714 start_workers (vlib_main_t * vm)
715 {
716   int i, j;
717   vlib_worker_thread_t *w;
718   vlib_main_t *vm_clone;
719   void *oldheap;
720   vlib_thread_main_t *tm = &vlib_thread_main;
721   vlib_thread_registration_t *tr;
722   vlib_node_runtime_t *rt;
723   u32 n_vlib_mains = tm->n_vlib_mains;
724   u32 worker_thread_index;
725   u8 *main_heap = clib_mem_get_per_cpu_heap ();
726   mheap_t *main_heap_header = mheap_header (main_heap);
727
728   vec_reset_length (vlib_worker_threads);
729
730   /* Set up the main thread */
731   vec_add2_aligned (vlib_worker_threads, w, 1, CLIB_CACHE_LINE_BYTES);
732   w->elog_track.name = "main thread";
733   elog_track_register (&vm->elog_main, &w->elog_track);
734
735   if (vec_len (tm->thread_prefix))
736     {
737       w->name = format (0, "%v_main%c", tm->thread_prefix, '\0');
738       vlib_set_thread_name ((char *) w->name);
739     }
740
741   /*
742    * Truth of the matter: we always use at least two
743    * threads. So, make the main heap thread-safe
744    * and make the event log thread-safe.
745    */
746   main_heap_header->flags |= MHEAP_FLAG_THREAD_SAFE;
747   vm->elog_main.lock =
748     clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES, CLIB_CACHE_LINE_BYTES);
749   vm->elog_main.lock[0] = 0;
750
751   if (n_vlib_mains > 1)
752     {
753       /* Replace hand-crafted length-1 vector with a real vector */
754       vlib_mains = 0;
755
756       vec_validate_aligned (vlib_mains, tm->n_vlib_mains - 1,
757                             CLIB_CACHE_LINE_BYTES);
758       _vec_len (vlib_mains) = 0;
759       vec_add1_aligned (vlib_mains, vm, CLIB_CACHE_LINE_BYTES);
760
761       vlib_worker_threads->wait_at_barrier =
762         clib_mem_alloc_aligned (sizeof (u32), CLIB_CACHE_LINE_BYTES);
763       vlib_worker_threads->workers_at_barrier =
764         clib_mem_alloc_aligned (sizeof (u32), CLIB_CACHE_LINE_BYTES);
765
766       vlib_worker_threads->node_reforks_required =
767         clib_mem_alloc_aligned (sizeof (u32), CLIB_CACHE_LINE_BYTES);
768
769       /* Ask for an initial barrier sync */
770       *vlib_worker_threads->workers_at_barrier = 0;
771       *vlib_worker_threads->wait_at_barrier = 1;
772
773       /* Without update or refork */
774       *vlib_worker_threads->node_reforks_required = 0;
775       vm->need_vlib_worker_thread_node_runtime_update = 0;
776
777       /* init timing */
778       vm->barrier_epoch = 0;
779       vm->barrier_no_close_before = 0;
780
781       worker_thread_index = 1;
782
783       for (i = 0; i < vec_len (tm->registrations); i++)
784         {
785           vlib_node_main_t *nm, *nm_clone;
786           vlib_buffer_free_list_t *fl_clone, *fl_orig;
787           vlib_buffer_free_list_t *orig_freelist_pool;
788           int k;
789
790           tr = tm->registrations[i];
791
792           if (tr->count == 0)
793             continue;
794
795           for (k = 0; k < tr->count; k++)
796             {
797               vlib_node_t *n;
798
799               vec_add2 (vlib_worker_threads, w, 1);
800               if (tr->mheap_size)
801                 w->thread_mheap =
802                   mheap_alloc (0 /* use VM */ , tr->mheap_size);
803               else
804                 w->thread_mheap = main_heap;
805
806               w->thread_stack =
807                 vlib_thread_stack_init (w - vlib_worker_threads);
808               w->thread_function = tr->function;
809               w->thread_function_arg = w;
810               w->instance_id = k;
811               w->registration = tr;
812
813               w->elog_track.name =
814                 (char *) format (0, "%s %d", tr->name, k + 1);
815               vec_add1 (w->elog_track.name, 0);
816               elog_track_register (&vm->elog_main, &w->elog_track);
817
818               if (tr->no_data_structure_clone)
819                 continue;
820
821               /* Fork vlib_global_main et al. Look for bugs here */
822               oldheap = clib_mem_set_heap (w->thread_mheap);
823
824               vm_clone = clib_mem_alloc_aligned (sizeof (*vm_clone),
825                                                  CLIB_CACHE_LINE_BYTES);
826               clib_memcpy (vm_clone, vlib_mains[0], sizeof (*vm_clone));
827
828               vm_clone->thread_index = worker_thread_index;
829               vm_clone->heap_base = w->thread_mheap;
830               vm_clone->mbuf_alloc_list = 0;
831               vm_clone->init_functions_called =
832                 hash_create (0, /* value bytes */ 0);
833               vm_clone->pending_rpc_requests = 0;
834               vec_validate (vm_clone->pending_rpc_requests, 0);
835               _vec_len (vm_clone->pending_rpc_requests) = 0;
836               memset (&vm_clone->random_buffer, 0,
837                       sizeof (vm_clone->random_buffer));
838
839               nm = &vlib_mains[0]->node_main;
840               nm_clone = &vm_clone->node_main;
841               /* fork next frames array, preserving node runtime indices */
842               nm_clone->next_frames = vec_dup_aligned (nm->next_frames,
843                                                        CLIB_CACHE_LINE_BYTES);
844               for (j = 0; j < vec_len (nm_clone->next_frames); j++)
845                 {
846                   vlib_next_frame_t *nf = &nm_clone->next_frames[j];
847                   u32 save_node_runtime_index;
848                   u32 save_flags;
849
850                   save_node_runtime_index = nf->node_runtime_index;
851                   save_flags = nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH;
852                   vlib_next_frame_init (nf);
853                   nf->node_runtime_index = save_node_runtime_index;
854                   nf->flags = save_flags;
855                 }
856
857               /* fork the frame dispatch queue */
858               nm_clone->pending_frames = 0;
859               vec_validate (nm_clone->pending_frames, 10);      /* $$$$$?????? */
860               _vec_len (nm_clone->pending_frames) = 0;
861
862               /* fork nodes */
863               nm_clone->nodes = 0;
864
865               /* Allocate all nodes in single block for speed */
866               n = clib_mem_alloc_no_fail (vec_len (nm->nodes) * sizeof (*n));
867
868               for (j = 0; j < vec_len (nm->nodes); j++)
869                 {
870                   clib_memcpy (n, nm->nodes[j], sizeof (*n));
871                   /* none of the copied nodes have enqueue rights given out */
872                   n->owner_node_index = VLIB_INVALID_NODE_INDEX;
873                   memset (&n->stats_total, 0, sizeof (n->stats_total));
874                   memset (&n->stats_last_clear, 0,
875                           sizeof (n->stats_last_clear));
876                   vec_add1 (nm_clone->nodes, n);
877                   n++;
878                 }
879               nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL] =
880                 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
881                                  CLIB_CACHE_LINE_BYTES);
882               vec_foreach (rt,
883                            nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL])
884               {
885                 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
886                 rt->thread_index = vm_clone->thread_index;
887                 /* copy initial runtime_data from node */
888                 if (n->runtime_data && n->runtime_data_bytes > 0)
889                   clib_memcpy (rt->runtime_data, n->runtime_data,
890                                clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
891                                          n->runtime_data_bytes));
892               }
893
894               nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT] =
895                 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
896                                  CLIB_CACHE_LINE_BYTES);
897               vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT])
898               {
899                 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
900                 rt->thread_index = vm_clone->thread_index;
901                 /* copy initial runtime_data from node */
902                 if (n->runtime_data && n->runtime_data_bytes > 0)
903                   clib_memcpy (rt->runtime_data, n->runtime_data,
904                                clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
905                                          n->runtime_data_bytes));
906               }
907
908               nm_clone->processes = vec_dup_aligned (nm->processes,
909                                                      CLIB_CACHE_LINE_BYTES);
910
911               /* zap the (per worker) frame freelists, etc */
912               nm_clone->frame_sizes = 0;
913               nm_clone->frame_size_hash = hash_create (0, sizeof (uword));
914
915               /* Packet trace buffers are guaranteed to be empty, nothing to do here */
916
917               clib_mem_set_heap (oldheap);
918               vec_add1_aligned (vlib_mains, vm_clone, CLIB_CACHE_LINE_BYTES);
919
920               vm_clone->error_main.counters = vec_dup_aligned
921                 (vlib_mains[0]->error_main.counters, CLIB_CACHE_LINE_BYTES);
922               vm_clone->error_main.counters_last_clear = vec_dup_aligned
923                 (vlib_mains[0]->error_main.counters_last_clear,
924                  CLIB_CACHE_LINE_BYTES);
925
926               /* Fork the vlib_buffer_main_t free lists, etc. */
927               orig_freelist_pool = vm_clone->buffer_free_list_pool;
928               vm_clone->buffer_free_list_pool = 0;
929
930             /* *INDENT-OFF* */
931             pool_foreach (fl_orig, orig_freelist_pool,
932                           ({
933                             pool_get_aligned (vm_clone->buffer_free_list_pool,
934                                               fl_clone, CLIB_CACHE_LINE_BYTES);
935                             ASSERT (fl_orig - orig_freelist_pool
936                                     == fl_clone - vm_clone->buffer_free_list_pool);
937
938                             fl_clone[0] = fl_orig[0];
939                             fl_clone->buffers = 0;
940                             fl_clone->n_alloc = 0;
941                           }));
942 /* *INDENT-ON* */
943
944               worker_thread_index++;
945             }
946         }
947     }
948   else
949     {
950       /* only have non-data-structure copy threads to create... */
951       for (i = 0; i < vec_len (tm->registrations); i++)
952         {
953           tr = tm->registrations[i];
954
955           for (j = 0; j < tr->count; j++)
956             {
957               vec_add2 (vlib_worker_threads, w, 1);
958               if (tr->mheap_size)
959                 w->thread_mheap =
960                   mheap_alloc (0 /* use VM */ , tr->mheap_size);
961               else
962                 w->thread_mheap = main_heap;
963               w->thread_stack =
964                 vlib_thread_stack_init (w - vlib_worker_threads);
965               w->thread_function = tr->function;
966               w->thread_function_arg = w;
967               w->instance_id = j;
968               w->elog_track.name =
969                 (char *) format (0, "%s %d", tr->name, j + 1);
970               w->registration = tr;
971               vec_add1 (w->elog_track.name, 0);
972               elog_track_register (&vm->elog_main, &w->elog_track);
973             }
974         }
975     }
976
977   worker_thread_index = 1;
978
979   for (i = 0; i < vec_len (tm->registrations); i++)
980     {
981       clib_error_t *err;
982       int j;
983
984       tr = tm->registrations[i];
985
986       if (tr->use_pthreads || tm->use_pthreads)
987         {
988           for (j = 0; j < tr->count; j++)
989             {
990               w = vlib_worker_threads + worker_thread_index++;
991               err = vlib_launch_thread_int (vlib_worker_thread_bootstrap_fn,
992                                             w, 0);
993               if (err)
994                 clib_error_report (err);
995             }
996         }
997       else
998         {
999           uword c;
1000           /* *INDENT-OFF* */
1001           clib_bitmap_foreach (c, tr->coremask, ({
1002             w = vlib_worker_threads + worker_thread_index++;
1003             err = vlib_launch_thread_int (vlib_worker_thread_bootstrap_fn,
1004                                           w, c);
1005             if (err)
1006               clib_error_report (err);
1007           }));
1008           /* *INDENT-ON* */
1009         }
1010     }
1011   vlib_worker_thread_barrier_sync (vm);
1012   vlib_worker_thread_barrier_release (vm);
1013   return 0;
1014 }
1015
1016 VLIB_MAIN_LOOP_ENTER_FUNCTION (start_workers);
1017
1018
1019 static inline void
1020 worker_thread_node_runtime_update_internal (void)
1021 {
1022   int i, j;
1023   vlib_main_t *vm;
1024   vlib_node_main_t *nm, *nm_clone;
1025   vlib_main_t *vm_clone;
1026   vlib_node_runtime_t *rt;
1027   never_inline void
1028     vlib_node_runtime_sync_stats (vlib_main_t * vm,
1029                                   vlib_node_runtime_t * r,
1030                                   uword n_calls,
1031                                   uword n_vectors, uword n_clocks);
1032
1033   ASSERT (vlib_get_thread_index () == 0);
1034
1035   vm = vlib_mains[0];
1036   nm = &vm->node_main;
1037
1038   ASSERT (*vlib_worker_threads->wait_at_barrier == 1);
1039
1040   /*
1041    * Scrape all runtime stats, so we don't lose node runtime(s) with
1042    * pending counts, or throw away worker / io thread counts.
1043    */
1044   for (j = 0; j < vec_len (nm->nodes); j++)
1045     {
1046       vlib_node_t *n;
1047       n = nm->nodes[j];
1048       vlib_node_sync_stats (vm, n);
1049     }
1050
1051   for (i = 1; i < vec_len (vlib_mains); i++)
1052     {
1053       vlib_node_t *n;
1054
1055       vm_clone = vlib_mains[i];
1056       nm_clone = &vm_clone->node_main;
1057
1058       for (j = 0; j < vec_len (nm_clone->nodes); j++)
1059         {
1060           n = nm_clone->nodes[j];
1061
1062           rt = vlib_node_get_runtime (vm_clone, n->index);
1063           vlib_node_runtime_sync_stats (vm_clone, rt, 0, 0, 0);
1064         }
1065     }
1066
1067   /* Per-worker clone rebuilds are now done on each thread */
1068 }
1069
1070
1071 void
1072 vlib_worker_thread_node_refork (void)
1073 {
1074   vlib_main_t *vm, *vm_clone;
1075   vlib_node_main_t *nm, *nm_clone;
1076   vlib_node_t **old_nodes_clone;
1077   vlib_node_runtime_t *rt, *old_rt;
1078
1079   vlib_node_t *new_n_clone;
1080
1081   int j;
1082
1083   vm = vlib_mains[0];
1084   nm = &vm->node_main;
1085   vm_clone = vlib_get_main ();
1086   nm_clone = &vm_clone->node_main;
1087
1088   /* Re-clone error heap */
1089   u64 *old_counters = vm_clone->error_main.counters;
1090   u64 *old_counters_all_clear = vm_clone->error_main.counters_last_clear;
1091
1092   clib_memcpy (&vm_clone->error_main, &vm->error_main,
1093                sizeof (vm->error_main));
1094   j = vec_len (vm->error_main.counters) - 1;
1095   vec_validate_aligned (old_counters, j, CLIB_CACHE_LINE_BYTES);
1096   vec_validate_aligned (old_counters_all_clear, j, CLIB_CACHE_LINE_BYTES);
1097   vm_clone->error_main.counters = old_counters;
1098   vm_clone->error_main.counters_last_clear = old_counters_all_clear;
1099
1100   nm_clone = &vm_clone->node_main;
1101   vec_free (nm_clone->next_frames);
1102   nm_clone->next_frames = vec_dup_aligned (nm->next_frames,
1103                                            CLIB_CACHE_LINE_BYTES);
1104
1105   for (j = 0; j < vec_len (nm_clone->next_frames); j++)
1106     {
1107       vlib_next_frame_t *nf = &nm_clone->next_frames[j];
1108       u32 save_node_runtime_index;
1109       u32 save_flags;
1110
1111       save_node_runtime_index = nf->node_runtime_index;
1112       save_flags = nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH;
1113       vlib_next_frame_init (nf);
1114       nf->node_runtime_index = save_node_runtime_index;
1115       nf->flags = save_flags;
1116     }
1117
1118   old_nodes_clone = nm_clone->nodes;
1119   nm_clone->nodes = 0;
1120
1121   /* re-fork nodes */
1122
1123   /* Allocate all nodes in single block for speed */
1124   new_n_clone =
1125     clib_mem_alloc_no_fail (vec_len (nm->nodes) * sizeof (*new_n_clone));
1126   for (j = 0; j < vec_len (nm->nodes); j++)
1127     {
1128       vlib_node_t *old_n_clone;
1129       vlib_node_t *new_n;
1130
1131       new_n = nm->nodes[j];
1132       old_n_clone = old_nodes_clone[j];
1133
1134       clib_memcpy (new_n_clone, new_n, sizeof (*new_n));
1135       /* none of the copied nodes have enqueue rights given out */
1136       new_n_clone->owner_node_index = VLIB_INVALID_NODE_INDEX;
1137
1138       if (j >= vec_len (old_nodes_clone))
1139         {
1140           /* new node, set to zero */
1141           memset (&new_n_clone->stats_total, 0,
1142                   sizeof (new_n_clone->stats_total));
1143           memset (&new_n_clone->stats_last_clear, 0,
1144                   sizeof (new_n_clone->stats_last_clear));
1145         }
1146       else
1147         {
1148           /* Copy stats if the old data is valid */
1149           clib_memcpy (&new_n_clone->stats_total,
1150                        &old_n_clone->stats_total,
1151                        sizeof (new_n_clone->stats_total));
1152           clib_memcpy (&new_n_clone->stats_last_clear,
1153                        &old_n_clone->stats_last_clear,
1154                        sizeof (new_n_clone->stats_last_clear));
1155
1156           /* keep previous node state */
1157           new_n_clone->state = old_n_clone->state;
1158         }
1159       vec_add1 (nm_clone->nodes, new_n_clone);
1160       new_n_clone++;
1161     }
1162   /* Free the old node clones */
1163   clib_mem_free (old_nodes_clone[0]);
1164
1165   vec_free (old_nodes_clone);
1166
1167
1168   /* re-clone internal nodes */
1169   old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL];
1170   nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL] =
1171     vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
1172                      CLIB_CACHE_LINE_BYTES);
1173
1174   vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL])
1175   {
1176     vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1177     rt->thread_index = vm_clone->thread_index;
1178     /* copy runtime_data, will be overwritten later for existing rt */
1179     if (n->runtime_data && n->runtime_data_bytes > 0)
1180       clib_memcpy (rt->runtime_data, n->runtime_data,
1181                    clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1182                              n->runtime_data_bytes));
1183   }
1184
1185   for (j = 0; j < vec_len (old_rt); j++)
1186     {
1187       rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1188       rt->state = old_rt[j].state;
1189       clib_memcpy (rt->runtime_data, old_rt[j].runtime_data,
1190                    VLIB_NODE_RUNTIME_DATA_SIZE);
1191     }
1192
1193   vec_free (old_rt);
1194
1195   /* re-clone input nodes */
1196   old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT];
1197   nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT] =
1198     vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
1199                      CLIB_CACHE_LINE_BYTES);
1200
1201   vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT])
1202   {
1203     vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1204     rt->thread_index = vm_clone->thread_index;
1205     /* copy runtime_data, will be overwritten later for existing rt */
1206     if (n->runtime_data && n->runtime_data_bytes > 0)
1207       clib_memcpy (rt->runtime_data, n->runtime_data,
1208                    clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1209                              n->runtime_data_bytes));
1210   }
1211
1212   for (j = 0; j < vec_len (old_rt); j++)
1213     {
1214       rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1215       rt->state = old_rt[j].state;
1216       clib_memcpy (rt->runtime_data, old_rt[j].runtime_data,
1217                    VLIB_NODE_RUNTIME_DATA_SIZE);
1218     }
1219
1220   vec_free (old_rt);
1221
1222   nm_clone->processes = vec_dup_aligned (nm->processes,
1223                                          CLIB_CACHE_LINE_BYTES);
1224 }
1225
1226 void
1227 vlib_worker_thread_node_runtime_update (void)
1228 {
1229   /*
1230    * Make a note that we need to do a node runtime update
1231    * prior to releasing the barrier.
1232    */
1233   vlib_global_main.need_vlib_worker_thread_node_runtime_update = 1;
1234 }
1235
1236 u32
1237 unformat_sched_policy (unformat_input_t * input, va_list * args)
1238 {
1239   u32 *r = va_arg (*args, u32 *);
1240
1241   if (0);
1242 #define _(v,f,s) else if (unformat (input, s)) *r = SCHED_POLICY_##f;
1243   foreach_sched_policy
1244 #undef _
1245     else
1246     return 0;
1247   return 1;
1248 }
1249
1250 static clib_error_t *
1251 cpu_config (vlib_main_t * vm, unformat_input_t * input)
1252 {
1253   vlib_thread_registration_t *tr;
1254   uword *p;
1255   vlib_thread_main_t *tm = &vlib_thread_main;
1256   u8 *name;
1257   u64 coremask;
1258   uword *bitmap;
1259   u32 count;
1260
1261   tm->thread_registrations_by_name = hash_create_string (0, sizeof (uword));
1262
1263   tm->n_thread_stacks = 1;      /* account for main thread */
1264   tm->sched_policy = ~0;
1265   tm->sched_priority = ~0;
1266
1267   tr = tm->next;
1268
1269   while (tr)
1270     {
1271       hash_set_mem (tm->thread_registrations_by_name, tr->name, (uword) tr);
1272       tr = tr->next;
1273     }
1274
1275   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1276     {
1277       if (unformat (input, "use-pthreads"))
1278         tm->use_pthreads = 1;
1279       else if (unformat (input, "thread-prefix %v", &tm->thread_prefix))
1280         ;
1281       else if (unformat (input, "main-core %u", &tm->main_lcore))
1282         ;
1283       else if (unformat (input, "skip-cores %u", &tm->skip_cores))
1284         ;
1285       else if (unformat (input, "coremask-%s %llx", &name, &coremask))
1286         {
1287           p = hash_get_mem (tm->thread_registrations_by_name, name);
1288           if (p == 0)
1289             return clib_error_return (0, "no such thread type '%s'", name);
1290
1291           tr = (vlib_thread_registration_t *) p[0];
1292
1293           if (tr->use_pthreads)
1294             return clib_error_return (0,
1295                                       "coremask cannot be set for '%s' threads",
1296                                       name);
1297
1298           tr->coremask = clib_bitmap_set_multiple
1299             (tr->coremask, 0, coremask, BITS (coremask));
1300           tr->count = clib_bitmap_count_set_bits (tr->coremask);
1301         }
1302       else if (unformat (input, "corelist-%s %U", &name, unformat_bitmap_list,
1303                          &bitmap))
1304         {
1305           p = hash_get_mem (tm->thread_registrations_by_name, name);
1306           if (p == 0)
1307             return clib_error_return (0, "no such thread type '%s'", name);
1308
1309           tr = (vlib_thread_registration_t *) p[0];
1310
1311           if (tr->use_pthreads)
1312             return clib_error_return (0,
1313                                       "corelist cannot be set for '%s' threads",
1314                                       name);
1315
1316           tr->coremask = bitmap;
1317           tr->count = clib_bitmap_count_set_bits (tr->coremask);
1318         }
1319       else
1320         if (unformat
1321             (input, "scheduler-policy %U", unformat_sched_policy,
1322              &tm->sched_policy))
1323         ;
1324       else if (unformat (input, "scheduler-priority %u", &tm->sched_priority))
1325         ;
1326       else if (unformat (input, "%s %u", &name, &count))
1327         {
1328           p = hash_get_mem (tm->thread_registrations_by_name, name);
1329           if (p == 0)
1330             return clib_error_return (0, "no such thread type 3 '%s'", name);
1331
1332           tr = (vlib_thread_registration_t *) p[0];
1333           if (tr->fixed_count)
1334             return clib_error_return
1335               (0, "number of %s threads not configurable", tr->name);
1336           tr->count = count;
1337         }
1338       else
1339         break;
1340     }
1341
1342   if (tm->sched_priority != ~0)
1343     {
1344       if (tm->sched_policy == SCHED_FIFO || tm->sched_policy == SCHED_RR)
1345         {
1346           u32 prio_max = sched_get_priority_max (tm->sched_policy);
1347           u32 prio_min = sched_get_priority_min (tm->sched_policy);
1348           if (tm->sched_priority > prio_max)
1349             tm->sched_priority = prio_max;
1350           if (tm->sched_priority < prio_min)
1351             tm->sched_priority = prio_min;
1352         }
1353       else
1354         {
1355           return clib_error_return
1356             (0,
1357              "scheduling priority (%d) is not allowed for `normal` scheduling policy",
1358              tm->sched_priority);
1359         }
1360     }
1361   tr = tm->next;
1362
1363   if (!tm->thread_prefix)
1364     tm->thread_prefix = format (0, "vpp");
1365
1366   while (tr)
1367     {
1368       tm->n_thread_stacks += tr->count;
1369       tm->n_pthreads += tr->count * tr->use_pthreads;
1370       tm->n_threads += tr->count * (tr->use_pthreads == 0);
1371       tr = tr->next;
1372     }
1373
1374   return 0;
1375 }
1376
1377 VLIB_EARLY_CONFIG_FUNCTION (cpu_config, "cpu");
1378
1379 #if !defined (__x86_64__) && !defined (__i386__) && !defined (__aarch64__) && !defined (__powerpc64__) && !defined(__arm__)
1380 void
1381 __sync_fetch_and_add_8 (void)
1382 {
1383   fformat (stderr, "%s called\n", __FUNCTION__);
1384   abort ();
1385 }
1386
1387 void
1388 __sync_add_and_fetch_8 (void)
1389 {
1390   fformat (stderr, "%s called\n", __FUNCTION__);
1391   abort ();
1392 }
1393 #endif
1394
1395 void vnet_main_fixup (vlib_fork_fixup_t which) __attribute__ ((weak));
1396 void
1397 vnet_main_fixup (vlib_fork_fixup_t which)
1398 {
1399 }
1400
1401 void
1402 vlib_worker_thread_fork_fixup (vlib_fork_fixup_t which)
1403 {
1404   vlib_main_t *vm = vlib_get_main ();
1405
1406   if (vlib_mains == 0)
1407     return;
1408
1409   ASSERT (vlib_get_thread_index () == 0);
1410   vlib_worker_thread_barrier_sync (vm);
1411
1412   switch (which)
1413     {
1414     case VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX:
1415       vnet_main_fixup (VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX);
1416       break;
1417
1418     default:
1419       ASSERT (0);
1420     }
1421   vlib_worker_thread_barrier_release (vm);
1422 }
1423
1424   /*
1425    * Enforce minimum open time to minimize packet loss due to Rx overflow,
1426    * based on a test based heuristic that barrier should be open for at least
1427    * 3 time as long as it is closed (with an upper bound of 1ms because by that
1428    *  point it is probably too late to make a difference)
1429    */
1430
1431 #ifndef BARRIER_MINIMUM_OPEN_LIMIT
1432 #define BARRIER_MINIMUM_OPEN_LIMIT 0.001
1433 #endif
1434
1435 #ifndef BARRIER_MINIMUM_OPEN_FACTOR
1436 #define BARRIER_MINIMUM_OPEN_FACTOR 3
1437 #endif
1438
1439 void
1440 vlib_worker_thread_barrier_sync_int (vlib_main_t * vm)
1441 {
1442   f64 deadline;
1443   f64 now;
1444   f64 t_entry;
1445   f64 t_open;
1446   f64 t_closed;
1447   u32 count;
1448
1449   if (vec_len (vlib_mains) < 2)
1450     return;
1451
1452   ASSERT (vlib_get_thread_index () == 0);
1453
1454   count = vec_len (vlib_mains) - 1;
1455
1456   /* Record entry relative to last close */
1457   now = vlib_time_now (vm);
1458   t_entry = now - vm->barrier_epoch;
1459
1460   /* Tolerate recursive calls */
1461   if (++vlib_worker_threads[0].recursion_level > 1)
1462     {
1463       barrier_trace_sync_rec (t_entry);
1464       return;
1465     }
1466
1467   vlib_worker_threads[0].barrier_sync_count++;
1468
1469   /* Enforce minimum barrier open time to minimize packet loss */
1470   ASSERT (vm->barrier_no_close_before <= (now + BARRIER_MINIMUM_OPEN_LIMIT));
1471   while ((now = vlib_time_now (vm)) < vm->barrier_no_close_before)
1472     ;
1473
1474   /* Record time of closure */
1475   t_open = now - vm->barrier_epoch;
1476   vm->barrier_epoch = now;
1477
1478   deadline = now + BARRIER_SYNC_TIMEOUT;
1479
1480   *vlib_worker_threads->wait_at_barrier = 1;
1481   while (*vlib_worker_threads->workers_at_barrier != count)
1482     {
1483       if ((now = vlib_time_now (vm)) > deadline)
1484         {
1485           fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1486           os_panic ();
1487         }
1488     }
1489
1490   t_closed = now - vm->barrier_epoch;
1491
1492   barrier_trace_sync (t_entry, t_open, t_closed);
1493
1494 }
1495
1496 void
1497 vlib_worker_thread_barrier_release (vlib_main_t * vm)
1498 {
1499   f64 deadline;
1500   f64 now;
1501   f64 minimum_open;
1502   f64 t_entry;
1503   f64 t_closed_total;
1504   f64 t_update_main = 0.0;
1505   int refork_needed = 0;
1506
1507   if (vec_len (vlib_mains) < 2)
1508     return;
1509
1510   ASSERT (vlib_get_thread_index () == 0);
1511
1512
1513   now = vlib_time_now (vm);
1514   t_entry = now - vm->barrier_epoch;
1515
1516   if (--vlib_worker_threads[0].recursion_level > 0)
1517     {
1518       barrier_trace_release_rec (t_entry);
1519       return;
1520     }
1521
1522   /* Update (all) node runtimes before releasing the barrier, if needed */
1523   if (vm->need_vlib_worker_thread_node_runtime_update)
1524     {
1525       /* Do stats elements on main thread */
1526       worker_thread_node_runtime_update_internal ();
1527       vm->need_vlib_worker_thread_node_runtime_update = 0;
1528
1529       /* Do per thread rebuilds in parallel */
1530       refork_needed = 1;
1531       clib_smp_atomic_add (vlib_worker_threads->node_reforks_required,
1532                            (vec_len (vlib_mains) - 1));
1533       now = vlib_time_now (vm);
1534       t_update_main = now - vm->barrier_epoch;
1535     }
1536
1537   deadline = now + BARRIER_SYNC_TIMEOUT;
1538
1539   *vlib_worker_threads->wait_at_barrier = 0;
1540
1541   while (*vlib_worker_threads->workers_at_barrier > 0)
1542     {
1543       if ((now = vlib_time_now (vm)) > deadline)
1544         {
1545           fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1546           os_panic ();
1547         }
1548     }
1549
1550   /* Wait for reforks before continuing */
1551   if (refork_needed)
1552     {
1553       now = vlib_time_now (vm);
1554
1555       deadline = now + BARRIER_SYNC_TIMEOUT;
1556
1557       while (*vlib_worker_threads->node_reforks_required > 0)
1558         {
1559           if ((now = vlib_time_now (vm)) > deadline)
1560             {
1561               fformat (stderr, "%s: worker thread refork deadlock\n",
1562                        __FUNCTION__);
1563               os_panic ();
1564             }
1565         }
1566     }
1567
1568   t_closed_total = now - vm->barrier_epoch;
1569
1570   minimum_open = t_closed_total * BARRIER_MINIMUM_OPEN_FACTOR;
1571
1572   if (minimum_open > BARRIER_MINIMUM_OPEN_LIMIT)
1573     {
1574       minimum_open = BARRIER_MINIMUM_OPEN_LIMIT;
1575     }
1576
1577   vm->barrier_no_close_before = now + minimum_open;
1578
1579   /* Record barrier epoch (used to enforce minimum open time) */
1580   vm->barrier_epoch = now;
1581
1582   barrier_trace_release (t_entry, t_closed_total, t_update_main);
1583
1584 }
1585
1586 /*
1587  * Check the frame queue to see if any frames are available.
1588  * If so, pull the packets off the frames and put them to
1589  * the handoff node.
1590  */
1591 int
1592 vlib_frame_queue_dequeue (vlib_main_t * vm, vlib_frame_queue_main_t * fqm)
1593 {
1594   u32 thread_id = vm->thread_index;
1595   vlib_frame_queue_t *fq = fqm->vlib_frame_queues[thread_id];
1596   vlib_frame_queue_elt_t *elt;
1597   u32 *from, *to;
1598   vlib_frame_t *f;
1599   int msg_type;
1600   int processed = 0;
1601   u32 n_left_to_node;
1602   u32 vectors = 0;
1603
1604   ASSERT (fq);
1605   ASSERT (vm == vlib_mains[thread_id]);
1606
1607   if (PREDICT_FALSE (fqm->node_index == ~0))
1608     return 0;
1609   /*
1610    * Gather trace data for frame queues
1611    */
1612   if (PREDICT_FALSE (fq->trace))
1613     {
1614       frame_queue_trace_t *fqt;
1615       frame_queue_nelt_counter_t *fqh;
1616       u32 elix;
1617
1618       fqt = &fqm->frame_queue_traces[thread_id];
1619
1620       fqt->nelts = fq->nelts;
1621       fqt->head = fq->head;
1622       fqt->head_hint = fq->head_hint;
1623       fqt->tail = fq->tail;
1624       fqt->threshold = fq->vector_threshold;
1625       fqt->n_in_use = fqt->tail - fqt->head;
1626       if (fqt->n_in_use >= fqt->nelts)
1627         {
1628           // if beyond max then use max
1629           fqt->n_in_use = fqt->nelts - 1;
1630         }
1631
1632       /* Record the number of elements in use in the histogram */
1633       fqh = &fqm->frame_queue_histogram[thread_id];
1634       fqh->count[fqt->n_in_use]++;
1635
1636       /* Record a snapshot of the elements in use */
1637       for (elix = 0; elix < fqt->nelts; elix++)
1638         {
1639           elt = fq->elts + ((fq->head + 1 + elix) & (fq->nelts - 1));
1640           if (1 || elt->valid)
1641             {
1642               fqt->n_vectors[elix] = elt->n_vectors;
1643             }
1644         }
1645       fqt->written = 1;
1646     }
1647
1648   while (1)
1649     {
1650       if (fq->head == fq->tail)
1651         {
1652           fq->head_hint = fq->head;
1653           return processed;
1654         }
1655
1656       elt = fq->elts + ((fq->head + 1) & (fq->nelts - 1));
1657
1658       if (!elt->valid)
1659         {
1660           fq->head_hint = fq->head;
1661           return processed;
1662         }
1663
1664       from = elt->buffer_index;
1665       msg_type = elt->msg_type;
1666
1667       ASSERT (msg_type == VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME);
1668       ASSERT (elt->n_vectors <= VLIB_FRAME_SIZE);
1669
1670       f = vlib_get_frame_to_node (vm, fqm->node_index);
1671
1672       to = vlib_frame_vector_args (f);
1673
1674       n_left_to_node = elt->n_vectors;
1675
1676       while (n_left_to_node >= 4)
1677         {
1678           to[0] = from[0];
1679           to[1] = from[1];
1680           to[2] = from[2];
1681           to[3] = from[3];
1682           to += 4;
1683           from += 4;
1684           n_left_to_node -= 4;
1685         }
1686
1687       while (n_left_to_node > 0)
1688         {
1689           to[0] = from[0];
1690           to++;
1691           from++;
1692           n_left_to_node--;
1693         }
1694
1695       vectors += elt->n_vectors;
1696       f->n_vectors = elt->n_vectors;
1697       vlib_put_frame_to_node (vm, fqm->node_index, f);
1698
1699       elt->valid = 0;
1700       elt->n_vectors = 0;
1701       elt->msg_type = 0xfefefefe;
1702       CLIB_MEMORY_BARRIER ();
1703       fq->head++;
1704       processed++;
1705
1706       /*
1707        * Limit the number of packets pushed into the graph
1708        */
1709       if (vectors >= fq->vector_threshold)
1710         {
1711           fq->head_hint = fq->head;
1712           return processed;
1713         }
1714     }
1715   ASSERT (0);
1716   return processed;
1717 }
1718
1719 void
1720 vlib_worker_thread_fn (void *arg)
1721 {
1722   vlib_worker_thread_t *w = (vlib_worker_thread_t *) arg;
1723   vlib_thread_main_t *tm = vlib_get_thread_main ();
1724   vlib_main_t *vm = vlib_get_main ();
1725   clib_error_t *e;
1726
1727   ASSERT (vm->thread_index == vlib_get_thread_index ());
1728
1729   vlib_worker_thread_init (w);
1730   clib_time_init (&vm->clib_time);
1731   clib_mem_set_heap (w->thread_mheap);
1732
1733   /* Wait until the dpdk init sequence is complete */
1734   while (tm->extern_thread_mgmt && tm->worker_thread_release == 0)
1735     vlib_worker_thread_barrier_check ();
1736
1737   e = vlib_call_init_exit_functions
1738     (vm, vm->worker_init_function_registrations, 1 /* call_once */ );
1739   if (e)
1740     clib_error_report (e);
1741
1742   vlib_worker_loop (vm);
1743 }
1744
1745 /* *INDENT-OFF* */
1746 VLIB_REGISTER_THREAD (worker_thread_reg, static) = {
1747   .name = "workers",
1748   .short_name = "wk",
1749   .function = vlib_worker_thread_fn,
1750 };
1751 /* *INDENT-ON* */
1752
1753 u32
1754 vlib_frame_queue_main_init (u32 node_index, u32 frame_queue_nelts)
1755 {
1756   vlib_thread_main_t *tm = vlib_get_thread_main ();
1757   vlib_frame_queue_main_t *fqm;
1758   vlib_frame_queue_t *fq;
1759   int i;
1760
1761   if (frame_queue_nelts == 0)
1762     frame_queue_nelts = FRAME_QUEUE_NELTS;
1763
1764   vec_add2 (tm->frame_queue_mains, fqm, 1);
1765
1766   fqm->node_index = node_index;
1767
1768   vec_validate (fqm->vlib_frame_queues, tm->n_vlib_mains - 1);
1769   _vec_len (fqm->vlib_frame_queues) = 0;
1770   for (i = 0; i < tm->n_vlib_mains; i++)
1771     {
1772       fq = vlib_frame_queue_alloc (frame_queue_nelts);
1773       vec_add1 (fqm->vlib_frame_queues, fq);
1774     }
1775
1776   return (fqm - tm->frame_queue_mains);
1777 }
1778
1779 int
1780 vlib_thread_cb_register (struct vlib_main_t *vm, vlib_thread_callbacks_t * cb)
1781 {
1782   vlib_thread_main_t *tm = vlib_get_thread_main ();
1783
1784   if (tm->extern_thread_mgmt)
1785     return -1;
1786
1787   tm->cb.vlib_launch_thread_cb = cb->vlib_launch_thread_cb;
1788   tm->extern_thread_mgmt = 1;
1789   return 0;
1790 }
1791
1792 void
1793 vlib_process_signal_event_mt_helper (vlib_process_signal_event_mt_args_t *
1794                                      args)
1795 {
1796   ASSERT (vlib_get_thread_index () == 0);
1797   vlib_process_signal_event (vlib_get_main (), args->node_index,
1798                              args->type_opaque, args->data);
1799 }
1800
1801 void *rpc_call_main_thread_cb_fn;
1802
1803 void
1804 vlib_rpc_call_main_thread (void *callback, u8 * args, u32 arg_size)
1805 {
1806   if (rpc_call_main_thread_cb_fn)
1807     {
1808       void (*fp) (void *, u8 *, u32) = rpc_call_main_thread_cb_fn;
1809       (*fp) (callback, args, arg_size);
1810     }
1811   else
1812     clib_warning ("BUG: rpc_call_main_thread_cb_fn NULL!");
1813 }
1814
1815 clib_error_t *
1816 threads_init (vlib_main_t * vm)
1817 {
1818   return 0;
1819 }
1820
1821 VLIB_INIT_FUNCTION (threads_init);
1822
1823 /*
1824  * fd.io coding-style-patch-verification: ON
1825  *
1826  * Local Variables:
1827  * eval: (c-set-style "gnu")
1828  * End:
1829  */