blob: a9367697a85f340d2dce283d6233396d8cb494c4 [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.h: 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#ifndef included_vlib_init_h
41#define included_vlib_init_h
42
43#include <vppinfra/error.h>
44#include <vppinfra/format.h>
45#include <vppinfra/hash.h>
46
47/* Init/exit functions: called at start/end of main routine. Init
48 functions are typically used to register and setup packet
49 processing nodes. */
50
Dave Barach9b8ffd92016-07-08 08:13:45 -040051typedef clib_error_t *(vlib_init_function_t) (struct vlib_main_t * vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -070052
Dave Barach9b8ffd92016-07-08 08:13:45 -040053typedef struct _vlib_init_function_list_elt
54{
55 struct _vlib_init_function_list_elt *next_init_function;
56 vlib_init_function_t *f;
Ed Warnickecb9cada2015-12-08 15:45:58 -070057} _vlib_init_function_list_elt_t;
58
59/* Configuration functions: called with configuration input just before
60 main polling loop starts. */
Dave Barach9b8ffd92016-07-08 08:13:45 -040061typedef clib_error_t *(vlib_config_function_t) (struct vlib_main_t * vm,
62 unformat_input_t * input);
Ed Warnickecb9cada2015-12-08 15:45:58 -070063
Dave Barach9b8ffd92016-07-08 08:13:45 -040064typedef struct vlib_config_function_runtime_t
65{
Ed Warnickecb9cada2015-12-08 15:45:58 -070066 /* Function to call. Set to null once function has already been called. */
Dave Barach9b8ffd92016-07-08 08:13:45 -040067 vlib_config_function_t *function;
Ed Warnickecb9cada2015-12-08 15:45:58 -070068
69 /* Input for function. */
70 unformat_input_t input;
71
72 /* next config function registration */
Dave Barach9b8ffd92016-07-08 08:13:45 -040073 struct vlib_config_function_runtime_t *next_registration;
Ed Warnickecb9cada2015-12-08 15:45:58 -070074
75 /* To be invoked as soon as the clib heap is available */
76 u8 is_early;
77
78 /* Name used to distinguish input on command line. */
79 char name[32];
80} vlib_config_function_runtime_t;
81
Damjan Marion72d2c4f2018-04-05 21:32:29 +020082#define VLIB_REMOVE_FROM_LINKED_LIST(first,p,next) \
83{ \
Damjan Marion13adc3d2018-04-09 20:59:53 +020084 ASSERT (first); \
Damjan Marion72d2c4f2018-04-05 21:32:29 +020085 if (first == p) \
86 first = (p)->next; \
87 else \
88 { \
89 __typeof__ (p) current = first; \
Damjan Marion13adc3d2018-04-09 20:59:53 +020090 while (current->next) \
91 { \
92 if (current->next == p) \
93 { \
94 current->next = current->next->next; \
95 break; \
96 } \
97 current = current->next; \
98 } \
99 ASSERT (current); \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200100 } \
101}
102
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103#define _VLIB_INIT_FUNCTION_SYMBOL(x, type) \
104 _vlib_##type##_function_##x
105
106#define VLIB_INIT_FUNCTION_SYMBOL(x) \
107 _VLIB_INIT_FUNCTION_SYMBOL(x, init)
108#define VLIB_MAIN_LOOP_ENTER_FUNCTION_SYMBOL(x) \
109 _VLIB_INIT_FUNCTION_SYMBOL(x, main_loop_enter)
110#define VLIB_MAIN_LOOP_EXIT_FUNCTION_SYMBOL(x) \
111 _VLIB_INIT_FUNCTION_SYMBOL(x, main_loop_exit)
112#define VLIB_CONFIG_FUNCTION_SYMBOL(x) \
113 _VLIB_INIT_FUNCTION_SYMBOL(x, config)
114
115/* Declaration is global (e.g. not static) so that init functions can
116 be called from other modules to resolve init function depend. */
117
Damjan Marion6e363512018-08-10 22:39:11 +0200118#ifndef CLIB_MARCH_VARIANT
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119#define VLIB_DECLARE_INIT_FUNCTION(x, tag) \
120vlib_init_function_t * _VLIB_INIT_FUNCTION_SYMBOL (x, tag) = x; \
121static void __vlib_add_##tag##_function_##x (void) \
122 __attribute__((__constructor__)) ; \
123static void __vlib_add_##tag##_function_##x (void) \
124{ \
125 vlib_main_t * vm = vlib_get_main(); \
126 static _vlib_init_function_list_elt_t _vlib_init_function; \
127 _vlib_init_function.next_init_function \
128 = vm->tag##_function_registrations; \
129 vm->tag##_function_registrations = &_vlib_init_function; \
130 _vlib_init_function.f = &x; \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200131} \
132static void __vlib_rm_##tag##_function_##x (void) \
133 __attribute__((__destructor__)) ; \
134static void __vlib_rm_##tag##_function_##x (void) \
135{ \
136 vlib_main_t * vm = vlib_get_main(); \
137 _vlib_init_function_list_elt_t *next; \
138 if (vm->tag##_function_registrations->f == &x) \
139 { \
140 vm->tag##_function_registrations = \
141 vm->tag##_function_registrations->next_init_function; \
142 return; \
143 } \
144 next = vm->tag##_function_registrations; \
145 while (next->next_init_function) \
146 { \
147 if (next->next_init_function->f == &x) \
148 { \
149 next->next_init_function = \
150 next->next_init_function->next_init_function; \
151 return; \
152 } \
153 next = next->next_init_function; \
154 } \
Dave Barach9b8ffd92016-07-08 08:13:45 -0400155}
Damjan Marion6e363512018-08-10 22:39:11 +0200156#else
157/* create unused pointer to silence compiler warnings and get whole
158 function optimized out */
159#define VLIB_DECLARE_INIT_FUNCTION(x, tag) \
160static __clib_unused void * __clib_unused_##tag##_##x = x;
161#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162
163#define VLIB_INIT_FUNCTION(x) VLIB_DECLARE_INIT_FUNCTION(x,init)
Damjan Marione9f929b2017-03-16 11:32:09 +0100164#define VLIB_WORKER_INIT_FUNCTION(x) VLIB_DECLARE_INIT_FUNCTION(x,worker_init)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700165
166#define VLIB_MAIN_LOOP_ENTER_FUNCTION(x) \
167 VLIB_DECLARE_INIT_FUNCTION(x,main_loop_enter)
168#define VLIB_MAIN_LOOP_EXIT_FUNCTION(x) \
169VLIB_DECLARE_INIT_FUNCTION(x,main_loop_exit)
170
Damjan Marion6e363512018-08-10 22:39:11 +0200171#ifndef CLIB_MARCH_VARIANT
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172#define VLIB_CONFIG_FUNCTION(x,n,...) \
173 __VA_ARGS__ vlib_config_function_runtime_t \
174 VLIB_CONFIG_FUNCTION_SYMBOL(x); \
175static void __vlib_add_config_function_##x (void) \
176 __attribute__((__constructor__)) ; \
177static void __vlib_add_config_function_##x (void) \
178{ \
179 vlib_main_t * vm = vlib_get_main(); \
180 VLIB_CONFIG_FUNCTION_SYMBOL(x).next_registration \
181 = vm->config_function_registrations; \
182 vm->config_function_registrations \
183 = &VLIB_CONFIG_FUNCTION_SYMBOL(x); \
184} \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200185static void __vlib_rm_config_function_##x (void) \
186 __attribute__((__destructor__)) ; \
187static void __vlib_rm_config_function_##x (void) \
188{ \
189 vlib_main_t * vm = vlib_get_main(); \
190 vlib_config_function_runtime_t *p = \
191 & VLIB_CONFIG_FUNCTION_SYMBOL (x); \
192 VLIB_REMOVE_FROM_LINKED_LIST \
193 (vm->config_function_registrations, p, next_registration);\
194} \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195 vlib_config_function_runtime_t \
196 VLIB_CONFIG_FUNCTION_SYMBOL (x) \
197 = { \
198 .name = n, \
199 .function = x, \
200 .is_early = 0, \
201 }
Damjan Marion6e363512018-08-10 22:39:11 +0200202#else
203/* create unused pointer to silence compiler warnings and get whole
204 function optimized out */
205#define VLIB_CONFIG_FUNCTION(x,n,...) \
206 static __clib_unused vlib_config_function_runtime_t \
207 VLIB_CONFIG_FUNCTION_SYMBOL (__clib_unused_##x) \
208 = { \
209 .name = n, \
210 .function = x, \
211 .is_early = 0, \
212 }
213#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700214
Damjan Marion6e363512018-08-10 22:39:11 +0200215#ifndef CLIB_MARCH_VARIANT
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216#define VLIB_EARLY_CONFIG_FUNCTION(x,n,...) \
217 __VA_ARGS__ vlib_config_function_runtime_t \
218 VLIB_CONFIG_FUNCTION_SYMBOL(x); \
219static void __vlib_add_config_function_##x (void) \
220 __attribute__((__constructor__)) ; \
221static void __vlib_add_config_function_##x (void) \
222{ \
223 vlib_main_t * vm = vlib_get_main(); \
224 VLIB_CONFIG_FUNCTION_SYMBOL(x).next_registration \
225 = vm->config_function_registrations; \
226 vm->config_function_registrations \
227 = &VLIB_CONFIG_FUNCTION_SYMBOL(x); \
228} \
Damjan Marion72d2c4f2018-04-05 21:32:29 +0200229static void __vlib_rm_config_function_##x (void) \
230 __attribute__((__destructor__)) ; \
231static void __vlib_rm_config_function_##x (void) \
232{ \
233 vlib_main_t * vm = vlib_get_main(); \
234 vlib_config_function_runtime_t *p = \
235 & VLIB_CONFIG_FUNCTION_SYMBOL (x); \
236 VLIB_REMOVE_FROM_LINKED_LIST \
237 (vm->config_function_registrations, p, next_registration);\
238} \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239 vlib_config_function_runtime_t \
240 VLIB_CONFIG_FUNCTION_SYMBOL (x) \
241 = { \
242 .name = n, \
243 .function = x, \
244 .is_early = 1, \
245 }
Damjan Marion6e363512018-08-10 22:39:11 +0200246#else
247/* create unused pointer to silence compiler warnings and get whole
248 function optimized out */
249#define VLIB_EARLY_CONFIG_FUNCTION(x,n,...) \
250 static __clib_unused vlib_config_function_runtime_t \
251 VLIB_CONFIG_FUNCTION_SYMBOL (__clib_unused_##x) \
252 = { \
253 .name = n, \
254 .function = x, \
255 .is_early = 1, \
256 }
257#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258
259/* Call given init function: used for init function dependencies. */
260#define vlib_call_init_function(vm, x) \
261 ({ \
262 extern vlib_init_function_t * VLIB_INIT_FUNCTION_SYMBOL (x); \
263 vlib_init_function_t * _f = VLIB_INIT_FUNCTION_SYMBOL (x); \
264 clib_error_t * _error = 0; \
265 if (! hash_get (vm->init_functions_called, _f)) \
266 { \
267 hash_set1 (vm->init_functions_called, _f); \
268 _error = _f (vm); \
269 } \
270 _error; \
271 })
272
Dave Barach1f49ed62016-02-24 11:29:06 -0500273/* Don't call given init function: used to suppress parts of the netstack */
274#define vlib_mark_init_function_complete(vm, x) \
275 ({ \
276 extern vlib_init_function_t * VLIB_INIT_FUNCTION_SYMBOL (x); \
277 vlib_init_function_t * _f = VLIB_INIT_FUNCTION_SYMBOL (x); \
278 hash_set1 (vm->init_functions_called, _f); \
279 })
280
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281#define vlib_call_post_graph_init_function(vm, x) \
282 ({ \
283 extern vlib_init_function_t * VLIB_POST_GRAPH_INIT_FUNCTION_SYMBOL (x); \
284 vlib_init_function_t * _f = VLIB_POST_GRAPH_INIT_FUNCTION_SYMBOL (x); \
285 clib_error_t * _error = 0; \
286 if (! hash_get (vm->init_functions_called, _f)) \
287 { \
288 hash_set1 (vm->init_functions_called, _f); \
289 _error = _f (vm); \
290 } \
291 _error; \
292 })
293
294#define vlib_call_config_function(vm, x) \
295 ({ \
296 vlib_config_function_runtime_t * _r; \
297 clib_error_t * _error = 0; \
298 extern vlib_config_function_runtime_t \
299 VLIB_CONFIG_FUNCTION_SYMBOL (x); \
300 \
301 _r = &VLIB_CONFIG_FUNCTION_SYMBOL (x); \
302 if (! hash_get (vm->init_functions_called, _r->function)) \
303 { \
304 hash_set1 (vm->init_functions_called, _r->function); \
305 _error = _r->function (vm, &_r->input); \
306 } \
307 _error; \
308 })
309
310/* External functions. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400311clib_error_t *vlib_call_all_init_functions (struct vlib_main_t *vm);
312clib_error_t *vlib_call_all_config_functions (struct vlib_main_t *vm,
313 unformat_input_t * input,
314 int is_early);
315clib_error_t *vlib_call_all_main_loop_enter_functions (struct vlib_main_t
316 *vm);
317clib_error_t *vlib_call_all_main_loop_exit_functions (struct vlib_main_t *vm);
318clib_error_t *vlib_call_init_exit_functions (struct vlib_main_t *vm,
319 _vlib_init_function_list_elt_t *
320 head, int call_once);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321
322#define foreach_vlib_module_reference \
323 _ (node_cli) \
324 _ (trace_cli)
325
326/* Dummy function to get node_cli.c linked in. */
327#define _(x) void vlib_##x##_reference (void);
328foreach_vlib_module_reference
329#undef _
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330#endif /* included_vlib_init_h */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400331/*
332 * fd.io coding-style-patch-verification: ON
333 *
334 * Local Variables:
335 * eval: (c-set-style "gnu")
336 * End:
337 */