Merge "Move rpc handler where it belongs, related cleanup"
[vpp.git] / vpp / vnet / main.c
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 #include <vlib/vlib.h>
16 #include <vlib/unix/unix.h>
17 #include <vnet/plugin/plugin.h>
18 #include <vnet/ethernet/ethernet.h>
19
20 #include <api/vpe_msg_enum.h>
21
22 /** \mainpage Virtual Packet Edge Documentation
23  * \section intro_sec Introduction
24  * 
25  * VPE is a specific vector packet processing application,
26  * designed to steer packets to/from tenant virtual machines.
27  *
28  */
29
30 static clib_error_t *
31 vpe_main_init (vlib_main_t * vm)
32 {
33     clib_error_t * error = 0;
34     void vnet_library_plugin_reference(void);
35
36     if (CLIB_DEBUG > 0)
37         vlib_unix_cli_set_prompt ("DBGvpp# ");
38     else
39         vlib_unix_cli_set_prompt ("vpp# ");
40
41     vnet_library_plugin_reference();
42
43     if ((error = vlib_call_init_function (vm, pg_init)))
44         return error;
45     if ((error = vlib_call_init_function (vm, ip_main_init)))
46         return error;
47     if ((error = vlib_call_init_function (vm, osi_init)))
48         return error;
49     if ((error = vlib_call_init_function (vm, l2_init)))
50         return error;
51     if ((error = vlib_call_init_function (vm, ethernet_init)))
52         return error;
53     if ((error = vlib_call_init_function (vm, ethernet_arp_init)))
54         return error;
55     if ((error = vlib_call_init_function (vm, sr_init)))
56         return error;
57     if ((error = vlib_call_init_function (vm, map_init)))
58         return error;
59     if ((error = vlib_call_init_function (vm, sixrd_init)))
60         return error;
61     if ((error = vlib_call_init_function (vm, nsh_gre_init)))
62         return error;
63     if ((error = vlib_call_init_function (vm, nsh_vxlan_gpe_init)))
64         return error;
65     if ((error = vlib_call_init_function (vm, lisp_gpe_init)))
66         return error;
67
68 #if DPDK == 1
69     if ((error = vlib_call_init_function (vm, dpdk_init)))
70         return error;
71     if ((error = vlib_call_init_function (vm, dpdk_thread_init)))
72         return error;
73     if ((error = vlib_call_init_function (vm, vhost_user_init)))
74         return error;
75     if ((error = vlib_call_init_function (vm, ipsec_init)))
76         return error;
77 #endif    
78     if ((error = vlib_call_init_function (vm, vlibmemory_init)))
79         return error;
80     if ((error = vlib_call_init_function (vm, l2tp_init)))
81        return error;
82     if ((error = vlib_call_init_function (vm, gre_init)))
83         return error;
84     if ((error = vlib_call_init_function (vm, gre_interface_init)))
85         return error;
86     if ((error = vlib_call_init_function (vm, mpls_init)))
87         return error;
88     if ((error = vlib_call_init_function (vm, mpls_interface_init)))
89         return error;
90     if ((error = vlib_call_init_function (vm, dhcp_proxy_init)))
91         return error;
92     if ((error = vlib_call_init_function (vm, dhcpv6_proxy_init)))
93         return error;
94     if ((error = vlib_call_init_function (vm, tapcli_init)))
95         return error;
96     if ((error = vlib_call_init_function (vm, tuntap_init)))
97         return error;
98     if ((error = vlib_call_init_function (vm, gdb_func_init)))
99         return error;
100     if ((error = unix_physmem_init
101          (vm, 0 /* fail_if_physical_memory_not_present */)))
102         return error;
103     if ((error = vlib_call_init_function (vm, tuntap_init)))
104         return error;
105     if ((error = vlib_call_init_function (vm, sr_init)))
106         return error;
107     if ((error = vlib_call_init_function (vm, l2_classify_init)))
108         return error;
109     if ((error = vlib_call_init_function (vm, policer_init)))
110         return error;
111     if ((error = vlib_call_init_function (vm, vxlan_init)))
112         return error;
113     if ((error = vlib_call_init_function (vm, vcgn_init)))
114         return error;
115     if ((error = vlib_call_init_function (vm, li_init)))
116         return error;
117
118     return error;
119 }
120
121 VLIB_INIT_FUNCTION (vpe_main_init);
122
123 /* 
124  * Load plugins from /usr/lib/vpp_plugins by default
125  */
126 char *vlib_plugin_path = "/usr/lib/vpp_plugins";
127                                                 
128 void *vnet_get_handoff_structure (void)
129 {
130     static vnet_plugin_handoff_t _rv, *rv = &_rv;
131
132     rv->vnet_main = vnet_get_main();
133     rv->ethernet_main = &ethernet_main;
134     return (void *)rv;
135 }
136
137 int main (int argc, char * argv[])
138 {
139     int i;
140     void vl_msg_api_set_first_available_msg_id (u16);
141     uword main_heap_size = (1ULL << 30);
142     u8 * sizep;
143     u32 size;
144     void vlib_set_get_handoff_structure_cb (void *cb);
145
146     /* 
147      * Look for and parse the "heapsize" config parameter.
148      * Manual since none of the clib infra has been bootstrapped yet.
149      *
150      * Format: heapsize <nn>[mM][gG] 
151      */
152
153     for (i = 1; i < (argc-1); i++) {
154         if (!strncmp (argv[i], "plugin_path", 11)) {
155             if (i < (argc-1))
156                 vlib_plugin_path = argv[++i];
157         } else if (!strncmp (argv[i], "heapsize", 8)) {
158             sizep = (u8 *) argv[i+1];
159             size = 0;
160             while (*sizep >= '0' && *sizep <= '9') {
161                 size *= 10;
162                 size += *sizep++ - '0';
163             }
164             if (size == 0) {
165                 fprintf
166                     (stderr, 
167                      "warning: heapsize parse error '%s', use default %lld\n",
168                      argv[i], (long long int) main_heap_size);
169                 goto defaulted;
170             }
171
172             main_heap_size = size;
173             
174             if (*sizep == 'g' || *sizep == 'G')
175                 main_heap_size <<= 30;
176             else if (*sizep == 'm' || *sizep == 'M')
177                 main_heap_size <<= 20;
178         }
179     }
180             
181 defaulted:
182
183     /* Set up the plugin message ID allocator right now... */
184     vl_msg_api_set_first_available_msg_id (VL_MSG_FIRST_AVAILABLE);
185
186     /* Allocate main heap */
187     if (clib_mem_init (0, main_heap_size)) {
188         vlib_set_get_handoff_structure_cb (&vnet_get_handoff_structure);
189         return vlib_unix_main (argc, argv);
190     } else {
191       {
192         int rv __attribute__((unused)) =
193           write (2, "Main heap allocation failure!\r\n", 31);
194       }
195         return 1;
196     }
197 }
198
199 static clib_error_t *
200 heapsize_config (vlib_main_t * vm, unformat_input_t * input)
201 {
202     u32 junk;
203
204     while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) {
205         if (unformat (input, "%dm", &junk)
206             || unformat (input, "%dM", &junk)
207             || unformat (input, "%dg", &junk)
208             || unformat (input, "%dG", &junk))
209             return 0;
210         else
211             return clib_error_return (0, "unknown input '%U'",
212                                       format_unformat_error, input);
213     }
214     return 0;
215 }
216
217 VLIB_CONFIG_FUNCTION (heapsize_config, "heapsize");
218
219 static clib_error_t *
220 plugin_path_config (vlib_main_t * vm, unformat_input_t * input)
221 {
222     u8 * junk;
223
224     while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) {
225         if (unformat (input, "%s", &junk)) {
226             vec_free(junk);
227             return 0;
228         }
229         else
230             return clib_error_return (0, "unknown input '%U'",
231                                       format_unformat_error, input);
232         }
233     return 0;
234 }
235
236 VLIB_CONFIG_FUNCTION (plugin_path_config, "plugin_path");
237
238 void vl_msg_api_post_mortem_dump(void);
239
240 void os_panic (void) 
241
242     vl_msg_api_post_mortem_dump();
243     abort (); 
244 }
245
246 void vhost_user_unmap_all (void) __attribute__((weak));
247 void vhost_user_unmap_all (void) { }
248
249 void os_exit (int code)
250
251     static int recursion_block;
252
253     if (code)
254       {
255         if (recursion_block)
256             abort();
257
258         recursion_block = 1;
259
260         vl_msg_api_post_mortem_dump();
261         vhost_user_unmap_all();
262         abort();
263       }
264     exit (code);
265 }
266
267 void vl_msg_api_barrier_sync(void) 
268
269   vlib_worker_thread_barrier_sync (vlib_get_main());
270 }
271
272 void vl_msg_api_barrier_release(void) 
273
274   vlib_worker_thread_barrier_release (vlib_get_main());
275 }
276
277 /* This application needs 1 thread stack for the stats pthread */
278 u32 vlib_app_num_thread_stacks_needed (void) 
279 {
280   return 1;
281 }
282
283 #if CLIB_DEBUG > 0
284
285 static clib_error_t *
286 test_crash_command_fn (vlib_main_t * vm,
287                        unformat_input_t * input,
288                        vlib_cli_command_t * cmd)
289 {
290   u64 * p = (u64 *)0xdefec8ed;
291
292   *p = 0xdeadbeef;
293
294   /* Not so much... */
295   return 0;
296 }
297
298 VLIB_CLI_COMMAND (test_crash_command, static) = {
299     .path = "test crash",
300     .short_help = "crash the bus!",
301     .function = test_crash_command_fn,
302 };
303
304 #endif
305