2 * Asterisk -- A telephony toolkit for Linux.
4 * Top level source file for asterisk
6 * Copyright (C) 1999 - 2005, Digium, Inc.
8 * Mark Spencer <markster@digium.com>
10 * This program is free software, distributed under the terms of
11 * the GNU General Public License
16 #include <asterisk/logger.h>
17 #include <asterisk/options.h>
18 #include <asterisk/cli.h>
19 #include <asterisk/channel.h>
20 #include <asterisk/ulaw.h>
21 #include <asterisk/alaw.h>
22 #include <asterisk/callerid.h>
23 #include <asterisk/module.h>
24 #include <asterisk/image.h>
25 #include <asterisk/tdd.h>
26 #include <asterisk/term.h>
27 #include <asterisk/manager.h>
28 #include <asterisk/pbx.h>
29 #include <asterisk/enum.h>
30 #include <asterisk/rtp.h>
31 #include <asterisk/app.h>
32 #include <asterisk/lock.h>
33 #include <asterisk/utils.h>
34 #include <asterisk/file.h>
35 #include <sys/resource.h>
40 #include <asterisk/io.h>
41 #include <asterisk/lock.h>
42 #include <sys/socket.h>
48 #include "editline/histedit.h"
50 #include <asterisk/config.h>
51 #include <sys/resource.h>
55 #if defined(__FreeBSD__) || defined( __NetBSD__ ) || defined(SOLARIS)
60 #define AF_LOCAL AF_UNIX
61 #define PF_LOCAL PF_UNIX
64 #define AST_MAX_CONNECTS 128
67 #define WELCOME_MESSAGE ast_verbose( "Asterisk " ASTERISK_VERSION ", Copyright (C) 1999 - 2005 Digium.\n"); \
68 ast_verbose( "Written by Mark Spencer <markster@digium.com>\n"); \
69 ast_verbose( "=========================================================================\n")
73 int option_exec_includes=0;
77 int option_highpriority=0;
80 int option_initcrypto=0;
82 int option_dumpcore = 0;
83 int option_cache_record_files = 0;
84 int option_overrideconfig = 0;
85 int option_reconnect = 0;
87 char record_cache_dir[AST_CACHE_DIR_LEN] = AST_TMP_DIR;
89 static int ast_socket = -1; /* UNIX Socket for allowing remote control */
90 static int ast_consock = -1; /* UNIX Socket for controlling another asterisk */
93 int fd; /* File descriptor */
95 pthread_t t; /* Thread of handler */
98 static struct ast_atexit {
100 struct ast_atexit *next;
102 AST_MUTEX_DEFINE_STATIC(atexitslock);
104 time_t ast_startuptime;
105 time_t ast_lastreloadtime;
107 static History *el_hist = NULL;
108 static EditLine *el = NULL;
109 static char *remotehostname;
111 struct console consoles[AST_MAX_CONNECTS];
113 char defaultlanguage[MAX_LANGUAGE] = DEFAULT_LANGUAGE;
115 static int ast_el_add_history(char *);
116 static int ast_el_read_history(char *);
117 static int ast_el_write_history(char *);
119 char ast_config_AST_CONFIG_DIR[AST_CONFIG_MAX_PATH];
120 char ast_config_AST_CONFIG_FILE[AST_CONFIG_MAX_PATH];
121 char ast_config_AST_MODULE_DIR[AST_CONFIG_MAX_PATH];
122 char ast_config_AST_SPOOL_DIR[AST_CONFIG_MAX_PATH];
123 char ast_config_AST_VAR_DIR[AST_CONFIG_MAX_PATH];
124 char ast_config_AST_LOG_DIR[AST_CONFIG_MAX_PATH];
125 char ast_config_AST_AGI_DIR[AST_CONFIG_MAX_PATH];
126 char ast_config_AST_DB[AST_CONFIG_MAX_PATH];
127 char ast_config_AST_KEY_DIR[AST_CONFIG_MAX_PATH];
128 char ast_config_AST_PID[AST_CONFIG_MAX_PATH];
129 char ast_config_AST_SOCKET[AST_CONFIG_MAX_PATH];
130 char ast_config_AST_RUN_DIR[AST_CONFIG_MAX_PATH];
132 static char *_argv[256];
133 static int shuttingdown = 0;
134 static int restartnow = 0;
135 static pthread_t consolethread = AST_PTHREADT_NULL;
137 int ast_register_atexit(void (*func)(void))
140 struct ast_atexit *ae;
141 ast_unregister_atexit(func);
142 ae = malloc(sizeof(struct ast_atexit));
143 ast_mutex_lock(&atexitslock);
145 memset(ae, 0, sizeof(struct ast_atexit));
151 ast_mutex_unlock(&atexitslock);
155 void ast_unregister_atexit(void (*func)(void))
157 struct ast_atexit *ae, *prev = NULL;
158 ast_mutex_lock(&atexitslock);
161 if (ae->func == func) {
163 prev->next = ae->next;
171 ast_mutex_unlock(&atexitslock);
174 static int fdprint(int fd, const char *s)
176 return write(fd, s, strlen(s) + 1);
179 /* NULL handler so we can collect the child exit status */
180 static void null_sig_handler(int signal)
185 int ast_safe_system(const char *s)
187 /* XXX This function needs some optimization work XXX */
191 struct rusage rusage;
193 void (*prev_handler) = signal(SIGCHLD, null_sig_handler);
196 /* Close file descriptors and launch system command */
197 for (x=STDERR_FILENO + 1; x<4096;x++) {
200 res = execl("/bin/sh", "/bin/sh", "-c", s, NULL);
202 } else if (pid > 0) {
204 res = wait4(pid, &status, 0, &rusage);
206 if (WIFEXITED(status))
207 res = WEXITSTATUS(status);
217 ast_log(LOG_WARNING, "Fork failed: %s\n", strerror(errno));
220 signal(SIGCHLD, prev_handler);
225 * write the string to all attached console clients
227 static void ast_network_puts(const char *string)
230 for (x=0;x<AST_MAX_CONNECTS; x++) {
231 if (consoles[x].fd > -1)
232 fdprint(consoles[x].p[1], string);
237 * write the string to the console, and all attached
240 void ast_console_puts(const char *string)
242 fputs(string, stdout);
244 ast_network_puts(string);
247 static void network_verboser(const char *s, int pos, int replace, int complete)
251 char *t = alloca(strlen(s) + 2);
253 sprintf(t, "\r%s", s);
257 ast_log(LOG_ERROR, "Out of memory\n");
266 static pthread_t lthread;
268 static void *netconsole(void *vconsole)
270 struct console *con = vconsole;
274 struct pollfd fds[2];
276 if (gethostname(hostname, sizeof(hostname)))
277 strncpy(hostname, "<Unknown>", sizeof(hostname)-1);
278 snprintf(tmp, sizeof(tmp), "%s/%d/%s\n", hostname, ast_mainpid, ASTERISK_VERSION);
279 fdprint(con->fd, tmp);
282 fds[0].events = POLLIN;
283 fds[1].fd = con->p[0];
284 fds[1].events = POLLIN;
286 res = poll(fds, 2, -1);
289 ast_log(LOG_WARNING, "poll returned < 0: %s\n", strerror(errno));
292 if (fds[0].revents) {
293 res = read(con->fd, tmp, sizeof(tmp));
298 ast_cli_command(con->fd, tmp);
300 if (fds[1].revents) {
301 res = read(con->p[0], tmp, sizeof(tmp));
303 ast_log(LOG_ERROR, "read returned %d\n", res);
306 res = write(con->fd, tmp, res);
311 if (option_verbose > 2)
312 ast_verbose(VERBOSE_PREFIX_3 "Remote UNIX connection disconnected\n");
321 static void *listener(void *unused)
323 struct sockaddr_un sunaddr;
328 struct pollfd fds[1];
330 pthread_attr_init(&attr);
331 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
335 fds[0].fd = ast_socket;
336 fds[0].events= POLLIN;
337 s = poll(fds, 1, -1);
340 ast_log(LOG_WARNING, "poll returned error: %s\n", strerror(errno));
343 len = sizeof(sunaddr);
344 s = accept(ast_socket, (struct sockaddr *)&sunaddr, &len);
347 ast_log(LOG_WARNING, "Accept returned %d: %s\n", s, strerror(errno));
349 for (x=0;x<AST_MAX_CONNECTS;x++) {
350 if (consoles[x].fd < 0) {
351 if (socketpair(AF_LOCAL, SOCK_STREAM, 0, consoles[x].p)) {
352 ast_log(LOG_ERROR, "Unable to create pipe: %s\n", strerror(errno));
354 fdprint(s, "Server failed to create pipe\n");
358 flags = fcntl(consoles[x].p[1], F_GETFL);
359 fcntl(consoles[x].p[1], F_SETFL, flags | O_NONBLOCK);
361 if (ast_pthread_create(&consoles[x].t, &attr, netconsole, &consoles[x])) {
362 ast_log(LOG_ERROR, "Unable to spawn thread to handle connection: %s\n", strerror(errno));
364 fdprint(s, "Server failed to spawn thread\n");
370 if (x >= AST_MAX_CONNECTS) {
371 fdprint(s, "No more connections allowed\n");
372 ast_log(LOG_WARNING, "No more connections allowed\n");
374 } else if (consoles[x].fd > -1) {
375 if (option_verbose > 2)
376 ast_verbose(VERBOSE_PREFIX_3 "Remote UNIX connection\n");
383 static int ast_makesocket(void)
385 struct sockaddr_un sunaddr;
388 for (x=0;x<AST_MAX_CONNECTS;x++)
390 unlink((char *)ast_config_AST_SOCKET);
391 ast_socket = socket(PF_LOCAL, SOCK_STREAM, 0);
392 if (ast_socket < 0) {
393 ast_log(LOG_WARNING, "Unable to create control socket: %s\n", strerror(errno));
396 memset(&sunaddr, 0, sizeof(sunaddr));
397 sunaddr.sun_family = AF_LOCAL;
398 strncpy(sunaddr.sun_path, (char *)ast_config_AST_SOCKET, sizeof(sunaddr.sun_path)-1);
399 res = bind(ast_socket, (struct sockaddr *)&sunaddr, sizeof(sunaddr));
401 ast_log(LOG_WARNING, "Unable to bind socket to %s: %s\n", (char *)ast_config_AST_SOCKET, strerror(errno));
406 res = listen(ast_socket, 2);
408 ast_log(LOG_WARNING, "Unable to listen on socket %s: %s\n", (char *)ast_config_AST_SOCKET, strerror(errno));
413 ast_register_verbose(network_verboser);
414 ast_pthread_create(<hread, NULL, listener, NULL);
418 static int ast_tryconnect(void)
420 struct sockaddr_un sunaddr;
422 ast_consock = socket(PF_LOCAL, SOCK_STREAM, 0);
423 if (ast_consock < 0) {
424 ast_log(LOG_WARNING, "Unable to create socket: %s\n", strerror(errno));
427 memset(&sunaddr, 0, sizeof(sunaddr));
428 sunaddr.sun_family = AF_LOCAL;
429 strncpy(sunaddr.sun_path, (char *)ast_config_AST_SOCKET, sizeof(sunaddr.sun_path)-1);
430 res = connect(ast_consock, (struct sockaddr *)&sunaddr, sizeof(sunaddr));
439 static void urg_handler(int num)
441 /* Called by soft_hangup to interrupt the poll, read, or other
442 system call. We don't actually need to do anything though. */
443 /* Cannot EVER ast_log from within a signal handler */
445 printf("Urgent handler\n");
446 signal(num, urg_handler);
450 static void hup_handler(int num)
452 if (option_verbose > 1)
453 printf("Received HUP signal -- Reloading configs\n");
455 execvp(_argv[0], _argv);
456 /* XXX This could deadlock XXX */
457 ast_module_reload(NULL);
460 static void child_handler(int sig)
462 /* Must not ever ast_log or ast_verbose within signal handler */
466 * Reap all dead children -- not just one
468 for (n = 0; wait4(-1, &status, WNOHANG, NULL) > 0; n++)
470 if (n == 0 && option_debug)
471 printf("Huh? Child handler, but nobody there?\n");
474 static void set_title(char *text)
476 /* Set an X-term or screen title */
477 if (getenv("TERM") && strstr(getenv("TERM"), "xterm"))
478 fprintf(stdout, "\033]2;%s\007", text);
481 static void set_icon(char *text)
483 if (getenv("TERM") && strstr(getenv("TERM"), "xterm"))
484 fprintf(stdout, "\033]1;%s\007", text);
487 static int set_priority(int pri)
489 struct sched_param sched;
490 memset(&sched, 0, sizeof(sched));
491 /* We set ourselves to a high priority, that we might pre-empt everything
492 else. If your PBX has heavy activity on it, this is a good thing. */
495 sched.sched_priority = 10;
496 if (sched_setscheduler(0, SCHED_RR, &sched)) {
497 ast_log(LOG_WARNING, "Unable to set high priority\n");
501 ast_verbose("Set to realtime thread\n");
503 sched.sched_priority = 0;
504 if (sched_setscheduler(0, SCHED_OTHER, &sched)) {
505 ast_log(LOG_WARNING, "Unable to set normal priority\n");
511 if (setpriority(PRIO_PROCESS, 0, -10) == -1) {
512 ast_log(LOG_WARNING, "Unable to set high priority\n");
516 ast_verbose("Set to high priority\n");
518 if (setpriority(PRIO_PROCESS, 0, 0) == -1) {
519 ast_log(LOG_WARNING, "Unable to set normal priority\n");
527 static void ast_run_atexits(void)
529 struct ast_atexit *ae;
530 ast_mutex_lock(&atexitslock);
537 ast_mutex_unlock(&atexitslock);
540 static void quit_handler(int num, int nice, int safeshutdown, int restart)
542 char filename[80] = "";
548 /* Begin shutdown routine, hanging up active channels */
549 ast_begin_shutdown(1);
550 if (option_verbose && option_console)
551 ast_verbose("Beginning asterisk %s....\n", restart ? "restart" : "shutdown");
555 /* Wait up to 15 seconds for all channels to go away */
558 if (!ast_active_channels())
562 /* Sleep 1/10 of a second */
567 ast_begin_shutdown(0);
568 if (option_verbose && option_console)
569 ast_verbose("Waiting for inactivity to perform %s...\n", restart ? "restart" : "halt");
571 if (!ast_active_channels())
580 if (option_verbose && option_console)
581 ast_verbose("Asterisk %s cancelled.\n", restart ? "restart" : "shutdown");
585 if (option_console || option_remote) {
587 snprintf(filename, sizeof(filename), "%s/.asterisk_history", getenv("HOME"));
588 if (!ast_strlen_zero(filename))
589 ast_el_write_history(filename);
593 history_end(el_hist);
596 ast_verbose("Executing last minute cleanups\n");
599 if (option_verbose && option_console)
600 ast_verbose("Asterisk %s ending (%d).\n", ast_active_channels() ? "uncleanly" : "cleanly", num);
601 else if (option_debug)
602 ast_log(LOG_DEBUG, "Asterisk ending (%d).\n", num);
603 manager_event(EVENT_FLAG_SYSTEM, "Shutdown", "Shutdown: %s\r\nRestart: %s\r\n", ast_active_channels() ? "Uncleanly" : "Cleanly", restart ? "True" : "False");
604 if (ast_socket > -1) {
608 if (ast_consock > -1)
611 unlink((char *)ast_config_AST_SOCKET);
612 if (!option_remote) unlink((char *)ast_config_AST_PID);
615 if (option_verbose || option_console)
616 ast_verbose("Preparing for Asterisk restart...\n");
617 /* Mark all FD's for closing on exec */
618 for (x=3;x<32768;x++) {
619 fcntl(x, F_SETFD, FD_CLOEXEC);
621 if (option_verbose || option_console)
622 ast_verbose("Restarting Asterisk NOW...\n");
628 /* If there is a consolethread running send it a SIGHUP
629 so it can execvp, otherwise we can do it ourselves */
630 if (consolethread != AST_PTHREADT_NULL) {
631 pthread_kill(consolethread, SIGHUP);
632 /* Give the signal handler some time to complete */
635 execvp(_argv[0], _argv);
644 static void __quit_handler(int num)
646 quit_handler(num, 0, 1, 0);
649 static const char *fix_header(char *outbuf, int maxout, const char *s, char *cmp)
652 if (!strncmp(s, cmp, strlen(cmp))) {
654 term_color(outbuf, cmp, COLOR_GRAY, 0, maxout);
660 static void console_verboser(const char *s, int pos, int replace, int complete)
664 /* Return to the beginning of the line */
666 fprintf(stdout, "\r");
667 if ((c = fix_header(tmp, sizeof(tmp), s, VERBOSE_PREFIX_4)) ||
668 (c = fix_header(tmp, sizeof(tmp), s, VERBOSE_PREFIX_3)) ||
669 (c = fix_header(tmp, sizeof(tmp), s, VERBOSE_PREFIX_2)) ||
670 (c = fix_header(tmp, sizeof(tmp), s, VERBOSE_PREFIX_1)))
674 fputs(c + pos,stdout);
676 fputs(s + pos,stdout);
679 /* Wake up a poll()ing console */
680 if (option_console && consolethread != AST_PTHREADT_NULL)
681 pthread_kill(consolethread, SIGURG);
685 static int ast_all_zeros(char *s)
695 static void consolehandler(char *s)
699 /* Called when readline data is available */
700 if (s && !ast_all_zeros(s))
701 ast_el_add_history(s);
702 /* Give the console access to the shell */
704 /* The real handler for bang */
707 ast_safe_system(s+1);
709 ast_safe_system(getenv("SHELL") ? getenv("SHELL") : "/bin/sh");
711 ast_cli_command(STDOUT_FILENO, s);
713 fprintf(stdout, "\nUse \"quit\" to exit\n");
716 static int remoteconsolehandler(char *s)
719 /* Called when readline data is available */
720 if (s && !ast_all_zeros(s))
721 ast_el_add_history(s);
722 /* Give the console access to the shell */
724 /* The real handler for bang */
727 ast_safe_system(s+1);
729 ast_safe_system(getenv("SHELL") ? getenv("SHELL") : "/bin/sh");
732 if ((strncasecmp(s, "quit", 4) == 0 || strncasecmp(s, "exit", 4) == 0) &&
733 (s[4] == '\0' || isspace(s[4]))) {
734 quit_handler(0, 0, 0, 0);
738 fprintf(stdout, "\nUse \"quit\" to exit\n");
743 static char quit_help[] =
745 " Exits Asterisk.\n";
747 static char abort_halt_help[] =
748 "Usage: abort shutdown\n"
749 " Causes Asterisk to abort an executing shutdown or restart, and resume normal\n"
750 " call operations.\n";
752 static char shutdown_now_help[] =
754 " Shuts down a running Asterisk immediately, hanging up all active calls .\n";
756 static char shutdown_gracefully_help[] =
757 "Usage: stop gracefully\n"
758 " Causes Asterisk to not accept new calls, and exit when all\n"
759 " active calls have terminated normally.\n";
761 static char shutdown_when_convenient_help[] =
762 "Usage: stop when convenient\n"
763 " Causes Asterisk to perform a shutdown when all active calls have ended.\n";
765 static char restart_now_help[] =
766 "Usage: restart now\n"
767 " Causes Asterisk to hangup all calls and exec() itself performing a cold\n"
770 static char restart_gracefully_help[] =
771 "Usage: restart gracefully\n"
772 " Causes Asterisk to stop accepting new calls and exec() itself performing a cold\n"
773 " restart when all active calls have ended.\n";
775 static char restart_when_convenient_help[] =
776 "Usage: restart when convenient\n"
777 " Causes Asterisk to perform a cold restart when all active calls have ended.\n";
779 static char bang_help[] =
780 "Usage: !<command>\n"
781 " Executes a given shell command\n";
784 static int handle_quit(int fd, int argc, char *argv[])
787 return RESULT_SHOWUSAGE;
788 quit_handler(0, 0, 1, 0);
789 return RESULT_SUCCESS;
793 static int no_more_quit(int fd, int argc, char *argv[])
796 return RESULT_SHOWUSAGE;
797 ast_cli(fd, "The QUIT and EXIT commands may no longer be used to shutdown the PBX.\n"
798 "Please use STOP NOW instead, if you wish to shutdown the PBX.\n");
799 return RESULT_SUCCESS;
802 static int handle_shutdown_now(int fd, int argc, char *argv[])
805 return RESULT_SHOWUSAGE;
806 quit_handler(0, 0 /* Not nice */, 1 /* safely */, 0 /* not restart */);
807 return RESULT_SUCCESS;
810 static int handle_shutdown_gracefully(int fd, int argc, char *argv[])
813 return RESULT_SHOWUSAGE;
814 quit_handler(0, 1 /* nicely */, 1 /* safely */, 0 /* no restart */);
815 return RESULT_SUCCESS;
818 static int handle_shutdown_when_convenient(int fd, int argc, char *argv[])
821 return RESULT_SHOWUSAGE;
822 quit_handler(0, 2 /* really nicely */, 1 /* safely */, 0 /* don't restart */);
823 return RESULT_SUCCESS;
826 static int handle_restart_now(int fd, int argc, char *argv[])
829 return RESULT_SHOWUSAGE;
830 quit_handler(0, 0 /* not nicely */, 1 /* safely */, 1 /* restart */);
831 return RESULT_SUCCESS;
834 static int handle_restart_gracefully(int fd, int argc, char *argv[])
837 return RESULT_SHOWUSAGE;
838 quit_handler(0, 1 /* nicely */, 1 /* safely */, 1 /* restart */);
839 return RESULT_SUCCESS;
842 static int handle_restart_when_convenient(int fd, int argc, char *argv[])
845 return RESULT_SHOWUSAGE;
846 quit_handler(0, 2 /* really nicely */, 1 /* safely */, 1 /* restart */);
847 return RESULT_SUCCESS;
850 static int handle_abort_halt(int fd, int argc, char *argv[])
853 return RESULT_SHOWUSAGE;
854 ast_cancel_shutdown();
856 return RESULT_SUCCESS;
859 static int handle_bang(int fd, int argc, char *argv[])
861 return RESULT_SUCCESS;
864 #define ASTERISK_PROMPT "*CLI> "
866 #define ASTERISK_PROMPT2 "%s*CLI> "
868 static struct ast_cli_entry aborthalt = { { "abort", "halt", NULL }, handle_abort_halt, "Cancel a running halt", abort_halt_help };
870 static struct ast_cli_entry quit = { { "quit", NULL }, no_more_quit, "Exit Asterisk", quit_help };
871 static struct ast_cli_entry astexit = { { "exit", NULL }, no_more_quit, "Exit Asterisk", quit_help };
873 static struct ast_cli_entry astshutdownnow = { { "stop", "now", NULL }, handle_shutdown_now, "Shut down Asterisk immediately", shutdown_now_help };
874 static struct ast_cli_entry astshutdowngracefully = { { "stop", "gracefully", NULL }, handle_shutdown_gracefully, "Gracefully shut down Asterisk", shutdown_gracefully_help };
875 static struct ast_cli_entry astshutdownwhenconvenient = { { "stop", "when","convenient", NULL }, handle_shutdown_when_convenient, "Shut down Asterisk at empty call volume", shutdown_when_convenient_help };
876 static struct ast_cli_entry astrestartnow = { { "restart", "now", NULL }, handle_restart_now, "Restart Asterisk immediately", restart_now_help };
877 static struct ast_cli_entry astrestartgracefully = { { "restart", "gracefully", NULL }, handle_restart_gracefully, "Restart Asterisk gracefully", restart_gracefully_help };
878 static struct ast_cli_entry astrestartwhenconvenient= { { "restart", "when", "convenient", NULL }, handle_restart_when_convenient, "Restart Asterisk at empty call volume", restart_when_convenient_help };
879 static struct ast_cli_entry astbang = { { "!", NULL }, handle_bang, "Execute a shell command", bang_help };
881 static int ast_el_read_char(EditLine *el, char *cp)
885 struct pollfd fds[2];
892 fds[0].fd = ast_consock;
893 fds[0].events = POLLIN;
895 fds[1].fd = STDIN_FILENO;
896 fds[1].events = POLLIN;
899 res = poll(fds, max, -1);
903 ast_log(LOG_ERROR, "poll failed: %s\n", strerror(errno));
907 if (!option_exec && fds[1].revents) {
908 num_read = read(STDIN_FILENO, cp, 1);
914 if (fds[0].revents) {
915 res = read(ast_consock, buf, sizeof(buf) - 1);
916 /* if the remote side disappears exit */
918 fprintf(stderr, "\nDisconnected from Asterisk server\n");
919 if (!option_reconnect) {
920 quit_handler(0, 0, 0, 0);
923 int reconnects_per_second = 20;
924 fprintf(stderr, "Attempting to reconnect for 30 seconds\n");
925 for (tries=0;tries<30 * reconnects_per_second;tries++) {
926 if (ast_tryconnect()) {
927 fprintf(stderr, "Reconnect succeeded after %.3f seconds\n", 1.0 / reconnects_per_second * tries);
932 usleep(1000000 / reconnects_per_second);
935 if (tries >= 30 * reconnects_per_second) {
936 fprintf(stderr, "Failed to reconnect for 30 seconds. Quitting.\n");
937 quit_handler(0, 0, 0, 0);
944 if (!option_exec && !lastpos)
945 write(STDOUT_FILENO, "\r", 1);
946 write(STDOUT_FILENO, buf, res);
947 if ((buf[res-1] == '\n') || (buf[res-2] == '\n')) {
960 static char *cli_prompt(EditLine *el)
962 static char prompt[200];
967 if ((pfmt = getenv("ASTERISK_PROMPT"))) {
968 char *t = pfmt, *p = prompt;
969 memset(prompt, 0, sizeof(prompt));
970 while (*t != '\0' && *p < sizeof(prompt)) {
979 int fgcolor = COLOR_WHITE, bgcolor = COLOR_BLACK;
983 case 'C': /* color */
985 if (sscanf(t, "%d;%d%n", &fgcolor, &bgcolor, &i) == 2) {
986 strncat(p, term_color_code(term_code, fgcolor, bgcolor, sizeof(term_code)),sizeof(prompt) - strlen(prompt) - 1);
988 } else if (sscanf(t, "%d%n", &fgcolor, &i) == 1) {
989 strncat(p, term_color_code(term_code, fgcolor, 0, sizeof(term_code)),sizeof(prompt) - strlen(prompt) - 1);
993 /* If the color has been reset correctly, then there's no need to reset it later */
994 if ((fgcolor == COLOR_WHITE) && (bgcolor == COLOR_BLACK)) {
1000 case 'd': /* date */
1001 memset(&tm, 0, sizeof(struct tm));
1002 gettimeofday(&tv, NULL);
1003 if (localtime_r(&(tv.tv_sec), &tm)) {
1004 strftime(p, sizeof(prompt) - strlen(prompt), "%Y-%m-%d", &tm);
1007 case 'h': /* hostname */
1008 if (!gethostname(hostname, sizeof(hostname) - 1)) {
1009 strncat(p, hostname, sizeof(prompt) - strlen(prompt) - 1);
1011 strncat(p, "localhost", sizeof(prompt) - strlen(prompt) - 1);
1014 case 'H': /* short hostname */
1015 if (!gethostname(hostname, sizeof(hostname) - 1)) {
1016 for (i=0;i<sizeof(hostname);i++) {
1017 if (hostname[i] == '.') {
1022 strncat(p, hostname, sizeof(prompt) - strlen(prompt) - 1);
1024 strncat(p, "localhost", sizeof(prompt) - strlen(prompt) - 1);
1028 case 'l': /* load avg */
1030 if ((LOADAVG = fopen("/proc/loadavg", "r"))) {
1031 float avg1, avg2, avg3;
1032 int actproc, totproc, npid, which;
1033 fscanf(LOADAVG, "%f %f %f %d/%d %d",
1034 &avg1, &avg2, &avg3, &actproc, &totproc, &npid);
1035 if (sscanf(t, "%d", &which) == 1) {
1038 snprintf(p, sizeof(prompt) - strlen(prompt), "%.2f", avg1);
1041 snprintf(p, sizeof(prompt) - strlen(prompt), "%.2f", avg2);
1044 snprintf(p, sizeof(prompt) - strlen(prompt), "%.2f", avg3);
1047 snprintf(p, sizeof(prompt) - strlen(prompt), "%d/%d", actproc, totproc);
1050 snprintf(p, sizeof(prompt) - strlen(prompt), "%d", npid);
1057 case 't': /* time */
1058 memset(&tm, 0, sizeof(struct tm));
1059 gettimeofday(&tv, NULL);
1060 if (localtime_r(&(tv.tv_sec), &tm)) {
1061 strftime(p, sizeof(prompt) - strlen(prompt), "%H:%M:%S", &tm);
1064 case '#': /* process console or remote? */
1065 if (! option_remote) {
1066 strncat(p, "#", sizeof(prompt) - strlen(prompt) - 1);
1068 strncat(p, ">", sizeof(prompt) - strlen(prompt) - 1);
1071 case '%': /* literal % */
1072 strncat(p, "%", sizeof(prompt) - strlen(prompt) - 1);
1074 case '\0': /* % is last character - prevent bug */
1078 while (*p != '\0') {
1089 /* Force colors back to normal at end */
1090 term_color_code(term_code, COLOR_WHITE, COLOR_BLACK, sizeof(term_code));
1091 if (strlen(term_code) > sizeof(prompt) - strlen(prompt)) {
1092 strncat(prompt + sizeof(prompt) - strlen(term_code) - 1, term_code, strlen(term_code));
1094 strncat(p, term_code, sizeof(term_code));
1097 } else if (remotehostname)
1098 snprintf(prompt, sizeof(prompt), ASTERISK_PROMPT2, remotehostname);
1100 snprintf(prompt, sizeof(prompt), ASTERISK_PROMPT);
1105 static char **ast_el_strtoarr(char *buf)
1107 char **match_list = NULL, *retstr;
1108 size_t match_list_len;
1112 while ( (retstr = strsep(&buf, " ")) != NULL) {
1114 if (!strcmp(retstr, AST_CLI_COMPLETE_EOF))
1116 if (matches + 1 >= match_list_len) {
1117 match_list_len <<= 1;
1118 match_list = realloc(match_list, match_list_len * sizeof(char *));
1121 match_list[matches++] = strdup(retstr);
1125 return (char **) NULL;
1127 if (matches>= match_list_len)
1128 match_list = realloc(match_list, (match_list_len + 1) * sizeof(char *));
1130 match_list[matches] = (char *) NULL;
1135 static int ast_el_sort_compare(const void *i1, const void *i2)
1139 s1 = ((char **)i1)[0];
1140 s2 = ((char **)i2)[0];
1142 return strcasecmp(s1, s2);
1145 static int ast_cli_display_match_list(char **matches, int len, int max)
1147 int i, idx, limit, count;
1148 int screenwidth = 0;
1149 int numoutput = 0, numoutputline = 0;
1151 screenwidth = ast_get_termcols(STDOUT_FILENO);
1153 /* find out how many entries can be put on one line, with two spaces between strings */
1154 limit = screenwidth / (max + 2);
1158 /* how many lines of output */
1159 count = len / limit;
1160 if (count * limit < len)
1165 qsort(&matches[0], (size_t)(len + 1), sizeof(char *), ast_el_sort_compare);
1167 for (; count > 0; count--) {
1169 for (i=0; i < limit && matches[idx]; i++, idx++) {
1171 /* Don't print dupes */
1172 if ( (matches[idx+1] != NULL && strcmp(matches[idx], matches[idx+1]) == 0 ) ) {
1175 matches[idx] = NULL;
1181 fprintf(stdout, "%-*s ", max, matches[idx]);
1183 matches[idx] = NULL;
1185 if (numoutputline > 0)
1186 fprintf(stdout, "\n");
1193 static char *cli_complete(EditLine *el, int ch)
1199 int retval = CC_ERROR;
1203 LineInfo *lf = (LineInfo *)el_line(el);
1205 *(char *)lf->cursor = '\0';
1206 ptr = (char *)lf->cursor;
1208 while (ptr > lf->buffer) {
1209 if (isspace(*ptr)) {
1217 len = lf->cursor - ptr;
1219 if (option_remote) {
1220 snprintf(buf, sizeof(buf),"_COMMAND NUMMATCHES \"%s\" \"%s\"", lf->buffer, ptr);
1221 fdprint(ast_consock, buf);
1222 res = read(ast_consock, buf, sizeof(buf));
1224 nummatches = atoi(buf);
1226 if (nummatches > 0) {
1228 int mlen = 0, maxmbuf = 2048;
1229 /* Start with a 2048 byte buffer */
1230 mbuf = malloc(maxmbuf);
1232 return (char *)(CC_ERROR);
1233 snprintf(buf, sizeof(buf),"_COMMAND MATCHESARRAY \"%s\" \"%s\"", lf->buffer, ptr);
1234 fdprint(ast_consock, buf);
1237 while (!strstr(mbuf, AST_CLI_COMPLETE_EOF) && res != -1) {
1238 if (mlen + 1024 > maxmbuf) {
1239 /* Every step increment buffer 1024 bytes */
1241 mbuf = realloc(mbuf, maxmbuf);
1243 return (char *)(CC_ERROR);
1245 /* Only read 1024 bytes at a time */
1246 res = read(ast_consock, mbuf + mlen, 1024);
1252 matches = ast_el_strtoarr(mbuf);
1255 matches = (char **) NULL;
1260 nummatches = ast_cli_generatornummatches((char *)lf->buffer,ptr);
1261 matches = ast_cli_completion_matches((char *)lf->buffer,ptr);
1266 int matches_num, maxlen, match_len;
1268 if (matches[0][0] != '\0') {
1269 el_deletestr(el, (int) len);
1270 el_insertstr(el, matches[0]);
1271 retval = CC_REFRESH;
1274 if (nummatches == 1) {
1275 /* Found an exact match */
1276 el_insertstr(el, " ");
1277 retval = CC_REFRESH;
1279 /* Must be more than one match */
1280 for (i=1, maxlen=0; matches[i]; i++) {
1281 match_len = strlen(matches[i]);
1282 if (match_len > maxlen)
1285 matches_num = i - 1;
1286 if (matches_num >1) {
1287 fprintf(stdout, "\n");
1288 ast_cli_display_match_list(matches, nummatches, maxlen);
1289 retval = CC_REDISPLAY;
1291 el_insertstr(el," ");
1292 retval = CC_REFRESH;
1298 return (char *)(long)retval;
1301 static int ast_el_initialize(void)
1304 char *editor = getenv("AST_EDITOR");
1308 if (el_hist != NULL)
1309 history_end(el_hist);
1311 el = el_init("asterisk", stdin, stdout, stderr);
1312 el_set(el, EL_PROMPT, cli_prompt);
1314 el_set(el, EL_EDITMODE, 1);
1315 el_set(el, EL_EDITOR, editor ? editor : "emacs");
1316 el_hist = history_init();
1317 if (!el || !el_hist)
1320 /* setup history with 100 entries */
1321 history(el_hist, &ev, H_SETSIZE, 100);
1323 el_set(el, EL_HIST, history, el_hist);
1325 el_set(el, EL_ADDFN, "ed-complete", "Complete argument", cli_complete);
1326 /* Bind <tab> to command completion */
1327 el_set(el, EL_BIND, "^I", "ed-complete", NULL);
1328 /* Bind ? to command completion */
1329 el_set(el, EL_BIND, "?", "ed-complete", NULL);
1330 /* Bind ^D to redisplay */
1331 el_set(el, EL_BIND, "^D", "ed-redisplay", NULL);
1336 static int ast_el_add_history(char *buf)
1340 if (el_hist == NULL || el == NULL)
1341 ast_el_initialize();
1342 if (strlen(buf) > 256)
1344 return (history(el_hist, &ev, H_ENTER, buf));
1347 static int ast_el_write_history(char *filename)
1351 if (el_hist == NULL || el == NULL)
1352 ast_el_initialize();
1354 return (history(el_hist, &ev, H_SAVE, filename));
1357 static int ast_el_read_history(char *filename)
1363 if (el_hist == NULL || el == NULL)
1364 ast_el_initialize();
1366 if ((f = fopen(filename, "r")) == NULL)
1370 fgets(buf, sizeof(buf), f);
1371 if (!strcmp(buf, "_HiStOrY_V2_\n"))
1373 if (ast_all_zeros(buf))
1375 if ((ret = ast_el_add_history(buf)) == -1)
1383 static void ast_remotecontrol(char * data)
1387 char filename[80] = "";
1398 read(ast_consock, buf, sizeof(buf));
1400 write(ast_consock, data, strlen(data) + 1);
1402 hostname = strsep(&stringp, "/");
1403 cpid = strsep(&stringp, "/");
1404 version = strsep(&stringp, "\n");
1406 version = "<Version Unknown>";
1408 strsep(&stringp, ".");
1413 snprintf(tmp, sizeof(tmp), "set verbose atleast %d", option_verbose);
1414 fdprint(ast_consock, tmp);
1415 snprintf(tmp, sizeof(tmp), "set debug atleast %d", option_debug);
1416 fdprint(ast_consock, tmp);
1417 ast_verbose("Connected to Asterisk %s currently running on %s (pid = %d)\n", version, hostname, pid);
1418 remotehostname = hostname;
1420 snprintf(filename, sizeof(filename), "%s/.asterisk_history", getenv("HOME"));
1421 if (el_hist == NULL || el == NULL)
1422 ast_el_initialize();
1424 el_set(el, EL_GETCFN, ast_el_read_char);
1426 if (!ast_strlen_zero(filename))
1427 ast_el_read_history(filename);
1429 ast_cli_register(&quit);
1430 ast_cli_register(&astexit);
1432 ast_cli_register(&astshutdown);
1434 if (option_exec && data) { /* hack to print output then exit if asterisk -rx is used */
1436 struct pollfd fds[0];
1437 fds[0].fd = ast_consock;
1438 fds[0].events = POLLIN;
1440 while(poll(fds, 1, 100) > 0) {
1441 ast_el_read_char(el, &tempchar);
1446 ebuf = (char *)el_gets(el, &num);
1448 if (ebuf && !ast_strlen_zero(ebuf)) {
1449 if (ebuf[strlen(ebuf)-1] == '\n')
1450 ebuf[strlen(ebuf)-1] = '\0';
1451 if (!remoteconsolehandler(ebuf)) {
1452 res = write(ast_consock, ebuf, strlen(ebuf) + 1);
1454 ast_log(LOG_WARNING, "Unable to write: %s\n", strerror(errno));
1460 printf("\nDisconnected from Asterisk server\n");
1463 static int show_version(void)
1465 printf("Asterisk " ASTERISK_VERSION "\n");
1469 static int show_cli_help(void) {
1470 printf("Asterisk " ASTERISK_VERSION ", Copyright (C) 2000 - 2005, Digium.\n");
1471 printf("Usage: asterisk [OPTIONS]\n");
1472 printf("Valid Options:\n");
1473 printf(" -V Display version number and exit\n");
1474 printf(" -C <configfile> Use an alternate configuration file\n");
1475 printf(" -G <group> Run as a group other than the caller\n");
1476 printf(" -U <user> Run as a user other than the caller\n");
1477 printf(" -c Provide console CLI\n");
1478 printf(" -d Enable extra debugging\n");
1479 printf(" -f Do not fork\n");
1480 printf(" -g Dump core in case of a crash\n");
1481 printf(" -h This help screen\n");
1482 printf(" -i Initialize crypto keys at startup\n");
1483 printf(" -n Disable console colorization\n");
1484 printf(" -p Run as pseudo-realtime thread\n");
1485 printf(" -q Quiet mode (suppress output)\n");
1486 printf(" -r Connect to Asterisk on this machine\n");
1487 printf(" -R Connect to Asterisk, and attempt to reconnect if disconnected\n");
1488 printf(" -t Record soundfiles in /var/tmp and move them where they belong after they are done.\n");
1489 printf(" -v Increase verbosity (multiple v's = more verbose)\n");
1490 printf(" -x <cmd> Execute command <cmd> (only valid with -r)\n");
1495 static void ast_readconfig(void) {
1496 struct ast_config *cfg;
1497 struct ast_variable *v;
1498 char *config = ASTCONFPATH;
1500 if (option_overrideconfig == 1) {
1501 cfg = ast_config_load((char *)ast_config_AST_CONFIG_FILE);
1503 ast_log(LOG_WARNING, "Unable to open specified master config file '%s', using builtin defaults\n", ast_config_AST_CONFIG_FILE);
1505 cfg = ast_config_load(config);
1508 /* init with buildtime config */
1509 strncpy((char *)ast_config_AST_CONFIG_DIR,AST_CONFIG_DIR,sizeof(ast_config_AST_CONFIG_DIR)-1);
1510 strncpy((char *)ast_config_AST_SPOOL_DIR,AST_SPOOL_DIR,sizeof(ast_config_AST_SPOOL_DIR)-1);
1511 strncpy((char *)ast_config_AST_MODULE_DIR,AST_MODULE_DIR,sizeof(ast_config_AST_VAR_DIR)-1);
1512 strncpy((char *)ast_config_AST_VAR_DIR,AST_VAR_DIR,sizeof(ast_config_AST_VAR_DIR)-1);
1513 strncpy((char *)ast_config_AST_LOG_DIR,AST_LOG_DIR,sizeof(ast_config_AST_LOG_DIR)-1);
1514 strncpy((char *)ast_config_AST_AGI_DIR,AST_AGI_DIR,sizeof(ast_config_AST_AGI_DIR)-1);
1515 strncpy((char *)ast_config_AST_DB,AST_DB,sizeof(ast_config_AST_DB)-1);
1516 strncpy((char *)ast_config_AST_KEY_DIR,AST_KEY_DIR,sizeof(ast_config_AST_KEY_DIR)-1);
1517 strncpy((char *)ast_config_AST_PID,AST_PID,sizeof(ast_config_AST_PID)-1);
1518 strncpy((char *)ast_config_AST_SOCKET,AST_SOCKET,sizeof(ast_config_AST_SOCKET)-1);
1519 strncpy((char *)ast_config_AST_RUN_DIR,AST_RUN_DIR,sizeof(ast_config_AST_RUN_DIR)-1);
1521 /* no asterisk.conf? no problem, use buildtime config! */
1525 v = ast_variable_browse(cfg, "directories");
1527 if (!strcasecmp(v->name, "astetcdir")) {
1528 strncpy((char *)ast_config_AST_CONFIG_DIR,v->value,sizeof(ast_config_AST_CONFIG_DIR)-1);
1529 } else if (!strcasecmp(v->name, "astspooldir")) {
1530 strncpy((char *)ast_config_AST_SPOOL_DIR,v->value,sizeof(ast_config_AST_SPOOL_DIR)-1);
1531 } else if (!strcasecmp(v->name, "astvarlibdir")) {
1532 strncpy((char *)ast_config_AST_VAR_DIR,v->value,sizeof(ast_config_AST_VAR_DIR)-1);
1533 snprintf((char *)ast_config_AST_DB,sizeof(ast_config_AST_DB),"%s/%s",v->value,"astdb");
1534 } else if (!strcasecmp(v->name, "astlogdir")) {
1535 strncpy((char *)ast_config_AST_LOG_DIR,v->value,sizeof(ast_config_AST_LOG_DIR)-1);
1536 } else if (!strcasecmp(v->name, "astagidir")) {
1537 strncpy((char *)ast_config_AST_AGI_DIR,v->value,sizeof(ast_config_AST_AGI_DIR)-1);
1538 } else if (!strcasecmp(v->name, "astrundir")) {
1539 snprintf((char *)ast_config_AST_PID,sizeof(ast_config_AST_PID),"%s/%s",v->value,"asterisk.pid");
1540 snprintf((char *)ast_config_AST_SOCKET,sizeof(ast_config_AST_SOCKET),"%s/%s",v->value,"asterisk.ctl");
1541 strncpy((char *)ast_config_AST_RUN_DIR,v->value,sizeof(ast_config_AST_RUN_DIR)-1);
1542 } else if (!strcasecmp(v->name, "astmoddir")) {
1543 strncpy((char *)ast_config_AST_MODULE_DIR,v->value,sizeof(ast_config_AST_MODULE_DIR)-1);
1547 v = ast_variable_browse(cfg, "options");
1549 if (!strcasecmp(v->name, "verbose")) {
1550 option_verbose= atoi(v->value);
1551 } else if (!strcasecmp(v->name, "execincludes")) {
1552 option_exec_includes = ast_true(v->value);
1553 } else if (!strcasecmp(v->name, "debug")) {
1554 option_debug= ast_true(v->value);
1555 } else if (!strcasecmp(v->name, "nofork")) {
1556 option_nofork = ast_true(v->value);
1557 } else if (!strcasecmp(v->name, "quiet")) {
1558 option_quiet = ast_true(v->value);
1559 } else if (!strcasecmp(v->name, "console")) {
1560 option_console = ast_true(v->value);
1561 } else if (!strcasecmp(v->name, "highpriority")) {
1562 option_highpriority = ast_true(v->value);
1563 } else if (!strcasecmp(v->name, "initcrypto")) {
1564 option_initcrypto = ast_true(v->value);
1565 } else if (!strcasecmp(v->name, "nocolor")) {
1566 option_nocolor = ast_true(v->value);
1567 } else if (!strcasecmp(v->name, "dumpcore")) {
1568 option_dumpcore = ast_true(v->value);
1569 } else if (!strcasecmp(v->name, "cache_record_files")) {
1570 option_cache_record_files = ast_true(v->value);
1571 } else if (!strcasecmp(v->name, "record_cache_dir")) {
1572 strncpy(record_cache_dir,v->value,AST_CACHE_DIR_LEN);
1576 ast_config_destroy(cfg);
1579 int main(int argc, char *argv[])
1582 char filename[80] = "";
1591 char *runuser=NULL, *rungroup=NULL;
1592 struct pollfd silly_macos[1];
1594 /* Remember original args for restart */
1595 if (argc > sizeof(_argv) / sizeof(_argv[0]) - 1) {
1596 fprintf(stderr, "Truncating argument size to %d\n", (int)(sizeof(_argv) / sizeof(_argv[0])) - 1);
1597 argc = sizeof(_argv) / sizeof(_argv[0]) - 1;
1599 for (x=0;x<argc;x++)
1603 /* if the progname is rasterisk consider it a remote console */
1604 if (argv[0] && (strstr(argv[0], "rasterisk")) != NULL) {
1608 if (gethostname(hostname, sizeof(hostname)))
1609 strncpy(hostname, "<Unknown>", sizeof(hostname)-1);
1610 ast_mainpid = getpid();
1617 snprintf(filename, sizeof(filename), "%s/.asterisk_history", getenv("HOME"));
1618 /* Check if we're root */
1621 ast_log(LOG_ERROR, "Must be run as root\n");
1625 /* Check for options */
1626 while((c=getopt(argc, argv, "thfdvVqprRgcinx:U:G:C:")) != -1) {
1652 option_highpriority++;
1662 option_cache_record_files++;
1669 strncpy((char *)ast_config_AST_CONFIG_FILE,optarg,sizeof(ast_config_AST_CONFIG_FILE) - 1);
1670 option_overrideconfig++;
1673 option_initcrypto++;
1695 if (option_dumpcore) {
1697 memset(&l, 0, sizeof(l));
1698 l.rlim_cur = RLIM_INFINITY;
1699 l.rlim_max = RLIM_INFINITY;
1700 if (setrlimit(RLIMIT_CORE, &l)) {
1701 ast_log(LOG_WARNING, "Unable to disable core size resource limit: %s\n", strerror(errno));
1707 gr = getgrnam(rungroup);
1709 ast_log(LOG_WARNING, "No such group '%s'!\n", rungroup);
1712 if (setgid(gr->gr_gid)) {
1713 ast_log(LOG_WARNING, "Unable to setgid to %d (%s)\n", gr->gr_gid, rungroup);
1717 ast_verbose("Running as group '%s'\n", rungroup);
1720 if (set_priority(option_highpriority)) {
1725 pw = getpwnam(runuser);
1727 ast_log(LOG_WARNING, "No such user '%s'!\n", runuser);
1730 if (setuid(pw->pw_uid)) {
1731 ast_log(LOG_WARNING, "Unable to setuid to %d (%s)\n", pw->pw_uid, runuser);
1735 ast_verbose("Running as user '%s'\n", runuser);
1742 if (option_console && !option_verbose)
1743 ast_verbose("[ Reading Master Configuration ]");
1746 if (option_console && !option_verbose)
1747 ast_verbose("[ Initializing Custom Configuration Options ]");
1748 /* custom config setup */
1749 register_config_cli();
1753 if (option_console) {
1754 if (el_hist == NULL || el == NULL)
1755 ast_el_initialize();
1757 if (!ast_strlen_zero(filename))
1758 ast_el_read_history(filename);
1761 if (ast_tryconnect()) {
1762 /* One is already running */
1763 if (option_remote) {
1765 ast_remotecontrol(xarg);
1766 quit_handler(0, 0, 0, 0);
1769 printf(term_quit());
1770 ast_register_verbose(console_verboser);
1772 ast_remotecontrol(NULL);
1773 quit_handler(0, 0, 0, 0);
1776 ast_log(LOG_ERROR, "Asterisk already running on %s. Use 'asterisk -r' to connect.\n", (char *)ast_config_AST_SOCKET);
1777 printf(term_quit());
1780 } else if (option_remote || option_exec) {
1781 ast_log(LOG_ERROR, "Unable to connect to remote asterisk\n");
1782 printf(term_quit());
1785 /* Blindly write pid file since we couldn't connect */
1786 unlink((char *)ast_config_AST_PID);
1787 f = fopen((char *)ast_config_AST_PID, "w");
1789 fprintf(f, "%d\n", getpid());
1792 ast_log(LOG_WARNING, "Unable to open pid file '%s': %s\n", (char *)ast_config_AST_PID, strerror(errno));
1794 if (!option_verbose && !option_debug && !option_nofork && !option_console) {
1796 /* Blindly re-write pid file since we are forking */
1797 unlink((char *)ast_config_AST_PID);
1798 f = fopen((char *)ast_config_AST_PID, "w");
1800 fprintf(f, "%d\n", getpid());
1803 ast_log(LOG_WARNING, "Unable to open pid file '%s': %s\n", (char *)ast_config_AST_PID, strerror(errno));
1806 /* Test recursive mutex locking. */
1807 if (test_for_thread_safety())
1808 ast_verbose("Warning! Asterisk is not thread safe.\n");
1812 sigaddset(&sigs, SIGHUP);
1813 sigaddset(&sigs, SIGTERM);
1814 sigaddset(&sigs, SIGINT);
1815 sigaddset(&sigs, SIGPIPE);
1816 sigaddset(&sigs, SIGWINCH);
1817 pthread_sigmask(SIG_BLOCK, &sigs, NULL);
1818 if (option_console || option_verbose || option_remote)
1819 ast_register_verbose(console_verboser);
1820 /* Print a welcome message if desired */
1821 if (option_verbose || option_console) {
1824 if (option_console && !option_verbose)
1825 ast_verbose("[ Booting...");
1827 signal(SIGURG, urg_handler);
1828 signal(SIGINT, __quit_handler);
1829 signal(SIGTERM, __quit_handler);
1830 signal(SIGHUP, hup_handler);
1831 signal(SIGCHLD, child_handler);
1832 signal(SIGPIPE, SIG_IGN);
1834 if (init_logger()) {
1835 printf(term_quit());
1838 ast_channels_init();
1839 if (init_manager()) {
1840 printf(term_quit());
1844 if (ast_image_init()) {
1845 printf(term_quit());
1848 if (ast_file_init()) {
1849 printf(term_quit());
1853 printf(term_quit());
1856 if (load_modules()) {
1857 printf(term_quit());
1860 if (init_framer()) {
1861 printf(term_quit());
1865 printf(term_quit());
1868 if (ast_enum_init()) {
1869 printf(term_quit());
1873 /* This should no longer be necessary */
1874 /* sync cust config and reload some internals in case a custom config handler binded to them */
1875 read_ast_cust_config();
1883 /* We might have the option of showing a console, but for now just
1885 if (option_console && !option_verbose)
1886 ast_verbose(" ]\n");
1887 if (option_verbose || option_console)
1888 ast_verbose(term_color(tmp, "Asterisk Ready.\n", COLOR_BRWHITE, COLOR_BLACK, sizeof(tmp)));
1890 consolethread = pthread_self();
1892 pthread_sigmask(SIG_UNBLOCK, &sigs, NULL);
1893 #ifdef __AST_DEBUG_MALLOC
1896 time(&ast_startuptime);
1897 ast_cli_register(&astshutdownnow);
1898 ast_cli_register(&astshutdowngracefully);
1899 ast_cli_register(&astrestartnow);
1900 ast_cli_register(&astrestartgracefully);
1901 ast_cli_register(&astrestartwhenconvenient);
1902 ast_cli_register(&astshutdownwhenconvenient);
1903 ast_cli_register(&aborthalt);
1904 ast_cli_register(&astbang);
1905 if (option_console) {
1906 /* Console stuff now... */
1907 /* Register our quit function */
1909 set_icon("Asterisk");
1910 snprintf(title, sizeof(title), "Asterisk Console on '%s' (pid %d)", hostname, ast_mainpid);
1912 ast_cli_register(&quit);
1913 ast_cli_register(&astexit);
1916 buf = (char *)el_gets(el, &num);
1918 if (buf[strlen(buf)-1] == '\n')
1919 buf[strlen(buf)-1] = '\0';
1921 consolehandler((char *)buf);
1923 if (write(STDOUT_FILENO, "\nUse EXIT or QUIT to exit the asterisk console\n",
1924 strlen("\nUse EXIT or QUIT to exit the asterisk console\n")) < 0) {
1925 /* Whoa, stdout disappeared from under us... Make /dev/null's */
1927 fd = open("/dev/null", O_RDWR);
1929 dup2(fd, STDOUT_FILENO);
1930 dup2(fd, STDIN_FILENO);
1932 ast_log(LOG_WARNING, "Failed to open /dev/null to recover from dead console. Bad things will happen!\n");
1941 poll(silly_macos,0, -1);