blob: 64af8a0d6175d67d9d2d73463332b11fca1374fe [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>
Dave Barach19718002020-03-11 10:31:36 -040020#include <vppinfra/time_range.h>
Mohsin Kazmi5d64c782018-09-11 20:27:09 +020021#include <vppinfra/linux/sysfs.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070022#include <vlib/vlib.h>
23
24#include <vlib/threads.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070025
Ole Troan233e4682019-05-16 15:01:34 +020026#include <vlib/stat_weak_inlines.h>
27
Dave Barach9b8ffd92016-07-08 08:13:45 -040028u32
29vl (void *p)
Ed Warnickecb9cada2015-12-08 15:45:58 -070030{
31 return vec_len (p);
32}
33
Damjan Marion6a7acc22016-12-19 16:28:36 +010034vlib_worker_thread_t *vlib_worker_threads;
Ed Warnickecb9cada2015-12-08 15:45:58 -070035vlib_thread_main_t vlib_thread_main;
36
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010037/*
38 * Barrier tracing can be enabled on a normal build to collect information
39 * on barrier use, including timings and call stacks. Deliberately not
40 * keyed off CLIB_DEBUG, because that can add significant overhead which
41 * imapacts observed timings.
42 */
43
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010044static inline void
45barrier_trace_sync (f64 t_entry, f64 t_open, f64 t_closed)
46{
Dave Barach88c6e002018-09-30 15:54:06 -040047 if (!vlib_worker_threads->barrier_elog_enabled)
48 return;
49
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010050 /* *INDENT-OFF* */
51 ELOG_TYPE_DECLARE (e) =
52 {
Dave Barach88c6e002018-09-30 15:54:06 -040053 .format = "bar-trace-%s-#%d",
54 .format_args = "T4i4",
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010055 };
56 /* *INDENT-ON* */
57 struct
58 {
Dave Barach88c6e002018-09-30 15:54:06 -040059 u32 caller, count, t_entry, t_open, t_closed;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010060 } *ed = 0;
61
62 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
63 ed->count = (int) vlib_worker_threads[0].barrier_sync_count;
Dave Barachb09f4d02019-07-15 16:00:03 -040064 ed->caller = elog_string (&vlib_global_main.elog_main,
65 (char *) vlib_worker_threads[0].barrier_caller);
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010066 ed->t_entry = (int) (1000000.0 * t_entry);
67 ed->t_open = (int) (1000000.0 * t_open);
68 ed->t_closed = (int) (1000000.0 * t_closed);
69}
70
71static inline void
72barrier_trace_sync_rec (f64 t_entry)
73{
Dave Barach88c6e002018-09-30 15:54:06 -040074 if (!vlib_worker_threads->barrier_elog_enabled)
75 return;
76
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010077 /* *INDENT-OFF* */
78 ELOG_TYPE_DECLARE (e) =
79 {
Dave Barach88c6e002018-09-30 15:54:06 -040080 .format = "bar-syncrec-%s-#%d",
81 .format_args = "T4i4",
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010082 };
83 /* *INDENT-ON* */
84 struct
85 {
Dave Barach88c6e002018-09-30 15:54:06 -040086 u32 caller, depth;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010087 } *ed = 0;
88
89 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
90 ed->depth = (int) vlib_worker_threads[0].recursion_level - 1;
Dave Barachb09f4d02019-07-15 16:00:03 -040091 ed->caller = elog_string (&vlib_global_main.elog_main,
92 (char *) vlib_worker_threads[0].barrier_caller);
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010093}
94
95static inline void
96barrier_trace_release_rec (f64 t_entry)
97{
Dave Barach88c6e002018-09-30 15:54:06 -040098 if (!vlib_worker_threads->barrier_elog_enabled)
99 return;
100
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100101 /* *INDENT-OFF* */
102 ELOG_TYPE_DECLARE (e) =
103 {
Dave Barach88c6e002018-09-30 15:54:06 -0400104 .format = "bar-relrrec-#%d",
105 .format_args = "i4",
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100106 };
107 /* *INDENT-ON* */
108 struct
109 {
Dave Barach88c6e002018-09-30 15:54:06 -0400110 u32 depth;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100111 } *ed = 0;
112
113 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100114 ed->depth = (int) vlib_worker_threads[0].recursion_level;
115}
116
117static inline void
118barrier_trace_release (f64 t_entry, f64 t_closed_total, f64 t_update_main)
119{
Dave Barach88c6e002018-09-30 15:54:06 -0400120 if (!vlib_worker_threads->barrier_elog_enabled)
121 return;
122
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100123 /* *INDENT-OFF* */
124 ELOG_TYPE_DECLARE (e) =
125 {
Dave Barach88c6e002018-09-30 15:54:06 -0400126 .format = "bar-rel-#%d-e%d-u%d-t%d",
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100127 .format_args = "i4i4i4i4",
128 };
129 /* *INDENT-ON* */
130 struct
131 {
Dave Barach88c6e002018-09-30 15:54:06 -0400132 u32 count, t_entry, t_update_main, t_closed_total;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100133 } *ed = 0;
134
135 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
136 ed->t_entry = (int) (1000000.0 * t_entry);
137 ed->t_update_main = (int) (1000000.0 * t_update_main);
138 ed->t_closed_total = (int) (1000000.0 * t_closed_total);
139 ed->count = (int) vlib_worker_threads[0].barrier_sync_count;
140
141 /* Reset context for next trace */
142 vlib_worker_threads[0].barrier_context = NULL;
143}
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100144
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145uword
Damjan Marionf55f9b82017-05-10 21:06:28 +0200146os_get_nthreads (void)
Dave Barach01d86c72016-08-08 15:13:42 -0400147{
Dave Barach2180bac2019-05-10 15:25:10 -0400148 return vec_len (vlib_thread_stacks);
Dave Barach01d86c72016-08-08 15:13:42 -0400149}
150
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151void
152vlib_set_thread_name (char *name)
153{
154 int pthread_setname_np (pthread_t __target_thread, const char *__name);
Dave Barachb2a6e252016-07-27 10:00:58 -0400155 int rv;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400156 pthread_t thread = pthread_self ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157
Dave Barach9b8ffd92016-07-08 08:13:45 -0400158 if (thread)
Dave Barachb2a6e252016-07-27 10:00:58 -0400159 {
160 rv = pthread_setname_np (thread, name);
161 if (rv)
Ed Warnicke853e7202016-08-12 11:42:26 -0700162 clib_warning ("pthread_setname_np returned %d", rv);
Dave Barachb2a6e252016-07-27 10:00:58 -0400163 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164}
165
Dave Barach9b8ffd92016-07-08 08:13:45 -0400166static int
167sort_registrations_by_no_clone (void *a0, void *a1)
168{
169 vlib_thread_registration_t **tr0 = a0;
170 vlib_thread_registration_t **tr1 = a1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171
Dave Barach9b8ffd92016-07-08 08:13:45 -0400172 return ((i32) ((*tr0)->no_data_structure_clone)
173 - ((i32) ((*tr1)->no_data_structure_clone)));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174}
175
176static uword *
Damjan Marion01914ce2017-09-14 19:04:50 +0200177clib_sysfs_list_to_bitmap (char *filename)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178{
179 FILE *fp;
180 uword *r = 0;
181
182 fp = fopen (filename, "r");
183
184 if (fp != NULL)
185 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400186 u8 *buffer = 0;
187 vec_validate (buffer, 256 - 1);
188 if (fgets ((char *) buffer, 256, fp))
189 {
190 unformat_input_t in;
191 unformat_init_string (&in, (char *) buffer,
192 strlen ((char *) buffer));
Dave Barachb2a6e252016-07-27 10:00:58 -0400193 if (unformat (&in, "%U", unformat_bitmap_list, &r) != 1)
Ed Warnicke853e7202016-08-12 11:42:26 -0700194 clib_warning ("unformat_bitmap_list failed");
Dave Barach9b8ffd92016-07-08 08:13:45 -0400195 unformat_free (&in);
196 }
197 vec_free (buffer);
198 fclose (fp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700199 }
200 return r;
201}
202
203
204/* Called early in the init sequence */
205
206clib_error_t *
207vlib_thread_init (vlib_main_t * vm)
208{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400209 vlib_thread_main_t *tm = &vlib_thread_main;
210 vlib_worker_thread_t *w;
211 vlib_thread_registration_t *tr;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212 u32 n_vlib_mains = 1;
213 u32 first_index = 1;
214 u32 i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400215 uword *avail_cpu;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216
217 /* get bitmaps of active cpu cores and sockets */
218 tm->cpu_core_bitmap =
Damjan Marion01914ce2017-09-14 19:04:50 +0200219 clib_sysfs_list_to_bitmap ("/sys/devices/system/cpu/online");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220 tm->cpu_socket_bitmap =
Damjan Marion01914ce2017-09-14 19:04:50 +0200221 clib_sysfs_list_to_bitmap ("/sys/devices/system/node/online");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700222
Dave Barach9b8ffd92016-07-08 08:13:45 -0400223 avail_cpu = clib_bitmap_dup (tm->cpu_core_bitmap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224
225 /* skip cores */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400226 for (i = 0; i < tm->skip_cores; i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400228 uword c = clib_bitmap_first_set (avail_cpu);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229 if (c == ~0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400230 return clib_error_return (0, "no available cpus to skip");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231
Dave Barach9b8ffd92016-07-08 08:13:45 -0400232 avail_cpu = clib_bitmap_set (avail_cpu, c, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700233 }
234
235 /* grab cpu for main thread */
Damjan Marion858151f2018-07-11 10:51:00 +0200236 if (tm->main_lcore == ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237 {
Damjan Marion858151f2018-07-11 10:51:00 +0200238 /* if main-lcore is not set, we try to use lcore 1 */
239 if (clib_bitmap_get (avail_cpu, 1))
240 tm->main_lcore = 1;
241 else
242 tm->main_lcore = clib_bitmap_first_set (avail_cpu);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400243 if (tm->main_lcore == (u8) ~ 0)
244 return clib_error_return (0, "no available cpus to be used for the"
245 " main thread");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246 }
247 else
248 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400249 if (clib_bitmap_get (avail_cpu, tm->main_lcore) == 0)
250 return clib_error_return (0, "cpu %u is not available to be used"
251 " for the main thread", tm->main_lcore);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400253 avail_cpu = clib_bitmap_set (avail_cpu, tm->main_lcore, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700254
255 /* assume that there is socket 0 only if there is no data from sysfs */
256 if (!tm->cpu_socket_bitmap)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400257 tm->cpu_socket_bitmap = clib_bitmap_set (0, 0, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258
Christophe Fontainefef15b42016-04-09 12:38:49 +0900259 /* pin main thread to main_lcore */
Damjan Marion878c6092017-01-04 13:19:27 +0100260 if (tm->cb.vlib_thread_set_lcore_cb)
261 {
262 tm->cb.vlib_thread_set_lcore_cb (0, tm->main_lcore);
263 }
Damjan Marion858151f2018-07-11 10:51:00 +0200264 else
265 {
266 cpu_set_t cpuset;
267 CPU_ZERO (&cpuset);
268 CPU_SET (tm->main_lcore, &cpuset);
269 pthread_setaffinity_np (pthread_self (), sizeof (cpu_set_t), &cpuset);
270 }
Christophe Fontainefef15b42016-04-09 12:38:49 +0900271
Dave Barach2180bac2019-05-10 15:25:10 -0400272 /* Set up thread 0 */
273 vec_validate_aligned (vlib_worker_threads, 0, CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400274 _vec_len (vlib_worker_threads) = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275 w = vlib_worker_threads;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400276 w->thread_mheap = clib_mem_get_heap ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277 w->thread_stack = vlib_thread_stacks[0];
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200278 w->cpu_id = tm->main_lcore;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400279 w->lwp = syscall (SYS_gettid);
Pavel Kotucek98765202016-10-07 08:37:28 +0200280 w->thread_id = pthread_self ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281 tm->n_vlib_mains = 1;
282
Jon Loeligerf617b142020-01-30 18:37:47 -0600283 vlib_get_thread_core_numa (w, w->cpu_id);
284
Pavel Kotucek1e765832016-09-23 08:54:14 +0200285 if (tm->sched_policy != ~0)
286 {
287 struct sched_param sched_param;
288 if (!sched_getparam (w->lwp, &sched_param))
289 {
290 if (tm->sched_priority != ~0)
291 sched_param.sched_priority = tm->sched_priority;
292 sched_setscheduler (w->lwp, tm->sched_policy, &sched_param);
293 }
294 }
295
Ed Warnickecb9cada2015-12-08 15:45:58 -0700296 /* assign threads to cores and set n_vlib_mains */
297 tr = tm->next;
298
299 while (tr)
300 {
301 vec_add1 (tm->registrations, tr);
302 tr = tr->next;
303 }
304
Dave Barach9b8ffd92016-07-08 08:13:45 -0400305 vec_sort_with_function (tm->registrations, sort_registrations_by_no_clone);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700306
307 for (i = 0; i < vec_len (tm->registrations); i++)
308 {
309 int j;
310 tr = tm->registrations[i];
311 tr->first_index = first_index;
312 first_index += tr->count;
313 n_vlib_mains += (tr->no_data_structure_clone == 0) ? tr->count : 0;
314
315 /* construct coremask */
316 if (tr->use_pthreads || !tr->count)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400317 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700318
319 if (tr->coremask)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400320 {
321 uword c;
322 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700323 clib_bitmap_foreach (c, tr->coremask, ({
324 if (clib_bitmap_get(avail_cpu, c) == 0)
325 return clib_error_return (0, "cpu %u is not available to be used"
326 " for the '%s' thread",c, tr->name);
327
328 avail_cpu = clib_bitmap_set(avail_cpu, c, 0);
329 }));
Dave Barach2180bac2019-05-10 15:25:10 -0400330 /* *INDENT-ON* */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400331 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400333 {
334 for (j = 0; j < tr->count; j++)
335 {
Vladimir Isaev2ed42042020-03-17 12:56:31 +0300336 /* Do not use CPU 0 by default - leave it to the host and IRQs */
337 uword avail_c0 = clib_bitmap_get (avail_cpu, 0);
338 avail_cpu = clib_bitmap_set (avail_cpu, 0, 0);
339
Dave Barach9b8ffd92016-07-08 08:13:45 -0400340 uword c = clib_bitmap_first_set (avail_cpu);
Vladimir Isaev2ed42042020-03-17 12:56:31 +0300341 /* Use CPU 0 as a last resort */
342 if (c == ~0 && avail_c0)
343 {
344 c = 0;
345 avail_c0 = 0;
346 }
347
Dave Barach9b8ffd92016-07-08 08:13:45 -0400348 if (c == ~0)
349 return clib_error_return (0,
350 "no available cpus to be used for"
351 " the '%s' thread", tr->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352
Vladimir Isaev2ed42042020-03-17 12:56:31 +0300353 avail_cpu = clib_bitmap_set (avail_cpu, 0, avail_c0);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400354 avail_cpu = clib_bitmap_set (avail_cpu, c, 0);
355 tr->coremask = clib_bitmap_set (tr->coremask, c, 1);
356 }
357 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700358 }
359
Dave Barach9b8ffd92016-07-08 08:13:45 -0400360 clib_bitmap_free (avail_cpu);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361
362 tm->n_vlib_mains = n_vlib_mains;
363
Dave Barach2180bac2019-05-10 15:25:10 -0400364 /*
365 * Allocate the remaining worker threads, and thread stack vector slots
366 * from now on, calls to os_get_nthreads() will return the correct
367 * answer.
368 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400369 vec_validate_aligned (vlib_worker_threads, first_index - 1,
370 CLIB_CACHE_LINE_BYTES);
Dave Barach2180bac2019-05-10 15:25:10 -0400371 vec_validate (vlib_thread_stacks, vec_len (vlib_worker_threads) - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700372 return 0;
373}
374
Dave Barach9b8ffd92016-07-08 08:13:45 -0400375vlib_frame_queue_t *
376vlib_frame_queue_alloc (int nelts)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400378 vlib_frame_queue_t *fq;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700379
Dave Barach9b8ffd92016-07-08 08:13:45 -0400380 fq = clib_mem_alloc_aligned (sizeof (*fq), CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400381 clib_memset (fq, 0, sizeof (*fq));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700382 fq->nelts = nelts;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400383 fq->vector_threshold = 128; // packets
384 vec_validate_aligned (fq->elts, nelts - 1, CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385
386 if (1)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400387 {
388 if (((uword) & fq->tail) & (CLIB_CACHE_LINE_BYTES - 1))
389 fformat (stderr, "WARNING: fq->tail unaligned\n");
390 if (((uword) & fq->head) & (CLIB_CACHE_LINE_BYTES - 1))
391 fformat (stderr, "WARNING: fq->head unaligned\n");
392 if (((uword) fq->elts) & (CLIB_CACHE_LINE_BYTES - 1))
393 fformat (stderr, "WARNING: fq->elts unaligned\n");
394
395 if (sizeof (fq->elts[0]) % CLIB_CACHE_LINE_BYTES)
396 fformat (stderr, "WARNING: fq->elts[0] size %d\n",
397 sizeof (fq->elts[0]));
398 if (nelts & (nelts - 1))
399 {
400 fformat (stderr, "FATAL: nelts MUST be a power of 2\n");
401 abort ();
402 }
403 }
404
Ed Warnickecb9cada2015-12-08 15:45:58 -0700405 return (fq);
406}
407
408void vl_msg_api_handler_no_free (void *) __attribute__ ((weak));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400409void
410vl_msg_api_handler_no_free (void *v)
411{
412}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700413
414/* Turned off, save as reference material... */
415#if 0
Dave Barach9b8ffd92016-07-08 08:13:45 -0400416static inline int
417vlib_frame_queue_dequeue_internal (int thread_id,
418 vlib_main_t * vm, vlib_node_main_t * nm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700419{
420 vlib_frame_queue_t *fq = vlib_frame_queues[thread_id];
421 vlib_frame_queue_elt_t *elt;
422 vlib_frame_t *f;
423 vlib_pending_frame_t *p;
424 vlib_node_runtime_t *r;
425 u32 node_runtime_index;
426 int msg_type;
427 u64 before;
428 int processed = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400429
430 ASSERT (vm == vlib_mains[thread_id]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431
432 while (1)
433 {
434 if (fq->head == fq->tail)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400435 return processed;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700436
Dave Barach9b8ffd92016-07-08 08:13:45 -0400437 elt = fq->elts + ((fq->head + 1) & (fq->nelts - 1));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438
439 if (!elt->valid)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400440 return processed;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700441
Dave Barach9b8ffd92016-07-08 08:13:45 -0400442 before = clib_cpu_time_now ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700443
444 f = elt->frame;
445 node_runtime_index = elt->node_runtime_index;
446 msg_type = elt->msg_type;
447
448 switch (msg_type)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400449 {
450 case VLIB_FRAME_QUEUE_ELT_FREE_BUFFERS:
451 vlib_buffer_free (vm, vlib_frame_vector_args (f), f->n_vectors);
452 /* note fallthrough... */
453 case VLIB_FRAME_QUEUE_ELT_FREE_FRAME:
454 r = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
455 node_runtime_index);
456 vlib_frame_free (vm, r, f);
457 break;
458 case VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME:
459 vec_add2 (vm->node_main.pending_frames, p, 1);
460 f->flags |= (VLIB_FRAME_PENDING | VLIB_FRAME_FREE_AFTER_DISPATCH);
461 p->node_runtime_index = elt->node_runtime_index;
462 p->frame_index = vlib_frame_index (vm, f);
463 p->next_frame_index = VLIB_PENDING_FRAME_NO_NEXT_FRAME;
464 fq->dequeue_vectors += (u64) f->n_vectors;
465 break;
466 case VLIB_FRAME_QUEUE_ELT_API_MSG:
467 vl_msg_api_handler_no_free (f);
468 break;
469 default:
470 clib_warning ("bogus frame queue message, type %d", msg_type);
471 break;
472 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700473 elt->valid = 0;
474 fq->dequeues++;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400475 fq->dequeue_ticks += clib_cpu_time_now () - before;
476 CLIB_MEMORY_BARRIER ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700477 fq->head++;
478 processed++;
479 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400480 ASSERT (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700481 return processed;
482}
483
Dave Barach9b8ffd92016-07-08 08:13:45 -0400484int
485vlib_frame_queue_dequeue (int thread_id,
486 vlib_main_t * vm, vlib_node_main_t * nm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700487{
488 return vlib_frame_queue_dequeue_internal (thread_id, vm, nm);
489}
490
Dave Barach9b8ffd92016-07-08 08:13:45 -0400491int
492vlib_frame_queue_enqueue (vlib_main_t * vm, u32 node_runtime_index,
493 u32 frame_queue_index, vlib_frame_t * frame,
494 vlib_frame_queue_msg_type_t type)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700495{
496 vlib_frame_queue_t *fq = vlib_frame_queues[frame_queue_index];
497 vlib_frame_queue_elt_t *elt;
498 u32 save_count;
499 u64 new_tail;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400500 u64 before = clib_cpu_time_now ();
501
Ed Warnickecb9cada2015-12-08 15:45:58 -0700502 ASSERT (fq);
503
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000504 new_tail = clib_atomic_add_fetch (&fq->tail, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700505
506 /* Wait until a ring slot is available */
507 while (new_tail >= fq->head + fq->nelts)
508 {
509 f64 b4 = vlib_time_now_ticks (vm, before);
510 vlib_worker_thread_barrier_check (vm, b4);
511 /* Bad idea. Dequeue -> enqueue -> dequeue -> trouble */
Damjan Marion586afd72017-04-05 19:18:20 +0200512 // vlib_frame_queue_dequeue (vm->thread_index, vm, nm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700513 }
514
Dave Barach9b8ffd92016-07-08 08:13:45 -0400515 elt = fq->elts + (new_tail & (fq->nelts - 1));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700516
517 /* this would be very bad... */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400518 while (elt->valid)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700519 {
520 }
521
522 /* Once we enqueue the frame, frame->n_vectors is owned elsewhere... */
523 save_count = frame->n_vectors;
524
525 elt->frame = frame;
526 elt->node_runtime_index = node_runtime_index;
527 elt->msg_type = type;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400528 CLIB_MEMORY_BARRIER ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700529 elt->valid = 1;
530
531 return save_count;
532}
533#endif /* 0 */
534
535/* To be called by vlib worker threads upon startup */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400536void
537vlib_worker_thread_init (vlib_worker_thread_t * w)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700538{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400539 vlib_thread_main_t *tm = vlib_get_thread_main ();
540
Dave Barachfdf49442016-12-20 12:48:14 -0500541 /*
542 * Note: disabling signals in worker threads as follows
543 * prevents the api post-mortem dump scheme from working
544 * {
545 * sigset_t s;
546 * sigfillset (&s);
547 * pthread_sigmask (SIG_SETMASK, &s, 0);
548 * }
549 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700550
551 clib_mem_set_heap (w->thread_mheap);
552
Dave Barach9b8ffd92016-07-08 08:13:45 -0400553 if (vec_len (tm->thread_prefix) && w->registration->short_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700554 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400555 w->name = format (0, "%v_%s_%d%c", tm->thread_prefix,
556 w->registration->short_name, w->instance_id, '\0');
557 vlib_set_thread_name ((char *) w->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700558 }
559
560 if (!w->registration->use_pthreads)
561 {
562
563 /* Initial barrier sync, for both worker and i/o threads */
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000564 clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700565
566 while (*vlib_worker_threads->wait_at_barrier)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400567 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700568
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000569 clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, -1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570 }
571}
572
Dave Barach9b8ffd92016-07-08 08:13:45 -0400573void *
574vlib_worker_thread_bootstrap_fn (void *arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700575{
576 void *rv;
577 vlib_worker_thread_t *w = arg;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400578
579 w->lwp = syscall (SYS_gettid);
Pavel Kotucek98765202016-10-07 08:37:28 +0200580 w->thread_id = pthread_self ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700581
Damjan Marionf55f9b82017-05-10 21:06:28 +0200582 __os_thread_index = w - vlib_worker_threads;
Damjan Marion586afd72017-04-05 19:18:20 +0200583
Damjan Marioncea46522020-05-21 16:47:05 +0200584 vlib_process_start_switch_stack (vlib_mains[__os_thread_index], 0);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400585 rv = (void *) clib_calljmp
586 ((uword (*)(uword)) w->thread_function,
587 (uword) arg, w->thread_stack + VLIB_THREAD_STACK_SIZE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700588 /* NOTREACHED, we hope */
589 return rv;
590}
591
Dave Baracha690fdb2020-01-21 12:34:55 -0500592void
593vlib_get_thread_core_numa (vlib_worker_thread_t * w, unsigned cpu_id)
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200594{
595 const char *sys_cpu_path = "/sys/devices/system/cpu/cpu";
Lijian.Zhang4fbb9da2020-02-14 15:16:49 +0800596 const char *sys_node_path = "/sys/devices/system/node/node";
597 clib_bitmap_t *nbmp = 0, *cbmp = 0;
598 u32 node;
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200599 u8 *p = 0;
Dave Baracha690fdb2020-01-21 12:34:55 -0500600 int core_id = -1, numa_id = -1;
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200601
602 p = format (p, "%s%u/topology/core_id%c", sys_cpu_path, cpu_id, 0);
603 clib_sysfs_read ((char *) p, "%d", &core_id);
604 vec_reset_length (p);
Lijian.Zhang4fbb9da2020-02-14 15:16:49 +0800605
606 /* *INDENT-OFF* */
607 clib_sysfs_read ("/sys/devices/system/node/online", "%U",
608 unformat_bitmap_list, &nbmp);
609 clib_bitmap_foreach (node, nbmp, ({
610 p = format (p, "%s%u/cpulist%c", sys_node_path, node, 0);
611 clib_sysfs_read ((char *) p, "%U", unformat_bitmap_list, &cbmp);
612 if (clib_bitmap_get (cbmp, cpu_id))
613 numa_id = node;
614 vec_reset_length (cbmp);
615 vec_reset_length (p);
616 }));
617 /* *INDENT-ON* */
618 vec_free (nbmp);
619 vec_free (cbmp);
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200620 vec_free (p);
621
622 w->core_id = core_id;
Dave Baracha690fdb2020-01-21 12:34:55 -0500623 w->numa_id = numa_id;
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200624}
625
Damjan Marion878c6092017-01-04 13:19:27 +0100626static clib_error_t *
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200627vlib_launch_thread_int (void *fp, vlib_worker_thread_t * w, unsigned cpu_id)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700628{
Damjan Marion57d1ec02020-09-16 21:15:44 +0200629 clib_mem_main_t *mm = &clib_mem_main;
Damjan Marion878c6092017-01-04 13:19:27 +0100630 vlib_thread_main_t *tm = &vlib_thread_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400631 void *(*fp_arg) (void *) = fp;
Dave Baracha690fdb2020-01-21 12:34:55 -0500632 void *numa_heap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700633
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200634 w->cpu_id = cpu_id;
Dave Baracha690fdb2020-01-21 12:34:55 -0500635 vlib_get_thread_core_numa (w, cpu_id);
Dave Baracha690fdb2020-01-21 12:34:55 -0500636
637 /* Set up NUMA-bound heap if indicated */
Damjan Marion57d1ec02020-09-16 21:15:44 +0200638 if (mm->per_numa_mheaps[w->numa_id] == 0)
Dave Baracha690fdb2020-01-21 12:34:55 -0500639 {
640 /* If the user requested a NUMA heap, create it... */
641 if (tm->numa_heap_size)
642 {
Damjan Marion2bc1af52020-10-02 15:01:12 +0200643 clib_mem_set_numa_affinity (w->numa_id, 1 /* force */ );
644 numa_heap = clib_mem_create_heap (0 /* DIY */ , tm->numa_heap_size,
645 1 /* is_locked */ ,
646 "numa %u heap", w->numa_id);
647 clib_mem_set_default_numa_affinity ();
Damjan Marion57d1ec02020-09-16 21:15:44 +0200648 mm->per_numa_mheaps[w->numa_id] = numa_heap;
Dave Baracha690fdb2020-01-21 12:34:55 -0500649 }
650 else
651 {
652 /* Or, use the main heap */
Damjan Marion57d1ec02020-09-16 21:15:44 +0200653 mm->per_numa_mheaps[w->numa_id] = w->thread_mheap;
Dave Baracha690fdb2020-01-21 12:34:55 -0500654 }
655 }
656
Damjan Marion878c6092017-01-04 13:19:27 +0100657 if (tm->cb.vlib_launch_thread_cb && !w->registration->use_pthreads)
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200658 return tm->cb.vlib_launch_thread_cb (fp, (void *) w, cpu_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700659 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400660 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400661 pthread_t worker;
662 cpu_set_t cpuset;
663 CPU_ZERO (&cpuset);
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200664 CPU_SET (cpu_id, &cpuset);
Christophe Fontainefef15b42016-04-09 12:38:49 +0900665
Damjan Marion878c6092017-01-04 13:19:27 +0100666 if (pthread_create (&worker, NULL /* attr */ , fp_arg, (void *) w))
667 return clib_error_return_unix (0, "pthread_create");
668
669 if (pthread_setaffinity_np (worker, sizeof (cpu_set_t), &cpuset))
670 return clib_error_return_unix (0, "pthread_setaffinity_np");
671
672 return 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400673 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700674}
675
Dave Barach9b8ffd92016-07-08 08:13:45 -0400676static clib_error_t *
677start_workers (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700678{
679 int i, j;
680 vlib_worker_thread_t *w;
681 vlib_main_t *vm_clone;
682 void *oldheap;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400683 vlib_thread_main_t *tm = &vlib_thread_main;
684 vlib_thread_registration_t *tr;
685 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700686 u32 n_vlib_mains = tm->n_vlib_mains;
687 u32 worker_thread_index;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400688 u8 *main_heap = clib_mem_get_per_cpu_heap ();
Dave Barach9b8ffd92016-07-08 08:13:45 -0400689
Ed Warnickecb9cada2015-12-08 15:45:58 -0700690 vec_reset_length (vlib_worker_threads);
691
692 /* Set up the main thread */
693 vec_add2_aligned (vlib_worker_threads, w, 1, CLIB_CACHE_LINE_BYTES);
Dave Barach3e7deb12016-02-05 16:29:53 -0500694 w->elog_track.name = "main thread";
Ed Warnickecb9cada2015-12-08 15:45:58 -0700695 elog_track_register (&vm->elog_main, &w->elog_track);
696
Dave Barach9b8ffd92016-07-08 08:13:45 -0400697 if (vec_len (tm->thread_prefix))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700698 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400699 w->name = format (0, "%v_main%c", tm->thread_prefix, '\0');
700 vlib_set_thread_name ((char *) w->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700701 }
702
Dave Barach9b8ffd92016-07-08 08:13:45 -0400703 vm->elog_main.lock =
704 clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES, CLIB_CACHE_LINE_BYTES);
Dave Barach848191d2016-04-28 16:24:15 -0400705 vm->elog_main.lock[0] = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400706
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000707 clib_callback_data_init (&vm->vlib_node_runtime_perf_callbacks,
708 &vm->worker_thread_main_loop_callback_lock);
709
Dave Barach1c556d12020-10-02 11:35:44 -0400710 /* Replace hand-crafted length-1 vector with a real vector */
711 vlib_mains = 0;
712
713 vec_validate_aligned (vlib_mains, n_vlib_mains - 1, CLIB_CACHE_LINE_BYTES);
714 _vec_len (vlib_mains) = 0;
715 vec_add1_aligned (vlib_mains, vm, CLIB_CACHE_LINE_BYTES);
716
Ed Warnickecb9cada2015-12-08 15:45:58 -0700717 if (n_vlib_mains > 1)
718 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400719 vlib_worker_threads->wait_at_barrier =
720 clib_mem_alloc_aligned (sizeof (u32), CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700721 vlib_worker_threads->workers_at_barrier =
Dave Barach9b8ffd92016-07-08 08:13:45 -0400722 clib_mem_alloc_aligned (sizeof (u32), CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700723
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100724 vlib_worker_threads->node_reforks_required =
725 clib_mem_alloc_aligned (sizeof (u32), CLIB_CACHE_LINE_BYTES);
726
Dave Barachf6c68d72018-11-01 08:12:52 -0400727 /* We'll need the rpc vector lock... */
728 clib_spinlock_init (&vm->pending_rpc_lock);
729
Ed Warnickecb9cada2015-12-08 15:45:58 -0700730 /* Ask for an initial barrier sync */
731 *vlib_worker_threads->workers_at_barrier = 0;
732 *vlib_worker_threads->wait_at_barrier = 1;
733
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100734 /* Without update or refork */
735 *vlib_worker_threads->node_reforks_required = 0;
736 vm->need_vlib_worker_thread_node_runtime_update = 0;
737
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100738 /* init timing */
739 vm->barrier_epoch = 0;
740 vm->barrier_no_close_before = 0;
741
Ed Warnickecb9cada2015-12-08 15:45:58 -0700742 worker_thread_index = 1;
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000743 clib_spinlock_init (&vm->worker_thread_main_loop_callback_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700744
Dave Barach9b8ffd92016-07-08 08:13:45 -0400745 for (i = 0; i < vec_len (tm->registrations); i++)
746 {
747 vlib_node_main_t *nm, *nm_clone;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400748 int k;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700749
Dave Barach9b8ffd92016-07-08 08:13:45 -0400750 tr = tm->registrations[i];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700751
Dave Barach9b8ffd92016-07-08 08:13:45 -0400752 if (tr->count == 0)
753 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700754
Dave Barach9b8ffd92016-07-08 08:13:45 -0400755 for (k = 0; k < tr->count; k++)
756 {
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100757 vlib_node_t *n;
758
Dave Barach9b8ffd92016-07-08 08:13:45 -0400759 vec_add2 (vlib_worker_threads, w, 1);
Dave Barach6a5adc32018-07-04 10:56:23 -0400760 /* Currently unused, may not really work */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400761 if (tr->mheap_size)
Damjan Marion4537c302020-09-28 19:03:37 +0200762 w->thread_mheap = clib_mem_create_heap (0, tr->mheap_size,
763 /* unlocked */ 0,
764 "%s%d heap",
765 tr->name, k);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400766 else
767 w->thread_mheap = main_heap;
Damjan Marion586afd72017-04-05 19:18:20 +0200768
769 w->thread_stack =
770 vlib_thread_stack_init (w - vlib_worker_threads);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400771 w->thread_function = tr->function;
772 w->thread_function_arg = w;
773 w->instance_id = k;
774 w->registration = tr;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700775
Dave Barach9b8ffd92016-07-08 08:13:45 -0400776 w->elog_track.name =
777 (char *) format (0, "%s %d", tr->name, k + 1);
778 vec_add1 (w->elog_track.name, 0);
779 elog_track_register (&vm->elog_main, &w->elog_track);
Bud Grise68adab92016-02-12 10:36:11 -0500780
Dave Barach9b8ffd92016-07-08 08:13:45 -0400781 if (tr->no_data_structure_clone)
782 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700783
Dave Barach9b8ffd92016-07-08 08:13:45 -0400784 /* Fork vlib_global_main et al. Look for bugs here */
785 oldheap = clib_mem_set_heap (w->thread_mheap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700786
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200787 vm_clone = clib_mem_alloc_aligned (sizeof (*vm_clone),
788 CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400789 clib_memcpy (vm_clone, vlib_mains[0], sizeof (*vm_clone));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700790
Damjan Marion586afd72017-04-05 19:18:20 +0200791 vm_clone->thread_index = worker_thread_index;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400792 vm_clone->heap_base = w->thread_mheap;
Dave Barach6a5adc32018-07-04 10:56:23 -0400793 vm_clone->heap_aligned_base = (void *)
794 (((uword) w->thread_mheap) & ~(VLIB_FRAME_ALIGN - 1));
Damjan Marione9f929b2017-03-16 11:32:09 +0100795 vm_clone->init_functions_called =
796 hash_create (0, /* value bytes */ 0);
Dave Barach2877eee2017-12-15 12:22:57 -0500797 vm_clone->pending_rpc_requests = 0;
798 vec_validate (vm_clone->pending_rpc_requests, 0);
799 _vec_len (vm_clone->pending_rpc_requests) = 0;
Dave Barachb7b92992018-10-17 10:38:51 -0400800 clib_memset (&vm_clone->random_buffer, 0,
801 sizeof (vm_clone->random_buffer));
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000802 clib_spinlock_init
803 (&vm_clone->worker_thread_main_loop_callback_lock);
804 clib_callback_data_init
805 (&vm_clone->vlib_node_runtime_perf_callbacks,
806 &vm_clone->worker_thread_main_loop_callback_lock);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700807
Dave Barach9b8ffd92016-07-08 08:13:45 -0400808 nm = &vlib_mains[0]->node_main;
809 nm_clone = &vm_clone->node_main;
810 /* fork next frames array, preserving node runtime indices */
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200811 nm_clone->next_frames = vec_dup_aligned (nm->next_frames,
812 CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400813 for (j = 0; j < vec_len (nm_clone->next_frames); j++)
814 {
815 vlib_next_frame_t *nf = &nm_clone->next_frames[j];
816 u32 save_node_runtime_index;
817 u32 save_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700818
Dave Barach9b8ffd92016-07-08 08:13:45 -0400819 save_node_runtime_index = nf->node_runtime_index;
820 save_flags = nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH;
821 vlib_next_frame_init (nf);
822 nf->node_runtime_index = save_node_runtime_index;
823 nf->flags = save_flags;
824 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700825
Dave Barach9b8ffd92016-07-08 08:13:45 -0400826 /* fork the frame dispatch queue */
827 nm_clone->pending_frames = 0;
Dave Barach53fe4a72019-01-26 09:50:26 -0500828 vec_validate (nm_clone->pending_frames, 10);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400829 _vec_len (nm_clone->pending_frames) = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700830
Dave Barach9b8ffd92016-07-08 08:13:45 -0400831 /* fork nodes */
832 nm_clone->nodes = 0;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100833
834 /* Allocate all nodes in single block for speed */
835 n = clib_mem_alloc_no_fail (vec_len (nm->nodes) * sizeof (*n));
836
Dave Barach9b8ffd92016-07-08 08:13:45 -0400837 for (j = 0; j < vec_len (nm->nodes); j++)
838 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400839 clib_memcpy (n, nm->nodes[j], sizeof (*n));
840 /* none of the copied nodes have enqueue rights given out */
841 n->owner_node_index = VLIB_INVALID_NODE_INDEX;
Dave Barachb7b92992018-10-17 10:38:51 -0400842 clib_memset (&n->stats_total, 0, sizeof (n->stats_total));
843 clib_memset (&n->stats_last_clear, 0,
844 sizeof (n->stats_last_clear));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400845 vec_add1 (nm_clone->nodes, n);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100846 n++;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400847 }
848 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200849 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
850 CLIB_CACHE_LINE_BYTES);
JingLiuZTE30af5da2017-07-24 10:53:31 +0800851 vec_foreach (rt,
852 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL])
Damjan Marione9f929b2017-03-16 11:32:09 +0100853 {
854 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
Damjan Marion586afd72017-04-05 19:18:20 +0200855 rt->thread_index = vm_clone->thread_index;
Damjan Marione9f929b2017-03-16 11:32:09 +0100856 /* copy initial runtime_data from node */
Damjan Marionb6f93a12017-03-16 17:46:41 +0100857 if (n->runtime_data && n->runtime_data_bytes > 0)
Damjan Marione9f929b2017-03-16 11:32:09 +0100858 clib_memcpy (rt->runtime_data, n->runtime_data,
Damjan Marionb6f93a12017-03-16 17:46:41 +0100859 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
860 n->runtime_data_bytes));
Damjan Marione9f929b2017-03-16 11:32:09 +0100861 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700862
Dave Barach9b8ffd92016-07-08 08:13:45 -0400863 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200864 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
865 CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400866 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT])
Damjan Marione9f929b2017-03-16 11:32:09 +0100867 {
868 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
Damjan Marion586afd72017-04-05 19:18:20 +0200869 rt->thread_index = vm_clone->thread_index;
Damjan Marione9f929b2017-03-16 11:32:09 +0100870 /* copy initial runtime_data from node */
Damjan Marionb6f93a12017-03-16 17:46:41 +0100871 if (n->runtime_data && n->runtime_data_bytes > 0)
Damjan Marione9f929b2017-03-16 11:32:09 +0100872 clib_memcpy (rt->runtime_data, n->runtime_data,
Damjan Marionb6f93a12017-03-16 17:46:41 +0100873 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
874 n->runtime_data_bytes));
Damjan Marione9f929b2017-03-16 11:32:09 +0100875 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700876
Dave Barach53fe4a72019-01-26 09:50:26 -0500877 nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT] =
878 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT],
879 CLIB_CACHE_LINE_BYTES);
880 vec_foreach (rt,
881 nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT])
882 {
883 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
884 rt->thread_index = vm_clone->thread_index;
885 /* copy initial runtime_data from node */
886 if (n->runtime_data && n->runtime_data_bytes > 0)
887 clib_memcpy (rt->runtime_data, n->runtime_data,
888 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
889 n->runtime_data_bytes));
890 }
891
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200892 nm_clone->processes = vec_dup_aligned (nm->processes,
893 CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700894
Dave Barach593eedf2019-03-10 09:44:51 -0400895 /* Create per-thread frame freelist */
896 nm_clone->frame_sizes = vec_new (vlib_frame_size_t, 1);
897#ifdef VLIB_SUPPORTS_ARBITRARY_SCALAR_SIZES
Florin Coras93992a92017-05-24 18:03:56 -0700898 nm_clone->frame_size_hash = hash_create (0, sizeof (uword));
Dave Barach593eedf2019-03-10 09:44:51 -0400899#endif
Dave Barach687c9022019-07-23 10:22:31 -0400900 nm_clone->node_by_error = nm->node_by_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700901
Dave Barach9b8ffd92016-07-08 08:13:45 -0400902 /* Packet trace buffers are guaranteed to be empty, nothing to do here */
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100903
Dave Barach9b8ffd92016-07-08 08:13:45 -0400904 clib_mem_set_heap (oldheap);
Dave Barach80f54e22017-03-08 19:08:56 -0500905 vec_add1_aligned (vlib_mains, vm_clone, CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700906
Ole Troan233e4682019-05-16 15:01:34 +0200907 /* Switch to the stats segment ... */
908 void *oldheap = vlib_stats_push_heap (0);
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200909 vm_clone->error_main.counters = vec_dup_aligned
910 (vlib_mains[0]->error_main.counters, CLIB_CACHE_LINE_BYTES);
Ole Troan233e4682019-05-16 15:01:34 +0200911 vlib_stats_pop_heap2 (vm_clone->error_main.counters,
912 worker_thread_index, oldheap, 1);
913
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200914 vm_clone->error_main.counters_last_clear = vec_dup_aligned
915 (vlib_mains[0]->error_main.counters_last_clear,
916 CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700917
Dave Barach9b8ffd92016-07-08 08:13:45 -0400918 worker_thread_index++;
919 }
920 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700921 }
922 else
923 {
924 /* only have non-data-structure copy threads to create... */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400925 for (i = 0; i < vec_len (tm->registrations); i++)
926 {
927 tr = tm->registrations[i];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700928
Dave Barach9b8ffd92016-07-08 08:13:45 -0400929 for (j = 0; j < tr->count; j++)
930 {
931 vec_add2 (vlib_worker_threads, w, 1);
932 if (tr->mheap_size)
Dave Barach6a5adc32018-07-04 10:56:23 -0400933 {
Damjan Marion4537c302020-09-28 19:03:37 +0200934 w->thread_mheap = clib_mem_create_heap (0, tr->mheap_size,
935 /* locked */ 0,
936 "%s%d heap",
937 tr->name, j);
Dave Barach6a5adc32018-07-04 10:56:23 -0400938 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400939 else
940 w->thread_mheap = main_heap;
Damjan Marion586afd72017-04-05 19:18:20 +0200941 w->thread_stack =
942 vlib_thread_stack_init (w - vlib_worker_threads);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400943 w->thread_function = tr->function;
944 w->thread_function_arg = w;
945 w->instance_id = j;
946 w->elog_track.name =
947 (char *) format (0, "%s %d", tr->name, j + 1);
948 w->registration = tr;
949 vec_add1 (w->elog_track.name, 0);
950 elog_track_register (&vm->elog_main, &w->elog_track);
951 }
952 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700953 }
954
955 worker_thread_index = 1;
956
957 for (i = 0; i < vec_len (tm->registrations); i++)
958 {
Damjan Marion878c6092017-01-04 13:19:27 +0100959 clib_error_t *err;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700960 int j;
961
962 tr = tm->registrations[i];
963
964 if (tr->use_pthreads || tm->use_pthreads)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400965 {
966 for (j = 0; j < tr->count; j++)
967 {
968 w = vlib_worker_threads + worker_thread_index++;
Damjan Marion878c6092017-01-04 13:19:27 +0100969 err = vlib_launch_thread_int (vlib_worker_thread_bootstrap_fn,
970 w, 0);
971 if (err)
972 clib_error_report (err);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400973 }
974 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700975 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400976 {
977 uword c;
Damjan Marion878c6092017-01-04 13:19:27 +0100978 /* *INDENT-OFF* */
979 clib_bitmap_foreach (c, tr->coremask, ({
980 w = vlib_worker_threads + worker_thread_index++;
981 err = vlib_launch_thread_int (vlib_worker_thread_bootstrap_fn,
982 w, c);
983 if (err)
984 clib_error_report (err);
985 }));
986 /* *INDENT-ON* */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400987 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700988 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400989 vlib_worker_thread_barrier_sync (vm);
990 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700991 return 0;
992}
993
994VLIB_MAIN_LOOP_ENTER_FUNCTION (start_workers);
995
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100996
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100997static inline void
998worker_thread_node_runtime_update_internal (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700999{
1000 int i, j;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001001 vlib_main_t *vm;
1002 vlib_node_main_t *nm, *nm_clone;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001003 vlib_main_t *vm_clone;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001004 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001005 never_inline void
1006 vlib_node_runtime_sync_stats (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001007 vlib_node_runtime_t * r,
1008 uword n_calls,
1009 uword n_vectors, uword n_clocks);
1010
Damjan Marion586afd72017-04-05 19:18:20 +02001011 ASSERT (vlib_get_thread_index () == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001012
Ed Warnickecb9cada2015-12-08 15:45:58 -07001013 vm = vlib_mains[0];
1014 nm = &vm->node_main;
1015
Ed Warnickecb9cada2015-12-08 15:45:58 -07001016 ASSERT (*vlib_worker_threads->wait_at_barrier == 1);
1017
Dave Barach9b8ffd92016-07-08 08:13:45 -04001018 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -07001019 * Scrape all runtime stats, so we don't lose node runtime(s) with
1020 * pending counts, or throw away worker / io thread counts.
1021 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001022 for (j = 0; j < vec_len (nm->nodes); j++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001023 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001024 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001025 n = nm->nodes[j];
1026 vlib_node_sync_stats (vm, n);
1027 }
1028
1029 for (i = 1; i < vec_len (vlib_mains); i++)
1030 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001031 vlib_node_t *n;
1032
Ed Warnickecb9cada2015-12-08 15:45:58 -07001033 vm_clone = vlib_mains[i];
1034 nm_clone = &vm_clone->node_main;
1035
Dave Barach9b8ffd92016-07-08 08:13:45 -04001036 for (j = 0; j < vec_len (nm_clone->nodes); j++)
1037 {
1038 n = nm_clone->nodes[j];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001039
Dave Barach9b8ffd92016-07-08 08:13:45 -04001040 rt = vlib_node_get_runtime (vm_clone, n->index);
1041 vlib_node_runtime_sync_stats (vm_clone, rt, 0, 0, 0);
1042 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001043 }
1044
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001045 /* Per-worker clone rebuilds are now done on each thread */
1046}
1047
1048
1049void
1050vlib_worker_thread_node_refork (void)
1051{
1052 vlib_main_t *vm, *vm_clone;
1053 vlib_node_main_t *nm, *nm_clone;
1054 vlib_node_t **old_nodes_clone;
1055 vlib_node_runtime_t *rt, *old_rt;
1056
1057 vlib_node_t *new_n_clone;
1058
1059 int j;
1060
1061 vm = vlib_mains[0];
1062 nm = &vm->node_main;
1063 vm_clone = vlib_get_main ();
1064 nm_clone = &vm_clone->node_main;
1065
1066 /* Re-clone error heap */
1067 u64 *old_counters = vm_clone->error_main.counters;
1068 u64 *old_counters_all_clear = vm_clone->error_main.counters_last_clear;
1069
Dave Barach178cf492018-11-13 16:34:13 -05001070 clib_memcpy_fast (&vm_clone->error_main, &vm->error_main,
1071 sizeof (vm->error_main));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001072 j = vec_len (vm->error_main.counters) - 1;
Ole Troan233e4682019-05-16 15:01:34 +02001073
1074 /* Switch to the stats segment ... */
1075 void *oldheap = vlib_stats_push_heap (0);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001076 vec_validate_aligned (old_counters, j, CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001077 vm_clone->error_main.counters = old_counters;
Ole Troan233e4682019-05-16 15:01:34 +02001078 vlib_stats_pop_heap2 (vm_clone->error_main.counters, vm_clone->thread_index,
1079 oldheap, 0);
1080
1081 vec_validate_aligned (old_counters_all_clear, j, CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001082 vm_clone->error_main.counters_last_clear = old_counters_all_clear;
1083
1084 nm_clone = &vm_clone->node_main;
1085 vec_free (nm_clone->next_frames);
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001086 nm_clone->next_frames = vec_dup_aligned (nm->next_frames,
1087 CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001088
1089 for (j = 0; j < vec_len (nm_clone->next_frames); j++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001090 {
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001091 vlib_next_frame_t *nf = &nm_clone->next_frames[j];
1092 u32 save_node_runtime_index;
1093 u32 save_flags;
Damjan Marionbc20bdf2015-12-17 14:28:18 +01001094
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001095 save_node_runtime_index = nf->node_runtime_index;
1096 save_flags = nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH;
1097 vlib_next_frame_init (nf);
1098 nf->node_runtime_index = save_node_runtime_index;
1099 nf->flags = save_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001100 }
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001101
1102 old_nodes_clone = nm_clone->nodes;
1103 nm_clone->nodes = 0;
1104
1105 /* re-fork nodes */
1106
1107 /* Allocate all nodes in single block for speed */
1108 new_n_clone =
1109 clib_mem_alloc_no_fail (vec_len (nm->nodes) * sizeof (*new_n_clone));
1110 for (j = 0; j < vec_len (nm->nodes); j++)
1111 {
Benoît Ganne5517bd32019-08-30 16:20:12 +02001112 vlib_node_t *new_n = nm->nodes[j];
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001113
Dave Barach178cf492018-11-13 16:34:13 -05001114 clib_memcpy_fast (new_n_clone, new_n, sizeof (*new_n));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001115 /* none of the copied nodes have enqueue rights given out */
1116 new_n_clone->owner_node_index = VLIB_INVALID_NODE_INDEX;
1117
1118 if (j >= vec_len (old_nodes_clone))
1119 {
1120 /* new node, set to zero */
Dave Barachb7b92992018-10-17 10:38:51 -04001121 clib_memset (&new_n_clone->stats_total, 0,
1122 sizeof (new_n_clone->stats_total));
1123 clib_memset (&new_n_clone->stats_last_clear, 0,
1124 sizeof (new_n_clone->stats_last_clear));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001125 }
1126 else
1127 {
Benoît Ganne5517bd32019-08-30 16:20:12 +02001128 vlib_node_t *old_n_clone = old_nodes_clone[j];
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001129 /* Copy stats if the old data is valid */
Dave Barach178cf492018-11-13 16:34:13 -05001130 clib_memcpy_fast (&new_n_clone->stats_total,
1131 &old_n_clone->stats_total,
1132 sizeof (new_n_clone->stats_total));
1133 clib_memcpy_fast (&new_n_clone->stats_last_clear,
1134 &old_n_clone->stats_last_clear,
1135 sizeof (new_n_clone->stats_last_clear));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001136
1137 /* keep previous node state */
1138 new_n_clone->state = old_n_clone->state;
1139 }
1140 vec_add1 (nm_clone->nodes, new_n_clone);
1141 new_n_clone++;
1142 }
1143 /* Free the old node clones */
1144 clib_mem_free (old_nodes_clone[0]);
1145
1146 vec_free (old_nodes_clone);
1147
1148
1149 /* re-clone internal nodes */
1150 old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL];
1151 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001152 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
1153 CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001154
1155 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL])
1156 {
1157 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1158 rt->thread_index = vm_clone->thread_index;
1159 /* copy runtime_data, will be overwritten later for existing rt */
1160 if (n->runtime_data && n->runtime_data_bytes > 0)
Dave Barach178cf492018-11-13 16:34:13 -05001161 clib_memcpy_fast (rt->runtime_data, n->runtime_data,
1162 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1163 n->runtime_data_bytes));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001164 }
1165
1166 for (j = 0; j < vec_len (old_rt); j++)
1167 {
1168 rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1169 rt->state = old_rt[j].state;
Dave Barach178cf492018-11-13 16:34:13 -05001170 clib_memcpy_fast (rt->runtime_data, old_rt[j].runtime_data,
1171 VLIB_NODE_RUNTIME_DATA_SIZE);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001172 }
1173
1174 vec_free (old_rt);
1175
1176 /* re-clone input nodes */
1177 old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT];
1178 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001179 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
1180 CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001181
1182 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT])
1183 {
1184 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1185 rt->thread_index = vm_clone->thread_index;
1186 /* copy runtime_data, will be overwritten later for existing rt */
1187 if (n->runtime_data && n->runtime_data_bytes > 0)
Dave Barach178cf492018-11-13 16:34:13 -05001188 clib_memcpy_fast (rt->runtime_data, n->runtime_data,
1189 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1190 n->runtime_data_bytes));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001191 }
1192
1193 for (j = 0; j < vec_len (old_rt); j++)
1194 {
1195 rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1196 rt->state = old_rt[j].state;
Dave Barach178cf492018-11-13 16:34:13 -05001197 clib_memcpy_fast (rt->runtime_data, old_rt[j].runtime_data,
1198 VLIB_NODE_RUNTIME_DATA_SIZE);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001199 }
1200
1201 vec_free (old_rt);
1202
Dave Barach53fe4a72019-01-26 09:50:26 -05001203 /* re-clone pre-input nodes */
1204 old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT];
1205 nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT] =
1206 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT],
1207 CLIB_CACHE_LINE_BYTES);
1208
1209 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT])
1210 {
1211 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1212 rt->thread_index = vm_clone->thread_index;
1213 /* copy runtime_data, will be overwritten later for existing rt */
1214 if (n->runtime_data && n->runtime_data_bytes > 0)
1215 clib_memcpy_fast (rt->runtime_data, n->runtime_data,
1216 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1217 n->runtime_data_bytes));
1218 }
1219
1220 for (j = 0; j < vec_len (old_rt); j++)
1221 {
1222 rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1223 rt->state = old_rt[j].state;
1224 clib_memcpy_fast (rt->runtime_data, old_rt[j].runtime_data,
1225 VLIB_NODE_RUNTIME_DATA_SIZE);
1226 }
1227
1228 vec_free (old_rt);
1229
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001230 nm_clone->processes = vec_dup_aligned (nm->processes,
1231 CLIB_CACHE_LINE_BYTES);
Dave Barach687c9022019-07-23 10:22:31 -04001232 nm_clone->node_by_error = nm->node_by_error;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001233}
1234
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001235void
1236vlib_worker_thread_node_runtime_update (void)
1237{
1238 /*
1239 * Make a note that we need to do a node runtime update
1240 * prior to releasing the barrier.
1241 */
1242 vlib_global_main.need_vlib_worker_thread_node_runtime_update = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001243}
1244
Pavel Kotucek1e765832016-09-23 08:54:14 +02001245u32
1246unformat_sched_policy (unformat_input_t * input, va_list * args)
1247{
1248 u32 *r = va_arg (*args, u32 *);
1249
1250 if (0);
1251#define _(v,f,s) else if (unformat (input, s)) *r = SCHED_POLICY_##f;
1252 foreach_sched_policy
1253#undef _
1254 else
1255 return 0;
1256 return 1;
1257}
1258
Ed Warnickecb9cada2015-12-08 15:45:58 -07001259static clib_error_t *
1260cpu_config (vlib_main_t * vm, unformat_input_t * input)
1261{
1262 vlib_thread_registration_t *tr;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001263 uword *p;
1264 vlib_thread_main_t *tm = &vlib_thread_main;
1265 u8 *name;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001266 uword *bitmap;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001267 u32 count;
1268
1269 tm->thread_registrations_by_name = hash_create_string (0, sizeof (uword));
Pavel Kotucek1e765832016-09-23 08:54:14 +02001270
Dave Barach9b8ffd92016-07-08 08:13:45 -04001271 tm->n_thread_stacks = 1; /* account for main thread */
Pavel Kotucek1e765832016-09-23 08:54:14 +02001272 tm->sched_policy = ~0;
1273 tm->sched_priority = ~0;
Damjan Marion858151f2018-07-11 10:51:00 +02001274 tm->main_lcore = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001275
1276 tr = tm->next;
1277
1278 while (tr)
1279 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001280 hash_set_mem (tm->thread_registrations_by_name, tr->name, (uword) tr);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001281 tr = tr->next;
1282 }
1283
Dave Barach9b8ffd92016-07-08 08:13:45 -04001284 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001285 {
Damjan Marionbf741472016-06-13 22:49:44 +02001286 if (unformat (input, "use-pthreads"))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001287 tm->use_pthreads = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001288 else if (unformat (input, "thread-prefix %v", &tm->thread_prefix))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001289 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001290 else if (unformat (input, "main-core %u", &tm->main_lcore))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001291 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001292 else if (unformat (input, "skip-cores %u", &tm->skip_cores))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001293 ;
Dave Baracha690fdb2020-01-21 12:34:55 -05001294 else if (unformat (input, "numa-heap-size %U",
1295 unformat_memory_size, &tm->numa_heap_size))
1296 ;
Yi Hee4a9eb72018-07-17 14:18:41 +08001297 else if (unformat (input, "coremask-%s %U", &name,
1298 unformat_bitmap_mask, &bitmap) ||
1299 unformat (input, "corelist-%s %U", &name,
1300 unformat_bitmap_list, &bitmap))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001301 {
1302 p = hash_get_mem (tm->thread_registrations_by_name, name);
1303 if (p == 0)
1304 return clib_error_return (0, "no such thread type '%s'", name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001305
Dave Barach9b8ffd92016-07-08 08:13:45 -04001306 tr = (vlib_thread_registration_t *) p[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001307
Dave Barach9b8ffd92016-07-08 08:13:45 -04001308 if (tr->use_pthreads)
1309 return clib_error_return (0,
1310 "corelist cannot be set for '%s' threads",
1311 name);
Vladimir Isaev18a4a372020-03-17 12:30:11 +03001312 if (tr->count)
1313 return clib_error_return
1314 (0, "core placement of '%s' threads is already configured",
1315 name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001316
Dave Barach9b8ffd92016-07-08 08:13:45 -04001317 tr->coremask = bitmap;
1318 tr->count = clib_bitmap_count_set_bits (tr->coremask);
1319 }
Pavel Kotucek1e765832016-09-23 08:54:14 +02001320 else
1321 if (unformat
1322 (input, "scheduler-policy %U", unformat_sched_policy,
1323 &tm->sched_policy))
1324 ;
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001325 else if (unformat (input, "scheduler-priority %u", &tm->sched_priority))
Pavel Kotucek1e765832016-09-23 08:54:14 +02001326 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001327 else if (unformat (input, "%s %u", &name, &count))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001328 {
1329 p = hash_get_mem (tm->thread_registrations_by_name, name);
1330 if (p == 0)
Pavel Kotucek1e765832016-09-23 08:54:14 +02001331 return clib_error_return (0, "no such thread type 3 '%s'", name);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001332
1333 tr = (vlib_thread_registration_t *) p[0];
Vladimir Isaev18a4a372020-03-17 12:30:11 +03001334
Dave Barach9b8ffd92016-07-08 08:13:45 -04001335 if (tr->fixed_count)
1336 return clib_error_return
Vladimir Isaev18a4a372020-03-17 12:30:11 +03001337 (0, "number of '%s' threads not configurable", name);
1338 if (tr->count)
1339 return clib_error_return
1340 (0, "number of '%s' threads is already configured", name);
1341
Dave Barach9b8ffd92016-07-08 08:13:45 -04001342 tr->count = count;
1343 }
1344 else
1345 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001346 }
1347
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001348 if (tm->sched_priority != ~0)
Pavel Kotucek1e765832016-09-23 08:54:14 +02001349 {
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001350 if (tm->sched_policy == SCHED_FIFO || tm->sched_policy == SCHED_RR)
Pavel Kotucek1e765832016-09-23 08:54:14 +02001351 {
1352 u32 prio_max = sched_get_priority_max (tm->sched_policy);
1353 u32 prio_min = sched_get_priority_min (tm->sched_policy);
1354 if (tm->sched_priority > prio_max)
1355 tm->sched_priority = prio_max;
1356 if (tm->sched_priority < prio_min)
1357 tm->sched_priority = prio_min;
1358 }
1359 else
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001360 {
1361 return clib_error_return
1362 (0,
1363 "scheduling priority (%d) is not allowed for `normal` scheduling policy",
1364 tm->sched_priority);
1365 }
Pavel Kotucek1e765832016-09-23 08:54:14 +02001366 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001367 tr = tm->next;
1368
1369 if (!tm->thread_prefix)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001370 tm->thread_prefix = format (0, "vpp");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001371
1372 while (tr)
1373 {
1374 tm->n_thread_stacks += tr->count;
1375 tm->n_pthreads += tr->count * tr->use_pthreads;
Damjan Marion878c6092017-01-04 13:19:27 +01001376 tm->n_threads += tr->count * (tr->use_pthreads == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001377 tr = tr->next;
1378 }
1379
1380 return 0;
1381}
1382
1383VLIB_EARLY_CONFIG_FUNCTION (cpu_config, "cpu");
1384
Ed Warnickecb9cada2015-12-08 15:45:58 -07001385void vnet_main_fixup (vlib_fork_fixup_t which) __attribute__ ((weak));
Dave Barach9b8ffd92016-07-08 08:13:45 -04001386void
1387vnet_main_fixup (vlib_fork_fixup_t which)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001388{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001389}
1390
1391void
1392vlib_worker_thread_fork_fixup (vlib_fork_fixup_t which)
1393{
1394 vlib_main_t *vm = vlib_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001395
1396 if (vlib_mains == 0)
1397 return;
1398
Damjan Marion586afd72017-04-05 19:18:20 +02001399 ASSERT (vlib_get_thread_index () == 0);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001400 vlib_worker_thread_barrier_sync (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001401
1402 switch (which)
1403 {
1404 case VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX:
1405 vnet_main_fixup (VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX);
1406 break;
1407
1408 default:
Dave Barach9b8ffd92016-07-08 08:13:45 -04001409 ASSERT (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001410 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001411 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001412}
1413
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001414 /*
1415 * Enforce minimum open time to minimize packet loss due to Rx overflow,
1416 * based on a test based heuristic that barrier should be open for at least
1417 * 3 time as long as it is closed (with an upper bound of 1ms because by that
1418 * point it is probably too late to make a difference)
1419 */
1420
1421#ifndef BARRIER_MINIMUM_OPEN_LIMIT
1422#define BARRIER_MINIMUM_OPEN_LIMIT 0.001
1423#endif
1424
1425#ifndef BARRIER_MINIMUM_OPEN_FACTOR
1426#define BARRIER_MINIMUM_OPEN_FACTOR 3
1427#endif
1428
Dave Barach9b8ffd92016-07-08 08:13:45 -04001429void
Dave Barachc602b382019-06-03 19:48:22 -04001430vlib_worker_thread_initial_barrier_sync_and_release (vlib_main_t * vm)
1431{
1432 f64 deadline;
1433 f64 now = vlib_time_now (vm);
1434 u32 count = vec_len (vlib_mains) - 1;
1435
1436 /* No worker threads? */
1437 if (count == 0)
1438 return;
1439
1440 deadline = now + BARRIER_SYNC_TIMEOUT;
1441 *vlib_worker_threads->wait_at_barrier = 1;
1442 while (*vlib_worker_threads->workers_at_barrier != count)
1443 {
1444 if ((now = vlib_time_now (vm)) > deadline)
1445 {
1446 fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1447 os_panic ();
1448 }
1449 CLIB_PAUSE ();
1450 }
1451 *vlib_worker_threads->wait_at_barrier = 0;
1452}
1453
Neale Ranns42845dd2020-05-26 13:12:17 +00001454/**
1455 * Return true if the wroker thread barrier is held
1456 */
1457u8
1458vlib_worker_thread_barrier_held (void)
1459{
1460 if (vec_len (vlib_mains) < 2)
1461 return (1);
1462
1463 return (*vlib_worker_threads->wait_at_barrier == 1);
1464}
1465
Dave Barachc602b382019-06-03 19:48:22 -04001466void
Damjan Marion8343ee52019-02-26 17:15:48 +01001467vlib_worker_thread_barrier_sync_int (vlib_main_t * vm, const char *func_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001468{
1469 f64 deadline;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001470 f64 now;
1471 f64 t_entry;
1472 f64 t_open;
1473 f64 t_closed;
Dave Barach9ae190e2019-04-23 10:07:24 -04001474 f64 max_vector_rate;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001475 u32 count;
Dave Barach9ae190e2019-04-23 10:07:24 -04001476 int i;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001477
Dave Barach80f54e22017-03-08 19:08:56 -05001478 if (vec_len (vlib_mains) < 2)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001479 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001480
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001481 ASSERT (vlib_get_thread_index () == 0);
1482
Damjan Marion8343ee52019-02-26 17:15:48 +01001483 vlib_worker_threads[0].barrier_caller = func_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001484 count = vec_len (vlib_mains) - 1;
1485
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001486 /* Record entry relative to last close */
1487 now = vlib_time_now (vm);
1488 t_entry = now - vm->barrier_epoch;
1489
Ed Warnickecb9cada2015-12-08 15:45:58 -07001490 /* Tolerate recursive calls */
1491 if (++vlib_worker_threads[0].recursion_level > 1)
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001492 {
1493 barrier_trace_sync_rec (t_entry);
1494 return;
1495 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001496
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001497 if (PREDICT_FALSE (vec_len (vm->barrier_perf_callbacks) != 0))
1498 clib_call_callbacks (vm->barrier_perf_callbacks, vm,
1499 vm->clib_time.last_cpu_time, 0 /* enter */ );
1500
Dave Barach9ae190e2019-04-23 10:07:24 -04001501 /*
1502 * Need data to decide if we're working hard enough to honor
1503 * the barrier hold-down timer.
1504 */
1505 max_vector_rate = 0.0;
1506 for (i = 1; i < vec_len (vlib_mains); i++)
1507 max_vector_rate =
1508 clib_max (max_vector_rate,
Dave Baracha8df85c2019-10-01 13:34:23 -04001509 (f64) vlib_last_vectors_per_main_loop (vlib_mains[i]));
Dave Barach9ae190e2019-04-23 10:07:24 -04001510
Bud Grise42f20062016-03-16 13:09:46 -04001511 vlib_worker_threads[0].barrier_sync_count++;
1512
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001513 /* Enforce minimum barrier open time to minimize packet loss */
1514 ASSERT (vm->barrier_no_close_before <= (now + BARRIER_MINIMUM_OPEN_LIMIT));
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001515
Dave Barach9ae190e2019-04-23 10:07:24 -04001516 /*
1517 * If any worker thread seems busy, which we define
1518 * as a vector rate above 10, we enforce the barrier hold-down timer
1519 */
1520 if (max_vector_rate > 10.0)
Dave Barach36feebb2018-09-07 11:12:27 -04001521 {
Dave Barach9ae190e2019-04-23 10:07:24 -04001522 while (1)
Dave Barach36feebb2018-09-07 11:12:27 -04001523 {
Dave Barach9ae190e2019-04-23 10:07:24 -04001524 now = vlib_time_now (vm);
1525 /* Barrier hold-down timer expired? */
1526 if (now >= vm->barrier_no_close_before)
1527 break;
1528 if ((vm->barrier_no_close_before - now)
1529 > (2.0 * BARRIER_MINIMUM_OPEN_LIMIT))
1530 {
1531 clib_warning
1532 ("clock change: would have waited for %.4f seconds",
1533 (vm->barrier_no_close_before - now));
1534 break;
1535 }
Dave Barach36feebb2018-09-07 11:12:27 -04001536 }
1537 }
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001538 /* Record time of closure */
1539 t_open = now - vm->barrier_epoch;
1540 vm->barrier_epoch = now;
1541
1542 deadline = now + BARRIER_SYNC_TIMEOUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001543
1544 *vlib_worker_threads->wait_at_barrier = 1;
1545 while (*vlib_worker_threads->workers_at_barrier != count)
1546 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001547 if ((now = vlib_time_now (vm)) > deadline)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001548 {
1549 fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1550 os_panic ();
1551 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001552 }
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001553
1554 t_closed = now - vm->barrier_epoch;
1555
1556 barrier_trace_sync (t_entry, t_open, t_closed);
1557
Ed Warnickecb9cada2015-12-08 15:45:58 -07001558}
1559
Dave Barach9b8ffd92016-07-08 08:13:45 -04001560void
1561vlib_worker_thread_barrier_release (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001562{
1563 f64 deadline;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001564 f64 now;
1565 f64 minimum_open;
1566 f64 t_entry;
1567 f64 t_closed_total;
1568 f64 t_update_main = 0.0;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001569 int refork_needed = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001570
Dave Barach80f54e22017-03-08 19:08:56 -05001571 if (vec_len (vlib_mains) < 2)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001572 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001573
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001574 ASSERT (vlib_get_thread_index () == 0);
1575
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001576
1577 now = vlib_time_now (vm);
1578 t_entry = now - vm->barrier_epoch;
1579
Ed Warnickecb9cada2015-12-08 15:45:58 -07001580 if (--vlib_worker_threads[0].recursion_level > 0)
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001581 {
1582 barrier_trace_release_rec (t_entry);
1583 return;
1584 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001585
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001586 /* Update (all) node runtimes before releasing the barrier, if needed */
1587 if (vm->need_vlib_worker_thread_node_runtime_update)
1588 {
Dave Barach1ddbc012018-06-13 09:26:05 -04001589 /*
1590 * Lock stat segment here, so we's safe when
1591 * rebuilding the stat segment node clones from the
1592 * stat thread...
1593 */
1594 vlib_stat_segment_lock ();
1595
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001596 /* Do stats elements on main thread */
1597 worker_thread_node_runtime_update_internal ();
1598 vm->need_vlib_worker_thread_node_runtime_update = 0;
1599
1600 /* Do per thread rebuilds in parallel */
1601 refork_needed = 1;
Sirshak Das2f6d7bb2018-10-03 22:53:51 +00001602 clib_atomic_fetch_add (vlib_worker_threads->node_reforks_required,
1603 (vec_len (vlib_mains) - 1));
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001604 now = vlib_time_now (vm);
1605 t_update_main = now - vm->barrier_epoch;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001606 }
1607
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001608 deadline = now + BARRIER_SYNC_TIMEOUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001609
Dave Baracha4324a92019-02-19 17:05:30 -05001610 /*
1611 * Note when we let go of the barrier.
1612 * Workers can use this to derive a reasonably accurate
1613 * time offset. See vlib_time_now(...)
1614 */
1615 vm->time_last_barrier_release = vlib_time_now (vm);
1616 CLIB_MEMORY_STORE_BARRIER ();
1617
Ed Warnickecb9cada2015-12-08 15:45:58 -07001618 *vlib_worker_threads->wait_at_barrier = 0;
1619
1620 while (*vlib_worker_threads->workers_at_barrier > 0)
1621 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001622 if ((now = vlib_time_now (vm)) > deadline)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001623 {
1624 fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1625 os_panic ();
1626 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001627 }
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001628
1629 /* Wait for reforks before continuing */
1630 if (refork_needed)
1631 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001632 now = vlib_time_now (vm);
1633
1634 deadline = now + BARRIER_SYNC_TIMEOUT;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001635
1636 while (*vlib_worker_threads->node_reforks_required > 0)
1637 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001638 if ((now = vlib_time_now (vm)) > deadline)
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001639 {
1640 fformat (stderr, "%s: worker thread refork deadlock\n",
1641 __FUNCTION__);
1642 os_panic ();
1643 }
1644 }
Dave Barach1ddbc012018-06-13 09:26:05 -04001645 vlib_stat_segment_unlock ();
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001646 }
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001647
1648 t_closed_total = now - vm->barrier_epoch;
1649
1650 minimum_open = t_closed_total * BARRIER_MINIMUM_OPEN_FACTOR;
1651
1652 if (minimum_open > BARRIER_MINIMUM_OPEN_LIMIT)
1653 {
1654 minimum_open = BARRIER_MINIMUM_OPEN_LIMIT;
1655 }
1656
1657 vm->barrier_no_close_before = now + minimum_open;
1658
1659 /* Record barrier epoch (used to enforce minimum open time) */
1660 vm->barrier_epoch = now;
1661
1662 barrier_trace_release (t_entry, t_closed_total, t_update_main);
1663
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +00001664 if (PREDICT_FALSE (vec_len (vm->barrier_perf_callbacks) != 0))
1665 clib_call_callbacks (vm->barrier_perf_callbacks, vm,
1666 vm->clib_time.last_cpu_time, 1 /* leave */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -07001667}
1668
Neale Ranns42845dd2020-05-26 13:12:17 +00001669/**
1670 * Wait until each of the workers has been once around the track
1671 */
1672void
1673vlib_worker_wait_one_loop (void)
1674{
1675 ASSERT (vlib_get_thread_index () == 0);
1676
1677 if (vec_len (vlib_mains) < 2)
1678 return;
1679
1680 if (vlib_worker_thread_barrier_held ())
1681 return;
1682
1683 u32 *counts = 0;
1684 u32 ii;
1685
1686 vec_validate (counts, vec_len (vlib_mains) - 1);
1687
1688 /* record the current loop counts */
1689 vec_foreach_index (ii, vlib_mains)
1690 counts[ii] = vlib_mains[ii]->main_loop_count;
1691
1692 /* spin until each changes, apart from the main thread, or we'd be
1693 * a while */
1694 for (ii = 1; ii < vec_len (counts); ii++)
1695 {
1696 while (counts[ii] == vlib_mains[ii]->main_loop_count)
1697 CLIB_PAUSE ();
1698 }
1699
1700 vec_free (counts);
1701 return;
1702}
1703
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001704/*
1705 * Check the frame queue to see if any frames are available.
Dave Barach9b8ffd92016-07-08 08:13:45 -04001706 * If so, pull the packets off the frames and put them to
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001707 * the handoff node.
1708 */
Damjan Marione9d52d52017-03-09 15:42:26 +01001709int
1710vlib_frame_queue_dequeue (vlib_main_t * vm, vlib_frame_queue_main_t * fqm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001711{
Damjan Marion586afd72017-04-05 19:18:20 +02001712 u32 thread_id = vm->thread_index;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001713 vlib_frame_queue_t *fq = fqm->vlib_frame_queues[thread_id];
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001714 vlib_frame_queue_elt_t *elt;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001715 u32 *from, *to;
1716 vlib_frame_t *f;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001717 int msg_type;
1718 int processed = 0;
1719 u32 n_left_to_node;
1720 u32 vectors = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001721
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001722 ASSERT (fq);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001723 ASSERT (vm == vlib_mains[thread_id]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001724
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001725 if (PREDICT_FALSE (fqm->node_index == ~0))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001726 return 0;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001727 /*
1728 * Gather trace data for frame queues
1729 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001730 if (PREDICT_FALSE (fq->trace))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001731 {
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001732 frame_queue_trace_t *fqt;
1733 frame_queue_nelt_counter_t *fqh;
1734 u32 elix;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001735
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001736 fqt = &fqm->frame_queue_traces[thread_id];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001737
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001738 fqt->nelts = fq->nelts;
1739 fqt->head = fq->head;
1740 fqt->head_hint = fq->head_hint;
1741 fqt->tail = fq->tail;
1742 fqt->threshold = fq->vector_threshold;
1743 fqt->n_in_use = fqt->tail - fqt->head;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001744 if (fqt->n_in_use >= fqt->nelts)
1745 {
1746 // if beyond max then use max
1747 fqt->n_in_use = fqt->nelts - 1;
1748 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001749
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001750 /* Record the number of elements in use in the histogram */
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001751 fqh = &fqm->frame_queue_histogram[thread_id];
Dave Barach9b8ffd92016-07-08 08:13:45 -04001752 fqh->count[fqt->n_in_use]++;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001753
1754 /* Record a snapshot of the elements in use */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001755 for (elix = 0; elix < fqt->nelts; elix++)
1756 {
1757 elt = fq->elts + ((fq->head + 1 + elix) & (fq->nelts - 1));
1758 if (1 || elt->valid)
1759 {
1760 fqt->n_vectors[elix] = elt->n_vectors;
1761 }
1762 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001763 fqt->written = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001764 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001765
1766 while (1)
1767 {
Dave Baracha638c182019-06-21 18:24:07 -04001768 vlib_buffer_t *b;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001769 if (fq->head == fq->tail)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001770 {
1771 fq->head_hint = fq->head;
1772 return processed;
1773 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001774
Dave Barach9b8ffd92016-07-08 08:13:45 -04001775 elt = fq->elts + ((fq->head + 1) & (fq->nelts - 1));
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001776
1777 if (!elt->valid)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001778 {
1779 fq->head_hint = fq->head;
1780 return processed;
1781 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001782
1783 from = elt->buffer_index;
1784 msg_type = elt->msg_type;
1785
1786 ASSERT (msg_type == VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME);
1787 ASSERT (elt->n_vectors <= VLIB_FRAME_SIZE);
1788
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001789 f = vlib_get_frame_to_node (vm, fqm->node_index);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001790
Dave Baracha638c182019-06-21 18:24:07 -04001791 /* If the first vector is traced, set the frame trace flag */
1792 b = vlib_get_buffer (vm, from[0]);
1793 if (b->flags & VLIB_BUFFER_IS_TRACED)
1794 f->frame_flags |= VLIB_NODE_FLAG_TRACE;
1795
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001796 to = vlib_frame_vector_args (f);
1797
1798 n_left_to_node = elt->n_vectors;
1799
1800 while (n_left_to_node >= 4)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001801 {
1802 to[0] = from[0];
1803 to[1] = from[1];
1804 to[2] = from[2];
1805 to[3] = from[3];
1806 to += 4;
1807 from += 4;
1808 n_left_to_node -= 4;
1809 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001810
1811 while (n_left_to_node > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001812 {
1813 to[0] = from[0];
1814 to++;
1815 from++;
1816 n_left_to_node--;
1817 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001818
1819 vectors += elt->n_vectors;
1820 f->n_vectors = elt->n_vectors;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001821 vlib_put_frame_to_node (vm, fqm->node_index, f);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001822
1823 elt->valid = 0;
1824 elt->n_vectors = 0;
1825 elt->msg_type = 0xfefefefe;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001826 CLIB_MEMORY_BARRIER ();
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001827 fq->head++;
1828 processed++;
1829
1830 /*
1831 * Limit the number of packets pushed into the graph
1832 */
1833 if (vectors >= fq->vector_threshold)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001834 {
1835 fq->head_hint = fq->head;
1836 return processed;
1837 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001838 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001839 ASSERT (0);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001840 return processed;
1841}
1842
Dave Barach9b8ffd92016-07-08 08:13:45 -04001843void
1844vlib_worker_thread_fn (void *arg)
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001845{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001846 vlib_worker_thread_t *w = (vlib_worker_thread_t *) arg;
Damjan Marion878c6092017-01-04 13:19:27 +01001847 vlib_thread_main_t *tm = vlib_get_thread_main ();
Dave Barach9b8ffd92016-07-08 08:13:45 -04001848 vlib_main_t *vm = vlib_get_main ();
Damjan Marione9f929b2017-03-16 11:32:09 +01001849 clib_error_t *e;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001850
Damjan Marioncea46522020-05-21 16:47:05 +02001851 vlib_process_finish_switch_stack (vm);
1852
Damjan Marion586afd72017-04-05 19:18:20 +02001853 ASSERT (vm->thread_index == vlib_get_thread_index ());
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001854
1855 vlib_worker_thread_init (w);
1856 clib_time_init (&vm->clib_time);
1857 clib_mem_set_heap (w->thread_mheap);
1858
Dave Barachc602b382019-06-03 19:48:22 -04001859 e = vlib_call_init_exit_functions_no_sort
Dave Barachf8d50682019-05-14 18:01:44 -04001860 (vm, &vm->worker_init_function_registrations, 1 /* call_once */ );
Damjan Marione9f929b2017-03-16 11:32:09 +01001861 if (e)
1862 clib_error_report (e);
1863
Dave Barachc602b382019-06-03 19:48:22 -04001864 /* Wait until the dpdk init sequence is complete */
1865 while (tm->extern_thread_mgmt && tm->worker_thread_release == 0)
1866 vlib_worker_thread_barrier_check ();
1867
Damjan Marione9d52d52017-03-09 15:42:26 +01001868 vlib_worker_loop (vm);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001869}
1870
Dave Barach9b8ffd92016-07-08 08:13:45 -04001871/* *INDENT-OFF* */
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001872VLIB_REGISTER_THREAD (worker_thread_reg, static) = {
1873 .name = "workers",
1874 .short_name = "wk",
1875 .function = vlib_worker_thread_fn,
1876};
Dave Barach9b8ffd92016-07-08 08:13:45 -04001877/* *INDENT-ON* */
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001878
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001879u32
1880vlib_frame_queue_main_init (u32 node_index, u32 frame_queue_nelts)
1881{
1882 vlib_thread_main_t *tm = vlib_get_thread_main ();
1883 vlib_frame_queue_main_t *fqm;
1884 vlib_frame_queue_t *fq;
1885 int i;
Elias Rudberg368104d2020-04-16 16:01:52 +02001886 u32 num_threads;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001887
1888 if (frame_queue_nelts == 0)
dongjuan88752482019-06-04 10:59:02 +08001889 frame_queue_nelts = FRAME_QUEUE_MAX_NELTS;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001890
Elias Rudberg368104d2020-04-16 16:01:52 +02001891 num_threads = 1 /* main thread */ + tm->n_threads;
1892 ASSERT (frame_queue_nelts >= 8 + num_threads);
Damjan Marion78fd7e82018-07-20 18:47:05 +02001893
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001894 vec_add2 (tm->frame_queue_mains, fqm, 1);
1895
1896 fqm->node_index = node_index;
Damjan Marion78fd7e82018-07-20 18:47:05 +02001897 fqm->frame_queue_nelts = frame_queue_nelts;
Elias Rudberg368104d2020-04-16 16:01:52 +02001898 fqm->queue_hi_thresh = frame_queue_nelts - num_threads;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001899
1900 vec_validate (fqm->vlib_frame_queues, tm->n_vlib_mains - 1);
Damjan Marion78fd7e82018-07-20 18:47:05 +02001901 vec_validate (fqm->per_thread_data, tm->n_vlib_mains - 1);
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001902 _vec_len (fqm->vlib_frame_queues) = 0;
1903 for (i = 0; i < tm->n_vlib_mains; i++)
1904 {
Damjan Marion78fd7e82018-07-20 18:47:05 +02001905 vlib_frame_queue_per_thread_data_t *ptd;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001906 fq = vlib_frame_queue_alloc (frame_queue_nelts);
1907 vec_add1 (fqm->vlib_frame_queues, fq);
Damjan Marion78fd7e82018-07-20 18:47:05 +02001908
1909 ptd = vec_elt_at_index (fqm->per_thread_data, i);
1910 vec_validate (ptd->handoff_queue_elt_by_thread_index,
1911 tm->n_vlib_mains - 1);
1912 vec_validate_init_empty (ptd->congested_handoff_queue_by_thread_index,
1913 tm->n_vlib_mains - 1,
1914 (vlib_frame_queue_t *) (~0));
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001915 }
1916
1917 return (fqm - tm->frame_queue_mains);
1918}
1919
Damjan Marion878c6092017-01-04 13:19:27 +01001920int
1921vlib_thread_cb_register (struct vlib_main_t *vm, vlib_thread_callbacks_t * cb)
1922{
1923 vlib_thread_main_t *tm = vlib_get_thread_main ();
1924
1925 if (tm->extern_thread_mgmt)
1926 return -1;
1927
1928 tm->cb.vlib_launch_thread_cb = cb->vlib_launch_thread_cb;
1929 tm->extern_thread_mgmt = 1;
1930 return 0;
1931}
1932
Dave Barach69128d02017-09-26 10:54:34 -04001933void
1934vlib_process_signal_event_mt_helper (vlib_process_signal_event_mt_args_t *
1935 args)
1936{
1937 ASSERT (vlib_get_thread_index () == 0);
1938 vlib_process_signal_event (vlib_get_main (), args->node_index,
1939 args->type_opaque, args->data);
1940}
1941
1942void *rpc_call_main_thread_cb_fn;
1943
1944void
1945vlib_rpc_call_main_thread (void *callback, u8 * args, u32 arg_size)
1946{
1947 if (rpc_call_main_thread_cb_fn)
1948 {
1949 void (*fp) (void *, u8 *, u32) = rpc_call_main_thread_cb_fn;
1950 (*fp) (callback, args, arg_size);
1951 }
1952 else
1953 clib_warning ("BUG: rpc_call_main_thread_cb_fn NULL!");
1954}
1955
Dave Barach9b8ffd92016-07-08 08:13:45 -04001956clib_error_t *
1957threads_init (vlib_main_t * vm)
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001958{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001959 return 0;
1960}
1961
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001962VLIB_INIT_FUNCTION (threads_init);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001963
Dave Baracha4324a92019-02-19 17:05:30 -05001964
1965static clib_error_t *
1966show_clock_command_fn (vlib_main_t * vm,
1967 unformat_input_t * input, vlib_cli_command_t * cmd)
1968{
1969 int i;
Dave Barachc25048b2020-01-29 18:05:24 -05001970 int verbose = 0;
Dave Barach19718002020-03-11 10:31:36 -04001971 clib_timebase_t _tb, *tb = &_tb;
Dave Baracha4324a92019-02-19 17:05:30 -05001972
Dave Barachc25048b2020-01-29 18:05:24 -05001973 (void) unformat (input, "verbose %=", &verbose, 1);
Dave Baracha4324a92019-02-19 17:05:30 -05001974
Dave Barach19718002020-03-11 10:31:36 -04001975 clib_timebase_init (tb, 0 /* GMT */ , CLIB_TIMEBASE_DAYLIGHT_NONE,
1976 &vm->clib_time);
1977
1978 vlib_cli_output (vm, "%U, %U GMT", format_clib_time, &vm->clib_time,
1979 verbose, format_clib_timebase_time,
1980 clib_timebase_now (tb));
Dave Baracha4324a92019-02-19 17:05:30 -05001981
1982 if (vec_len (vlib_mains) == 1)
1983 return 0;
1984
1985 vlib_cli_output (vm, "Time last barrier release %.9f",
1986 vm->time_last_barrier_release);
1987
1988 for (i = 1; i < vec_len (vlib_mains); i++)
1989 {
1990 if (vlib_mains[i] == 0)
1991 continue;
Dave Barachc25048b2020-01-29 18:05:24 -05001992
1993 vlib_cli_output (vm, "%d: %U", i, format_clib_time,
1994 &vlib_mains[i]->clib_time, verbose);
1995
Dave Baracha4324a92019-02-19 17:05:30 -05001996 vlib_cli_output (vm, "Thread %d offset %.9f error %.9f", i,
1997 vlib_mains[i]->time_offset,
1998 vm->time_last_barrier_release -
1999 vlib_mains[i]->time_last_barrier_release);
2000 }
2001 return 0;
2002}
2003
2004/* *INDENT-OFF* */
2005VLIB_CLI_COMMAND (f_command, static) =
2006{
2007 .path = "show clock",
2008 .short_help = "show clock",
2009 .function = show_clock_command_fn,
2010};
2011/* *INDENT-ON* */
2012
Dave Barachab1a50c2020-10-06 14:08:16 -04002013vlib_thread_main_t *
2014vlib_get_thread_main_not_inline (void)
2015{
2016 return vlib_get_thread_main ();
2017}
2018
Dave Barach9b8ffd92016-07-08 08:13:45 -04002019/*
2020 * fd.io coding-style-patch-verification: ON
2021 *
2022 * Local Variables:
2023 * eval: (c-set-style "gnu")
2024 * End:
2025 */