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