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>
56 #if defined(__FreeBSD__) || defined( __NetBSD__ ) || defined(SOLARIS)
61 #define AF_LOCAL AF_UNIX
62 #define PF_LOCAL PF_UNIX
65 #define AST_MAX_CONNECTS 128
68 #define WELCOME_MESSAGE ast_verbose( "Asterisk " ASTERISK_VERSION ", Copyright (C) 1999 - 2005 Digium.\n"); \
69 ast_verbose( "Written by Mark Spencer <markster@digium.com>\n"); \
70 ast_verbose( "=========================================================================\n")
74 int option_exec_includes=0;
78 int option_highpriority=0;
81 int option_initcrypto=0;
83 int option_dumpcore = 0;
84 int option_cache_record_files = 0;
85 int option_timestamp = 0;
86 int option_overrideconfig = 0;
87 int option_reconnect = 0;
89 char record_cache_dir[AST_CACHE_DIR_LEN] = AST_TMP_DIR;
90 char debug_filename[AST_FILENAME_MAX] = "";
92 static int ast_socket = -1; /* UNIX Socket for allowing remote control */
93 static int ast_consock = -1; /* UNIX Socket for controlling another asterisk */
96 int fd; /* File descriptor */
98 pthread_t t; /* Thread of handler */
101 static struct ast_atexit {
103 struct ast_atexit *next;
105 AST_MUTEX_DEFINE_STATIC(atexitslock);
107 time_t ast_startuptime;
108 time_t ast_lastreloadtime;
110 static History *el_hist = NULL;
111 static EditLine *el = NULL;
112 static char *remotehostname;
114 struct console consoles[AST_MAX_CONNECTS];
116 char defaultlanguage[MAX_LANGUAGE] = DEFAULT_LANGUAGE;
118 static int ast_el_add_history(char *);
119 static int ast_el_read_history(char *);
120 static int ast_el_write_history(char *);
122 char ast_config_AST_CONFIG_DIR[AST_CONFIG_MAX_PATH];
123 char ast_config_AST_CONFIG_FILE[AST_CONFIG_MAX_PATH];
124 char ast_config_AST_MODULE_DIR[AST_CONFIG_MAX_PATH];
125 char ast_config_AST_SPOOL_DIR[AST_CONFIG_MAX_PATH];
126 char ast_config_AST_VAR_DIR[AST_CONFIG_MAX_PATH];
127 char ast_config_AST_LOG_DIR[AST_CONFIG_MAX_PATH];
128 char ast_config_AST_AGI_DIR[AST_CONFIG_MAX_PATH];
129 char ast_config_AST_DB[AST_CONFIG_MAX_PATH];
130 char ast_config_AST_KEY_DIR[AST_CONFIG_MAX_PATH];
131 char ast_config_AST_PID[AST_CONFIG_MAX_PATH];
132 char ast_config_AST_SOCKET[AST_CONFIG_MAX_PATH];
133 char ast_config_AST_RUN_DIR[AST_CONFIG_MAX_PATH];
135 static char *_argv[256];
136 static int shuttingdown = 0;
137 static int restartnow = 0;
138 static pthread_t consolethread = AST_PTHREADT_NULL;
140 int ast_register_atexit(void (*func)(void))
143 struct ast_atexit *ae;
144 ast_unregister_atexit(func);
145 ae = malloc(sizeof(struct ast_atexit));
146 ast_mutex_lock(&atexitslock);
148 memset(ae, 0, sizeof(struct ast_atexit));
154 ast_mutex_unlock(&atexitslock);
158 void ast_unregister_atexit(void (*func)(void))
160 struct ast_atexit *ae, *prev = NULL;
161 ast_mutex_lock(&atexitslock);
164 if (ae->func == func) {
166 prev->next = ae->next;
174 ast_mutex_unlock(&atexitslock);
177 static int fdprint(int fd, const char *s)
179 return write(fd, s, strlen(s) + 1);
182 /* NULL handler so we can collect the child exit status */
183 static void null_sig_handler(int signal)
188 int ast_safe_system(const char *s)
190 /* XXX This function needs some optimization work XXX */
194 struct rusage rusage;
196 void (*prev_handler) = signal(SIGCHLD, null_sig_handler);
199 /* Close file descriptors and launch system command */
200 for (x=STDERR_FILENO + 1; x<4096;x++) {
203 res = execl("/bin/sh", "/bin/sh", "-c", s, NULL);
205 } else if (pid > 0) {
207 res = wait4(pid, &status, 0, &rusage);
209 if (WIFEXITED(status))
210 res = WEXITSTATUS(status);
220 ast_log(LOG_WARNING, "Fork failed: %s\n", strerror(errno));
223 signal(SIGCHLD, prev_handler);
228 * write the string to all attached console clients
230 static void ast_network_puts(const char *string)
233 for (x=0;x<AST_MAX_CONNECTS; x++) {
234 if (consoles[x].fd > -1)
235 fdprint(consoles[x].p[1], string);
240 * write the string to the console, and all attached
243 void ast_console_puts(const char *string)
245 fputs(string, stdout);
247 ast_network_puts(string);
250 static void network_verboser(const char *s, int pos, int replace, int complete)
254 char *t = alloca(strlen(s) + 2);
256 sprintf(t, "\r%s", s);
260 ast_log(LOG_ERROR, "Out of memory\n");
269 static pthread_t lthread;
271 static void *netconsole(void *vconsole)
273 struct console *con = vconsole;
277 struct pollfd fds[2];
279 if (gethostname(hostname, sizeof(hostname)))
280 strncpy(hostname, "<Unknown>", sizeof(hostname)-1);
281 snprintf(tmp, sizeof(tmp), "%s/%d/%s\n", hostname, ast_mainpid, ASTERISK_VERSION);
282 fdprint(con->fd, tmp);
285 fds[0].events = POLLIN;
286 fds[1].fd = con->p[0];
287 fds[1].events = POLLIN;
289 res = poll(fds, 2, -1);
292 ast_log(LOG_WARNING, "poll returned < 0: %s\n", strerror(errno));
295 if (fds[0].revents) {
296 res = read(con->fd, tmp, sizeof(tmp));
301 ast_cli_command(con->fd, tmp);
303 if (fds[1].revents) {
304 res = read(con->p[0], tmp, sizeof(tmp));
306 ast_log(LOG_ERROR, "read returned %d\n", res);
309 res = write(con->fd, tmp, res);
314 if (option_verbose > 2)
315 ast_verbose(VERBOSE_PREFIX_3 "Remote UNIX connection disconnected\n");
324 static void *listener(void *unused)
326 struct sockaddr_un sunaddr;
331 struct pollfd fds[1];
333 pthread_attr_init(&attr);
334 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
338 fds[0].fd = ast_socket;
339 fds[0].events= POLLIN;
340 s = poll(fds, 1, -1);
343 ast_log(LOG_WARNING, "poll returned error: %s\n", strerror(errno));
346 len = sizeof(sunaddr);
347 s = accept(ast_socket, (struct sockaddr *)&sunaddr, &len);
350 ast_log(LOG_WARNING, "Accept returned %d: %s\n", s, strerror(errno));
352 for (x=0;x<AST_MAX_CONNECTS;x++) {
353 if (consoles[x].fd < 0) {
354 if (socketpair(AF_LOCAL, SOCK_STREAM, 0, consoles[x].p)) {
355 ast_log(LOG_ERROR, "Unable to create pipe: %s\n", strerror(errno));
357 fdprint(s, "Server failed to create pipe\n");
361 flags = fcntl(consoles[x].p[1], F_GETFL);
362 fcntl(consoles[x].p[1], F_SETFL, flags | O_NONBLOCK);
364 if (ast_pthread_create(&consoles[x].t, &attr, netconsole, &consoles[x])) {
365 ast_log(LOG_ERROR, "Unable to spawn thread to handle connection: %s\n", strerror(errno));
367 fdprint(s, "Server failed to spawn thread\n");
373 if (x >= AST_MAX_CONNECTS) {
374 fdprint(s, "No more connections allowed\n");
375 ast_log(LOG_WARNING, "No more connections allowed\n");
377 } else if (consoles[x].fd > -1) {
378 if (option_verbose > 2)
379 ast_verbose(VERBOSE_PREFIX_3 "Remote UNIX connection\n");
386 static int ast_makesocket(void)
388 struct sockaddr_un sunaddr;
392 struct ast_config *cfg;
393 char *config = ASTCONFPATH;
401 for (x=0;x<AST_MAX_CONNECTS;x++)
403 unlink((char *)ast_config_AST_SOCKET);
404 ast_socket = socket(PF_LOCAL, SOCK_STREAM, 0);
405 if (ast_socket < 0) {
406 ast_log(LOG_WARNING, "Unable to create control socket: %s\n", strerror(errno));
409 memset(&sunaddr, 0, sizeof(sunaddr));
410 sunaddr.sun_family = AF_LOCAL;
411 strncpy(sunaddr.sun_path, (char *)ast_config_AST_SOCKET, sizeof(sunaddr.sun_path)-1);
412 res = bind(ast_socket, (struct sockaddr *)&sunaddr, sizeof(sunaddr));
414 ast_log(LOG_WARNING, "Unable to bind socket to %s: %s\n", (char *)ast_config_AST_SOCKET, strerror(errno));
419 res = listen(ast_socket, 2);
421 ast_log(LOG_WARNING, "Unable to listen on socket %s: %s\n", (char *)ast_config_AST_SOCKET, strerror(errno));
426 ast_register_verbose(network_verboser);
427 ast_pthread_create(<hread, NULL, listener, NULL);
429 /* Load the options for owner, group and permissions from
430 asterisk.conf. if the file doesn't exist (????) just skip
433 if (option_overrideconfig == 1) {
434 cfg = ast_config_load((char *)ast_config_AST_CONFIG_FILE);
436 cfg = ast_config_load(config);
442 group = ast_variable_retrieve(cfg, "files", "astctlgroup");
443 owner = ast_variable_retrieve(cfg, "files", "astctlowner");
444 perms = ast_variable_retrieve(cfg, "files", "astctlpermissions");
448 if ((pw=getpwnam(owner))==NULL)
449 ast_log(LOG_WARNING, "Unable to find uid of user %s\n", owner);
455 if ((grp=getgrnam(group))==NULL)
456 ast_log(LOG_WARNING, "Unable to find gid of group %s\n", group);
460 if (chown(ast_config_AST_SOCKET,uid,gid)<0)
461 ast_log(LOG_WARNING, "Unable to change ownership of %s: %s\n", ast_config_AST_SOCKET,strerror(errno));
465 sscanf(perms,"%o",&p);
466 if ((chmod(ast_config_AST_SOCKET,p))<0)
467 ast_log(LOG_WARNING, "Unable to change file permissions of %s: %s\n", ast_config_AST_SOCKET,strerror(errno));
473 static int ast_tryconnect(void)
475 struct sockaddr_un sunaddr;
477 ast_consock = socket(PF_LOCAL, SOCK_STREAM, 0);
478 if (ast_consock < 0) {
479 ast_log(LOG_WARNING, "Unable to create socket: %s\n", strerror(errno));
482 memset(&sunaddr, 0, sizeof(sunaddr));
483 sunaddr.sun_family = AF_LOCAL;
484 strncpy(sunaddr.sun_path, (char *)ast_config_AST_SOCKET, sizeof(sunaddr.sun_path)-1);
485 res = connect(ast_consock, (struct sockaddr *)&sunaddr, sizeof(sunaddr));
494 static void urg_handler(int num)
496 /* Called by soft_hangup to interrupt the poll, read, or other
497 system call. We don't actually need to do anything though. */
498 /* Cannot EVER ast_log from within a signal handler */
500 printf("Urgent handler\n");
501 signal(num, urg_handler);
505 static void hup_handler(int num)
507 if (option_verbose > 1)
508 printf("Received HUP signal -- Reloading configs\n");
510 execvp(_argv[0], _argv);
511 /* XXX This could deadlock XXX */
512 ast_module_reload(NULL);
515 static void child_handler(int sig)
517 /* Must not ever ast_log or ast_verbose within signal handler */
521 * Reap all dead children -- not just one
523 for (n = 0; wait4(-1, &status, WNOHANG, NULL) > 0; n++)
525 if (n == 0 && option_debug)
526 printf("Huh? Child handler, but nobody there?\n");
529 static void set_title(char *text)
531 /* Set an X-term or screen title */
532 if (getenv("TERM") && strstr(getenv("TERM"), "xterm"))
533 fprintf(stdout, "\033]2;%s\007", text);
536 static void set_icon(char *text)
538 if (getenv("TERM") && strstr(getenv("TERM"), "xterm"))
539 fprintf(stdout, "\033]1;%s\007", text);
542 static int set_priority(int pri)
544 struct sched_param sched;
545 memset(&sched, 0, sizeof(sched));
546 /* We set ourselves to a high priority, that we might pre-empt everything
547 else. If your PBX has heavy activity on it, this is a good thing. */
550 sched.sched_priority = 10;
551 if (sched_setscheduler(0, SCHED_RR, &sched)) {
552 ast_log(LOG_WARNING, "Unable to set high priority\n");
556 ast_verbose("Set to realtime thread\n");
558 sched.sched_priority = 0;
559 if (sched_setscheduler(0, SCHED_OTHER, &sched)) {
560 ast_log(LOG_WARNING, "Unable to set normal priority\n");
566 if (setpriority(PRIO_PROCESS, 0, -10) == -1) {
567 ast_log(LOG_WARNING, "Unable to set high priority\n");
571 ast_verbose("Set to high priority\n");
573 if (setpriority(PRIO_PROCESS, 0, 0) == -1) {
574 ast_log(LOG_WARNING, "Unable to set normal priority\n");
582 static void ast_run_atexits(void)
584 struct ast_atexit *ae;
585 ast_mutex_lock(&atexitslock);
592 ast_mutex_unlock(&atexitslock);
595 static void quit_handler(int num, int nice, int safeshutdown, int restart)
597 char filename[80] = "";
603 /* Begin shutdown routine, hanging up active channels */
604 ast_begin_shutdown(1);
605 if (option_verbose && option_console)
606 ast_verbose("Beginning asterisk %s....\n", restart ? "restart" : "shutdown");
610 /* Wait up to 15 seconds for all channels to go away */
613 if (!ast_active_channels())
617 /* Sleep 1/10 of a second */
622 ast_begin_shutdown(0);
623 if (option_verbose && option_console)
624 ast_verbose("Waiting for inactivity to perform %s...\n", restart ? "restart" : "halt");
626 if (!ast_active_channels())
635 if (option_verbose && option_console)
636 ast_verbose("Asterisk %s cancelled.\n", restart ? "restart" : "shutdown");
640 if (option_console || option_remote) {
642 snprintf(filename, sizeof(filename), "%s/.asterisk_history", getenv("HOME"));
643 if (!ast_strlen_zero(filename))
644 ast_el_write_history(filename);
648 history_end(el_hist);
651 ast_verbose("Executing last minute cleanups\n");
654 if (option_verbose && option_console)
655 ast_verbose("Asterisk %s ending (%d).\n", ast_active_channels() ? "uncleanly" : "cleanly", num);
656 else if (option_debug)
657 ast_log(LOG_DEBUG, "Asterisk ending (%d).\n", num);
658 manager_event(EVENT_FLAG_SYSTEM, "Shutdown", "Shutdown: %s\r\nRestart: %s\r\n", ast_active_channels() ? "Uncleanly" : "Cleanly", restart ? "True" : "False");
659 if (ast_socket > -1) {
663 if (ast_consock > -1)
666 unlink((char *)ast_config_AST_SOCKET);
667 if (!option_remote) unlink((char *)ast_config_AST_PID);
670 if (option_verbose || option_console)
671 ast_verbose("Preparing for Asterisk restart...\n");
672 /* Mark all FD's for closing on exec */
673 for (x=3;x<32768;x++) {
674 fcntl(x, F_SETFD, FD_CLOEXEC);
676 if (option_verbose || option_console)
677 ast_verbose("Restarting Asterisk NOW...\n");
683 /* If there is a consolethread running send it a SIGHUP
684 so it can execvp, otherwise we can do it ourselves */
685 if (consolethread != AST_PTHREADT_NULL) {
686 pthread_kill(consolethread, SIGHUP);
687 /* Give the signal handler some time to complete */
690 execvp(_argv[0], _argv);
699 static void __quit_handler(int num)
701 quit_handler(num, 0, 1, 0);
704 static const char *fix_header(char *outbuf, int maxout, const char *s, char *cmp)
707 if (!strncmp(s, cmp, strlen(cmp))) {
709 term_color(outbuf, cmp, COLOR_GRAY, 0, maxout);
715 static void console_verboser(const char *s, int pos, int replace, int complete)
719 /* Return to the beginning of the line */
721 fprintf(stdout, "\r");
722 if ((c = fix_header(tmp, sizeof(tmp), s, VERBOSE_PREFIX_4)) ||
723 (c = fix_header(tmp, sizeof(tmp), s, VERBOSE_PREFIX_3)) ||
724 (c = fix_header(tmp, sizeof(tmp), s, VERBOSE_PREFIX_2)) ||
725 (c = fix_header(tmp, sizeof(tmp), s, VERBOSE_PREFIX_1)))
729 fputs(c + pos,stdout);
731 fputs(s + pos,stdout);
734 /* Wake up a poll()ing console */
735 if (option_console && consolethread != AST_PTHREADT_NULL)
736 pthread_kill(consolethread, SIGURG);
740 static int ast_all_zeros(char *s)
750 static void consolehandler(char *s)
754 /* Called when readline data is available */
755 if (s && !ast_all_zeros(s))
756 ast_el_add_history(s);
757 /* Give the console access to the shell */
759 /* The real handler for bang */
762 ast_safe_system(s+1);
764 ast_safe_system(getenv("SHELL") ? getenv("SHELL") : "/bin/sh");
766 ast_cli_command(STDOUT_FILENO, s);
768 fprintf(stdout, "\nUse \"quit\" to exit\n");
771 static int remoteconsolehandler(char *s)
774 /* Called when readline data is available */
775 if (s && !ast_all_zeros(s))
776 ast_el_add_history(s);
777 /* Give the console access to the shell */
779 /* The real handler for bang */
782 ast_safe_system(s+1);
784 ast_safe_system(getenv("SHELL") ? getenv("SHELL") : "/bin/sh");
787 if ((strncasecmp(s, "quit", 4) == 0 || strncasecmp(s, "exit", 4) == 0) &&
788 (s[4] == '\0' || isspace(s[4]))) {
789 quit_handler(0, 0, 0, 0);
793 fprintf(stdout, "\nUse \"quit\" to exit\n");
798 static char quit_help[] =
800 " Exits Asterisk.\n";
802 static char abort_halt_help[] =
803 "Usage: abort shutdown\n"
804 " Causes Asterisk to abort an executing shutdown or restart, and resume normal\n"
805 " call operations.\n";
807 static char shutdown_now_help[] =
809 " Shuts down a running Asterisk immediately, hanging up all active calls .\n";
811 static char shutdown_gracefully_help[] =
812 "Usage: stop gracefully\n"
813 " Causes Asterisk to not accept new calls, and exit when all\n"
814 " active calls have terminated normally.\n";
816 static char shutdown_when_convenient_help[] =
817 "Usage: stop when convenient\n"
818 " Causes Asterisk to perform a shutdown when all active calls have ended.\n";
820 static char restart_now_help[] =
821 "Usage: restart now\n"
822 " Causes Asterisk to hangup all calls and exec() itself performing a cold\n"
825 static char restart_gracefully_help[] =
826 "Usage: restart gracefully\n"
827 " Causes Asterisk to stop accepting new calls and exec() itself performing a cold\n"
828 " restart when all active calls have ended.\n";
830 static char restart_when_convenient_help[] =
831 "Usage: restart when convenient\n"
832 " Causes Asterisk to perform a cold restart when all active calls have ended.\n";
834 static char bang_help[] =
835 "Usage: !<command>\n"
836 " Executes a given shell command\n";
839 static int handle_quit(int fd, int argc, char *argv[])
842 return RESULT_SHOWUSAGE;
843 quit_handler(0, 0, 1, 0);
844 return RESULT_SUCCESS;
848 static int no_more_quit(int fd, int argc, char *argv[])
851 return RESULT_SHOWUSAGE;
852 ast_cli(fd, "The QUIT and EXIT commands may no longer be used to shutdown the PBX.\n"
853 "Please use STOP NOW instead, if you wish to shutdown the PBX.\n");
854 return RESULT_SUCCESS;
857 static int handle_shutdown_now(int fd, int argc, char *argv[])
860 return RESULT_SHOWUSAGE;
861 quit_handler(0, 0 /* Not nice */, 1 /* safely */, 0 /* not restart */);
862 return RESULT_SUCCESS;
865 static int handle_shutdown_gracefully(int fd, int argc, char *argv[])
868 return RESULT_SHOWUSAGE;
869 quit_handler(0, 1 /* nicely */, 1 /* safely */, 0 /* no restart */);
870 return RESULT_SUCCESS;
873 static int handle_shutdown_when_convenient(int fd, int argc, char *argv[])
876 return RESULT_SHOWUSAGE;
877 quit_handler(0, 2 /* really nicely */, 1 /* safely */, 0 /* don't restart */);
878 return RESULT_SUCCESS;
881 static int handle_restart_now(int fd, int argc, char *argv[])
884 return RESULT_SHOWUSAGE;
885 quit_handler(0, 0 /* not nicely */, 1 /* safely */, 1 /* restart */);
886 return RESULT_SUCCESS;
889 static int handle_restart_gracefully(int fd, int argc, char *argv[])
892 return RESULT_SHOWUSAGE;
893 quit_handler(0, 1 /* nicely */, 1 /* safely */, 1 /* restart */);
894 return RESULT_SUCCESS;
897 static int handle_restart_when_convenient(int fd, int argc, char *argv[])
900 return RESULT_SHOWUSAGE;
901 quit_handler(0, 2 /* really nicely */, 1 /* safely */, 1 /* restart */);
902 return RESULT_SUCCESS;
905 static int handle_abort_halt(int fd, int argc, char *argv[])
908 return RESULT_SHOWUSAGE;
909 ast_cancel_shutdown();
911 return RESULT_SUCCESS;
914 static int handle_bang(int fd, int argc, char *argv[])
916 return RESULT_SUCCESS;
919 #define ASTERISK_PROMPT "*CLI> "
921 #define ASTERISK_PROMPT2 "%s*CLI> "
923 static struct ast_cli_entry aborthalt = { { "abort", "halt", NULL }, handle_abort_halt, "Cancel a running halt", abort_halt_help };
925 static struct ast_cli_entry quit = { { "quit", NULL }, no_more_quit, "Exit Asterisk", quit_help };
926 static struct ast_cli_entry astexit = { { "exit", NULL }, no_more_quit, "Exit Asterisk", quit_help };
928 static struct ast_cli_entry astshutdownnow = { { "stop", "now", NULL }, handle_shutdown_now, "Shut down Asterisk immediately", shutdown_now_help };
929 static struct ast_cli_entry astshutdowngracefully = { { "stop", "gracefully", NULL }, handle_shutdown_gracefully, "Gracefully shut down Asterisk", shutdown_gracefully_help };
930 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 };
931 static struct ast_cli_entry astrestartnow = { { "restart", "now", NULL }, handle_restart_now, "Restart Asterisk immediately", restart_now_help };
932 static struct ast_cli_entry astrestartgracefully = { { "restart", "gracefully", NULL }, handle_restart_gracefully, "Restart Asterisk gracefully", restart_gracefully_help };
933 static struct ast_cli_entry astrestartwhenconvenient= { { "restart", "when", "convenient", NULL }, handle_restart_when_convenient, "Restart Asterisk at empty call volume", restart_when_convenient_help };
934 static struct ast_cli_entry astbang = { { "!", NULL }, handle_bang, "Execute a shell command", bang_help };
936 static int ast_el_read_char(EditLine *el, char *cp)
940 struct pollfd fds[2];
947 fds[0].fd = ast_consock;
948 fds[0].events = POLLIN;
950 fds[1].fd = STDIN_FILENO;
951 fds[1].events = POLLIN;
954 res = poll(fds, max, -1);
958 ast_log(LOG_ERROR, "poll failed: %s\n", strerror(errno));
962 if (!option_exec && fds[1].revents) {
963 num_read = read(STDIN_FILENO, cp, 1);
969 if (fds[0].revents) {
970 res = read(ast_consock, buf, sizeof(buf) - 1);
971 /* if the remote side disappears exit */
973 fprintf(stderr, "\nDisconnected from Asterisk server\n");
974 if (!option_reconnect) {
975 quit_handler(0, 0, 0, 0);
978 int reconnects_per_second = 20;
979 fprintf(stderr, "Attempting to reconnect for 30 seconds\n");
980 for (tries=0;tries<30 * reconnects_per_second;tries++) {
981 if (ast_tryconnect()) {
982 fprintf(stderr, "Reconnect succeeded after %.3f seconds\n", 1.0 / reconnects_per_second * tries);
987 usleep(1000000 / reconnects_per_second);
990 if (tries >= 30 * reconnects_per_second) {
991 fprintf(stderr, "Failed to reconnect for 30 seconds. Quitting.\n");
992 quit_handler(0, 0, 0, 0);
999 if (!option_exec && !lastpos)
1000 write(STDOUT_FILENO, "\r", 1);
1001 write(STDOUT_FILENO, buf, res);
1002 if ((buf[res-1] == '\n') || (buf[res-2] == '\n')) {
1015 static char *cli_prompt(EditLine *el)
1017 static char prompt[200];
1022 if ((pfmt = getenv("ASTERISK_PROMPT"))) {
1023 char *t = pfmt, *p = prompt;
1024 memset(prompt, 0, sizeof(prompt));
1025 while (*t != '\0' && *p < sizeof(prompt)) {
1034 int fgcolor = COLOR_WHITE, bgcolor = COLOR_BLACK;
1038 case 'C': /* color */
1040 if (sscanf(t, "%d;%d%n", &fgcolor, &bgcolor, &i) == 2) {
1041 strncat(p, term_color_code(term_code, fgcolor, bgcolor, sizeof(term_code)),sizeof(prompt) - strlen(prompt) - 1);
1043 } else if (sscanf(t, "%d%n", &fgcolor, &i) == 1) {
1044 strncat(p, term_color_code(term_code, fgcolor, 0, sizeof(term_code)),sizeof(prompt) - strlen(prompt) - 1);
1048 /* If the color has been reset correctly, then there's no need to reset it later */
1049 if ((fgcolor == COLOR_WHITE) && (bgcolor == COLOR_BLACK)) {
1055 case 'd': /* date */
1056 memset(&tm, 0, sizeof(struct tm));
1057 gettimeofday(&tv, NULL);
1058 if (localtime_r(&(tv.tv_sec), &tm)) {
1059 strftime(p, sizeof(prompt) - strlen(prompt), "%Y-%m-%d", &tm);
1062 case 'h': /* hostname */
1063 if (!gethostname(hostname, sizeof(hostname) - 1)) {
1064 strncat(p, hostname, sizeof(prompt) - strlen(prompt) - 1);
1066 strncat(p, "localhost", sizeof(prompt) - strlen(prompt) - 1);
1069 case 'H': /* short hostname */
1070 if (!gethostname(hostname, sizeof(hostname) - 1)) {
1071 for (i=0;i<sizeof(hostname);i++) {
1072 if (hostname[i] == '.') {
1077 strncat(p, hostname, sizeof(prompt) - strlen(prompt) - 1);
1079 strncat(p, "localhost", sizeof(prompt) - strlen(prompt) - 1);
1083 case 'l': /* load avg */
1085 if ((LOADAVG = fopen("/proc/loadavg", "r"))) {
1086 float avg1, avg2, avg3;
1087 int actproc, totproc, npid, which;
1088 fscanf(LOADAVG, "%f %f %f %d/%d %d",
1089 &avg1, &avg2, &avg3, &actproc, &totproc, &npid);
1090 if (sscanf(t, "%d", &which) == 1) {
1093 snprintf(p, sizeof(prompt) - strlen(prompt), "%.2f", avg1);
1096 snprintf(p, sizeof(prompt) - strlen(prompt), "%.2f", avg2);
1099 snprintf(p, sizeof(prompt) - strlen(prompt), "%.2f", avg3);
1102 snprintf(p, sizeof(prompt) - strlen(prompt), "%d/%d", actproc, totproc);
1105 snprintf(p, sizeof(prompt) - strlen(prompt), "%d", npid);
1112 case 't': /* time */
1113 memset(&tm, 0, sizeof(struct tm));
1114 gettimeofday(&tv, NULL);
1115 if (localtime_r(&(tv.tv_sec), &tm)) {
1116 strftime(p, sizeof(prompt) - strlen(prompt), "%H:%M:%S", &tm);
1119 case '#': /* process console or remote? */
1120 if (! option_remote) {
1121 strncat(p, "#", sizeof(prompt) - strlen(prompt) - 1);
1123 strncat(p, ">", sizeof(prompt) - strlen(prompt) - 1);
1126 case '%': /* literal % */
1127 strncat(p, "%", sizeof(prompt) - strlen(prompt) - 1);
1129 case '\0': /* % is last character - prevent bug */
1133 while (*p != '\0') {
1144 /* Force colors back to normal at end */
1145 term_color_code(term_code, COLOR_WHITE, COLOR_BLACK, sizeof(term_code));
1146 if (strlen(term_code) > sizeof(prompt) - strlen(prompt)) {
1147 strncat(prompt + sizeof(prompt) - strlen(term_code) - 1, term_code, strlen(term_code));
1149 strncat(p, term_code, sizeof(term_code));
1152 } else if (remotehostname)
1153 snprintf(prompt, sizeof(prompt), ASTERISK_PROMPT2, remotehostname);
1155 snprintf(prompt, sizeof(prompt), ASTERISK_PROMPT);
1160 static char **ast_el_strtoarr(char *buf)
1162 char **match_list = NULL, *retstr;
1163 size_t match_list_len;
1167 while ( (retstr = strsep(&buf, " ")) != NULL) {
1169 if (!strcmp(retstr, AST_CLI_COMPLETE_EOF))
1171 if (matches + 1 >= match_list_len) {
1172 match_list_len <<= 1;
1173 match_list = realloc(match_list, match_list_len * sizeof(char *));
1176 match_list[matches++] = strdup(retstr);
1180 return (char **) NULL;
1182 if (matches>= match_list_len)
1183 match_list = realloc(match_list, (match_list_len + 1) * sizeof(char *));
1185 match_list[matches] = (char *) NULL;
1190 static int ast_el_sort_compare(const void *i1, const void *i2)
1194 s1 = ((char **)i1)[0];
1195 s2 = ((char **)i2)[0];
1197 return strcasecmp(s1, s2);
1200 static int ast_cli_display_match_list(char **matches, int len, int max)
1202 int i, idx, limit, count;
1203 int screenwidth = 0;
1204 int numoutput = 0, numoutputline = 0;
1206 screenwidth = ast_get_termcols(STDOUT_FILENO);
1208 /* find out how many entries can be put on one line, with two spaces between strings */
1209 limit = screenwidth / (max + 2);
1213 /* how many lines of output */
1214 count = len / limit;
1215 if (count * limit < len)
1220 qsort(&matches[0], (size_t)(len + 1), sizeof(char *), ast_el_sort_compare);
1222 for (; count > 0; count--) {
1224 for (i=0; i < limit && matches[idx]; i++, idx++) {
1226 /* Don't print dupes */
1227 if ( (matches[idx+1] != NULL && strcmp(matches[idx], matches[idx+1]) == 0 ) ) {
1230 matches[idx] = NULL;
1236 fprintf(stdout, "%-*s ", max, matches[idx]);
1238 matches[idx] = NULL;
1240 if (numoutputline > 0)
1241 fprintf(stdout, "\n");
1248 static char *cli_complete(EditLine *el, int ch)
1254 int retval = CC_ERROR;
1258 LineInfo *lf = (LineInfo *)el_line(el);
1260 *(char *)lf->cursor = '\0';
1261 ptr = (char *)lf->cursor;
1263 while (ptr > lf->buffer) {
1264 if (isspace(*ptr)) {
1272 len = lf->cursor - ptr;
1274 if (option_remote) {
1275 snprintf(buf, sizeof(buf),"_COMMAND NUMMATCHES \"%s\" \"%s\"", lf->buffer, ptr);
1276 fdprint(ast_consock, buf);
1277 res = read(ast_consock, buf, sizeof(buf));
1279 nummatches = atoi(buf);
1281 if (nummatches > 0) {
1283 int mlen = 0, maxmbuf = 2048;
1284 /* Start with a 2048 byte buffer */
1285 mbuf = malloc(maxmbuf);
1287 return (char *)(CC_ERROR);
1288 snprintf(buf, sizeof(buf),"_COMMAND MATCHESARRAY \"%s\" \"%s\"", lf->buffer, ptr);
1289 fdprint(ast_consock, buf);
1292 while (!strstr(mbuf, AST_CLI_COMPLETE_EOF) && res != -1) {
1293 if (mlen + 1024 > maxmbuf) {
1294 /* Every step increment buffer 1024 bytes */
1296 mbuf = realloc(mbuf, maxmbuf);
1298 return (char *)(CC_ERROR);
1300 /* Only read 1024 bytes at a time */
1301 res = read(ast_consock, mbuf + mlen, 1024);
1307 matches = ast_el_strtoarr(mbuf);
1310 matches = (char **) NULL;
1315 nummatches = ast_cli_generatornummatches((char *)lf->buffer,ptr);
1316 matches = ast_cli_completion_matches((char *)lf->buffer,ptr);
1321 int matches_num, maxlen, match_len;
1323 if (matches[0][0] != '\0') {
1324 el_deletestr(el, (int) len);
1325 el_insertstr(el, matches[0]);
1326 retval = CC_REFRESH;
1329 if (nummatches == 1) {
1330 /* Found an exact match */
1331 el_insertstr(el, " ");
1332 retval = CC_REFRESH;
1334 /* Must be more than one match */
1335 for (i=1, maxlen=0; matches[i]; i++) {
1336 match_len = strlen(matches[i]);
1337 if (match_len > maxlen)
1340 matches_num = i - 1;
1341 if (matches_num >1) {
1342 fprintf(stdout, "\n");
1343 ast_cli_display_match_list(matches, nummatches, maxlen);
1344 retval = CC_REDISPLAY;
1346 el_insertstr(el," ");
1347 retval = CC_REFRESH;
1353 return (char *)(long)retval;
1356 static int ast_el_initialize(void)
1359 char *editor = getenv("AST_EDITOR");
1363 if (el_hist != NULL)
1364 history_end(el_hist);
1366 el = el_init("asterisk", stdin, stdout, stderr);
1367 el_set(el, EL_PROMPT, cli_prompt);
1369 el_set(el, EL_EDITMODE, 1);
1370 el_set(el, EL_EDITOR, editor ? editor : "emacs");
1371 el_hist = history_init();
1372 if (!el || !el_hist)
1375 /* setup history with 100 entries */
1376 history(el_hist, &ev, H_SETSIZE, 100);
1378 el_set(el, EL_HIST, history, el_hist);
1380 el_set(el, EL_ADDFN, "ed-complete", "Complete argument", cli_complete);
1381 /* Bind <tab> to command completion */
1382 el_set(el, EL_BIND, "^I", "ed-complete", NULL);
1383 /* Bind ? to command completion */
1384 el_set(el, EL_BIND, "?", "ed-complete", NULL);
1385 /* Bind ^D to redisplay */
1386 el_set(el, EL_BIND, "^D", "ed-redisplay", NULL);
1391 static int ast_el_add_history(char *buf)
1395 if (el_hist == NULL || el == NULL)
1396 ast_el_initialize();
1397 if (strlen(buf) > 256)
1399 return (history(el_hist, &ev, H_ENTER, buf));
1402 static int ast_el_write_history(char *filename)
1406 if (el_hist == NULL || el == NULL)
1407 ast_el_initialize();
1409 return (history(el_hist, &ev, H_SAVE, filename));
1412 static int ast_el_read_history(char *filename)
1418 if (el_hist == NULL || el == NULL)
1419 ast_el_initialize();
1421 if ((f = fopen(filename, "r")) == NULL)
1425 fgets(buf, sizeof(buf), f);
1426 if (!strcmp(buf, "_HiStOrY_V2_\n"))
1428 if (ast_all_zeros(buf))
1430 if ((ret = ast_el_add_history(buf)) == -1)
1438 static void ast_remotecontrol(char * data)
1442 char filename[80] = "";
1453 read(ast_consock, buf, sizeof(buf));
1455 write(ast_consock, data, strlen(data) + 1);
1457 hostname = strsep(&stringp, "/");
1458 cpid = strsep(&stringp, "/");
1459 version = strsep(&stringp, "\n");
1461 version = "<Version Unknown>";
1463 strsep(&stringp, ".");
1468 snprintf(tmp, sizeof(tmp), "set verbose atleast %d", option_verbose);
1469 fdprint(ast_consock, tmp);
1470 snprintf(tmp, sizeof(tmp), "set debug atleast %d", option_debug);
1471 fdprint(ast_consock, tmp);
1472 ast_verbose("Connected to Asterisk %s currently running on %s (pid = %d)\n", version, hostname, pid);
1473 remotehostname = hostname;
1475 snprintf(filename, sizeof(filename), "%s/.asterisk_history", getenv("HOME"));
1476 if (el_hist == NULL || el == NULL)
1477 ast_el_initialize();
1479 el_set(el, EL_GETCFN, ast_el_read_char);
1481 if (!ast_strlen_zero(filename))
1482 ast_el_read_history(filename);
1484 ast_cli_register(&quit);
1485 ast_cli_register(&astexit);
1487 ast_cli_register(&astshutdown);
1489 if (option_exec && data) { /* hack to print output then exit if asterisk -rx is used */
1491 struct pollfd fds[0];
1492 fds[0].fd = ast_consock;
1493 fds[0].events = POLLIN;
1495 while(poll(fds, 1, 100) > 0) {
1496 ast_el_read_char(el, &tempchar);
1501 ebuf = (char *)el_gets(el, &num);
1503 if (ebuf && !ast_strlen_zero(ebuf)) {
1504 if (ebuf[strlen(ebuf)-1] == '\n')
1505 ebuf[strlen(ebuf)-1] = '\0';
1506 if (!remoteconsolehandler(ebuf)) {
1507 res = write(ast_consock, ebuf, strlen(ebuf) + 1);
1509 ast_log(LOG_WARNING, "Unable to write: %s\n", strerror(errno));
1515 printf("\nDisconnected from Asterisk server\n");
1518 static int show_version(void)
1520 printf("Asterisk " ASTERISK_VERSION "\n");
1524 static int show_cli_help(void) {
1525 printf("Asterisk " ASTERISK_VERSION ", Copyright (C) 2000 - 2005, Digium.\n");
1526 printf("Usage: asterisk [OPTIONS]\n");
1527 printf("Valid Options:\n");
1528 printf(" -V Display version number and exit\n");
1529 printf(" -C <configfile> Use an alternate configuration file\n");
1530 printf(" -G <group> Run as a group other than the caller\n");
1531 printf(" -U <user> Run as a user other than the caller\n");
1532 printf(" -c Provide console CLI\n");
1533 printf(" -d Enable extra debugging\n");
1534 printf(" -f Do not fork\n");
1535 printf(" -g Dump core in case of a crash\n");
1536 printf(" -h This help screen\n");
1537 printf(" -i Initialize crypto keys at startup\n");
1538 printf(" -n Disable console colorization\n");
1539 printf(" -p Run as pseudo-realtime thread\n");
1540 printf(" -q Quiet mode (suppress output)\n");
1541 printf(" -r Connect to Asterisk on this machine\n");
1542 printf(" -R Connect to Asterisk, and attempt to reconnect if disconnected\n");
1543 printf(" -t Record soundfiles in /var/tmp and move them where they belong after they are done.\n");
1544 printf(" -T Display the time in [Mmm dd hh:mm:ss] format for each line of output to the CLI.\n");
1545 printf(" -v Increase verbosity (multiple v's = more verbose)\n");
1546 printf(" -x <cmd> Execute command <cmd> (only valid with -r)\n");
1551 static void ast_readconfig(void) {
1552 struct ast_config *cfg;
1553 struct ast_variable *v;
1554 struct ast_variable *v_ctlfile;
1555 char *config = ASTCONFPATH;
1557 if (option_overrideconfig == 1) {
1558 cfg = ast_config_load((char *)ast_config_AST_CONFIG_FILE);
1560 ast_log(LOG_WARNING, "Unable to open specified master config file '%s', using builtin defaults\n", ast_config_AST_CONFIG_FILE);
1562 cfg = ast_config_load(config);
1565 /* init with buildtime config */
1566 strncpy((char *)ast_config_AST_CONFIG_DIR,AST_CONFIG_DIR,sizeof(ast_config_AST_CONFIG_DIR)-1);
1567 strncpy((char *)ast_config_AST_SPOOL_DIR,AST_SPOOL_DIR,sizeof(ast_config_AST_SPOOL_DIR)-1);
1568 strncpy((char *)ast_config_AST_MODULE_DIR,AST_MODULE_DIR,sizeof(ast_config_AST_VAR_DIR)-1);
1569 strncpy((char *)ast_config_AST_VAR_DIR,AST_VAR_DIR,sizeof(ast_config_AST_VAR_DIR)-1);
1570 strncpy((char *)ast_config_AST_LOG_DIR,AST_LOG_DIR,sizeof(ast_config_AST_LOG_DIR)-1);
1571 strncpy((char *)ast_config_AST_AGI_DIR,AST_AGI_DIR,sizeof(ast_config_AST_AGI_DIR)-1);
1572 strncpy((char *)ast_config_AST_DB,AST_DB,sizeof(ast_config_AST_DB)-1);
1573 strncpy((char *)ast_config_AST_KEY_DIR,AST_KEY_DIR,sizeof(ast_config_AST_KEY_DIR)-1);
1574 strncpy((char *)ast_config_AST_PID,AST_PID,sizeof(ast_config_AST_PID)-1);
1575 strncpy((char *)ast_config_AST_SOCKET,AST_SOCKET,sizeof(ast_config_AST_SOCKET)-1);
1576 strncpy((char *)ast_config_AST_RUN_DIR,AST_RUN_DIR,sizeof(ast_config_AST_RUN_DIR)-1);
1578 /* no asterisk.conf? no problem, use buildtime config! */
1583 v_ctlfile = ast_variable_browse(cfg, "files");
1584 while (v_ctlfile!=NULL) {
1585 if (strcmp(v_ctlfile->name,"astctl")==0)
1587 v_ctlfile=v_ctlfile->next;
1590 v = ast_variable_browse(cfg, "directories");
1592 if (!strcasecmp(v->name, "astetcdir")) {
1593 strncpy((char *)ast_config_AST_CONFIG_DIR,v->value,sizeof(ast_config_AST_CONFIG_DIR)-1);
1594 } else if (!strcasecmp(v->name, "astspooldir")) {
1595 strncpy((char *)ast_config_AST_SPOOL_DIR,v->value,sizeof(ast_config_AST_SPOOL_DIR)-1);
1596 } else if (!strcasecmp(v->name, "astvarlibdir")) {
1597 strncpy((char *)ast_config_AST_VAR_DIR,v->value,sizeof(ast_config_AST_VAR_DIR)-1);
1598 snprintf((char *)ast_config_AST_DB,sizeof(ast_config_AST_DB),"%s/%s",v->value,"astdb");
1599 } else if (!strcasecmp(v->name, "astlogdir")) {
1600 strncpy((char *)ast_config_AST_LOG_DIR,v->value,sizeof(ast_config_AST_LOG_DIR)-1);
1601 } else if (!strcasecmp(v->name, "astagidir")) {
1602 strncpy((char *)ast_config_AST_AGI_DIR,v->value,sizeof(ast_config_AST_AGI_DIR)-1);
1603 } else if (!strcasecmp(v->name, "astrundir")) {
1604 snprintf((char *)ast_config_AST_PID,sizeof(ast_config_AST_PID),"%s/%s",v->value,"asterisk.pid");
1605 snprintf((char *)ast_config_AST_SOCKET,sizeof(ast_config_AST_SOCKET),"%s/%s",v->value,v_ctlfile==NULL?"asterisk.ctl":v_ctlfile->value);
1606 strncpy((char *)ast_config_AST_RUN_DIR,v->value,sizeof(ast_config_AST_RUN_DIR)-1);
1607 } else if (!strcasecmp(v->name, "astmoddir")) {
1608 strncpy((char *)ast_config_AST_MODULE_DIR,v->value,sizeof(ast_config_AST_MODULE_DIR)-1);
1612 v = ast_variable_browse(cfg, "options");
1614 /* verbose level (-v at startup) */
1615 if (!strcasecmp(v->name, "verbose")) {
1616 option_verbose= atoi(v->value);
1617 /* whether or not to force timestamping. (-T at startup) */
1618 } else if (!strcasecmp(v->name, "timestamp")) {
1619 option_timestamp = ast_true(v->value);
1620 /* whether or not to support #exec in config files */
1621 } else if (!strcasecmp(v->name, "execincludes")) {
1622 option_exec_includes = ast_true(v->value);
1623 /* debug level (-d at startup) */
1624 } else if (!strcasecmp(v->name, "debug")) {
1626 if (sscanf(v->value, "%d", &option_debug) != 1) {
1627 option_debug = ast_true(v->value);
1629 /* Disable forking (-f at startup) */
1630 } else if (!strcasecmp(v->name, "nofork")) {
1631 option_nofork = ast_true(v->value);
1632 /* Run quietly (-q at startup ) */
1633 } else if (!strcasecmp(v->name, "quiet")) {
1634 option_quiet = ast_true(v->value);
1635 /* Run as console (-c at startup, implies nofork) */
1636 } else if (!strcasecmp(v->name, "console")) {
1637 option_console = ast_true(v->value);
1638 /* Run with highg priority if the O/S permits (-p at startup) */
1639 } else if (!strcasecmp(v->name, "highpriority")) {
1640 option_highpriority = ast_true(v->value);
1641 /* Initialize RSA auth keys (IAX2) (-i at startup) */
1642 } else if (!strcasecmp(v->name, "initcrypto")) {
1643 option_initcrypto = ast_true(v->value);
1644 /* Disable ANSI colors for console (-c at startup) */
1645 } else if (!strcasecmp(v->name, "nocolor")) {
1646 option_nocolor = ast_true(v->value);
1647 /* Dump core in case of crash (-g) */
1648 } else if (!strcasecmp(v->name, "dumpcore")) {
1649 option_dumpcore = ast_true(v->value);
1650 /* Cache recorded sound files to another directory during recording */
1651 } else if (!strcasecmp(v->name, "cache_record_files")) {
1652 option_cache_record_files = ast_true(v->value);
1653 /* Specify cache directory */
1654 } else if (!strcasecmp(v->name, "record_cache_dir")) {
1655 strncpy(record_cache_dir,v->value,AST_CACHE_DIR_LEN);
1659 ast_config_destroy(cfg);
1662 int main(int argc, char *argv[])
1665 char filename[80] = "";
1674 char *runuser=NULL, *rungroup=NULL;
1675 struct pollfd silly_macos[1];
1677 /* Remember original args for restart */
1678 if (argc > sizeof(_argv) / sizeof(_argv[0]) - 1) {
1679 fprintf(stderr, "Truncating argument size to %d\n", (int)(sizeof(_argv) / sizeof(_argv[0])) - 1);
1680 argc = sizeof(_argv) / sizeof(_argv[0]) - 1;
1682 for (x=0;x<argc;x++)
1686 /* if the progname is rasterisk consider it a remote console */
1687 if (argv[0] && (strstr(argv[0], "rasterisk")) != NULL) {
1691 if (gethostname(hostname, sizeof(hostname)))
1692 strncpy(hostname, "<Unknown>", sizeof(hostname)-1);
1693 ast_mainpid = getpid();
1700 snprintf(filename, sizeof(filename), "%s/.asterisk_history", getenv("HOME"));
1701 /* Check if we're root */
1704 ast_log(LOG_ERROR, "Must be run as root\n");
1708 /* Check for options */
1709 while((c=getopt(argc, argv, "tThfdvVqprRgcinx:U:G:C:")) != -1) {
1735 option_highpriority++;
1745 option_cache_record_files++;
1755 strncpy((char *)ast_config_AST_CONFIG_FILE,optarg,sizeof(ast_config_AST_CONFIG_FILE) - 1);
1756 option_overrideconfig++;
1759 option_initcrypto++;
1781 if (option_dumpcore) {
1783 memset(&l, 0, sizeof(l));
1784 l.rlim_cur = RLIM_INFINITY;
1785 l.rlim_max = RLIM_INFINITY;
1786 if (setrlimit(RLIMIT_CORE, &l)) {
1787 ast_log(LOG_WARNING, "Unable to disable core size resource limit: %s\n", strerror(errno));
1791 if (option_console && !option_verbose)
1792 ast_verbose("[ Reading Master Configuration ]");
1795 if (set_priority(option_highpriority)) {
1801 gr = getgrnam(rungroup);
1803 ast_log(LOG_WARNING, "No such group '%s'!\n", rungroup);
1806 if (setgid(gr->gr_gid)) {
1807 ast_log(LOG_WARNING, "Unable to setgid to %d (%s)\n", gr->gr_gid, rungroup);
1811 ast_verbose("Running as group '%s'\n", rungroup);
1816 pw = getpwnam(runuser);
1818 ast_log(LOG_WARNING, "No such user '%s'!\n", runuser);
1821 if (setuid(pw->pw_uid)) {
1822 ast_log(LOG_WARNING, "Unable to setuid to %d (%s)\n", pw->pw_uid, runuser);
1826 ast_verbose("Running as user '%s'\n", runuser);
1833 if (option_console && !option_verbose)
1834 ast_verbose("[ Initializing Custom Configuration Options ]");
1835 /* custom config setup */
1836 register_config_cli();
1840 if (option_console) {
1841 if (el_hist == NULL || el == NULL)
1842 ast_el_initialize();
1844 if (!ast_strlen_zero(filename))
1845 ast_el_read_history(filename);
1848 if (ast_tryconnect()) {
1849 /* One is already running */
1850 if (option_remote) {
1852 ast_remotecontrol(xarg);
1853 quit_handler(0, 0, 0, 0);
1856 printf(term_quit());
1857 ast_register_verbose(console_verboser);
1859 ast_remotecontrol(NULL);
1860 quit_handler(0, 0, 0, 0);
1863 ast_log(LOG_ERROR, "Asterisk already running on %s. Use 'asterisk -r' to connect.\n", (char *)ast_config_AST_SOCKET);
1864 printf(term_quit());
1867 } else if (option_remote || option_exec) {
1868 ast_log(LOG_ERROR, "Unable to connect to remote asterisk (does %s exist?)\n",ast_config_AST_SOCKET);
1869 printf(term_quit());
1872 /* Blindly write pid file since we couldn't connect */
1873 unlink((char *)ast_config_AST_PID);
1874 f = fopen((char *)ast_config_AST_PID, "w");
1876 fprintf(f, "%d\n", getpid());
1879 ast_log(LOG_WARNING, "Unable to open pid file '%s': %s\n", (char *)ast_config_AST_PID, strerror(errno));
1881 if (!option_verbose && !option_debug && !option_nofork && !option_console) {
1883 /* Blindly re-write pid file since we are forking */
1884 unlink((char *)ast_config_AST_PID);
1885 f = fopen((char *)ast_config_AST_PID, "w");
1887 fprintf(f, "%d\n", getpid());
1890 ast_log(LOG_WARNING, "Unable to open pid file '%s': %s\n", (char *)ast_config_AST_PID, strerror(errno));
1893 /* Test recursive mutex locking. */
1894 if (test_for_thread_safety())
1895 ast_verbose("Warning! Asterisk is not thread safe.\n");
1899 sigaddset(&sigs, SIGHUP);
1900 sigaddset(&sigs, SIGTERM);
1901 sigaddset(&sigs, SIGINT);
1902 sigaddset(&sigs, SIGPIPE);
1903 sigaddset(&sigs, SIGWINCH);
1904 pthread_sigmask(SIG_BLOCK, &sigs, NULL);
1905 if (option_console || option_verbose || option_remote)
1906 ast_register_verbose(console_verboser);
1907 /* Print a welcome message if desired */
1908 if (option_verbose || option_console) {
1911 if (option_console && !option_verbose)
1912 ast_verbose("[ Booting...");
1914 signal(SIGURG, urg_handler);
1915 signal(SIGINT, __quit_handler);
1916 signal(SIGTERM, __quit_handler);
1917 signal(SIGHUP, hup_handler);
1918 signal(SIGCHLD, child_handler);
1919 signal(SIGPIPE, SIG_IGN);
1921 if (init_logger()) {
1922 printf(term_quit());
1925 ast_channels_init();
1926 if (init_manager()) {
1927 printf(term_quit());
1931 if (ast_image_init()) {
1932 printf(term_quit());
1935 if (ast_file_init()) {
1936 printf(term_quit());
1940 printf(term_quit());
1943 if (load_modules()) {
1944 printf(term_quit());
1947 if (init_framer()) {
1948 printf(term_quit());
1952 printf(term_quit());
1955 if (ast_enum_init()) {
1956 printf(term_quit());
1960 /* This should no longer be necessary */
1961 /* sync cust config and reload some internals in case a custom config handler binded to them */
1962 read_ast_cust_config();
1970 /* We might have the option of showing a console, but for now just
1972 if (option_console && !option_verbose)
1973 ast_verbose(" ]\n");
1974 if (option_verbose || option_console)
1975 ast_verbose(term_color(tmp, "Asterisk Ready.\n", COLOR_BRWHITE, COLOR_BLACK, sizeof(tmp)));
1977 consolethread = pthread_self();
1979 pthread_sigmask(SIG_UNBLOCK, &sigs, NULL);
1980 #ifdef __AST_DEBUG_MALLOC
1983 time(&ast_startuptime);
1984 ast_cli_register(&astshutdownnow);
1985 ast_cli_register(&astshutdowngracefully);
1986 ast_cli_register(&astrestartnow);
1987 ast_cli_register(&astrestartgracefully);
1988 ast_cli_register(&astrestartwhenconvenient);
1989 ast_cli_register(&astshutdownwhenconvenient);
1990 ast_cli_register(&aborthalt);
1991 ast_cli_register(&astbang);
1992 if (option_console) {
1993 /* Console stuff now... */
1994 /* Register our quit function */
1996 set_icon("Asterisk");
1997 snprintf(title, sizeof(title), "Asterisk Console on '%s' (pid %d)", hostname, ast_mainpid);
1999 ast_cli_register(&quit);
2000 ast_cli_register(&astexit);
2003 buf = (char *)el_gets(el, &num);
2005 if (buf[strlen(buf)-1] == '\n')
2006 buf[strlen(buf)-1] = '\0';
2008 consolehandler((char *)buf);
2010 if (write(STDOUT_FILENO, "\nUse EXIT or QUIT to exit the asterisk console\n",
2011 strlen("\nUse EXIT or QUIT to exit the asterisk console\n")) < 0) {
2012 /* Whoa, stdout disappeared from under us... Make /dev/null's */
2014 fd = open("/dev/null", O_RDWR);
2016 dup2(fd, STDOUT_FILENO);
2017 dup2(fd, STDIN_FILENO);
2019 ast_log(LOG_WARNING, "Failed to open /dev/null to recover from dead console. Bad things will happen!\n");
2028 poll(silly_macos,0, -1);