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