blob: e9d9cb5a158d9ea5267d93c324b41e399c55776e [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#include <vlib/unix/cj.h>
26
Ole Troan233e4682019-05-16 15:01:34 +020027#include <vlib/stat_weak_inlines.h>
28
Ed Warnickecb9cada2015-12-08 15:45:58 -070029DECLARE_CJ_GLOBAL_LOG;
30
Ed Warnickecb9cada2015-12-08 15:45:58 -070031
Dave Barach9b8ffd92016-07-08 08:13:45 -040032u32
33vl (void *p)
Ed Warnickecb9cada2015-12-08 15:45:58 -070034{
35 return vec_len (p);
36}
37
Damjan Marion6a7acc22016-12-19 16:28:36 +010038vlib_worker_thread_t *vlib_worker_threads;
Ed Warnickecb9cada2015-12-08 15:45:58 -070039vlib_thread_main_t vlib_thread_main;
40
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010041/*
42 * Barrier tracing can be enabled on a normal build to collect information
43 * on barrier use, including timings and call stacks. Deliberately not
44 * keyed off CLIB_DEBUG, because that can add significant overhead which
45 * imapacts observed timings.
46 */
47
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010048static inline void
49barrier_trace_sync (f64 t_entry, f64 t_open, f64 t_closed)
50{
Dave Barach88c6e002018-09-30 15:54:06 -040051 if (!vlib_worker_threads->barrier_elog_enabled)
52 return;
53
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010054 /* *INDENT-OFF* */
55 ELOG_TYPE_DECLARE (e) =
56 {
Dave Barach88c6e002018-09-30 15:54:06 -040057 .format = "bar-trace-%s-#%d",
58 .format_args = "T4i4",
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010059 };
60 /* *INDENT-ON* */
61 struct
62 {
Dave Barach88c6e002018-09-30 15:54:06 -040063 u32 caller, count, t_entry, t_open, t_closed;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010064 } *ed = 0;
65
66 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
67 ed->count = (int) vlib_worker_threads[0].barrier_sync_count;
Dave Barachb09f4d02019-07-15 16:00:03 -040068 ed->caller = elog_string (&vlib_global_main.elog_main,
69 (char *) vlib_worker_threads[0].barrier_caller);
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010070 ed->t_entry = (int) (1000000.0 * t_entry);
71 ed->t_open = (int) (1000000.0 * t_open);
72 ed->t_closed = (int) (1000000.0 * t_closed);
73}
74
75static inline void
76barrier_trace_sync_rec (f64 t_entry)
77{
Dave Barach88c6e002018-09-30 15:54:06 -040078 if (!vlib_worker_threads->barrier_elog_enabled)
79 return;
80
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010081 /* *INDENT-OFF* */
82 ELOG_TYPE_DECLARE (e) =
83 {
Dave Barach88c6e002018-09-30 15:54:06 -040084 .format = "bar-syncrec-%s-#%d",
85 .format_args = "T4i4",
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010086 };
87 /* *INDENT-ON* */
88 struct
89 {
Dave Barach88c6e002018-09-30 15:54:06 -040090 u32 caller, depth;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010091 } *ed = 0;
92
93 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
94 ed->depth = (int) vlib_worker_threads[0].recursion_level - 1;
Dave Barachb09f4d02019-07-15 16:00:03 -040095 ed->caller = elog_string (&vlib_global_main.elog_main,
96 (char *) vlib_worker_threads[0].barrier_caller);
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010097}
98
99static inline void
100barrier_trace_release_rec (f64 t_entry)
101{
Dave Barach88c6e002018-09-30 15:54:06 -0400102 if (!vlib_worker_threads->barrier_elog_enabled)
103 return;
104
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100105 /* *INDENT-OFF* */
106 ELOG_TYPE_DECLARE (e) =
107 {
Dave Barach88c6e002018-09-30 15:54:06 -0400108 .format = "bar-relrrec-#%d",
109 .format_args = "i4",
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100110 };
111 /* *INDENT-ON* */
112 struct
113 {
Dave Barach88c6e002018-09-30 15:54:06 -0400114 u32 depth;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100115 } *ed = 0;
116
117 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100118 ed->depth = (int) vlib_worker_threads[0].recursion_level;
119}
120
121static inline void
122barrier_trace_release (f64 t_entry, f64 t_closed_total, f64 t_update_main)
123{
Dave Barach88c6e002018-09-30 15:54:06 -0400124 if (!vlib_worker_threads->barrier_elog_enabled)
125 return;
126
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100127 /* *INDENT-OFF* */
128 ELOG_TYPE_DECLARE (e) =
129 {
Dave Barach88c6e002018-09-30 15:54:06 -0400130 .format = "bar-rel-#%d-e%d-u%d-t%d",
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100131 .format_args = "i4i4i4i4",
132 };
133 /* *INDENT-ON* */
134 struct
135 {
Dave Barach88c6e002018-09-30 15:54:06 -0400136 u32 count, t_entry, t_update_main, t_closed_total;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100137 } *ed = 0;
138
139 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
140 ed->t_entry = (int) (1000000.0 * t_entry);
141 ed->t_update_main = (int) (1000000.0 * t_update_main);
142 ed->t_closed_total = (int) (1000000.0 * t_closed_total);
143 ed->count = (int) vlib_worker_threads[0].barrier_sync_count;
144
145 /* Reset context for next trace */
146 vlib_worker_threads[0].barrier_context = NULL;
147}
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100148
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149uword
Damjan Marionf55f9b82017-05-10 21:06:28 +0200150os_get_nthreads (void)
Dave Barach01d86c72016-08-08 15:13:42 -0400151{
Dave Barach2180bac2019-05-10 15:25:10 -0400152 return vec_len (vlib_thread_stacks);
Dave Barach01d86c72016-08-08 15:13:42 -0400153}
154
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155void
156vlib_set_thread_name (char *name)
157{
158 int pthread_setname_np (pthread_t __target_thread, const char *__name);
Dave Barachb2a6e252016-07-27 10:00:58 -0400159 int rv;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400160 pthread_t thread = pthread_self ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161
Dave Barach9b8ffd92016-07-08 08:13:45 -0400162 if (thread)
Dave Barachb2a6e252016-07-27 10:00:58 -0400163 {
164 rv = pthread_setname_np (thread, name);
165 if (rv)
Ed Warnicke853e7202016-08-12 11:42:26 -0700166 clib_warning ("pthread_setname_np returned %d", rv);
Dave Barachb2a6e252016-07-27 10:00:58 -0400167 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168}
169
Dave Barach9b8ffd92016-07-08 08:13:45 -0400170static int
171sort_registrations_by_no_clone (void *a0, void *a1)
172{
173 vlib_thread_registration_t **tr0 = a0;
174 vlib_thread_registration_t **tr1 = a1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175
Dave Barach9b8ffd92016-07-08 08:13:45 -0400176 return ((i32) ((*tr0)->no_data_structure_clone)
177 - ((i32) ((*tr1)->no_data_structure_clone)));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178}
179
180static uword *
Damjan Marion01914ce2017-09-14 19:04:50 +0200181clib_sysfs_list_to_bitmap (char *filename)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182{
183 FILE *fp;
184 uword *r = 0;
185
186 fp = fopen (filename, "r");
187
188 if (fp != NULL)
189 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400190 u8 *buffer = 0;
191 vec_validate (buffer, 256 - 1);
192 if (fgets ((char *) buffer, 256, fp))
193 {
194 unformat_input_t in;
195 unformat_init_string (&in, (char *) buffer,
196 strlen ((char *) buffer));
Dave Barachb2a6e252016-07-27 10:00:58 -0400197 if (unformat (&in, "%U", unformat_bitmap_list, &r) != 1)
Ed Warnicke853e7202016-08-12 11:42:26 -0700198 clib_warning ("unformat_bitmap_list failed");
Dave Barach9b8ffd92016-07-08 08:13:45 -0400199 unformat_free (&in);
200 }
201 vec_free (buffer);
202 fclose (fp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203 }
204 return r;
205}
206
207
208/* Called early in the init sequence */
209
210clib_error_t *
211vlib_thread_init (vlib_main_t * vm)
212{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400213 vlib_thread_main_t *tm = &vlib_thread_main;
214 vlib_worker_thread_t *w;
215 vlib_thread_registration_t *tr;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216 u32 n_vlib_mains = 1;
217 u32 first_index = 1;
218 u32 i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400219 uword *avail_cpu;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220
221 /* get bitmaps of active cpu cores and sockets */
222 tm->cpu_core_bitmap =
Damjan Marion01914ce2017-09-14 19:04:50 +0200223 clib_sysfs_list_to_bitmap ("/sys/devices/system/cpu/online");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224 tm->cpu_socket_bitmap =
Damjan Marion01914ce2017-09-14 19:04:50 +0200225 clib_sysfs_list_to_bitmap ("/sys/devices/system/node/online");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226
Dave Barach9b8ffd92016-07-08 08:13:45 -0400227 avail_cpu = clib_bitmap_dup (tm->cpu_core_bitmap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700228
229 /* skip cores */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400230 for (i = 0; i < tm->skip_cores; i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400232 uword c = clib_bitmap_first_set (avail_cpu);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700233 if (c == ~0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400234 return clib_error_return (0, "no available cpus to skip");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700235
Dave Barach9b8ffd92016-07-08 08:13:45 -0400236 avail_cpu = clib_bitmap_set (avail_cpu, c, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237 }
238
239 /* grab cpu for main thread */
Damjan Marion858151f2018-07-11 10:51:00 +0200240 if (tm->main_lcore == ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241 {
Damjan Marion858151f2018-07-11 10:51:00 +0200242 /* if main-lcore is not set, we try to use lcore 1 */
243 if (clib_bitmap_get (avail_cpu, 1))
244 tm->main_lcore = 1;
245 else
246 tm->main_lcore = clib_bitmap_first_set (avail_cpu);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400247 if (tm->main_lcore == (u8) ~ 0)
248 return clib_error_return (0, "no available cpus to be used for the"
249 " main thread");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250 }
251 else
252 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400253 if (clib_bitmap_get (avail_cpu, tm->main_lcore) == 0)
254 return clib_error_return (0, "cpu %u is not available to be used"
255 " for the main thread", tm->main_lcore);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400257 avail_cpu = clib_bitmap_set (avail_cpu, tm->main_lcore, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258
Jon Loeliger4a068462020-01-31 13:34:56 -0600259 /*
260 * Determine if the number of workers is greater than 0.
261 * If so, mark CPU 0 unavailable so workers will be numbered after main.
262 */
263 u32 n_workers = 0;
264 uword *p = hash_get_mem (tm->thread_registrations_by_name, "workers");
265 if (p != 0)
266 {
267 vlib_thread_registration_t *tr = (vlib_thread_registration_t *) p[0];
268 int worker_thread_count = tr->count;
269 n_workers = worker_thread_count;
270 }
271 if (tm->skip_cores == 0 && n_workers)
272 avail_cpu = clib_bitmap_set (avail_cpu, 0, 0);
273
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274 /* assume that there is socket 0 only if there is no data from sysfs */
275 if (!tm->cpu_socket_bitmap)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400276 tm->cpu_socket_bitmap = clib_bitmap_set (0, 0, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277
Christophe Fontainefef15b42016-04-09 12:38:49 +0900278 /* pin main thread to main_lcore */
Damjan Marion878c6092017-01-04 13:19:27 +0100279 if (tm->cb.vlib_thread_set_lcore_cb)
280 {
281 tm->cb.vlib_thread_set_lcore_cb (0, tm->main_lcore);
282 }
Damjan Marion858151f2018-07-11 10:51:00 +0200283 else
284 {
285 cpu_set_t cpuset;
286 CPU_ZERO (&cpuset);
287 CPU_SET (tm->main_lcore, &cpuset);
288 pthread_setaffinity_np (pthread_self (), sizeof (cpu_set_t), &cpuset);
289 }
Christophe Fontainefef15b42016-04-09 12:38:49 +0900290
Dave Barach2180bac2019-05-10 15:25:10 -0400291 /* Set up thread 0 */
292 vec_validate_aligned (vlib_worker_threads, 0, CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400293 _vec_len (vlib_worker_threads) = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294 w = vlib_worker_threads;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400295 w->thread_mheap = clib_mem_get_heap ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700296 w->thread_stack = vlib_thread_stacks[0];
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200297 w->cpu_id = tm->main_lcore;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400298 w->lwp = syscall (SYS_gettid);
Pavel Kotucek98765202016-10-07 08:37:28 +0200299 w->thread_id = pthread_self ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700300 tm->n_vlib_mains = 1;
301
Jon Loeligerf617b142020-01-30 18:37:47 -0600302 vlib_get_thread_core_numa (w, w->cpu_id);
303
Pavel Kotucek1e765832016-09-23 08:54:14 +0200304 if (tm->sched_policy != ~0)
305 {
306 struct sched_param sched_param;
307 if (!sched_getparam (w->lwp, &sched_param))
308 {
309 if (tm->sched_priority != ~0)
310 sched_param.sched_priority = tm->sched_priority;
311 sched_setscheduler (w->lwp, tm->sched_policy, &sched_param);
312 }
313 }
314
Ed Warnickecb9cada2015-12-08 15:45:58 -0700315 /* assign threads to cores and set n_vlib_mains */
316 tr = tm->next;
317
318 while (tr)
319 {
320 vec_add1 (tm->registrations, tr);
321 tr = tr->next;
322 }
323
Dave Barach9b8ffd92016-07-08 08:13:45 -0400324 vec_sort_with_function (tm->registrations, sort_registrations_by_no_clone);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325
326 for (i = 0; i < vec_len (tm->registrations); i++)
327 {
328 int j;
329 tr = tm->registrations[i];
330 tr->first_index = first_index;
331 first_index += tr->count;
332 n_vlib_mains += (tr->no_data_structure_clone == 0) ? tr->count : 0;
333
334 /* construct coremask */
335 if (tr->use_pthreads || !tr->count)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400336 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700337
338 if (tr->coremask)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400339 {
340 uword c;
341 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700342 clib_bitmap_foreach (c, tr->coremask, ({
343 if (clib_bitmap_get(avail_cpu, c) == 0)
344 return clib_error_return (0, "cpu %u is not available to be used"
345 " for the '%s' thread",c, tr->name);
346
347 avail_cpu = clib_bitmap_set(avail_cpu, c, 0);
348 }));
Dave Barach2180bac2019-05-10 15:25:10 -0400349 /* *INDENT-ON* */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400350 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400352 {
353 for (j = 0; j < tr->count; j++)
354 {
355 uword c = clib_bitmap_first_set (avail_cpu);
356 if (c == ~0)
357 return clib_error_return (0,
358 "no available cpus to be used for"
359 " the '%s' thread", tr->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360
Dave Barach9b8ffd92016-07-08 08:13:45 -0400361 avail_cpu = clib_bitmap_set (avail_cpu, c, 0);
362 tr->coremask = clib_bitmap_set (tr->coremask, c, 1);
363 }
364 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700365 }
366
Dave Barach9b8ffd92016-07-08 08:13:45 -0400367 clib_bitmap_free (avail_cpu);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368
369 tm->n_vlib_mains = n_vlib_mains;
370
Dave Barach2180bac2019-05-10 15:25:10 -0400371 /*
372 * Allocate the remaining worker threads, and thread stack vector slots
373 * from now on, calls to os_get_nthreads() will return the correct
374 * answer.
375 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400376 vec_validate_aligned (vlib_worker_threads, first_index - 1,
377 CLIB_CACHE_LINE_BYTES);
Dave Barach2180bac2019-05-10 15:25:10 -0400378 vec_validate (vlib_thread_stacks, vec_len (vlib_worker_threads) - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700379 return 0;
380}
381
Dave Barach9b8ffd92016-07-08 08:13:45 -0400382vlib_frame_queue_t *
383vlib_frame_queue_alloc (int nelts)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400385 vlib_frame_queue_t *fq;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386
Dave Barach9b8ffd92016-07-08 08:13:45 -0400387 fq = clib_mem_alloc_aligned (sizeof (*fq), CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400388 clib_memset (fq, 0, sizeof (*fq));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700389 fq->nelts = nelts;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400390 fq->vector_threshold = 128; // packets
391 vec_validate_aligned (fq->elts, nelts - 1, CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700392
393 if (1)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400394 {
395 if (((uword) & fq->tail) & (CLIB_CACHE_LINE_BYTES - 1))
396 fformat (stderr, "WARNING: fq->tail unaligned\n");
397 if (((uword) & fq->head) & (CLIB_CACHE_LINE_BYTES - 1))
398 fformat (stderr, "WARNING: fq->head unaligned\n");
399 if (((uword) fq->elts) & (CLIB_CACHE_LINE_BYTES - 1))
400 fformat (stderr, "WARNING: fq->elts unaligned\n");
401
402 if (sizeof (fq->elts[0]) % CLIB_CACHE_LINE_BYTES)
403 fformat (stderr, "WARNING: fq->elts[0] size %d\n",
404 sizeof (fq->elts[0]));
405 if (nelts & (nelts - 1))
406 {
407 fformat (stderr, "FATAL: nelts MUST be a power of 2\n");
408 abort ();
409 }
410 }
411
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412 return (fq);
413}
414
415void vl_msg_api_handler_no_free (void *) __attribute__ ((weak));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400416void
417vl_msg_api_handler_no_free (void *v)
418{
419}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700420
421/* Turned off, save as reference material... */
422#if 0
Dave Barach9b8ffd92016-07-08 08:13:45 -0400423static inline int
424vlib_frame_queue_dequeue_internal (int thread_id,
425 vlib_main_t * vm, vlib_node_main_t * nm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426{
427 vlib_frame_queue_t *fq = vlib_frame_queues[thread_id];
428 vlib_frame_queue_elt_t *elt;
429 vlib_frame_t *f;
430 vlib_pending_frame_t *p;
431 vlib_node_runtime_t *r;
432 u32 node_runtime_index;
433 int msg_type;
434 u64 before;
435 int processed = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400436
437 ASSERT (vm == vlib_mains[thread_id]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438
439 while (1)
440 {
441 if (fq->head == fq->tail)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400442 return processed;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700443
Dave Barach9b8ffd92016-07-08 08:13:45 -0400444 elt = fq->elts + ((fq->head + 1) & (fq->nelts - 1));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700445
446 if (!elt->valid)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400447 return processed;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448
Dave Barach9b8ffd92016-07-08 08:13:45 -0400449 before = clib_cpu_time_now ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700450
451 f = elt->frame;
452 node_runtime_index = elt->node_runtime_index;
453 msg_type = elt->msg_type;
454
455 switch (msg_type)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400456 {
457 case VLIB_FRAME_QUEUE_ELT_FREE_BUFFERS:
458 vlib_buffer_free (vm, vlib_frame_vector_args (f), f->n_vectors);
459 /* note fallthrough... */
460 case VLIB_FRAME_QUEUE_ELT_FREE_FRAME:
461 r = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
462 node_runtime_index);
463 vlib_frame_free (vm, r, f);
464 break;
465 case VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME:
466 vec_add2 (vm->node_main.pending_frames, p, 1);
467 f->flags |= (VLIB_FRAME_PENDING | VLIB_FRAME_FREE_AFTER_DISPATCH);
468 p->node_runtime_index = elt->node_runtime_index;
469 p->frame_index = vlib_frame_index (vm, f);
470 p->next_frame_index = VLIB_PENDING_FRAME_NO_NEXT_FRAME;
471 fq->dequeue_vectors += (u64) f->n_vectors;
472 break;
473 case VLIB_FRAME_QUEUE_ELT_API_MSG:
474 vl_msg_api_handler_no_free (f);
475 break;
476 default:
477 clib_warning ("bogus frame queue message, type %d", msg_type);
478 break;
479 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700480 elt->valid = 0;
481 fq->dequeues++;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400482 fq->dequeue_ticks += clib_cpu_time_now () - before;
483 CLIB_MEMORY_BARRIER ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700484 fq->head++;
485 processed++;
486 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400487 ASSERT (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700488 return processed;
489}
490
Dave Barach9b8ffd92016-07-08 08:13:45 -0400491int
492vlib_frame_queue_dequeue (int thread_id,
493 vlib_main_t * vm, vlib_node_main_t * nm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700494{
495 return vlib_frame_queue_dequeue_internal (thread_id, vm, nm);
496}
497
Dave Barach9b8ffd92016-07-08 08:13:45 -0400498int
499vlib_frame_queue_enqueue (vlib_main_t * vm, u32 node_runtime_index,
500 u32 frame_queue_index, vlib_frame_t * frame,
501 vlib_frame_queue_msg_type_t type)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700502{
503 vlib_frame_queue_t *fq = vlib_frame_queues[frame_queue_index];
504 vlib_frame_queue_elt_t *elt;
505 u32 save_count;
506 u64 new_tail;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400507 u64 before = clib_cpu_time_now ();
508
Ed Warnickecb9cada2015-12-08 15:45:58 -0700509 ASSERT (fq);
510
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000511 new_tail = clib_atomic_add_fetch (&fq->tail, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700512
513 /* Wait until a ring slot is available */
514 while (new_tail >= fq->head + fq->nelts)
515 {
516 f64 b4 = vlib_time_now_ticks (vm, before);
517 vlib_worker_thread_barrier_check (vm, b4);
518 /* Bad idea. Dequeue -> enqueue -> dequeue -> trouble */
Damjan Marion586afd72017-04-05 19:18:20 +0200519 // vlib_frame_queue_dequeue (vm->thread_index, vm, nm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700520 }
521
Dave Barach9b8ffd92016-07-08 08:13:45 -0400522 elt = fq->elts + (new_tail & (fq->nelts - 1));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700523
524 /* this would be very bad... */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400525 while (elt->valid)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700526 {
527 }
528
529 /* Once we enqueue the frame, frame->n_vectors is owned elsewhere... */
530 save_count = frame->n_vectors;
531
532 elt->frame = frame;
533 elt->node_runtime_index = node_runtime_index;
534 elt->msg_type = type;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400535 CLIB_MEMORY_BARRIER ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536 elt->valid = 1;
537
538 return save_count;
539}
540#endif /* 0 */
541
542/* To be called by vlib worker threads upon startup */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400543void
544vlib_worker_thread_init (vlib_worker_thread_t * w)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700545{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400546 vlib_thread_main_t *tm = vlib_get_thread_main ();
547
Dave Barachfdf49442016-12-20 12:48:14 -0500548 /*
549 * Note: disabling signals in worker threads as follows
550 * prevents the api post-mortem dump scheme from working
551 * {
552 * sigset_t s;
553 * sigfillset (&s);
554 * pthread_sigmask (SIG_SETMASK, &s, 0);
555 * }
556 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700557
558 clib_mem_set_heap (w->thread_mheap);
559
Dave Barach9b8ffd92016-07-08 08:13:45 -0400560 if (vec_len (tm->thread_prefix) && w->registration->short_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700561 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400562 w->name = format (0, "%v_%s_%d%c", tm->thread_prefix,
563 w->registration->short_name, w->instance_id, '\0');
564 vlib_set_thread_name ((char *) w->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700565 }
566
567 if (!w->registration->use_pthreads)
568 {
569
570 /* Initial barrier sync, for both worker and i/o threads */
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000571 clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700572
573 while (*vlib_worker_threads->wait_at_barrier)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400574 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700575
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000576 clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, -1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700577 }
578}
579
Dave Barach9b8ffd92016-07-08 08:13:45 -0400580void *
581vlib_worker_thread_bootstrap_fn (void *arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700582{
583 void *rv;
584 vlib_worker_thread_t *w = arg;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400585
586 w->lwp = syscall (SYS_gettid);
Pavel Kotucek98765202016-10-07 08:37:28 +0200587 w->thread_id = pthread_self ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700588
Damjan Marionf55f9b82017-05-10 21:06:28 +0200589 __os_thread_index = w - vlib_worker_threads;
Damjan Marion586afd72017-04-05 19:18:20 +0200590
Dave Barach9b8ffd92016-07-08 08:13:45 -0400591 rv = (void *) clib_calljmp
592 ((uword (*)(uword)) w->thread_function,
593 (uword) arg, w->thread_stack + VLIB_THREAD_STACK_SIZE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594 /* NOTREACHED, we hope */
595 return rv;
596}
597
Dave Baracha690fdb2020-01-21 12:34:55 -0500598void
599vlib_get_thread_core_numa (vlib_worker_thread_t * w, unsigned cpu_id)
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200600{
601 const char *sys_cpu_path = "/sys/devices/system/cpu/cpu";
Lijian.Zhang4fbb9da2020-02-14 15:16:49 +0800602 const char *sys_node_path = "/sys/devices/system/node/node";
603 clib_bitmap_t *nbmp = 0, *cbmp = 0;
604 u32 node;
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200605 u8 *p = 0;
Dave Baracha690fdb2020-01-21 12:34:55 -0500606 int core_id = -1, numa_id = -1;
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200607
608 p = format (p, "%s%u/topology/core_id%c", sys_cpu_path, cpu_id, 0);
609 clib_sysfs_read ((char *) p, "%d", &core_id);
610 vec_reset_length (p);
Lijian.Zhang4fbb9da2020-02-14 15:16:49 +0800611
612 /* *INDENT-OFF* */
613 clib_sysfs_read ("/sys/devices/system/node/online", "%U",
614 unformat_bitmap_list, &nbmp);
615 clib_bitmap_foreach (node, nbmp, ({
616 p = format (p, "%s%u/cpulist%c", sys_node_path, node, 0);
617 clib_sysfs_read ((char *) p, "%U", unformat_bitmap_list, &cbmp);
618 if (clib_bitmap_get (cbmp, cpu_id))
619 numa_id = node;
620 vec_reset_length (cbmp);
621 vec_reset_length (p);
622 }));
623 /* *INDENT-ON* */
624 vec_free (nbmp);
625 vec_free (cbmp);
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200626 vec_free (p);
627
628 w->core_id = core_id;
Dave Baracha690fdb2020-01-21 12:34:55 -0500629 w->numa_id = numa_id;
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200630}
631
Damjan Marion878c6092017-01-04 13:19:27 +0100632static clib_error_t *
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200633vlib_launch_thread_int (void *fp, vlib_worker_thread_t * w, unsigned cpu_id)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700634{
Damjan Marion878c6092017-01-04 13:19:27 +0100635 vlib_thread_main_t *tm = &vlib_thread_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400636 void *(*fp_arg) (void *) = fp;
Dave Baracha690fdb2020-01-21 12:34:55 -0500637 void *numa_heap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700638
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200639 w->cpu_id = cpu_id;
Dave Baracha690fdb2020-01-21 12:34:55 -0500640 vlib_get_thread_core_numa (w, cpu_id);
Dave Baracha690fdb2020-01-21 12:34:55 -0500641
642 /* Set up NUMA-bound heap if indicated */
643 if (clib_per_numa_mheaps[w->numa_id] == 0)
644 {
645 /* If the user requested a NUMA heap, create it... */
646 if (tm->numa_heap_size)
647 {
648 numa_heap = clib_mem_init_thread_safe_numa
Florin Coras4c959952020-02-09 18:09:31 +0000649 (0 /* DIY */ , tm->numa_heap_size, w->numa_id);
Dave Baracha690fdb2020-01-21 12:34:55 -0500650 clib_per_numa_mheaps[w->numa_id] = numa_heap;
651 }
652 else
653 {
654 /* Or, use the main heap */
655 clib_per_numa_mheaps[w->numa_id] = w->thread_mheap;
656 }
657 }
658
Damjan Marion878c6092017-01-04 13:19:27 +0100659 if (tm->cb.vlib_launch_thread_cb && !w->registration->use_pthreads)
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200660 return tm->cb.vlib_launch_thread_cb (fp, (void *) w, cpu_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700661 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400662 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400663 pthread_t worker;
664 cpu_set_t cpuset;
665 CPU_ZERO (&cpuset);
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200666 CPU_SET (cpu_id, &cpuset);
Christophe Fontainefef15b42016-04-09 12:38:49 +0900667
Damjan Marion878c6092017-01-04 13:19:27 +0100668 if (pthread_create (&worker, NULL /* attr */ , fp_arg, (void *) w))
669 return clib_error_return_unix (0, "pthread_create");
670
671 if (pthread_setaffinity_np (worker, sizeof (cpu_set_t), &cpuset))
672 return clib_error_return_unix (0, "pthread_setaffinity_np");
673
674 return 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400675 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700676}
677
Dave Barach9b8ffd92016-07-08 08:13:45 -0400678static clib_error_t *
679start_workers (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700680{
681 int i, j;
682 vlib_worker_thread_t *w;
683 vlib_main_t *vm_clone;
684 void *oldheap;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400685 vlib_thread_main_t *tm = &vlib_thread_main;
686 vlib_thread_registration_t *tr;
687 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700688 u32 n_vlib_mains = tm->n_vlib_mains;
689 u32 worker_thread_index;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400690 u8 *main_heap = clib_mem_get_per_cpu_heap ();
Dave Barach9b8ffd92016-07-08 08:13:45 -0400691
Ed Warnickecb9cada2015-12-08 15:45:58 -0700692 vec_reset_length (vlib_worker_threads);
693
694 /* Set up the main thread */
695 vec_add2_aligned (vlib_worker_threads, w, 1, CLIB_CACHE_LINE_BYTES);
Dave Barach3e7deb12016-02-05 16:29:53 -0500696 w->elog_track.name = "main thread";
Ed Warnickecb9cada2015-12-08 15:45:58 -0700697 elog_track_register (&vm->elog_main, &w->elog_track);
698
Dave Barach9b8ffd92016-07-08 08:13:45 -0400699 if (vec_len (tm->thread_prefix))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700700 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400701 w->name = format (0, "%v_main%c", tm->thread_prefix, '\0');
702 vlib_set_thread_name ((char *) w->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700703 }
704
Dave Barach9b8ffd92016-07-08 08:13:45 -0400705 vm->elog_main.lock =
706 clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES, CLIB_CACHE_LINE_BYTES);
Dave Barach848191d2016-04-28 16:24:15 -0400707 vm->elog_main.lock[0] = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400708
Ed Warnickecb9cada2015-12-08 15:45:58 -0700709 if (n_vlib_mains > 1)
710 {
Dave Barach80f54e22017-03-08 19:08:56 -0500711 /* Replace hand-crafted length-1 vector with a real vector */
712 vlib_mains = 0;
713
714 vec_validate_aligned (vlib_mains, tm->n_vlib_mains - 1,
715 CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700716 _vec_len (vlib_mains) = 0;
Dave Barach80f54e22017-03-08 19:08:56 -0500717 vec_add1_aligned (vlib_mains, vm, CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700718
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;
743
Dave Barach9b8ffd92016-07-08 08:13:45 -0400744 for (i = 0; i < vec_len (tm->registrations); i++)
745 {
746 vlib_node_main_t *nm, *nm_clone;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400747 int k;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700748
Dave Barach9b8ffd92016-07-08 08:13:45 -0400749 tr = tm->registrations[i];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700750
Dave Barach9b8ffd92016-07-08 08:13:45 -0400751 if (tr->count == 0)
752 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700753
Dave Barach9b8ffd92016-07-08 08:13:45 -0400754 for (k = 0; k < tr->count; k++)
755 {
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100756 vlib_node_t *n;
757
Dave Barach9b8ffd92016-07-08 08:13:45 -0400758 vec_add2 (vlib_worker_threads, w, 1);
Dave Barach6a5adc32018-07-04 10:56:23 -0400759 /* Currently unused, may not really work */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400760 if (tr->mheap_size)
Dave Barach2c8e0022020-02-11 15:06:34 -0500761 w->thread_mheap = create_mspace (tr->mheap_size,
762 0 /* unlocked */ );
Dave Barach9b8ffd92016-07-08 08:13:45 -0400763 else
764 w->thread_mheap = main_heap;
Damjan Marion586afd72017-04-05 19:18:20 +0200765
766 w->thread_stack =
767 vlib_thread_stack_init (w - vlib_worker_threads);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400768 w->thread_function = tr->function;
769 w->thread_function_arg = w;
770 w->instance_id = k;
771 w->registration = tr;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700772
Dave Barach9b8ffd92016-07-08 08:13:45 -0400773 w->elog_track.name =
774 (char *) format (0, "%s %d", tr->name, k + 1);
775 vec_add1 (w->elog_track.name, 0);
776 elog_track_register (&vm->elog_main, &w->elog_track);
Bud Grise68adab92016-02-12 10:36:11 -0500777
Dave Barach9b8ffd92016-07-08 08:13:45 -0400778 if (tr->no_data_structure_clone)
779 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700780
Dave Barach9b8ffd92016-07-08 08:13:45 -0400781 /* Fork vlib_global_main et al. Look for bugs here */
782 oldheap = clib_mem_set_heap (w->thread_mheap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700783
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200784 vm_clone = clib_mem_alloc_aligned (sizeof (*vm_clone),
785 CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400786 clib_memcpy (vm_clone, vlib_mains[0], sizeof (*vm_clone));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700787
Damjan Marion586afd72017-04-05 19:18:20 +0200788 vm_clone->thread_index = worker_thread_index;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400789 vm_clone->heap_base = w->thread_mheap;
Dave Barach6a5adc32018-07-04 10:56:23 -0400790 vm_clone->heap_aligned_base = (void *)
791 (((uword) w->thread_mheap) & ~(VLIB_FRAME_ALIGN - 1));
Damjan Marione9f929b2017-03-16 11:32:09 +0100792 vm_clone->init_functions_called =
793 hash_create (0, /* value bytes */ 0);
Dave Barach2877eee2017-12-15 12:22:57 -0500794 vm_clone->pending_rpc_requests = 0;
795 vec_validate (vm_clone->pending_rpc_requests, 0);
796 _vec_len (vm_clone->pending_rpc_requests) = 0;
Dave Barachb7b92992018-10-17 10:38:51 -0400797 clib_memset (&vm_clone->random_buffer, 0,
798 sizeof (vm_clone->random_buffer));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700799
Dave Barach9b8ffd92016-07-08 08:13:45 -0400800 nm = &vlib_mains[0]->node_main;
801 nm_clone = &vm_clone->node_main;
802 /* fork next frames array, preserving node runtime indices */
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200803 nm_clone->next_frames = vec_dup_aligned (nm->next_frames,
804 CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400805 for (j = 0; j < vec_len (nm_clone->next_frames); j++)
806 {
807 vlib_next_frame_t *nf = &nm_clone->next_frames[j];
808 u32 save_node_runtime_index;
809 u32 save_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700810
Dave Barach9b8ffd92016-07-08 08:13:45 -0400811 save_node_runtime_index = nf->node_runtime_index;
812 save_flags = nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH;
813 vlib_next_frame_init (nf);
814 nf->node_runtime_index = save_node_runtime_index;
815 nf->flags = save_flags;
816 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700817
Dave Barach9b8ffd92016-07-08 08:13:45 -0400818 /* fork the frame dispatch queue */
819 nm_clone->pending_frames = 0;
Dave Barach53fe4a72019-01-26 09:50:26 -0500820 vec_validate (nm_clone->pending_frames, 10);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400821 _vec_len (nm_clone->pending_frames) = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700822
Dave Barach9b8ffd92016-07-08 08:13:45 -0400823 /* fork nodes */
824 nm_clone->nodes = 0;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100825
826 /* Allocate all nodes in single block for speed */
827 n = clib_mem_alloc_no_fail (vec_len (nm->nodes) * sizeof (*n));
828
Dave Barach9b8ffd92016-07-08 08:13:45 -0400829 for (j = 0; j < vec_len (nm->nodes); j++)
830 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400831 clib_memcpy (n, nm->nodes[j], sizeof (*n));
832 /* none of the copied nodes have enqueue rights given out */
833 n->owner_node_index = VLIB_INVALID_NODE_INDEX;
Dave Barachb7b92992018-10-17 10:38:51 -0400834 clib_memset (&n->stats_total, 0, sizeof (n->stats_total));
835 clib_memset (&n->stats_last_clear, 0,
836 sizeof (n->stats_last_clear));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400837 vec_add1 (nm_clone->nodes, n);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100838 n++;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400839 }
840 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200841 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
842 CLIB_CACHE_LINE_BYTES);
JingLiuZTE30af5da2017-07-24 10:53:31 +0800843 vec_foreach (rt,
844 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL])
Damjan Marione9f929b2017-03-16 11:32:09 +0100845 {
846 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
Damjan Marion586afd72017-04-05 19:18:20 +0200847 rt->thread_index = vm_clone->thread_index;
Damjan Marione9f929b2017-03-16 11:32:09 +0100848 /* copy initial runtime_data from node */
Damjan Marionb6f93a12017-03-16 17:46:41 +0100849 if (n->runtime_data && n->runtime_data_bytes > 0)
Damjan Marione9f929b2017-03-16 11:32:09 +0100850 clib_memcpy (rt->runtime_data, n->runtime_data,
Damjan Marionb6f93a12017-03-16 17:46:41 +0100851 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
852 n->runtime_data_bytes));
Damjan Marione9f929b2017-03-16 11:32:09 +0100853 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700854
Dave Barach9b8ffd92016-07-08 08:13:45 -0400855 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200856 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
857 CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400858 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT])
Damjan Marione9f929b2017-03-16 11:32:09 +0100859 {
860 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
Damjan Marion586afd72017-04-05 19:18:20 +0200861 rt->thread_index = vm_clone->thread_index;
Damjan Marione9f929b2017-03-16 11:32:09 +0100862 /* copy initial runtime_data from node */
Damjan Marionb6f93a12017-03-16 17:46:41 +0100863 if (n->runtime_data && n->runtime_data_bytes > 0)
Damjan Marione9f929b2017-03-16 11:32:09 +0100864 clib_memcpy (rt->runtime_data, n->runtime_data,
Damjan Marionb6f93a12017-03-16 17:46:41 +0100865 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
866 n->runtime_data_bytes));
Damjan Marione9f929b2017-03-16 11:32:09 +0100867 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700868
Dave Barach53fe4a72019-01-26 09:50:26 -0500869 nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT] =
870 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT],
871 CLIB_CACHE_LINE_BYTES);
872 vec_foreach (rt,
873 nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT])
874 {
875 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
876 rt->thread_index = vm_clone->thread_index;
877 /* copy initial runtime_data from node */
878 if (n->runtime_data && n->runtime_data_bytes > 0)
879 clib_memcpy (rt->runtime_data, n->runtime_data,
880 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
881 n->runtime_data_bytes));
882 }
883
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200884 nm_clone->processes = vec_dup_aligned (nm->processes,
885 CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700886
Dave Barach593eedf2019-03-10 09:44:51 -0400887 /* Create per-thread frame freelist */
888 nm_clone->frame_sizes = vec_new (vlib_frame_size_t, 1);
889#ifdef VLIB_SUPPORTS_ARBITRARY_SCALAR_SIZES
Florin Coras93992a92017-05-24 18:03:56 -0700890 nm_clone->frame_size_hash = hash_create (0, sizeof (uword));
Dave Barach593eedf2019-03-10 09:44:51 -0400891#endif
Dave Barach687c9022019-07-23 10:22:31 -0400892 nm_clone->node_by_error = nm->node_by_error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700893
Dave Barach9b8ffd92016-07-08 08:13:45 -0400894 /* Packet trace buffers are guaranteed to be empty, nothing to do here */
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100895
Dave Barach9b8ffd92016-07-08 08:13:45 -0400896 clib_mem_set_heap (oldheap);
Dave Barach80f54e22017-03-08 19:08:56 -0500897 vec_add1_aligned (vlib_mains, vm_clone, CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700898
Ole Troan233e4682019-05-16 15:01:34 +0200899 /* Switch to the stats segment ... */
900 void *oldheap = vlib_stats_push_heap (0);
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200901 vm_clone->error_main.counters = vec_dup_aligned
902 (vlib_mains[0]->error_main.counters, CLIB_CACHE_LINE_BYTES);
Ole Troan233e4682019-05-16 15:01:34 +0200903 vlib_stats_pop_heap2 (vm_clone->error_main.counters,
904 worker_thread_index, oldheap, 1);
905
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200906 vm_clone->error_main.counters_last_clear = vec_dup_aligned
907 (vlib_mains[0]->error_main.counters_last_clear,
908 CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700909
Dave Barach9b8ffd92016-07-08 08:13:45 -0400910 worker_thread_index++;
911 }
912 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700913 }
914 else
915 {
916 /* only have non-data-structure copy threads to create... */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400917 for (i = 0; i < vec_len (tm->registrations); i++)
918 {
919 tr = tm->registrations[i];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700920
Dave Barach9b8ffd92016-07-08 08:13:45 -0400921 for (j = 0; j < tr->count; j++)
922 {
923 vec_add2 (vlib_worker_threads, w, 1);
924 if (tr->mheap_size)
Dave Barach6a5adc32018-07-04 10:56:23 -0400925 {
Dave Barach6a5adc32018-07-04 10:56:23 -0400926 w->thread_mheap =
927 create_mspace (tr->mheap_size, 0 /* locked */ );
Dave Barach6a5adc32018-07-04 10:56:23 -0400928 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400929 else
930 w->thread_mheap = main_heap;
Damjan Marion586afd72017-04-05 19:18:20 +0200931 w->thread_stack =
932 vlib_thread_stack_init (w - vlib_worker_threads);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400933 w->thread_function = tr->function;
934 w->thread_function_arg = w;
935 w->instance_id = j;
936 w->elog_track.name =
937 (char *) format (0, "%s %d", tr->name, j + 1);
938 w->registration = tr;
939 vec_add1 (w->elog_track.name, 0);
940 elog_track_register (&vm->elog_main, &w->elog_track);
941 }
942 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700943 }
944
945 worker_thread_index = 1;
946
947 for (i = 0; i < vec_len (tm->registrations); i++)
948 {
Damjan Marion878c6092017-01-04 13:19:27 +0100949 clib_error_t *err;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700950 int j;
951
952 tr = tm->registrations[i];
953
954 if (tr->use_pthreads || tm->use_pthreads)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400955 {
956 for (j = 0; j < tr->count; j++)
957 {
958 w = vlib_worker_threads + worker_thread_index++;
Damjan Marion878c6092017-01-04 13:19:27 +0100959 err = vlib_launch_thread_int (vlib_worker_thread_bootstrap_fn,
960 w, 0);
961 if (err)
962 clib_error_report (err);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400963 }
964 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700965 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400966 {
967 uword c;
Damjan Marion878c6092017-01-04 13:19:27 +0100968 /* *INDENT-OFF* */
969 clib_bitmap_foreach (c, tr->coremask, ({
970 w = vlib_worker_threads + worker_thread_index++;
971 err = vlib_launch_thread_int (vlib_worker_thread_bootstrap_fn,
972 w, c);
973 if (err)
974 clib_error_report (err);
975 }));
976 /* *INDENT-ON* */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400977 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700978 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400979 vlib_worker_thread_barrier_sync (vm);
980 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700981 return 0;
982}
983
984VLIB_MAIN_LOOP_ENTER_FUNCTION (start_workers);
985
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100986
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100987static inline void
988worker_thread_node_runtime_update_internal (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700989{
990 int i, j;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700991 vlib_main_t *vm;
992 vlib_node_main_t *nm, *nm_clone;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700993 vlib_main_t *vm_clone;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100994 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700995 never_inline void
996 vlib_node_runtime_sync_stats (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400997 vlib_node_runtime_t * r,
998 uword n_calls,
999 uword n_vectors, uword n_clocks);
1000
Damjan Marion586afd72017-04-05 19:18:20 +02001001 ASSERT (vlib_get_thread_index () == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001002
Ed Warnickecb9cada2015-12-08 15:45:58 -07001003 vm = vlib_mains[0];
1004 nm = &vm->node_main;
1005
Ed Warnickecb9cada2015-12-08 15:45:58 -07001006 ASSERT (*vlib_worker_threads->wait_at_barrier == 1);
1007
Dave Barach9b8ffd92016-07-08 08:13:45 -04001008 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -07001009 * Scrape all runtime stats, so we don't lose node runtime(s) with
1010 * pending counts, or throw away worker / io thread counts.
1011 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001012 for (j = 0; j < vec_len (nm->nodes); j++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001013 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001014 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001015 n = nm->nodes[j];
1016 vlib_node_sync_stats (vm, n);
1017 }
1018
1019 for (i = 1; i < vec_len (vlib_mains); i++)
1020 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001021 vlib_node_t *n;
1022
Ed Warnickecb9cada2015-12-08 15:45:58 -07001023 vm_clone = vlib_mains[i];
1024 nm_clone = &vm_clone->node_main;
1025
Dave Barach9b8ffd92016-07-08 08:13:45 -04001026 for (j = 0; j < vec_len (nm_clone->nodes); j++)
1027 {
1028 n = nm_clone->nodes[j];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001029
Dave Barach9b8ffd92016-07-08 08:13:45 -04001030 rt = vlib_node_get_runtime (vm_clone, n->index);
1031 vlib_node_runtime_sync_stats (vm_clone, rt, 0, 0, 0);
1032 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001033 }
1034
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001035 /* Per-worker clone rebuilds are now done on each thread */
1036}
1037
1038
1039void
1040vlib_worker_thread_node_refork (void)
1041{
1042 vlib_main_t *vm, *vm_clone;
1043 vlib_node_main_t *nm, *nm_clone;
1044 vlib_node_t **old_nodes_clone;
1045 vlib_node_runtime_t *rt, *old_rt;
1046
1047 vlib_node_t *new_n_clone;
1048
1049 int j;
1050
1051 vm = vlib_mains[0];
1052 nm = &vm->node_main;
1053 vm_clone = vlib_get_main ();
1054 nm_clone = &vm_clone->node_main;
1055
1056 /* Re-clone error heap */
1057 u64 *old_counters = vm_clone->error_main.counters;
1058 u64 *old_counters_all_clear = vm_clone->error_main.counters_last_clear;
1059
Dave Barach178cf492018-11-13 16:34:13 -05001060 clib_memcpy_fast (&vm_clone->error_main, &vm->error_main,
1061 sizeof (vm->error_main));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001062 j = vec_len (vm->error_main.counters) - 1;
Ole Troan233e4682019-05-16 15:01:34 +02001063
1064 /* Switch to the stats segment ... */
1065 void *oldheap = vlib_stats_push_heap (0);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001066 vec_validate_aligned (old_counters, j, CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001067 vm_clone->error_main.counters = old_counters;
Ole Troan233e4682019-05-16 15:01:34 +02001068 vlib_stats_pop_heap2 (vm_clone->error_main.counters, vm_clone->thread_index,
1069 oldheap, 0);
1070
1071 vec_validate_aligned (old_counters_all_clear, j, CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001072 vm_clone->error_main.counters_last_clear = old_counters_all_clear;
1073
1074 nm_clone = &vm_clone->node_main;
1075 vec_free (nm_clone->next_frames);
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001076 nm_clone->next_frames = vec_dup_aligned (nm->next_frames,
1077 CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001078
1079 for (j = 0; j < vec_len (nm_clone->next_frames); j++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001080 {
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001081 vlib_next_frame_t *nf = &nm_clone->next_frames[j];
1082 u32 save_node_runtime_index;
1083 u32 save_flags;
Damjan Marionbc20bdf2015-12-17 14:28:18 +01001084
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001085 save_node_runtime_index = nf->node_runtime_index;
1086 save_flags = nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH;
1087 vlib_next_frame_init (nf);
1088 nf->node_runtime_index = save_node_runtime_index;
1089 nf->flags = save_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001090 }
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001091
1092 old_nodes_clone = nm_clone->nodes;
1093 nm_clone->nodes = 0;
1094
1095 /* re-fork nodes */
1096
1097 /* Allocate all nodes in single block for speed */
1098 new_n_clone =
1099 clib_mem_alloc_no_fail (vec_len (nm->nodes) * sizeof (*new_n_clone));
1100 for (j = 0; j < vec_len (nm->nodes); j++)
1101 {
Benoît Ganne5517bd32019-08-30 16:20:12 +02001102 vlib_node_t *new_n = nm->nodes[j];
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001103
Dave Barach178cf492018-11-13 16:34:13 -05001104 clib_memcpy_fast (new_n_clone, new_n, sizeof (*new_n));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001105 /* none of the copied nodes have enqueue rights given out */
1106 new_n_clone->owner_node_index = VLIB_INVALID_NODE_INDEX;
1107
1108 if (j >= vec_len (old_nodes_clone))
1109 {
1110 /* new node, set to zero */
Dave Barachb7b92992018-10-17 10:38:51 -04001111 clib_memset (&new_n_clone->stats_total, 0,
1112 sizeof (new_n_clone->stats_total));
1113 clib_memset (&new_n_clone->stats_last_clear, 0,
1114 sizeof (new_n_clone->stats_last_clear));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001115 }
1116 else
1117 {
Benoît Ganne5517bd32019-08-30 16:20:12 +02001118 vlib_node_t *old_n_clone = old_nodes_clone[j];
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001119 /* Copy stats if the old data is valid */
Dave Barach178cf492018-11-13 16:34:13 -05001120 clib_memcpy_fast (&new_n_clone->stats_total,
1121 &old_n_clone->stats_total,
1122 sizeof (new_n_clone->stats_total));
1123 clib_memcpy_fast (&new_n_clone->stats_last_clear,
1124 &old_n_clone->stats_last_clear,
1125 sizeof (new_n_clone->stats_last_clear));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001126
1127 /* keep previous node state */
1128 new_n_clone->state = old_n_clone->state;
1129 }
1130 vec_add1 (nm_clone->nodes, new_n_clone);
1131 new_n_clone++;
1132 }
1133 /* Free the old node clones */
1134 clib_mem_free (old_nodes_clone[0]);
1135
1136 vec_free (old_nodes_clone);
1137
1138
1139 /* re-clone internal nodes */
1140 old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL];
1141 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001142 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
1143 CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001144
1145 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL])
1146 {
1147 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1148 rt->thread_index = vm_clone->thread_index;
1149 /* copy runtime_data, will be overwritten later for existing rt */
1150 if (n->runtime_data && n->runtime_data_bytes > 0)
Dave Barach178cf492018-11-13 16:34:13 -05001151 clib_memcpy_fast (rt->runtime_data, n->runtime_data,
1152 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1153 n->runtime_data_bytes));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001154 }
1155
1156 for (j = 0; j < vec_len (old_rt); j++)
1157 {
1158 rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1159 rt->state = old_rt[j].state;
Dave Barach178cf492018-11-13 16:34:13 -05001160 clib_memcpy_fast (rt->runtime_data, old_rt[j].runtime_data,
1161 VLIB_NODE_RUNTIME_DATA_SIZE);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001162 }
1163
1164 vec_free (old_rt);
1165
1166 /* re-clone input nodes */
1167 old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT];
1168 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001169 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
1170 CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001171
1172 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT])
1173 {
1174 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1175 rt->thread_index = vm_clone->thread_index;
1176 /* copy runtime_data, will be overwritten later for existing rt */
1177 if (n->runtime_data && n->runtime_data_bytes > 0)
Dave Barach178cf492018-11-13 16:34:13 -05001178 clib_memcpy_fast (rt->runtime_data, n->runtime_data,
1179 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1180 n->runtime_data_bytes));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001181 }
1182
1183 for (j = 0; j < vec_len (old_rt); j++)
1184 {
1185 rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1186 rt->state = old_rt[j].state;
Dave Barach178cf492018-11-13 16:34:13 -05001187 clib_memcpy_fast (rt->runtime_data, old_rt[j].runtime_data,
1188 VLIB_NODE_RUNTIME_DATA_SIZE);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001189 }
1190
1191 vec_free (old_rt);
1192
Dave Barach53fe4a72019-01-26 09:50:26 -05001193 /* re-clone pre-input nodes */
1194 old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT];
1195 nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT] =
1196 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT],
1197 CLIB_CACHE_LINE_BYTES);
1198
1199 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT])
1200 {
1201 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1202 rt->thread_index = vm_clone->thread_index;
1203 /* copy runtime_data, will be overwritten later for existing rt */
1204 if (n->runtime_data && n->runtime_data_bytes > 0)
1205 clib_memcpy_fast (rt->runtime_data, n->runtime_data,
1206 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1207 n->runtime_data_bytes));
1208 }
1209
1210 for (j = 0; j < vec_len (old_rt); j++)
1211 {
1212 rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1213 rt->state = old_rt[j].state;
1214 clib_memcpy_fast (rt->runtime_data, old_rt[j].runtime_data,
1215 VLIB_NODE_RUNTIME_DATA_SIZE);
1216 }
1217
1218 vec_free (old_rt);
1219
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001220 nm_clone->processes = vec_dup_aligned (nm->processes,
1221 CLIB_CACHE_LINE_BYTES);
Dave Barach687c9022019-07-23 10:22:31 -04001222 nm_clone->node_by_error = nm->node_by_error;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001223}
1224
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001225void
1226vlib_worker_thread_node_runtime_update (void)
1227{
1228 /*
1229 * Make a note that we need to do a node runtime update
1230 * prior to releasing the barrier.
1231 */
1232 vlib_global_main.need_vlib_worker_thread_node_runtime_update = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001233}
1234
Pavel Kotucek1e765832016-09-23 08:54:14 +02001235u32
1236unformat_sched_policy (unformat_input_t * input, va_list * args)
1237{
1238 u32 *r = va_arg (*args, u32 *);
1239
1240 if (0);
1241#define _(v,f,s) else if (unformat (input, s)) *r = SCHED_POLICY_##f;
1242 foreach_sched_policy
1243#undef _
1244 else
1245 return 0;
1246 return 1;
1247}
1248
Ed Warnickecb9cada2015-12-08 15:45:58 -07001249static clib_error_t *
1250cpu_config (vlib_main_t * vm, unformat_input_t * input)
1251{
1252 vlib_thread_registration_t *tr;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001253 uword *p;
1254 vlib_thread_main_t *tm = &vlib_thread_main;
1255 u8 *name;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001256 uword *bitmap;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001257 u32 count;
1258
1259 tm->thread_registrations_by_name = hash_create_string (0, sizeof (uword));
Pavel Kotucek1e765832016-09-23 08:54:14 +02001260
Dave Barach9b8ffd92016-07-08 08:13:45 -04001261 tm->n_thread_stacks = 1; /* account for main thread */
Pavel Kotucek1e765832016-09-23 08:54:14 +02001262 tm->sched_policy = ~0;
1263 tm->sched_priority = ~0;
Damjan Marion858151f2018-07-11 10:51:00 +02001264 tm->main_lcore = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001265
1266 tr = tm->next;
1267
1268 while (tr)
1269 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001270 hash_set_mem (tm->thread_registrations_by_name, tr->name, (uword) tr);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001271 tr = tr->next;
1272 }
1273
Dave Barach9b8ffd92016-07-08 08:13:45 -04001274 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001275 {
Damjan Marionbf741472016-06-13 22:49:44 +02001276 if (unformat (input, "use-pthreads"))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001277 tm->use_pthreads = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001278 else if (unformat (input, "thread-prefix %v", &tm->thread_prefix))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001279 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001280 else if (unformat (input, "main-core %u", &tm->main_lcore))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001281 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001282 else if (unformat (input, "skip-cores %u", &tm->skip_cores))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001283 ;
Dave Baracha690fdb2020-01-21 12:34:55 -05001284 else if (unformat (input, "numa-heap-size %U",
1285 unformat_memory_size, &tm->numa_heap_size))
1286 ;
Yi Hee4a9eb72018-07-17 14:18:41 +08001287 else if (unformat (input, "coremask-%s %U", &name,
1288 unformat_bitmap_mask, &bitmap) ||
1289 unformat (input, "corelist-%s %U", &name,
1290 unformat_bitmap_list, &bitmap))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001291 {
1292 p = hash_get_mem (tm->thread_registrations_by_name, name);
1293 if (p == 0)
1294 return clib_error_return (0, "no such thread type '%s'", name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001295
Dave Barach9b8ffd92016-07-08 08:13:45 -04001296 tr = (vlib_thread_registration_t *) p[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001297
Dave Barach9b8ffd92016-07-08 08:13:45 -04001298 if (tr->use_pthreads)
1299 return clib_error_return (0,
1300 "corelist cannot be set for '%s' threads",
1301 name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001302
Dave Barach9b8ffd92016-07-08 08:13:45 -04001303 tr->coremask = bitmap;
1304 tr->count = clib_bitmap_count_set_bits (tr->coremask);
1305 }
Pavel Kotucek1e765832016-09-23 08:54:14 +02001306 else
1307 if (unformat
1308 (input, "scheduler-policy %U", unformat_sched_policy,
1309 &tm->sched_policy))
1310 ;
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001311 else if (unformat (input, "scheduler-priority %u", &tm->sched_priority))
Pavel Kotucek1e765832016-09-23 08:54:14 +02001312 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001313 else if (unformat (input, "%s %u", &name, &count))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001314 {
1315 p = hash_get_mem (tm->thread_registrations_by_name, name);
1316 if (p == 0)
Pavel Kotucek1e765832016-09-23 08:54:14 +02001317 return clib_error_return (0, "no such thread type 3 '%s'", name);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001318
1319 tr = (vlib_thread_registration_t *) p[0];
1320 if (tr->fixed_count)
1321 return clib_error_return
1322 (0, "number of %s threads not configurable", tr->name);
1323 tr->count = count;
1324 }
1325 else
1326 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001327 }
1328
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001329 if (tm->sched_priority != ~0)
Pavel Kotucek1e765832016-09-23 08:54:14 +02001330 {
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001331 if (tm->sched_policy == SCHED_FIFO || tm->sched_policy == SCHED_RR)
Pavel Kotucek1e765832016-09-23 08:54:14 +02001332 {
1333 u32 prio_max = sched_get_priority_max (tm->sched_policy);
1334 u32 prio_min = sched_get_priority_min (tm->sched_policy);
1335 if (tm->sched_priority > prio_max)
1336 tm->sched_priority = prio_max;
1337 if (tm->sched_priority < prio_min)
1338 tm->sched_priority = prio_min;
1339 }
1340 else
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001341 {
1342 return clib_error_return
1343 (0,
1344 "scheduling priority (%d) is not allowed for `normal` scheduling policy",
1345 tm->sched_priority);
1346 }
Pavel Kotucek1e765832016-09-23 08:54:14 +02001347 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001348 tr = tm->next;
1349
1350 if (!tm->thread_prefix)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001351 tm->thread_prefix = format (0, "vpp");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001352
1353 while (tr)
1354 {
1355 tm->n_thread_stacks += tr->count;
1356 tm->n_pthreads += tr->count * tr->use_pthreads;
Damjan Marion878c6092017-01-04 13:19:27 +01001357 tm->n_threads += tr->count * (tr->use_pthreads == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001358 tr = tr->next;
1359 }
1360
1361 return 0;
1362}
1363
1364VLIB_EARLY_CONFIG_FUNCTION (cpu_config, "cpu");
1365
Ed Warnickecb9cada2015-12-08 15:45:58 -07001366void vnet_main_fixup (vlib_fork_fixup_t which) __attribute__ ((weak));
Dave Barach9b8ffd92016-07-08 08:13:45 -04001367void
1368vnet_main_fixup (vlib_fork_fixup_t which)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001369{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001370}
1371
1372void
1373vlib_worker_thread_fork_fixup (vlib_fork_fixup_t which)
1374{
1375 vlib_main_t *vm = vlib_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001376
1377 if (vlib_mains == 0)
1378 return;
1379
Damjan Marion586afd72017-04-05 19:18:20 +02001380 ASSERT (vlib_get_thread_index () == 0);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001381 vlib_worker_thread_barrier_sync (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001382
1383 switch (which)
1384 {
1385 case VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX:
1386 vnet_main_fixup (VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX);
1387 break;
1388
1389 default:
Dave Barach9b8ffd92016-07-08 08:13:45 -04001390 ASSERT (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001391 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001392 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001393}
1394
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001395 /*
1396 * Enforce minimum open time to minimize packet loss due to Rx overflow,
1397 * based on a test based heuristic that barrier should be open for at least
1398 * 3 time as long as it is closed (with an upper bound of 1ms because by that
1399 * point it is probably too late to make a difference)
1400 */
1401
1402#ifndef BARRIER_MINIMUM_OPEN_LIMIT
1403#define BARRIER_MINIMUM_OPEN_LIMIT 0.001
1404#endif
1405
1406#ifndef BARRIER_MINIMUM_OPEN_FACTOR
1407#define BARRIER_MINIMUM_OPEN_FACTOR 3
1408#endif
1409
Dave Barach9b8ffd92016-07-08 08:13:45 -04001410void
Dave Barachc602b382019-06-03 19:48:22 -04001411vlib_worker_thread_initial_barrier_sync_and_release (vlib_main_t * vm)
1412{
1413 f64 deadline;
1414 f64 now = vlib_time_now (vm);
1415 u32 count = vec_len (vlib_mains) - 1;
1416
1417 /* No worker threads? */
1418 if (count == 0)
1419 return;
1420
1421 deadline = now + BARRIER_SYNC_TIMEOUT;
1422 *vlib_worker_threads->wait_at_barrier = 1;
1423 while (*vlib_worker_threads->workers_at_barrier != count)
1424 {
1425 if ((now = vlib_time_now (vm)) > deadline)
1426 {
1427 fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1428 os_panic ();
1429 }
1430 CLIB_PAUSE ();
1431 }
1432 *vlib_worker_threads->wait_at_barrier = 0;
1433}
1434
1435void
Damjan Marion8343ee52019-02-26 17:15:48 +01001436vlib_worker_thread_barrier_sync_int (vlib_main_t * vm, const char *func_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001437{
1438 f64 deadline;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001439 f64 now;
1440 f64 t_entry;
1441 f64 t_open;
1442 f64 t_closed;
Dave Barach9ae190e2019-04-23 10:07:24 -04001443 f64 max_vector_rate;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001444 u32 count;
Dave Barach9ae190e2019-04-23 10:07:24 -04001445 int i;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001446
Dave Barach80f54e22017-03-08 19:08:56 -05001447 if (vec_len (vlib_mains) < 2)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001448 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001449
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001450 ASSERT (vlib_get_thread_index () == 0);
1451
Damjan Marion8343ee52019-02-26 17:15:48 +01001452 vlib_worker_threads[0].barrier_caller = func_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001453 count = vec_len (vlib_mains) - 1;
1454
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001455 /* Record entry relative to last close */
1456 now = vlib_time_now (vm);
1457 t_entry = now - vm->barrier_epoch;
1458
Ed Warnickecb9cada2015-12-08 15:45:58 -07001459 /* Tolerate recursive calls */
1460 if (++vlib_worker_threads[0].recursion_level > 1)
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001461 {
1462 barrier_trace_sync_rec (t_entry);
1463 return;
1464 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001465
Dave Barach9ae190e2019-04-23 10:07:24 -04001466 /*
1467 * Need data to decide if we're working hard enough to honor
1468 * the barrier hold-down timer.
1469 */
1470 max_vector_rate = 0.0;
1471 for (i = 1; i < vec_len (vlib_mains); i++)
1472 max_vector_rate =
1473 clib_max (max_vector_rate,
Dave Baracha8df85c2019-10-01 13:34:23 -04001474 (f64) vlib_last_vectors_per_main_loop (vlib_mains[i]));
Dave Barach9ae190e2019-04-23 10:07:24 -04001475
Bud Grise42f20062016-03-16 13:09:46 -04001476 vlib_worker_threads[0].barrier_sync_count++;
1477
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001478 /* Enforce minimum barrier open time to minimize packet loss */
1479 ASSERT (vm->barrier_no_close_before <= (now + BARRIER_MINIMUM_OPEN_LIMIT));
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001480
Dave Barach9ae190e2019-04-23 10:07:24 -04001481 /*
1482 * If any worker thread seems busy, which we define
1483 * as a vector rate above 10, we enforce the barrier hold-down timer
1484 */
1485 if (max_vector_rate > 10.0)
Dave Barach36feebb2018-09-07 11:12:27 -04001486 {
Dave Barach9ae190e2019-04-23 10:07:24 -04001487 while (1)
Dave Barach36feebb2018-09-07 11:12:27 -04001488 {
Dave Barach9ae190e2019-04-23 10:07:24 -04001489 now = vlib_time_now (vm);
1490 /* Barrier hold-down timer expired? */
1491 if (now >= vm->barrier_no_close_before)
1492 break;
1493 if ((vm->barrier_no_close_before - now)
1494 > (2.0 * BARRIER_MINIMUM_OPEN_LIMIT))
1495 {
1496 clib_warning
1497 ("clock change: would have waited for %.4f seconds",
1498 (vm->barrier_no_close_before - now));
1499 break;
1500 }
Dave Barach36feebb2018-09-07 11:12:27 -04001501 }
1502 }
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001503 /* Record time of closure */
1504 t_open = now - vm->barrier_epoch;
1505 vm->barrier_epoch = now;
1506
1507 deadline = now + BARRIER_SYNC_TIMEOUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001508
1509 *vlib_worker_threads->wait_at_barrier = 1;
1510 while (*vlib_worker_threads->workers_at_barrier != count)
1511 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001512 if ((now = vlib_time_now (vm)) > deadline)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001513 {
1514 fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1515 os_panic ();
1516 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001517 }
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001518
1519 t_closed = now - vm->barrier_epoch;
1520
1521 barrier_trace_sync (t_entry, t_open, t_closed);
1522
Ed Warnickecb9cada2015-12-08 15:45:58 -07001523}
1524
Dave Barach9b8ffd92016-07-08 08:13:45 -04001525void
1526vlib_worker_thread_barrier_release (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001527{
1528 f64 deadline;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001529 f64 now;
1530 f64 minimum_open;
1531 f64 t_entry;
1532 f64 t_closed_total;
1533 f64 t_update_main = 0.0;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001534 int refork_needed = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001535
Dave Barach80f54e22017-03-08 19:08:56 -05001536 if (vec_len (vlib_mains) < 2)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001537 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001538
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001539 ASSERT (vlib_get_thread_index () == 0);
1540
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001541
1542 now = vlib_time_now (vm);
1543 t_entry = now - vm->barrier_epoch;
1544
Ed Warnickecb9cada2015-12-08 15:45:58 -07001545 if (--vlib_worker_threads[0].recursion_level > 0)
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001546 {
1547 barrier_trace_release_rec (t_entry);
1548 return;
1549 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001550
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001551 /* Update (all) node runtimes before releasing the barrier, if needed */
1552 if (vm->need_vlib_worker_thread_node_runtime_update)
1553 {
Dave Barach1ddbc012018-06-13 09:26:05 -04001554 /*
1555 * Lock stat segment here, so we's safe when
1556 * rebuilding the stat segment node clones from the
1557 * stat thread...
1558 */
1559 vlib_stat_segment_lock ();
1560
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001561 /* Do stats elements on main thread */
1562 worker_thread_node_runtime_update_internal ();
1563 vm->need_vlib_worker_thread_node_runtime_update = 0;
1564
1565 /* Do per thread rebuilds in parallel */
1566 refork_needed = 1;
Sirshak Das2f6d7bb2018-10-03 22:53:51 +00001567 clib_atomic_fetch_add (vlib_worker_threads->node_reforks_required,
1568 (vec_len (vlib_mains) - 1));
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001569 now = vlib_time_now (vm);
1570 t_update_main = now - vm->barrier_epoch;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001571 }
1572
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001573 deadline = now + BARRIER_SYNC_TIMEOUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001574
Dave Baracha4324a92019-02-19 17:05:30 -05001575 /*
1576 * Note when we let go of the barrier.
1577 * Workers can use this to derive a reasonably accurate
1578 * time offset. See vlib_time_now(...)
1579 */
1580 vm->time_last_barrier_release = vlib_time_now (vm);
1581 CLIB_MEMORY_STORE_BARRIER ();
1582
Ed Warnickecb9cada2015-12-08 15:45:58 -07001583 *vlib_worker_threads->wait_at_barrier = 0;
1584
1585 while (*vlib_worker_threads->workers_at_barrier > 0)
1586 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001587 if ((now = vlib_time_now (vm)) > deadline)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001588 {
1589 fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1590 os_panic ();
1591 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001592 }
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001593
1594 /* Wait for reforks before continuing */
1595 if (refork_needed)
1596 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001597 now = vlib_time_now (vm);
1598
1599 deadline = now + BARRIER_SYNC_TIMEOUT;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001600
1601 while (*vlib_worker_threads->node_reforks_required > 0)
1602 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001603 if ((now = vlib_time_now (vm)) > deadline)
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001604 {
1605 fformat (stderr, "%s: worker thread refork deadlock\n",
1606 __FUNCTION__);
1607 os_panic ();
1608 }
1609 }
Dave Barach1ddbc012018-06-13 09:26:05 -04001610 vlib_stat_segment_unlock ();
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001611 }
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001612
1613 t_closed_total = now - vm->barrier_epoch;
1614
1615 minimum_open = t_closed_total * BARRIER_MINIMUM_OPEN_FACTOR;
1616
1617 if (minimum_open > BARRIER_MINIMUM_OPEN_LIMIT)
1618 {
1619 minimum_open = BARRIER_MINIMUM_OPEN_LIMIT;
1620 }
1621
1622 vm->barrier_no_close_before = now + minimum_open;
1623
1624 /* Record barrier epoch (used to enforce minimum open time) */
1625 vm->barrier_epoch = now;
1626
1627 barrier_trace_release (t_entry, t_closed_total, t_update_main);
1628
Ed Warnickecb9cada2015-12-08 15:45:58 -07001629}
1630
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001631/*
1632 * Check the frame queue to see if any frames are available.
Dave Barach9b8ffd92016-07-08 08:13:45 -04001633 * If so, pull the packets off the frames and put them to
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001634 * the handoff node.
1635 */
Damjan Marione9d52d52017-03-09 15:42:26 +01001636int
1637vlib_frame_queue_dequeue (vlib_main_t * vm, vlib_frame_queue_main_t * fqm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001638{
Damjan Marion586afd72017-04-05 19:18:20 +02001639 u32 thread_id = vm->thread_index;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001640 vlib_frame_queue_t *fq = fqm->vlib_frame_queues[thread_id];
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001641 vlib_frame_queue_elt_t *elt;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001642 u32 *from, *to;
1643 vlib_frame_t *f;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001644 int msg_type;
1645 int processed = 0;
1646 u32 n_left_to_node;
1647 u32 vectors = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001648
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001649 ASSERT (fq);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001650 ASSERT (vm == vlib_mains[thread_id]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001651
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001652 if (PREDICT_FALSE (fqm->node_index == ~0))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001653 return 0;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001654 /*
1655 * Gather trace data for frame queues
1656 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001657 if (PREDICT_FALSE (fq->trace))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001658 {
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001659 frame_queue_trace_t *fqt;
1660 frame_queue_nelt_counter_t *fqh;
1661 u32 elix;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001662
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001663 fqt = &fqm->frame_queue_traces[thread_id];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001664
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001665 fqt->nelts = fq->nelts;
1666 fqt->head = fq->head;
1667 fqt->head_hint = fq->head_hint;
1668 fqt->tail = fq->tail;
1669 fqt->threshold = fq->vector_threshold;
1670 fqt->n_in_use = fqt->tail - fqt->head;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001671 if (fqt->n_in_use >= fqt->nelts)
1672 {
1673 // if beyond max then use max
1674 fqt->n_in_use = fqt->nelts - 1;
1675 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001676
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001677 /* Record the number of elements in use in the histogram */
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001678 fqh = &fqm->frame_queue_histogram[thread_id];
Dave Barach9b8ffd92016-07-08 08:13:45 -04001679 fqh->count[fqt->n_in_use]++;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001680
1681 /* Record a snapshot of the elements in use */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001682 for (elix = 0; elix < fqt->nelts; elix++)
1683 {
1684 elt = fq->elts + ((fq->head + 1 + elix) & (fq->nelts - 1));
1685 if (1 || elt->valid)
1686 {
1687 fqt->n_vectors[elix] = elt->n_vectors;
1688 }
1689 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001690 fqt->written = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001691 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001692
1693 while (1)
1694 {
Dave Baracha638c182019-06-21 18:24:07 -04001695 vlib_buffer_t *b;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001696 if (fq->head == fq->tail)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001697 {
1698 fq->head_hint = fq->head;
1699 return processed;
1700 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001701
Dave Barach9b8ffd92016-07-08 08:13:45 -04001702 elt = fq->elts + ((fq->head + 1) & (fq->nelts - 1));
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001703
1704 if (!elt->valid)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001705 {
1706 fq->head_hint = fq->head;
1707 return processed;
1708 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001709
1710 from = elt->buffer_index;
1711 msg_type = elt->msg_type;
1712
1713 ASSERT (msg_type == VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME);
1714 ASSERT (elt->n_vectors <= VLIB_FRAME_SIZE);
1715
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001716 f = vlib_get_frame_to_node (vm, fqm->node_index);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001717
Dave Baracha638c182019-06-21 18:24:07 -04001718 /* If the first vector is traced, set the frame trace flag */
1719 b = vlib_get_buffer (vm, from[0]);
1720 if (b->flags & VLIB_BUFFER_IS_TRACED)
1721 f->frame_flags |= VLIB_NODE_FLAG_TRACE;
1722
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001723 to = vlib_frame_vector_args (f);
1724
1725 n_left_to_node = elt->n_vectors;
1726
1727 while (n_left_to_node >= 4)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001728 {
1729 to[0] = from[0];
1730 to[1] = from[1];
1731 to[2] = from[2];
1732 to[3] = from[3];
1733 to += 4;
1734 from += 4;
1735 n_left_to_node -= 4;
1736 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001737
1738 while (n_left_to_node > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001739 {
1740 to[0] = from[0];
1741 to++;
1742 from++;
1743 n_left_to_node--;
1744 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001745
1746 vectors += elt->n_vectors;
1747 f->n_vectors = elt->n_vectors;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001748 vlib_put_frame_to_node (vm, fqm->node_index, f);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001749
1750 elt->valid = 0;
1751 elt->n_vectors = 0;
1752 elt->msg_type = 0xfefefefe;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001753 CLIB_MEMORY_BARRIER ();
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001754 fq->head++;
1755 processed++;
1756
1757 /*
1758 * Limit the number of packets pushed into the graph
1759 */
1760 if (vectors >= fq->vector_threshold)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001761 {
1762 fq->head_hint = fq->head;
1763 return processed;
1764 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001765 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001766 ASSERT (0);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001767 return processed;
1768}
1769
Dave Barach9b8ffd92016-07-08 08:13:45 -04001770void
1771vlib_worker_thread_fn (void *arg)
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001772{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001773 vlib_worker_thread_t *w = (vlib_worker_thread_t *) arg;
Damjan Marion878c6092017-01-04 13:19:27 +01001774 vlib_thread_main_t *tm = vlib_get_thread_main ();
Dave Barach9b8ffd92016-07-08 08:13:45 -04001775 vlib_main_t *vm = vlib_get_main ();
Damjan Marione9f929b2017-03-16 11:32:09 +01001776 clib_error_t *e;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001777
Damjan Marion586afd72017-04-05 19:18:20 +02001778 ASSERT (vm->thread_index == vlib_get_thread_index ());
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001779
1780 vlib_worker_thread_init (w);
1781 clib_time_init (&vm->clib_time);
1782 clib_mem_set_heap (w->thread_mheap);
1783
Dave Barachc602b382019-06-03 19:48:22 -04001784 e = vlib_call_init_exit_functions_no_sort
Dave Barachf8d50682019-05-14 18:01:44 -04001785 (vm, &vm->worker_init_function_registrations, 1 /* call_once */ );
Damjan Marione9f929b2017-03-16 11:32:09 +01001786 if (e)
1787 clib_error_report (e);
1788
Dave Barachc602b382019-06-03 19:48:22 -04001789 /* Wait until the dpdk init sequence is complete */
1790 while (tm->extern_thread_mgmt && tm->worker_thread_release == 0)
1791 vlib_worker_thread_barrier_check ();
1792
Damjan Marione9d52d52017-03-09 15:42:26 +01001793 vlib_worker_loop (vm);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001794}
1795
Dave Barach9b8ffd92016-07-08 08:13:45 -04001796/* *INDENT-OFF* */
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001797VLIB_REGISTER_THREAD (worker_thread_reg, static) = {
1798 .name = "workers",
1799 .short_name = "wk",
1800 .function = vlib_worker_thread_fn,
1801};
Dave Barach9b8ffd92016-07-08 08:13:45 -04001802/* *INDENT-ON* */
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001803
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001804u32
1805vlib_frame_queue_main_init (u32 node_index, u32 frame_queue_nelts)
1806{
1807 vlib_thread_main_t *tm = vlib_get_thread_main ();
1808 vlib_frame_queue_main_t *fqm;
1809 vlib_frame_queue_t *fq;
1810 int i;
1811
1812 if (frame_queue_nelts == 0)
dongjuan88752482019-06-04 10:59:02 +08001813 frame_queue_nelts = FRAME_QUEUE_MAX_NELTS;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001814
Damjan Marion78fd7e82018-07-20 18:47:05 +02001815 ASSERT (frame_queue_nelts >= 8);
1816
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001817 vec_add2 (tm->frame_queue_mains, fqm, 1);
1818
1819 fqm->node_index = node_index;
Damjan Marion78fd7e82018-07-20 18:47:05 +02001820 fqm->frame_queue_nelts = frame_queue_nelts;
1821 fqm->queue_hi_thresh = frame_queue_nelts - 2;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001822
1823 vec_validate (fqm->vlib_frame_queues, tm->n_vlib_mains - 1);
Damjan Marion78fd7e82018-07-20 18:47:05 +02001824 vec_validate (fqm->per_thread_data, tm->n_vlib_mains - 1);
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001825 _vec_len (fqm->vlib_frame_queues) = 0;
1826 for (i = 0; i < tm->n_vlib_mains; i++)
1827 {
Damjan Marion78fd7e82018-07-20 18:47:05 +02001828 vlib_frame_queue_per_thread_data_t *ptd;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001829 fq = vlib_frame_queue_alloc (frame_queue_nelts);
1830 vec_add1 (fqm->vlib_frame_queues, fq);
Damjan Marion78fd7e82018-07-20 18:47:05 +02001831
1832 ptd = vec_elt_at_index (fqm->per_thread_data, i);
1833 vec_validate (ptd->handoff_queue_elt_by_thread_index,
1834 tm->n_vlib_mains - 1);
1835 vec_validate_init_empty (ptd->congested_handoff_queue_by_thread_index,
1836 tm->n_vlib_mains - 1,
1837 (vlib_frame_queue_t *) (~0));
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001838 }
1839
1840 return (fqm - tm->frame_queue_mains);
1841}
1842
Damjan Marion878c6092017-01-04 13:19:27 +01001843int
1844vlib_thread_cb_register (struct vlib_main_t *vm, vlib_thread_callbacks_t * cb)
1845{
1846 vlib_thread_main_t *tm = vlib_get_thread_main ();
1847
1848 if (tm->extern_thread_mgmt)
1849 return -1;
1850
1851 tm->cb.vlib_launch_thread_cb = cb->vlib_launch_thread_cb;
1852 tm->extern_thread_mgmt = 1;
1853 return 0;
1854}
1855
Dave Barach69128d02017-09-26 10:54:34 -04001856void
1857vlib_process_signal_event_mt_helper (vlib_process_signal_event_mt_args_t *
1858 args)
1859{
1860 ASSERT (vlib_get_thread_index () == 0);
1861 vlib_process_signal_event (vlib_get_main (), args->node_index,
1862 args->type_opaque, args->data);
1863}
1864
1865void *rpc_call_main_thread_cb_fn;
1866
1867void
1868vlib_rpc_call_main_thread (void *callback, u8 * args, u32 arg_size)
1869{
1870 if (rpc_call_main_thread_cb_fn)
1871 {
1872 void (*fp) (void *, u8 *, u32) = rpc_call_main_thread_cb_fn;
1873 (*fp) (callback, args, arg_size);
1874 }
1875 else
1876 clib_warning ("BUG: rpc_call_main_thread_cb_fn NULL!");
1877}
1878
Dave Barach9b8ffd92016-07-08 08:13:45 -04001879clib_error_t *
1880threads_init (vlib_main_t * vm)
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001881{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001882 return 0;
1883}
1884
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001885VLIB_INIT_FUNCTION (threads_init);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001886
Dave Baracha4324a92019-02-19 17:05:30 -05001887
1888static clib_error_t *
1889show_clock_command_fn (vlib_main_t * vm,
1890 unformat_input_t * input, vlib_cli_command_t * cmd)
1891{
1892 int i;
Dave Barachc25048b2020-01-29 18:05:24 -05001893 int verbose = 0;
Dave Barach19718002020-03-11 10:31:36 -04001894 clib_timebase_t _tb, *tb = &_tb;
Dave Baracha4324a92019-02-19 17:05:30 -05001895
Dave Barachc25048b2020-01-29 18:05:24 -05001896 (void) unformat (input, "verbose %=", &verbose, 1);
Dave Baracha4324a92019-02-19 17:05:30 -05001897
Dave Barach19718002020-03-11 10:31:36 -04001898 clib_timebase_init (tb, 0 /* GMT */ , CLIB_TIMEBASE_DAYLIGHT_NONE,
1899 &vm->clib_time);
1900
1901 vlib_cli_output (vm, "%U, %U GMT", format_clib_time, &vm->clib_time,
1902 verbose, format_clib_timebase_time,
1903 clib_timebase_now (tb));
Dave Baracha4324a92019-02-19 17:05:30 -05001904
1905 if (vec_len (vlib_mains) == 1)
1906 return 0;
1907
1908 vlib_cli_output (vm, "Time last barrier release %.9f",
1909 vm->time_last_barrier_release);
1910
1911 for (i = 1; i < vec_len (vlib_mains); i++)
1912 {
1913 if (vlib_mains[i] == 0)
1914 continue;
Dave Barachc25048b2020-01-29 18:05:24 -05001915
1916 vlib_cli_output (vm, "%d: %U", i, format_clib_time,
1917 &vlib_mains[i]->clib_time, verbose);
1918
Dave Baracha4324a92019-02-19 17:05:30 -05001919 vlib_cli_output (vm, "Thread %d offset %.9f error %.9f", i,
1920 vlib_mains[i]->time_offset,
1921 vm->time_last_barrier_release -
1922 vlib_mains[i]->time_last_barrier_release);
1923 }
1924 return 0;
1925}
1926
1927/* *INDENT-OFF* */
1928VLIB_CLI_COMMAND (f_command, static) =
1929{
1930 .path = "show clock",
1931 .short_help = "show clock",
1932 .function = show_clock_command_fn,
1933};
1934/* *INDENT-ON* */
1935
Dave Barach9b8ffd92016-07-08 08:13:45 -04001936/*
1937 * fd.io coding-style-patch-verification: ON
1938 *
1939 * Local Variables:
1940 * eval: (c-set-style "gnu")
1941 * End:
1942 */