blob: 8010e9e97cdcb9970d392c380b8f26f1c5dcb701 [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 */
15/*
16 * init.c: mechanism for functions to be called at init/exit.
17 *
18 * Copyright (c) 2008 Eliot Dresselhaus
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining
21 * a copy of this software and associated documentation files (the
22 * "Software"), to deal in the Software without restriction, including
23 * without limitation the rights to use, copy, modify, merge, publish,
24 * distribute, sublicense, and/or sell copies of the Software, and to
25 * permit persons to whom the Software is furnished to do so, subject to
26 * the following conditions:
27 *
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 */
39
40#include <vlib/vlib.h>
Dave Barachf8d50682019-05-14 18:01:44 -040041#include <vppinfra/ptclosure.h>
42
43/**
44 * @file
45 * @brief Init function ordering and execution implementation
46 * Topological sort for all classes of init functions, and
47 * a relatively simple API routine to invoke them.
48 */
49
50/*? %%clicmd:group_label Init functions %% ?*/
51
52static int
53comma_split (u8 * s, u8 ** a, u8 ** b)
54{
55 *a = s;
56
57 while (*s && *s != ',')
58 s++;
59
60 if (*s == ',')
61 *s = 0;
62 else
63 return 1;
64
65 *b = (u8 *) (s + 1);
66 return 0;
67}
68
69/**
70 * @brief Topological sorter for init function chains.
71 * @param head [in/out] address of the listhead to be sorted
72 * @returns 0 on success, otherwise a clib_error_t *.
73 */
74
75static clib_error_t *init_exit_function_sort
76 (_vlib_init_function_list_elt_t ** head)
77{
78 uword *index_by_name;
79 uword *reg_by_index;
80 u8 **init_f_names = 0;
81 u8 *init_f_name;
82 char **these_constraints;
83 char *this_constraint_c;
84 u8 **constraints = 0;
85 u8 *constraint_tuple;
86 u8 *this_constraint;
87 char *prev_name;
88 u8 **orig, **closure;
89 uword *p;
90 int i, j, k;
91 u8 *a_name, *b_name;
92 int a_index, b_index;
93 int n_init_fns;
94 u32 *result = 0;
95 _vlib_init_function_list_elt_t *this_reg = 0;
96 hash_pair_t *hp;
97 u8 **keys_to_delete = 0;
98
99 /*
100 * two hash tables: name to index in init_f_names, and
101 * init function registration pointer by index
102 */
103 index_by_name = hash_create_string (0, sizeof (uword));
104 reg_by_index = hash_create (0, sizeof (uword));
105
106 this_reg = *head;
107
108 /* pass 1, collect init fcn names, construct a before b pairs */
109 while (this_reg)
110 {
111 init_f_name = format (0, "%s%c", this_reg->name, 0);
112 hash_set (reg_by_index, vec_len (init_f_names), (uword) this_reg);
113
114 hash_set_mem (index_by_name, init_f_name, vec_len (init_f_names));
115
116 vec_add1 (init_f_names, init_f_name);
117
118 these_constraints = this_reg->runs_before;
119 while (these_constraints && these_constraints[0])
120 {
121 this_constraint_c = these_constraints[0];
122
123 constraint_tuple = format (0, "%s,%s%c", init_f_name,
124 this_constraint_c, 0);
125 vec_add1 (constraints, constraint_tuple);
126 these_constraints++;
127 }
128
129 these_constraints = this_reg->runs_after;
130 while (these_constraints && these_constraints[0])
131 {
132 this_constraint_c = these_constraints[0];
133
134 constraint_tuple = format (0, "%s,%s%c",
135 this_constraint_c, init_f_name, 0);
136 vec_add1 (constraints, constraint_tuple);
137 these_constraints++;
138 }
139
140 this_reg = this_reg->next_init_function;
141 }
142
143 /*
144 * pass 2: collect "a then b then c then d" constraints.
145 * all init fcns must be known at this point.
146 */
147 this_reg = *head;
148 while (this_reg)
149 {
150 these_constraints = this_reg->init_order;
151
152 prev_name = 0;
153 /* Across the list of constraints */
154 while (these_constraints && these_constraints[0])
155 {
156 this_constraint_c = these_constraints[0];
157 p = hash_get_mem (index_by_name, this_constraint_c);
158 if (p == 0)
159 {
160 clib_warning
161 ("order constraint fcn '%s' not found", this_constraint_c);
162 these_constraints++;
163 continue;
164 }
165
166 if (prev_name == 0)
167 {
168 prev_name = this_constraint_c;
169 these_constraints++;
170 continue;
171 }
172
173 constraint_tuple = format (0, "%s,%s%c", prev_name,
174 this_constraint_c, 0);
175 vec_add1 (constraints, constraint_tuple);
176 prev_name = this_constraint_c;
177 these_constraints++;
178 }
179 this_reg = this_reg->next_init_function;
180 }
181
182 n_init_fns = vec_len (init_f_names);
183 orig = clib_ptclosure_alloc (n_init_fns);
184
185 for (i = 0; i < vec_len (constraints); i++)
186 {
187 this_constraint = constraints[i];
188
189 if (comma_split (this_constraint, &a_name, &b_name))
190 return clib_error_return (0, "comma_split failed!");
191
192 p = hash_get_mem (index_by_name, a_name);
193 /*
194 * Note: the next two errors mean that something is
195 * b0rked. As in: if you code "A runs before on B," and you type
196 * B incorrectly, you lose. Nonexistent init functions are tolerated.
197 */
198 if (p == 0)
199 {
200 clib_warning ("init function '%s' not found (before '%s')",
201 a_name, b_name);
202 continue;
203 }
204 a_index = p[0];
205
206 p = hash_get_mem (index_by_name, b_name);
207 if (p == 0)
208 {
209 clib_warning ("init function '%s' not found (after '%s')",
210 b_name, a_name);
211 continue;
212 }
213 b_index = p[0];
214
215 /* add a before b to the original set of constraints */
216 orig[a_index][b_index] = 1;
217 vec_free (this_constraint);
218 }
219
220 /* Compute the positive transitive closure of the original constraints */
221 closure = clib_ptclosure (orig);
222
223 /* Compute a partial order across feature nodes, if one exists. */
224again:
225 for (i = 0; i < n_init_fns; i++)
226 {
227 for (j = 0; j < n_init_fns; j++)
228 {
229 if (closure[i][j])
230 goto item_constrained;
231 }
232 /* Item i can be output */
233 vec_add1 (result, i);
234 {
235 for (k = 0; k < n_init_fns; k++)
236 closure[k][i] = 0;
237 /*
238 * Add a "Magic" a before a constraint.
239 * This means we'll never output it again
240 */
241 closure[i][i] = 1;
242 goto again;
243 }
244 item_constrained:
245 ;
246 }
247
248 /* see if we got a partial order... */
249 if (vec_len (result) != n_init_fns)
250 return clib_error_return
251 (0, "Failed to find a suitable init function order!");
252
253 /*
254 * We win.
255 * Bind the index variables, and output the feature node name vector
256 * using the partial order we just computed. Result is in stack
257 * order, because the entry with the fewest constraints (e.g. none)
258 * is output first, etc.
259 * Reset the listhead, and add items in result (aka reverse) order.
260 */
261 *head = 0;
262 for (i = 0; i < n_init_fns; i++)
263 {
264 p = hash_get (reg_by_index, result[i]);
265 ASSERT (p != 0);
266 this_reg = (_vlib_init_function_list_elt_t *) p[0];
267
268 this_reg->next_init_function = *head;
269 *head = this_reg;
270 }
271
272 /* Finally, clean up all the fine data we allocated */
273 /* *INDENT-OFF* */
274 hash_foreach_pair (hp, index_by_name,
275 ({
276 vec_add1 (keys_to_delete, (u8 *)hp->key);
277 }));
278 /* *INDENT-ON* */
279 hash_free (index_by_name);
280 for (i = 0; i < vec_len (keys_to_delete); i++)
281 vec_free (keys_to_delete[i]);
282 vec_free (keys_to_delete);
283 hash_free (reg_by_index);
284 vec_free (result);
285 clib_ptclosure_free (orig);
286 clib_ptclosure_free (closure);
287 return 0;
288}
289
290/**
291 * @brief call a set of init / exit / main-loop enter functions
292 * @param vm vlib_main_t
293 * @param head address of the listhead to sort and then invoke
294 * @returns 0 on success, clib_error_t * on error
295 *
296 * The "init_functions_called" hash supports a subtle mix of procedural
297 * and formally-specified ordering constraints. The following schemes
298 * are *roughly* equivalent:
299 *
300 * static clib_error_t *init_runs_first (vlib_main_t *vm)
301 * {
302 * clib_error_t *error;
303 *
304 * ... do some stuff...
305 *
306 * if ((error = vlib_call_init_function (init_runs_next)))
307 * return error;
308 * ...
309 * }
310 * VLIB_INIT_FUNCTION (init_runs_first);
311 *
312 * and
313 *
314 * static clib_error_t *init_runs_first (vlib_main_t *vm)
315 * {
316 * ... do some stuff...
317 * }
318 * VLIB_INIT_FUNCTION (init_runs_first) =
319 * {
320 * .runs_before = VLIB_INITS("init_runs_next"),
321 * };
322 *
323 * The first form will [most likely] call "init_runs_next" on the
324 * spot. The second form means that "init_runs_first" runs before
325 * "init_runs_next," possibly much earlier in the sequence.
326 *
327 * Please DO NOT construct sets of init functions where A before B
328 * actually means A *right before* B. It's not necessary - simply combine
329 * A and B - and it leads to hugely annoying debugging exercises.
330 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700331
332clib_error_t *
Dave Barach9b8ffd92016-07-08 08:13:45 -0400333vlib_call_init_exit_functions (vlib_main_t * vm,
Dave Barachf8d50682019-05-14 18:01:44 -0400334 _vlib_init_function_list_elt_t ** headp,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400335 int call_once)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700336{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400337 clib_error_t *error = 0;
338 _vlib_init_function_list_elt_t *i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700339
Dave Barachf8d50682019-05-14 18:01:44 -0400340 if ((error = init_exit_function_sort (headp)))
341 return (error);
342
343 i = *headp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700344 while (i)
345 {
346 if (call_once && !hash_get (vm->init_functions_called, i->f))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400347 {
348 if (call_once)
349 hash_set1 (vm->init_functions_called, i->f);
350 error = i->f (vm);
351 if (error)
352 return error;
353 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700354 i = i->next_init_function;
355 }
356 return error;
357}
358
Dave Barach9b8ffd92016-07-08 08:13:45 -0400359clib_error_t *
360vlib_call_all_init_functions (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361{
362 /* Call dummy functions to make sure purely static modules are
363 linked in. */
364#define _(f) vlib_##f##_reference ();
365 foreach_vlib_module_reference;
366#undef _
367
Dave Barach9b8ffd92016-07-08 08:13:45 -0400368 return vlib_call_init_exit_functions
Dave Barachf8d50682019-05-14 18:01:44 -0400369 (vm, &vm->init_function_registrations, 1 /* call_once */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700370}
371
Dave Barach9b8ffd92016-07-08 08:13:45 -0400372clib_error_t *
373vlib_call_all_main_loop_enter_functions (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700374{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400375 return vlib_call_init_exit_functions
Dave Barachf8d50682019-05-14 18:01:44 -0400376 (vm, &vm->main_loop_enter_function_registrations, 1 /* call_once */ );
Dave Barach9b8ffd92016-07-08 08:13:45 -0400377}
378
379clib_error_t *
380vlib_call_all_main_loop_exit_functions (vlib_main_t * vm)
381{
382 return vlib_call_init_exit_functions
Dave Barachf8d50682019-05-14 18:01:44 -0400383 (vm, &vm->main_loop_exit_function_registrations, 1 /* call_once */ );
Dave Barach9b8ffd92016-07-08 08:13:45 -0400384}
385
386clib_error_t *
387vlib_call_all_config_functions (vlib_main_t * vm,
388 unformat_input_t * input, int is_early)
389{
390 clib_error_t *error = 0;
391 vlib_config_function_runtime_t *c, **all;
392 uword *hash = 0, *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700393 uword i;
394
395 hash = hash_create_string (0, sizeof (uword));
396 all = 0;
397
398 c = vm->config_function_registrations;
399
400 while (c)
401 {
402 hash_set_mem (hash, c->name, vec_len (all));
403 vec_add1 (all, c);
404 unformat_init (&c->input, 0, 0);
405 c = c->next_registration;
406 }
407
408 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
409 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400410 u8 *s, *v;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700411
Dave Barach9b8ffd92016-07-08 08:13:45 -0400412 if (!unformat (input, "%s %v", &s, &v) || !(p = hash_get_mem (hash, s)))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700413 {
414 error = clib_error_create ("unknown input `%s %v'", s, v);
415 goto done;
416 }
417
418 c = all[p[0]];
419 if (vec_len (c->input.buffer) > 0)
420 vec_add1 (c->input.buffer, ' ');
421 vec_add (c->input.buffer, v, vec_len (v));
422 vec_free (v);
423 vec_free (s);
424 }
425
426 for (i = 0; i < vec_len (all); i++)
427 {
428 c = all[i];
429
430 /* Is this an early config? Are we doing early configs? */
431 if (is_early ^ c->is_early)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400432 continue;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700433
434 /* Already called? */
435 if (hash_get (vm->init_functions_called, c->function))
436 continue;
437 hash_set1 (vm->init_functions_called, c->function);
438
439 error = c->function (vm, &c->input);
440 if (error)
441 goto done;
442 }
443
Dave Barach9b8ffd92016-07-08 08:13:45 -0400444done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700445 for (i = 0; i < vec_len (all); i++)
446 {
447 c = all[i];
448 unformat_free (&c->input);
449 }
450 vec_free (all);
451 hash_free (hash);
452 return error;
453}
Dave Barach9b8ffd92016-07-08 08:13:45 -0400454
Dave Barachf8d50682019-05-14 18:01:44 -0400455void
456vlib_init_dump (void)
457{
458 vlib_main_t *vm = vlib_get_main ();
459 int i = 0;
460
461 _vlib_init_function_list_elt_t *head, *this;
462 head = vm->init_function_registrations;
463
464 this = head;
465 while (this)
466 {
467 fformat (stdout, "[%d]: %s\n", i++, this->name);
468 this = this->next_init_function;
469 }
470}
471
472static clib_error_t *
473show_init_function_command_fn (vlib_main_t * vm,
474 unformat_input_t * input,
475 vlib_cli_command_t * cmd)
476{
477 int which = 1;
478 int verbose = 0;
479 int i, n_init_fns;
480 _vlib_init_function_list_elt_t *head, *this;
481 uword *index_by_name;
482 uword *reg_by_index;
483 u8 **init_f_names = 0;
484 u8 *init_f_name;
485 uword *p;
486 _vlib_init_function_list_elt_t *this_reg = 0;
487 hash_pair_t *hp;
488 u8 **keys_to_delete = 0;
489
490 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
491 {
492 if (unformat (input, "init"))
493 which = 1;
494 else if (unformat (input, "enter"))
495 which = 2;
496 else if (unformat (input, "exit"))
497 which = 3;
498 else if (unformat (input, "verbose %d", &verbose))
499 ;
500 else if (unformat (input, "verbose"))
501 verbose = 1;
502 else
503 break;
504 }
505
506 switch (which)
507 {
508 case 1:
509 head = vm->init_function_registrations;
510 break;
511 case 2:
512 head = vm->main_loop_enter_function_registrations;
513 break;
514 case 3:
515 head = vm->main_loop_exit_function_registrations;
516 break;
517 default:
518 return clib_error_return (0, "BUG");
519 }
520
521 if (verbose == 0)
522 {
523 this = head;
524 i = 0;
525 while (this)
526 {
527 vlib_cli_output (vm, "[%d]: %s", i++, this->name);
528 this = this->next_init_function;
529 }
530 return 0;
531 }
532
533 index_by_name = hash_create_string (0, sizeof (uword));
534 reg_by_index = hash_create (0, sizeof (uword));
535
536 this_reg = head;
537 n_init_fns = 0;
538 /* collect init fcn names */
539 while (this_reg)
540 {
541 init_f_name = format (0, "%s%c", this_reg->name, 0);
542 hash_set (reg_by_index, vec_len (init_f_names), (uword) this_reg);
543
544 hash_set_mem (index_by_name, init_f_name, vec_len (init_f_names));
545 vec_add1 (init_f_names, init_f_name);
546 n_init_fns++;
547 this_reg = this_reg->next_init_function;
548 }
549
550 for (i = 0; i < n_init_fns; i++)
551 {
552 p = hash_get (reg_by_index, i);
553 ASSERT (p != 0);
554 this_reg = (_vlib_init_function_list_elt_t *) p[0];
555 vlib_cli_output (vm, "[%d] %s", i, this_reg->name);
556 {
557 char **runs_before, **runs_after, **init_order;
558 runs_before = this_reg->runs_before;
559 while (runs_before && runs_before[0])
560 {
561 _vlib_init_function_list_elt_t *successor;
562 uword successor_index;
563 p = hash_get_mem (index_by_name, runs_before[0]);
564 if (p == 0)
565 {
566 clib_warning ("couldn't find successor '%s'", runs_before[0]);
567 runs_before++;
568 continue;
569 }
570 successor_index = p[0];
571 p = hash_get (reg_by_index, p[0]);
572 ASSERT (p != 0);
573 successor = (_vlib_init_function_list_elt_t *) p[0];
574 vlib_cli_output (vm, " before '%s' [%lld]",
575 successor->name, successor_index);
576 runs_before++;
577 }
578 runs_after = this_reg->runs_after;
579 while (runs_after && runs_after[0])
580 {
581 _vlib_init_function_list_elt_t *predecessor;
582 uword predecessor_index;
583 p = hash_get_mem (index_by_name, runs_after[0]);
584 if (p == 0)
585 {
586 clib_warning ("couldn't find predecessor '%s'",
587 runs_after[0]);
588 runs_after++;
589 continue;
590 }
591 predecessor_index = p[0];
592 p = hash_get (reg_by_index, p[0]);
593 ASSERT (p != 0);
594 predecessor = (_vlib_init_function_list_elt_t *) p[0];
595 vlib_cli_output (vm, " after '%s' [%lld]",
596 predecessor->name, predecessor_index);
597 runs_after++;
598 }
599 init_order = this_reg->init_order;
600 while (init_order && init_order[0])
601 {
602 _vlib_init_function_list_elt_t *inorder;
603 uword inorder_index;
604 p = hash_get_mem (index_by_name, init_order[0]);
605 if (p == 0)
606 {
607 clib_warning ("couldn't find order element'%s'",
608 init_order[0]);
609 init_order++;
610 continue;
611 }
612 inorder_index = p[0];
613 p = hash_get (reg_by_index, p[0]);
614 ASSERT (p != 0);
615 inorder = (_vlib_init_function_list_elt_t *) p[0];
616 vlib_cli_output (vm, " in order '%s' [%lld]",
617 inorder->name, inorder_index);
618 init_order++;
619 }
620 }
621 }
622 /* *INDENT-OFF* */
623 hash_foreach_pair (hp, index_by_name,
624 ({
625 vec_add1 (keys_to_delete, (u8 *)hp->key);
626 }));
627 /* *INDENT-ON* */
628 hash_free (index_by_name);
629 for (i = 0; i < vec_len (keys_to_delete); i++)
630 vec_free (keys_to_delete[i]);
631 vec_free (keys_to_delete);
632 hash_free (reg_by_index);
633
634 return 0;
635}
636
637/*?
638 * Show init function order
639 *
640 * @cliexpar
641 * @cliexstart{show init-function [init | enter | exit] [verbose [nn]]}
642 * @cliexend
643 ?*/
644/* *INDENT-OFF* */
645VLIB_CLI_COMMAND (show_init_function, static) = {
646 .path = "show init-function",
647 .short_help = "show init-function [init | enter | exit][verbose [nn]]",
648 .function = show_init_function_command_fn,
649};
650/* *INDENT-ON* */
651
652
Dave Barach9b8ffd92016-07-08 08:13:45 -0400653/*
654 * fd.io coding-style-patch-verification: ON
655 *
656 * Local Variables:
657 * eval: (c-set-style "gnu")
658 * End:
659 */