use the proper variable type for these unixODBC API calls, eliminating warnings on...
[asterisk-bristuff.git] / main / cli.c
blobac1226732fd0d2005772232eb62f6f66cef3a4a8
1 /*
2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2006, Digium, Inc.
6 * Mark Spencer <markster@digium.com>
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
10 * any of the maintainers of this project for assistance;
11 * the project provides a web site, mailing lists and IRC
12 * channels for your use.
14 * This program is free software, distributed under the terms of
15 * the GNU General Public License Version 2. See the LICENSE file
16 * at the top of the source tree.
19 /*! \file
21 * \brief Standard Command Line Interface
23 * \author Mark Spencer <markster@digium.com>
26 #include "asterisk.h"
28 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
30 #include <unistd.h>
31 #include <stdlib.h>
32 #include <sys/signal.h>
33 #include <stdio.h>
34 #include <signal.h>
35 #include <string.h>
36 #include <ctype.h>
37 #include <regex.h>
39 #include "asterisk/logger.h"
40 #include "asterisk/options.h"
41 #include "asterisk/cli.h"
42 #include "asterisk/linkedlists.h"
43 #include "asterisk/module.h"
44 #include "asterisk/pbx.h"
45 #include "asterisk/channel.h"
46 #include "asterisk/utils.h"
47 #include "asterisk/app.h"
48 #include "asterisk/lock.h"
49 #include "editline/readline/readline.h"
50 #include "asterisk/threadstorage.h"
52 extern unsigned long global_fin, global_fout;
54 AST_THREADSTORAGE(ast_cli_buf, ast_cli_buf_init);
56 /*! \brief Initial buffer size for resulting strings in ast_cli() */
57 #define AST_CLI_INITLEN 256
59 void ast_cli(int fd, char *fmt, ...)
61 int res;
62 struct ast_dynamic_str *buf;
63 va_list ap;
65 if (!(buf = ast_dynamic_str_thread_get(&ast_cli_buf, AST_CLI_INITLEN)))
66 return;
68 va_start(ap, fmt);
69 res = ast_dynamic_str_thread_set_va(&buf, 0, &ast_cli_buf, fmt, ap);
70 va_end(ap);
72 if (res != AST_DYNSTR_BUILD_FAILED)
73 ast_carefulwrite(fd, buf->str, strlen(buf->str), 100);
76 static AST_LIST_HEAD_STATIC(helpers, ast_cli_entry);
78 static char load_help[] =
79 "Usage: module load <module name>\n"
80 " Loads the specified module into Asterisk.\n";
82 static char unload_help[] =
83 "Usage: module unload [-f|-h] <module name>\n"
84 " Unloads the specified module from Asterisk. The -f\n"
85 " option causes the module to be unloaded even if it is\n"
86 " in use (may cause a crash) and the -h module causes the\n"
87 " module to be unloaded even if the module says it cannot, \n"
88 " which almost always will cause a crash.\n";
90 static char help_help[] =
91 "Usage: help [topic]\n"
92 " When called with a topic as an argument, displays usage\n"
93 " information on the given command. If called without a\n"
94 " topic, it provides a list of commands.\n";
96 static char chanlist_help[] =
97 "Usage: core show channels [concise|verbose]\n"
98 " Lists currently defined channels and some information about them. If\n"
99 " 'concise' is specified, the format is abridged and in a more easily\n"
100 " machine parsable format. If 'verbose' is specified, the output includes\n"
101 " more and longer fields.\n";
103 static char reload_help[] =
104 "Usage: module reload [module ...]\n"
105 " Reloads configuration files for all listed modules which support\n"
106 " reloading, or for all supported modules if none are listed.\n";
108 static char verbose_help[] =
109 "Usage: core set verbose <level>\n"
110 " Sets level of verbose messages to be displayed. 0 means\n"
111 " no messages should be displayed. Equivalent to -v[v[v...]]\n"
112 " on startup\n";
114 static char debug_help[] =
115 "Usage: core set debug <level> [filename]\n"
116 " Sets level of core debug messages to be displayed. 0 means\n"
117 " no messages should be displayed. Equivalent to -d[d[d...]]\n"
118 " on startup. If filename is specified, debugging will be\n"
119 " limited to just that file.\n";
121 static char nodebug_help[] =
122 "Usage: core set debug off\n"
123 " Turns off core debug messages.\n";
125 static char logger_mute_help[] =
126 "Usage: logger mute\n"
127 " Disables logging output to the current console, making it possible to\n"
128 " gather information without being disturbed by scrolling lines.\n";
130 static char softhangup_help[] =
131 "Usage: soft hangup <channel>\n"
132 " Request that a channel be hung up. The hangup takes effect\n"
133 " the next time the driver reads or writes from the channel\n";
135 static char group_show_channels_help[] =
136 "Usage: group show channels [pattern]\n"
137 " Lists all currently active channels with channel group(s) specified.\n"
138 " Optional regular expression pattern is matched to group names for each\n"
139 " channel.\n";
141 static int handle_load_deprecated(int fd, int argc, char *argv[])
143 if (argc != 2)
144 return RESULT_SHOWUSAGE;
145 if (ast_load_resource(argv[1])) {
146 ast_cli(fd, "Unable to load module %s\n", argv[1]);
147 return RESULT_FAILURE;
149 return RESULT_SUCCESS;
152 static int handle_load(int fd, int argc, char *argv[])
154 if (argc != 3)
155 return RESULT_SHOWUSAGE;
156 if (ast_load_resource(argv[2])) {
157 ast_cli(fd, "Unable to load module %s\n", argv[2]);
158 return RESULT_FAILURE;
160 return RESULT_SUCCESS;
163 static int handle_reload_deprecated(int fd, int argc, char *argv[])
165 int x;
166 int res;
167 if (argc < 1)
168 return RESULT_SHOWUSAGE;
169 if (argc > 1) {
170 for (x = 1; x < argc; x++) {
171 res = ast_module_reload(argv[x]);
172 switch(res) {
173 case 0:
174 ast_cli(fd, "No such module '%s'\n", argv[x]);
175 break;
176 case 1:
177 ast_cli(fd, "Module '%s' does not support reload\n", argv[x]);
178 break;
181 } else
182 ast_module_reload(NULL);
183 return RESULT_SUCCESS;
186 static int handle_reload(int fd, int argc, char *argv[])
188 int x;
189 int res;
190 if (argc < 2)
191 return RESULT_SHOWUSAGE;
192 if (argc > 2) {
193 for (x = 2; x < argc; x++) {
194 res = ast_module_reload(argv[x]);
195 switch(res) {
196 case 0:
197 ast_cli(fd, "No such module '%s'\n", argv[x]);
198 break;
199 case 1:
200 ast_cli(fd, "Module '%s' does not support reload\n", argv[x]);
201 break;
204 } else
205 ast_module_reload(NULL);
206 return RESULT_SUCCESS;
209 static int handle_set_verbose_deprecated(int fd, int argc, char *argv[])
211 int val = 0;
212 int oldval = option_verbose;
214 /* "set verbose [atleast] N" */
215 if (argc == 3)
216 option_verbose = atoi(argv[2]);
217 else if (argc == 4) {
218 if (strcasecmp(argv[2], "atleast"))
219 return RESULT_SHOWUSAGE;
220 val = atoi(argv[3]);
221 if (val > option_verbose)
222 option_verbose = val;
223 } else
224 return RESULT_SHOWUSAGE;
226 if (oldval != option_verbose && option_verbose > 0)
227 ast_cli(fd, "Verbosity was %d and is now %d\n", oldval, option_verbose);
228 else if (oldval > 0 && option_verbose > 0)
229 ast_cli(fd, "Verbosity is at least %d\n", option_verbose);
230 else if (oldval > 0 && option_verbose == 0)
231 ast_cli(fd, "Verbosity is now OFF\n");
233 return RESULT_SUCCESS;
236 static int handle_verbose(int fd, int argc, char *argv[])
238 int oldval = option_verbose;
239 int newlevel;
240 int atleast = 0;
242 if ((argc < 4) || (argc > 5))
243 return RESULT_SHOWUSAGE;
245 if (!strcasecmp(argv[3], "atleast"))
246 atleast = 1;
248 if (!atleast) {
249 if (argc > 4)
250 return RESULT_SHOWUSAGE;
252 option_verbose = atoi(argv[3]);
253 } else {
254 if (argc < 5)
255 return RESULT_SHOWUSAGE;
257 newlevel = atoi(argv[4]);
258 if (newlevel > option_verbose)
259 option_verbose = newlevel;
261 if (oldval > 0 && option_verbose == 0)
262 ast_cli(fd, "Verbosity is now OFF\n");
263 else if (option_verbose > 0) {
264 if (oldval == option_verbose)
265 ast_cli(fd, "Verbosity is at least %d\n", option_verbose);
266 else
267 ast_cli(fd, "Verbosity was %d and is now %d\n", oldval, option_verbose);
270 return RESULT_SUCCESS;
273 static int handle_set_debug_deprecated(int fd, int argc, char *argv[])
275 int val = 0;
276 int oldval = option_debug;
278 /* "set debug [atleast] N" */
279 if (argc == 3)
280 option_debug = atoi(argv[2]);
281 else if (argc == 4) {
282 if (strcasecmp(argv[2], "atleast"))
283 return RESULT_SHOWUSAGE;
284 val = atoi(argv[3]);
285 if (val > option_debug)
286 option_debug = val;
287 } else
288 return RESULT_SHOWUSAGE;
290 if (oldval != option_debug && option_debug > 0)
291 ast_cli(fd, "Core debug was %d and is now %d\n", oldval, option_debug);
292 else if (oldval > 0 && option_debug > 0)
293 ast_cli(fd, "Core debug is at least %d\n", option_debug);
294 else if (oldval > 0 && option_debug == 0)
295 ast_cli(fd, "Core debug is now OFF\n");
297 return RESULT_SUCCESS;
300 static int handle_set_debug(int fd, int argc, char *argv[])
302 int oldval = option_debug;
303 int newlevel;
304 int atleast = 0;
305 char *filename = '\0';
307 /* 'core set debug <level>'
308 * 'core set debug <level> <fn>'
309 * 'core set debug atleast <level>'
310 * 'core set debug atleast <level> <fn>'
312 if ((argc < 4) || (argc > 6))
313 return RESULT_SHOWUSAGE;
315 if (!strcasecmp(argv[3], "atleast"))
316 atleast = 1;
318 if (!atleast) {
319 if (argc > 5)
320 return RESULT_SHOWUSAGE;
322 if (sscanf(argv[3], "%d", &newlevel) != 1)
323 return RESULT_SHOWUSAGE;
325 if (argc == 4) {
326 debug_filename[0] = '\0';
327 } else {
328 filename = argv[4];
329 ast_copy_string(debug_filename, filename, sizeof(debug_filename));
332 option_debug = newlevel;
333 } else {
334 if (argc < 5 || argc > 6)
335 return RESULT_SHOWUSAGE;
337 if (sscanf(argv[4], "%d", &newlevel) != 1)
338 return RESULT_SHOWUSAGE;
340 if (argc == 5) {
341 debug_filename[0] = '\0';
342 } else {
343 filename = argv[5];
344 ast_copy_string(debug_filename, filename, sizeof(debug_filename));
347 if (newlevel > option_debug)
348 option_debug = newlevel;
351 if (oldval > 0 && option_debug == 0)
352 ast_cli(fd, "Core debug is now OFF\n");
353 else if (option_debug > 0) {
354 if (filename) {
355 if (oldval == option_debug)
356 ast_cli(fd, "Core debug is at least %d, file '%s'\n", option_debug, filename);
357 else
358 ast_cli(fd, "Core debug was %d and is now %d, file '%s'\n", oldval, option_debug, filename);
359 } else {
360 if (oldval == option_debug)
361 ast_cli(fd, "Core debug is at least %d\n", option_debug);
362 else
363 ast_cli(fd, "Core debug was %d and is now %d\n", oldval, option_debug);
367 return RESULT_SUCCESS;
370 static int handle_nodebug(int fd, int argc, char *argv[])
372 int oldval = option_debug;
373 if (argc != 4)
374 return RESULT_SHOWUSAGE;
376 option_debug = 0;
377 debug_filename[0] = '\0';
379 if (oldval > 0)
380 ast_cli(fd, "Core debug is now OFF\n");
381 return RESULT_SUCCESS;
384 static int handle_debuglevel_deprecated(int fd, int argc, char *argv[])
386 int newlevel;
387 char *filename = "<any>";
388 if ((argc < 3) || (argc > 4))
389 return RESULT_SHOWUSAGE;
390 if (sscanf(argv[2], "%d", &newlevel) != 1)
391 return RESULT_SHOWUSAGE;
392 option_debug = newlevel;
393 if (argc == 4) {
394 filename = argv[3];
395 ast_copy_string(debug_filename, filename, sizeof(debug_filename));
396 } else {
397 debug_filename[0] = '\0';
399 ast_cli(fd, "Debugging level set to %d, file '%s'\n", newlevel, filename);
400 return RESULT_SUCCESS;
403 static int handle_logger_mute(int fd, int argc, char *argv[])
405 if (argc != 2)
406 return RESULT_SHOWUSAGE;
407 ast_console_toggle_mute(fd);
408 return RESULT_SUCCESS;
411 static int handle_unload_deprecated(int fd, int argc, char *argv[])
413 int x;
414 int force = AST_FORCE_SOFT;
415 if (argc < 2)
416 return RESULT_SHOWUSAGE;
417 for (x = 1; x < argc; x++) {
418 if (argv[x][0] == '-') {
419 switch(argv[x][1]) {
420 case 'f':
421 force = AST_FORCE_FIRM;
422 break;
423 case 'h':
424 force = AST_FORCE_HARD;
425 break;
426 default:
427 return RESULT_SHOWUSAGE;
429 } else if (x != argc - 1)
430 return RESULT_SHOWUSAGE;
431 else if (ast_unload_resource(argv[x], force)) {
432 ast_cli(fd, "Unable to unload resource %s\n", argv[x]);
433 return RESULT_FAILURE;
436 return RESULT_SUCCESS;
439 static int handle_unload(int fd, int argc, char *argv[])
441 int x;
442 int force = AST_FORCE_SOFT;
443 if (argc < 3)
444 return RESULT_SHOWUSAGE;
445 for (x = 2; x < argc; x++) {
446 if (argv[x][0] == '-') {
447 switch(argv[x][1]) {
448 case 'f':
449 force = AST_FORCE_FIRM;
450 break;
451 case 'h':
452 force = AST_FORCE_HARD;
453 break;
454 default:
455 return RESULT_SHOWUSAGE;
457 } else if (x != argc - 1)
458 return RESULT_SHOWUSAGE;
459 else if (ast_unload_resource(argv[x], force)) {
460 ast_cli(fd, "Unable to unload resource %s\n", argv[x]);
461 return RESULT_FAILURE;
464 return RESULT_SUCCESS;
467 #define MODLIST_FORMAT "%-30s %-40.40s %-10d\n"
468 #define MODLIST_FORMAT2 "%-30s %-40.40s %-10s\n"
470 AST_MUTEX_DEFINE_STATIC(climodentrylock);
471 static int climodentryfd = -1;
473 static int modlist_modentry(const char *module, const char *description, int usecnt, const char *like)
475 /* Comparing the like with the module */
476 if (strcasestr(module, like) ) {
477 ast_cli(climodentryfd, MODLIST_FORMAT, module, description, usecnt);
478 return 1;
480 return 0;
483 static char modlist_help[] =
484 "Usage: module show [like <keyword>]\n"
485 " Shows Asterisk modules currently in use, and usage statistics.\n";
487 static char uptime_help[] =
488 "Usage: core show uptime [seconds]\n"
489 " Shows Asterisk uptime information.\n"
490 " The seconds word returns the uptime in seconds only.\n";
492 static void print_uptimestr(int fd, time_t timeval, const char *prefix, int printsec)
494 int x; /* the main part - years, weeks, etc. */
495 char timestr[256]="", *s = timestr;
496 size_t maxbytes = sizeof(timestr);
498 #define SECOND (1)
499 #define MINUTE (SECOND*60)
500 #define HOUR (MINUTE*60)
501 #define DAY (HOUR*24)
502 #define WEEK (DAY*7)
503 #define YEAR (DAY*365)
504 #define ESS(x) ((x == 1) ? "" : "s") /* plural suffix */
505 #define NEEDCOMMA(x) ((x)? ",": "") /* define if we need a comma */
506 if (timeval < 0) /* invalid, nothing to show */
507 return;
508 if (printsec) { /* plain seconds output */
509 ast_build_string(&s, &maxbytes, "%lu", (u_long)timeval);
510 timeval = 0; /* bypass the other cases */
512 if (timeval > YEAR) {
513 x = (timeval / YEAR);
514 timeval -= (x * YEAR);
515 ast_build_string(&s, &maxbytes, "%d year%s%s ", x, ESS(x),NEEDCOMMA(timeval));
517 if (timeval > WEEK) {
518 x = (timeval / WEEK);
519 timeval -= (x * WEEK);
520 ast_build_string(&s, &maxbytes, "%d week%s%s ", x, ESS(x),NEEDCOMMA(timeval));
522 if (timeval > DAY) {
523 x = (timeval / DAY);
524 timeval -= (x * DAY);
525 ast_build_string(&s, &maxbytes, "%d day%s%s ", x, ESS(x),NEEDCOMMA(timeval));
527 if (timeval > HOUR) {
528 x = (timeval / HOUR);
529 timeval -= (x * HOUR);
530 ast_build_string(&s, &maxbytes, "%d hour%s%s ", x, ESS(x),NEEDCOMMA(timeval));
532 if (timeval > MINUTE) {
533 x = (timeval / MINUTE);
534 timeval -= (x * MINUTE);
535 ast_build_string(&s, &maxbytes, "%d minute%s%s ", x, ESS(x),NEEDCOMMA(timeval));
537 x = timeval;
538 if (x > 0)
539 ast_build_string(&s, &maxbytes, "%d second%s ", x, ESS(x));
540 if (timestr[0] != '\0')
541 ast_cli(fd, "%s: %s\n", prefix, timestr);
544 static int handle_showuptime(int fd, int argc, char *argv[])
546 /* 'show uptime [seconds]' */
547 time_t curtime = time(NULL);
548 int printsec = (argc == 4 && !strcasecmp(argv[3],"seconds"));
550 if (argc != 3 && !printsec)
551 return RESULT_SHOWUSAGE;
552 if (ast_startuptime)
553 print_uptimestr(fd, curtime - ast_startuptime, "System uptime", printsec);
554 if (ast_lastreloadtime)
555 print_uptimestr(fd, curtime - ast_lastreloadtime, "Last reload", printsec);
556 return RESULT_SUCCESS;
559 static int handle_modlist(int fd, int argc, char *argv[])
561 char *like = "";
562 if (argc == 3)
563 return RESULT_SHOWUSAGE;
564 else if (argc >= 4) {
565 if (strcmp(argv[2],"like"))
566 return RESULT_SHOWUSAGE;
567 like = argv[3];
570 ast_mutex_lock(&climodentrylock);
571 climodentryfd = fd; /* global, protected by climodentrylock */
572 ast_cli(fd, MODLIST_FORMAT2, "Module", "Description", "Use Count");
573 ast_cli(fd,"%d modules loaded\n", ast_update_module_list(modlist_modentry, like));
574 climodentryfd = -1;
575 ast_mutex_unlock(&climodentrylock);
576 return RESULT_SUCCESS;
578 #undef MODLIST_FORMAT
579 #undef MODLIST_FORMAT2
581 static int handle_chanlist(int fd, int argc, char *argv[])
583 #define FORMAT_STRING "%-20.20s %-20.20s %-7.7s %-30.30s\n"
584 #define FORMAT_STRING2 "%-20.20s %-20.20s %-7.7s %-30.30s\n"
585 #define CONCISE_FORMAT_STRING "%s!%s!%s!%d!%s!%s!%s!%s!%s!%d!%s!%s\n"
586 #define VERBOSE_FORMAT_STRING "%-20.20s %-20.20s %-16.16s %4d %-7.7s %-12.12s %-25.25s %-15.15s %8.8s %-11.11s %-20.20s\n"
587 #define VERBOSE_FORMAT_STRING2 "%-20.20s %-20.20s %-16.16s %-4.4s %-7.7s %-12.12s %-25.25s %-15.15s %8.8s %-11.11s %-20.20s\n"
589 struct ast_channel *c = NULL;
590 char durbuf[10] = "-";
591 char locbuf[40];
592 char appdata[40];
593 int duration;
594 int durh, durm, durs;
595 int numchans = 0, concise = 0, verbose = 0;
597 concise = (argc == 4 && (!strcasecmp(argv[3],"concise")));
598 verbose = (argc == 4 && (!strcasecmp(argv[3],"verbose")));
600 if (argc < 3 || argc > 4 || (argc == 4 && !concise && !verbose))
601 return RESULT_SHOWUSAGE;
603 if (!concise && !verbose)
604 ast_cli(fd, FORMAT_STRING2, "Channel", "Location", "State", "Application(Data)");
605 else if (verbose)
606 ast_cli(fd, VERBOSE_FORMAT_STRING2, "Channel", "Context", "Extension", "Priority", "State", "Application", "Data",
607 "CallerID", "Duration", "Accountcode", "BridgedTo");
609 while ((c = ast_channel_walk_locked(c)) != NULL) {
610 struct ast_channel *bc = ast_bridged_channel(c);
611 if ((concise || verbose) && c->cdr && !ast_tvzero(c->cdr->start)) {
612 duration = (int)(ast_tvdiff_ms(ast_tvnow(), c->cdr->start) / 1000);
613 if (verbose) {
614 durh = duration / 3600;
615 durm = (duration % 3600) / 60;
616 durs = duration % 60;
617 snprintf(durbuf, sizeof(durbuf), "%02d:%02d:%02d", durh, durm, durs);
618 } else {
619 snprintf(durbuf, sizeof(durbuf), "%d", duration);
621 } else {
622 durbuf[0] = '\0';
624 if (concise) {
625 ast_cli(fd, CONCISE_FORMAT_STRING, c->name, c->context, c->exten, c->priority, ast_state2str(c->_state),
626 c->appl ? c->appl : "(None)",
627 S_OR(c->data, ""), /* XXX different from verbose ? */
628 S_OR(c->cid.cid_num, ""),
629 S_OR(c->accountcode, ""),
630 c->amaflags,
631 durbuf,
632 bc ? bc->name : "(None)");
633 } else if (verbose) {
634 ast_cli(fd, VERBOSE_FORMAT_STRING, c->name, c->context, c->exten, c->priority, ast_state2str(c->_state),
635 c->appl ? c->appl : "(None)",
636 c->data ? S_OR(c->data, "(Empty)" ): "(None)",
637 S_OR(c->cid.cid_num, ""),
638 durbuf,
639 S_OR(c->accountcode, ""),
640 bc ? bc->name : "(None)");
641 } else {
642 if (!ast_strlen_zero(c->context) && !ast_strlen_zero(c->exten))
643 snprintf(locbuf, sizeof(locbuf), "%s@%s:%d", c->exten, c->context, c->priority);
644 else
645 strcpy(locbuf, "(None)");
646 if (c->appl)
647 snprintf(appdata, sizeof(appdata), "%s(%s)", c->appl, c->data ? c->data : "");
648 else
649 strcpy(appdata, "(None)");
650 ast_cli(fd, FORMAT_STRING, c->name, locbuf, ast_state2str(c->_state), appdata);
652 numchans++;
653 ast_channel_unlock(c);
655 if (!concise) {
656 ast_cli(fd, "%d active channel%s\n", numchans, ESS(numchans));
657 if (option_maxcalls)
658 ast_cli(fd, "%d of %d max active call%s (%5.2f%% of capacity)\n",
659 ast_active_calls(), option_maxcalls, ESS(ast_active_calls()),
660 ((double)ast_active_calls() / (double)option_maxcalls) * 100.0);
661 else
662 ast_cli(fd, "%d active call%s\n", ast_active_calls(), ESS(ast_active_calls()));
664 return RESULT_SUCCESS;
666 #undef FORMAT_STRING
667 #undef FORMAT_STRING2
668 #undef CONCISE_FORMAT_STRING
669 #undef VERBOSE_FORMAT_STRING
670 #undef VERBOSE_FORMAT_STRING2
673 static char showchan_help[] =
674 "Usage: core show channel <channel>\n"
675 " Shows lots of information about the specified channel.\n";
677 static char debugchan_help[] =
678 "Usage: core set debug channel <channel> [off]\n"
679 " Enables/disables debugging on a specific channel.\n";
681 static char commandcomplete_help[] =
682 "Usage: _command complete \"<line>\" text state\n"
683 " This function is used internally to help with command completion and should.\n"
684 " never be called by the user directly.\n";
686 static char commandnummatches_help[] =
687 "Usage: _command nummatches \"<line>\" text \n"
688 " This function is used internally to help with command completion and should.\n"
689 " never be called by the user directly.\n";
691 static char commandmatchesarray_help[] =
692 "Usage: _command matchesarray \"<line>\" text \n"
693 " This function is used internally to help with command completion and should.\n"
694 " never be called by the user directly.\n";
696 static int handle_softhangup(int fd, int argc, char *argv[])
698 struct ast_channel *c=NULL;
699 if (argc != 3)
700 return RESULT_SHOWUSAGE;
701 c = ast_get_channel_by_name_locked(argv[2]);
702 if (c) {
703 ast_cli(fd, "Requested Hangup on channel '%s'\n", c->name);
704 ast_softhangup(c, AST_SOFTHANGUP_EXPLICIT);
705 ast_channel_unlock(c);
706 } else
707 ast_cli(fd, "%s is not a known channel\n", argv[2]);
708 return RESULT_SUCCESS;
711 static char *__ast_cli_generator(const char *text, const char *word, int state, int lock);
713 static int handle_commandmatchesarray(int fd, int argc, char *argv[])
715 char *buf, *obuf;
716 int buflen = 2048;
717 int len = 0;
718 char **matches;
719 int x, matchlen;
721 if (argc != 4)
722 return RESULT_SHOWUSAGE;
723 if (!(buf = ast_malloc(buflen)))
724 return RESULT_FAILURE;
725 buf[len] = '\0';
726 matches = ast_cli_completion_matches(argv[2], argv[3]);
727 if (matches) {
728 for (x=0; matches[x]; x++) {
729 matchlen = strlen(matches[x]) + 1;
730 if (len + matchlen >= buflen) {
731 buflen += matchlen * 3;
732 obuf = buf;
733 if (!(buf = ast_realloc(obuf, buflen)))
734 /* Memory allocation failure... Just free old buffer and be done */
735 free(obuf);
737 if (buf)
738 len += sprintf( buf + len, "%s ", matches[x]);
739 free(matches[x]);
740 matches[x] = NULL;
742 free(matches);
745 if (buf) {
746 ast_cli(fd, "%s%s",buf, AST_CLI_COMPLETE_EOF);
747 free(buf);
748 } else
749 ast_cli(fd, "NULL\n");
751 return RESULT_SUCCESS;
756 static int handle_commandnummatches(int fd, int argc, char *argv[])
758 int matches = 0;
760 if (argc != 4)
761 return RESULT_SHOWUSAGE;
763 matches = ast_cli_generatornummatches(argv[2], argv[3]);
765 ast_cli(fd, "%d", matches);
767 return RESULT_SUCCESS;
770 static int handle_commandcomplete(int fd, int argc, char *argv[])
772 char *buf;
774 if (argc != 5)
775 return RESULT_SHOWUSAGE;
776 buf = __ast_cli_generator(argv[2], argv[3], atoi(argv[4]), 0);
777 if (buf) {
778 ast_cli(fd, buf);
779 free(buf);
780 } else
781 ast_cli(fd, "NULL\n");
782 return RESULT_SUCCESS;
785 static int handle_debugchan_deprecated(int fd, int argc, char *argv[])
787 struct ast_channel *c=NULL;
788 int is_all;
790 /* 'debug channel {all|chan_id}' */
791 if (argc != 4)
792 return RESULT_SHOWUSAGE;
794 is_all = !strcasecmp("all", argv[3]);
795 if (is_all) {
796 global_fin |= DEBUGCHAN_FLAG;
797 global_fout |= DEBUGCHAN_FLAG;
798 c = ast_channel_walk_locked(NULL);
799 } else {
800 c = ast_get_channel_by_name_locked(argv[3]);
801 if (c == NULL)
802 ast_cli(fd, "No such channel %s\n", argv[3]);
804 while (c) {
805 if (!(c->fin & DEBUGCHAN_FLAG) || !(c->fout & DEBUGCHAN_FLAG)) {
806 c->fin |= DEBUGCHAN_FLAG;
807 c->fout |= DEBUGCHAN_FLAG;
808 ast_cli(fd, "Debugging enabled on channel %s\n", c->name);
810 ast_channel_unlock(c);
811 if (!is_all)
812 break;
813 c = ast_channel_walk_locked(c);
815 ast_cli(fd, "Debugging on new channels is enabled\n");
816 return RESULT_SUCCESS;
819 static int handle_core_set_debug_channel(int fd, int argc, char *argv[])
821 struct ast_channel *c = NULL;
822 int is_all, is_off = 0;
824 /* 'core set debug channel {all|chan_id}' */
825 if (argc == 6 && strcmp(argv[5], "off") == 0)
826 is_off = 1;
827 else if (argc != 5)
828 return RESULT_SHOWUSAGE;
830 is_all = !strcasecmp("all", argv[4]);
831 if (is_all) {
832 if (is_off) {
833 global_fin &= ~DEBUGCHAN_FLAG;
834 global_fout &= ~DEBUGCHAN_FLAG;
835 } else {
836 global_fin |= DEBUGCHAN_FLAG;
837 global_fout |= DEBUGCHAN_FLAG;
839 c = ast_channel_walk_locked(NULL);
840 } else {
841 c = ast_get_channel_by_name_locked(argv[4]);
842 if (c == NULL)
843 ast_cli(fd, "No such channel %s\n", argv[4]);
845 while (c) {
846 if (!(c->fin & DEBUGCHAN_FLAG) || !(c->fout & DEBUGCHAN_FLAG)) {
847 if (is_off) {
848 c->fin &= ~DEBUGCHAN_FLAG;
849 c->fout &= ~DEBUGCHAN_FLAG;
850 } else {
851 c->fin |= DEBUGCHAN_FLAG;
852 c->fout |= DEBUGCHAN_FLAG;
854 ast_cli(fd, "Debugging %s on channel %s\n", is_off ? "disabled" : "enabled", c->name);
856 ast_channel_unlock(c);
857 if (!is_all)
858 break;
859 c = ast_channel_walk_locked(c);
861 ast_cli(fd, "Debugging on new channels is %s\n", is_off ? "disabled" : "enabled");
862 return RESULT_SUCCESS;
865 static int handle_nodebugchan_deprecated(int fd, int argc, char *argv[])
867 struct ast_channel *c=NULL;
868 int is_all;
869 /* 'no debug channel {all|chan_id}' */
870 if (argc != 4)
871 return RESULT_SHOWUSAGE;
872 is_all = !strcasecmp("all", argv[3]);
873 if (is_all) {
874 global_fin &= ~DEBUGCHAN_FLAG;
875 global_fout &= ~DEBUGCHAN_FLAG;
876 c = ast_channel_walk_locked(NULL);
877 } else {
878 c = ast_get_channel_by_name_locked(argv[3]);
879 if (c == NULL)
880 ast_cli(fd, "No such channel %s\n", argv[3]);
882 while(c) {
883 if ((c->fin & DEBUGCHAN_FLAG) || (c->fout & DEBUGCHAN_FLAG)) {
884 c->fin &= ~DEBUGCHAN_FLAG;
885 c->fout &= ~DEBUGCHAN_FLAG;
886 ast_cli(fd, "Debugging disabled on channel %s\n", c->name);
888 ast_channel_unlock(c);
889 if (!is_all)
890 break;
891 c = ast_channel_walk_locked(c);
893 ast_cli(fd, "Debugging on new channels is disabled\n");
894 return RESULT_SUCCESS;
897 static int handle_showchan(int fd, int argc, char *argv[])
899 struct ast_channel *c=NULL;
900 struct timeval now;
901 char buf[2048];
902 char cdrtime[256];
903 char nf[256], wf[256], rf[256];
904 long elapsed_seconds=0;
905 int hour=0, min=0, sec=0;
907 if (argc != 4)
908 return RESULT_SHOWUSAGE;
909 now = ast_tvnow();
910 c = ast_get_channel_by_name_locked(argv[3]);
911 if (!c) {
912 ast_cli(fd, "%s is not a known channel\n", argv[3]);
913 return RESULT_SUCCESS;
915 if(c->cdr) {
916 elapsed_seconds = now.tv_sec - c->cdr->start.tv_sec;
917 hour = elapsed_seconds / 3600;
918 min = (elapsed_seconds % 3600) / 60;
919 sec = elapsed_seconds % 60;
920 snprintf(cdrtime, sizeof(cdrtime), "%dh%dm%ds", hour, min, sec);
921 } else
922 strcpy(cdrtime, "N/A");
923 ast_cli(fd,
924 " -- General --\n"
925 " Name: %s\n"
926 " Type: %s\n"
927 " UniqueID: %s\n"
928 " Caller ID: %s\n"
929 " Caller ID Name: %s\n"
930 " DNID Digits: %s\n"
931 " State: %s (%d)\n"
932 " Rings: %d\n"
933 " NativeFormats: %s\n"
934 " WriteFormat: %s\n"
935 " ReadFormat: %s\n"
936 " WriteTranscode: %s\n"
937 " ReadTranscode: %s\n"
938 "1st File Descriptor: %d\n"
939 " Frames in: %d%s\n"
940 " Frames out: %d%s\n"
941 " Time to Hangup: %ld\n"
942 " Elapsed Time: %s\n"
943 " Direct Bridge: %s\n"
944 "Indirect Bridge: %s\n"
945 " -- PBX --\n"
946 " Context: %s\n"
947 " Extension: %s\n"
948 " Priority: %d\n"
949 " Call Group: %llu\n"
950 " Pickup Group: %llu\n"
951 " Application: %s\n"
952 " Data: %s\n"
953 " Blocking in: %s\n",
954 c->name, c->tech->type, c->uniqueid,
955 S_OR(c->cid.cid_num, "(N/A)"),
956 S_OR(c->cid.cid_name, "(N/A)"),
957 S_OR(c->cid.cid_dnid, "(N/A)"), ast_state2str(c->_state), c->_state, c->rings,
958 ast_getformatname_multiple(nf, sizeof(nf), c->nativeformats),
959 ast_getformatname_multiple(wf, sizeof(wf), c->writeformat),
960 ast_getformatname_multiple(rf, sizeof(rf), c->readformat),
961 c->writetrans ? "Yes" : "No",
962 c->readtrans ? "Yes" : "No",
963 c->fds[0],
964 c->fin & ~DEBUGCHAN_FLAG, (c->fin & DEBUGCHAN_FLAG) ? " (DEBUGGED)" : "",
965 c->fout & ~DEBUGCHAN_FLAG, (c->fout & DEBUGCHAN_FLAG) ? " (DEBUGGED)" : "",
966 (long)c->whentohangup,
967 cdrtime, c->_bridge ? c->_bridge->name : "<none>", ast_bridged_channel(c) ? ast_bridged_channel(c)->name : "<none>",
968 c->context, c->exten, c->priority, c->callgroup, c->pickupgroup, ( c->appl ? c->appl : "(N/A)" ),
969 ( c-> data ? S_OR(c->data, "(Empty)") : "(None)"),
970 (ast_test_flag(c, AST_FLAG_BLOCKING) ? c->blockproc : "(Not Blocking)"));
972 if(pbx_builtin_serialize_variables(c,buf,sizeof(buf)))
973 ast_cli(fd," Variables:\n%s\n",buf);
974 if(c->cdr && ast_cdr_serialize_variables(c->cdr,buf, sizeof(buf), '=', '\n', 1))
975 ast_cli(fd," CDR Variables:\n%s\n",buf);
977 ast_channel_unlock(c);
978 return RESULT_SUCCESS;
982 * helper function to generate CLI matches from a fixed set of values.
983 * A NULL word is acceptable.
985 char *ast_cli_complete(const char *word, char *const choices[], int state)
987 int i, which = 0, len;
988 len = ast_strlen_zero(word) ? 0 : strlen(word);
990 for (i = 0; choices[i]; i++) {
991 if ((!len || !strncasecmp(word, choices[i], len)) && ++which > state)
992 return ast_strdup(choices[i]);
994 return NULL;
997 static char *complete_show_channels(const char *line, const char *word, int pos, int state)
999 static char *choices[] = { "concise", "verbose", NULL };
1001 return (pos != 3) ? NULL : ast_cli_complete(word, choices, state);
1004 char *ast_complete_channels(const char *line, const char *word, int pos, int state, int rpos)
1006 struct ast_channel *c = NULL;
1007 int which = 0;
1008 int wordlen;
1009 char notfound = '\0';
1010 char *ret = &notfound; /* so NULL can break the loop */
1012 if (pos != rpos)
1013 return NULL;
1015 wordlen = strlen(word);
1017 while (ret == &notfound && (c = ast_channel_walk_locked(c))) {
1018 if (!strncasecmp(word, c->name, wordlen) && ++which > state)
1019 ret = ast_strdup(c->name);
1020 ast_channel_unlock(c);
1022 return ret == &notfound ? NULL : ret;
1025 static char *complete_ch_3(const char *line, const char *word, int pos, int state)
1027 return ast_complete_channels(line, word, pos, state, 2);
1030 static char *complete_ch_4(const char *line, const char *word, int pos, int state)
1032 return ast_complete_channels(line, word, pos, state, 3);
1035 static char *complete_ch_5(const char *line, const char *word, int pos, int state)
1037 return ast_complete_channels(line, word, pos, state, 4);
1040 static char *complete_mod_2(const char *line, const char *word, int pos, int state)
1042 return ast_module_helper(line, word, pos, state, 1, 1);
1045 static char *complete_mod_3_nr(const char *line, const char *word, int pos, int state)
1047 return ast_module_helper(line, word, pos, state, 2, 0);
1050 static char *complete_mod_3(const char *line, const char *word, int pos, int state)
1052 return ast_module_helper(line, word, pos, state, 2, 1);
1055 static char *complete_mod_4(const char *line, const char *word, int pos, int state)
1057 return ast_module_helper(line, word, pos, state, 3, 0);
1060 static char *complete_fn(const char *line, const char *word, int pos, int state)
1062 char *c;
1063 char filename[256];
1065 if (pos != 1)
1066 return NULL;
1068 if (word[0] == '/')
1069 ast_copy_string(filename, word, sizeof(filename));
1070 else
1071 snprintf(filename, sizeof(filename), "%s/%s", ast_config_AST_MODULE_DIR, word);
1073 c = filename_completion_function(filename, state);
1075 if (c && word[0] != '/')
1076 c += (strlen(ast_config_AST_MODULE_DIR) + 1);
1078 return c ? strdup(c) : c;
1081 static int group_show_channels(int fd, int argc, char *argv[])
1083 #define FORMAT_STRING "%-25s %-20s %-20s\n"
1085 struct ast_channel *c = NULL;
1086 int numchans = 0;
1087 struct ast_var_t *current;
1088 struct varshead *headp;
1089 regex_t regexbuf;
1090 int havepattern = 0;
1092 if (argc < 3 || argc > 4)
1093 return RESULT_SHOWUSAGE;
1095 if (argc == 4) {
1096 if (regcomp(&regexbuf, argv[3], REG_EXTENDED | REG_NOSUB))
1097 return RESULT_SHOWUSAGE;
1098 havepattern = 1;
1101 ast_cli(fd, FORMAT_STRING, "Channel", "Group", "Category");
1102 while ( (c = ast_channel_walk_locked(c)) != NULL) {
1103 headp=&c->varshead;
1104 AST_LIST_TRAVERSE(headp,current,entries) {
1105 if (!strncmp(ast_var_name(current), GROUP_CATEGORY_PREFIX "_", strlen(GROUP_CATEGORY_PREFIX) + 1)) {
1106 if (!havepattern || !regexec(&regexbuf, ast_var_value(current), 0, NULL, 0)) {
1107 ast_cli(fd, FORMAT_STRING, c->name, ast_var_value(current),
1108 (ast_var_name(current) + strlen(GROUP_CATEGORY_PREFIX) + 1));
1109 numchans++;
1111 } else if (!strcmp(ast_var_name(current), GROUP_CATEGORY_PREFIX)) {
1112 if (!havepattern || !regexec(&regexbuf, ast_var_value(current), 0, NULL, 0)) {
1113 ast_cli(fd, FORMAT_STRING, c->name, ast_var_value(current), "(default)");
1114 numchans++;
1118 numchans++;
1119 ast_channel_unlock(c);
1122 if (havepattern)
1123 regfree(&regexbuf);
1125 ast_cli(fd, "%d active channel%s\n", numchans, (numchans != 1) ? "s" : "");
1126 return RESULT_SUCCESS;
1127 #undef FORMAT_STRING
1130 static int handle_help(int fd, int argc, char *argv[]);
1132 static char * complete_help(const char *text, const char *word, int pos, int state)
1134 /* skip first 4 or 5 chars, "help "*/
1135 int l = strlen(text);
1137 if (l > 5)
1138 l = 5;
1139 text += l;
1140 /* XXX watch out, should stop to the non-generator parts */
1141 return __ast_cli_generator(text, word, state, 0);
1144 /* XXX Nothing in this array can currently be deprecated...
1145 You have to change the way find_cli works in order to remove this array
1146 I recommend doing this eventually...
1148 static struct ast_cli_entry builtins[] = {
1149 /* Keep alphabetized, with longer matches first (example: abcd before abc) */
1150 { { "_command", "complete", NULL },
1151 handle_commandcomplete, "Command complete",
1152 commandcomplete_help },
1154 { { "_command", "nummatches", NULL },
1155 handle_commandnummatches, "Returns number of command matches",
1156 commandnummatches_help },
1158 { { "_command", "matchesarray", NULL },
1159 handle_commandmatchesarray, "Returns command matches array",
1160 commandmatchesarray_help },
1162 { { NULL }, NULL, NULL, NULL }
1165 static struct ast_cli_entry cli_debug_channel_deprecated = {
1166 { "debug", "channel", NULL },
1167 handle_debugchan_deprecated, NULL,
1168 NULL, complete_ch_3 };
1170 static struct ast_cli_entry cli_debug_level_deprecated = {
1171 { "debug", "level", NULL },
1172 handle_debuglevel_deprecated, NULL,
1173 NULL };
1175 static struct ast_cli_entry cli_set_debug_deprecated = {
1176 { "set", "debug", NULL },
1177 handle_set_debug_deprecated, NULL,
1178 NULL, NULL, &cli_debug_level_deprecated };
1180 static struct ast_cli_entry cli_set_verbose_deprecated = {
1181 { "set", "verbose", NULL },
1182 handle_set_verbose_deprecated, NULL,
1183 NULL };
1185 static struct ast_cli_entry cli_show_channel_deprecated = {
1186 { "show", "channel", NULL },
1187 handle_showchan, NULL,
1188 NULL, complete_ch_3 };
1190 static struct ast_cli_entry cli_show_channels_deprecated = {
1191 { "show", "channels", NULL },
1192 handle_chanlist, NULL,
1193 NULL, complete_show_channels };
1195 static struct ast_cli_entry cli_show_modules_deprecated = {
1196 { "show", "modules", NULL },
1197 handle_modlist, NULL,
1198 NULL };
1200 static struct ast_cli_entry cli_show_modules_like_deprecated = {
1201 { "show", "modules", "like", NULL },
1202 handle_modlist, NULL,
1203 NULL, complete_mod_4 };
1205 static struct ast_cli_entry cli_module_load_deprecated = {
1206 { "load", NULL },
1207 handle_load_deprecated, NULL,
1208 NULL, complete_fn };
1210 static struct ast_cli_entry cli_module_reload_deprecated = {
1211 { "reload", NULL },
1212 handle_reload_deprecated, NULL,
1213 NULL, complete_mod_2 };
1215 static struct ast_cli_entry cli_module_unload_deprecated = {
1216 { "unload", NULL },
1217 handle_unload_deprecated, NULL,
1218 NULL, complete_mod_2 };
1220 static struct ast_cli_entry cli_cli[] = {
1221 /* Deprecated, but preferred command is now consolidated (and already has a deprecated command for it). */
1222 { { "no", "debug", "channel", NULL },
1223 handle_nodebugchan_deprecated, NULL,
1224 NULL, complete_ch_4 },
1226 { { "core", "show", "channels", NULL },
1227 handle_chanlist, "Display information on channels",
1228 chanlist_help, complete_show_channels, &cli_show_channels_deprecated },
1230 { { "core", "show", "channel", NULL },
1231 handle_showchan, "Display information on a specific channel",
1232 showchan_help, complete_ch_4, &cli_show_channel_deprecated },
1234 { { "core", "set", "debug", "channel", NULL },
1235 handle_core_set_debug_channel, "Enable/disable debugging on a channel",
1236 debugchan_help, complete_ch_5, &cli_debug_channel_deprecated },
1238 { { "core", "set", "debug", NULL },
1239 handle_set_debug, "Set level of debug chattiness",
1240 debug_help, NULL, &cli_set_debug_deprecated },
1242 { { "core", "set", "debug", "off", NULL },
1243 handle_nodebug, "Turns off debug chattiness",
1244 nodebug_help },
1246 { { "core", "set", "verbose", NULL },
1247 handle_verbose, "Set level of verboseness",
1248 verbose_help, NULL, &cli_set_verbose_deprecated },
1250 { { "group", "show", "channels", NULL },
1251 group_show_channels, "Display active channels with group(s)",
1252 group_show_channels_help },
1254 { { "help", NULL },
1255 handle_help, "Display help list, or specific help on a command",
1256 help_help, complete_help },
1258 { { "logger", "mute", NULL },
1259 handle_logger_mute, "Toggle logging output to a console",
1260 logger_mute_help },
1262 { { "module", "show", NULL },
1263 handle_modlist, "List modules and info",
1264 modlist_help, NULL, &cli_show_modules_deprecated },
1266 { { "module", "show", "like", NULL },
1267 handle_modlist, "List modules and info",
1268 modlist_help, complete_mod_4, &cli_show_modules_like_deprecated },
1270 { { "module", "load", NULL },
1271 handle_load, "Load a module by name",
1272 load_help, complete_fn, &cli_module_load_deprecated },
1274 { { "module", "reload", NULL },
1275 handle_reload, "Reload configuration",
1276 reload_help, complete_mod_3, &cli_module_reload_deprecated },
1278 { { "module", "unload", NULL },
1279 handle_unload, "Unload a module by name",
1280 unload_help, complete_mod_3_nr, &cli_module_unload_deprecated },
1282 { { "core", "show", "uptime", NULL },
1283 handle_showuptime, "Show uptime information",
1284 uptime_help },
1286 { { "soft", "hangup", NULL },
1287 handle_softhangup, "Request a hangup on a given channel",
1288 softhangup_help, complete_ch_3 },
1291 /*! \brief initialize the _full_cmd string in * each of the builtins. */
1292 void ast_builtins_init(void)
1294 struct ast_cli_entry *e;
1296 for (e = builtins; e->cmda[0] != NULL; e++) {
1297 char buf[80];
1298 ast_join(buf, sizeof(buf), e->cmda);
1299 e->_full_cmd = strdup(buf);
1300 if (!e->_full_cmd)
1301 ast_log(LOG_WARNING, "-- cannot allocate <%s>\n", buf);
1304 ast_cli_register_multiple(cli_cli, sizeof(cli_cli) / sizeof(struct ast_cli_entry));
1308 * We have two sets of commands: builtins are stored in a
1309 * NULL-terminated array of ast_cli_entry, whereas external
1310 * commands are in a list.
1311 * When navigating, we need to keep two pointers and get
1312 * the next one in lexicographic order. For the purpose,
1313 * we use a structure.
1316 struct cli_iterator {
1317 struct ast_cli_entry *builtins;
1318 struct ast_cli_entry *helpers;
1321 static struct ast_cli_entry *cli_next(struct cli_iterator *i)
1323 struct ast_cli_entry *e;
1325 if (i->builtins == NULL && i->helpers == NULL) {
1326 /* initialize */
1327 i->builtins = builtins;
1328 i->helpers = AST_LIST_FIRST(&helpers);
1330 e = i->builtins; /* temporary */
1331 if (!e->cmda[0] || (i->helpers &&
1332 strcmp(i->helpers->_full_cmd, e->_full_cmd) < 0)) {
1333 /* Use helpers */
1334 e = i->helpers;
1335 if (e)
1336 i->helpers = AST_LIST_NEXT(e, list);
1337 } else { /* use builtin. e is already set */
1338 (i->builtins)++; /* move to next */
1340 return e;
1344 * \brief locate a cli command in the 'helpers' list (which must be locked).
1345 * exact has 3 values:
1346 * 0 returns if the search key is equal or longer than the entry.
1347 * -1 true if the mismatch is on the last word XXX not true!
1348 * 1 true only on complete, exact match.
1350 static struct ast_cli_entry *find_cli(char *const cmds[], int match_type)
1352 int matchlen = -1; /* length of longest match so far */
1353 struct ast_cli_entry *cand = NULL, *e=NULL;
1354 struct cli_iterator i = { NULL, NULL};
1356 while( (e = cli_next(&i)) ) {
1357 int y;
1358 for (y = 0 ; cmds[y] && e->cmda[y]; y++) {
1359 if (strcasecmp(e->cmda[y], cmds[y]))
1360 break;
1362 if (e->cmda[y] == NULL) { /* no more words in candidate */
1363 if (cmds[y] == NULL) /* this is an exact match, cannot do better */
1364 break;
1365 /* here the search key is longer than the candidate */
1366 if (match_type != 0) /* but we look for almost exact match... */
1367 continue; /* so we skip this one. */
1368 /* otherwise we like it (case 0) */
1369 } else { /* still words in candidate */
1370 if (cmds[y] == NULL) /* search key is shorter, not good */
1371 continue;
1372 /* if we get here, both words exist but there is a mismatch */
1373 if (match_type == 0) /* not the one we look for */
1374 continue;
1375 if (match_type == 1) /* not the one we look for */
1376 continue;
1377 if (cmds[y+1] != NULL || e->cmda[y+1] != NULL) /* not the one we look for */
1378 continue;
1379 /* we are in case match_type == -1 and mismatch on last word */
1381 if (y > matchlen) { /* remember the candidate */
1382 matchlen = y;
1383 cand = e;
1386 return e ? e : cand;
1389 static char *find_best(char *argv[])
1391 static char cmdline[80];
1392 int x;
1393 /* See how close we get, then print the candidate */
1394 char *myargv[AST_MAX_CMD_LEN];
1395 for (x=0;x<AST_MAX_CMD_LEN;x++)
1396 myargv[x]=NULL;
1397 AST_LIST_LOCK(&helpers);
1398 for (x=0;argv[x];x++) {
1399 myargv[x] = argv[x];
1400 if (!find_cli(myargv, -1))
1401 break;
1403 AST_LIST_UNLOCK(&helpers);
1404 ast_join(cmdline, sizeof(cmdline), myargv);
1405 return cmdline;
1408 static int __ast_cli_unregister(struct ast_cli_entry *e, struct ast_cli_entry *ed)
1410 if (e->deprecate_cmd) {
1411 __ast_cli_unregister(e->deprecate_cmd, e);
1413 if (e->inuse) {
1414 ast_log(LOG_WARNING, "Can't remove command that is in use\n");
1415 } else {
1416 AST_LIST_LOCK(&helpers);
1417 AST_LIST_REMOVE(&helpers, e, list);
1418 AST_LIST_UNLOCK(&helpers);
1419 free(e->_full_cmd);
1421 return 0;
1424 static int __ast_cli_register(struct ast_cli_entry *e, struct ast_cli_entry *ed)
1426 struct ast_cli_entry *cur;
1427 char fulle[80] ="";
1428 int lf, ret = -1;
1430 ast_join(fulle, sizeof(fulle), e->cmda);
1431 AST_LIST_LOCK(&helpers);
1433 if (find_cli(e->cmda, 1)) {
1434 ast_log(LOG_WARNING, "Command '%s' already registered (or something close enough)\n", fulle);
1435 goto done;
1437 e->_full_cmd = ast_strdup(fulle);
1438 if (!e->_full_cmd)
1439 goto done;
1441 if (ed) {
1442 e->deprecated = 1;
1443 e->summary = ed->summary;
1444 e->usage = ed->usage;
1445 /* XXX If command A deprecates command B, and command B deprecates command C...
1446 Do we want to show command A or command B when telling the user to use new syntax?
1447 This currently would show command A.
1448 To show command B, you just need to always use ed->_full_cmd.
1450 e->_deprecated_by = S_OR(ed->_deprecated_by, ed->_full_cmd);
1451 } else {
1452 e->deprecated = 0;
1455 lf = strlen(fulle);
1456 AST_LIST_TRAVERSE_SAFE_BEGIN(&helpers, cur, list) {
1457 int len = strlen(cur->_full_cmd);
1458 if (lf < len)
1459 len = lf;
1460 if (strncasecmp(fulle, cur->_full_cmd, len) < 0) {
1461 AST_LIST_INSERT_BEFORE_CURRENT(&helpers, e, list);
1462 break;
1465 AST_LIST_TRAVERSE_SAFE_END;
1467 if (!cur)
1468 AST_LIST_INSERT_TAIL(&helpers, e, list);
1469 ret = 0; /* success */
1471 done:
1472 AST_LIST_UNLOCK(&helpers);
1474 if (e->deprecate_cmd) {
1475 /* This command deprecates another command. Register that one also. */
1476 __ast_cli_register(e->deprecate_cmd, e);
1479 return ret;
1482 /* wrapper function, so we can unregister deprecated commands recursively */
1483 int ast_cli_unregister(struct ast_cli_entry *e)
1485 return __ast_cli_unregister(e, NULL);
1488 /* wrapper function, so we can register deprecated commands recursively */
1489 int ast_cli_register(struct ast_cli_entry *e)
1491 return __ast_cli_register(e, NULL);
1495 * register/unregister an array of entries.
1497 void ast_cli_register_multiple(struct ast_cli_entry *e, int len)
1499 int i;
1501 for (i = 0; i < len; i++)
1502 ast_cli_register(e + i);
1505 void ast_cli_unregister_multiple(struct ast_cli_entry *e, int len)
1507 int i;
1509 for (i = 0; i < len; i++)
1510 ast_cli_unregister(e + i);
1514 /*! \brief helper for help_workhorse and final part of
1515 * handle_help. if locked = 0 it's just help_workhorse,
1516 * otherwise assume the list is already locked and print
1517 * an error message if not found.
1519 static int help1(int fd, char *match[], int locked)
1521 char matchstr[80] = "";
1522 struct ast_cli_entry *e;
1523 int len = 0;
1524 int found = 0;
1525 struct cli_iterator i = { NULL, NULL};
1527 if (match) {
1528 ast_join(matchstr, sizeof(matchstr), match);
1529 len = strlen(matchstr);
1531 if (!locked)
1532 AST_LIST_LOCK(&helpers);
1533 while ( (e = cli_next(&i)) ) {
1534 /* Hide commands that start with '_' */
1535 if (e->_full_cmd[0] == '_')
1536 continue;
1537 /* Hide commands that are marked as deprecated. */
1538 if (e->deprecated)
1539 continue;
1540 if (match && strncasecmp(matchstr, e->_full_cmd, len))
1541 continue;
1542 ast_cli(fd, "%25.25s %s\n", e->_full_cmd, e->summary);
1543 found++;
1545 AST_LIST_UNLOCK(&helpers);
1546 if (!locked && !found && matchstr[0])
1547 ast_cli(fd, "No such command '%s'.\n", matchstr);
1548 return 0;
1551 static int help_workhorse(int fd, char *match[])
1553 return help1(fd, match, 0 /* do not print errors */);
1556 static int handle_help(int fd, int argc, char *argv[])
1558 char fullcmd[80];
1559 struct ast_cli_entry *e;
1561 if (argc < 1)
1562 return RESULT_SHOWUSAGE;
1563 if (argc == 1)
1564 return help_workhorse(fd, NULL);
1566 AST_LIST_LOCK(&helpers);
1567 e = find_cli(argv + 1, 1); /* try exact match first */
1568 if (!e)
1569 return help1(fd, argv + 1, 1 /* locked */);
1570 if (e->usage)
1571 ast_cli(fd, "%s", e->usage);
1572 else {
1573 ast_join(fullcmd, sizeof(fullcmd), argv+1);
1574 ast_cli(fd, "No help text available for '%s'.\n", fullcmd);
1576 AST_LIST_UNLOCK(&helpers);
1577 return RESULT_SUCCESS;
1580 static char *parse_args(const char *s, int *argc, char *argv[], int max, int *trailingwhitespace)
1582 char *dup, *cur;
1583 int x = 0;
1584 int quoted = 0;
1585 int escaped = 0;
1586 int whitespace = 1;
1588 *trailingwhitespace = 0;
1589 if (s == NULL) /* invalid, though! */
1590 return NULL;
1591 /* make a copy to store the parsed string */
1592 if (!(dup = ast_strdup(s)))
1593 return NULL;
1595 cur = dup;
1596 /* scan the original string copying into cur when needed */
1597 for (; *s ; s++) {
1598 if (x >= max - 1) {
1599 ast_log(LOG_WARNING, "Too many arguments, truncating at %s\n", s);
1600 break;
1602 if (*s == '"' && !escaped) {
1603 quoted = !quoted;
1604 if (quoted && whitespace) {
1605 /* start a quoted string from previous whitespace: new argument */
1606 argv[x++] = cur;
1607 whitespace = 0;
1609 } else if ((*s == ' ' || *s == '\t') && !(quoted || escaped)) {
1610 /* If we are not already in whitespace, and not in a quoted string or
1611 processing an escape sequence, and just entered whitespace, then
1612 finalize the previous argument and remember that we are in whitespace
1614 if (!whitespace) {
1615 *cur++ = '\0';
1616 whitespace = 1;
1618 } else if (*s == '\\' && !escaped) {
1619 escaped = 1;
1620 } else {
1621 if (whitespace) {
1622 /* we leave whitespace, and are not quoted. So it's a new argument */
1623 argv[x++] = cur;
1624 whitespace = 0;
1626 *cur++ = *s;
1627 escaped = 0;
1630 /* Null terminate */
1631 *cur++ = '\0';
1632 /* XXX put a NULL in the last argument, because some functions that take
1633 * the array may want a null-terminated array.
1634 * argc still reflects the number of non-NULL entries.
1636 argv[x] = NULL;
1637 *argc = x;
1638 *trailingwhitespace = whitespace;
1639 return dup;
1642 /*! \brief Return the number of unique matches for the generator */
1643 int ast_cli_generatornummatches(const char *text, const char *word)
1645 int matches = 0, i = 0;
1646 char *buf = NULL, *oldbuf = NULL;
1648 while ((buf = ast_cli_generator(text, word, i++))) {
1649 if (!oldbuf || strcmp(buf,oldbuf))
1650 matches++;
1651 if (oldbuf)
1652 free(oldbuf);
1653 oldbuf = buf;
1655 if (oldbuf)
1656 free(oldbuf);
1657 return matches;
1660 char **ast_cli_completion_matches(const char *text, const char *word)
1662 char **match_list = NULL, *retstr, *prevstr;
1663 size_t match_list_len, max_equal, which, i;
1664 int matches = 0;
1666 /* leave entry 0 free for the longest common substring */
1667 match_list_len = 1;
1668 while ((retstr = ast_cli_generator(text, word, matches)) != NULL) {
1669 if (matches + 1 >= match_list_len) {
1670 match_list_len <<= 1;
1671 if (!(match_list = ast_realloc(match_list, match_list_len * sizeof(*match_list))))
1672 return NULL;
1674 match_list[++matches] = retstr;
1677 if (!match_list)
1678 return match_list; /* NULL */
1680 /* Find the longest substring that is common to all results
1681 * (it is a candidate for completion), and store a copy in entry 0.
1683 prevstr = match_list[1];
1684 max_equal = strlen(prevstr);
1685 for (which = 2; which <= matches; which++) {
1686 for (i = 0; i < max_equal && toupper(prevstr[i]) == toupper(match_list[which][i]); i++)
1687 continue;
1688 max_equal = i;
1691 if (!(retstr = ast_malloc(max_equal + 1)))
1692 return NULL;
1694 ast_copy_string(retstr, match_list[1], max_equal + 1);
1695 match_list[0] = retstr;
1697 /* ensure that the array is NULL terminated */
1698 if (matches + 1 >= match_list_len) {
1699 if (!(match_list = ast_realloc(match_list, (match_list_len + 1) * sizeof(*match_list))))
1700 return NULL;
1702 match_list[matches + 1] = NULL;
1704 return match_list;
1707 static char *__ast_cli_generator(const char *text, const char *word, int state, int lock)
1709 char *argv[AST_MAX_ARGS];
1710 struct ast_cli_entry *e;
1711 struct cli_iterator i = { NULL, NULL };
1712 int x = 0, argindex, matchlen;
1713 int matchnum=0;
1714 char *ret = NULL;
1715 char matchstr[80] = "";
1716 int tws = 0;
1717 char *dup = parse_args(text, &x, argv, sizeof(argv) / sizeof(argv[0]), &tws);
1719 if (!dup) /* error */
1720 return NULL;
1721 argindex = (!ast_strlen_zero(word) && x>0) ? x-1 : x;
1722 /* rebuild the command, ignore tws */
1723 ast_join(matchstr, sizeof(matchstr)-1, argv);
1724 matchlen = strlen(matchstr);
1725 if (tws) {
1726 strcat(matchstr, " "); /* XXX */
1727 if (matchlen)
1728 matchlen++;
1730 if (lock)
1731 AST_LIST_LOCK(&helpers);
1732 while( !ret && (e = cli_next(&i)) ) {
1733 int lc = strlen(e->_full_cmd);
1734 if (e->_full_cmd[0] != '_' && lc > 0 && matchlen <= lc &&
1735 !strncasecmp(matchstr, e->_full_cmd, matchlen)) {
1736 /* Found initial part, return a copy of the next word... */
1737 if (e->cmda[argindex] && ++matchnum > state)
1738 ret = strdup(e->cmda[argindex]); /* we need a malloced string */
1739 } else if (e->generator && !strncasecmp(matchstr, e->_full_cmd, lc) && matchstr[lc] < 33) {
1740 /* We have a command in its entirity within us -- theoretically only one
1741 command can have this occur */
1742 ret = e->generator(matchstr, word, argindex, state);
1745 if (lock)
1746 AST_LIST_UNLOCK(&helpers);
1747 free(dup);
1748 return ret;
1751 char *ast_cli_generator(const char *text, const char *word, int state)
1753 return __ast_cli_generator(text, word, state, 1);
1756 int ast_cli_command(int fd, const char *s)
1758 char *argv[AST_MAX_ARGS];
1759 struct ast_cli_entry *e;
1760 int x;
1761 char *dup;
1762 int tws;
1764 if (!(dup = parse_args(s, &x, argv, sizeof(argv) / sizeof(argv[0]), &tws)))
1765 return -1;
1767 /* We need at least one entry, or ignore */
1768 if (x > 0) {
1769 AST_LIST_LOCK(&helpers);
1770 e = find_cli(argv, 0);
1771 if (e)
1772 e->inuse++;
1773 AST_LIST_UNLOCK(&helpers);
1774 if (e) {
1775 switch(e->handler(fd, x, argv)) {
1776 case RESULT_SHOWUSAGE:
1777 if (e->usage)
1778 ast_cli(fd, "%s", e->usage);
1779 else
1780 ast_cli(fd, "Invalid usage, but no usage information available.\n");
1781 break;
1782 default:
1783 AST_LIST_LOCK(&helpers);
1784 if (e->deprecated == 1) {
1785 ast_cli(fd, "The '%s' command is deprecated and will be removed in a future release. Please use '%s' instead.\n", e->_full_cmd, e->_deprecated_by);
1786 e->deprecated = 2;
1788 AST_LIST_UNLOCK(&helpers);
1789 break;
1791 } else
1792 ast_cli(fd, "No such command '%s' (type 'help' for help)\n", find_best(argv));
1793 if (e)
1794 ast_atomic_fetchadd_int(&e->inuse, -1);
1796 free(dup);
1798 return 0;