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