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:
7 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 * init.h: mechanism for functions to be called at init/exit.
18 * Copyright (c) 2008 Eliot Dresselhaus
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:
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
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.
40 #ifndef included_vlib_init_h
41 #define included_vlib_init_h
43 #include <vppinfra/error.h>
44 #include <vppinfra/format.h>
45 #include <vppinfra/hash.h>
47 /* Init/exit functions: called at start/end of main routine. Init
48 functions are typically used to register and setup packet
51 typedef clib_error_t *(vlib_init_function_t) (struct vlib_main_t * vm);
53 typedef struct _vlib_init_function_list_elt
55 struct _vlib_init_function_list_elt *next_init_function;
56 vlib_init_function_t *f;
61 } _vlib_init_function_list_elt_t;
63 /* Configuration functions: called with configuration input just before
64 main polling loop starts. */
65 typedef clib_error_t *(vlib_config_function_t) (struct vlib_main_t * vm,
66 unformat_input_t * input);
68 typedef struct vlib_config_function_runtime_t
70 /* Function to call. Set to null once function has already been called. */
71 vlib_config_function_t *function;
73 /* Input for function. */
74 unformat_input_t input;
76 /* next config function registration */
77 struct vlib_config_function_runtime_t *next_registration;
79 /* To be invoked as soon as the clib heap is available */
82 /* Name used to distinguish input on command line. */
84 } vlib_config_function_runtime_t;
86 #define VLIB_REMOVE_FROM_LINKED_LIST(first,p,next) \
93 __typeof__ (p) current = first; \
94 while (current->next) \
96 if (current->next == p) \
98 current->next = current->next->next; \
101 current = current->next; \
107 #define _VLIB_INIT_FUNCTION_SYMBOL(x, type) \
108 _vlib_##type##_function_##x
110 #define VLIB_INIT_FUNCTION_SYMBOL(x) \
111 _VLIB_INIT_FUNCTION_SYMBOL(x, init)
112 #define VLIB_MAIN_LOOP_ENTER_FUNCTION_SYMBOL(x) \
113 _VLIB_INIT_FUNCTION_SYMBOL(x, main_loop_enter)
114 #define VLIB_MAIN_LOOP_EXIT_FUNCTION_SYMBOL(x) \
115 _VLIB_INIT_FUNCTION_SYMBOL(x, main_loop_exit)
116 #define VLIB_CONFIG_FUNCTION_SYMBOL(x) \
117 _VLIB_INIT_FUNCTION_SYMBOL(x, config)
119 /* Declaration is global (e.g. not static) so that init functions can
120 be called from other modules to resolve init function depend. */
122 #ifndef CLIB_MARCH_VARIANT
123 #define VLIB_DECLARE_INIT_FUNCTION(x, tag) \
124 vlib_init_function_t *_VLIB_INIT_FUNCTION_SYMBOL (x, tag) = x; \
125 static void __vlib_add_##tag##_function_##x (void) \
126 __attribute__ ((__constructor__)); \
127 static _vlib_init_function_list_elt_t _vlib_init_function_##tag##_##x; \
128 static void __vlib_add_##tag##_function_##x (void) \
130 vlib_global_main_t *vgm = vlib_get_global_main (); \
131 _vlib_init_function_##tag##_##x.next_init_function = \
132 vgm->tag##_function_registrations; \
133 vgm->tag##_function_registrations = &_vlib_init_function_##tag##_##x; \
134 _vlib_init_function_##tag##_##x.f = &x; \
135 _vlib_init_function_##tag##_##x.name = #x; \
137 static void __vlib_rm_##tag##_function_##x (void) \
138 __attribute__ ((__destructor__)); \
139 static void __vlib_rm_##tag##_function_##x (void) \
141 vlib_global_main_t *vgm = vlib_get_global_main (); \
142 _vlib_init_function_list_elt_t *this, *prev; \
143 this = vgm->tag##_function_registrations; \
148 vgm->tag##_function_registrations = this->next_init_function; \
152 this = this->next_init_function; \
157 prev->next_init_function = this->next_init_function; \
161 this = this->next_init_function; \
164 static _vlib_init_function_list_elt_t _vlib_init_function_##tag##_##x
166 /* create unused pointer to silence compiler warnings and get whole
167 function optimized out */
168 #define VLIB_DECLARE_INIT_FUNCTION(x, tag) \
169 static __clib_unused void * __clib_unused_##tag##_##x = x
172 #define VLIB_INIT_FUNCTION(x) VLIB_DECLARE_INIT_FUNCTION(x,init)
173 #define VLIB_WORKER_INIT_FUNCTION(x) VLIB_DECLARE_INIT_FUNCTION(x,worker_init)
174 #define VLIB_NUM_WORKERS_CHANGE_FN(x) \
175 VLIB_DECLARE_INIT_FUNCTION (x, num_workers_change)
177 #define VLIB_MAIN_LOOP_ENTER_FUNCTION(x) \
178 VLIB_DECLARE_INIT_FUNCTION(x,main_loop_enter)
179 #define VLIB_MAIN_LOOP_EXIT_FUNCTION(x) \
180 VLIB_DECLARE_INIT_FUNCTION(x,main_loop_exit)
182 #ifndef CLIB_MARCH_VARIANT
183 #define VLIB_CONFIG_FUNCTION(x, n, ...) \
184 __VA_ARGS__ vlib_config_function_runtime_t VLIB_CONFIG_FUNCTION_SYMBOL (x); \
185 static void __vlib_add_config_function_##x (void) \
186 __attribute__ ((__constructor__)); \
187 static void __vlib_add_config_function_##x (void) \
189 vlib_global_main_t *vgm = vlib_get_global_main (); \
190 VLIB_CONFIG_FUNCTION_SYMBOL (x).next_registration = \
191 vgm->config_function_registrations; \
192 vgm->config_function_registrations = &VLIB_CONFIG_FUNCTION_SYMBOL (x); \
194 static void __vlib_rm_config_function_##x (void) \
195 __attribute__ ((__destructor__)); \
196 static void __vlib_rm_config_function_##x (void) \
198 vlib_global_main_t *vgm = vlib_get_global_main (); \
199 vlib_config_function_runtime_t *p = &VLIB_CONFIG_FUNCTION_SYMBOL (x); \
200 VLIB_REMOVE_FROM_LINKED_LIST (vgm->config_function_registrations, p, \
201 next_registration); \
203 vlib_config_function_runtime_t VLIB_CONFIG_FUNCTION_SYMBOL (x) = { \
209 /* create unused pointer to silence compiler warnings and get whole
210 function optimized out */
211 #define VLIB_CONFIG_FUNCTION(x,n,...) \
212 static __clib_unused vlib_config_function_runtime_t \
213 VLIB_CONFIG_FUNCTION_SYMBOL (__clib_unused_##x) \
221 #ifndef CLIB_MARCH_VARIANT
222 #define VLIB_EARLY_CONFIG_FUNCTION(x, n, ...) \
223 __VA_ARGS__ vlib_config_function_runtime_t VLIB_CONFIG_FUNCTION_SYMBOL (x); \
224 static void __vlib_add_config_function_##x (void) \
225 __attribute__ ((__constructor__)); \
226 static void __vlib_add_config_function_##x (void) \
228 vlib_global_main_t *vgm = vlib_get_global_main (); \
229 VLIB_CONFIG_FUNCTION_SYMBOL (x).next_registration = \
230 vgm->config_function_registrations; \
231 vgm->config_function_registrations = &VLIB_CONFIG_FUNCTION_SYMBOL (x); \
233 static void __vlib_rm_config_function_##x (void) \
234 __attribute__ ((__destructor__)); \
235 static void __vlib_rm_config_function_##x (void) \
237 vlib_global_main_t *vgm = vlib_get_global_main (); \
238 vlib_config_function_runtime_t *p = &VLIB_CONFIG_FUNCTION_SYMBOL (x); \
239 VLIB_REMOVE_FROM_LINKED_LIST (vgm->config_function_registrations, p, \
240 next_registration); \
242 vlib_config_function_runtime_t VLIB_CONFIG_FUNCTION_SYMBOL (x) = { \
248 /* create unused pointer to silence compiler warnings and get whole
249 function optimized out */
250 #define VLIB_EARLY_CONFIG_FUNCTION(x,n,...) \
251 static __clib_unused vlib_config_function_runtime_t \
252 VLIB_CONFIG_FUNCTION_SYMBOL (__clib_unused_##x) \
260 /* Call given init function: used for init function dependencies. */
261 #define vlib_call_init_function(vm, x) \
263 vlib_global_main_t *vgm = &vlib_global_main; \
264 extern vlib_init_function_t *VLIB_INIT_FUNCTION_SYMBOL (x); \
265 vlib_init_function_t *_f = VLIB_INIT_FUNCTION_SYMBOL (x); \
266 clib_error_t *_error = 0; \
267 if (!hash_get (vgm->init_functions_called, _f)) \
269 hash_set1 (vgm->init_functions_called, _f); \
275 /* Don't call given init function: used to suppress parts of the netstack */
276 #define vlib_mark_init_function_complete(vm, x) \
278 vlib_global_main_t *vgm = &vlib_global_main; \
279 extern vlib_init_function_t *VLIB_INIT_FUNCTION_SYMBOL (x); \
280 vlib_init_function_t *_f = VLIB_INIT_FUNCTION_SYMBOL (x); \
281 hash_set1 (vgm->init_functions_called, _f); \
284 #define vlib_call_post_graph_init_function(vm, x) \
286 vlib_global_main_t *vgm = &vlib_global_main; \
287 extern vlib_init_function_t *VLIB_POST_GRAPH_INIT_FUNCTION_SYMBOL (x); \
288 vlib_init_function_t *_f = VLIB_POST_GRAPH_INIT_FUNCTION_SYMBOL (x); \
289 clib_error_t *_error = 0; \
290 if (!hash_get (vgm->init_functions_called, _f)) \
292 hash_set1 (vgm->init_functions_called, _f); \
298 #define vlib_call_config_function(vm, x) \
300 vlib_global_main_t *vgm = &vlib_global_main; \
301 vlib_config_function_runtime_t *_r; \
302 clib_error_t *_error = 0; \
303 extern vlib_config_function_runtime_t VLIB_CONFIG_FUNCTION_SYMBOL (x); \
305 _r = &VLIB_CONFIG_FUNCTION_SYMBOL (x); \
306 if (!hash_get (vgm->init_functions_called, _r->function)) \
308 hash_set1 (vgm->init_functions_called, _r->function); \
309 _error = _r->function (vm, &_r->input); \
314 #define vlib_call_main_loop_enter_function(vm, x) \
316 vlib_global_main_t *vgm = &vlib_global_main; \
317 extern vlib_init_function_t *VLIB_MAIN_LOOP_ENTER_FUNCTION_SYMBOL (x); \
318 vlib_init_function_t *_f = VLIB_MAIN_LOOP_ENTER_FUNCTION_SYMBOL (x); \
319 clib_error_t *_error = 0; \
320 if (!hash_get (vgm->init_functions_called, _f)) \
322 hash_set1 (vgm->init_functions_called, _f); \
328 /* External functions. */
329 clib_error_t *vlib_call_all_init_functions (struct vlib_main_t *vm);
330 clib_error_t *vlib_call_all_config_functions (struct vlib_main_t *vm,
331 unformat_input_t * input,
333 clib_error_t *vlib_call_all_main_loop_enter_functions (struct vlib_main_t
335 clib_error_t *vlib_call_all_main_loop_exit_functions (struct vlib_main_t *vm);
337 vlib_call_init_exit_functions (struct vlib_main_t *vm,
338 _vlib_init_function_list_elt_t **headp,
339 int call_once, int is_global);
341 vlib_call_init_exit_functions_no_sort (struct vlib_main_t *vm,
342 _vlib_init_function_list_elt_t **headp,
343 int call_once, int is_global);
344 clib_error_t *vlib_sort_init_exit_functions (_vlib_init_function_list_elt_t
346 #define foreach_vlib_module_reference \
350 /* Dummy function to get node_cli.c linked in. */
351 #define _(x) void vlib_##x##_reference (void);
352 foreach_vlib_module_reference
354 #define VLIB_INITS(...) (char*[]) { __VA_ARGS__, 0}
355 #endif /* included_vlib_init_h */
357 * fd.io coding-style-patch-verification: ON
360 * eval: (c-set-style "gnu")