aarch64 CPU arch / ThunderX platform initial support
[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, map_init)))
56         return error;
57     if ((error = vlib_call_init_function (vm, sixrd_init)))
58         return error;
59     if ((error = vlib_call_init_function (vm, nsh_gre_init)))
60         return error;
61     if ((error = vlib_call_init_function (vm, nsh_vxlan_gpe_init)))
62         return error;
63     if ((error = vlib_call_init_function (vm, lisp_gpe_init)))
64         return error;
65
66 #if DPDK == 1
67     if ((error = vlib_call_init_function (vm, dpdk_init)))
68         return error;
69     if ((error = vlib_call_init_function (vm, dpdk_thread_init)))
70         return error;
71     if ((error = vlib_call_init_function (vm, vhost_user_init)))
72         return error;
73 #if IPSEC > 0
74     if ((error = vlib_call_init_function (vm, ipsec_init)))
75         return error;
76 #endif /* IPSEC */
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 IPV6SR > 0
106     if ((error = vlib_call_init_function (vm, sr_init)))
107         return error;
108 #endif
109     if ((error = vlib_call_init_function (vm, l2_classify_init)))
110         return error;
111     if ((error = vlib_call_init_function (vm, policer_init)))
112         return error;
113     if ((error = vlib_call_init_function (vm, vxlan_init)))
114         return error;
115 #if VCGN > 0
116     if ((error = vlib_call_init_function (vm, vcgn_init)))
117         return error;
118 #endif
119     if ((error = vlib_call_init_function (vm, li_init)))
120         return error;
121
122     return error;
123 }
124
125 VLIB_INIT_FUNCTION (vpe_main_init);
126
127 /* 
128  * Load plugins from /usr/lib/vpp_plugins by default
129  */
130 char *vlib_plugin_path = "/usr/lib/vpp_plugins";
131                                                 
132 void *vnet_get_handoff_structure (void)
133 {
134     static vnet_plugin_handoff_t _rv, *rv = &_rv;
135
136     rv->vnet_main = vnet_get_main();
137     rv->ethernet_main = &ethernet_main;
138     return (void *)rv;
139 }
140
141 int main (int argc, char * argv[])
142 {
143     int i;
144     void vl_msg_api_set_first_available_msg_id (u16);
145     uword main_heap_size = (1ULL << 30);
146     u8 * sizep;
147     u32 size;
148     void vlib_set_get_handoff_structure_cb (void *cb);
149
150     /*
151      * Load startup config from file.
152      * usage: vpp -c /etc/vpp/startup.conf
153      */
154     if ((argc == 3) && !strncmp(argv[1], "-c", 2))
155       {
156         FILE * fp;
157         char inbuf[4096];
158         int argc_ = 1;
159         char ** argv_ = NULL;
160         char * arg = NULL;
161         char * p;
162
163         fp = fopen (argv[2], "r");
164         if (fp == NULL)
165           {
166             fprintf(stderr, "open configuration file '%s' failed\n", argv[2]);
167             return 1;
168           }
169         argv_ = calloc(1, sizeof(char *));
170         if (argv_ == NULL)
171           return 1;
172         arg = strndup(argv[0], 1024);
173         if (arg == NULL)
174           return 1;
175         argv_[0] = arg;
176
177         while (1) {
178           if (fgets(inbuf, 4096, fp) == 0)
179             break;
180           p = strtok(inbuf, " \t\n");
181           while (p != NULL) {
182             if (*p == '#')
183               break;
184             argc_++;
185             char ** tmp = realloc(argv_, argc_ * sizeof(char *));
186             if (tmp == NULL)
187               return 1;
188             argv_ = tmp;
189             arg = strndup(p, 1024);
190             if (arg == NULL)
191               return 1;
192             argv_[argc_ - 1] = arg;
193             p = strtok(NULL, " \t\n");
194           }
195         }
196
197         fclose(fp);
198
199         char ** tmp = realloc(argv_, (argc_ + 1) * sizeof(char *));
200         if (tmp == NULL)
201            return 1;
202         argv_ = tmp;
203         argv_[argc_] = NULL;
204
205         argc = argc_;
206         argv = argv_;
207       }
208
209     /* 
210      * Look for and parse the "heapsize" config parameter.
211      * Manual since none of the clib infra has been bootstrapped yet.
212      *
213      * Format: heapsize <nn>[mM][gG] 
214      */
215
216     for (i = 1; i < (argc-1); i++) {
217         if (!strncmp (argv[i], "plugin_path", 11)) {
218             if (i < (argc-1))
219                 vlib_plugin_path = argv[++i];
220         } else if (!strncmp (argv[i], "heapsize", 8)) {
221             sizep = (u8 *) argv[i+1];
222             size = 0;
223             while (*sizep >= '0' && *sizep <= '9') {
224                 size *= 10;
225                 size += *sizep++ - '0';
226             }
227             if (size == 0) {
228                 fprintf
229                     (stderr, 
230                      "warning: heapsize parse error '%s', use default %lld\n",
231                      argv[i], (long long int) main_heap_size);
232                 goto defaulted;
233             }
234
235             main_heap_size = size;
236             
237             if (*sizep == 'g' || *sizep == 'G')
238                 main_heap_size <<= 30;
239             else if (*sizep == 'm' || *sizep == 'M')
240                 main_heap_size <<= 20;
241         }
242     }
243             
244 defaulted:
245
246     /* Set up the plugin message ID allocator right now... */
247     vl_msg_api_set_first_available_msg_id (VL_MSG_FIRST_AVAILABLE);
248
249     /* Allocate main heap */
250     if (clib_mem_init (0, main_heap_size)) {
251         vlib_set_get_handoff_structure_cb (&vnet_get_handoff_structure);
252         return vlib_unix_main (argc, argv);
253     } else {
254       {
255         int rv __attribute__((unused)) =
256           write (2, "Main heap allocation failure!\r\n", 31);
257       }
258         return 1;
259     }
260 }
261
262 static clib_error_t *
263 heapsize_config (vlib_main_t * vm, unformat_input_t * input)
264 {
265     u32 junk;
266
267     while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) {
268         if (unformat (input, "%dm", &junk)
269             || unformat (input, "%dM", &junk)
270             || unformat (input, "%dg", &junk)
271             || unformat (input, "%dG", &junk))
272             return 0;
273         else
274             return clib_error_return (0, "unknown input '%U'",
275                                       format_unformat_error, input);
276     }
277     return 0;
278 }
279
280 VLIB_CONFIG_FUNCTION (heapsize_config, "heapsize");
281
282 static clib_error_t *
283 plugin_path_config (vlib_main_t * vm, unformat_input_t * input)
284 {
285     u8 * junk;
286
287     while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) {
288         if (unformat (input, "%s", &junk)) {
289             vec_free(junk);
290             return 0;
291         }
292         else
293             return clib_error_return (0, "unknown input '%U'",
294                                       format_unformat_error, input);
295         }
296     return 0;
297 }
298
299 VLIB_CONFIG_FUNCTION (plugin_path_config, "plugin_path");
300
301 void vl_msg_api_post_mortem_dump(void);
302
303 void os_panic (void) 
304
305     vl_msg_api_post_mortem_dump();
306     abort (); 
307 }
308
309 void vhost_user_unmap_all (void) __attribute__((weak));
310 void vhost_user_unmap_all (void) { }
311
312 void os_exit (int code)
313
314     static int recursion_block;
315
316     if (code)
317       {
318         if (recursion_block)
319             abort();
320
321         recursion_block = 1;
322
323         vl_msg_api_post_mortem_dump();
324         vhost_user_unmap_all();
325         abort();
326       }
327     exit (code);
328 }
329
330 void vl_msg_api_barrier_sync(void) 
331
332   vlib_worker_thread_barrier_sync (vlib_get_main());
333 }
334
335 void vl_msg_api_barrier_release(void) 
336
337   vlib_worker_thread_barrier_release (vlib_get_main());
338 }
339
340 /* This application needs 1 thread stack for the stats pthread */
341 u32 vlib_app_num_thread_stacks_needed (void) 
342 {
343   return 1;
344 }
345
346 /* 
347  * Depending on the configuration selected above,
348  * it may be necessary to generate stub graph nodes.
349  * It is never OK to ignore "node 'x' refers to unknown node 'y'
350  * messages!
351  */
352
353 #if IPV6SR == 0
354 #define foreach_ipv6_sr_stub_node \
355 _(ipsec-output, ipsec_output)
356 #else
357 #define foreach_ipv6_sr_stub_node
358 #endif
359
360 #define _(n,m)                                          \
361 static uword                                            \
362 m##_node_fn (vlib_main_t *vm,                           \
363            vlib_node_runtime_t *node,                   \
364            vlib_frame_t *frame)                         \
365 {                                                       \
366   clib_warning("unimplemented, leaking buffers...");    \
367   return 0;                                             \
368 }                                                       \
369                                                         \
370 VLIB_REGISTER_NODE(m##_node) = {                        \
371   .function = m##_node_fn,                              \
372   .name = #n,                                           \
373   .vector_size = sizeof(u32),                           \
374   .type = VLIB_NODE_TYPE_INTERNAL,                      \
375 };
376 foreach_ipv6_sr_stub_node;
377 #undef _
378
379 #if CLIB_DEBUG > 0
380
381 static clib_error_t *
382 test_crash_command_fn (vlib_main_t * vm,
383                        unformat_input_t * input,
384                        vlib_cli_command_t * cmd)
385 {
386   u64 * p = (u64 *)0xdefec8ed;
387
388   *p = 0xdeadbeef;
389
390   /* Not so much... */
391   return 0;
392 }
393
394 VLIB_CLI_COMMAND (test_crash_command, static) = {
395     .path = "test crash",
396     .short_help = "crash the bus!",
397     .function = test_crash_command_fn,
398 };
399
400 #endif
401