FD.io VPP  v16.06
Vector Packet Processing
init.c
Go to the documentation of this file.
1 /*
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>
41 
44  _vlib_init_function_list_elt_t *head,
45  int call_once)
46 {
47  clib_error_t * error = 0;
48  _vlib_init_function_list_elt_t * i;
49 
50  i = head;
51  while (i)
52  {
53  if (call_once && !hash_get (vm->init_functions_called, i->f))
54  {
55  if (call_once)
56  hash_set1 (vm->init_functions_called, i->f);
57  error = i->f (vm);
58  if (error)
59  return error;
60  }
61  i = i->next_init_function;
62  }
63  return error;
64 }
65 
67 {
68  /* Call dummy functions to make sure purely static modules are
69  linked in. */
70 #define _(f) vlib_##f##_reference ();
72 #undef _
73 
75  (vm, vm->init_function_registrations, 1 /* call_once */);
76 }
77 
79 {
81  (vm, vm->main_loop_enter_function_registrations, 1 /* call_once */);
82 }
83 
85 {
87  (vm, vm->main_loop_exit_function_registrations, 1 /* call_once */);
88 }
89 
91  unformat_input_t * input,
92  int is_early)
93 {
94  clib_error_t * error = 0;
96  uword * hash = 0, * p;
97  uword i;
98 
99  hash = hash_create_string (0, sizeof (uword));
100  all = 0;
101 
103 
104  while (c)
105  {
106  hash_set_mem (hash, c->name, vec_len (all));
107  vec_add1 (all, c);
108  unformat_init (&c->input, 0, 0);
109  c = c->next_registration;
110  }
111 
113  {
114  u8 * s, * v;
115 
116  if (! unformat (input, "%s %v", &s, &v)
117  || ! (p = hash_get_mem (hash, s)))
118  {
119  error = clib_error_create ("unknown input `%s %v'", s, v);
120  goto done;
121  }
122 
123  c = all[p[0]];
124  if (vec_len (c->input.buffer) > 0)
125  vec_add1 (c->input.buffer, ' ');
126  vec_add (c->input.buffer, v, vec_len (v));
127  vec_free (v);
128  vec_free (s);
129  }
130 
131  for (i = 0; i < vec_len (all); i++)
132  {
133  c = all[i];
134 
135  /* Is this an early config? Are we doing early configs? */
136  if (is_early ^ c->is_early)
137  continue;
138 
139  /* Already called? */
141  continue;
143 
144  error = c->function (vm, &c->input);
145  if (error)
146  goto done;
147  }
148 
149  done:
150  for (i = 0; i < vec_len (all); i++)
151  {
152  c = all[i];
153  unformat_free (&c->input);
154  }
155  vec_free (all);
156  hash_free (hash);
157  return error;
158 }
sll srl srl sll sra u16x4 i
Definition: vector_sse2.h:267
uword unformat(unformat_input_t *i, char *fmt,...)
Definition: unformat.c:942
clib_error_t * vlib_call_all_main_loop_enter_functions(vlib_main_t *vm)
Definition: init.c:78
_vlib_init_function_list_elt_t * init_function_registrations
Definition: main.h:164
always_inline void unformat_free(unformat_input_t *i)
Definition: format.h:160
#define UNFORMAT_END_OF_INPUT
Definition: format.h:142
_vlib_init_function_list_elt_t * main_loop_exit_function_registrations
Definition: main.h:166
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:480
#define foreach_vlib_module_reference
Definition: init.h:221
#define hash_set_mem(h, key, value)
Definition: hash.h:257
vlib_config_function_t * function
Definition: init.h:65
always_inline uword unformat_check_input(unformat_input_t *i)
Definition: format.h:168
unformat_input_t input
Definition: init.h:68
#define vec_add(V, E, N)
Add N elements to end of vector V (no header, unspecified alignment)
Definition: vec.h:557
clib_error_t * vlib_call_all_main_loop_exit_functions(vlib_main_t *vm)
Definition: init.c:84
clib_error_t * vlib_call_all_init_functions(vlib_main_t *vm)
Definition: init.c:66
#define hash_create_string(elts, value_bytes)
Definition: hash.h:609
#define hash_get(h, key)
Definition: hash.h:231
#define hash_free(h)
Definition: hash.h:269
#define clib_error_create(args...)
Definition: error.h:109
uword * init_functions_called
Definition: main.h:156
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:298
#define hash_set1(h, key)
Definition: hash.h:240
_vlib_init_function_list_elt_t * main_loop_enter_function_registrations
Definition: main.h:165
clib_error_t * vlib_call_init_exit_functions(vlib_main_t *vm, _vlib_init_function_list_elt_t *head, int call_once)
Definition: init.c:43
u64 uword
Definition: types.h:112
always_inline void unformat_init(unformat_input_t *i, uword(*fill_buffer)(unformat_input_t *), void *fill_buffer_arg)
Definition: format.h:150
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
unsigned char u8
Definition: types.h:56
struct vlib_config_function_runtime_t * next_registration
Definition: init.h:71
#define hash_get_mem(h, key)
Definition: hash.h:251
struct _unformat_input_t unformat_input_t
vlib_config_function_runtime_t * config_function_registrations
Definition: main.h:168
clib_error_t * vlib_call_all_config_functions(vlib_main_t *vm, unformat_input_t *input, int is_early)
Definition: init.c:90