tls: support specifying accepted TLS ciphers
[oweals/uhttpd.git] / main.c
1 /*
2  * uhttpd - Tiny single-threaded httpd
3  *
4  *   Copyright (C) 2010-2013 Jo-Philipp Wich <xm@subsignal.org>
5  *   Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
6  *
7  * Permission to use, copy, modify, and/or distribute this software for any
8  * purpose with or without fee is hereby granted, provided that the above
9  * copyright notice and this permission notice appear in all copies.
10  *
11  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18  */
19
20 #ifndef _DEFAULT_SOURCE
21 # define _DEFAULT_SOURCE
22 #endif
23
24 #define _BSD_SOURCE
25 #define _GNU_SOURCE
26 #define _XOPEN_SOURCE   700
27 #include <sys/types.h>
28 #include <sys/socket.h>
29 #include <netinet/in.h>
30
31 #include <getopt.h>
32 #include <errno.h>
33 #include <netdb.h>
34 #include <signal.h>
35
36 #include <libubox/usock.h>
37 #include <libubox/utils.h>
38
39 #include "uhttpd.h"
40 #include "tls.h"
41
42 char uh_buf[4096];
43
44 static int run_server(void)
45 {
46         uloop_init();
47         uh_setup_listeners();
48         uh_plugin_post_init();
49         uloop_run();
50
51         return 0;
52 }
53
54 static void uh_config_parse(void)
55 {
56         const char *path = conf.file;
57         FILE *c;
58         char line[512];
59         char *col1;
60         char *col2;
61         char *eol;
62
63         if (!path)
64                 path = "/etc/httpd.conf";
65
66         c = fopen(path, "r");
67         if (!c)
68                 return;
69
70         memset(line, 0, sizeof(line));
71
72         while (fgets(line, sizeof(line) - 1, c)) {
73                 if ((line[0] == '/') && (strchr(line, ':') != NULL)) {
74                         if (!(col1 = strchr(line, ':')) || (*col1++ = 0) ||
75                                 !(col2 = strchr(col1, ':')) || (*col2++ = 0) ||
76                                 !(eol = strchr(col2, '\n')) || (*eol++  = 0))
77                                 continue;
78
79                         uh_auth_add(line, col1, col2);
80                 } else if (!strncmp(line, "I:", 2)) {
81                         if (!(col1 = strchr(line, ':')) || (*col1++ = 0) ||
82                                 !(eol = strchr(col1, '\n')) || (*eol++  = 0))
83                                 continue;
84
85                         uh_index_add(strdup(col1));
86                 } else if (!strncmp(line, "E404:", 5)) {
87                         if (!(col1 = strchr(line, ':')) || (*col1++ = 0) ||
88                                 !(eol = strchr(col1, '\n')) || (*eol++  = 0))
89                                 continue;
90
91                         conf.error_handler = strdup(col1);
92                 }
93                 else if ((line[0] == '*') && (strchr(line, ':') != NULL)) {
94                         if (!(col1 = strchr(line, '*')) || (*col1++ = 0) ||
95                                 !(col2 = strchr(col1, ':')) || (*col2++ = 0) ||
96                                 !(eol = strchr(col2, '\n')) || (*eol++  = 0))
97                                 continue;
98
99                         uh_interpreter_add(col1, col2);
100                 }
101         }
102
103         fclose(c);
104 }
105
106 static int add_listener_arg(char *arg, bool tls)
107 {
108         char *host = NULL;
109         char *port = arg;
110         char *s;
111         int l;
112
113         s = strrchr(arg, ':');
114         if (s) {
115                 host = arg;
116                 port = s + 1;
117                 *s = 0;
118         }
119
120         if (host && *host == '[') {
121                 l = strlen(host);
122                 if (l >= 2) {
123                         host[l-1] = 0;
124                         host++;
125                 }
126         }
127
128         return uh_socket_bind(host, port, tls);
129 }
130
131 static int usage(const char *name)
132 {
133         fprintf(stderr,
134                 "Usage: %s -p [addr:]port -h docroot\n"
135                 "       -f              Do not fork to background\n"
136                 "       -c file         Configuration file, default is '/etc/httpd.conf'\n"
137                 "       -p [addr:]port  Bind to specified address and port, multiple allowed\n"
138 #ifdef HAVE_TLS
139                 "       -s [addr:]port  Like -p but provide HTTPS on this port\n"
140                 "       -C file         ASN.1 server certificate file\n"
141                 "       -K file         ASN.1 server private key file\n"
142                 "       -P ciphers      Colon separated list of allowed TLS ciphers\n"
143                 "       -q              Redirect all HTTP requests to HTTPS\n"
144 #endif
145                 "       -h directory    Specify the document root, default is '.'\n"
146                 "       -E string       Use given virtual URL as 404 error handler\n"
147                 "       -I string       Use given filename as index for directories, multiple allowed\n"
148                 "       -S              Do not follow symbolic links outside of the docroot\n"
149                 "       -D              Do not allow directory listings, send 403 instead\n"
150                 "       -R              Enable RFC1918 filter\n"
151                 "       -n count        Maximum allowed number of concurrent script requests\n"
152                 "       -N count        Maximum allowed number of concurrent connections\n"
153 #ifdef HAVE_LUA
154                 "       -l string       URL prefix for Lua handler, default is '/lua'\n"
155                 "       -L file         Lua handler script, omit to disable Lua\n"
156 #endif
157 #ifdef HAVE_UBUS
158                 "       -u string       URL prefix for UBUS via JSON-RPC handler\n"
159                 "       -U file         Override ubus socket path\n"
160                 "       -a              Do not authenticate JSON-RPC requests against UBUS session api\n"
161                 "       -X              Enable CORS HTTP headers on JSON-RPC api\n"
162 #endif
163                 "       -x string       URL prefix for CGI handler, default is '/cgi-bin'\n"
164                 "       -y alias[=path] URL alias handle\n"
165                 "       -i .ext=path    Use interpreter at path for files with the given extension\n"
166                 "       -t seconds      CGI, Lua and UBUS script timeout in seconds, default is 60\n"
167                 "       -T seconds      Network timeout in seconds, default is 30\n"
168                 "       -k seconds      HTTP keepalive timeout\n"
169                 "       -A seconds      TCP keepalive timeout, default is unset\n"
170                 "       -d string       URL decode given string\n"
171                 "       -r string       Specify basic auth realm\n"
172                 "       -m string       MD5 crypt given string\n"
173                 "\n", name
174         );
175         return 1;
176 }
177
178 static void init_defaults_pre(void)
179 {
180         conf.script_timeout = 60;
181         conf.network_timeout = 30;
182         conf.http_keepalive = 20;
183         conf.max_script_requests = 3;
184         conf.max_connections = 100;
185         conf.realm = "Protected Area";
186         conf.cgi_prefix = "/cgi-bin";
187         conf.cgi_path = "/sbin:/usr/sbin:/bin:/usr/bin";
188         INIT_LIST_HEAD(&conf.cgi_alias);
189         INIT_LIST_HEAD(&conf.lua_prefix);
190 }
191
192 static void init_defaults_post(void)
193 {
194         uh_index_add("index.html");
195         uh_index_add("index.htm");
196         uh_index_add("default.html");
197         uh_index_add("default.htm");
198
199         if (conf.cgi_prefix) {
200                 char *str = malloc(strlen(conf.docroot) + strlen(conf.cgi_prefix) + 1);
201
202                 strcpy(str, conf.docroot);
203                 strcat(str, conf.cgi_prefix);
204                 conf.cgi_docroot_path = str;
205                 conf.cgi_prefix_len = strlen(conf.cgi_prefix);
206         };
207 }
208
209 static void fixup_prefix(char *str)
210 {
211         int len;
212
213         if (!str || !str[0])
214                 return;
215
216         len = strlen(str) - 1;
217
218         while (len >= 0 && str[len] == '/')
219                 len--;
220
221         str[len + 1] = 0;
222 }
223
224 #ifdef HAVE_LUA
225 static void add_lua_prefix(const char *prefix, const char *handler) {
226         struct lua_prefix *p;
227         char *pprefix, *phandler;
228
229         p = calloc_a(sizeof(*p),
230                      &pprefix, strlen(prefix) + 1,
231                      &phandler, strlen(handler) + 1);
232
233         if (!p)
234                 return;
235
236         p->prefix = strcpy(pprefix, prefix);
237         p->handler = strcpy(phandler, handler);
238
239         list_add_tail(&p->list, &conf.lua_prefix);
240 }
241 #endif
242
243 int main(int argc, char **argv)
244 {
245         struct alias *alias;
246         bool nofork = false;
247         char *port;
248         int opt, ch;
249         int cur_fd;
250         int bound = 0;
251 #ifdef HAVE_TLS
252         int n_tls = 0;
253         const char *tls_key = NULL, *tls_crt = NULL, *tls_ciphers = NULL;
254 #endif
255 #ifdef HAVE_LUA
256         const char *lua_prefix = NULL, *lua_handler = NULL;
257 #endif
258
259         BUILD_BUG_ON(sizeof(uh_buf) < PATH_MAX);
260
261         uh_dispatch_add(&cgi_dispatch);
262         init_defaults_pre();
263         signal(SIGPIPE, SIG_IGN);
264
265         while ((ch = getopt(argc, argv, "A:aC:c:Dd:E:fh:H:I:i:K:k:L:l:m:N:n:P:p:qRr:Ss:T:t:U:u:Xx:y:")) != -1) {
266                 switch(ch) {
267 #ifdef HAVE_TLS
268                 case 'C':
269                         tls_crt = optarg;
270                         break;
271
272                 case 'K':
273                         tls_key = optarg;
274                         break;
275
276                 case 'P':
277                         tls_ciphers = optarg;
278                         break;
279
280                 case 'q':
281                         conf.tls_redirect = 1;
282                         break;
283
284                 case 's':
285                         n_tls++;
286                         /* fall through */
287 #else
288                 case 'C':
289                 case 'K':
290                 case 'P':
291                 case 'q':
292                 case 's':
293                         fprintf(stderr, "uhttpd: TLS support not compiled, "
294                                         "ignoring -%c\n", ch);
295                         break;
296 #endif
297                 case 'p':
298                         optarg = strdup(optarg);
299                         bound += add_listener_arg(optarg, (ch == 's'));
300                         break;
301
302                 case 'h':
303                         if (!realpath(optarg, uh_buf)) {
304                                 fprintf(stderr, "Error: Invalid directory %s: %s\n",
305                                                 optarg, strerror(errno));
306                                 exit(1);
307                         }
308                         conf.docroot = strdup(uh_buf);
309                         break;
310
311                 case 'H':
312                         if (uh_handler_add(optarg)) {
313                                 fprintf(stderr, "Error: Failed to load handler script %s\n",
314                                         optarg);
315                                 exit(1);
316                         }
317                         break;
318
319                 case 'E':
320                         if (optarg[0] != '/') {
321                                 fprintf(stderr, "Error: Invalid error handler: %s\n",
322                                                 optarg);
323                                 exit(1);
324                         }
325                         conf.error_handler = optarg;
326                         break;
327
328                 case 'I':
329                         if (optarg[0] == '/') {
330                                 fprintf(stderr, "Error: Invalid index page: %s\n",
331                                                 optarg);
332                                 exit(1);
333                         }
334                         uh_index_add(optarg);
335                         break;
336
337                 case 'S':
338                         conf.no_symlinks = 1;
339                         break;
340
341                 case 'D':
342                         conf.no_dirlists = 1;
343                         break;
344
345                 case 'R':
346                         conf.rfc1918_filter = 1;
347                         break;
348
349                 case 'n':
350                         conf.max_script_requests = atoi(optarg);
351                         break;
352
353                 case 'N':
354                         conf.max_connections = atoi(optarg);
355                         break;
356
357                 case 'x':
358                         fixup_prefix(optarg);
359                         conf.cgi_prefix = optarg;
360                         break;
361
362                 case 'y':
363                         alias = calloc(1, sizeof(*alias));
364                         if (!alias) {
365                                 fprintf(stderr, "Error: failed to allocate alias\n");
366                                 exit(1);
367                         }
368                         alias->alias = strdup(optarg);
369                         alias->path = strchr(alias->alias, '=');
370                         if (alias->path)
371                                 *alias->path++ = 0;
372                         list_add(&alias->list, &conf.cgi_alias);
373                         break;
374
375                 case 'i':
376                         optarg = strdup(optarg);
377                         port = strchr(optarg, '=');
378                         if (optarg[0] != '.' || !port) {
379                                 fprintf(stderr, "Error: Invalid interpreter: %s\n",
380                                                 optarg);
381                                 exit(1);
382                         }
383
384                         *port++ = 0;
385                         uh_interpreter_add(optarg, port);
386                         break;
387
388                 case 't':
389                         conf.script_timeout = atoi(optarg);
390                         break;
391
392                 case 'T':
393                         conf.network_timeout = atoi(optarg);
394                         break;
395
396                 case 'k':
397                         conf.http_keepalive = atoi(optarg);
398                         break;
399
400                 case 'A':
401                         conf.tcp_keepalive = atoi(optarg);
402                         break;
403
404                 case 'f':
405                         nofork = 1;
406                         break;
407
408                 case 'd':
409                         optarg = strdup(optarg);
410                         port = alloca(strlen(optarg) + 1);
411                         if (!port)
412                                 return -1;
413
414                         /* "decode" plus to space to retain compat */
415                         for (opt = 0; optarg[opt]; opt++)
416                                 if (optarg[opt] == '+')
417                                         optarg[opt] = ' ';
418
419                         /* opt now contains strlen(optarg) -- no need to re-scan */
420                         if (uh_urldecode(port, opt, optarg, opt) < 0) {
421                                 fprintf(stderr, "uhttpd: invalid encoding\n");
422                                 return -1;
423                         }
424
425                         printf("%s", port);
426                         return 0;
427                         break;
428
429                 /* basic auth realm */
430                 case 'r':
431                         conf.realm = optarg;
432                         break;
433
434                 /* md5 crypt */
435                 case 'm':
436                         printf("%s\n", crypt(optarg, "$1$"));
437                         return 0;
438                         break;
439
440                 /* config file */
441                 case 'c':
442                         conf.file = optarg;
443                         break;
444
445 #ifdef HAVE_LUA
446                 case 'l':
447                 case 'L':
448                         if (ch == 'l') {
449                                 if (lua_prefix)
450                                         fprintf(stderr, "uhttpd: Ignoring previous -%c %s\n",
451                                                 ch, lua_prefix);
452
453                                 lua_prefix = optarg;
454                         }
455                         else {
456                                 if (lua_handler)
457                                         fprintf(stderr, "uhttpd: Ignoring previous -%c %s\n",
458                                                 ch, lua_handler);
459
460                                 lua_handler = optarg;
461                         }
462
463                         if (lua_prefix && lua_handler) {
464                                 add_lua_prefix(lua_prefix, lua_handler);
465                                 lua_prefix = NULL;
466                                 lua_handler = NULL;
467                         }
468
469                         break;
470 #else
471                 case 'l':
472                 case 'L':
473                         fprintf(stderr, "uhttpd: Lua support not compiled, "
474                                         "ignoring -%c\n", ch);
475                         break;
476 #endif
477 #ifdef HAVE_UBUS
478                 case 'a':
479                         conf.ubus_noauth = 1;
480                         break;
481
482                 case 'u':
483                         conf.ubus_prefix = optarg;
484                         break;
485
486                 case 'U':
487                         conf.ubus_socket = optarg;
488                         break;
489
490                 case 'X':
491                         conf.ubus_cors = 1;
492                         break;
493 #else
494                 case 'a':
495                 case 'u':
496                 case 'U':
497                 case 'X':
498                         fprintf(stderr, "uhttpd: UBUS support not compiled, "
499                                         "ignoring -%c\n", ch);
500                         break;
501 #endif
502                 default:
503                         return usage(argv[0]);
504                 }
505         }
506
507         uh_config_parse();
508
509         if (!conf.docroot) {
510                 if (!realpath(".", uh_buf)) {
511                         fprintf(stderr, "Error: Unable to determine work dir\n");
512                         return 1;
513                 }
514                 conf.docroot = strdup(uh_buf);
515         }
516
517         init_defaults_post();
518
519         if (!bound) {
520                 fprintf(stderr, "Error: No sockets bound, unable to continue\n");
521                 return 1;
522         }
523
524 #ifdef HAVE_TLS
525         if (n_tls) {
526                 if (!tls_crt || !tls_key) {
527                         fprintf(stderr, "Please specify a certificate and "
528                                         "a key file to enable SSL support\n");
529                         return 1;
530                 }
531
532                 if (uh_tls_init(tls_key, tls_crt, tls_ciphers))
533                     return 1;
534         }
535 #endif
536
537 #ifdef HAVE_LUA
538         if (lua_handler || lua_prefix) {
539                 fprintf(stderr, "Need handler and prefix to enable Lua support\n");
540                 return 1;
541         }
542
543         if (!list_empty(&conf.lua_prefix) && uh_plugin_init("uhttpd_lua.so"))
544                 return 1;
545 #endif
546 #ifdef HAVE_UBUS
547         if (conf.ubus_prefix && uh_plugin_init("uhttpd_ubus.so"))
548                 return 1;
549 #endif
550
551         /* fork (if not disabled) */
552         if (!nofork) {
553                 switch (fork()) {
554                 case -1:
555                         perror("fork()");
556                         exit(1);
557
558                 case 0:
559                         /* daemon setup */
560                         if (chdir("/"))
561                                 perror("chdir()");
562
563                         cur_fd = open("/dev/null", O_WRONLY);
564                         if (cur_fd > 0) {
565                                 dup2(cur_fd, 0);
566                                 dup2(cur_fd, 1);
567                                 dup2(cur_fd, 2);
568                         }
569
570                         break;
571
572                 default:
573                         exit(0);
574                 }
575         }
576
577         return run_server();
578 }