blob: b2a2f6939e6395e5d0395297fa9dbcc4e26c15e8 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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 */
Christophe Fontainefef15b42016-04-09 12:38:49 +090015#define _GNU_SOURCE
Christophe Fontainefef15b42016-04-09 12:38:49 +090016
Ed Warnickecb9cada2015-12-08 15:45:58 -070017#include <signal.h>
18#include <math.h>
19#include <vppinfra/format.h>
Mohsin Kazmi5d64c782018-09-11 20:27:09 +020020#include <vppinfra/linux/sysfs.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070021#include <vlib/vlib.h>
22
23#include <vlib/threads.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070024#include <vlib/unix/cj.h>
25
Ole Troan233e4682019-05-16 15:01:34 +020026#include <vlib/stat_weak_inlines.h>
27
Ed Warnickecb9cada2015-12-08 15:45:58 -070028DECLARE_CJ_GLOBAL_LOG;
29
Ed Warnickecb9cada2015-12-08 15:45:58 -070030
Dave Barach9b8ffd92016-07-08 08:13:45 -040031u32
32vl (void *p)
Ed Warnickecb9cada2015-12-08 15:45:58 -070033{
34 return vec_len (p);
35}
36
Damjan Marion6a7acc22016-12-19 16:28:36 +010037vlib_worker_thread_t *vlib_worker_threads;
Ed Warnickecb9cada2015-12-08 15:45:58 -070038vlib_thread_main_t vlib_thread_main;
39
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010040/*
41 * Barrier tracing can be enabled on a normal build to collect information
42 * on barrier use, including timings and call stacks. Deliberately not
43 * keyed off CLIB_DEBUG, because that can add significant overhead which
44 * imapacts observed timings.
45 */
46
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010047static inline void
48barrier_trace_sync (f64 t_entry, f64 t_open, f64 t_closed)
49{
Dave Barach88c6e002018-09-30 15:54:06 -040050 if (!vlib_worker_threads->barrier_elog_enabled)
51 return;
52
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010053 /* *INDENT-OFF* */
54 ELOG_TYPE_DECLARE (e) =
55 {
Dave Barach88c6e002018-09-30 15:54:06 -040056 .format = "bar-trace-%s-#%d",
57 .format_args = "T4i4",
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010058 };
59 /* *INDENT-ON* */
60 struct
61 {
Dave Barach88c6e002018-09-30 15:54:06 -040062 u32 caller, count, t_entry, t_open, t_closed;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010063 } *ed = 0;
64
65 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
66 ed->count = (int) vlib_worker_threads[0].barrier_sync_count;
Dave Barachb09f4d02019-07-15 16:00:03 -040067 ed->caller = elog_string (&vlib_global_main.elog_main,
68 (char *) vlib_worker_threads[0].barrier_caller);
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010069 ed->t_entry = (int) (1000000.0 * t_entry);
70 ed->t_open = (int) (1000000.0 * t_open);
71 ed->t_closed = (int) (1000000.0 * t_closed);
72}
73
74static inline void
75barrier_trace_sync_rec (f64 t_entry)
76{
Dave Barach88c6e002018-09-30 15:54:06 -040077 if (!vlib_worker_threads->barrier_elog_enabled)
78 return;
79
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010080 /* *INDENT-OFF* */
81 ELOG_TYPE_DECLARE (e) =
82 {
Dave Barach88c6e002018-09-30 15:54:06 -040083 .format = "bar-syncrec-%s-#%d",
84 .format_args = "T4i4",
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010085 };
86 /* *INDENT-ON* */
87 struct
88 {
Dave Barach88c6e002018-09-30 15:54:06 -040089 u32 caller, depth;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010090 } *ed = 0;
91
92 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
93 ed->depth = (int) vlib_worker_threads[0].recursion_level - 1;
Dave Barachb09f4d02019-07-15 16:00:03 -040094 ed->caller = elog_string (&vlib_global_main.elog_main,
95 (char *) vlib_worker_threads[0].barrier_caller);
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010096}
97
98static inline void
99barrier_trace_release_rec (f64 t_entry)
100{
Dave Barach88c6e002018-09-30 15:54:06 -0400101 if (!vlib_worker_threads->barrier_elog_enabled)
102 return;
103
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100104 /* *INDENT-OFF* */
105 ELOG_TYPE_DECLARE (e) =
106 {
Dave Barach88c6e002018-09-30 15:54:06 -0400107 .format = "bar-relrrec-#%d",
108 .format_args = "i4",
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100109 };
110 /* *INDENT-ON* */
111 struct
112 {
Dave Barach88c6e002018-09-30 15:54:06 -0400113 u32 depth;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100114 } *ed = 0;
115
116 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100117 ed->depth = (int) vlib_worker_threads[0].recursion_level;
118}
119
120static inline void
121barrier_trace_release (f64 t_entry, f64 t_closed_total, f64 t_update_main)
122{
Dave Barach88c6e002018-09-30 15:54:06 -0400123 if (!vlib_worker_threads->barrier_elog_enabled)
124 return;
125
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100126 /* *INDENT-OFF* */
127 ELOG_TYPE_DECLARE (e) =
128 {
Dave Barach88c6e002018-09-30 15:54:06 -0400129 .format = "bar-rel-#%d-e%d-u%d-t%d",
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100130 .format_args = "i4i4i4i4",
131 };
132 /* *INDENT-ON* */
133 struct
134 {
Dave Barach88c6e002018-09-30 15:54:06 -0400135 u32 count, t_entry, t_update_main, t_closed_total;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100136 } *ed = 0;
137
138 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
139 ed->t_entry = (int) (1000000.0 * t_entry);
140 ed->t_update_main = (int) (1000000.0 * t_update_main);
141 ed->t_closed_total = (int) (1000000.0 * t_closed_total);
142 ed->count = (int) vlib_worker_threads[0].barrier_sync_count;
143
144 /* Reset context for next trace */
145 vlib_worker_threads[0].barrier_context = NULL;
146}
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100147
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148uword
Damjan Marionf55f9b82017-05-10 21:06:28 +0200149os_get_nthreads (void)
Dave Barach01d86c72016-08-08 15:13:42 -0400150{
Dave Barach2180bac2019-05-10 15:25:10 -0400151 return vec_len (vlib_thread_stacks);
Dave Barach01d86c72016-08-08 15:13:42 -0400152}
153
Ed Warnickecb9cada2015-12-08 15:45:58 -0700154void
155vlib_set_thread_name (char *name)
156{
157 int pthread_setname_np (pthread_t __target_thread, const char *__name);
Dave Barachb2a6e252016-07-27 10:00:58 -0400158 int rv;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400159 pthread_t thread = pthread_self ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160
Dave Barach9b8ffd92016-07-08 08:13:45 -0400161 if (thread)
Dave Barachb2a6e252016-07-27 10:00:58 -0400162 {
163 rv = pthread_setname_np (thread, name);
164 if (rv)
Ed Warnicke853e7202016-08-12 11:42:26 -0700165 clib_warning ("pthread_setname_np returned %d", rv);
Dave Barachb2a6e252016-07-27 10:00:58 -0400166 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167}
168
Dave Barach9b8ffd92016-07-08 08:13:45 -0400169static int
170sort_registrations_by_no_clone (void *a0, void *a1)
171{
172 vlib_thread_registration_t **tr0 = a0;
173 vlib_thread_registration_t **tr1 = a1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174
Dave Barach9b8ffd92016-07-08 08:13:45 -0400175 return ((i32) ((*tr0)->no_data_structure_clone)
176 - ((i32) ((*tr1)->no_data_structure_clone)));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177}
178
179static uword *
Damjan Marion01914ce2017-09-14 19:04:50 +0200180clib_sysfs_list_to_bitmap (char *filename)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181{
182 FILE *fp;
183 uword *r = 0;
184
185 fp = fopen (filename, "r");
186
187 if (fp != NULL)
188 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400189 u8 *buffer = 0;
190 vec_validate (buffer, 256 - 1);
191 if (fgets ((char *) buffer, 256, fp))
192 {
193 unformat_input_t in;
194 unformat_init_string (&in, (char *) buffer,
195 strlen ((char *) buffer));
Dave Barachb2a6e252016-07-27 10:00:58 -0400196 if (unformat (&in, "%U", unformat_bitmap_list, &r) != 1)
Ed Warnicke853e7202016-08-12 11:42:26 -0700197 clib_warning ("unformat_bitmap_list failed");
Dave Barach9b8ffd92016-07-08 08:13:45 -0400198 unformat_free (&in);
199 }
200 vec_free (buffer);
201 fclose (fp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202 }
203 return r;
204}
205
206
207/* Called early in the init sequence */
208
209clib_error_t *
210vlib_thread_init (vlib_main_t * vm)
211{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400212 vlib_thread_main_t *tm = &vlib_thread_main;
213 vlib_worker_thread_t *w;
214 vlib_thread_registration_t *tr;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215 u32 n_vlib_mains = 1;
216 u32 first_index = 1;
217 u32 i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400218 uword *avail_cpu;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700219
220 /* get bitmaps of active cpu cores and sockets */
221 tm->cpu_core_bitmap =
Damjan Marion01914ce2017-09-14 19:04:50 +0200222 clib_sysfs_list_to_bitmap ("/sys/devices/system/cpu/online");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223 tm->cpu_socket_bitmap =
Damjan Marion01914ce2017-09-14 19:04:50 +0200224 clib_sysfs_list_to_bitmap ("/sys/devices/system/node/online");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225
Dave Barach9b8ffd92016-07-08 08:13:45 -0400226 avail_cpu = clib_bitmap_dup (tm->cpu_core_bitmap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227
228 /* skip cores */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400229 for (i = 0; i < tm->skip_cores; i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700230 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400231 uword c = clib_bitmap_first_set (avail_cpu);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232 if (c == ~0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400233 return clib_error_return (0, "no available cpus to skip");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234
Dave Barach9b8ffd92016-07-08 08:13:45 -0400235 avail_cpu = clib_bitmap_set (avail_cpu, c, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236 }
237
238 /* grab cpu for main thread */
Damjan Marion858151f2018-07-11 10:51:00 +0200239 if (tm->main_lcore == ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700240 {
Damjan Marion858151f2018-07-11 10:51:00 +0200241 /* if main-lcore is not set, we try to use lcore 1 */
242 if (clib_bitmap_get (avail_cpu, 1))
243 tm->main_lcore = 1;
244 else
245 tm->main_lcore = clib_bitmap_first_set (avail_cpu);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400246 if (tm->main_lcore == (u8) ~ 0)
247 return clib_error_return (0, "no available cpus to be used for the"
248 " main thread");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249 }
250 else
251 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400252 if (clib_bitmap_get (avail_cpu, tm->main_lcore) == 0)
253 return clib_error_return (0, "cpu %u is not available to be used"
254 " for the main thread", tm->main_lcore);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400256 avail_cpu = clib_bitmap_set (avail_cpu, tm->main_lcore, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257
Jon Loeliger4a068462020-01-31 13:34:56 -0600258 /*
259 * Determine if the number of workers is greater than 0.
260 * If so, mark CPU 0 unavailable so workers will be numbered after main.
261 */
262 u32 n_workers = 0;
263 uword *p = hash_get_mem (tm->thread_registrations_by_name, "workers");
264 if (p != 0)
265 {
266 vlib_thread_registration_t *tr = (vlib_thread_registration_t *) p[0];
267 int worker_thread_count = tr->count;
268 n_workers = worker_thread_count;
269 }
270 if (tm->skip_cores == 0 && n_workers)
271 avail_cpu = clib_bitmap_set (avail_cpu, 0, 0);
272
Ed Warnickecb9cada2015-12-08 15:45:58 -0700273 /* assume that there is socket 0 only if there is no data from sysfs */
274 if (!tm->cpu_socket_bitmap)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400275 tm->cpu_socket_bitmap = clib_bitmap_set (0, 0, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276
Christophe Fontainefef15b42016-04-09 12:38:49 +0900277 /* pin main thread to main_lcore */
Damjan Marion878c6092017-01-04 13:19:27 +0100278 if (tm->cb.vlib_thread_set_lcore_cb)
279 {
280 tm->cb.vlib_thread_set_lcore_cb (0, tm->main_lcore);
281 }
Damjan Marion858151f2018-07-11 10:51:00 +0200282 else
283 {
284 cpu_set_t cpuset;
285 CPU_ZERO (&cpuset);
286 CPU_SET (tm->main_lcore, &cpuset);
287 pthread_setaffinity_np (pthread_self (), sizeof (cpu_set_t), &cpuset);
288 }
Christophe Fontainefef15b42016-04-09 12:38:49 +0900289
Dave Barach2180bac2019-05-10 15:25:10 -0400290 /* Set up thread 0 */
291 vec_validate_aligned (vlib_worker_threads, 0, CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400292 _vec_len (vlib_worker_threads) = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293 w = vlib_worker_threads;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400294 w->thread_mheap = clib_mem_get_heap ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700295 w->thread_stack = vlib_thread_stacks[0];
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200296 w->cpu_id = tm->main_lcore;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400297 w->lwp = syscall (SYS_gettid);
Pavel Kotucek98765202016-10-07 08:37:28 +0200298 w->thread_id = pthread_self ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299 tm->n_vlib_mains = 1;
300
Jon Loeligerf617b142020-01-30 18:37:47 -0600301 vlib_get_thread_core_numa (w, w->cpu_id);
302
Pavel Kotucek1e765832016-09-23 08:54:14 +0200303 if (tm->sched_policy != ~0)
304 {
305 struct sched_param sched_param;
306 if (!sched_getparam (w->lwp, &sched_param))
307 {
308 if (tm->sched_priority != ~0)
309 sched_param.sched_priority = tm->sched_priority;
310 sched_setscheduler (w->lwp, tm->sched_policy, &sched_param);
311 }
312 }
313
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314 /* assign threads to cores and set n_vlib_mains */
315 tr = tm->next;
316
317 while (tr)
318 {
319 vec_add1 (tm->registrations, tr);
320 tr = tr->next;
321 }
322
Dave Barach9b8ffd92016-07-08 08:13:45 -0400323 vec_sort_with_function (tm->registrations, sort_registrations_by_no_clone);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700324
325 for (i = 0; i < vec_len (tm->registrations); i++)
326 {
327 int j;
328 tr = tm->registrations[i];
329 tr->first_index = first_index;
330 first_index += tr->count;
331 n_vlib_mains += (tr->no_data_structure_clone == 0) ? tr->count : 0;
332
333 /* construct coremask */
334 if (tr->use_pthreads || !tr->count)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400335 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700336
337 if (tr->coremask)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400338 {
339 uword c;
340 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700341 clib_bitmap_foreach (c, tr->coremask, ({
342 if (clib_bitmap_get(avail_cpu, c) == 0)
343 return clib_error_return (0, "cpu %u is not available to be used"
344 " for the '%s' thread",c, tr->name);
345
346 avail_cpu = clib_bitmap_set(avail_cpu, c, 0);
347 }));
Dave Barach2180bac2019-05-10 15:25:10 -0400348 /* *INDENT-ON* */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400349 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700350 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400351 {
352 for (j = 0; j < tr->count; j++)
353 {
354 uword c = clib_bitmap_first_set (avail_cpu);
355 if (c == ~0)
356 return clib_error_return (0,
357 "no available cpus to be used for"
358 " the '%s' thread", tr->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700359
Dave Barach9b8ffd92016-07-08 08:13:45 -0400360 avail_cpu = clib_bitmap_set (avail_cpu, c, 0);
361 tr->coremask = clib_bitmap_set (tr->coremask, c, 1);
362 }
363 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700364 }
365
Dave Barach9b8ffd92016-07-08 08:13:45 -0400366 clib_bitmap_free (avail_cpu);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367
368 tm->n_vlib_mains = n_vlib_mains;
369
Dave Barach2180bac2019-05-10 15:25:10 -0400370 /*
371 * Allocate the remaining worker threads, and thread stack vector slots
372 * from now on, calls to os_get_nthreads() will return the correct
373 * answer.
374 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400375 vec_validate_aligned (vlib_worker_threads, first_index - 1,
376 CLIB_CACHE_LINE_BYTES);
Dave Barach2180bac2019-05-10 15:25:10 -0400377 vec_validate (vlib_thread_stacks, vec_len (vlib_worker_threads) - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378 return 0;
379}
380
Dave Barach9b8ffd92016-07-08 08:13:45 -0400381vlib_frame_queue_t *
382vlib_frame_queue_alloc (int nelts)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400384 vlib_frame_queue_t *fq;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385
Dave Barach9b8ffd92016-07-08 08:13:45 -0400386 fq = clib_mem_alloc_aligned (sizeof (*fq), CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400387 clib_memset (fq, 0, sizeof (*fq));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700388 fq->nelts = nelts;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400389 fq->vector_threshold = 128; // packets
390 vec_validate_aligned (fq->elts, nelts - 1, CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700391
392 if (1)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400393 {
394 if (((uword) & fq->tail) & (CLIB_CACHE_LINE_BYTES - 1))
395 fformat (stderr, "WARNING: fq->tail unaligned\n");
396 if (((uword) & fq->head) & (CLIB_CACHE_LINE_BYTES - 1))
397 fformat (stderr, "WARNING: fq->head unaligned\n");
398 if (((uword) fq->elts) & (CLIB_CACHE_LINE_BYTES - 1))
399 fformat (stderr, "WARNING: fq->elts unaligned\n");
400
401 if (sizeof (fq->elts[0]) % CLIB_CACHE_LINE_BYTES)
402 fformat (stderr, "WARNING: fq->elts[0] size %d\n",
403 sizeof (fq->elts[0]));
404 if (nelts & (nelts - 1))
405 {
406 fformat (stderr, "FATAL: nelts MUST be a power of 2\n");
407 abort ();
408 }
409 }
410
Ed Warnickecb9cada2015-12-08 15:45:58 -0700411 return (fq);
412}
413
414void vl_msg_api_handler_no_free (void *) __attribute__ ((weak));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400415void
416vl_msg_api_handler_no_free (void *v)
417{
418}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700419
420/* Turned off, save as reference material... */
421#if 0
Dave Barach9b8ffd92016-07-08 08:13:45 -0400422static inline int
423vlib_frame_queue_dequeue_internal (int thread_id,
424 vlib_main_t * vm, vlib_node_main_t * nm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700425{
426 vlib_frame_queue_t *fq = vlib_frame_queues[thread_id];
427 vlib_frame_queue_elt_t *elt;
428 vlib_frame_t *f;
429 vlib_pending_frame_t *p;
430 vlib_node_runtime_t *r;
431 u32 node_runtime_index;
432 int msg_type;
433 u64 before;
434 int processed = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400435
436 ASSERT (vm == vlib_mains[thread_id]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700437
438 while (1)
439 {
440 if (fq->head == fq->tail)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400441 return processed;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700442
Dave Barach9b8ffd92016-07-08 08:13:45 -0400443 elt = fq->elts + ((fq->head + 1) & (fq->nelts - 1));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700444
445 if (!elt->valid)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400446 return processed;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700447
Dave Barach9b8ffd92016-07-08 08:13:45 -0400448 before = clib_cpu_time_now ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700449
450 f = elt->frame;
451 node_runtime_index = elt->node_runtime_index;
452 msg_type = elt->msg_type;
453
454 switch (msg_type)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400455 {
456 case VLIB_FRAME_QUEUE_ELT_FREE_BUFFERS:
457 vlib_buffer_free (vm, vlib_frame_vector_args (f), f->n_vectors);
458 /* note fallthrough... */
459 case VLIB_FRAME_QUEUE_ELT_FREE_FRAME:
460 r = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
461 node_runtime_index);
462 vlib_frame_free (vm, r, f);
463 break;
464 case VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME:
465 vec_add2 (vm->node_main.pending_frames, p, 1);
466 f->flags |= (VLIB_FRAME_PENDING | VLIB_FRAME_FREE_AFTER_DISPATCH);
467 p->node_runtime_index = elt->node_runtime_index;
468 p->frame_index = vlib_frame_index (vm, f);
469 p->next_frame_index = VLIB_PENDING_FRAME_NO_NEXT_FRAME;
470 fq->dequeue_vectors += (u64) f->n_vectors;
471 break;
472 case VLIB_FRAME_QUEUE_ELT_API_MSG:
473 vl_msg_api_handler_no_free (f);
474 break;
475 default:
476 clib_warning ("bogus frame queue message, type %d", msg_type);
477 break;
478 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700479 elt->valid = 0;
480 fq->dequeues++;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400481 fq->dequeue_ticks += clib_cpu_time_now () - before;
482 CLIB_MEMORY_BARRIER ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700483 fq->head++;
484 processed++;
485 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400486 ASSERT (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700487 return processed;
488}
489
Dave Barach9b8ffd92016-07-08 08:13:45 -0400490int
491vlib_frame_queue_dequeue (int thread_id,
492 vlib_main_t * vm, vlib_node_main_t * nm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700493{
494 return vlib_frame_queue_dequeue_internal (thread_id, vm, nm);
495}
496
Dave Barach9b8ffd92016-07-08 08:13:45 -0400497int
498vlib_frame_queue_enqueue (vlib_main_t * vm, u32 node_runtime_index,
499 u32 frame_queue_index, vlib_frame_t * frame,
500 vlib_frame_queue_msg_type_t type)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501{
502 vlib_frame_queue_t *fq = vlib_frame_queues[frame_queue_index];
503 vlib_frame_queue_elt_t *elt;
504 u32 save_count;
505 u64 new_tail;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400506 u64 before = clib_cpu_time_now ();
507
Ed Warnickecb9cada2015-12-08 15:45:58 -0700508 ASSERT (fq);
509
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000510 new_tail = clib_atomic_add_fetch (&fq->tail, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700511
512 /* Wait until a ring slot is available */
513 while (new_tail >= fq->head + fq->nelts)
514 {
515 f64 b4 = vlib_time_now_ticks (vm, before);
516 vlib_worker_thread_barrier_check (vm, b4);
517 /* Bad idea. Dequeue -> enqueue -> dequeue -> trouble */
Damjan Marion586afd72017-04-05 19:18:20 +0200518 // vlib_frame_queue_dequeue (vm->thread_index, vm, nm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700519 }
520
Dave Barach9b8ffd92016-07-08 08:13:45 -0400521 elt = fq->elts + (new_tail & (fq->nelts - 1));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700522
523 /* this would be very bad... */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400524 while (elt->valid)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700525 {
526 }
527
528 /* Once we enqueue the frame, frame->n_vectors is owned elsewhere... */
529 save_count = frame->n_vectors;
530
531 elt->frame = frame;
532 elt->node_runtime_index = node_runtime_index;
533 elt->msg_type = type;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400534 CLIB_MEMORY_BARRIER ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700535 elt->valid = 1;
536
537 return save_count;
538}
539#endif /* 0 */
540
541/* To be called by vlib worker threads upon startup */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400542void
543vlib_worker_thread_init (vlib_worker_thread_t * w)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700544{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400545 vlib_thread_main_t *tm = vlib_get_thread_main ();
546
Dave Barachfdf49442016-12-20 12:48:14 -0500547 /*
548 * Note: disabling signals in worker threads as follows
549 * prevents the api post-mortem dump scheme from working
550 * {
551 * sigset_t s;
552 * sigfillset (&s);
553 * pthread_sigmask (SIG_SETMASK, &s, 0);
554 * }
555 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700556
557 clib_mem_set_heap (w->thread_mheap);
558
Dave Barach9b8ffd92016-07-08 08:13:45 -0400559 if (vec_len (tm->thread_prefix) && w->registration->short_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700560 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400561 w->name = format (0, "%v_%s_%d%c", tm->thread_prefix,
562 w->registration->short_name, w->instance_id, '\0');
563 vlib_set_thread_name ((char *) w->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700564 }
565
566 if (!w->registration->use_pthreads)
567 {
568
569 /* Initial barrier sync, for both worker and i/o threads */
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000570 clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700571
572 while (*vlib_worker_threads->wait_at_barrier)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400573 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700574
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000575 clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, -1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700576 }
577}
578
Dave Barach9b8ffd92016-07-08 08:13:45 -0400579void *
580vlib_worker_thread_bootstrap_fn (void *arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700581{
582 void *rv;
583 vlib_worker_thread_t *w = arg;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400584
585 w->lwp = syscall (SYS_gettid);
Pavel Kotucek98765202016-10-07 08:37:28 +0200586 w->thread_id = pthread_self ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700587
Damjan Marionf55f9b82017-05-10 21:06:28 +0200588 __os_thread_index = w - vlib_worker_threads;
Damjan Marion586afd72017-04-05 19:18:20 +0200589
Dave Barach9b8ffd92016-07-08 08:13:45 -0400590 rv = (void *) clib_calljmp
591 ((uword (*)(uword)) w->thread_function,
592 (uword) arg, w->thread_stack + VLIB_THREAD_STACK_SIZE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700593 /* NOTREACHED, we hope */
594 return rv;
595}
596
Dave Baracha690fdb2020-01-21 12:34:55 -0500597void
598vlib_get_thread_core_numa (vlib_worker_thread_t * w, unsigned cpu_id)
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200599{
600 const char *sys_cpu_path = "/sys/devices/system/cpu/cpu";
601 u8 *p = 0;
Dave Baracha690fdb2020-01-21 12:34:55 -0500602 int core_id = -1, numa_id = -1;
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200603
604 p = format (p, "%s%u/topology/core_id%c", sys_cpu_path, cpu_id, 0);
605 clib_sysfs_read ((char *) p, "%d", &core_id);
606 vec_reset_length (p);
Florin Coras4c959952020-02-09 18:09:31 +0000607 p = format (p, "%s%u/topology/physical_package_id%c", sys_cpu_path,
608 cpu_id, 0);
Dave Baracha690fdb2020-01-21 12:34:55 -0500609 clib_sysfs_read ((char *) p, "%d", &numa_id);
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200610 vec_free (p);
611
612 w->core_id = core_id;
Dave Baracha690fdb2020-01-21 12:34:55 -0500613 w->numa_id = numa_id;
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200614}
615
Damjan Marion878c6092017-01-04 13:19:27 +0100616static clib_error_t *
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200617vlib_launch_thread_int (void *fp, vlib_worker_thread_t * w, unsigned cpu_id)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700618{
Damjan Marion878c6092017-01-04 13:19:27 +0100619 vlib_thread_main_t *tm = &vlib_thread_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400620 void *(*fp_arg) (void *) = fp;
Dave Baracha690fdb2020-01-21 12:34:55 -0500621 void *numa_heap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700622
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200623 w->cpu_id = cpu_id;
Dave Baracha690fdb2020-01-21 12:34:55 -0500624 vlib_get_thread_core_numa (w, cpu_id);
Dave Baracha690fdb2020-01-21 12:34:55 -0500625
626 /* Set up NUMA-bound heap if indicated */
627 if (clib_per_numa_mheaps[w->numa_id] == 0)
628 {
629 /* If the user requested a NUMA heap, create it... */
630 if (tm->numa_heap_size)
631 {
632 numa_heap = clib_mem_init_thread_safe_numa
Florin Coras4c959952020-02-09 18:09:31 +0000633 (0 /* DIY */ , tm->numa_heap_size, w->numa_id);
Dave Baracha690fdb2020-01-21 12:34:55 -0500634 clib_per_numa_mheaps[w->numa_id] = numa_heap;
635 }
636 else
637 {
638 /* Or, use the main heap */
639 clib_per_numa_mheaps[w->numa_id] = w->thread_mheap;
640 }
641 }
642
Damjan Marion878c6092017-01-04 13:19:27 +0100643 if (tm->cb.vlib_launch_thread_cb && !w->registration->use_pthreads)
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200644 return tm->cb.vlib_launch_thread_cb (fp, (void *) w, cpu_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700645 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400646 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400647 pthread_t worker;
648 cpu_set_t cpuset;
649 CPU_ZERO (&cpuset);
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200650 CPU_SET (cpu_id, &cpuset);
Christophe Fontainefef15b42016-04-09 12:38:49 +0900651
Damjan Marion878c6092017-01-04 13:19:27 +0100652 if (pthread_create (&worker, NULL /* attr */ , fp_arg, (void *) w))
653 return clib_error_return_unix (0, "pthread_create");
654
655 if (pthread_setaffinity_np (worker, sizeof (cpu_set_t), &cpuset))
656 return clib_error_return_unix (0, "pthread_setaffinity_np");
657
658 return 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400659 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700660}
661
Dave Barach9b8ffd92016-07-08 08:13:45 -0400662static clib_error_t *
663start_workers (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700664{
665 int i, j;
666 vlib_worker_thread_t *w;
667 vlib_main_t *vm_clone;
668 void *oldheap;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400669 vlib_thread_main_t *tm = &vlib_thread_main;
670 vlib_thread_registration_t *tr;
671 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700672 u32 n_vlib_mains = tm->n_vlib_mains;
673 u32 worker_thread_index;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400674 u8 *main_heap = clib_mem_get_per_cpu_heap ();
Dave Barach9b8ffd92016-07-08 08:13:45 -0400675
Ed Warnickecb9cada2015-12-08 15:45:58 -0700676 vec_reset_length (vlib_worker_threads);
677
678 /* Set up the main thread */
679 vec_add2_aligned (vlib_worker_threads, w, 1, CLIB_CACHE_LINE_BYTES);
Dave Barach3e7deb12016-02-05 16:29:53 -0500680 w->elog_track.name = "main thread";
Ed Warnickecb9cada2015-12-08 15:45:58 -0700681 elog_track_register (&vm->elog_main, &w->elog_track);
682
Dave Barach9b8ffd92016-07-08 08:13:45 -0400683 if (vec_len (tm->thread_prefix))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700684 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400685 w->name = format (0, "%v_main%c", tm->thread_prefix, '\0');
686 vlib_set_thread_name ((char *) w->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700687 }
688
Dave Barach9b8ffd92016-07-08 08:13:45 -0400689 vm->elog_main.lock =
690 clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES, CLIB_CACHE_LINE_BYTES);
Dave Barach848191d2016-04-28 16:24:15 -0400691 vm->elog_main.lock[0] = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400692
Ed Warnickecb9cada2015-12-08 15:45:58 -0700693 if (n_vlib_mains > 1)
694 {
Dave Barach80f54e22017-03-08 19:08:56 -0500695 /* Replace hand-crafted length-1 vector with a real vector */
696 vlib_mains = 0;
697
698 vec_validate_aligned (vlib_mains, tm->n_vlib_mains - 1,
699 CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700700 _vec_len (vlib_mains) = 0;
Dave Barach80f54e22017-03-08 19:08:56 -0500701 vec_add1_aligned (vlib_mains, vm, CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700702
Dave Barach9b8ffd92016-07-08 08:13:45 -0400703 vlib_worker_threads->wait_at_barrier =
704 clib_mem_alloc_aligned (sizeof (u32), CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700705 vlib_worker_threads->workers_at_barrier =
Dave Barach9b8ffd92016-07-08 08:13:45 -0400706 clib_mem_alloc_aligned (sizeof (u32), CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700707
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100708 vlib_worker_threads->node_reforks_required =
709 clib_mem_alloc_aligned (sizeof (u32), CLIB_CACHE_LINE_BYTES);
710
Dave Barachf6c68d72018-11-01 08:12:52 -0400711 /* We'll need the rpc vector lock... */
712 clib_spinlock_init (&vm->pending_rpc_lock);
713
Ed Warnickecb9cada2015-12-08 15:45:58 -0700714 /* Ask for an initial barrier sync */
715 *vlib_worker_threads->workers_at_barrier = 0;
716 *vlib_worker_threads->wait_at_barrier = 1;
717
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100718 /* Without update or refork */
719 *vlib_worker_threads->node_reforks_required = 0;
720 vm->need_vlib_worker_thread_node_runtime_update = 0;
721
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100722 /* init timing */
723 vm->barrier_epoch = 0;
724 vm->barrier_no_close_before = 0;
725
Ed Warnickecb9cada2015-12-08 15:45:58 -0700726 worker_thread_index = 1;
727
Dave Barach9b8ffd92016-07-08 08:13:45 -0400728 for (i = 0; i < vec_len (tm->registrations); i++)
729 {
730 vlib_node_main_t *nm, *nm_clone;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400731 int k;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700732
Dave Barach9b8ffd92016-07-08 08:13:45 -0400733 tr = tm->registrations[i];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700734
Dave Barach9b8ffd92016-07-08 08:13:45 -0400735 if (tr->count == 0)
736 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700737
Dave Barach9b8ffd92016-07-08 08:13:45 -0400738 for (k = 0; k < tr->count; k++)
739 {
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100740 vlib_node_t *n;
741
Dave Barach9b8ffd92016-07-08 08:13:45 -0400742 vec_add2 (vlib_worker_threads, w, 1);
Dave Barach6a5adc32018-07-04 10:56:23 -0400743 /* Currently unused, may not really work */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400744 if (tr->mheap_size)
Dave Barach6a5adc32018-07-04 10:56:23 -0400745 {
746#if USE_DLMALLOC == 0
747 w->thread_mheap =
748 mheap_alloc (0 /* use VM */ , tr->mheap_size);
749#else
750 w->thread_mheap = create_mspace (tr->mheap_size,
751 0 /* unlocked */ );
752#endif
753 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400754 else
755 w->thread_mheap = main_heap;
Damjan Marion586afd72017-04-05 19:18:20 +0200756
757 w->thread_stack =
758 vlib_thread_stack_init (w - vlib_worker_threads);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400759 w->thread_function = tr->function;
760 w->thread_function_arg = w;
761 w->instance_id = k;
762 w->registration = tr;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700763
Dave Barach9b8ffd92016-07-08 08:13:45 -0400764 w->elog_track.name =
765 (char *) format (0, "%s %d", tr->name, k + 1);
766 vec_add1 (w->elog_track.name, 0);
767 elog_track_register (&vm->elog_main, &w->elog_track);
Bud Grise68adab92016-02-12 10:36:11 -0500768
Dave Barach9b8ffd92016-07-08 08:13:45 -0400769 if (tr->no_data_structure_clone)
770 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700771
Dave Barach9b8ffd92016-07-08 08:13:45 -0400772 /* Fork vlib_global_main et al. Look for bugs here */
773 oldheap = clib_mem_set_heap (w->thread_mheap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700774
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200775 vm_clone = clib_mem_alloc_aligned (sizeof (*vm_clone),
776 CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400777 clib_memcpy (vm_clone, vlib_mains[0], sizeof (*vm_clone));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700778
Damjan Marion586afd72017-04-05 19:18:20 +0200779 vm_clone->thread_index = worker_thread_index;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400780 vm_clone->heap_base = w->thread_mheap;
Dave Barach6a5adc32018-07-04 10:56:23 -0400781 vm_clone->heap_aligned_base = (void *)
782 (((uword) w->thread_mheap) & ~(VLIB_FRAME_ALIGN - 1));
Damjan Marione9f929b2017-03-16 11:32:09 +0100783 vm_clone->init_functions_called =
784 hash_create (0, /* value bytes */ 0);
Dave Barach2877eee2017-12-15 12:22:57 -0500785 vm_clone->pending_rpc_requests = 0;
786 vec_validate (vm_clone->pending_rpc_requests, 0);
787 _vec_len (vm_clone->pending_rpc_requests) = 0;
Dave Barachb7b92992018-10-17 10:38:51 -0400788 clib_memset (&vm_clone->random_buffer, 0,
789 sizeof (vm_clone->random_buffer));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700790
Dave Barach9b8ffd92016-07-08 08:13:45 -0400791 nm = &vlib_mains[0]->node_main;
792 nm_clone = &vm_clone->node_main;
793 /* fork next frames array, preserving node runtime indices */
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200794 nm_clone->next_frames = vec_dup_aligned (nm->next_frames,
795 CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400796 for (j = 0; j < vec_len (nm_clone->next_frames); j++)
797 {
798 vlib_next_frame_t *nf = &nm_clone->next_frames[j];
799 u32 save_node_runtime_index;
800 u32 save_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801
Dave Barach9b8ffd92016-07-08 08:13:45 -0400802 save_node_runtime_index = nf->node_runtime_index;
803 save_flags = nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH;
804 vlib_next_frame_init (nf);
805 nf->node_runtime_index = save_node_runtime_index;
806 nf->flags = save_flags;
807 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700808
Dave Barach9b8ffd92016-07-08 08:13:45 -0400809 /* fork the frame dispatch queue */
810 nm_clone->pending_frames = 0;
Dave Barach53fe4a72019-01-26 09:50:26 -0500811 vec_validate (nm_clone->pending_frames, 10);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400812 _vec_len (nm_clone->pending_frames) = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700813
Dave Barach9b8ffd92016-07-08 08:13:45 -0400814 /* fork nodes */
815 nm_clone->nodes = 0;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100816
817 /* Allocate all nodes in single block for speed */
818 n = clib_mem_alloc_no_fail (vec_len (nm->nodes) * sizeof (*n));
819
Dave Barach9b8ffd92016-07-08 08:13:45 -0400820 for (j = 0; j < vec_len (nm->nodes); j++)
821 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400822 clib_memcpy (n, nm->nodes[j], sizeof (*n));
823 /* none of the copied nodes have enqueue rights given out */
824 n->owner_node_index = VLIB_INVALID_NODE_INDEX;
Dave Barachb7b92992018-10-17 10:38:51 -0400825 clib_memset (&n->stats_total, 0, sizeof (n->stats_total));
826 clib_memset (&n->stats_last_clear, 0,
827 sizeof (n->stats_last_clear));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400828 vec_add1 (nm_clone->nodes, n);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100829 n++;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400830 }
831 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200832 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
833 CLIB_CACHE_LINE_BYTES);
JingLiuZTE30af5da2017-07-24 10:53:31 +0800834 vec_foreach (rt,
835 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL])
Damjan Marione9f929b2017-03-16 11:32:09 +0100836 {
837 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
Damjan Marion586afd72017-04-05 19:18:20 +0200838 rt->thread_index = vm_clone->thread_index;
Damjan Marione9f929b2017-03-16 11:32:09 +0100839 /* copy initial runtime_data from node */
Damjan Marionb6f93a12017-03-16 17:46:41 +0100840 if (n->runtime_data && n->runtime_data_bytes > 0)
Damjan Marione9f929b2017-03-16 11:32:09 +0100841 clib_memcpy (rt->runtime_data, n->runtime_data,
Damjan Marionb6f93a12017-03-16 17:46:41 +0100842 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
843 n->runtime_data_bytes));
Damjan Marione9f929b2017-03-16 11:32:09 +0100844 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700845
Dave Barach9b8ffd92016-07-08 08:13:45 -0400846 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200847 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
848 CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400849 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT])
Damjan Marione9f929b2017-03-16 11:32:09 +0100850 {
851 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
Damjan Marion586afd72017-04-05 19:18:20 +0200852 rt->thread_index = vm_clone->thread_index;
Damjan Marione9f929b2017-03-16 11:32:09 +0100853 /* copy initial runtime_data from node */
Damjan Marionb6f93a12017-03-16 17:46:41 +0100854 if (n->runtime_data && n->runtime_data_bytes > 0)
Damjan Marione9f929b2017-03-16 11:32:09 +0100855 clib_memcpy (rt->runtime_data, n->runtime_data,
Damjan Marionb6f93a12017-03-16 17:46:41 +0100856 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
857 n->runtime_data_bytes));
Damjan Marione9f929b2017-03-16 11:32:09 +0100858 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700859
Dave Barach53fe4a72019-01-26 09:50:26 -0500860 nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT] =
861 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT],
862 CLIB_CACHE_LINE_BYTES);
863 vec_foreach (rt,
864 nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_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
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200875 nm_clone->processes = vec_dup_aligned (nm->processes,
876 CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700877
Dave Barach593eedf2019-03-10 09:44:51 -0400878 /* Create per-thread frame freelist */
879 nm_clone->frame_sizes = vec_new (vlib_frame_size_t, 1);
880#ifdef VLIB_SUPPORTS_ARBITRARY_SCALAR_SIZES
Florin Coras93992a92017-05-24 18:03:56 -0700881 nm_clone->frame_size_hash = hash_create (0, sizeof (uword));
Dave Barach593eedf2019-03-10 09:44:51 -0400882#endif
Dave Barach687c9022019-07-23 10:22:31 -0400883 nm_clone->node_by_error = nm->node_by_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700884
Dave Barach9b8ffd92016-07-08 08:13:45 -0400885 /* Packet trace buffers are guaranteed to be empty, nothing to do here */
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100886
Dave Barach9b8ffd92016-07-08 08:13:45 -0400887 clib_mem_set_heap (oldheap);
Dave Barach80f54e22017-03-08 19:08:56 -0500888 vec_add1_aligned (vlib_mains, vm_clone, CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700889
Ole Troan233e4682019-05-16 15:01:34 +0200890 /* Switch to the stats segment ... */
891 void *oldheap = vlib_stats_push_heap (0);
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200892 vm_clone->error_main.counters = vec_dup_aligned
893 (vlib_mains[0]->error_main.counters, CLIB_CACHE_LINE_BYTES);
Ole Troan233e4682019-05-16 15:01:34 +0200894 vlib_stats_pop_heap2 (vm_clone->error_main.counters,
895 worker_thread_index, oldheap, 1);
896
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200897 vm_clone->error_main.counters_last_clear = vec_dup_aligned
898 (vlib_mains[0]->error_main.counters_last_clear,
899 CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700900
Dave Barach9b8ffd92016-07-08 08:13:45 -0400901 worker_thread_index++;
902 }
903 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700904 }
905 else
906 {
907 /* only have non-data-structure copy threads to create... */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400908 for (i = 0; i < vec_len (tm->registrations); i++)
909 {
910 tr = tm->registrations[i];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700911
Dave Barach9b8ffd92016-07-08 08:13:45 -0400912 for (j = 0; j < tr->count; j++)
913 {
914 vec_add2 (vlib_worker_threads, w, 1);
915 if (tr->mheap_size)
Dave Barach6a5adc32018-07-04 10:56:23 -0400916 {
917#if USE_DLMALLOC == 0
918 w->thread_mheap =
919 mheap_alloc (0 /* use VM */ , tr->mheap_size);
920#else
921 w->thread_mheap =
922 create_mspace (tr->mheap_size, 0 /* locked */ );
923#endif
924 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400925 else
926 w->thread_mheap = main_heap;
Damjan Marion586afd72017-04-05 19:18:20 +0200927 w->thread_stack =
928 vlib_thread_stack_init (w - vlib_worker_threads);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400929 w->thread_function = tr->function;
930 w->thread_function_arg = w;
931 w->instance_id = j;
932 w->elog_track.name =
933 (char *) format (0, "%s %d", tr->name, j + 1);
934 w->registration = tr;
935 vec_add1 (w->elog_track.name, 0);
936 elog_track_register (&vm->elog_main, &w->elog_track);
937 }
938 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700939 }
940
941 worker_thread_index = 1;
942
943 for (i = 0; i < vec_len (tm->registrations); i++)
944 {
Damjan Marion878c6092017-01-04 13:19:27 +0100945 clib_error_t *err;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700946 int j;
947
948 tr = tm->registrations[i];
949
950 if (tr->use_pthreads || tm->use_pthreads)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400951 {
952 for (j = 0; j < tr->count; j++)
953 {
954 w = vlib_worker_threads + worker_thread_index++;
Damjan Marion878c6092017-01-04 13:19:27 +0100955 err = vlib_launch_thread_int (vlib_worker_thread_bootstrap_fn,
956 w, 0);
957 if (err)
958 clib_error_report (err);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400959 }
960 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700961 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400962 {
963 uword c;
Damjan Marion878c6092017-01-04 13:19:27 +0100964 /* *INDENT-OFF* */
965 clib_bitmap_foreach (c, tr->coremask, ({
966 w = vlib_worker_threads + worker_thread_index++;
967 err = vlib_launch_thread_int (vlib_worker_thread_bootstrap_fn,
968 w, c);
969 if (err)
970 clib_error_report (err);
971 }));
972 /* *INDENT-ON* */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400973 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700974 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400975 vlib_worker_thread_barrier_sync (vm);
976 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700977 return 0;
978}
979
980VLIB_MAIN_LOOP_ENTER_FUNCTION (start_workers);
981
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100982
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100983static inline void
984worker_thread_node_runtime_update_internal (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700985{
986 int i, j;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700987 vlib_main_t *vm;
988 vlib_node_main_t *nm, *nm_clone;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700989 vlib_main_t *vm_clone;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100990 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700991 never_inline void
992 vlib_node_runtime_sync_stats (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400993 vlib_node_runtime_t * r,
994 uword n_calls,
995 uword n_vectors, uword n_clocks);
996
Damjan Marion586afd72017-04-05 19:18:20 +0200997 ASSERT (vlib_get_thread_index () == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700998
Ed Warnickecb9cada2015-12-08 15:45:58 -0700999 vm = vlib_mains[0];
1000 nm = &vm->node_main;
1001
Ed Warnickecb9cada2015-12-08 15:45:58 -07001002 ASSERT (*vlib_worker_threads->wait_at_barrier == 1);
1003
Dave Barach9b8ffd92016-07-08 08:13:45 -04001004 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -07001005 * Scrape all runtime stats, so we don't lose node runtime(s) with
1006 * pending counts, or throw away worker / io thread counts.
1007 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001008 for (j = 0; j < vec_len (nm->nodes); j++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001009 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001010 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001011 n = nm->nodes[j];
1012 vlib_node_sync_stats (vm, n);
1013 }
1014
1015 for (i = 1; i < vec_len (vlib_mains); i++)
1016 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001017 vlib_node_t *n;
1018
Ed Warnickecb9cada2015-12-08 15:45:58 -07001019 vm_clone = vlib_mains[i];
1020 nm_clone = &vm_clone->node_main;
1021
Dave Barach9b8ffd92016-07-08 08:13:45 -04001022 for (j = 0; j < vec_len (nm_clone->nodes); j++)
1023 {
1024 n = nm_clone->nodes[j];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001025
Dave Barach9b8ffd92016-07-08 08:13:45 -04001026 rt = vlib_node_get_runtime (vm_clone, n->index);
1027 vlib_node_runtime_sync_stats (vm_clone, rt, 0, 0, 0);
1028 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001029 }
1030
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001031 /* Per-worker clone rebuilds are now done on each thread */
1032}
1033
1034
1035void
1036vlib_worker_thread_node_refork (void)
1037{
1038 vlib_main_t *vm, *vm_clone;
1039 vlib_node_main_t *nm, *nm_clone;
1040 vlib_node_t **old_nodes_clone;
1041 vlib_node_runtime_t *rt, *old_rt;
1042
1043 vlib_node_t *new_n_clone;
1044
1045 int j;
1046
1047 vm = vlib_mains[0];
1048 nm = &vm->node_main;
1049 vm_clone = vlib_get_main ();
1050 nm_clone = &vm_clone->node_main;
1051
1052 /* Re-clone error heap */
1053 u64 *old_counters = vm_clone->error_main.counters;
1054 u64 *old_counters_all_clear = vm_clone->error_main.counters_last_clear;
1055
Dave Barach178cf492018-11-13 16:34:13 -05001056 clib_memcpy_fast (&vm_clone->error_main, &vm->error_main,
1057 sizeof (vm->error_main));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001058 j = vec_len (vm->error_main.counters) - 1;
Ole Troan233e4682019-05-16 15:01:34 +02001059
1060 /* Switch to the stats segment ... */
1061 void *oldheap = vlib_stats_push_heap (0);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001062 vec_validate_aligned (old_counters, j, CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001063 vm_clone->error_main.counters = old_counters;
Ole Troan233e4682019-05-16 15:01:34 +02001064 vlib_stats_pop_heap2 (vm_clone->error_main.counters, vm_clone->thread_index,
1065 oldheap, 0);
1066
1067 vec_validate_aligned (old_counters_all_clear, j, CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001068 vm_clone->error_main.counters_last_clear = old_counters_all_clear;
1069
1070 nm_clone = &vm_clone->node_main;
1071 vec_free (nm_clone->next_frames);
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001072 nm_clone->next_frames = vec_dup_aligned (nm->next_frames,
1073 CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001074
1075 for (j = 0; j < vec_len (nm_clone->next_frames); j++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001076 {
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001077 vlib_next_frame_t *nf = &nm_clone->next_frames[j];
1078 u32 save_node_runtime_index;
1079 u32 save_flags;
Damjan Marionbc20bdf2015-12-17 14:28:18 +01001080
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001081 save_node_runtime_index = nf->node_runtime_index;
1082 save_flags = nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH;
1083 vlib_next_frame_init (nf);
1084 nf->node_runtime_index = save_node_runtime_index;
1085 nf->flags = save_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001086 }
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001087
1088 old_nodes_clone = nm_clone->nodes;
1089 nm_clone->nodes = 0;
1090
1091 /* re-fork nodes */
1092
1093 /* Allocate all nodes in single block for speed */
1094 new_n_clone =
1095 clib_mem_alloc_no_fail (vec_len (nm->nodes) * sizeof (*new_n_clone));
1096 for (j = 0; j < vec_len (nm->nodes); j++)
1097 {
Benoît Ganne5517bd32019-08-30 16:20:12 +02001098 vlib_node_t *new_n = nm->nodes[j];
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001099
Dave Barach178cf492018-11-13 16:34:13 -05001100 clib_memcpy_fast (new_n_clone, new_n, sizeof (*new_n));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001101 /* none of the copied nodes have enqueue rights given out */
1102 new_n_clone->owner_node_index = VLIB_INVALID_NODE_INDEX;
1103
1104 if (j >= vec_len (old_nodes_clone))
1105 {
1106 /* new node, set to zero */
Dave Barachb7b92992018-10-17 10:38:51 -04001107 clib_memset (&new_n_clone->stats_total, 0,
1108 sizeof (new_n_clone->stats_total));
1109 clib_memset (&new_n_clone->stats_last_clear, 0,
1110 sizeof (new_n_clone->stats_last_clear));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001111 }
1112 else
1113 {
Benoît Ganne5517bd32019-08-30 16:20:12 +02001114 vlib_node_t *old_n_clone = old_nodes_clone[j];
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001115 /* Copy stats if the old data is valid */
Dave Barach178cf492018-11-13 16:34:13 -05001116 clib_memcpy_fast (&new_n_clone->stats_total,
1117 &old_n_clone->stats_total,
1118 sizeof (new_n_clone->stats_total));
1119 clib_memcpy_fast (&new_n_clone->stats_last_clear,
1120 &old_n_clone->stats_last_clear,
1121 sizeof (new_n_clone->stats_last_clear));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001122
1123 /* keep previous node state */
1124 new_n_clone->state = old_n_clone->state;
1125 }
1126 vec_add1 (nm_clone->nodes, new_n_clone);
1127 new_n_clone++;
1128 }
1129 /* Free the old node clones */
1130 clib_mem_free (old_nodes_clone[0]);
1131
1132 vec_free (old_nodes_clone);
1133
1134
1135 /* re-clone internal nodes */
1136 old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL];
1137 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001138 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
1139 CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001140
1141 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL])
1142 {
1143 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1144 rt->thread_index = vm_clone->thread_index;
1145 /* copy runtime_data, will be overwritten later for existing rt */
1146 if (n->runtime_data && n->runtime_data_bytes > 0)
Dave Barach178cf492018-11-13 16:34:13 -05001147 clib_memcpy_fast (rt->runtime_data, n->runtime_data,
1148 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1149 n->runtime_data_bytes));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001150 }
1151
1152 for (j = 0; j < vec_len (old_rt); j++)
1153 {
1154 rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1155 rt->state = old_rt[j].state;
Dave Barach178cf492018-11-13 16:34:13 -05001156 clib_memcpy_fast (rt->runtime_data, old_rt[j].runtime_data,
1157 VLIB_NODE_RUNTIME_DATA_SIZE);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001158 }
1159
1160 vec_free (old_rt);
1161
1162 /* re-clone input nodes */
1163 old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT];
1164 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001165 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
1166 CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001167
1168 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT])
1169 {
1170 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1171 rt->thread_index = vm_clone->thread_index;
1172 /* copy runtime_data, will be overwritten later for existing rt */
1173 if (n->runtime_data && n->runtime_data_bytes > 0)
Dave Barach178cf492018-11-13 16:34:13 -05001174 clib_memcpy_fast (rt->runtime_data, n->runtime_data,
1175 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1176 n->runtime_data_bytes));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001177 }
1178
1179 for (j = 0; j < vec_len (old_rt); j++)
1180 {
1181 rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1182 rt->state = old_rt[j].state;
Dave Barach178cf492018-11-13 16:34:13 -05001183 clib_memcpy_fast (rt->runtime_data, old_rt[j].runtime_data,
1184 VLIB_NODE_RUNTIME_DATA_SIZE);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001185 }
1186
1187 vec_free (old_rt);
1188
Dave Barach53fe4a72019-01-26 09:50:26 -05001189 /* re-clone pre-input nodes */
1190 old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT];
1191 nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT] =
1192 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT],
1193 CLIB_CACHE_LINE_BYTES);
1194
1195 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT])
1196 {
1197 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1198 rt->thread_index = vm_clone->thread_index;
1199 /* copy runtime_data, will be overwritten later for existing rt */
1200 if (n->runtime_data && n->runtime_data_bytes > 0)
1201 clib_memcpy_fast (rt->runtime_data, n->runtime_data,
1202 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1203 n->runtime_data_bytes));
1204 }
1205
1206 for (j = 0; j < vec_len (old_rt); j++)
1207 {
1208 rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1209 rt->state = old_rt[j].state;
1210 clib_memcpy_fast (rt->runtime_data, old_rt[j].runtime_data,
1211 VLIB_NODE_RUNTIME_DATA_SIZE);
1212 }
1213
1214 vec_free (old_rt);
1215
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001216 nm_clone->processes = vec_dup_aligned (nm->processes,
1217 CLIB_CACHE_LINE_BYTES);
Dave Barach687c9022019-07-23 10:22:31 -04001218 nm_clone->node_by_error = nm->node_by_error;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001219}
1220
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001221void
1222vlib_worker_thread_node_runtime_update (void)
1223{
1224 /*
1225 * Make a note that we need to do a node runtime update
1226 * prior to releasing the barrier.
1227 */
1228 vlib_global_main.need_vlib_worker_thread_node_runtime_update = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001229}
1230
Pavel Kotucek1e765832016-09-23 08:54:14 +02001231u32
1232unformat_sched_policy (unformat_input_t * input, va_list * args)
1233{
1234 u32 *r = va_arg (*args, u32 *);
1235
1236 if (0);
1237#define _(v,f,s) else if (unformat (input, s)) *r = SCHED_POLICY_##f;
1238 foreach_sched_policy
1239#undef _
1240 else
1241 return 0;
1242 return 1;
1243}
1244
Ed Warnickecb9cada2015-12-08 15:45:58 -07001245static clib_error_t *
1246cpu_config (vlib_main_t * vm, unformat_input_t * input)
1247{
1248 vlib_thread_registration_t *tr;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001249 uword *p;
1250 vlib_thread_main_t *tm = &vlib_thread_main;
1251 u8 *name;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001252 uword *bitmap;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001253 u32 count;
1254
1255 tm->thread_registrations_by_name = hash_create_string (0, sizeof (uword));
Pavel Kotucek1e765832016-09-23 08:54:14 +02001256
Dave Barach9b8ffd92016-07-08 08:13:45 -04001257 tm->n_thread_stacks = 1; /* account for main thread */
Pavel Kotucek1e765832016-09-23 08:54:14 +02001258 tm->sched_policy = ~0;
1259 tm->sched_priority = ~0;
Damjan Marion858151f2018-07-11 10:51:00 +02001260 tm->main_lcore = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001261
1262 tr = tm->next;
1263
1264 while (tr)
1265 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001266 hash_set_mem (tm->thread_registrations_by_name, tr->name, (uword) tr);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001267 tr = tr->next;
1268 }
1269
Dave Barach9b8ffd92016-07-08 08:13:45 -04001270 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001271 {
Damjan Marionbf741472016-06-13 22:49:44 +02001272 if (unformat (input, "use-pthreads"))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001273 tm->use_pthreads = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001274 else if (unformat (input, "thread-prefix %v", &tm->thread_prefix))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001275 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001276 else if (unformat (input, "main-core %u", &tm->main_lcore))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001277 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001278 else if (unformat (input, "skip-cores %u", &tm->skip_cores))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001279 ;
Dave Baracha690fdb2020-01-21 12:34:55 -05001280 else if (unformat (input, "numa-heap-size %U",
1281 unformat_memory_size, &tm->numa_heap_size))
1282 ;
Yi Hee4a9eb72018-07-17 14:18:41 +08001283 else if (unformat (input, "coremask-%s %U", &name,
1284 unformat_bitmap_mask, &bitmap) ||
1285 unformat (input, "corelist-%s %U", &name,
1286 unformat_bitmap_list, &bitmap))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001287 {
1288 p = hash_get_mem (tm->thread_registrations_by_name, name);
1289 if (p == 0)
1290 return clib_error_return (0, "no such thread type '%s'", name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001291
Dave Barach9b8ffd92016-07-08 08:13:45 -04001292 tr = (vlib_thread_registration_t *) p[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001293
Dave Barach9b8ffd92016-07-08 08:13:45 -04001294 if (tr->use_pthreads)
1295 return clib_error_return (0,
1296 "corelist cannot be set for '%s' threads",
1297 name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001298
Dave Barach9b8ffd92016-07-08 08:13:45 -04001299 tr->coremask = bitmap;
1300 tr->count = clib_bitmap_count_set_bits (tr->coremask);
1301 }
Pavel Kotucek1e765832016-09-23 08:54:14 +02001302 else
1303 if (unformat
1304 (input, "scheduler-policy %U", unformat_sched_policy,
1305 &tm->sched_policy))
1306 ;
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001307 else if (unformat (input, "scheduler-priority %u", &tm->sched_priority))
Pavel Kotucek1e765832016-09-23 08:54:14 +02001308 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001309 else if (unformat (input, "%s %u", &name, &count))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001310 {
1311 p = hash_get_mem (tm->thread_registrations_by_name, name);
1312 if (p == 0)
Pavel Kotucek1e765832016-09-23 08:54:14 +02001313 return clib_error_return (0, "no such thread type 3 '%s'", name);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001314
1315 tr = (vlib_thread_registration_t *) p[0];
1316 if (tr->fixed_count)
1317 return clib_error_return
1318 (0, "number of %s threads not configurable", tr->name);
1319 tr->count = count;
1320 }
1321 else
1322 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001323 }
1324
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001325 if (tm->sched_priority != ~0)
Pavel Kotucek1e765832016-09-23 08:54:14 +02001326 {
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001327 if (tm->sched_policy == SCHED_FIFO || tm->sched_policy == SCHED_RR)
Pavel Kotucek1e765832016-09-23 08:54:14 +02001328 {
1329 u32 prio_max = sched_get_priority_max (tm->sched_policy);
1330 u32 prio_min = sched_get_priority_min (tm->sched_policy);
1331 if (tm->sched_priority > prio_max)
1332 tm->sched_priority = prio_max;
1333 if (tm->sched_priority < prio_min)
1334 tm->sched_priority = prio_min;
1335 }
1336 else
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001337 {
1338 return clib_error_return
1339 (0,
1340 "scheduling priority (%d) is not allowed for `normal` scheduling policy",
1341 tm->sched_priority);
1342 }
Pavel Kotucek1e765832016-09-23 08:54:14 +02001343 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001344 tr = tm->next;
1345
1346 if (!tm->thread_prefix)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001347 tm->thread_prefix = format (0, "vpp");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001348
1349 while (tr)
1350 {
1351 tm->n_thread_stacks += tr->count;
1352 tm->n_pthreads += tr->count * tr->use_pthreads;
Damjan Marion878c6092017-01-04 13:19:27 +01001353 tm->n_threads += tr->count * (tr->use_pthreads == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001354 tr = tr->next;
1355 }
1356
1357 return 0;
1358}
1359
1360VLIB_EARLY_CONFIG_FUNCTION (cpu_config, "cpu");
1361
Ed Warnickecb9cada2015-12-08 15:45:58 -07001362void vnet_main_fixup (vlib_fork_fixup_t which) __attribute__ ((weak));
Dave Barach9b8ffd92016-07-08 08:13:45 -04001363void
1364vnet_main_fixup (vlib_fork_fixup_t which)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001365{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001366}
1367
1368void
1369vlib_worker_thread_fork_fixup (vlib_fork_fixup_t which)
1370{
1371 vlib_main_t *vm = vlib_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001372
1373 if (vlib_mains == 0)
1374 return;
1375
Damjan Marion586afd72017-04-05 19:18:20 +02001376 ASSERT (vlib_get_thread_index () == 0);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001377 vlib_worker_thread_barrier_sync (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001378
1379 switch (which)
1380 {
1381 case VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX:
1382 vnet_main_fixup (VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX);
1383 break;
1384
1385 default:
Dave Barach9b8ffd92016-07-08 08:13:45 -04001386 ASSERT (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001387 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001388 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001389}
1390
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001391 /*
1392 * Enforce minimum open time to minimize packet loss due to Rx overflow,
1393 * based on a test based heuristic that barrier should be open for at least
1394 * 3 time as long as it is closed (with an upper bound of 1ms because by that
1395 * point it is probably too late to make a difference)
1396 */
1397
1398#ifndef BARRIER_MINIMUM_OPEN_LIMIT
1399#define BARRIER_MINIMUM_OPEN_LIMIT 0.001
1400#endif
1401
1402#ifndef BARRIER_MINIMUM_OPEN_FACTOR
1403#define BARRIER_MINIMUM_OPEN_FACTOR 3
1404#endif
1405
Dave Barach9b8ffd92016-07-08 08:13:45 -04001406void
Dave Barachc602b382019-06-03 19:48:22 -04001407vlib_worker_thread_initial_barrier_sync_and_release (vlib_main_t * vm)
1408{
1409 f64 deadline;
1410 f64 now = vlib_time_now (vm);
1411 u32 count = vec_len (vlib_mains) - 1;
1412
1413 /* No worker threads? */
1414 if (count == 0)
1415 return;
1416
1417 deadline = now + BARRIER_SYNC_TIMEOUT;
1418 *vlib_worker_threads->wait_at_barrier = 1;
1419 while (*vlib_worker_threads->workers_at_barrier != count)
1420 {
1421 if ((now = vlib_time_now (vm)) > deadline)
1422 {
1423 fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1424 os_panic ();
1425 }
1426 CLIB_PAUSE ();
1427 }
1428 *vlib_worker_threads->wait_at_barrier = 0;
1429}
1430
1431void
Damjan Marion8343ee52019-02-26 17:15:48 +01001432vlib_worker_thread_barrier_sync_int (vlib_main_t * vm, const char *func_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001433{
1434 f64 deadline;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001435 f64 now;
1436 f64 t_entry;
1437 f64 t_open;
1438 f64 t_closed;
Dave Barach9ae190e2019-04-23 10:07:24 -04001439 f64 max_vector_rate;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001440 u32 count;
Dave Barach9ae190e2019-04-23 10:07:24 -04001441 int i;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001442
Dave Barach80f54e22017-03-08 19:08:56 -05001443 if (vec_len (vlib_mains) < 2)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001444 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001445
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001446 ASSERT (vlib_get_thread_index () == 0);
1447
Damjan Marion8343ee52019-02-26 17:15:48 +01001448 vlib_worker_threads[0].barrier_caller = func_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001449 count = vec_len (vlib_mains) - 1;
1450
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001451 /* Record entry relative to last close */
1452 now = vlib_time_now (vm);
1453 t_entry = now - vm->barrier_epoch;
1454
Ed Warnickecb9cada2015-12-08 15:45:58 -07001455 /* Tolerate recursive calls */
1456 if (++vlib_worker_threads[0].recursion_level > 1)
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001457 {
1458 barrier_trace_sync_rec (t_entry);
1459 return;
1460 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001461
Dave Barach9ae190e2019-04-23 10:07:24 -04001462 /*
1463 * Need data to decide if we're working hard enough to honor
1464 * the barrier hold-down timer.
1465 */
1466 max_vector_rate = 0.0;
1467 for (i = 1; i < vec_len (vlib_mains); i++)
1468 max_vector_rate =
1469 clib_max (max_vector_rate,
Dave Baracha8df85c2019-10-01 13:34:23 -04001470 (f64) vlib_last_vectors_per_main_loop (vlib_mains[i]));
Dave Barach9ae190e2019-04-23 10:07:24 -04001471
Bud Grise42f20062016-03-16 13:09:46 -04001472 vlib_worker_threads[0].barrier_sync_count++;
1473
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001474 /* Enforce minimum barrier open time to minimize packet loss */
1475 ASSERT (vm->barrier_no_close_before <= (now + BARRIER_MINIMUM_OPEN_LIMIT));
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001476
Dave Barach9ae190e2019-04-23 10:07:24 -04001477 /*
1478 * If any worker thread seems busy, which we define
1479 * as a vector rate above 10, we enforce the barrier hold-down timer
1480 */
1481 if (max_vector_rate > 10.0)
Dave Barach36feebb2018-09-07 11:12:27 -04001482 {
Dave Barach9ae190e2019-04-23 10:07:24 -04001483 while (1)
Dave Barach36feebb2018-09-07 11:12:27 -04001484 {
Dave Barach9ae190e2019-04-23 10:07:24 -04001485 now = vlib_time_now (vm);
1486 /* Barrier hold-down timer expired? */
1487 if (now >= vm->barrier_no_close_before)
1488 break;
1489 if ((vm->barrier_no_close_before - now)
1490 > (2.0 * BARRIER_MINIMUM_OPEN_LIMIT))
1491 {
1492 clib_warning
1493 ("clock change: would have waited for %.4f seconds",
1494 (vm->barrier_no_close_before - now));
1495 break;
1496 }
Dave Barach36feebb2018-09-07 11:12:27 -04001497 }
1498 }
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001499 /* Record time of closure */
1500 t_open = now - vm->barrier_epoch;
1501 vm->barrier_epoch = now;
1502
1503 deadline = now + BARRIER_SYNC_TIMEOUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001504
1505 *vlib_worker_threads->wait_at_barrier = 1;
1506 while (*vlib_worker_threads->workers_at_barrier != count)
1507 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001508 if ((now = vlib_time_now (vm)) > deadline)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001509 {
1510 fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1511 os_panic ();
1512 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001513 }
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001514
1515 t_closed = now - vm->barrier_epoch;
1516
1517 barrier_trace_sync (t_entry, t_open, t_closed);
1518
Ed Warnickecb9cada2015-12-08 15:45:58 -07001519}
1520
Dave Barach9b8ffd92016-07-08 08:13:45 -04001521void
1522vlib_worker_thread_barrier_release (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001523{
1524 f64 deadline;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001525 f64 now;
1526 f64 minimum_open;
1527 f64 t_entry;
1528 f64 t_closed_total;
1529 f64 t_update_main = 0.0;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001530 int refork_needed = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001531
Dave Barach80f54e22017-03-08 19:08:56 -05001532 if (vec_len (vlib_mains) < 2)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001533 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001534
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001535 ASSERT (vlib_get_thread_index () == 0);
1536
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001537
1538 now = vlib_time_now (vm);
1539 t_entry = now - vm->barrier_epoch;
1540
Ed Warnickecb9cada2015-12-08 15:45:58 -07001541 if (--vlib_worker_threads[0].recursion_level > 0)
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001542 {
1543 barrier_trace_release_rec (t_entry);
1544 return;
1545 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001546
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001547 /* Update (all) node runtimes before releasing the barrier, if needed */
1548 if (vm->need_vlib_worker_thread_node_runtime_update)
1549 {
Dave Barach1ddbc012018-06-13 09:26:05 -04001550 /*
1551 * Lock stat segment here, so we's safe when
1552 * rebuilding the stat segment node clones from the
1553 * stat thread...
1554 */
1555 vlib_stat_segment_lock ();
1556
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001557 /* Do stats elements on main thread */
1558 worker_thread_node_runtime_update_internal ();
1559 vm->need_vlib_worker_thread_node_runtime_update = 0;
1560
1561 /* Do per thread rebuilds in parallel */
1562 refork_needed = 1;
Sirshak Das2f6d7bb2018-10-03 22:53:51 +00001563 clib_atomic_fetch_add (vlib_worker_threads->node_reforks_required,
1564 (vec_len (vlib_mains) - 1));
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001565 now = vlib_time_now (vm);
1566 t_update_main = now - vm->barrier_epoch;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001567 }
1568
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001569 deadline = now + BARRIER_SYNC_TIMEOUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001570
Dave Baracha4324a92019-02-19 17:05:30 -05001571 /*
1572 * Note when we let go of the barrier.
1573 * Workers can use this to derive a reasonably accurate
1574 * time offset. See vlib_time_now(...)
1575 */
1576 vm->time_last_barrier_release = vlib_time_now (vm);
1577 CLIB_MEMORY_STORE_BARRIER ();
1578
Ed Warnickecb9cada2015-12-08 15:45:58 -07001579 *vlib_worker_threads->wait_at_barrier = 0;
1580
1581 while (*vlib_worker_threads->workers_at_barrier > 0)
1582 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001583 if ((now = vlib_time_now (vm)) > deadline)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001584 {
1585 fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1586 os_panic ();
1587 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001588 }
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001589
1590 /* Wait for reforks before continuing */
1591 if (refork_needed)
1592 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001593 now = vlib_time_now (vm);
1594
1595 deadline = now + BARRIER_SYNC_TIMEOUT;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001596
1597 while (*vlib_worker_threads->node_reforks_required > 0)
1598 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001599 if ((now = vlib_time_now (vm)) > deadline)
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001600 {
1601 fformat (stderr, "%s: worker thread refork deadlock\n",
1602 __FUNCTION__);
1603 os_panic ();
1604 }
1605 }
Dave Barach1ddbc012018-06-13 09:26:05 -04001606 vlib_stat_segment_unlock ();
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001607 }
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001608
1609 t_closed_total = now - vm->barrier_epoch;
1610
1611 minimum_open = t_closed_total * BARRIER_MINIMUM_OPEN_FACTOR;
1612
1613 if (minimum_open > BARRIER_MINIMUM_OPEN_LIMIT)
1614 {
1615 minimum_open = BARRIER_MINIMUM_OPEN_LIMIT;
1616 }
1617
1618 vm->barrier_no_close_before = now + minimum_open;
1619
1620 /* Record barrier epoch (used to enforce minimum open time) */
1621 vm->barrier_epoch = now;
1622
1623 barrier_trace_release (t_entry, t_closed_total, t_update_main);
1624
Ed Warnickecb9cada2015-12-08 15:45:58 -07001625}
1626
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001627/*
1628 * Check the frame queue to see if any frames are available.
Dave Barach9b8ffd92016-07-08 08:13:45 -04001629 * If so, pull the packets off the frames and put them to
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001630 * the handoff node.
1631 */
Damjan Marione9d52d52017-03-09 15:42:26 +01001632int
1633vlib_frame_queue_dequeue (vlib_main_t * vm, vlib_frame_queue_main_t * fqm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001634{
Damjan Marion586afd72017-04-05 19:18:20 +02001635 u32 thread_id = vm->thread_index;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001636 vlib_frame_queue_t *fq = fqm->vlib_frame_queues[thread_id];
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001637 vlib_frame_queue_elt_t *elt;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001638 u32 *from, *to;
1639 vlib_frame_t *f;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001640 int msg_type;
1641 int processed = 0;
1642 u32 n_left_to_node;
1643 u32 vectors = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001644
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001645 ASSERT (fq);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001646 ASSERT (vm == vlib_mains[thread_id]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001647
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001648 if (PREDICT_FALSE (fqm->node_index == ~0))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001649 return 0;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001650 /*
1651 * Gather trace data for frame queues
1652 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001653 if (PREDICT_FALSE (fq->trace))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001654 {
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001655 frame_queue_trace_t *fqt;
1656 frame_queue_nelt_counter_t *fqh;
1657 u32 elix;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001658
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001659 fqt = &fqm->frame_queue_traces[thread_id];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001660
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001661 fqt->nelts = fq->nelts;
1662 fqt->head = fq->head;
1663 fqt->head_hint = fq->head_hint;
1664 fqt->tail = fq->tail;
1665 fqt->threshold = fq->vector_threshold;
1666 fqt->n_in_use = fqt->tail - fqt->head;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001667 if (fqt->n_in_use >= fqt->nelts)
1668 {
1669 // if beyond max then use max
1670 fqt->n_in_use = fqt->nelts - 1;
1671 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001672
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001673 /* Record the number of elements in use in the histogram */
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001674 fqh = &fqm->frame_queue_histogram[thread_id];
Dave Barach9b8ffd92016-07-08 08:13:45 -04001675 fqh->count[fqt->n_in_use]++;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001676
1677 /* Record a snapshot of the elements in use */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001678 for (elix = 0; elix < fqt->nelts; elix++)
1679 {
1680 elt = fq->elts + ((fq->head + 1 + elix) & (fq->nelts - 1));
1681 if (1 || elt->valid)
1682 {
1683 fqt->n_vectors[elix] = elt->n_vectors;
1684 }
1685 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001686 fqt->written = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001687 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001688
1689 while (1)
1690 {
Dave Baracha638c182019-06-21 18:24:07 -04001691 vlib_buffer_t *b;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001692 if (fq->head == fq->tail)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001693 {
1694 fq->head_hint = fq->head;
1695 return processed;
1696 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001697
Dave Barach9b8ffd92016-07-08 08:13:45 -04001698 elt = fq->elts + ((fq->head + 1) & (fq->nelts - 1));
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001699
1700 if (!elt->valid)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001701 {
1702 fq->head_hint = fq->head;
1703 return processed;
1704 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001705
1706 from = elt->buffer_index;
1707 msg_type = elt->msg_type;
1708
1709 ASSERT (msg_type == VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME);
1710 ASSERT (elt->n_vectors <= VLIB_FRAME_SIZE);
1711
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001712 f = vlib_get_frame_to_node (vm, fqm->node_index);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001713
Dave Baracha638c182019-06-21 18:24:07 -04001714 /* If the first vector is traced, set the frame trace flag */
1715 b = vlib_get_buffer (vm, from[0]);
1716 if (b->flags & VLIB_BUFFER_IS_TRACED)
1717 f->frame_flags |= VLIB_NODE_FLAG_TRACE;
1718
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001719 to = vlib_frame_vector_args (f);
1720
1721 n_left_to_node = elt->n_vectors;
1722
1723 while (n_left_to_node >= 4)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001724 {
1725 to[0] = from[0];
1726 to[1] = from[1];
1727 to[2] = from[2];
1728 to[3] = from[3];
1729 to += 4;
1730 from += 4;
1731 n_left_to_node -= 4;
1732 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001733
1734 while (n_left_to_node > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001735 {
1736 to[0] = from[0];
1737 to++;
1738 from++;
1739 n_left_to_node--;
1740 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001741
1742 vectors += elt->n_vectors;
1743 f->n_vectors = elt->n_vectors;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001744 vlib_put_frame_to_node (vm, fqm->node_index, f);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001745
1746 elt->valid = 0;
1747 elt->n_vectors = 0;
1748 elt->msg_type = 0xfefefefe;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001749 CLIB_MEMORY_BARRIER ();
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001750 fq->head++;
1751 processed++;
1752
1753 /*
1754 * Limit the number of packets pushed into the graph
1755 */
1756 if (vectors >= fq->vector_threshold)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001757 {
1758 fq->head_hint = fq->head;
1759 return processed;
1760 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001761 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001762 ASSERT (0);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001763 return processed;
1764}
1765
Dave Barach9b8ffd92016-07-08 08:13:45 -04001766void
1767vlib_worker_thread_fn (void *arg)
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001768{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001769 vlib_worker_thread_t *w = (vlib_worker_thread_t *) arg;
Damjan Marion878c6092017-01-04 13:19:27 +01001770 vlib_thread_main_t *tm = vlib_get_thread_main ();
Dave Barach9b8ffd92016-07-08 08:13:45 -04001771 vlib_main_t *vm = vlib_get_main ();
Damjan Marione9f929b2017-03-16 11:32:09 +01001772 clib_error_t *e;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001773
Damjan Marion586afd72017-04-05 19:18:20 +02001774 ASSERT (vm->thread_index == vlib_get_thread_index ());
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001775
1776 vlib_worker_thread_init (w);
1777 clib_time_init (&vm->clib_time);
1778 clib_mem_set_heap (w->thread_mheap);
1779
Dave Barachc602b382019-06-03 19:48:22 -04001780 e = vlib_call_init_exit_functions_no_sort
Dave Barachf8d50682019-05-14 18:01:44 -04001781 (vm, &vm->worker_init_function_registrations, 1 /* call_once */ );
Damjan Marione9f929b2017-03-16 11:32:09 +01001782 if (e)
1783 clib_error_report (e);
1784
Dave Barachc602b382019-06-03 19:48:22 -04001785 /* Wait until the dpdk init sequence is complete */
1786 while (tm->extern_thread_mgmt && tm->worker_thread_release == 0)
1787 vlib_worker_thread_barrier_check ();
1788
Damjan Marione9d52d52017-03-09 15:42:26 +01001789 vlib_worker_loop (vm);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001790}
1791
Dave Barach9b8ffd92016-07-08 08:13:45 -04001792/* *INDENT-OFF* */
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001793VLIB_REGISTER_THREAD (worker_thread_reg, static) = {
1794 .name = "workers",
1795 .short_name = "wk",
1796 .function = vlib_worker_thread_fn,
1797};
Dave Barach9b8ffd92016-07-08 08:13:45 -04001798/* *INDENT-ON* */
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001799
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001800u32
1801vlib_frame_queue_main_init (u32 node_index, u32 frame_queue_nelts)
1802{
1803 vlib_thread_main_t *tm = vlib_get_thread_main ();
1804 vlib_frame_queue_main_t *fqm;
1805 vlib_frame_queue_t *fq;
1806 int i;
1807
1808 if (frame_queue_nelts == 0)
dongjuan88752482019-06-04 10:59:02 +08001809 frame_queue_nelts = FRAME_QUEUE_MAX_NELTS;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001810
Damjan Marion78fd7e82018-07-20 18:47:05 +02001811 ASSERT (frame_queue_nelts >= 8);
1812
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001813 vec_add2 (tm->frame_queue_mains, fqm, 1);
1814
1815 fqm->node_index = node_index;
Damjan Marion78fd7e82018-07-20 18:47:05 +02001816 fqm->frame_queue_nelts = frame_queue_nelts;
1817 fqm->queue_hi_thresh = frame_queue_nelts - 2;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001818
1819 vec_validate (fqm->vlib_frame_queues, tm->n_vlib_mains - 1);
Damjan Marion78fd7e82018-07-20 18:47:05 +02001820 vec_validate (fqm->per_thread_data, tm->n_vlib_mains - 1);
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001821 _vec_len (fqm->vlib_frame_queues) = 0;
1822 for (i = 0; i < tm->n_vlib_mains; i++)
1823 {
Damjan Marion78fd7e82018-07-20 18:47:05 +02001824 vlib_frame_queue_per_thread_data_t *ptd;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001825 fq = vlib_frame_queue_alloc (frame_queue_nelts);
1826 vec_add1 (fqm->vlib_frame_queues, fq);
Damjan Marion78fd7e82018-07-20 18:47:05 +02001827
1828 ptd = vec_elt_at_index (fqm->per_thread_data, i);
1829 vec_validate (ptd->handoff_queue_elt_by_thread_index,
1830 tm->n_vlib_mains - 1);
1831 vec_validate_init_empty (ptd->congested_handoff_queue_by_thread_index,
1832 tm->n_vlib_mains - 1,
1833 (vlib_frame_queue_t *) (~0));
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001834 }
1835
1836 return (fqm - tm->frame_queue_mains);
1837}
1838
Damjan Marion878c6092017-01-04 13:19:27 +01001839int
1840vlib_thread_cb_register (struct vlib_main_t *vm, vlib_thread_callbacks_t * cb)
1841{
1842 vlib_thread_main_t *tm = vlib_get_thread_main ();
1843
1844 if (tm->extern_thread_mgmt)
1845 return -1;
1846
1847 tm->cb.vlib_launch_thread_cb = cb->vlib_launch_thread_cb;
1848 tm->extern_thread_mgmt = 1;
1849 return 0;
1850}
1851
Dave Barach69128d02017-09-26 10:54:34 -04001852void
1853vlib_process_signal_event_mt_helper (vlib_process_signal_event_mt_args_t *
1854 args)
1855{
1856 ASSERT (vlib_get_thread_index () == 0);
1857 vlib_process_signal_event (vlib_get_main (), args->node_index,
1858 args->type_opaque, args->data);
1859}
1860
1861void *rpc_call_main_thread_cb_fn;
1862
1863void
1864vlib_rpc_call_main_thread (void *callback, u8 * args, u32 arg_size)
1865{
1866 if (rpc_call_main_thread_cb_fn)
1867 {
1868 void (*fp) (void *, u8 *, u32) = rpc_call_main_thread_cb_fn;
1869 (*fp) (callback, args, arg_size);
1870 }
1871 else
1872 clib_warning ("BUG: rpc_call_main_thread_cb_fn NULL!");
1873}
1874
Dave Barach9b8ffd92016-07-08 08:13:45 -04001875clib_error_t *
1876threads_init (vlib_main_t * vm)
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001877{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001878 return 0;
1879}
1880
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001881VLIB_INIT_FUNCTION (threads_init);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001882
Dave Baracha4324a92019-02-19 17:05:30 -05001883
1884static clib_error_t *
1885show_clock_command_fn (vlib_main_t * vm,
1886 unformat_input_t * input, vlib_cli_command_t * cmd)
1887{
1888 int i;
Dave Barachc25048b2020-01-29 18:05:24 -05001889 int verbose = 0;
Dave Baracha4324a92019-02-19 17:05:30 -05001890
Dave Barachc25048b2020-01-29 18:05:24 -05001891 (void) unformat (input, "verbose %=", &verbose, 1);
Dave Baracha4324a92019-02-19 17:05:30 -05001892
Dave Barachc25048b2020-01-29 18:05:24 -05001893 vlib_cli_output (vm, "%U", format_clib_time, &vm->clib_time, verbose);
Dave Baracha4324a92019-02-19 17:05:30 -05001894
1895 if (vec_len (vlib_mains) == 1)
1896 return 0;
1897
1898 vlib_cli_output (vm, "Time last barrier release %.9f",
1899 vm->time_last_barrier_release);
1900
1901 for (i = 1; i < vec_len (vlib_mains); i++)
1902 {
1903 if (vlib_mains[i] == 0)
1904 continue;
Dave Barachc25048b2020-01-29 18:05:24 -05001905
1906 vlib_cli_output (vm, "%d: %U", i, format_clib_time,
1907 &vlib_mains[i]->clib_time, verbose);
1908
Dave Baracha4324a92019-02-19 17:05:30 -05001909 vlib_cli_output (vm, "Thread %d offset %.9f error %.9f", i,
1910 vlib_mains[i]->time_offset,
1911 vm->time_last_barrier_release -
1912 vlib_mains[i]->time_last_barrier_release);
1913 }
1914 return 0;
1915}
1916
1917/* *INDENT-OFF* */
1918VLIB_CLI_COMMAND (f_command, static) =
1919{
1920 .path = "show clock",
1921 .short_help = "show clock",
1922 .function = show_clock_command_fn,
1923};
1924/* *INDENT-ON* */
1925
Dave Barach9b8ffd92016-07-08 08:13:45 -04001926/*
1927 * fd.io coding-style-patch-verification: ON
1928 *
1929 * Local Variables:
1930 * eval: (c-set-style "gnu")
1931 * End:
1932 */