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.
21 * \brief http server for AMI access
23 * \author Mark Spencer <markster@digium.com>
25 * This program implements a tiny http server
26 * and was inspired by micro-httpd by Jef Poskanzer
28 * \ref AstHTTP - AMI over the http protocol
33 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
38 #include <sys/signal.h>
41 #include "asterisk/paths.h" /* use ast_config_AST_DATA_DIR */
42 #include "asterisk/network.h"
43 #include "asterisk/cli.h"
44 #include "asterisk/tcptls.h"
45 #include "asterisk/http.h"
46 #include "asterisk/utils.h"
47 #include "asterisk/strings.h"
48 #include "asterisk/config.h"
49 #include "asterisk/stringfields.h"
50 #include "asterisk/ast_version.h"
51 #include "asterisk/manager.h"
52 #include "asterisk/_private.h"
56 /* See http.h for more information about the SSL implementation */
57 #if defined(HAVE_OPENSSL) && (defined(HAVE_FUNOPEN) || defined(HAVE_FOPENCOOKIE))
58 #define DO_SSL /* comment in/out if you want to support ssl */
61 static struct ast_tls_config http_tls_cfg;
63 static void *httpd_helper_thread(void *arg);
66 * we have up to two accepting threads, one for http, one for https
68 static struct server_args http_desc = {
70 .master = AST_PTHREADT_NULL,
73 .name = "http server",
74 .accept_fn = ast_tcptls_server_root,
75 .worker_fn = httpd_helper_thread,
78 static struct server_args https_desc = {
80 .master = AST_PTHREADT_NULL,
81 .tls_cfg = &http_tls_cfg,
83 .name = "https server",
84 .accept_fn = ast_tcptls_server_root,
85 .worker_fn = httpd_helper_thread,
88 static AST_RWLIST_HEAD_STATIC(uris, ast_http_uri); /*!< list of supported handlers */
90 /* all valid URIs must be prepended by the string in prefix. */
91 static char prefix[MAX_PREFIX];
92 static int enablestatic;
94 /*! \brief Limit the kinds of files we're willing to serve up */
99 { "png", "image/png" },
100 { "jpg", "image/jpeg" },
101 { "js", "application/x-javascript" },
102 { "wav", "audio/x-wav" },
103 { "mp3", "audio/mpeg" },
104 { "svg", "image/svg+xml" },
105 { "svgz", "image/svg+xml" },
106 { "gif", "image/gif" },
109 struct http_uri_redirect {
110 AST_LIST_ENTRY(http_uri_redirect) entry;
115 static AST_RWLIST_HEAD_STATIC(uri_redirects, http_uri_redirect);
117 static const char *ftype2mtype(const char *ftype, char *wkspace, int wkspacelen)
122 for (x = 0; x < ARRAY_LEN(mimetypes); x++) {
123 if (!strcasecmp(ftype, mimetypes[x].ext)) {
124 return mimetypes[x].mtype;
129 snprintf(wkspace, wkspacelen, "text/%s", S_OR(ftype, "plain"));
134 static struct ast_str *static_callback(struct ast_tcptls_session_instance *ser, const struct ast_http_uri *urih, const char *uri, enum ast_http_method method, struct ast_variable *vars, struct ast_variable *headers, int *status, char **title, int *contentlength)
143 struct timeval tv = ast_tvnow();
147 /* Yuck. I'm not really sold on this, but if you don't deliver static content it makes your configuration
148 substantially more challenging, but this seems like a rather irritating feature creep on Asterisk. */
149 if (!enablestatic || ast_strlen_zero(uri)) {
153 /* Disallow any funny filenames at all */
154 if ((uri[0] < 33) || strchr("./|~@#$%^&*() \t", uri[0])) {
158 if (strstr(uri, "/..")) {
162 if ((ftype = strrchr(uri, '.'))) {
166 mtype = ftype2mtype(ftype, wkspace, sizeof(wkspace));
168 /* Cap maximum length */
169 if ((len = strlen(uri) + strlen(ast_config_AST_DATA_DIR) + strlen("/static-http/") + 5) > 1024) {
174 sprintf(path, "%s/static-http/%s", ast_config_AST_DATA_DIR, uri);
175 if (stat(path, &st)) {
179 if (S_ISDIR(st.st_mode)) {
183 if ((fd = open(path, O_RDONLY)) < 0) {
187 ast_strftime(buf, sizeof(buf), "%a, %d %b %Y %H:%M:%S %Z", ast_localtime(&tv, &tm, "GMT"));
188 fprintf(ser->f, "HTTP/1.1 200 OK\r\n"
189 "Server: Asterisk/%s\r\n"
191 "Connection: close\r\n"
192 "Cache-Control: no-cache, no-store\r\n"
193 "Content-Length: %d\r\n"
194 "Content-type: %s\r\n\r\n",
195 ast_get_version(), buf, (int) st.st_size, mtype);
197 while ((len = read(fd, buf, sizeof(buf))) > 0) {
198 fwrite(buf, 1, len, ser->f);
206 return ast_http_error((*status = 404),
207 (*title = ast_strdup("Not Found")),
208 NULL, "Nothing to see here. Move along.");
211 return ast_http_error((*status = 403),
212 (*title = ast_strdup("Access Denied")),
213 NULL, "Sorry, I cannot let you do that, Dave.");
217 static struct ast_str *httpstatus_callback(struct ast_tcptls_session_instance *ser, const struct ast_http_uri *urih, const char *uri, enum ast_http_method method, struct ast_variable *vars, struct ast_variable *headers, int *status, char **title, int *contentlength)
219 struct ast_str *out = ast_str_create(512);
220 struct ast_variable *v;
226 ast_str_append(&out, 0,
228 "<title>Asterisk HTTP Status</title>\r\n"
229 "<body bgcolor=\"#ffffff\">\r\n"
230 "<table bgcolor=\"#f1f1f1\" align=\"center\"><tr><td bgcolor=\"#e0e0ff\" colspan=\"2\" width=\"500\">\r\n"
231 "<h2> Asterisk™ HTTP Status</h2></td></tr>\r\n");
232 ast_str_append(&out, 0, "<tr><td><i>Prefix</i></td><td><b>%s</b></td></tr>\r\n", prefix);
233 ast_str_append(&out, 0, "<tr><td><i>Bind Address</i></td><td><b>%s</b></td></tr>\r\n",
234 ast_inet_ntoa(http_desc.oldsin.sin_addr));
235 ast_str_append(&out, 0, "<tr><td><i>Bind Port</i></td><td><b>%d</b></td></tr>\r\n",
236 ntohs(http_desc.oldsin.sin_port));
238 if (http_tls_cfg.enabled) {
239 ast_str_append(&out, 0, "<tr><td><i>SSL Bind Port</i></td><td><b>%d</b></td></tr>\r\n",
240 ntohs(https_desc.oldsin.sin_port));
243 ast_str_append(&out, 0, "<tr><td colspan=\"2\"><hr></td></tr>\r\n");
245 for (v = vars; v; v = v->next) {
246 if (strncasecmp(v->name, "cookie_", 7)) {
247 ast_str_append(&out, 0, "<tr><td><i>Submitted Variable '%s'</i></td><td>%s</td></tr>\r\n", v->name, v->value);
251 ast_str_append(&out, 0, "<tr><td colspan=\"2\"><hr></td></tr>\r\n");
253 for (v = vars; v; v = v->next) {
254 if (!strncasecmp(v->name, "cookie_", 7)) {
255 ast_str_append(&out, 0, "<tr><td><i>Cookie '%s'</i></td><td>%s</td></tr>\r\n", v->name, v->value);
259 ast_str_append(&out, 0, "</table><center><font size=\"-1\"><i>Asterisk and Digium are registered trademarks of Digium, Inc.</i></font></center></body>\r\n");
263 static struct ast_http_uri statusuri = {
264 .callback = httpstatus_callback,
265 .description = "Asterisk HTTP General Status",
272 static struct ast_http_uri staticuri = {
273 .callback = static_callback,
274 .description = "Asterisk HTTP Static Delivery",
283 struct ast_str *ast_http_error(int status, const char *title, const char *extra_header, const char *text)
285 struct ast_str *out = ast_str_create(512);
292 "Content-type: text/html\r\n"
295 "<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\">\r\n"
297 "<title>%d %s</title>\r\n"
302 "<address>Asterisk Server</address>\r\n"
303 "</body></html>\r\n",
304 (extra_header ? extra_header : ""), status, title, title, text);
310 * Link the new uri into the list.
312 * They are sorted by length of
313 * the string, not alphabetically. Duplicate entries are not replaced,
314 * but the insertion order (using <= and not just <) makes sure that
315 * more recent insertions hide older ones.
316 * On a lookup, we just scan the list and stop at the first matching entry.
318 int ast_http_uri_link(struct ast_http_uri *urih)
320 struct ast_http_uri *uri;
321 int len = strlen(urih->uri);
323 if (!(urih->supports_get || urih->supports_post)) {
324 ast_log(LOG_WARNING, "URI handler does not provide either GET or POST method: %s (%s)\n", urih->uri, urih->description);
328 AST_RWLIST_WRLOCK(&uris);
330 if (AST_RWLIST_EMPTY(&uris) || strlen(AST_RWLIST_FIRST(&uris)->uri) <= len) {
331 AST_RWLIST_INSERT_HEAD(&uris, urih, entry);
332 AST_RWLIST_UNLOCK(&uris);
337 AST_RWLIST_TRAVERSE(&uris, uri, entry) {
338 if (AST_RWLIST_NEXT(uri, entry) &&
339 strlen(AST_RWLIST_NEXT(uri, entry)->uri) <= len) {
340 AST_RWLIST_INSERT_AFTER(&uris, uri, urih, entry);
341 AST_RWLIST_UNLOCK(&uris);
347 AST_RWLIST_INSERT_TAIL(&uris, urih, entry);
349 AST_RWLIST_UNLOCK(&uris);
354 void ast_http_uri_unlink(struct ast_http_uri *urih)
356 AST_RWLIST_WRLOCK(&uris);
357 AST_RWLIST_REMOVE(&uris, urih, entry);
358 AST_RWLIST_UNLOCK(&uris);
361 void ast_http_uri_unlink_all_with_key(const char *key)
363 struct ast_http_uri *urih;
364 AST_RWLIST_WRLOCK(&uris);
365 AST_RWLIST_TRAVERSE_SAFE_BEGIN(&uris, urih, entry) {
366 if (!strcmp(urih->key, key)) {
367 AST_RWLIST_REMOVE_CURRENT(entry);
370 AST_RWLIST_TRAVERSE_SAFE_END
374 * Decode special characters in http uri.
375 * We have ast_uri_decode to handle %XX sequences, but spaces
376 * are encoded as a '+' so we need to replace them beforehand.
378 static void http_decode(char *s)
387 static struct ast_str *handle_uri(struct ast_tcptls_session_instance *ser, char *uri, enum ast_http_method method,
388 int *status, char **title, int *contentlength, struct ast_variable **cookies, struct ast_variable *headers,
389 unsigned int *static_content)
392 struct ast_str *out = NULL;
394 struct ast_http_uri *urih = NULL;
396 struct ast_variable *vars = NULL, *v, *prev = NULL;
397 struct http_uri_redirect *redirect;
400 /* preserve previous behavior of only support URI parameters on GET requests */
401 if (method == AST_HTTP_GET) {
402 strsep(¶ms, "?");
404 /* Extract arguments from the request and store them in variables.
405 * Note that a request can have multiple arguments with the same
406 * name, and we store them all in the list of variables.
407 * It is up to the application to handle multiple values.
412 while ((val = strsep(¶ms, "&"))) {
413 var = strsep(&val, "=");
420 if ((v = ast_variable_new(var, val, ""))) {
433 * Append the cookies to the list of variables.
434 * This saves a pass in the cookies list, but has the side effect
435 * that a variable might mask a cookie with the same name if the
436 * application stops at the first match.
437 * Note that this is the same behaviour as $_REQUEST variables in PHP.
440 prev->next = *cookies;
448 AST_RWLIST_RDLOCK(&uri_redirects);
449 AST_RWLIST_TRAVERSE(&uri_redirects, redirect, entry) {
450 if (!strcasecmp(uri, redirect->target)) {
453 snprintf(buf, sizeof(buf), "Location: %s\r\n", redirect->dest);
454 out = ast_http_error((*status = 302),
455 (*title = ast_strdup("Moved Temporarily")),
456 buf, "There is no spoon...");
461 AST_RWLIST_UNLOCK(&uri_redirects);
467 /* We want requests to start with the (optional) prefix and '/' */
469 if (!strncasecmp(uri, prefix, l) && uri[l] == '/') {
471 /* scan registered uris to see if we match one. */
472 AST_RWLIST_RDLOCK(&uris);
473 AST_RWLIST_TRAVERSE(&uris, urih, entry) {
474 ast_debug(2, "match request [%s] with handler [%s] len %d\n", uri, urih->uri, l);
478 if (urih->supports_get) {
483 if (urih->supports_post) {
490 l = strlen(urih->uri);
491 c = uri + l; /* candidate */
493 if (strncasecmp(urih->uri, uri, l) || /* no match */
494 (*c && *c != '/')) { /* substring */
502 if (!*c || urih->has_subtree) {
503 if (((method == AST_HTTP_GET) && urih->supports_get) ||
504 ((method == AST_HTTP_POST) && urih->supports_post)) {
513 AST_RWLIST_UNLOCK(&uris);
518 *static_content = urih->static_content;
519 out = urih->callback(ser, urih, uri, method, vars, headers, status, title, contentlength);
520 AST_RWLIST_UNLOCK(&uris);
521 } else if (saw_method) {
522 out = ast_http_error((*status = 404),
523 (*title = ast_strdup("Not Found")), NULL,
524 "The requested URL was not found on this server.");
526 out = ast_http_error((*status = 501),
527 (*title = ast_strdup("Not Implemented")), NULL,
528 "Attempt to use unimplemented / unsupported method");
532 ast_variables_destroy(vars);
538 #if defined(HAVE_FUNOPEN)
542 #define HOOK_T ssize_t
547 * replacement read/write functions for SSL support.
548 * We use wrappers rather than SSL_read/SSL_write directly so
549 * we can put in some debugging.
551 /*static HOOK_T ssl_read(void *cookie, char *buf, LEN_T len)
553 int i = SSL_read(cookie, buf, len-1);
557 ast_verbose("ssl read size %d returns %d <%s>\n", (int)len, i, buf);
562 static HOOK_T ssl_write(void *cookie, const char *buf, LEN_T len)
565 char *s = alloca(len+1);
566 strncpy(s, buf, len);
568 ast_verbose("ssl write size %d <%s>\n", (int)len, s);
570 return SSL_write(cookie, buf, len);
573 static int ssl_close(void *cookie)
575 close(SSL_get_fd(cookie));
576 SSL_shutdown(cookie);
582 static struct ast_variable *parse_cookies(char *cookies)
585 struct ast_variable *vars = NULL, *var;
590 while ((cur = strsep(&cookies, ";"))) {
596 if (ast_strlen_zero(name) || ast_strlen_zero(val)) {
600 name = ast_strip(name);
601 val = ast_strip_quoted(val, "\"", "\"");
603 if (ast_strlen_zero(name) || ast_strlen_zero(val)) {
608 ast_log(LOG_DEBUG, "mmm ... cookie! Name: '%s' Value: '%s'\n", name, val);
611 var = ast_variable_new(name, val, __FILE__);
619 static void *httpd_helper_thread(void *data)
623 struct ast_tcptls_session_instance *ser = data;
624 struct ast_variable *vars=NULL, *headers = NULL;
625 char *uri, *title=NULL;
626 int status = 200, contentlength = 0;
627 struct ast_str *out = NULL;
628 unsigned int static_content = 0;
630 if (!fgets(buf, sizeof(buf), ser->f)) {
634 uri = ast_skip_nonblanks(buf); /* Skip method */
639 uri = ast_skip_blanks(uri); /* Skip white space */
641 if (*uri) { /* terminate at the first blank */
642 char *c = ast_skip_nonblanks(uri);
649 /* process "Cookie: " lines */
650 while (fgets(cookie, sizeof(cookie), ser->f)) {
651 /* Trim trailing characters */
652 ast_trim_blanks(cookie);
653 if (ast_strlen_zero(cookie)) {
656 if (!strncasecmp(cookie, "Cookie: ", 8)) {
657 vars = parse_cookies(cookie);
662 out = ast_http_error(400, "Bad Request", NULL, "Invalid Request");
663 } else if (strcasecmp(buf, "post") && strcasecmp(buf, "get")) {
664 out = ast_http_error(501, "Not Implemented", NULL,
665 "Attempt to use unimplemented / unsupported method");
666 } else { /* try to serve it */
667 out = handle_uri(ser, uri, (!strcasecmp(buf, "get")) ? AST_HTTP_GET : AST_HTTP_POST,
668 &status, &title, &contentlength, &vars, headers, &static_content);
671 /* If they aren't mopped up already, clean up the cookies */
673 ast_variables_destroy(vars);
675 /* Clean up all the header information pulled as well */
677 ast_variables_destroy(headers);
681 struct timeval tv = ast_tvnow();
685 ast_strftime(timebuf, sizeof(timebuf), "%a, %d %b %Y %H:%M:%S %Z", ast_localtime(&tv, &tm, "GMT"));
688 "Server: Asterisk/%s\r\n"
690 "Connection: close\r\n"
692 status, title ? title : "OK", ast_get_version(), timebuf,
693 static_content ? "" : "Cache-Control: no-cache, no-store\r\n");
694 /* We set the no-cache headers only for dynamic content.
695 * If you want to make sure the static file you requested is not from cache,
696 * append a random variable to your GET request. Ex: 'something.html?r=109987734'
698 if (!contentlength) { /* opaque body ? just dump it hoping it is properly formatted */
699 fprintf(ser->f, "%s", out->str);
701 char *tmp = strstr(out->str, "\r\n\r\n");
704 fprintf(ser->f, "Content-length: %d\r\n", contentlength);
705 /* first write the header, then the body */
706 fwrite(out->str, 1, (tmp + 4 - out->str), ser->f);
707 fwrite(tmp + 4, 1, contentlength, ser->f);
719 ser = ast_tcptls_session_instance_destroy(ser);
725 * \brief Add a new URI redirect
726 * The entries in the redirect list are sorted by length, just like the list
729 static void add_redirect(const char *value)
732 struct http_uri_redirect *redirect, *cur;
733 unsigned int target_len;
734 unsigned int total_len;
736 dest = ast_strdupa(value);
737 dest = ast_skip_blanks(dest);
738 target = strsep(&dest, " ");
739 target = ast_skip_blanks(target);
740 target = strsep(&target, " "); /* trim trailing whitespace */
743 ast_log(LOG_WARNING, "Invalid redirect '%s'\n", value);
747 target_len = strlen(target) + 1;
748 total_len = sizeof(*redirect) + target_len + strlen(dest) + 1;
750 if (!(redirect = ast_calloc(1, total_len))) {
754 redirect->dest = redirect->target + target_len;
755 strcpy(redirect->target, target);
756 strcpy(redirect->dest, dest);
758 AST_RWLIST_WRLOCK(&uri_redirects);
760 target_len--; /* So we can compare directly with strlen() */
761 if (AST_RWLIST_EMPTY(&uri_redirects)
762 || strlen(AST_RWLIST_FIRST(&uri_redirects)->target) <= target_len) {
763 AST_RWLIST_INSERT_HEAD(&uri_redirects, redirect, entry);
764 AST_RWLIST_UNLOCK(&uri_redirects);
769 AST_RWLIST_TRAVERSE(&uri_redirects, cur, entry) {
770 if (AST_RWLIST_NEXT(cur, entry)
771 && strlen(AST_RWLIST_NEXT(cur, entry)->target) <= target_len) {
772 AST_RWLIST_INSERT_AFTER(&uri_redirects, cur, redirect, entry);
773 AST_RWLIST_UNLOCK(&uri_redirects);
779 AST_RWLIST_INSERT_TAIL(&uri_redirects, redirect, entry);
781 AST_RWLIST_UNLOCK(&uri_redirects);
784 static int __ast_http_load(int reload)
786 struct ast_config *cfg;
787 struct ast_variable *v;
789 int newenablestatic=0;
791 struct ast_hostent ahp;
792 char newprefix[MAX_PREFIX] = "";
793 int have_sslbindaddr = 0;
794 struct http_uri_redirect *redirect;
795 struct ast_flags config_flags = { reload ? CONFIG_FLAG_FILEUNCHANGED : 0 };
797 if ((cfg = ast_config_load2("http.conf", "http", config_flags)) == CONFIG_STATUS_FILEUNCHANGED) {
802 memset(&http_desc.sin, 0, sizeof(http_desc.sin));
803 http_desc.sin.sin_port = htons(8088);
805 memset(&https_desc.sin, 0, sizeof(https_desc.sin));
806 https_desc.sin.sin_port = htons(8089);
808 http_tls_cfg.enabled = 0;
809 if (http_tls_cfg.certfile) {
810 ast_free(http_tls_cfg.certfile);
812 http_tls_cfg.certfile = ast_strdup(AST_CERTFILE);
813 if (http_tls_cfg.cipher) {
814 ast_free(http_tls_cfg.cipher);
816 http_tls_cfg.cipher = ast_strdup("");
818 AST_RWLIST_WRLOCK(&uri_redirects);
819 while ((redirect = AST_RWLIST_REMOVE_HEAD(&uri_redirects, entry))) {
822 AST_RWLIST_UNLOCK(&uri_redirects);
825 v = ast_variable_browse(cfg, "general");
826 for (; v; v = v->next) {
827 if (!strcasecmp(v->name, "enabled")) {
828 enabled = ast_true(v->value);
829 } else if (!strcasecmp(v->name, "sslenable")) {
830 http_tls_cfg.enabled = ast_true(v->value);
831 } else if (!strcasecmp(v->name, "sslbindport")) {
832 https_desc.sin.sin_port = htons(atoi(v->value));
833 } else if (!strcasecmp(v->name, "sslcert")) {
834 ast_free(http_tls_cfg.certfile);
835 http_tls_cfg.certfile = ast_strdup(v->value);
836 } else if (!strcasecmp(v->name, "sslcipher")) {
837 ast_free(http_tls_cfg.cipher);
838 http_tls_cfg.cipher = ast_strdup(v->value);
839 } else if (!strcasecmp(v->name, "enablestatic")) {
840 newenablestatic = ast_true(v->value);
841 } else if (!strcasecmp(v->name, "bindport")) {
842 http_desc.sin.sin_port = htons(atoi(v->value));
843 } else if (!strcasecmp(v->name, "sslbindaddr")) {
844 if ((hp = ast_gethostbyname(v->value, &ahp))) {
845 memcpy(&https_desc.sin.sin_addr, hp->h_addr, sizeof(https_desc.sin.sin_addr));
846 have_sslbindaddr = 1;
848 ast_log(LOG_WARNING, "Invalid bind address '%s'\n", v->value);
850 } else if (!strcasecmp(v->name, "bindaddr")) {
851 if ((hp = ast_gethostbyname(v->value, &ahp))) {
852 memcpy(&http_desc.sin.sin_addr, hp->h_addr, sizeof(http_desc.sin.sin_addr));
854 ast_log(LOG_WARNING, "Invalid bind address '%s'\n", v->value);
856 } else if (!strcasecmp(v->name, "prefix")) {
857 if (!ast_strlen_zero(v->value)) {
859 ast_copy_string(newprefix + 1, v->value, sizeof(newprefix) - 1);
863 } else if (!strcasecmp(v->name, "redirect")) {
864 add_redirect(v->value);
866 ast_log(LOG_WARNING, "Ignoring unknown option '%s' in http.conf\n", v->name);
870 ast_config_destroy(cfg);
873 if (!have_sslbindaddr) {
874 https_desc.sin.sin_addr = http_desc.sin.sin_addr;
877 http_desc.sin.sin_family = https_desc.sin.sin_family = AF_INET;
879 if (strcmp(prefix, newprefix)) {
880 ast_copy_string(prefix, newprefix, sizeof(prefix));
882 enablestatic = newenablestatic;
883 ast_tcptls_server_start(&http_desc);
884 if (ast_ssl_setup(https_desc.tls_cfg)) {
885 ast_tcptls_server_start(&https_desc);
891 static char *handle_show_http(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
893 struct ast_http_uri *urih;
894 struct http_uri_redirect *redirect;
898 e->command = "http show status";
900 "Usage: http show status\n"
901 " Lists status of internal HTTP engine\n";
908 return CLI_SHOWUSAGE;
910 ast_cli(a->fd, "HTTP Server Status:\n");
911 ast_cli(a->fd, "Prefix: %s\n", prefix);
912 if (!http_desc.oldsin.sin_family) {
913 ast_cli(a->fd, "Server Disabled\n\n");
915 ast_cli(a->fd, "Server Enabled and Bound to %s:%d\n\n",
916 ast_inet_ntoa(http_desc.oldsin.sin_addr),
917 ntohs(http_desc.oldsin.sin_port));
918 if (http_tls_cfg.enabled) {
919 ast_cli(a->fd, "HTTPS Server Enabled and Bound to %s:%d\n\n",
920 ast_inet_ntoa(https_desc.oldsin.sin_addr),
921 ntohs(https_desc.oldsin.sin_port));
925 ast_cli(a->fd, "Enabled URI's:\n");
926 AST_RWLIST_RDLOCK(&uris);
927 if (AST_RWLIST_EMPTY(&uris)) {
928 ast_cli(a->fd, "None.\n");
930 AST_RWLIST_TRAVERSE(&uris, urih, entry) {
931 ast_cli(a->fd, "%s/%s%s => %s\n", prefix, urih->uri, (urih->has_subtree ? "/..." : ""), urih->description);
934 AST_RWLIST_UNLOCK(&uris);
936 ast_cli(a->fd, "\nEnabled Redirects:\n");
937 AST_RWLIST_RDLOCK(&uri_redirects);
938 AST_RWLIST_TRAVERSE(&uri_redirects, redirect, entry) {
939 ast_cli(a->fd, " %s => %s\n", redirect->target, redirect->dest);
941 if (AST_RWLIST_EMPTY(&uri_redirects)) {
942 ast_cli(a->fd, " None.\n");
944 AST_RWLIST_UNLOCK(&uri_redirects);
949 int ast_http_reload(void)
951 return __ast_http_load(1);
954 static struct ast_cli_entry cli_http[] = {
955 AST_CLI_DEFINE(handle_show_http, "Display HTTP server status"),
958 int ast_http_init(void)
960 ast_http_uri_link(&statusuri);
961 ast_http_uri_link(&staticuri);
962 ast_cli_register_multiple(cli_http, sizeof(cli_http) / sizeof(struct ast_cli_entry));
964 return __ast_http_load(0);