X-Git-Url: http://git.archive.openwrt.org/?a=blobdiff_plain;f=main.c;h=f61574ff9fda3a0ad10c39282a41e5d918809f74;hb=cae905876089e82d6ac8af0acc700c018d352939;hp=09c66c47c4a39b6af7e71aaeb4cc9ae7349c166f;hpb=b6d9114baa1f8323084001fd4bc44fb08f7f1b35;p=project%2Fuhttpd.git diff --git a/main.c b/main.c index 09c66c4..f61574f 100644 --- a/main.c +++ b/main.c @@ -30,6 +30,7 @@ #include "uhttpd.h" +char uh_buf[4096]; static int run_server(void) { @@ -141,13 +142,9 @@ static int usage(const char *name) " -u string URL prefix for HTTP/JSON handler\n" " -U file Override ubus socket path\n" #endif -#ifdef HAVE_CGI " -x string URL prefix for CGI handler, default is '/cgi-bin'\n" " -i .ext=path Use interpreter at path for files with the given extension\n" -#endif -#if defined(HAVE_CGI) || defined(HAVE_LUA) || defined(HAVE_UBUS) " -t seconds CGI, Lua and UBUS script timeout in seconds, default is 60\n" -#endif " -T seconds Network timeout in seconds, default is 30\n" " -d string URL decode given string\n" " -r string Specify basic auth realm\n" @@ -159,9 +156,13 @@ static int usage(const char *name) static void init_defaults(void) { + conf.script_timeout = 60; conf.network_timeout = 30; conf.http_keepalive = 0; /* fixme */ conf.max_requests = 3; + conf.realm = "Protected Area"; + conf.cgi_prefix = "/cgi-bin"; + conf.cgi_path = "/sbin:/usr/sbin:/bin:/usr/bin"; uh_index_add("index.html"); uh_index_add("index.htm"); @@ -169,6 +170,21 @@ static void init_defaults(void) uh_index_add("default.htm"); } +static void fixup_prefix(char *str) +{ + int len; + + if (!str || !str[0]) + return; + + len = strlen(str) - 1; + + while (len > 0 && str[len] == '/') + len--; + + str[len + 1] = 0; +} + int main(int argc, char **argv) { bool nofork = false; @@ -177,6 +193,9 @@ int main(int argc, char **argv) int cur_fd; int bound = 0; + BUILD_BUG_ON(sizeof(uh_buf) < PATH_MAX); + + uh_dispatch_add(&cgi_dispatch); init_defaults(); signal(SIGPIPE, SIG_IGN); @@ -192,11 +211,12 @@ int main(int argc, char **argv) break; case 'h': - if (!realpath(optarg, conf.docroot)) { + if (!realpath(optarg, uh_buf)) { fprintf(stderr, "Error: Invalid directory %s: %s\n", optarg, strerror(errno)); exit(1); } + conf.docroot = strdup(uh_buf); break; case 'E': @@ -233,6 +253,23 @@ int main(int argc, char **argv) conf.max_requests = atoi(optarg); break; + case 'x': + fixup_prefix(optarg); + conf.cgi_prefix = optarg; + break; + + case 'i': + port = strchr(optarg, '='); + if (optarg[0] != '.' || !port) { + fprintf(stderr, "Error: Invalid interpreter: %s\n", + optarg); + exit(1); + } + + *port++ = 0; + uh_interpreter_add(optarg, port); + break; + case 't': conf.script_timeout = atoi(optarg); break;