blob: e59919e7a267180c706dab8ee05c4e5b7a8f8cd0 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
Christophe Fontainefef15b42016-04-09 12:38:49 +090015#define _GNU_SOURCE
Christophe Fontainefef15b42016-04-09 12:38:49 +090016
Ed Warnickecb9cada2015-12-08 15:45:58 -070017#include <signal.h>
18#include <math.h>
19#include <vppinfra/format.h>
Mohsin Kazmi5d64c782018-09-11 20:27:09 +020020#include <vppinfra/linux/sysfs.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070021#include <vlib/vlib.h>
22
23#include <vlib/threads.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070024#include <vlib/unix/cj.h>
25
Ole Troan233e4682019-05-16 15:01:34 +020026#include <vlib/stat_weak_inlines.h>
27
Ed Warnickecb9cada2015-12-08 15:45:58 -070028DECLARE_CJ_GLOBAL_LOG;
29
Ed Warnickecb9cada2015-12-08 15:45:58 -070030
Dave Barach9b8ffd92016-07-08 08:13:45 -040031u32
32vl (void *p)
Ed Warnickecb9cada2015-12-08 15:45:58 -070033{
34 return vec_len (p);
35}
36
Damjan Marion6a7acc22016-12-19 16:28:36 +010037vlib_worker_thread_t *vlib_worker_threads;
Ed Warnickecb9cada2015-12-08 15:45:58 -070038vlib_thread_main_t vlib_thread_main;
39
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010040/*
41 * Barrier tracing can be enabled on a normal build to collect information
42 * on barrier use, including timings and call stacks. Deliberately not
43 * keyed off CLIB_DEBUG, because that can add significant overhead which
44 * imapacts observed timings.
45 */
46
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010047static inline void
48barrier_trace_sync (f64 t_entry, f64 t_open, f64 t_closed)
49{
Dave Barach88c6e002018-09-30 15:54:06 -040050 if (!vlib_worker_threads->barrier_elog_enabled)
51 return;
52
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010053 /* *INDENT-OFF* */
54 ELOG_TYPE_DECLARE (e) =
55 {
Dave Barach88c6e002018-09-30 15:54:06 -040056 .format = "bar-trace-%s-#%d",
57 .format_args = "T4i4",
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010058 };
59 /* *INDENT-ON* */
60 struct
61 {
Dave Barach88c6e002018-09-30 15:54:06 -040062 u32 caller, count, t_entry, t_open, t_closed;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010063 } *ed = 0;
64
65 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
66 ed->count = (int) vlib_worker_threads[0].barrier_sync_count;
Dave Barachb09f4d02019-07-15 16:00:03 -040067 ed->caller = elog_string (&vlib_global_main.elog_main,
68 (char *) vlib_worker_threads[0].barrier_caller);
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010069 ed->t_entry = (int) (1000000.0 * t_entry);
70 ed->t_open = (int) (1000000.0 * t_open);
71 ed->t_closed = (int) (1000000.0 * t_closed);
72}
73
74static inline void
75barrier_trace_sync_rec (f64 t_entry)
76{
Dave Barach88c6e002018-09-30 15:54:06 -040077 if (!vlib_worker_threads->barrier_elog_enabled)
78 return;
79
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010080 /* *INDENT-OFF* */
81 ELOG_TYPE_DECLARE (e) =
82 {
Dave Barach88c6e002018-09-30 15:54:06 -040083 .format = "bar-syncrec-%s-#%d",
84 .format_args = "T4i4",
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010085 };
86 /* *INDENT-ON* */
87 struct
88 {
Dave Barach88c6e002018-09-30 15:54:06 -040089 u32 caller, depth;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010090 } *ed = 0;
91
92 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
93 ed->depth = (int) vlib_worker_threads[0].recursion_level - 1;
Dave Barachb09f4d02019-07-15 16:00:03 -040094 ed->caller = elog_string (&vlib_global_main.elog_main,
95 (char *) vlib_worker_threads[0].barrier_caller);
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +010096}
97
98static inline void
99barrier_trace_release_rec (f64 t_entry)
100{
Dave Barach88c6e002018-09-30 15:54:06 -0400101 if (!vlib_worker_threads->barrier_elog_enabled)
102 return;
103
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100104 /* *INDENT-OFF* */
105 ELOG_TYPE_DECLARE (e) =
106 {
Dave Barach88c6e002018-09-30 15:54:06 -0400107 .format = "bar-relrrec-#%d",
108 .format_args = "i4",
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100109 };
110 /* *INDENT-ON* */
111 struct
112 {
Dave Barach88c6e002018-09-30 15:54:06 -0400113 u32 depth;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100114 } *ed = 0;
115
116 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100117 ed->depth = (int) vlib_worker_threads[0].recursion_level;
118}
119
120static inline void
121barrier_trace_release (f64 t_entry, f64 t_closed_total, f64 t_update_main)
122{
Dave Barach88c6e002018-09-30 15:54:06 -0400123 if (!vlib_worker_threads->barrier_elog_enabled)
124 return;
125
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100126 /* *INDENT-OFF* */
127 ELOG_TYPE_DECLARE (e) =
128 {
Dave Barach88c6e002018-09-30 15:54:06 -0400129 .format = "bar-rel-#%d-e%d-u%d-t%d",
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100130 .format_args = "i4i4i4i4",
131 };
132 /* *INDENT-ON* */
133 struct
134 {
Dave Barach88c6e002018-09-30 15:54:06 -0400135 u32 count, t_entry, t_update_main, t_closed_total;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100136 } *ed = 0;
137
138 ed = ELOG_DATA (&vlib_global_main.elog_main, e);
139 ed->t_entry = (int) (1000000.0 * t_entry);
140 ed->t_update_main = (int) (1000000.0 * t_update_main);
141 ed->t_closed_total = (int) (1000000.0 * t_closed_total);
142 ed->count = (int) vlib_worker_threads[0].barrier_sync_count;
143
144 /* Reset context for next trace */
145 vlib_worker_threads[0].barrier_context = NULL;
146}
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100147
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148uword
Damjan Marionf55f9b82017-05-10 21:06:28 +0200149os_get_nthreads (void)
Dave Barach01d86c72016-08-08 15:13:42 -0400150{
Dave Barach2180bac2019-05-10 15:25:10 -0400151 return vec_len (vlib_thread_stacks);
Dave Barach01d86c72016-08-08 15:13:42 -0400152}
153
Ed Warnickecb9cada2015-12-08 15:45:58 -0700154void
155vlib_set_thread_name (char *name)
156{
157 int pthread_setname_np (pthread_t __target_thread, const char *__name);
Dave Barachb2a6e252016-07-27 10:00:58 -0400158 int rv;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400159 pthread_t thread = pthread_self ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160
Dave Barach9b8ffd92016-07-08 08:13:45 -0400161 if (thread)
Dave Barachb2a6e252016-07-27 10:00:58 -0400162 {
163 rv = pthread_setname_np (thread, name);
164 if (rv)
Ed Warnicke853e7202016-08-12 11:42:26 -0700165 clib_warning ("pthread_setname_np returned %d", rv);
Dave Barachb2a6e252016-07-27 10:00:58 -0400166 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167}
168
Dave Barach9b8ffd92016-07-08 08:13:45 -0400169static int
170sort_registrations_by_no_clone (void *a0, void *a1)
171{
172 vlib_thread_registration_t **tr0 = a0;
173 vlib_thread_registration_t **tr1 = a1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174
Dave Barach9b8ffd92016-07-08 08:13:45 -0400175 return ((i32) ((*tr0)->no_data_structure_clone)
176 - ((i32) ((*tr1)->no_data_structure_clone)));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177}
178
179static uword *
Damjan Marion01914ce2017-09-14 19:04:50 +0200180clib_sysfs_list_to_bitmap (char *filename)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181{
182 FILE *fp;
183 uword *r = 0;
184
185 fp = fopen (filename, "r");
186
187 if (fp != NULL)
188 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400189 u8 *buffer = 0;
190 vec_validate (buffer, 256 - 1);
191 if (fgets ((char *) buffer, 256, fp))
192 {
193 unformat_input_t in;
194 unformat_init_string (&in, (char *) buffer,
195 strlen ((char *) buffer));
Dave Barachb2a6e252016-07-27 10:00:58 -0400196 if (unformat (&in, "%U", unformat_bitmap_list, &r) != 1)
Ed Warnicke853e7202016-08-12 11:42:26 -0700197 clib_warning ("unformat_bitmap_list failed");
Dave Barach9b8ffd92016-07-08 08:13:45 -0400198 unformat_free (&in);
199 }
200 vec_free (buffer);
201 fclose (fp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202 }
203 return r;
204}
205
206
207/* Called early in the init sequence */
208
209clib_error_t *
210vlib_thread_init (vlib_main_t * vm)
211{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400212 vlib_thread_main_t *tm = &vlib_thread_main;
213 vlib_worker_thread_t *w;
214 vlib_thread_registration_t *tr;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215 u32 n_vlib_mains = 1;
216 u32 first_index = 1;
217 u32 i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400218 uword *avail_cpu;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700219
220 /* get bitmaps of active cpu cores and sockets */
221 tm->cpu_core_bitmap =
Damjan Marion01914ce2017-09-14 19:04:50 +0200222 clib_sysfs_list_to_bitmap ("/sys/devices/system/cpu/online");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223 tm->cpu_socket_bitmap =
Damjan Marion01914ce2017-09-14 19:04:50 +0200224 clib_sysfs_list_to_bitmap ("/sys/devices/system/node/online");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225
Dave Barach9b8ffd92016-07-08 08:13:45 -0400226 avail_cpu = clib_bitmap_dup (tm->cpu_core_bitmap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227
228 /* skip cores */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400229 for (i = 0; i < tm->skip_cores; i++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700230 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400231 uword c = clib_bitmap_first_set (avail_cpu);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232 if (c == ~0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400233 return clib_error_return (0, "no available cpus to skip");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234
Dave Barach9b8ffd92016-07-08 08:13:45 -0400235 avail_cpu = clib_bitmap_set (avail_cpu, c, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236 }
237
238 /* grab cpu for main thread */
Damjan Marion858151f2018-07-11 10:51:00 +0200239 if (tm->main_lcore == ~0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700240 {
Damjan Marion858151f2018-07-11 10:51:00 +0200241 /* if main-lcore is not set, we try to use lcore 1 */
242 if (clib_bitmap_get (avail_cpu, 1))
243 tm->main_lcore = 1;
244 else
245 tm->main_lcore = clib_bitmap_first_set (avail_cpu);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400246 if (tm->main_lcore == (u8) ~ 0)
247 return clib_error_return (0, "no available cpus to be used for the"
248 " main thread");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249 }
250 else
251 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400252 if (clib_bitmap_get (avail_cpu, tm->main_lcore) == 0)
253 return clib_error_return (0, "cpu %u is not available to be used"
254 " for the main thread", tm->main_lcore);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400256 avail_cpu = clib_bitmap_set (avail_cpu, tm->main_lcore, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700257
258 /* assume that there is socket 0 only if there is no data from sysfs */
259 if (!tm->cpu_socket_bitmap)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400260 tm->cpu_socket_bitmap = clib_bitmap_set (0, 0, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700261
Christophe Fontainefef15b42016-04-09 12:38:49 +0900262 /* pin main thread to main_lcore */
Damjan Marion878c6092017-01-04 13:19:27 +0100263 if (tm->cb.vlib_thread_set_lcore_cb)
264 {
265 tm->cb.vlib_thread_set_lcore_cb (0, tm->main_lcore);
266 }
Damjan Marion858151f2018-07-11 10:51:00 +0200267 else
268 {
269 cpu_set_t cpuset;
270 CPU_ZERO (&cpuset);
271 CPU_SET (tm->main_lcore, &cpuset);
272 pthread_setaffinity_np (pthread_self (), sizeof (cpu_set_t), &cpuset);
273 }
Christophe Fontainefef15b42016-04-09 12:38:49 +0900274
Dave Barach2180bac2019-05-10 15:25:10 -0400275 /* Set up thread 0 */
276 vec_validate_aligned (vlib_worker_threads, 0, CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400277 _vec_len (vlib_worker_threads) = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278 w = vlib_worker_threads;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400279 w->thread_mheap = clib_mem_get_heap ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280 w->thread_stack = vlib_thread_stacks[0];
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200281 w->cpu_id = tm->main_lcore;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400282 w->lwp = syscall (SYS_gettid);
Pavel Kotucek98765202016-10-07 08:37:28 +0200283 w->thread_id = pthread_self ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284 tm->n_vlib_mains = 1;
285
Pavel Kotucek1e765832016-09-23 08:54:14 +0200286 if (tm->sched_policy != ~0)
287 {
288 struct sched_param sched_param;
289 if (!sched_getparam (w->lwp, &sched_param))
290 {
291 if (tm->sched_priority != ~0)
292 sched_param.sched_priority = tm->sched_priority;
293 sched_setscheduler (w->lwp, tm->sched_policy, &sched_param);
294 }
295 }
296
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297 /* assign threads to cores and set n_vlib_mains */
298 tr = tm->next;
299
300 while (tr)
301 {
302 vec_add1 (tm->registrations, tr);
303 tr = tr->next;
304 }
305
Dave Barach9b8ffd92016-07-08 08:13:45 -0400306 vec_sort_with_function (tm->registrations, sort_registrations_by_no_clone);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700307
308 for (i = 0; i < vec_len (tm->registrations); i++)
309 {
310 int j;
311 tr = tm->registrations[i];
312 tr->first_index = first_index;
313 first_index += tr->count;
314 n_vlib_mains += (tr->no_data_structure_clone == 0) ? tr->count : 0;
315
316 /* construct coremask */
317 if (tr->use_pthreads || !tr->count)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400318 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319
320 if (tr->coremask)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400321 {
322 uword c;
323 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700324 clib_bitmap_foreach (c, tr->coremask, ({
325 if (clib_bitmap_get(avail_cpu, c) == 0)
326 return clib_error_return (0, "cpu %u is not available to be used"
327 " for the '%s' thread",c, tr->name);
328
329 avail_cpu = clib_bitmap_set(avail_cpu, c, 0);
330 }));
Dave Barach2180bac2019-05-10 15:25:10 -0400331 /* *INDENT-ON* */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400332 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700333 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400334 {
335 for (j = 0; j < tr->count; j++)
336 {
337 uword c = clib_bitmap_first_set (avail_cpu);
338 if (c == ~0)
339 return clib_error_return (0,
340 "no available cpus to be used for"
341 " the '%s' thread", tr->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700342
Dave Barach9b8ffd92016-07-08 08:13:45 -0400343 avail_cpu = clib_bitmap_set (avail_cpu, c, 0);
344 tr->coremask = clib_bitmap_set (tr->coremask, c, 1);
345 }
346 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700347 }
348
Dave Barach9b8ffd92016-07-08 08:13:45 -0400349 clib_bitmap_free (avail_cpu);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700350
351 tm->n_vlib_mains = n_vlib_mains;
352
Dave Barach2180bac2019-05-10 15:25:10 -0400353 /*
354 * Allocate the remaining worker threads, and thread stack vector slots
355 * from now on, calls to os_get_nthreads() will return the correct
356 * answer.
357 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400358 vec_validate_aligned (vlib_worker_threads, first_index - 1,
359 CLIB_CACHE_LINE_BYTES);
Dave Barach2180bac2019-05-10 15:25:10 -0400360 vec_validate (vlib_thread_stacks, vec_len (vlib_worker_threads) - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361 return 0;
362}
363
Dave Barach9b8ffd92016-07-08 08:13:45 -0400364vlib_frame_queue_t *
365vlib_frame_queue_alloc (int nelts)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700366{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400367 vlib_frame_queue_t *fq;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368
Dave Barach9b8ffd92016-07-08 08:13:45 -0400369 fq = clib_mem_alloc_aligned (sizeof (*fq), CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400370 clib_memset (fq, 0, sizeof (*fq));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700371 fq->nelts = nelts;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400372 fq->vector_threshold = 128; // packets
373 vec_validate_aligned (fq->elts, nelts - 1, CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700374
375 if (1)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400376 {
377 if (((uword) & fq->tail) & (CLIB_CACHE_LINE_BYTES - 1))
378 fformat (stderr, "WARNING: fq->tail unaligned\n");
379 if (((uword) & fq->head) & (CLIB_CACHE_LINE_BYTES - 1))
380 fformat (stderr, "WARNING: fq->head unaligned\n");
381 if (((uword) fq->elts) & (CLIB_CACHE_LINE_BYTES - 1))
382 fformat (stderr, "WARNING: fq->elts unaligned\n");
383
384 if (sizeof (fq->elts[0]) % CLIB_CACHE_LINE_BYTES)
385 fformat (stderr, "WARNING: fq->elts[0] size %d\n",
386 sizeof (fq->elts[0]));
387 if (nelts & (nelts - 1))
388 {
389 fformat (stderr, "FATAL: nelts MUST be a power of 2\n");
390 abort ();
391 }
392 }
393
Ed Warnickecb9cada2015-12-08 15:45:58 -0700394 return (fq);
395}
396
397void vl_msg_api_handler_no_free (void *) __attribute__ ((weak));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400398void
399vl_msg_api_handler_no_free (void *v)
400{
401}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402
403/* Turned off, save as reference material... */
404#if 0
Dave Barach9b8ffd92016-07-08 08:13:45 -0400405static inline int
406vlib_frame_queue_dequeue_internal (int thread_id,
407 vlib_main_t * vm, vlib_node_main_t * nm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700408{
409 vlib_frame_queue_t *fq = vlib_frame_queues[thread_id];
410 vlib_frame_queue_elt_t *elt;
411 vlib_frame_t *f;
412 vlib_pending_frame_t *p;
413 vlib_node_runtime_t *r;
414 u32 node_runtime_index;
415 int msg_type;
416 u64 before;
417 int processed = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400418
419 ASSERT (vm == vlib_mains[thread_id]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700420
421 while (1)
422 {
423 if (fq->head == fq->tail)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400424 return processed;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700425
Dave Barach9b8ffd92016-07-08 08:13:45 -0400426 elt = fq->elts + ((fq->head + 1) & (fq->nelts - 1));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700427
428 if (!elt->valid)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400429 return processed;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700430
Dave Barach9b8ffd92016-07-08 08:13:45 -0400431 before = clib_cpu_time_now ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700432
433 f = elt->frame;
434 node_runtime_index = elt->node_runtime_index;
435 msg_type = elt->msg_type;
436
437 switch (msg_type)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400438 {
439 case VLIB_FRAME_QUEUE_ELT_FREE_BUFFERS:
440 vlib_buffer_free (vm, vlib_frame_vector_args (f), f->n_vectors);
441 /* note fallthrough... */
442 case VLIB_FRAME_QUEUE_ELT_FREE_FRAME:
443 r = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
444 node_runtime_index);
445 vlib_frame_free (vm, r, f);
446 break;
447 case VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME:
448 vec_add2 (vm->node_main.pending_frames, p, 1);
449 f->flags |= (VLIB_FRAME_PENDING | VLIB_FRAME_FREE_AFTER_DISPATCH);
450 p->node_runtime_index = elt->node_runtime_index;
451 p->frame_index = vlib_frame_index (vm, f);
452 p->next_frame_index = VLIB_PENDING_FRAME_NO_NEXT_FRAME;
453 fq->dequeue_vectors += (u64) f->n_vectors;
454 break;
455 case VLIB_FRAME_QUEUE_ELT_API_MSG:
456 vl_msg_api_handler_no_free (f);
457 break;
458 default:
459 clib_warning ("bogus frame queue message, type %d", msg_type);
460 break;
461 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462 elt->valid = 0;
463 fq->dequeues++;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400464 fq->dequeue_ticks += clib_cpu_time_now () - before;
465 CLIB_MEMORY_BARRIER ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700466 fq->head++;
467 processed++;
468 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400469 ASSERT (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700470 return processed;
471}
472
Dave Barach9b8ffd92016-07-08 08:13:45 -0400473int
474vlib_frame_queue_dequeue (int thread_id,
475 vlib_main_t * vm, vlib_node_main_t * nm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700476{
477 return vlib_frame_queue_dequeue_internal (thread_id, vm, nm);
478}
479
Dave Barach9b8ffd92016-07-08 08:13:45 -0400480int
481vlib_frame_queue_enqueue (vlib_main_t * vm, u32 node_runtime_index,
482 u32 frame_queue_index, vlib_frame_t * frame,
483 vlib_frame_queue_msg_type_t type)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700484{
485 vlib_frame_queue_t *fq = vlib_frame_queues[frame_queue_index];
486 vlib_frame_queue_elt_t *elt;
487 u32 save_count;
488 u64 new_tail;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400489 u64 before = clib_cpu_time_now ();
490
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491 ASSERT (fq);
492
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000493 new_tail = clib_atomic_add_fetch (&fq->tail, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700494
495 /* Wait until a ring slot is available */
496 while (new_tail >= fq->head + fq->nelts)
497 {
498 f64 b4 = vlib_time_now_ticks (vm, before);
499 vlib_worker_thread_barrier_check (vm, b4);
500 /* Bad idea. Dequeue -> enqueue -> dequeue -> trouble */
Damjan Marion586afd72017-04-05 19:18:20 +0200501 // vlib_frame_queue_dequeue (vm->thread_index, vm, nm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700502 }
503
Dave Barach9b8ffd92016-07-08 08:13:45 -0400504 elt = fq->elts + (new_tail & (fq->nelts - 1));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700505
506 /* this would be very bad... */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400507 while (elt->valid)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700508 {
509 }
510
511 /* Once we enqueue the frame, frame->n_vectors is owned elsewhere... */
512 save_count = frame->n_vectors;
513
514 elt->frame = frame;
515 elt->node_runtime_index = node_runtime_index;
516 elt->msg_type = type;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400517 CLIB_MEMORY_BARRIER ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700518 elt->valid = 1;
519
520 return save_count;
521}
522#endif /* 0 */
523
524/* To be called by vlib worker threads upon startup */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400525void
526vlib_worker_thread_init (vlib_worker_thread_t * w)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700527{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400528 vlib_thread_main_t *tm = vlib_get_thread_main ();
529
Dave Barachfdf49442016-12-20 12:48:14 -0500530 /*
531 * Note: disabling signals in worker threads as follows
532 * prevents the api post-mortem dump scheme from working
533 * {
534 * sigset_t s;
535 * sigfillset (&s);
536 * pthread_sigmask (SIG_SETMASK, &s, 0);
537 * }
538 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539
540 clib_mem_set_heap (w->thread_mheap);
541
Dave Barach9b8ffd92016-07-08 08:13:45 -0400542 if (vec_len (tm->thread_prefix) && w->registration->short_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700543 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400544 w->name = format (0, "%v_%s_%d%c", tm->thread_prefix,
545 w->registration->short_name, w->instance_id, '\0');
546 vlib_set_thread_name ((char *) w->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547 }
548
549 if (!w->registration->use_pthreads)
550 {
551
552 /* Initial barrier sync, for both worker and i/o threads */
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000553 clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700554
555 while (*vlib_worker_threads->wait_at_barrier)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400556 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700557
Sirshak Das2f6d7bb2018-10-03 22:53:51 +0000558 clib_atomic_fetch_add (vlib_worker_threads->workers_at_barrier, -1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700559 }
560}
561
Dave Barach9b8ffd92016-07-08 08:13:45 -0400562void *
563vlib_worker_thread_bootstrap_fn (void *arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700564{
565 void *rv;
566 vlib_worker_thread_t *w = arg;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400567
568 w->lwp = syscall (SYS_gettid);
Pavel Kotucek98765202016-10-07 08:37:28 +0200569 w->thread_id = pthread_self ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570
Damjan Marionf55f9b82017-05-10 21:06:28 +0200571 __os_thread_index = w - vlib_worker_threads;
Damjan Marion586afd72017-04-05 19:18:20 +0200572
Dave Barach9b8ffd92016-07-08 08:13:45 -0400573 rv = (void *) clib_calljmp
574 ((uword (*)(uword)) w->thread_function,
575 (uword) arg, w->thread_stack + VLIB_THREAD_STACK_SIZE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700576 /* NOTREACHED, we hope */
577 return rv;
578}
579
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200580static void
581vlib_get_thread_core_socket (vlib_worker_thread_t * w, unsigned cpu_id)
582{
583 const char *sys_cpu_path = "/sys/devices/system/cpu/cpu";
584 u8 *p = 0;
585 int core_id = -1, socket_id = -1;
586
587 p = format (p, "%s%u/topology/core_id%c", sys_cpu_path, cpu_id, 0);
588 clib_sysfs_read ((char *) p, "%d", &core_id);
589 vec_reset_length (p);
590 p =
591 format (p, "%s%u/topology/physical_package_id%c", sys_cpu_path, cpu_id,
592 0);
593 clib_sysfs_read ((char *) p, "%d", &socket_id);
594 vec_free (p);
595
596 w->core_id = core_id;
597 w->socket_id = socket_id;
598}
599
Damjan Marion878c6092017-01-04 13:19:27 +0100600static clib_error_t *
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200601vlib_launch_thread_int (void *fp, vlib_worker_thread_t * w, unsigned cpu_id)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700602{
Damjan Marion878c6092017-01-04 13:19:27 +0100603 vlib_thread_main_t *tm = &vlib_thread_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400604 void *(*fp_arg) (void *) = fp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700605
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200606 w->cpu_id = cpu_id;
607 vlib_get_thread_core_socket (w, cpu_id);
Damjan Marion878c6092017-01-04 13:19:27 +0100608 if (tm->cb.vlib_launch_thread_cb && !w->registration->use_pthreads)
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200609 return tm->cb.vlib_launch_thread_cb (fp, (void *) w, cpu_id);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700610 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400611 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400612 pthread_t worker;
613 cpu_set_t cpuset;
614 CPU_ZERO (&cpuset);
Mohsin Kazmi5d64c782018-09-11 20:27:09 +0200615 CPU_SET (cpu_id, &cpuset);
Christophe Fontainefef15b42016-04-09 12:38:49 +0900616
Damjan Marion878c6092017-01-04 13:19:27 +0100617 if (pthread_create (&worker, NULL /* attr */ , fp_arg, (void *) w))
618 return clib_error_return_unix (0, "pthread_create");
619
620 if (pthread_setaffinity_np (worker, sizeof (cpu_set_t), &cpuset))
621 return clib_error_return_unix (0, "pthread_setaffinity_np");
622
623 return 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400624 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700625}
626
Dave Barach9b8ffd92016-07-08 08:13:45 -0400627static clib_error_t *
628start_workers (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700629{
630 int i, j;
631 vlib_worker_thread_t *w;
632 vlib_main_t *vm_clone;
633 void *oldheap;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400634 vlib_thread_main_t *tm = &vlib_thread_main;
635 vlib_thread_registration_t *tr;
636 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700637 u32 n_vlib_mains = tm->n_vlib_mains;
638 u32 worker_thread_index;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400639 u8 *main_heap = clib_mem_get_per_cpu_heap ();
Dave Barach9b8ffd92016-07-08 08:13:45 -0400640
Ed Warnickecb9cada2015-12-08 15:45:58 -0700641 vec_reset_length (vlib_worker_threads);
642
643 /* Set up the main thread */
644 vec_add2_aligned (vlib_worker_threads, w, 1, CLIB_CACHE_LINE_BYTES);
Dave Barach3e7deb12016-02-05 16:29:53 -0500645 w->elog_track.name = "main thread";
Ed Warnickecb9cada2015-12-08 15:45:58 -0700646 elog_track_register (&vm->elog_main, &w->elog_track);
647
Dave Barach9b8ffd92016-07-08 08:13:45 -0400648 if (vec_len (tm->thread_prefix))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700649 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400650 w->name = format (0, "%v_main%c", tm->thread_prefix, '\0');
651 vlib_set_thread_name ((char *) w->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700652 }
653
Dave Barach9b8ffd92016-07-08 08:13:45 -0400654 vm->elog_main.lock =
655 clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES, CLIB_CACHE_LINE_BYTES);
Dave Barach848191d2016-04-28 16:24:15 -0400656 vm->elog_main.lock[0] = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400657
Ed Warnickecb9cada2015-12-08 15:45:58 -0700658 if (n_vlib_mains > 1)
659 {
Dave Barach80f54e22017-03-08 19:08:56 -0500660 /* Replace hand-crafted length-1 vector with a real vector */
661 vlib_mains = 0;
662
663 vec_validate_aligned (vlib_mains, tm->n_vlib_mains - 1,
664 CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700665 _vec_len (vlib_mains) = 0;
Dave Barach80f54e22017-03-08 19:08:56 -0500666 vec_add1_aligned (vlib_mains, vm, CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700667
Dave Barach9b8ffd92016-07-08 08:13:45 -0400668 vlib_worker_threads->wait_at_barrier =
669 clib_mem_alloc_aligned (sizeof (u32), CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700670 vlib_worker_threads->workers_at_barrier =
Dave Barach9b8ffd92016-07-08 08:13:45 -0400671 clib_mem_alloc_aligned (sizeof (u32), CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700672
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100673 vlib_worker_threads->node_reforks_required =
674 clib_mem_alloc_aligned (sizeof (u32), CLIB_CACHE_LINE_BYTES);
675
Dave Barachf6c68d72018-11-01 08:12:52 -0400676 /* We'll need the rpc vector lock... */
677 clib_spinlock_init (&vm->pending_rpc_lock);
678
Ed Warnickecb9cada2015-12-08 15:45:58 -0700679 /* Ask for an initial barrier sync */
680 *vlib_worker_threads->workers_at_barrier = 0;
681 *vlib_worker_threads->wait_at_barrier = 1;
682
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100683 /* Without update or refork */
684 *vlib_worker_threads->node_reforks_required = 0;
685 vm->need_vlib_worker_thread_node_runtime_update = 0;
686
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100687 /* init timing */
688 vm->barrier_epoch = 0;
689 vm->barrier_no_close_before = 0;
690
Ed Warnickecb9cada2015-12-08 15:45:58 -0700691 worker_thread_index = 1;
692
Dave Barach9b8ffd92016-07-08 08:13:45 -0400693 for (i = 0; i < vec_len (tm->registrations); i++)
694 {
695 vlib_node_main_t *nm, *nm_clone;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400696 int k;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700697
Dave Barach9b8ffd92016-07-08 08:13:45 -0400698 tr = tm->registrations[i];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700699
Dave Barach9b8ffd92016-07-08 08:13:45 -0400700 if (tr->count == 0)
701 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700702
Dave Barach9b8ffd92016-07-08 08:13:45 -0400703 for (k = 0; k < tr->count; k++)
704 {
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100705 vlib_node_t *n;
706
Dave Barach9b8ffd92016-07-08 08:13:45 -0400707 vec_add2 (vlib_worker_threads, w, 1);
Dave Barach6a5adc32018-07-04 10:56:23 -0400708 /* Currently unused, may not really work */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400709 if (tr->mheap_size)
Dave Barach6a5adc32018-07-04 10:56:23 -0400710 {
711#if USE_DLMALLOC == 0
712 w->thread_mheap =
713 mheap_alloc (0 /* use VM */ , tr->mheap_size);
714#else
715 w->thread_mheap = create_mspace (tr->mheap_size,
716 0 /* unlocked */ );
717#endif
718 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400719 else
720 w->thread_mheap = main_heap;
Damjan Marion586afd72017-04-05 19:18:20 +0200721
722 w->thread_stack =
723 vlib_thread_stack_init (w - vlib_worker_threads);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400724 w->thread_function = tr->function;
725 w->thread_function_arg = w;
726 w->instance_id = k;
727 w->registration = tr;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700728
Dave Barach9b8ffd92016-07-08 08:13:45 -0400729 w->elog_track.name =
730 (char *) format (0, "%s %d", tr->name, k + 1);
731 vec_add1 (w->elog_track.name, 0);
732 elog_track_register (&vm->elog_main, &w->elog_track);
Bud Grise68adab92016-02-12 10:36:11 -0500733
Dave Barach9b8ffd92016-07-08 08:13:45 -0400734 if (tr->no_data_structure_clone)
735 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700736
Dave Barach9b8ffd92016-07-08 08:13:45 -0400737 /* Fork vlib_global_main et al. Look for bugs here */
738 oldheap = clib_mem_set_heap (w->thread_mheap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700739
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200740 vm_clone = clib_mem_alloc_aligned (sizeof (*vm_clone),
741 CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400742 clib_memcpy (vm_clone, vlib_mains[0], sizeof (*vm_clone));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700743
Damjan Marion586afd72017-04-05 19:18:20 +0200744 vm_clone->thread_index = worker_thread_index;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400745 vm_clone->heap_base = w->thread_mheap;
Dave Barach6a5adc32018-07-04 10:56:23 -0400746 vm_clone->heap_aligned_base = (void *)
747 (((uword) w->thread_mheap) & ~(VLIB_FRAME_ALIGN - 1));
Damjan Marione9f929b2017-03-16 11:32:09 +0100748 vm_clone->init_functions_called =
749 hash_create (0, /* value bytes */ 0);
Dave Barach2877eee2017-12-15 12:22:57 -0500750 vm_clone->pending_rpc_requests = 0;
751 vec_validate (vm_clone->pending_rpc_requests, 0);
752 _vec_len (vm_clone->pending_rpc_requests) = 0;
Dave Barachb7b92992018-10-17 10:38:51 -0400753 clib_memset (&vm_clone->random_buffer, 0,
754 sizeof (vm_clone->random_buffer));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700755
Dave Barach9b8ffd92016-07-08 08:13:45 -0400756 nm = &vlib_mains[0]->node_main;
757 nm_clone = &vm_clone->node_main;
758 /* fork next frames array, preserving node runtime indices */
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200759 nm_clone->next_frames = vec_dup_aligned (nm->next_frames,
760 CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400761 for (j = 0; j < vec_len (nm_clone->next_frames); j++)
762 {
763 vlib_next_frame_t *nf = &nm_clone->next_frames[j];
764 u32 save_node_runtime_index;
765 u32 save_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700766
Dave Barach9b8ffd92016-07-08 08:13:45 -0400767 save_node_runtime_index = nf->node_runtime_index;
768 save_flags = nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH;
769 vlib_next_frame_init (nf);
770 nf->node_runtime_index = save_node_runtime_index;
771 nf->flags = save_flags;
772 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700773
Dave Barach9b8ffd92016-07-08 08:13:45 -0400774 /* fork the frame dispatch queue */
775 nm_clone->pending_frames = 0;
Dave Barach53fe4a72019-01-26 09:50:26 -0500776 vec_validate (nm_clone->pending_frames, 10);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400777 _vec_len (nm_clone->pending_frames) = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700778
Dave Barach9b8ffd92016-07-08 08:13:45 -0400779 /* fork nodes */
780 nm_clone->nodes = 0;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100781
782 /* Allocate all nodes in single block for speed */
783 n = clib_mem_alloc_no_fail (vec_len (nm->nodes) * sizeof (*n));
784
Dave Barach9b8ffd92016-07-08 08:13:45 -0400785 for (j = 0; j < vec_len (nm->nodes); j++)
786 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400787 clib_memcpy (n, nm->nodes[j], sizeof (*n));
788 /* none of the copied nodes have enqueue rights given out */
789 n->owner_node_index = VLIB_INVALID_NODE_INDEX;
Dave Barachb7b92992018-10-17 10:38:51 -0400790 clib_memset (&n->stats_total, 0, sizeof (n->stats_total));
791 clib_memset (&n->stats_last_clear, 0,
792 sizeof (n->stats_last_clear));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400793 vec_add1 (nm_clone->nodes, n);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100794 n++;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400795 }
796 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200797 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
798 CLIB_CACHE_LINE_BYTES);
JingLiuZTE30af5da2017-07-24 10:53:31 +0800799 vec_foreach (rt,
800 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL])
Damjan Marione9f929b2017-03-16 11:32:09 +0100801 {
802 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
Damjan Marion586afd72017-04-05 19:18:20 +0200803 rt->thread_index = vm_clone->thread_index;
Damjan Marione9f929b2017-03-16 11:32:09 +0100804 /* copy initial runtime_data from node */
Damjan Marionb6f93a12017-03-16 17:46:41 +0100805 if (n->runtime_data && n->runtime_data_bytes > 0)
Damjan Marione9f929b2017-03-16 11:32:09 +0100806 clib_memcpy (rt->runtime_data, n->runtime_data,
Damjan Marionb6f93a12017-03-16 17:46:41 +0100807 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
808 n->runtime_data_bytes));
Damjan Marione9f929b2017-03-16 11:32:09 +0100809 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700810
Dave Barach9b8ffd92016-07-08 08:13:45 -0400811 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200812 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
813 CLIB_CACHE_LINE_BYTES);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400814 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT])
Damjan Marione9f929b2017-03-16 11:32:09 +0100815 {
816 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
Damjan Marion586afd72017-04-05 19:18:20 +0200817 rt->thread_index = vm_clone->thread_index;
Damjan Marione9f929b2017-03-16 11:32:09 +0100818 /* copy initial runtime_data from node */
Damjan Marionb6f93a12017-03-16 17:46:41 +0100819 if (n->runtime_data && n->runtime_data_bytes > 0)
Damjan Marione9f929b2017-03-16 11:32:09 +0100820 clib_memcpy (rt->runtime_data, n->runtime_data,
Damjan Marionb6f93a12017-03-16 17:46:41 +0100821 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
822 n->runtime_data_bytes));
Damjan Marione9f929b2017-03-16 11:32:09 +0100823 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700824
Dave Barach53fe4a72019-01-26 09:50:26 -0500825 nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT] =
826 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT],
827 CLIB_CACHE_LINE_BYTES);
828 vec_foreach (rt,
829 nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT])
830 {
831 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
832 rt->thread_index = vm_clone->thread_index;
833 /* copy initial runtime_data from node */
834 if (n->runtime_data && n->runtime_data_bytes > 0)
835 clib_memcpy (rt->runtime_data, n->runtime_data,
836 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
837 n->runtime_data_bytes));
838 }
839
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200840 nm_clone->processes = vec_dup_aligned (nm->processes,
841 CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700842
Dave Barach593eedf2019-03-10 09:44:51 -0400843 /* Create per-thread frame freelist */
844 nm_clone->frame_sizes = vec_new (vlib_frame_size_t, 1);
845#ifdef VLIB_SUPPORTS_ARBITRARY_SCALAR_SIZES
Florin Coras93992a92017-05-24 18:03:56 -0700846 nm_clone->frame_size_hash = hash_create (0, sizeof (uword));
Dave Barach593eedf2019-03-10 09:44:51 -0400847#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700848
Dave Barach9b8ffd92016-07-08 08:13:45 -0400849 /* Packet trace buffers are guaranteed to be empty, nothing to do here */
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100850
Dave Barach9b8ffd92016-07-08 08:13:45 -0400851 clib_mem_set_heap (oldheap);
Dave Barach80f54e22017-03-08 19:08:56 -0500852 vec_add1_aligned (vlib_mains, vm_clone, CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700853
Ole Troan233e4682019-05-16 15:01:34 +0200854 /* Switch to the stats segment ... */
855 void *oldheap = vlib_stats_push_heap (0);
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200856 vm_clone->error_main.counters = vec_dup_aligned
857 (vlib_mains[0]->error_main.counters, CLIB_CACHE_LINE_BYTES);
Ole Troan233e4682019-05-16 15:01:34 +0200858 vlib_stats_pop_heap2 (vm_clone->error_main.counters,
859 worker_thread_index, oldheap, 1);
860
Damjan Marionbe3f4d52018-03-27 21:06:10 +0200861 vm_clone->error_main.counters_last_clear = vec_dup_aligned
862 (vlib_mains[0]->error_main.counters_last_clear,
863 CLIB_CACHE_LINE_BYTES);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700864
Dave Barach9b8ffd92016-07-08 08:13:45 -0400865 worker_thread_index++;
866 }
867 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700868 }
869 else
870 {
871 /* only have non-data-structure copy threads to create... */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400872 for (i = 0; i < vec_len (tm->registrations); i++)
873 {
874 tr = tm->registrations[i];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700875
Dave Barach9b8ffd92016-07-08 08:13:45 -0400876 for (j = 0; j < tr->count; j++)
877 {
878 vec_add2 (vlib_worker_threads, w, 1);
879 if (tr->mheap_size)
Dave Barach6a5adc32018-07-04 10:56:23 -0400880 {
881#if USE_DLMALLOC == 0
882 w->thread_mheap =
883 mheap_alloc (0 /* use VM */ , tr->mheap_size);
884#else
885 w->thread_mheap =
886 create_mspace (tr->mheap_size, 0 /* locked */ );
887#endif
888 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400889 else
890 w->thread_mheap = main_heap;
Damjan Marion586afd72017-04-05 19:18:20 +0200891 w->thread_stack =
892 vlib_thread_stack_init (w - vlib_worker_threads);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400893 w->thread_function = tr->function;
894 w->thread_function_arg = w;
895 w->instance_id = j;
896 w->elog_track.name =
897 (char *) format (0, "%s %d", tr->name, j + 1);
898 w->registration = tr;
899 vec_add1 (w->elog_track.name, 0);
900 elog_track_register (&vm->elog_main, &w->elog_track);
901 }
902 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700903 }
904
905 worker_thread_index = 1;
906
907 for (i = 0; i < vec_len (tm->registrations); i++)
908 {
Damjan Marion878c6092017-01-04 13:19:27 +0100909 clib_error_t *err;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700910 int j;
911
912 tr = tm->registrations[i];
913
914 if (tr->use_pthreads || tm->use_pthreads)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400915 {
916 for (j = 0; j < tr->count; j++)
917 {
918 w = vlib_worker_threads + worker_thread_index++;
Damjan Marion878c6092017-01-04 13:19:27 +0100919 err = vlib_launch_thread_int (vlib_worker_thread_bootstrap_fn,
920 w, 0);
921 if (err)
922 clib_error_report (err);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400923 }
924 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700925 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400926 {
927 uword c;
Damjan Marion878c6092017-01-04 13:19:27 +0100928 /* *INDENT-OFF* */
929 clib_bitmap_foreach (c, tr->coremask, ({
930 w = vlib_worker_threads + worker_thread_index++;
931 err = vlib_launch_thread_int (vlib_worker_thread_bootstrap_fn,
932 w, c);
933 if (err)
934 clib_error_report (err);
935 }));
936 /* *INDENT-ON* */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400937 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700938 }
Dave Barach9b8ffd92016-07-08 08:13:45 -0400939 vlib_worker_thread_barrier_sync (vm);
940 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700941 return 0;
942}
943
944VLIB_MAIN_LOOP_ENTER_FUNCTION (start_workers);
945
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100946
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100947static inline void
948worker_thread_node_runtime_update_internal (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700949{
950 int i, j;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700951 vlib_main_t *vm;
952 vlib_node_main_t *nm, *nm_clone;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700953 vlib_main_t *vm_clone;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100954 vlib_node_runtime_t *rt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700955 never_inline void
956 vlib_node_runtime_sync_stats (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400957 vlib_node_runtime_t * r,
958 uword n_calls,
959 uword n_vectors, uword n_clocks);
960
Damjan Marion586afd72017-04-05 19:18:20 +0200961 ASSERT (vlib_get_thread_index () == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700962
Ed Warnickecb9cada2015-12-08 15:45:58 -0700963 vm = vlib_mains[0];
964 nm = &vm->node_main;
965
Ed Warnickecb9cada2015-12-08 15:45:58 -0700966 ASSERT (*vlib_worker_threads->wait_at_barrier == 1);
967
Dave Barach9b8ffd92016-07-08 08:13:45 -0400968 /*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700969 * Scrape all runtime stats, so we don't lose node runtime(s) with
970 * pending counts, or throw away worker / io thread counts.
971 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400972 for (j = 0; j < vec_len (nm->nodes); j++)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700973 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400974 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700975 n = nm->nodes[j];
976 vlib_node_sync_stats (vm, n);
977 }
978
979 for (i = 1; i < vec_len (vlib_mains); i++)
980 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400981 vlib_node_t *n;
982
Ed Warnickecb9cada2015-12-08 15:45:58 -0700983 vm_clone = vlib_mains[i];
984 nm_clone = &vm_clone->node_main;
985
Dave Barach9b8ffd92016-07-08 08:13:45 -0400986 for (j = 0; j < vec_len (nm_clone->nodes); j++)
987 {
988 n = nm_clone->nodes[j];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700989
Dave Barach9b8ffd92016-07-08 08:13:45 -0400990 rt = vlib_node_get_runtime (vm_clone, n->index);
991 vlib_node_runtime_sync_stats (vm_clone, rt, 0, 0, 0);
992 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700993 }
994
Colin Tregenza Dancer21596182017-09-04 15:27:49 +0100995 /* Per-worker clone rebuilds are now done on each thread */
996}
997
998
999void
1000vlib_worker_thread_node_refork (void)
1001{
1002 vlib_main_t *vm, *vm_clone;
1003 vlib_node_main_t *nm, *nm_clone;
1004 vlib_node_t **old_nodes_clone;
1005 vlib_node_runtime_t *rt, *old_rt;
1006
1007 vlib_node_t *new_n_clone;
1008
1009 int j;
1010
1011 vm = vlib_mains[0];
1012 nm = &vm->node_main;
1013 vm_clone = vlib_get_main ();
1014 nm_clone = &vm_clone->node_main;
1015
1016 /* Re-clone error heap */
1017 u64 *old_counters = vm_clone->error_main.counters;
1018 u64 *old_counters_all_clear = vm_clone->error_main.counters_last_clear;
1019
Dave Barach178cf492018-11-13 16:34:13 -05001020 clib_memcpy_fast (&vm_clone->error_main, &vm->error_main,
1021 sizeof (vm->error_main));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001022 j = vec_len (vm->error_main.counters) - 1;
Ole Troan233e4682019-05-16 15:01:34 +02001023
1024 /* Switch to the stats segment ... */
1025 void *oldheap = vlib_stats_push_heap (0);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001026 vec_validate_aligned (old_counters, j, CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001027 vm_clone->error_main.counters = old_counters;
Ole Troan233e4682019-05-16 15:01:34 +02001028 vlib_stats_pop_heap2 (vm_clone->error_main.counters, vm_clone->thread_index,
1029 oldheap, 0);
1030
1031 vec_validate_aligned (old_counters_all_clear, j, CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001032 vm_clone->error_main.counters_last_clear = old_counters_all_clear;
1033
1034 nm_clone = &vm_clone->node_main;
1035 vec_free (nm_clone->next_frames);
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001036 nm_clone->next_frames = vec_dup_aligned (nm->next_frames,
1037 CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001038
1039 for (j = 0; j < vec_len (nm_clone->next_frames); j++)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001040 {
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001041 vlib_next_frame_t *nf = &nm_clone->next_frames[j];
1042 u32 save_node_runtime_index;
1043 u32 save_flags;
Damjan Marionbc20bdf2015-12-17 14:28:18 +01001044
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001045 save_node_runtime_index = nf->node_runtime_index;
1046 save_flags = nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH;
1047 vlib_next_frame_init (nf);
1048 nf->node_runtime_index = save_node_runtime_index;
1049 nf->flags = save_flags;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001050 }
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001051
1052 old_nodes_clone = nm_clone->nodes;
1053 nm_clone->nodes = 0;
1054
1055 /* re-fork nodes */
1056
1057 /* Allocate all nodes in single block for speed */
1058 new_n_clone =
1059 clib_mem_alloc_no_fail (vec_len (nm->nodes) * sizeof (*new_n_clone));
1060 for (j = 0; j < vec_len (nm->nodes); j++)
1061 {
1062 vlib_node_t *old_n_clone;
1063 vlib_node_t *new_n;
1064
1065 new_n = nm->nodes[j];
1066 old_n_clone = old_nodes_clone[j];
1067
Dave Barach178cf492018-11-13 16:34:13 -05001068 clib_memcpy_fast (new_n_clone, new_n, sizeof (*new_n));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001069 /* none of the copied nodes have enqueue rights given out */
1070 new_n_clone->owner_node_index = VLIB_INVALID_NODE_INDEX;
1071
1072 if (j >= vec_len (old_nodes_clone))
1073 {
1074 /* new node, set to zero */
Dave Barachb7b92992018-10-17 10:38:51 -04001075 clib_memset (&new_n_clone->stats_total, 0,
1076 sizeof (new_n_clone->stats_total));
1077 clib_memset (&new_n_clone->stats_last_clear, 0,
1078 sizeof (new_n_clone->stats_last_clear));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001079 }
1080 else
1081 {
1082 /* Copy stats if the old data is valid */
Dave Barach178cf492018-11-13 16:34:13 -05001083 clib_memcpy_fast (&new_n_clone->stats_total,
1084 &old_n_clone->stats_total,
1085 sizeof (new_n_clone->stats_total));
1086 clib_memcpy_fast (&new_n_clone->stats_last_clear,
1087 &old_n_clone->stats_last_clear,
1088 sizeof (new_n_clone->stats_last_clear));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001089
1090 /* keep previous node state */
1091 new_n_clone->state = old_n_clone->state;
1092 }
1093 vec_add1 (nm_clone->nodes, new_n_clone);
1094 new_n_clone++;
1095 }
1096 /* Free the old node clones */
1097 clib_mem_free (old_nodes_clone[0]);
1098
1099 vec_free (old_nodes_clone);
1100
1101
1102 /* re-clone internal nodes */
1103 old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL];
1104 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001105 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
1106 CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001107
1108 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INTERNAL])
1109 {
1110 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1111 rt->thread_index = vm_clone->thread_index;
1112 /* copy runtime_data, will be overwritten later for existing rt */
1113 if (n->runtime_data && n->runtime_data_bytes > 0)
Dave Barach178cf492018-11-13 16:34:13 -05001114 clib_memcpy_fast (rt->runtime_data, n->runtime_data,
1115 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1116 n->runtime_data_bytes));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001117 }
1118
1119 for (j = 0; j < vec_len (old_rt); j++)
1120 {
1121 rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1122 rt->state = old_rt[j].state;
Dave Barach178cf492018-11-13 16:34:13 -05001123 clib_memcpy_fast (rt->runtime_data, old_rt[j].runtime_data,
1124 VLIB_NODE_RUNTIME_DATA_SIZE);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001125 }
1126
1127 vec_free (old_rt);
1128
1129 /* re-clone input nodes */
1130 old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT];
1131 nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT] =
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001132 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
1133 CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001134
1135 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_INPUT])
1136 {
1137 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1138 rt->thread_index = vm_clone->thread_index;
1139 /* copy runtime_data, will be overwritten later for existing rt */
1140 if (n->runtime_data && n->runtime_data_bytes > 0)
Dave Barach178cf492018-11-13 16:34:13 -05001141 clib_memcpy_fast (rt->runtime_data, n->runtime_data,
1142 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1143 n->runtime_data_bytes));
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001144 }
1145
1146 for (j = 0; j < vec_len (old_rt); j++)
1147 {
1148 rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1149 rt->state = old_rt[j].state;
Dave Barach178cf492018-11-13 16:34:13 -05001150 clib_memcpy_fast (rt->runtime_data, old_rt[j].runtime_data,
1151 VLIB_NODE_RUNTIME_DATA_SIZE);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001152 }
1153
1154 vec_free (old_rt);
1155
Dave Barach53fe4a72019-01-26 09:50:26 -05001156 /* re-clone pre-input nodes */
1157 old_rt = nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT];
1158 nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT] =
1159 vec_dup_aligned (nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT],
1160 CLIB_CACHE_LINE_BYTES);
1161
1162 vec_foreach (rt, nm_clone->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT])
1163 {
1164 vlib_node_t *n = vlib_get_node (vm, rt->node_index);
1165 rt->thread_index = vm_clone->thread_index;
1166 /* copy runtime_data, will be overwritten later for existing rt */
1167 if (n->runtime_data && n->runtime_data_bytes > 0)
1168 clib_memcpy_fast (rt->runtime_data, n->runtime_data,
1169 clib_min (VLIB_NODE_RUNTIME_DATA_SIZE,
1170 n->runtime_data_bytes));
1171 }
1172
1173 for (j = 0; j < vec_len (old_rt); j++)
1174 {
1175 rt = vlib_node_get_runtime (vm_clone, old_rt[j].node_index);
1176 rt->state = old_rt[j].state;
1177 clib_memcpy_fast (rt->runtime_data, old_rt[j].runtime_data,
1178 VLIB_NODE_RUNTIME_DATA_SIZE);
1179 }
1180
1181 vec_free (old_rt);
1182
Damjan Marionbe3f4d52018-03-27 21:06:10 +02001183 nm_clone->processes = vec_dup_aligned (nm->processes,
1184 CLIB_CACHE_LINE_BYTES);
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001185}
1186
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001187void
1188vlib_worker_thread_node_runtime_update (void)
1189{
1190 /*
1191 * Make a note that we need to do a node runtime update
1192 * prior to releasing the barrier.
1193 */
1194 vlib_global_main.need_vlib_worker_thread_node_runtime_update = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001195}
1196
Pavel Kotucek1e765832016-09-23 08:54:14 +02001197u32
1198unformat_sched_policy (unformat_input_t * input, va_list * args)
1199{
1200 u32 *r = va_arg (*args, u32 *);
1201
1202 if (0);
1203#define _(v,f,s) else if (unformat (input, s)) *r = SCHED_POLICY_##f;
1204 foreach_sched_policy
1205#undef _
1206 else
1207 return 0;
1208 return 1;
1209}
1210
Ed Warnickecb9cada2015-12-08 15:45:58 -07001211static clib_error_t *
1212cpu_config (vlib_main_t * vm, unformat_input_t * input)
1213{
1214 vlib_thread_registration_t *tr;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001215 uword *p;
1216 vlib_thread_main_t *tm = &vlib_thread_main;
1217 u8 *name;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001218 uword *bitmap;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001219 u32 count;
1220
1221 tm->thread_registrations_by_name = hash_create_string (0, sizeof (uword));
Pavel Kotucek1e765832016-09-23 08:54:14 +02001222
Dave Barach9b8ffd92016-07-08 08:13:45 -04001223 tm->n_thread_stacks = 1; /* account for main thread */
Pavel Kotucek1e765832016-09-23 08:54:14 +02001224 tm->sched_policy = ~0;
1225 tm->sched_priority = ~0;
Damjan Marion858151f2018-07-11 10:51:00 +02001226 tm->main_lcore = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001227
1228 tr = tm->next;
1229
1230 while (tr)
1231 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001232 hash_set_mem (tm->thread_registrations_by_name, tr->name, (uword) tr);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001233 tr = tr->next;
1234 }
1235
Dave Barach9b8ffd92016-07-08 08:13:45 -04001236 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001237 {
Damjan Marionbf741472016-06-13 22:49:44 +02001238 if (unformat (input, "use-pthreads"))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001239 tm->use_pthreads = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001240 else if (unformat (input, "thread-prefix %v", &tm->thread_prefix))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001241 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001242 else if (unformat (input, "main-core %u", &tm->main_lcore))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001243 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001244 else if (unformat (input, "skip-cores %u", &tm->skip_cores))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001245 ;
Yi Hee4a9eb72018-07-17 14:18:41 +08001246 else if (unformat (input, "coremask-%s %U", &name,
1247 unformat_bitmap_mask, &bitmap) ||
1248 unformat (input, "corelist-%s %U", &name,
1249 unformat_bitmap_list, &bitmap))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001250 {
1251 p = hash_get_mem (tm->thread_registrations_by_name, name);
1252 if (p == 0)
1253 return clib_error_return (0, "no such thread type '%s'", name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001254
Dave Barach9b8ffd92016-07-08 08:13:45 -04001255 tr = (vlib_thread_registration_t *) p[0];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001256
Dave Barach9b8ffd92016-07-08 08:13:45 -04001257 if (tr->use_pthreads)
1258 return clib_error_return (0,
1259 "corelist cannot be set for '%s' threads",
1260 name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001261
Dave Barach9b8ffd92016-07-08 08:13:45 -04001262 tr->coremask = bitmap;
1263 tr->count = clib_bitmap_count_set_bits (tr->coremask);
1264 }
Pavel Kotucek1e765832016-09-23 08:54:14 +02001265 else
1266 if (unformat
1267 (input, "scheduler-policy %U", unformat_sched_policy,
1268 &tm->sched_policy))
1269 ;
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001270 else if (unformat (input, "scheduler-priority %u", &tm->sched_priority))
Pavel Kotucek1e765832016-09-23 08:54:14 +02001271 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001272 else if (unformat (input, "%s %u", &name, &count))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001273 {
1274 p = hash_get_mem (tm->thread_registrations_by_name, name);
1275 if (p == 0)
Pavel Kotucek1e765832016-09-23 08:54:14 +02001276 return clib_error_return (0, "no such thread type 3 '%s'", name);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001277
1278 tr = (vlib_thread_registration_t *) p[0];
1279 if (tr->fixed_count)
1280 return clib_error_return
1281 (0, "number of %s threads not configurable", tr->name);
1282 tr->count = count;
1283 }
1284 else
1285 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001286 }
1287
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001288 if (tm->sched_priority != ~0)
Pavel Kotucek1e765832016-09-23 08:54:14 +02001289 {
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001290 if (tm->sched_policy == SCHED_FIFO || tm->sched_policy == SCHED_RR)
Pavel Kotucek1e765832016-09-23 08:54:14 +02001291 {
1292 u32 prio_max = sched_get_priority_max (tm->sched_policy);
1293 u32 prio_min = sched_get_priority_min (tm->sched_policy);
1294 if (tm->sched_priority > prio_max)
1295 tm->sched_priority = prio_max;
1296 if (tm->sched_priority < prio_min)
1297 tm->sched_priority = prio_min;
1298 }
1299 else
Pavel Kotucekc08a1ed2016-09-23 08:54:14 +02001300 {
1301 return clib_error_return
1302 (0,
1303 "scheduling priority (%d) is not allowed for `normal` scheduling policy",
1304 tm->sched_priority);
1305 }
Pavel Kotucek1e765832016-09-23 08:54:14 +02001306 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001307 tr = tm->next;
1308
1309 if (!tm->thread_prefix)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001310 tm->thread_prefix = format (0, "vpp");
Ed Warnickecb9cada2015-12-08 15:45:58 -07001311
1312 while (tr)
1313 {
1314 tm->n_thread_stacks += tr->count;
1315 tm->n_pthreads += tr->count * tr->use_pthreads;
Damjan Marion878c6092017-01-04 13:19:27 +01001316 tm->n_threads += tr->count * (tr->use_pthreads == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001317 tr = tr->next;
1318 }
1319
1320 return 0;
1321}
1322
1323VLIB_EARLY_CONFIG_FUNCTION (cpu_config, "cpu");
1324
Ed Warnickecb9cada2015-12-08 15:45:58 -07001325void vnet_main_fixup (vlib_fork_fixup_t which) __attribute__ ((weak));
Dave Barach9b8ffd92016-07-08 08:13:45 -04001326void
1327vnet_main_fixup (vlib_fork_fixup_t which)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001328{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001329}
1330
1331void
1332vlib_worker_thread_fork_fixup (vlib_fork_fixup_t which)
1333{
1334 vlib_main_t *vm = vlib_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001335
1336 if (vlib_mains == 0)
1337 return;
1338
Damjan Marion586afd72017-04-05 19:18:20 +02001339 ASSERT (vlib_get_thread_index () == 0);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001340 vlib_worker_thread_barrier_sync (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001341
1342 switch (which)
1343 {
1344 case VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX:
1345 vnet_main_fixup (VLIB_WORKER_THREAD_FORK_FIXUP_NEW_SW_IF_INDEX);
1346 break;
1347
1348 default:
Dave Barach9b8ffd92016-07-08 08:13:45 -04001349 ASSERT (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001350 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001351 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001352}
1353
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001354 /*
1355 * Enforce minimum open time to minimize packet loss due to Rx overflow,
1356 * based on a test based heuristic that barrier should be open for at least
1357 * 3 time as long as it is closed (with an upper bound of 1ms because by that
1358 * point it is probably too late to make a difference)
1359 */
1360
1361#ifndef BARRIER_MINIMUM_OPEN_LIMIT
1362#define BARRIER_MINIMUM_OPEN_LIMIT 0.001
1363#endif
1364
1365#ifndef BARRIER_MINIMUM_OPEN_FACTOR
1366#define BARRIER_MINIMUM_OPEN_FACTOR 3
1367#endif
1368
Dave Barach9b8ffd92016-07-08 08:13:45 -04001369void
Dave Barachc602b382019-06-03 19:48:22 -04001370vlib_worker_thread_initial_barrier_sync_and_release (vlib_main_t * vm)
1371{
1372 f64 deadline;
1373 f64 now = vlib_time_now (vm);
1374 u32 count = vec_len (vlib_mains) - 1;
1375
1376 /* No worker threads? */
1377 if (count == 0)
1378 return;
1379
1380 deadline = now + BARRIER_SYNC_TIMEOUT;
1381 *vlib_worker_threads->wait_at_barrier = 1;
1382 while (*vlib_worker_threads->workers_at_barrier != count)
1383 {
1384 if ((now = vlib_time_now (vm)) > deadline)
1385 {
1386 fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1387 os_panic ();
1388 }
1389 CLIB_PAUSE ();
1390 }
1391 *vlib_worker_threads->wait_at_barrier = 0;
1392}
1393
1394void
Damjan Marion8343ee52019-02-26 17:15:48 +01001395vlib_worker_thread_barrier_sync_int (vlib_main_t * vm, const char *func_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001396{
1397 f64 deadline;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001398 f64 now;
1399 f64 t_entry;
1400 f64 t_open;
1401 f64 t_closed;
Dave Barach9ae190e2019-04-23 10:07:24 -04001402 f64 max_vector_rate;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001403 u32 count;
Dave Barach9ae190e2019-04-23 10:07:24 -04001404 int i;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001405
Dave Barach80f54e22017-03-08 19:08:56 -05001406 if (vec_len (vlib_mains) < 2)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001407 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001408
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001409 ASSERT (vlib_get_thread_index () == 0);
1410
Damjan Marion8343ee52019-02-26 17:15:48 +01001411 vlib_worker_threads[0].barrier_caller = func_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001412 count = vec_len (vlib_mains) - 1;
1413
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001414 /* Record entry relative to last close */
1415 now = vlib_time_now (vm);
1416 t_entry = now - vm->barrier_epoch;
1417
Ed Warnickecb9cada2015-12-08 15:45:58 -07001418 /* Tolerate recursive calls */
1419 if (++vlib_worker_threads[0].recursion_level > 1)
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001420 {
1421 barrier_trace_sync_rec (t_entry);
1422 return;
1423 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001424
Dave Barach9ae190e2019-04-23 10:07:24 -04001425 /*
1426 * Need data to decide if we're working hard enough to honor
1427 * the barrier hold-down timer.
1428 */
1429 max_vector_rate = 0.0;
1430 for (i = 1; i < vec_len (vlib_mains); i++)
1431 max_vector_rate =
1432 clib_max (max_vector_rate,
1433 vlib_last_vectors_per_main_loop_as_f64 (vlib_mains[i]));
1434
Bud Grise42f20062016-03-16 13:09:46 -04001435 vlib_worker_threads[0].barrier_sync_count++;
1436
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001437 /* Enforce minimum barrier open time to minimize packet loss */
1438 ASSERT (vm->barrier_no_close_before <= (now + BARRIER_MINIMUM_OPEN_LIMIT));
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001439
Dave Barach9ae190e2019-04-23 10:07:24 -04001440 /*
1441 * If any worker thread seems busy, which we define
1442 * as a vector rate above 10, we enforce the barrier hold-down timer
1443 */
1444 if (max_vector_rate > 10.0)
Dave Barach36feebb2018-09-07 11:12:27 -04001445 {
Dave Barach9ae190e2019-04-23 10:07:24 -04001446 while (1)
Dave Barach36feebb2018-09-07 11:12:27 -04001447 {
Dave Barach9ae190e2019-04-23 10:07:24 -04001448 now = vlib_time_now (vm);
1449 /* Barrier hold-down timer expired? */
1450 if (now >= vm->barrier_no_close_before)
1451 break;
1452 if ((vm->barrier_no_close_before - now)
1453 > (2.0 * BARRIER_MINIMUM_OPEN_LIMIT))
1454 {
1455 clib_warning
1456 ("clock change: would have waited for %.4f seconds",
1457 (vm->barrier_no_close_before - now));
1458 break;
1459 }
Dave Barach36feebb2018-09-07 11:12:27 -04001460 }
1461 }
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001462 /* Record time of closure */
1463 t_open = now - vm->barrier_epoch;
1464 vm->barrier_epoch = now;
1465
1466 deadline = now + BARRIER_SYNC_TIMEOUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001467
1468 *vlib_worker_threads->wait_at_barrier = 1;
1469 while (*vlib_worker_threads->workers_at_barrier != count)
1470 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001471 if ((now = vlib_time_now (vm)) > deadline)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001472 {
1473 fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1474 os_panic ();
1475 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001476 }
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001477
1478 t_closed = now - vm->barrier_epoch;
1479
1480 barrier_trace_sync (t_entry, t_open, t_closed);
1481
Ed Warnickecb9cada2015-12-08 15:45:58 -07001482}
1483
Dave Barach9b8ffd92016-07-08 08:13:45 -04001484void
1485vlib_worker_thread_barrier_release (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001486{
1487 f64 deadline;
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001488 f64 now;
1489 f64 minimum_open;
1490 f64 t_entry;
1491 f64 t_closed_total;
1492 f64 t_update_main = 0.0;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001493 int refork_needed = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001494
Dave Barach80f54e22017-03-08 19:08:56 -05001495 if (vec_len (vlib_mains) < 2)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001496 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001497
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001498 ASSERT (vlib_get_thread_index () == 0);
1499
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001500
1501 now = vlib_time_now (vm);
1502 t_entry = now - vm->barrier_epoch;
1503
Ed Warnickecb9cada2015-12-08 15:45:58 -07001504 if (--vlib_worker_threads[0].recursion_level > 0)
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001505 {
1506 barrier_trace_release_rec (t_entry);
1507 return;
1508 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001509
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001510 /* Update (all) node runtimes before releasing the barrier, if needed */
1511 if (vm->need_vlib_worker_thread_node_runtime_update)
1512 {
Dave Barach1ddbc012018-06-13 09:26:05 -04001513 /*
1514 * Lock stat segment here, so we's safe when
1515 * rebuilding the stat segment node clones from the
1516 * stat thread...
1517 */
1518 vlib_stat_segment_lock ();
1519
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001520 /* Do stats elements on main thread */
1521 worker_thread_node_runtime_update_internal ();
1522 vm->need_vlib_worker_thread_node_runtime_update = 0;
1523
1524 /* Do per thread rebuilds in parallel */
1525 refork_needed = 1;
Sirshak Das2f6d7bb2018-10-03 22:53:51 +00001526 clib_atomic_fetch_add (vlib_worker_threads->node_reforks_required,
1527 (vec_len (vlib_mains) - 1));
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001528 now = vlib_time_now (vm);
1529 t_update_main = now - vm->barrier_epoch;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001530 }
1531
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001532 deadline = now + BARRIER_SYNC_TIMEOUT;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001533
Dave Baracha4324a92019-02-19 17:05:30 -05001534 /*
1535 * Note when we let go of the barrier.
1536 * Workers can use this to derive a reasonably accurate
1537 * time offset. See vlib_time_now(...)
1538 */
1539 vm->time_last_barrier_release = vlib_time_now (vm);
1540 CLIB_MEMORY_STORE_BARRIER ();
1541
Ed Warnickecb9cada2015-12-08 15:45:58 -07001542 *vlib_worker_threads->wait_at_barrier = 0;
1543
1544 while (*vlib_worker_threads->workers_at_barrier > 0)
1545 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001546 if ((now = vlib_time_now (vm)) > deadline)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001547 {
1548 fformat (stderr, "%s: worker thread deadlock\n", __FUNCTION__);
1549 os_panic ();
1550 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001551 }
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001552
1553 /* Wait for reforks before continuing */
1554 if (refork_needed)
1555 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001556 now = vlib_time_now (vm);
1557
1558 deadline = now + BARRIER_SYNC_TIMEOUT;
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001559
1560 while (*vlib_worker_threads->node_reforks_required > 0)
1561 {
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001562 if ((now = vlib_time_now (vm)) > deadline)
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001563 {
1564 fformat (stderr, "%s: worker thread refork deadlock\n",
1565 __FUNCTION__);
1566 os_panic ();
1567 }
1568 }
Dave Barach1ddbc012018-06-13 09:26:05 -04001569 vlib_stat_segment_unlock ();
Colin Tregenza Dancer21596182017-09-04 15:27:49 +01001570 }
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +01001571
1572 t_closed_total = now - vm->barrier_epoch;
1573
1574 minimum_open = t_closed_total * BARRIER_MINIMUM_OPEN_FACTOR;
1575
1576 if (minimum_open > BARRIER_MINIMUM_OPEN_LIMIT)
1577 {
1578 minimum_open = BARRIER_MINIMUM_OPEN_LIMIT;
1579 }
1580
1581 vm->barrier_no_close_before = now + minimum_open;
1582
1583 /* Record barrier epoch (used to enforce minimum open time) */
1584 vm->barrier_epoch = now;
1585
1586 barrier_trace_release (t_entry, t_closed_total, t_update_main);
1587
Ed Warnickecb9cada2015-12-08 15:45:58 -07001588}
1589
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001590/*
1591 * Check the frame queue to see if any frames are available.
Dave Barach9b8ffd92016-07-08 08:13:45 -04001592 * If so, pull the packets off the frames and put them to
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001593 * the handoff node.
1594 */
Damjan Marione9d52d52017-03-09 15:42:26 +01001595int
1596vlib_frame_queue_dequeue (vlib_main_t * vm, vlib_frame_queue_main_t * fqm)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001597{
Damjan Marion586afd72017-04-05 19:18:20 +02001598 u32 thread_id = vm->thread_index;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001599 vlib_frame_queue_t *fq = fqm->vlib_frame_queues[thread_id];
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001600 vlib_frame_queue_elt_t *elt;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001601 u32 *from, *to;
1602 vlib_frame_t *f;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001603 int msg_type;
1604 int processed = 0;
1605 u32 n_left_to_node;
1606 u32 vectors = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001607
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001608 ASSERT (fq);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001609 ASSERT (vm == vlib_mains[thread_id]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001610
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001611 if (PREDICT_FALSE (fqm->node_index == ~0))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001612 return 0;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001613 /*
1614 * Gather trace data for frame queues
1615 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001616 if (PREDICT_FALSE (fq->trace))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001617 {
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001618 frame_queue_trace_t *fqt;
1619 frame_queue_nelt_counter_t *fqh;
1620 u32 elix;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001621
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001622 fqt = &fqm->frame_queue_traces[thread_id];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001623
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001624 fqt->nelts = fq->nelts;
1625 fqt->head = fq->head;
1626 fqt->head_hint = fq->head_hint;
1627 fqt->tail = fq->tail;
1628 fqt->threshold = fq->vector_threshold;
1629 fqt->n_in_use = fqt->tail - fqt->head;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001630 if (fqt->n_in_use >= fqt->nelts)
1631 {
1632 // if beyond max then use max
1633 fqt->n_in_use = fqt->nelts - 1;
1634 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001635
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001636 /* Record the number of elements in use in the histogram */
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001637 fqh = &fqm->frame_queue_histogram[thread_id];
Dave Barach9b8ffd92016-07-08 08:13:45 -04001638 fqh->count[fqt->n_in_use]++;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001639
1640 /* Record a snapshot of the elements in use */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001641 for (elix = 0; elix < fqt->nelts; elix++)
1642 {
1643 elt = fq->elts + ((fq->head + 1 + elix) & (fq->nelts - 1));
1644 if (1 || elt->valid)
1645 {
1646 fqt->n_vectors[elix] = elt->n_vectors;
1647 }
1648 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001649 fqt->written = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001650 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001651
1652 while (1)
1653 {
Dave Baracha638c182019-06-21 18:24:07 -04001654 vlib_buffer_t *b;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001655 if (fq->head == fq->tail)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001656 {
1657 fq->head_hint = fq->head;
1658 return processed;
1659 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001660
Dave Barach9b8ffd92016-07-08 08:13:45 -04001661 elt = fq->elts + ((fq->head + 1) & (fq->nelts - 1));
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001662
1663 if (!elt->valid)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001664 {
1665 fq->head_hint = fq->head;
1666 return processed;
1667 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001668
1669 from = elt->buffer_index;
1670 msg_type = elt->msg_type;
1671
1672 ASSERT (msg_type == VLIB_FRAME_QUEUE_ELT_DISPATCH_FRAME);
1673 ASSERT (elt->n_vectors <= VLIB_FRAME_SIZE);
1674
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001675 f = vlib_get_frame_to_node (vm, fqm->node_index);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001676
Dave Baracha638c182019-06-21 18:24:07 -04001677 /* If the first vector is traced, set the frame trace flag */
1678 b = vlib_get_buffer (vm, from[0]);
1679 if (b->flags & VLIB_BUFFER_IS_TRACED)
1680 f->frame_flags |= VLIB_NODE_FLAG_TRACE;
1681
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001682 to = vlib_frame_vector_args (f);
1683
1684 n_left_to_node = elt->n_vectors;
1685
1686 while (n_left_to_node >= 4)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001687 {
1688 to[0] = from[0];
1689 to[1] = from[1];
1690 to[2] = from[2];
1691 to[3] = from[3];
1692 to += 4;
1693 from += 4;
1694 n_left_to_node -= 4;
1695 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001696
1697 while (n_left_to_node > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001698 {
1699 to[0] = from[0];
1700 to++;
1701 from++;
1702 n_left_to_node--;
1703 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001704
1705 vectors += elt->n_vectors;
1706 f->n_vectors = elt->n_vectors;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001707 vlib_put_frame_to_node (vm, fqm->node_index, f);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001708
1709 elt->valid = 0;
1710 elt->n_vectors = 0;
1711 elt->msg_type = 0xfefefefe;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001712 CLIB_MEMORY_BARRIER ();
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001713 fq->head++;
1714 processed++;
1715
1716 /*
1717 * Limit the number of packets pushed into the graph
1718 */
1719 if (vectors >= fq->vector_threshold)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001720 {
1721 fq->head_hint = fq->head;
1722 return processed;
1723 }
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001724 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001725 ASSERT (0);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001726 return processed;
1727}
1728
Dave Barach9b8ffd92016-07-08 08:13:45 -04001729void
1730vlib_worker_thread_fn (void *arg)
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001731{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001732 vlib_worker_thread_t *w = (vlib_worker_thread_t *) arg;
Damjan Marion878c6092017-01-04 13:19:27 +01001733 vlib_thread_main_t *tm = vlib_get_thread_main ();
Dave Barach9b8ffd92016-07-08 08:13:45 -04001734 vlib_main_t *vm = vlib_get_main ();
Damjan Marione9f929b2017-03-16 11:32:09 +01001735 clib_error_t *e;
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001736
Damjan Marion586afd72017-04-05 19:18:20 +02001737 ASSERT (vm->thread_index == vlib_get_thread_index ());
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001738
1739 vlib_worker_thread_init (w);
1740 clib_time_init (&vm->clib_time);
1741 clib_mem_set_heap (w->thread_mheap);
1742
Dave Barachc602b382019-06-03 19:48:22 -04001743 e = vlib_call_init_exit_functions_no_sort
Dave Barachf8d50682019-05-14 18:01:44 -04001744 (vm, &vm->worker_init_function_registrations, 1 /* call_once */ );
Damjan Marione9f929b2017-03-16 11:32:09 +01001745 if (e)
1746 clib_error_report (e);
1747
Dave Barachc602b382019-06-03 19:48:22 -04001748 /* Wait until the dpdk init sequence is complete */
1749 while (tm->extern_thread_mgmt && tm->worker_thread_release == 0)
1750 vlib_worker_thread_barrier_check ();
1751
Damjan Marione9d52d52017-03-09 15:42:26 +01001752 vlib_worker_loop (vm);
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001753}
1754
Dave Barach9b8ffd92016-07-08 08:13:45 -04001755/* *INDENT-OFF* */
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001756VLIB_REGISTER_THREAD (worker_thread_reg, static) = {
1757 .name = "workers",
1758 .short_name = "wk",
1759 .function = vlib_worker_thread_fn,
1760};
Dave Barach9b8ffd92016-07-08 08:13:45 -04001761/* *INDENT-ON* */
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001762
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001763u32
1764vlib_frame_queue_main_init (u32 node_index, u32 frame_queue_nelts)
1765{
1766 vlib_thread_main_t *tm = vlib_get_thread_main ();
1767 vlib_frame_queue_main_t *fqm;
1768 vlib_frame_queue_t *fq;
1769 int i;
1770
1771 if (frame_queue_nelts == 0)
dongjuan88752482019-06-04 10:59:02 +08001772 frame_queue_nelts = FRAME_QUEUE_MAX_NELTS;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001773
Damjan Marion78fd7e82018-07-20 18:47:05 +02001774 ASSERT (frame_queue_nelts >= 8);
1775
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001776 vec_add2 (tm->frame_queue_mains, fqm, 1);
1777
1778 fqm->node_index = node_index;
Damjan Marion78fd7e82018-07-20 18:47:05 +02001779 fqm->frame_queue_nelts = frame_queue_nelts;
1780 fqm->queue_hi_thresh = frame_queue_nelts - 2;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001781
1782 vec_validate (fqm->vlib_frame_queues, tm->n_vlib_mains - 1);
Damjan Marion78fd7e82018-07-20 18:47:05 +02001783 vec_validate (fqm->per_thread_data, tm->n_vlib_mains - 1);
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001784 _vec_len (fqm->vlib_frame_queues) = 0;
1785 for (i = 0; i < tm->n_vlib_mains; i++)
1786 {
Damjan Marion78fd7e82018-07-20 18:47:05 +02001787 vlib_frame_queue_per_thread_data_t *ptd;
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001788 fq = vlib_frame_queue_alloc (frame_queue_nelts);
1789 vec_add1 (fqm->vlib_frame_queues, fq);
Damjan Marion78fd7e82018-07-20 18:47:05 +02001790
1791 ptd = vec_elt_at_index (fqm->per_thread_data, i);
1792 vec_validate (ptd->handoff_queue_elt_by_thread_index,
1793 tm->n_vlib_mains - 1);
1794 vec_validate_init_empty (ptd->congested_handoff_queue_by_thread_index,
1795 tm->n_vlib_mains - 1,
1796 (vlib_frame_queue_t *) (~0));
Damjan Marionaaef1eb2016-11-08 17:37:01 +01001797 }
1798
1799 return (fqm - tm->frame_queue_mains);
1800}
1801
Damjan Marion878c6092017-01-04 13:19:27 +01001802int
1803vlib_thread_cb_register (struct vlib_main_t *vm, vlib_thread_callbacks_t * cb)
1804{
1805 vlib_thread_main_t *tm = vlib_get_thread_main ();
1806
1807 if (tm->extern_thread_mgmt)
1808 return -1;
1809
1810 tm->cb.vlib_launch_thread_cb = cb->vlib_launch_thread_cb;
1811 tm->extern_thread_mgmt = 1;
1812 return 0;
1813}
1814
Dave Barach69128d02017-09-26 10:54:34 -04001815void
1816vlib_process_signal_event_mt_helper (vlib_process_signal_event_mt_args_t *
1817 args)
1818{
1819 ASSERT (vlib_get_thread_index () == 0);
1820 vlib_process_signal_event (vlib_get_main (), args->node_index,
1821 args->type_opaque, args->data);
1822}
1823
1824void *rpc_call_main_thread_cb_fn;
1825
1826void
1827vlib_rpc_call_main_thread (void *callback, u8 * args, u32 arg_size)
1828{
1829 if (rpc_call_main_thread_cb_fn)
1830 {
1831 void (*fp) (void *, u8 *, u32) = rpc_call_main_thread_cb_fn;
1832 (*fp) (callback, args, arg_size);
1833 }
1834 else
1835 clib_warning ("BUG: rpc_call_main_thread_cb_fn NULL!");
1836}
1837
Dave Barach9b8ffd92016-07-08 08:13:45 -04001838clib_error_t *
1839threads_init (vlib_main_t * vm)
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001840{
Ed Warnickecb9cada2015-12-08 15:45:58 -07001841 return 0;
1842}
1843
Damjan Marion0f8ecf02016-06-27 08:30:30 +02001844VLIB_INIT_FUNCTION (threads_init);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001845
Dave Baracha4324a92019-02-19 17:05:30 -05001846
1847static clib_error_t *
1848show_clock_command_fn (vlib_main_t * vm,
1849 unformat_input_t * input, vlib_cli_command_t * cmd)
1850{
1851 int i;
1852 f64 now;
1853
1854 now = vlib_time_now (vm);
1855
1856 vlib_cli_output (vm, "Time now %.9f", now);
1857
1858 if (vec_len (vlib_mains) == 1)
1859 return 0;
1860
1861 vlib_cli_output (vm, "Time last barrier release %.9f",
1862 vm->time_last_barrier_release);
1863
1864 for (i = 1; i < vec_len (vlib_mains); i++)
1865 {
1866 if (vlib_mains[i] == 0)
1867 continue;
1868 vlib_cli_output (vm, "Thread %d offset %.9f error %.9f", i,
1869 vlib_mains[i]->time_offset,
1870 vm->time_last_barrier_release -
1871 vlib_mains[i]->time_last_barrier_release);
1872 }
1873 return 0;
1874}
1875
1876/* *INDENT-OFF* */
1877VLIB_CLI_COMMAND (f_command, static) =
1878{
1879 .path = "show clock",
1880 .short_help = "show clock",
1881 .function = show_clock_command_fn,
1882};
1883/* *INDENT-ON* */
1884
Dave Barach9b8ffd92016-07-08 08:13:45 -04001885/*
1886 * fd.io coding-style-patch-verification: ON
1887 *
1888 * Local Variables:
1889 * eval: (c-set-style "gnu")
1890 * End:
1891 */