fd8a7e863a14075482414a3aaa2cd9e81d2d6a46
[vpp.git] / src / vlib / unix / 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 /*
16  * main.c: Unix main routine
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 #include <vlib/vlib.h>
40 #include <vlib/unix/unix.h>
41 #include <vlib/unix/plugin.h>
42
43 #include <limits.h>
44 #include <signal.h>
45 #include <sys/ucontext.h>
46 #include <syslog.h>
47 #include <sys/types.h>
48 #include <sys/stat.h>
49 #include <fcntl.h>
50 #include <sys/time.h>
51 #include <sys/resource.h>
52 #include <unistd.h>
53
54 /** Default CLI pager limit is not configured in startup.conf */
55 #define UNIX_CLI_DEFAULT_PAGER_LIMIT 100000
56
57 /** Default CLI history depth if not configured in startup.conf */
58 #define UNIX_CLI_DEFAULT_HISTORY 50
59
60 char *vlib_default_runtime_dir __attribute__ ((weak));
61 char *vlib_default_runtime_dir = "vlib";
62
63 unix_main_t unix_main;
64 clib_file_main_t file_main;
65
66 static clib_error_t *
67 unix_main_init (vlib_main_t * vm)
68 {
69   unix_main_t *um = &unix_main;
70   um->vlib_main = vm;
71   return 0;
72 }
73
74 /* *INDENT-OFF* */
75 VLIB_INIT_FUNCTION (unix_main_init) =
76 {
77   .runs_before = VLIB_INITS ("unix_input_init"),
78 };
79 /* *INDENT-ON* */
80
81 static int
82 unsetup_signal_handlers (int sig)
83 {
84   struct sigaction sa;
85
86   sa.sa_handler = SIG_DFL;
87   sa.sa_flags = 0;
88   sigemptyset (&sa.sa_mask);
89   return sigaction (sig, &sa, 0);
90 }
91
92
93 /* allocate this buffer from mheap when setting up the signal handler.
94     dangerous to vec_resize it when crashing, mheap itself might have been
95     corrupted already */
96 static u8 *syslog_msg = 0;
97 int vlib_last_signum = 0;
98 uword vlib_last_faulting_address = 0;
99
100 static void
101 unix_signal_handler (int signum, siginfo_t * si, ucontext_t * uc)
102 {
103   uword fatal = 0;
104
105   /* These come in handy when looking at core files from optimized images */
106   vlib_last_signum = signum;
107   vlib_last_faulting_address = (uword) si->si_addr;
108
109   syslog_msg = format (syslog_msg, "received signal %U, PC %U",
110                        format_signal, signum, format_ucontext_pc, uc);
111
112   if (signum == SIGSEGV)
113     syslog_msg = format (syslog_msg, ", faulting address %p", si->si_addr);
114
115   switch (signum)
116     {
117       /* these (caught) signals cause the application to exit */
118     case SIGTERM:
119       /*
120        * Ignore SIGTERM if it's sent before we're ready.
121        */
122       if (unix_main.vlib_main && unix_main.vlib_main->main_loop_exit_set)
123         {
124           syslog (LOG_ERR | LOG_DAEMON, "received SIGTERM, exiting...");
125           unix_main.vlib_main->main_loop_exit_now = 1;
126         }
127       else
128         syslog (LOG_ERR | LOG_DAEMON, "IGNORE early SIGTERM...");
129       break;
130       /* fall through */
131     case SIGQUIT:
132     case SIGINT:
133     case SIGILL:
134     case SIGBUS:
135     case SIGSEGV:
136     case SIGHUP:
137     case SIGFPE:
138     case SIGABRT:
139       fatal = 1;
140       break;
141
142       /* by default, print a message and continue */
143     default:
144       fatal = 0;
145       break;
146     }
147
148 #ifdef CLIB_GCOV
149   /*
150    * Test framework sends SIGTERM, so we need to flush the
151    * code coverage stats here.
152    */
153   {
154     void __gcov_flush (void);
155     __gcov_flush ();
156   }
157 #endif
158
159   /* Null terminate. */
160   vec_add1 (syslog_msg, 0);
161
162   if (fatal)
163     {
164       syslog (LOG_ERR | LOG_DAEMON, "%s", syslog_msg);
165
166       /* Address of callers: outer first, inner last. */
167       uword callers[15];
168       uword n_callers = clib_backtrace (callers, ARRAY_LEN (callers), 0);
169       int i;
170       for (i = 0; i < n_callers; i++)
171         {
172           vec_reset_length (syslog_msg);
173
174           syslog_msg =
175             format (syslog_msg, "#%-2d 0x%016lx %U%c", i, callers[i],
176                     format_clib_elf_symbol_with_address, callers[i], 0);
177
178           syslog (LOG_ERR | LOG_DAEMON, "%s", syslog_msg);
179         }
180
181       /* have to remove SIGABRT to avoid recursive - os_exit calling abort() */
182       unsetup_signal_handlers (SIGABRT);
183
184       /* os_exit(1) causes core generation, skip that for SIGINT, SIGHUP */
185       if (signum == SIGINT || signum == SIGHUP)
186         os_exit (0);
187       else
188         os_exit (1);
189     }
190   else
191     clib_warning ("%s", syslog_msg);
192
193 }
194
195 static clib_error_t *
196 setup_signal_handlers (unix_main_t * um)
197 {
198   uword i;
199   struct sigaction sa;
200
201   /* give a big enough buffer for msg, most likely it can avoid vec_resize  */
202   vec_alloc (syslog_msg, 2048);
203
204   for (i = 1; i < 32; i++)
205     {
206       clib_memset (&sa, 0, sizeof (sa));
207       sa.sa_sigaction = (void *) unix_signal_handler;
208       sa.sa_flags = SA_SIGINFO;
209
210       switch (i)
211         {
212           /* these signals take the default action */
213         case SIGKILL:
214         case SIGCONT:
215         case SIGSTOP:
216         case SIGUSR1:
217         case SIGUSR2:
218         case SIGPROF:
219           continue;
220
221           /* ignore SIGPIPE, SIGCHLD */
222         case SIGPIPE:
223         case SIGCHLD:
224           sa.sa_sigaction = (void *) SIG_IGN;
225           break;
226
227           /* catch and handle all other signals */
228         default:
229           break;
230         }
231
232       if (sigaction (i, &sa, 0) < 0)
233         return clib_error_return_unix (0, "sigaction %U", format_signal, i);
234     }
235
236   return 0;
237 }
238
239 static void
240 unix_error_handler (void *arg, u8 * msg, int msg_len)
241 {
242   unix_main_t *um = arg;
243
244   /* Echo to stderr when interactive or syslog is disabled. */
245   if (um->flags & (UNIX_FLAG_INTERACTIVE | UNIX_FLAG_NOSYSLOG))
246     {
247       CLIB_UNUSED (int r) = write (2, msg, msg_len);
248     }
249   else
250     {
251       syslog (LOG_ERR | LOG_DAEMON, "%.*s", msg_len, msg);
252     }
253 }
254
255 void
256 vlib_unix_error_report (vlib_main_t * vm, clib_error_t * error)
257 {
258   unix_main_t *um = &unix_main;
259
260   if (um->flags & UNIX_FLAG_INTERACTIVE || error == 0)
261     return;
262
263   {
264     u8 *msg = error->what;
265     u32 len = vec_len (msg);
266     int msg_len = (len > INT_MAX) ? INT_MAX : len;
267     syslog (LOG_ERR | LOG_DAEMON, "%.*s", msg_len, msg);
268   }
269 }
270
271 static uword
272 startup_config_process (vlib_main_t * vm,
273                         vlib_node_runtime_t * rt, vlib_frame_t * f)
274 {
275   unix_main_t *um = &unix_main;
276   u8 *buf = 0;
277   uword l, n = 1;
278
279   vlib_process_suspend (vm, 2.0);
280
281   while (um->unix_config_complete == 0)
282     vlib_process_suspend (vm, 0.1);
283
284   if (um->startup_config_filename)
285     {
286       unformat_input_t sub_input;
287       int fd;
288       struct stat s;
289       char *fn = (char *) um->startup_config_filename;
290
291       fd = open (fn, O_RDONLY);
292       if (fd < 0)
293         {
294           clib_warning ("failed to open `%s'", fn);
295           return 0;
296         }
297
298       if (fstat (fd, &s) < 0)
299         {
300           clib_warning ("failed to stat `%s'", fn);
301         bail:
302           close (fd);
303           return 0;
304         }
305
306       if (!(S_ISREG (s.st_mode) || S_ISLNK (s.st_mode)))
307         {
308           clib_warning ("not a regular file: `%s'", fn);
309           goto bail;
310         }
311
312       while (n > 0)
313         {
314           l = vec_len (buf);
315           vec_resize (buf, 4096);
316           n = read (fd, buf + l, 4096);
317           if (n > 0)
318             {
319               vec_set_len (buf, l + n);
320               if (n < 4096)
321                 break;
322             }
323           else
324             break;
325         }
326       if (um->log_fd && vec_len (buf))
327         {
328           u8 *lv = 0;
329           lv = format (lv, "%U: ***** Startup Config *****\n%v",
330                        format_timeval, 0 /* current bat-time */ ,
331                        0 /* current bat-format */ ,
332                        buf);
333           {
334             int rv __attribute__ ((unused)) =
335               write (um->log_fd, lv, vec_len (lv));
336           }
337           vec_reset_length (lv);
338           lv = format (lv, "%U: ***** End Startup Config *****\n",
339                        format_timeval, 0 /* current bat-time */ ,
340                        0 /* current bat-format */ );
341           {
342             int rv __attribute__ ((unused)) =
343               write (um->log_fd, lv, vec_len (lv));
344           }
345           vec_free (lv);
346         }
347
348       if (vec_len (buf))
349         {
350           unformat_input_t in;
351           unformat_init_vector (&sub_input, buf);
352
353           while (unformat_user (&sub_input, unformat_vlib_cli_line, &in))
354             {
355               if (vlib_cli_input (vm, &in, 0, 0) != 0)
356                 {
357                   /* cli failed - stop */
358                   unformat_free (&in);
359                   break;
360                 }
361               unformat_free (&in);
362             }
363
364           /* frees buf for us */
365           unformat_free (&sub_input);
366         }
367       close (fd);
368     }
369   return 0;
370 }
371
372 /* *INDENT-OFF* */
373 VLIB_REGISTER_NODE (startup_config_node,static) = {
374     .function = startup_config_process,
375     .type = VLIB_NODE_TYPE_PROCESS,
376     .name = "startup-config-process",
377     .process_log2_n_stack_bytes = 18,
378 };
379 /* *INDENT-ON* */
380
381 static clib_error_t *
382 unix_config (vlib_main_t * vm, unformat_input_t * input)
383 {
384   vlib_global_main_t *vgm = vlib_get_global_main ();
385   unix_main_t *um = &unix_main;
386   clib_error_t *error = 0;
387   gid_t gid;
388   int pidfd = -1;
389
390   /* Defaults */
391   um->cli_pager_buffer_limit = UNIX_CLI_DEFAULT_PAGER_LIMIT;
392   um->cli_history_limit = UNIX_CLI_DEFAULT_HISTORY;
393
394   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
395     {
396       char *cli_prompt;
397       if (unformat (input, "interactive"))
398         um->flags |= UNIX_FLAG_INTERACTIVE;
399       else if (unformat (input, "nodaemon"))
400         um->flags |= UNIX_FLAG_NODAEMON;
401       else if (unformat (input, "nosyslog"))
402         um->flags |= UNIX_FLAG_NOSYSLOG;
403       else if (unformat (input, "nocolor"))
404         um->flags |= UNIX_FLAG_NOCOLOR;
405       else if (unformat (input, "nobanner"))
406         um->flags |= UNIX_FLAG_NOBANNER;
407       else if (unformat (input, "cli-prompt %s", &cli_prompt))
408         vlib_unix_cli_set_prompt (cli_prompt);
409       else
410         if (unformat (input, "cli-listen %s", &um->cli_listen_socket.config))
411         ;
412       else if (unformat (input, "runtime-dir %s", &um->runtime_dir))
413         ;
414       else if (unformat (input, "cli-line-mode"))
415         um->cli_line_mode = 1;
416       else if (unformat (input, "cli-no-banner"))
417         um->cli_no_banner = 1;
418       else if (unformat (input, "cli-no-pager"))
419         um->cli_no_pager = 1;
420       else if (unformat (input, "poll-sleep-usec %d", &um->poll_sleep_usec))
421         ;
422       else if (unformat (input, "cli-pager-buffer-limit %d",
423                          &um->cli_pager_buffer_limit))
424         ;
425       else
426         if (unformat (input, "cli-history-limit %d", &um->cli_history_limit))
427         ;
428       else if (unformat (input, "coredump-size"))
429         {
430           uword coredump_size = 0;
431           if (unformat (input, "unlimited"))
432             {
433               coredump_size = RLIM_INFINITY;
434             }
435           else
436             if (!unformat (input, "%U", unformat_memory_size, &coredump_size))
437             {
438               return clib_error_return (0,
439                                         "invalid coredump-size parameter `%U'",
440                                         format_unformat_error, input);
441             }
442           const struct rlimit new_limit = { coredump_size, coredump_size };
443           if (0 != setrlimit (RLIMIT_CORE, &new_limit))
444             {
445               clib_unix_warning ("prlimit() failed");
446             }
447         }
448       else if (unformat (input, "full-coredump"))
449         {
450           int fd;
451
452           fd = open ("/proc/self/coredump_filter", O_WRONLY);
453           if (fd >= 0)
454             {
455               if (write (fd, "0x6f\n", 5) != 5)
456                 clib_unix_warning ("coredump filter write failed!");
457               close (fd);
458             }
459           else
460             clib_unix_warning ("couldn't open /proc/self/coredump_filter");
461         }
462       else if (unformat (input, "startup-config %s",
463                          &um->startup_config_filename))
464         ;
465       else if (unformat (input, "exec %s", &um->startup_config_filename))
466         ;
467       else if (unformat (input, "log %s", &um->log_filename))
468         {
469           um->log_fd = open ((char *) um->log_filename,
470                              O_CREAT | O_WRONLY | O_APPEND, 0644);
471           if (um->log_fd < 0)
472             {
473               clib_warning ("couldn't open log '%s'\n", um->log_filename);
474               um->log_fd = 0;
475             }
476           else
477             {
478               u8 *lv = 0;
479               lv = format (0, "%U: ***** Start: PID %d *****\n",
480                            format_timeval, 0 /* current bat-time */ ,
481                            0 /* current bat-format */ ,
482                            getpid ());
483               {
484                 int rv __attribute__ ((unused)) =
485                   write (um->log_fd, lv, vec_len (lv));
486               }
487               vec_free (lv);
488             }
489         }
490       else if (unformat (input, "gid %U", unformat_unix_gid, &gid))
491         {
492           if (setegid (gid) == -1)
493             return clib_error_return_unix (0, "setegid");
494         }
495       else if (unformat (input, "pidfile %s", &um->pidfile))
496         ;
497       else
498         return clib_error_return (0, "unknown input `%U'",
499                                   format_unformat_error, input);
500     }
501
502   if (um->runtime_dir == 0)
503     {
504       uid_t uid = geteuid ();
505       if (uid == 00)
506         um->runtime_dir = format (0, "/run/%s%c",
507                                   vlib_default_runtime_dir, 0);
508       else
509         um->runtime_dir = format (0, "/run/user/%u/%s%c", uid,
510                                   vlib_default_runtime_dir, 0);
511     }
512
513   /* Ensure the runtime directory is created */
514   error = vlib_unix_recursive_mkdir ((char *) um->runtime_dir);
515   if (error)
516     return error;
517
518   error = setup_signal_handlers (um);
519   if (error)
520     return error;
521
522   if (um->pidfile)
523     {
524       if ((error = vlib_unix_validate_runtime_file (um,
525                                                     (char *) um->pidfile,
526                                                     &um->pidfile)))
527         return error;
528
529       if (((pidfd = open ((char *) um->pidfile,
530                           O_CREAT | O_WRONLY | O_TRUNC, 0644)) < 0))
531         {
532           return clib_error_return_unix (0, "open");
533         }
534     }
535
536   if (!(um->flags & (UNIX_FLAG_INTERACTIVE | UNIX_FLAG_NOSYSLOG)))
537     {
538       openlog (vgm->name, LOG_CONS | LOG_PERROR | LOG_PID, LOG_DAEMON);
539       clib_error_register_handler (unix_error_handler, um);
540
541       if (!(um->flags & UNIX_FLAG_NODAEMON) && daemon ( /* chdir to / */ 0,
542                                                        /* stdin/stdout/stderr -> /dev/null */
543                                                        0) < 0)
544         clib_error_return (0, "daemon () fails");
545     }
546
547   if (pidfd >= 0)
548     {
549       u8 *lv = format (0, "%d", getpid ());
550       if (write (pidfd, (char *) lv, vec_len (lv)) != vec_len (lv))
551         {
552           vec_free (lv);
553           close (pidfd);
554           return clib_error_return_unix (0, "write");
555         }
556       vec_free (lv);
557       close (pidfd);
558     }
559
560   um->unix_config_complete = 1;
561
562   return 0;
563 }
564
565 /* unix { ... } configuration. */
566 /*?
567  *
568  * @cfgcmd{interactive}
569  * Attach CLI to stdin/out and provide a debugging command line interface.
570  * Implies @c nodaemon.
571  *
572  * @cfgcmd{nodaemon}
573  * Do not fork or background the VPP process. Typically used when invoking
574  * VPP applications from a process monitor.
575  *
576  * @cfgcmd{nosyslog}
577  * Do not send e.g. clib_warning(...) output to syslog. Used
578  * when invoking VPP applications from a process monitor which
579  * pipe stdout/stderr to a dedicated logger service.
580  *
581  * @cfgcmd{nocolor}
582  * Do not use colors in outputs.
583  * *
584  * @cfgcmd{nobanner}
585  * Do not display startup banner.
586  *
587  * @cfgcmd{exec, &lt;filename&gt;}
588  * @par <code>startup-config &lt;filename&gt;</code>
589  * Read startup operational configuration from @c filename.
590  * The contents of the file will be performed as though entered at the CLI.
591  * The two keywords are aliases for the same function; if both are specified,
592  * only the last will have an effect.
593  *
594  * @cfgcmd{log, &lt;filename&gt;}
595  * Logs the startup configuration and all subsequent CLI commands in
596  * @c filename.
597  * Very useful in situations where folks don't remember or can't be bothered
598  * to include CLI commands in bug reports.
599  *
600  * @cfgcmd{pidfile, &lt;filename&gt;}
601  * Writes the pid of the main thread in @c filename.
602  *
603  * @cfgcmd{full-coredump}
604  * Ask the Linux kernel to dump all memory-mapped address regions, instead
605  * of just text+data+bss.
606  *
607  * @cfgcmd{runtime-dir}
608  * Define directory where VPP is going to store all runtime files.
609  * Default is /run/vpp when running as root, /run/user/<UID>/vpp if running as
610  * an unprivileged user.
611  *
612  * @cfgcmd{cli-listen, &lt;address:port&gt;}
613  * Bind the CLI to listen at the address and port given. @c localhost
614  * on TCP port @c 5002, given as <tt>cli-listen localhost:5002</tt>,
615  * is typical.
616  *
617  * @cfgcmd{cli-line-mode}
618  * Disable character-by-character I/O on stdin. Useful when combined with,
619  * for example, <tt>emacs M-x gud-gdb</tt>.
620  *
621  * @cfgcmd{cli-prompt, &lt;string&gt;}
622  * Configure the CLI prompt to be @c string.
623  *
624  * @cfgcmd{cli-history-limit, &lt;nn&gt;}
625  * Limit command history to @c nn  lines. A value of @c 0
626  * disables command history. Default value: @c 50
627  *
628  * @cfgcmd{cli-no-banner}
629  * Disable the login banner on stdin and Telnet connections.
630  *
631  * @cfgcmd{cli-no-pager}
632  * Disable the output pager.
633  *
634  * @cfgcmd{cli-pager-buffer-limit, &lt;nn&gt;}
635  * Limit pager buffer to @c nn lines of output.
636  * A value of @c 0 disables the pager. Default value: @c 100000
637  *
638  * @cfgcmd{gid, &lt;nn&gt;}
639  * Set the effective gid under which the vpp process is to run.
640  *
641  * @cfgcmd{poll-sleep-usec, &lt;nn&gt;}
642  * Set a fixed poll sleep interval between main loop polls.
643 ?*/
644 VLIB_EARLY_CONFIG_FUNCTION (unix_config, "unix");
645
646 static clib_error_t *
647 unix_exit (vlib_main_t * vm)
648 {
649   /* Close syslog connection. */
650   closelog ();
651   return 0;
652 }
653
654 VLIB_MAIN_LOOP_EXIT_FUNCTION (unix_exit);
655
656 u8 **vlib_thread_stacks;
657
658 static uword
659 thread0 (uword arg)
660 {
661   vlib_main_t *vm = (vlib_main_t *) arg;
662   vlib_global_main_t *vgm = vlib_get_global_main ();
663   unformat_input_t input;
664   int i;
665
666   vlib_process_finish_switch_stack (vm);
667
668   unformat_init_command_line (&input, (char **) vgm->argv);
669   i = vlib_main (vm, &input);
670   unformat_free (&input);
671
672   return i;
673 }
674
675 u8 *
676 vlib_thread_stack_init (uword thread_index)
677 {
678   void *stack;
679   ASSERT (thread_index < vec_len (vlib_thread_stacks));
680   stack = clib_mem_vm_map_stack (VLIB_THREAD_STACK_SIZE,
681                                  CLIB_MEM_PAGE_SZ_DEFAULT,
682                                  "thread stack: thread %u", thread_index);
683
684   if (stack == CLIB_MEM_VM_MAP_FAILED)
685     clib_panic ("failed to allocate thread %u stack", thread_index);
686
687   vlib_thread_stacks[thread_index] = stack;
688   return stack;
689 }
690
691 #ifndef PATH_MAX
692 #define PATH_MAX 4096
693 #endif
694
695 int
696 vlib_unix_main (int argc, char *argv[])
697 {
698   vlib_global_main_t *vgm = vlib_get_global_main ();
699   vlib_main_t *vm = vlib_get_first_main (); /* one and only time for this! */
700   unformat_input_t input;
701   clib_error_t *e;
702   char buffer[PATH_MAX];
703   int i;
704
705   vec_validate_aligned (vgm->vlib_mains, 0, CLIB_CACHE_LINE_BYTES);
706
707   if ((i = readlink ("/proc/self/exe", buffer, sizeof (buffer) - 1)) > 0)
708     {
709       int j;
710       buffer[i] = 0;
711       vgm->exec_path = vec_new (char, i + 1);
712       clib_memcpy_fast (vgm->exec_path, buffer, i + 1);
713       for (j = i - 1; j > 0; j--)
714         if (buffer[j - 1] == '/')
715           break;
716       vgm->name = vec_new (char, i - j + 1);
717       clib_memcpy_fast (vgm->name, buffer + j, i - j + 1);
718     }
719   else
720     vgm->exec_path = vgm->name = argv[0];
721
722   vgm->argv = (u8 **) argv;
723
724   clib_time_init (&vm->clib_time);
725
726   /* Turn on the event logger at the first possible moment */
727   vgm->configured_elog_ring_size = 128 << 10;
728   elog_init (vlib_get_elog_main (), vgm->configured_elog_ring_size);
729   elog_enable_disable (vlib_get_elog_main (), 1);
730
731   unformat_init_command_line (&input, (char **) vgm->argv);
732   if ((e = vlib_plugin_config (vm, &input)))
733     {
734       clib_error_report (e);
735       return 1;
736     }
737   unformat_free (&input);
738
739   i = vlib_plugin_early_init (vm);
740   if (i)
741     return i;
742
743   unformat_init_command_line (&input, (char **) vgm->argv);
744   if (vgm->init_functions_called == 0)
745     vgm->init_functions_called = hash_create (0, /* value bytes */ 0);
746   e = vlib_call_all_config_functions (vm, &input, 1 /* early */ );
747   if (e != 0)
748     {
749       clib_error_report (e);
750       return 1;
751     }
752   unformat_free (&input);
753
754   /* always load symbols, for signal handler and mheap memory get/put backtrace */
755   clib_elf_main_init (vgm->exec_path);
756
757   vec_validate (vlib_thread_stacks, 0);
758   vlib_thread_stack_init (0);
759
760   __os_thread_index = 0;
761   vm->thread_index = 0;
762
763   vlib_process_start_switch_stack (vm, 0);
764   i = clib_calljmp (thread0, (uword) vm,
765                     (void *) (vlib_thread_stacks[0] +
766                               VLIB_THREAD_STACK_SIZE));
767   return i;
768 }
769
770 /*
771  * fd.io coding-style-patch-verification: ON
772  *
773  * Local Variables:
774  * eval: (c-set-style "gnu")
775  * End:
776  */