flow-hash: Add symmetric flag for flow hashing
[vpp.git] / src / vlib / init.h
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.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
51 typedef clib_error_t *(vlib_init_function_t) (struct vlib_main_t * vm);
52
53 typedef struct _vlib_init_function_list_elt
54 {
55   struct _vlib_init_function_list_elt *next_init_function;
56   vlib_init_function_t *f;
57 } _vlib_init_function_list_elt_t;
58
59 /* Configuration functions: called with configuration input just before
60    main polling loop starts. */
61 typedef clib_error_t *(vlib_config_function_t) (struct vlib_main_t * vm,
62                                                 unformat_input_t * input);
63
64 typedef struct vlib_config_function_runtime_t
65 {
66   /* Function to call.  Set to null once function has already been called. */
67   vlib_config_function_t *function;
68
69   /* Input for function. */
70   unformat_input_t input;
71
72   /* next config function registration */
73   struct vlib_config_function_runtime_t *next_registration;
74
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
82 #define VLIB_REMOVE_FROM_LINKED_LIST(first,p,next)              \
83 {                                                               \
84   ASSERT (first);                                               \
85   if (first == p)                                               \
86       first = (p)->next;                                        \
87   else                                                          \
88     {                                                           \
89       __typeof__ (p) current = first;                           \
90       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);                                         \
100     }                                                           \
101 }
102
103 #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
118 #ifndef CLIB_MARCH_VARIANT
119 #define VLIB_DECLARE_INIT_FUNCTION(x, tag)                      \
120 vlib_init_function_t * _VLIB_INIT_FUNCTION_SYMBOL (x, tag) = x; \
121 static void __vlib_add_##tag##_function_##x (void)              \
122     __attribute__((__constructor__)) ;                          \
123 static 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;                                    \
131 }                                                               \
132 static void __vlib_rm_##tag##_function_##x (void)               \
133     __attribute__((__destructor__)) ;                           \
134 static 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     }                                                           \
155 }
156 #else
157 /* create unused pointer to silence compiler warnings and get whole
158    function optimized out */
159 #define VLIB_DECLARE_INIT_FUNCTION(x, tag)                      \
160 static __clib_unused void * __clib_unused_##tag##_##x = x;
161 #endif
162
163 #define VLIB_INIT_FUNCTION(x) VLIB_DECLARE_INIT_FUNCTION(x,init)
164 #define VLIB_WORKER_INIT_FUNCTION(x) VLIB_DECLARE_INIT_FUNCTION(x,worker_init)
165
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) \
169 VLIB_DECLARE_INIT_FUNCTION(x,main_loop_exit)
170
171 #ifndef CLIB_MARCH_VARIANT
172 #define VLIB_CONFIG_FUNCTION(x,n,...)                           \
173     __VA_ARGS__ vlib_config_function_runtime_t                  \
174     VLIB_CONFIG_FUNCTION_SYMBOL(x);                             \
175 static void __vlib_add_config_function_##x (void)               \
176     __attribute__((__constructor__)) ;                          \
177 static 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 }                                                               \
185 static void __vlib_rm_config_function_##x (void)                \
186     __attribute__((__destructor__)) ;                           \
187 static 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 }                                                               \
195   vlib_config_function_runtime_t                                \
196     VLIB_CONFIG_FUNCTION_SYMBOL (x)                             \
197   = {                                                           \
198     .name = n,                                                  \
199     .function = x,                                              \
200     .is_early = 0,                                              \
201   }
202 #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
214
215 #ifndef CLIB_MARCH_VARIANT
216 #define VLIB_EARLY_CONFIG_FUNCTION(x,n,...)                     \
217     __VA_ARGS__ vlib_config_function_runtime_t                  \
218     VLIB_CONFIG_FUNCTION_SYMBOL(x);                             \
219 static void __vlib_add_config_function_##x (void)               \
220     __attribute__((__constructor__)) ;                          \
221 static 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 }                                                               \
229 static void __vlib_rm_config_function_##x (void)                \
230     __attribute__((__destructor__)) ;                           \
231 static 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 }                                                               \
239   vlib_config_function_runtime_t                                \
240     VLIB_CONFIG_FUNCTION_SYMBOL (x)                             \
241   = {                                                           \
242     .name = n,                                                  \
243     .function = x,                                              \
244     .is_early = 1,                                              \
245   }
246 #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
258
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
273 /* 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
281 #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. */
311 clib_error_t *vlib_call_all_init_functions (struct vlib_main_t *vm);
312 clib_error_t *vlib_call_all_config_functions (struct vlib_main_t *vm,
313                                               unformat_input_t * input,
314                                               int is_early);
315 clib_error_t *vlib_call_all_main_loop_enter_functions (struct vlib_main_t
316                                                        *vm);
317 clib_error_t *vlib_call_all_main_loop_exit_functions (struct vlib_main_t *vm);
318 clib_error_t *vlib_call_init_exit_functions (struct vlib_main_t *vm,
319                                              _vlib_init_function_list_elt_t *
320                                              head, int call_once);
321
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);
328 foreach_vlib_module_reference
329 #undef _
330 #endif /* included_vlib_init_h */
331 /*
332  * fd.io coding-style-patch-verification: ON
333  *
334  * Local Variables:
335  * eval: (c-set-style "gnu")
336  * End:
337  */