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 uint32_t manid_from_vars(struct ast_variable *sid) {
137 while (sid && strcmp(sid->name, "mansession_id"))
140 if (!sid || sscanf(sid->value, "%x", &mngid) != 1)
146 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)
155 struct timeval tv = ast_tvnow();
159 /* Yuck. I'm not really sold on this, but if you don't deliver static content it makes your configuration
160 substantially more challenging, but this seems like a rather irritating feature creep on Asterisk. */
161 if (!enablestatic || ast_strlen_zero(uri)) {
165 /* Disallow any funny filenames at all */
166 if ((uri[0] < 33) || strchr("./|~@#$%^&*() \t", uri[0])) {
170 if (strstr(uri, "/..")) {
174 if ((ftype = strrchr(uri, '.'))) {
178 mtype = ftype2mtype(ftype, wkspace, sizeof(wkspace));
180 /* Cap maximum length */
181 if ((len = strlen(uri) + strlen(ast_config_AST_DATA_DIR) + strlen("/static-http/") + 5) > 1024) {
186 sprintf(path, "%s/static-http/%s", ast_config_AST_DATA_DIR, uri);
187 if (stat(path, &st)) {
191 if (S_ISDIR(st.st_mode)) {
195 if ((fd = open(path, O_RDONLY)) < 0) {
199 if (strstr(path, "/private/") && !astman_is_authed(manid_from_vars(vars))) {
203 ast_strftime(buf, sizeof(buf), "%a, %d %b %Y %H:%M:%S %Z", ast_localtime(&tv, &tm, "GMT"));
204 fprintf(ser->f, "HTTP/1.1 200 OK\r\n"
205 "Server: Asterisk/%s\r\n"
207 "Connection: close\r\n"
208 "Cache-Control: no-cache, no-store\r\n"
209 "Content-Length: %d\r\n"
210 "Content-type: %s\r\n\r\n",
211 ast_get_version(), buf, (int) st.st_size, mtype);
213 while ((len = read(fd, buf, sizeof(buf))) > 0) {
214 fwrite(buf, 1, len, ser->f);
222 return ast_http_error((*status = 404),
223 (*title = ast_strdup("Not Found")),
224 NULL, "Nothing to see here. Move along.");
227 return ast_http_error((*status = 403),
228 (*title = ast_strdup("Access Denied")),
229 NULL, "Sorry, I cannot let you do that, Dave.");
233 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)
235 struct ast_str *out = ast_str_create(512);
236 struct ast_variable *v;
242 ast_str_append(&out, 0,
244 "<title>Asterisk HTTP Status</title>\r\n"
245 "<body bgcolor=\"#ffffff\">\r\n"
246 "<table bgcolor=\"#f1f1f1\" align=\"center\"><tr><td bgcolor=\"#e0e0ff\" colspan=\"2\" width=\"500\">\r\n"
247 "<h2> Asterisk™ HTTP Status</h2></td></tr>\r\n");
248 ast_str_append(&out, 0, "<tr><td><i>Prefix</i></td><td><b>%s</b></td></tr>\r\n", prefix);
249 ast_str_append(&out, 0, "<tr><td><i>Bind Address</i></td><td><b>%s</b></td></tr>\r\n",
250 ast_inet_ntoa(http_desc.oldsin.sin_addr));
251 ast_str_append(&out, 0, "<tr><td><i>Bind Port</i></td><td><b>%d</b></td></tr>\r\n",
252 ntohs(http_desc.oldsin.sin_port));
254 if (http_tls_cfg.enabled) {
255 ast_str_append(&out, 0, "<tr><td><i>SSL Bind Port</i></td><td><b>%d</b></td></tr>\r\n",
256 ntohs(https_desc.oldsin.sin_port));
259 ast_str_append(&out, 0, "<tr><td colspan=\"2\"><hr></td></tr>\r\n");
261 for (v = vars; v; v = v->next) {
262 if (strncasecmp(v->name, "cookie_", 7)) {
263 ast_str_append(&out, 0, "<tr><td><i>Submitted Variable '%s'</i></td><td>%s</td></tr>\r\n", v->name, v->value);
267 ast_str_append(&out, 0, "<tr><td colspan=\"2\"><hr></td></tr>\r\n");
269 for (v = vars; v; v = v->next) {
270 if (!strncasecmp(v->name, "cookie_", 7)) {
271 ast_str_append(&out, 0, "<tr><td><i>Cookie '%s'</i></td><td>%s</td></tr>\r\n", v->name, v->value);
275 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");
279 static struct ast_http_uri statusuri = {
280 .callback = httpstatus_callback,
281 .description = "Asterisk HTTP General Status",
288 static struct ast_http_uri staticuri = {
289 .callback = static_callback,
290 .description = "Asterisk HTTP Static Delivery",
299 struct ast_str *ast_http_error(int status, const char *title, const char *extra_header, const char *text)
301 struct ast_str *out = ast_str_create(512);
308 "Content-type: text/html\r\n"
311 "<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\">\r\n"
313 "<title>%d %s</title>\r\n"
318 "<address>Asterisk Server</address>\r\n"
319 "</body></html>\r\n",
320 (extra_header ? extra_header : ""), status, title, title, text);
326 * Link the new uri into the list.
328 * They are sorted by length of
329 * the string, not alphabetically. Duplicate entries are not replaced,
330 * but the insertion order (using <= and not just <) makes sure that
331 * more recent insertions hide older ones.
332 * On a lookup, we just scan the list and stop at the first matching entry.
334 int ast_http_uri_link(struct ast_http_uri *urih)
336 struct ast_http_uri *uri;
337 int len = strlen(urih->uri);
339 if (!(urih->supports_get || urih->supports_post)) {
340 ast_log(LOG_WARNING, "URI handler does not provide either GET or POST method: %s (%s)\n", urih->uri, urih->description);
344 AST_RWLIST_WRLOCK(&uris);
346 if (AST_RWLIST_EMPTY(&uris) || strlen(AST_RWLIST_FIRST(&uris)->uri) <= len) {
347 AST_RWLIST_INSERT_HEAD(&uris, urih, entry);
348 AST_RWLIST_UNLOCK(&uris);
353 AST_RWLIST_TRAVERSE(&uris, uri, entry) {
354 if (AST_RWLIST_NEXT(uri, entry) &&
355 strlen(AST_RWLIST_NEXT(uri, entry)->uri) <= len) {
356 AST_RWLIST_INSERT_AFTER(&uris, uri, urih, entry);
357 AST_RWLIST_UNLOCK(&uris);
363 AST_RWLIST_INSERT_TAIL(&uris, urih, entry);
365 AST_RWLIST_UNLOCK(&uris);
370 void ast_http_uri_unlink(struct ast_http_uri *urih)
372 AST_RWLIST_WRLOCK(&uris);
373 AST_RWLIST_REMOVE(&uris, urih, entry);
374 AST_RWLIST_UNLOCK(&uris);
377 void ast_http_uri_unlink_all_with_key(const char *key)
379 struct ast_http_uri *urih;
380 AST_RWLIST_WRLOCK(&uris);
381 AST_RWLIST_TRAVERSE_SAFE_BEGIN(&uris, urih, entry) {
382 if (!strcmp(urih->key, key)) {
383 AST_RWLIST_REMOVE_CURRENT(entry);
386 AST_RWLIST_TRAVERSE_SAFE_END
390 * Decode special characters in http uri.
391 * We have ast_uri_decode to handle %XX sequences, but spaces
392 * are encoded as a '+' so we need to replace them beforehand.
394 static void http_decode(char *s)
403 static struct ast_str *handle_uri(struct ast_tcptls_session_instance *ser, char *uri, enum ast_http_method method,
404 int *status, char **title, int *contentlength, struct ast_variable **cookies, struct ast_variable *headers,
405 unsigned int *static_content)
408 struct ast_str *out = NULL;
410 struct ast_http_uri *urih = NULL;
412 struct ast_variable *vars = NULL, *v, *prev = NULL;
413 struct http_uri_redirect *redirect;
416 /* preserve previous behavior of only support URI parameters on GET requests */
417 if (method == AST_HTTP_GET) {
418 strsep(¶ms, "?");
420 /* Extract arguments from the request and store them in variables.
421 * Note that a request can have multiple arguments with the same
422 * name, and we store them all in the list of variables.
423 * It is up to the application to handle multiple values.
428 while ((val = strsep(¶ms, "&"))) {
429 var = strsep(&val, "=");
436 if ((v = ast_variable_new(var, val, ""))) {
449 * Append the cookies to the list of variables.
450 * This saves a pass in the cookies list, but has the side effect
451 * that a variable might mask a cookie with the same name if the
452 * application stops at the first match.
453 * Note that this is the same behaviour as $_REQUEST variables in PHP.
456 prev->next = *cookies;
464 AST_RWLIST_RDLOCK(&uri_redirects);
465 AST_RWLIST_TRAVERSE(&uri_redirects, redirect, entry) {
466 if (!strcasecmp(uri, redirect->target)) {
469 snprintf(buf, sizeof(buf), "Location: %s\r\n", redirect->dest);
470 out = ast_http_error((*status = 302),
471 (*title = ast_strdup("Moved Temporarily")),
472 buf, "There is no spoon...");
477 AST_RWLIST_UNLOCK(&uri_redirects);
483 /* We want requests to start with the (optional) prefix and '/' */
485 if (!strncasecmp(uri, prefix, l) && uri[l] == '/') {
487 /* scan registered uris to see if we match one. */
488 AST_RWLIST_RDLOCK(&uris);
489 AST_RWLIST_TRAVERSE(&uris, urih, entry) {
490 ast_debug(2, "match request [%s] with handler [%s] len %d\n", uri, urih->uri, l);
494 if (urih->supports_get) {
499 if (urih->supports_post) {
506 l = strlen(urih->uri);
507 c = uri + l; /* candidate */
509 if (strncasecmp(urih->uri, uri, l) || /* no match */
510 (*c && *c != '/')) { /* substring */
518 if (!*c || urih->has_subtree) {
519 if (((method == AST_HTTP_GET) && urih->supports_get) ||
520 ((method == AST_HTTP_POST) && urih->supports_post)) {
529 AST_RWLIST_UNLOCK(&uris);
533 if (method == AST_HTTP_POST && !astman_is_authed(manid_from_vars(vars))) {
534 out = ast_http_error((*status = 403),
535 (*title = ast_strdup("Access Denied")),
536 NULL, "Sorry, I cannot let you do that, Dave.");
538 *static_content = urih->static_content;
539 out = urih->callback(ser, urih, uri, method, vars, headers, status, title, contentlength);
540 AST_RWLIST_UNLOCK(&uris);
541 } else if (saw_method) {
542 out = ast_http_error((*status = 404),
543 (*title = ast_strdup("Not Found")), NULL,
544 "The requested URL was not found on this server.");
546 out = ast_http_error((*status = 501),
547 (*title = ast_strdup("Not Implemented")), NULL,
548 "Attempt to use unimplemented / unsupported method");
552 ast_variables_destroy(vars);
558 #if defined(HAVE_FUNOPEN)
562 #define HOOK_T ssize_t
567 * replacement read/write functions for SSL support.
568 * We use wrappers rather than SSL_read/SSL_write directly so
569 * we can put in some debugging.
571 /*static HOOK_T ssl_read(void *cookie, char *buf, LEN_T len)
573 int i = SSL_read(cookie, buf, len-1);
577 ast_verbose("ssl read size %d returns %d <%s>\n", (int)len, i, buf);
582 static HOOK_T ssl_write(void *cookie, const char *buf, LEN_T len)
585 char *s = alloca(len+1);
586 strncpy(s, buf, len);
588 ast_verbose("ssl write size %d <%s>\n", (int)len, s);
590 return SSL_write(cookie, buf, len);
593 static int ssl_close(void *cookie)
595 close(SSL_get_fd(cookie));
596 SSL_shutdown(cookie);
602 static struct ast_variable *parse_cookies(char *cookies)
605 struct ast_variable *vars = NULL, *var;
610 while ((cur = strsep(&cookies, ";"))) {
616 if (ast_strlen_zero(name) || ast_strlen_zero(val)) {
620 name = ast_strip(name);
621 val = ast_strip_quoted(val, "\"", "\"");
623 if (ast_strlen_zero(name) || ast_strlen_zero(val)) {
628 ast_log(LOG_DEBUG, "mmm ... cookie! Name: '%s' Value: '%s'\n", name, val);
631 var = ast_variable_new(name, val, __FILE__);
639 static void *httpd_helper_thread(void *data)
643 struct ast_tcptls_session_instance *ser = data;
644 struct ast_variable *vars=NULL, *headers = NULL;
645 char *uri, *title=NULL;
646 int status = 200, contentlength = 0;
647 struct ast_str *out = NULL;
648 unsigned int static_content = 0;
650 if (!fgets(buf, sizeof(buf), ser->f)) {
654 uri = ast_skip_nonblanks(buf); /* Skip method */
659 uri = ast_skip_blanks(uri); /* Skip white space */
661 if (*uri) { /* terminate at the first blank */
662 char *c = ast_skip_nonblanks(uri);
669 /* process "Cookie: " lines */
670 while (fgets(cookie, sizeof(cookie), ser->f)) {
671 /* Trim trailing characters */
672 ast_trim_blanks(cookie);
673 if (ast_strlen_zero(cookie)) {
676 if (!strncasecmp(cookie, "Cookie: ", 8)) {
677 vars = parse_cookies(cookie);
682 out = ast_http_error(400, "Bad Request", NULL, "Invalid Request");
683 } else if (strcasecmp(buf, "post") && strcasecmp(buf, "get")) {
684 out = ast_http_error(501, "Not Implemented", NULL,
685 "Attempt to use unimplemented / unsupported method");
686 } else { /* try to serve it */
687 out = handle_uri(ser, uri, (!strcasecmp(buf, "get")) ? AST_HTTP_GET : AST_HTTP_POST,
688 &status, &title, &contentlength, &vars, headers, &static_content);
691 /* If they aren't mopped up already, clean up the cookies */
693 ast_variables_destroy(vars);
695 /* Clean up all the header information pulled as well */
697 ast_variables_destroy(headers);
701 struct timeval tv = ast_tvnow();
705 ast_strftime(timebuf, sizeof(timebuf), "%a, %d %b %Y %H:%M:%S %Z", ast_localtime(&tv, &tm, "GMT"));
708 "Server: Asterisk/%s\r\n"
710 "Connection: close\r\n"
712 status, title ? title : "OK", ast_get_version(), timebuf,
713 static_content ? "" : "Cache-Control: no-cache, no-store\r\n");
714 /* We set the no-cache headers only for dynamic content.
715 * If you want to make sure the static file you requested is not from cache,
716 * append a random variable to your GET request. Ex: 'something.html?r=109987734'
718 if (!contentlength) { /* opaque body ? just dump it hoping it is properly formatted */
719 fprintf(ser->f, "%s", out->str);
721 char *tmp = strstr(out->str, "\r\n\r\n");
724 fprintf(ser->f, "Content-length: %d\r\n", contentlength);
725 /* first write the header, then the body */
726 fwrite(out->str, 1, (tmp + 4 - out->str), ser->f);
727 fwrite(tmp + 4, 1, contentlength, ser->f);
746 * \brief Add a new URI redirect
747 * The entries in the redirect list are sorted by length, just like the list
750 static void add_redirect(const char *value)
753 struct http_uri_redirect *redirect, *cur;
754 unsigned int target_len;
755 unsigned int total_len;
757 dest = ast_strdupa(value);
758 dest = ast_skip_blanks(dest);
759 target = strsep(&dest, " ");
760 target = ast_skip_blanks(target);
761 target = strsep(&target, " "); /* trim trailing whitespace */
764 ast_log(LOG_WARNING, "Invalid redirect '%s'\n", value);
768 target_len = strlen(target) + 1;
769 total_len = sizeof(*redirect) + target_len + strlen(dest) + 1;
771 if (!(redirect = ast_calloc(1, total_len))) {
775 redirect->dest = redirect->target + target_len;
776 strcpy(redirect->target, target);
777 strcpy(redirect->dest, dest);
779 AST_RWLIST_WRLOCK(&uri_redirects);
781 target_len--; /* So we can compare directly with strlen() */
782 if (AST_RWLIST_EMPTY(&uri_redirects)
783 || strlen(AST_RWLIST_FIRST(&uri_redirects)->target) <= target_len) {
784 AST_RWLIST_INSERT_HEAD(&uri_redirects, redirect, entry);
785 AST_RWLIST_UNLOCK(&uri_redirects);
790 AST_RWLIST_TRAVERSE(&uri_redirects, cur, entry) {
791 if (AST_RWLIST_NEXT(cur, entry)
792 && strlen(AST_RWLIST_NEXT(cur, entry)->target) <= target_len) {
793 AST_RWLIST_INSERT_AFTER(&uri_redirects, cur, redirect, entry);
794 AST_RWLIST_UNLOCK(&uri_redirects);
800 AST_RWLIST_INSERT_TAIL(&uri_redirects, redirect, entry);
802 AST_RWLIST_UNLOCK(&uri_redirects);
805 static int __ast_http_load(int reload)
807 struct ast_config *cfg;
808 struct ast_variable *v;
810 int newenablestatic=0;
812 struct ast_hostent ahp;
813 char newprefix[MAX_PREFIX] = "";
814 int have_sslbindaddr = 0;
815 struct http_uri_redirect *redirect;
816 struct ast_flags config_flags = { reload ? CONFIG_FLAG_FILEUNCHANGED : 0 };
818 if ((cfg = ast_config_load2("http.conf", "http", config_flags)) == CONFIG_STATUS_FILEUNCHANGED) {
823 memset(&http_desc.sin, 0, sizeof(http_desc.sin));
824 http_desc.sin.sin_port = htons(8088);
826 memset(&https_desc.sin, 0, sizeof(https_desc.sin));
827 https_desc.sin.sin_port = htons(8089);
829 http_tls_cfg.enabled = 0;
830 if (http_tls_cfg.certfile) {
831 ast_free(http_tls_cfg.certfile);
833 http_tls_cfg.certfile = ast_strdup(AST_CERTFILE);
834 if (http_tls_cfg.cipher) {
835 ast_free(http_tls_cfg.cipher);
837 http_tls_cfg.cipher = ast_strdup("");
839 AST_RWLIST_WRLOCK(&uri_redirects);
840 while ((redirect = AST_RWLIST_REMOVE_HEAD(&uri_redirects, entry))) {
843 AST_RWLIST_UNLOCK(&uri_redirects);
846 v = ast_variable_browse(cfg, "general");
847 for (; v; v = v->next) {
848 if (!strcasecmp(v->name, "enabled")) {
849 enabled = ast_true(v->value);
850 } else if (!strcasecmp(v->name, "sslenable")) {
851 http_tls_cfg.enabled = ast_true(v->value);
852 } else if (!strcasecmp(v->name, "sslbindport")) {
853 https_desc.sin.sin_port = htons(atoi(v->value));
854 } else if (!strcasecmp(v->name, "sslcert")) {
855 ast_free(http_tls_cfg.certfile);
856 http_tls_cfg.certfile = ast_strdup(v->value);
857 } else if (!strcasecmp(v->name, "sslcipher")) {
858 ast_free(http_tls_cfg.cipher);
859 http_tls_cfg.cipher = ast_strdup(v->value);
860 } else if (!strcasecmp(v->name, "enablestatic")) {
861 newenablestatic = ast_true(v->value);
862 } else if (!strcasecmp(v->name, "bindport")) {
863 http_desc.sin.sin_port = htons(atoi(v->value));
864 } else if (!strcasecmp(v->name, "sslbindaddr")) {
865 if ((hp = ast_gethostbyname(v->value, &ahp))) {
866 memcpy(&https_desc.sin.sin_addr, hp->h_addr, sizeof(https_desc.sin.sin_addr));
867 have_sslbindaddr = 1;
869 ast_log(LOG_WARNING, "Invalid bind address '%s'\n", v->value);
871 } else if (!strcasecmp(v->name, "bindaddr")) {
872 if ((hp = ast_gethostbyname(v->value, &ahp))) {
873 memcpy(&http_desc.sin.sin_addr, hp->h_addr, sizeof(http_desc.sin.sin_addr));
875 ast_log(LOG_WARNING, "Invalid bind address '%s'\n", v->value);
877 } else if (!strcasecmp(v->name, "prefix")) {
878 if (!ast_strlen_zero(v->value)) {
880 ast_copy_string(newprefix + 1, v->value, sizeof(newprefix) - 1);
884 } else if (!strcasecmp(v->name, "redirect")) {
885 add_redirect(v->value);
887 ast_log(LOG_WARNING, "Ignoring unknown option '%s' in http.conf\n", v->name);
891 ast_config_destroy(cfg);
894 if (!have_sslbindaddr) {
895 https_desc.sin.sin_addr = http_desc.sin.sin_addr;
898 http_desc.sin.sin_family = https_desc.sin.sin_family = AF_INET;
900 if (strcmp(prefix, newprefix)) {
901 ast_copy_string(prefix, newprefix, sizeof(prefix));
903 enablestatic = newenablestatic;
904 ast_tcptls_server_start(&http_desc);
905 if (ast_ssl_setup(https_desc.tls_cfg)) {
906 ast_tcptls_server_start(&https_desc);
912 static char *handle_show_http(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
914 struct ast_http_uri *urih;
915 struct http_uri_redirect *redirect;
919 e->command = "http show status";
921 "Usage: http show status\n"
922 " Lists status of internal HTTP engine\n";
929 return CLI_SHOWUSAGE;
931 ast_cli(a->fd, "HTTP Server Status:\n");
932 ast_cli(a->fd, "Prefix: %s\n", prefix);
933 if (!http_desc.oldsin.sin_family) {
934 ast_cli(a->fd, "Server Disabled\n\n");
936 ast_cli(a->fd, "Server Enabled and Bound to %s:%d\n\n",
937 ast_inet_ntoa(http_desc.oldsin.sin_addr),
938 ntohs(http_desc.oldsin.sin_port));
939 if (http_tls_cfg.enabled) {
940 ast_cli(a->fd, "HTTPS Server Enabled and Bound to %s:%d\n\n",
941 ast_inet_ntoa(https_desc.oldsin.sin_addr),
942 ntohs(https_desc.oldsin.sin_port));
946 ast_cli(a->fd, "Enabled URI's:\n");
947 AST_RWLIST_RDLOCK(&uris);
948 if (AST_RWLIST_EMPTY(&uris)) {
949 ast_cli(a->fd, "None.\n");
951 AST_RWLIST_TRAVERSE(&uris, urih, entry) {
952 ast_cli(a->fd, "%s/%s%s => %s\n", prefix, urih->uri, (urih->has_subtree ? "/..." : ""), urih->description);
955 AST_RWLIST_UNLOCK(&uris);
957 ast_cli(a->fd, "\nEnabled Redirects:\n");
958 AST_RWLIST_RDLOCK(&uri_redirects);
959 AST_RWLIST_TRAVERSE(&uri_redirects, redirect, entry) {
960 ast_cli(a->fd, " %s => %s\n", redirect->target, redirect->dest);
962 if (AST_RWLIST_EMPTY(&uri_redirects)) {
963 ast_cli(a->fd, " None.\n");
965 AST_RWLIST_UNLOCK(&uri_redirects);
970 int ast_http_reload(void)
972 return __ast_http_load(1);
975 static struct ast_cli_entry cli_http[] = {
976 AST_CLI_DEFINE(handle_show_http, "Display HTTP server status"),
979 int ast_http_init(void)
981 ast_http_uri_link(&statusuri);
982 ast_http_uri_link(&staticuri);
983 ast_cli_register_multiple(cli_http, sizeof(cli_http) / sizeof(struct ast_cli_entry));
985 return __ast_http_load(0);