httpd: LC_TIME locale _must_ be POSIX to httpd! We speak over the net!
[oweals/busybox.git] / networking / httpd.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * httpd implementation for busybox
4  *
5  * Copyright (C) 2002,2003 Glenn Engel <glenne@engel.org>
6  * Copyright (C) 2003-2006 Vladimir Oleynik <dzo@simtreas.ru>
7  *
8  * simplify patch stolen from libbb without using strdup
9  *
10  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
11  *
12  *****************************************************************************
13  *
14  * Typical usage:
15  *   for non root user
16  * httpd -p 8080 -h $HOME/public_html
17  *   or for daemon start from rc script with uid=0:
18  * httpd -u www
19  * This is equivalent if www user have uid=80 to
20  * httpd -p 80 -u 80 -h /www -c /etc/httpd.conf -r "Web Server Authentication"
21  *
22  *
23  * When a url contains "cgi-bin" it is assumed to be a cgi script.  The
24  * server changes directory to the location of the script and executes it
25  * after setting QUERY_STRING and other environment variables.
26  *
27  * The server can also be invoked as a url arg decoder and html text encoder
28  * as follows:
29  *  foo=`httpd -d $foo`           # decode "Hello%20World" as "Hello World"
30  *  bar=`httpd -e "<Hello World>"`  # encode as "&#60Hello&#32World&#62"
31  * Note that url encoding for arguments is not the same as html encoding for
32  * presentation.  -d decodes a url-encoded argument while -e encodes in html
33  * for page display.
34  *
35  * httpd.conf has the following format:
36  *
37  * A:172.20.         # Allow address from 172.20.0.0/16
38  * A:10.0.0.0/25     # Allow any address from 10.0.0.0-10.0.0.127
39  * A:10.0.0.0/255.255.255.128  # Allow any address that previous set
40  * A:127.0.0.1       # Allow local loopback connections
41  * D:*               # Deny from other IP connections
42  * /cgi-bin:foo:bar  # Require user foo, pwd bar on urls starting with /cgi-bin/
43  * /adm:admin:setup  # Require user admin, pwd setup on urls starting with /adm/
44  * /adm:toor:PaSsWd  # or user toor, pwd PaSsWd on urls starting with /adm/
45  * .au:audio/basic   # additional mime type for audio.au files
46  * *.php:/path/php   # running cgi.php scripts through an interpreter
47  *
48  * A/D may be as a/d or allow/deny - first char case insensitive
49  * Deny IP rules take precedence over allow rules.
50  *
51  *
52  * The Deny/Allow IP logic:
53  *
54  *  - Default is to allow all.  No addresses are denied unless
55  *         denied with a D: rule.
56  *  - Order of Deny/Allow rules is significant
57  *  - Deny rules take precedence over allow rules.
58  *  - If a deny all rule (D:*) is used it acts as a catch-all for unmatched
59  *       addresses.
60  *  - Specification of Allow all (A:*) is a no-op
61  *
62  * Example:
63  *   1. Allow only specified addresses
64  *     A:172.20          # Allow any address that begins with 172.20.
65  *     A:10.10.          # Allow any address that begins with 10.10.
66  *     A:127.0.0.1       # Allow local loopback connections
67  *     D:*               # Deny from other IP connections
68  *
69  *   2. Only deny specified addresses
70  *     D:1.2.3.        # deny from 1.2.3.0 - 1.2.3.255
71  *     D:2.3.4.        # deny from 2.3.4.0 - 2.3.4.255
72  *     A:*             # (optional line added for clarity)
73  *
74  * If a sub directory contains a config file it is parsed and merged with
75  * any existing settings as if it was appended to the original configuration.
76  *
77  * subdir paths are relative to the containing subdir and thus cannot
78  * affect the parent rules.
79  *
80  * Note that since the sub dir is parsed in the forked thread servicing the
81  * subdir http request, any merge is discarded when the process exits.  As a
82  * result, the subdir settings only have a lifetime of a single request.
83  *
84  *
85  * If -c is not set, an attempt will be made to open the default
86  * root configuration file.  If -c is set and the file is not found, the
87  * server exits with an error.
88  *
89 */
90
91
92 #include "busybox.h"
93
94
95 static const char httpdVersion[] = "busybox httpd/1.35 6-Oct-2004";
96 static const char default_path_httpd_conf[] = "/etc";
97 static const char httpd_conf[] = "httpd.conf";
98 static const char home[] = "./";
99
100 #define TIMEOUT 60
101
102 // Note: busybox xfuncs are not used because we want the server to keep running
103 //       if something bad happens due to a malformed user request.
104 //       As a result, all memory allocation after daemonize
105 //       is checked rigorously
106
107 //#define DEBUG 1
108
109 #ifndef DEBUG
110 # define DEBUG 0
111 #endif
112
113 #define MAX_MEMORY_BUFF 8192    /* IO buffer */
114
115 typedef struct HT_ACCESS {
116         char *after_colon;
117         struct HT_ACCESS *next;
118         char before_colon[1];         /* really bigger, must last */
119 } Htaccess;
120
121 typedef struct HT_ACCESS_IP {
122         unsigned int ip;
123         unsigned int mask;
124         int allow_deny;
125         struct HT_ACCESS_IP *next;
126 } Htaccess_IP;
127
128 typedef struct {
129         char buf[MAX_MEMORY_BUFF];
130
131         USE_FEATURE_HTTPD_BASIC_AUTH(const char *realm;)
132         USE_FEATURE_HTTPD_BASIC_AUTH(char *remoteuser;)
133
134         const char *query;
135
136         USE_FEATURE_HTTPD_CGI(char *referer;)
137
138         const char *configFile;
139
140         unsigned int rmt_ip;
141 #if ENABLE_FEATURE_HTTPD_CGI || DEBUG
142         char rmt_ip_str[16];     /* for set env REMOTE_ADDR */
143 #endif
144         unsigned port;           /* server initial port and for
145                                                       set env REMOTE_PORT */
146         const char *found_mime_type;
147         const char *found_moved_temporarily;
148
149         off_t ContentLength;          /* -1 - unknown */
150         time_t last_mod;
151
152         Htaccess_IP *ip_a_d;          /* config allow/deny lines */
153         int flg_deny_all;
154 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
155         Htaccess *auth;               /* config user:password lines */
156 #endif
157 #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
158         Htaccess *mime_a;             /* config mime types */
159 #endif
160
161         int server_socket;
162         int accepted_socket;
163         volatile int alarm_signaled;
164
165 #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
166         Htaccess *script_i;           /* config script interpreters */
167 #endif
168 } HttpdConfig;
169
170 static HttpdConfig *config;
171
172 static const char request_GET[] = "GET";    /* size algorithmic optimize */
173
174 static const char* const suffixTable [] = {
175 /* Warning: shorted equivalent suffix in one line must be first */
176         ".htm.html", "text/html",
177         ".jpg.jpeg", "image/jpeg",
178         ".gif", "image/gif",
179         ".png", "image/png",
180         ".txt.h.c.cc.cpp", "text/plain",
181         ".css", "text/css",
182         ".wav", "audio/wav",
183         ".avi", "video/x-msvideo",
184         ".qt.mov", "video/quicktime",
185         ".mpe.mpeg", "video/mpeg",
186         ".mid.midi", "audio/midi",
187         ".mp3", "audio/mpeg",
188 #if 0                        /* unpopular */
189         ".au", "audio/basic",
190         ".pac", "application/x-ns-proxy-autoconfig",
191         ".vrml.wrl", "model/vrml",
192 #endif
193         0, "application/octet-stream" /* default */
194 };
195
196 typedef enum {
197         HTTP_OK = 200,
198         HTTP_MOVED_TEMPORARILY = 302,
199         HTTP_BAD_REQUEST = 400,       /* malformed syntax */
200         HTTP_UNAUTHORIZED = 401, /* authentication needed, respond with auth hdr */
201         HTTP_NOT_FOUND = 404,
202         HTTP_FORBIDDEN = 403,
203         HTTP_REQUEST_TIMEOUT = 408,
204         HTTP_NOT_IMPLEMENTED = 501,   /* used for unrecognized requests */
205         HTTP_INTERNAL_SERVER_ERROR = 500,
206 #if 0 /* future use */
207         HTTP_CONTINUE = 100,
208         HTTP_SWITCHING_PROTOCOLS = 101,
209         HTTP_CREATED = 201,
210         HTTP_ACCEPTED = 202,
211         HTTP_NON_AUTHORITATIVE_INFO = 203,
212         HTTP_NO_CONTENT = 204,
213         HTTP_MULTIPLE_CHOICES = 300,
214         HTTP_MOVED_PERMANENTLY = 301,
215         HTTP_NOT_MODIFIED = 304,
216         HTTP_PAYMENT_REQUIRED = 402,
217         HTTP_BAD_GATEWAY = 502,
218         HTTP_SERVICE_UNAVAILABLE = 503, /* overload, maintenance */
219         HTTP_RESPONSE_SETSIZE = 0xffffffff
220 #endif
221 } HttpResponseNum;
222
223 typedef struct {
224         HttpResponseNum type;
225         const char *name;
226         const char *info;
227 } HttpEnumString;
228
229 static const HttpEnumString httpResponseNames[] = {
230         { HTTP_OK, "OK", NULL },
231         { HTTP_MOVED_TEMPORARILY, "Found", "Directories must end with a slash." },
232         { HTTP_REQUEST_TIMEOUT, "Request Timeout",
233                 "No request appeared within a reasonable time period." },
234         { HTTP_NOT_IMPLEMENTED, "Not Implemented",
235                 "The requested method is not recognized by this server." },
236 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
237         { HTTP_UNAUTHORIZED, "Unauthorized", "" },
238 #endif
239         { HTTP_NOT_FOUND, "Not Found",
240                 "The requested URL was not found on this server." },
241         { HTTP_BAD_REQUEST, "Bad Request", "Unsupported method." },
242         { HTTP_FORBIDDEN, "Forbidden", "" },
243         { HTTP_INTERNAL_SERVER_ERROR, "Internal Server Error",
244                 "Internal Server Error" },
245 #if 0                               /* not implemented */
246         { HTTP_CREATED, "Created" },
247         { HTTP_ACCEPTED, "Accepted" },
248         { HTTP_NO_CONTENT, "No Content" },
249         { HTTP_MULTIPLE_CHOICES, "Multiple Choices" },
250         { HTTP_MOVED_PERMANENTLY, "Moved Permanently" },
251         { HTTP_NOT_MODIFIED, "Not Modified" },
252         { HTTP_BAD_GATEWAY, "Bad Gateway", "" },
253         { HTTP_SERVICE_UNAVAILABLE, "Service Unavailable", "" },
254 #endif
255 };
256
257
258 static const char RFC1123FMT[] = "%a, %d %b %Y %H:%M:%S GMT";
259
260
261 #define STRNCASECMP(a, str) strncasecmp((a), (str), sizeof(str)-1)
262
263
264 static int scan_ip(const char **ep, unsigned int *ip, unsigned char endc)
265 {
266         const char *p = *ep;
267         int auto_mask = 8;
268         int j;
269
270         *ip = 0;
271         for (j = 0; j < 4; j++) {
272                 unsigned int octet;
273
274                 if ((*p < '0' || *p > '9') && (*p != '/' || j == 0) && *p != 0)
275                         return -auto_mask;
276                 octet = 0;
277                 while (*p >= '0' && *p <= '9') {
278                         octet *= 10;
279                         octet += *p - '0';
280                         if (octet > 255)
281                                 return -auto_mask;
282                         p++;
283                 }
284                 if (*p == '.')
285                         p++;
286                 if (*p != '/' && *p != 0)
287                         auto_mask += 8;
288                 *ip = ((*ip) << 8) | octet;
289         }
290         if (*p != 0) {
291                 if (*p != endc)
292                         return -auto_mask;
293                 p++;
294                 if (*p == 0)
295                         return -auto_mask;
296         }
297         *ep = p;
298         return auto_mask;
299 }
300
301 static int scan_ip_mask(const char *ipm, unsigned int *ip, unsigned int *mask)
302 {
303         int i;
304         unsigned int msk;
305
306         i = scan_ip(&ipm, ip, '/');
307         if (i < 0)
308                 return i;
309         if (*ipm) {
310                 const char *p = ipm;
311
312                 i = 0;
313                 while (*p) {
314                         if (*p < '0' || *p > '9') {
315                                 if (*p == '.') {
316                                         i = scan_ip(&ipm, mask, 0);
317                                         return i != 32;
318                                 }
319                                 return -1;
320                         }
321                         i *= 10;
322                         i += *p - '0';
323                         p++;
324                 }
325         }
326         if (i > 32 || i < 0)
327                 return -1;
328         msk = 0x80000000;
329         *mask = 0;
330         while (i > 0) {
331                 *mask |= msk;
332                 msk >>= 1;
333                 i--;
334         }
335         return 0;
336 }
337
338 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH || ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
339 static void free_config_lines(Htaccess **pprev)
340 {
341         Htaccess *prev = *pprev;
342
343         while (prev) {
344                 Htaccess *cur = prev;
345
346                 prev = cur->next;
347                 free(cur);
348         }
349         *pprev = NULL;
350 }
351 #endif
352
353 /* flag */
354 #define FIRST_PARSE          0
355 #define SUBDIR_PARSE         1
356 #define SIGNALED_PARSE       2
357 #define FIND_FROM_HTTPD_ROOT 3
358 /****************************************************************************
359  *
360  > $Function: parse_conf()
361  *
362  * $Description: parse configuration file into in-memory linked list.
363  *
364  * The first non-white character is examined to determine if the config line
365  * is one of the following:
366  *    .ext:mime/type   # new mime type not compiled into httpd
367  *    [adAD]:from      # ip address allow/deny, * for wildcard
368  *    /path:user:pass  # username/password
369  *
370  * Any previous IP rules are discarded.
371  * If the flag argument is not SUBDIR_PARSE then all /path and mime rules
372  * are also discarded.  That is, previous settings are retained if flag is
373  * SUBDIR_PARSE.
374  *
375  * $Parameters:
376  *      (const char *) path . . null for ip address checks, path for password
377  *                              checks.
378  *      (int) flag  . . . . . . the source of the parse request.
379  *
380  * $Return: (None)
381  *
382  ****************************************************************************/
383 static void parse_conf(const char *path, int flag)
384 {
385         FILE *f;
386 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
387         Htaccess *prev, *cur;
388 #elif ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
389         Htaccess *cur;
390 #endif
391
392         const char *cf = config->configFile;
393         char buf[160];
394         char *p0 = NULL;
395         char *c, *p;
396
397         /* free previous ip setup if present */
398         Htaccess_IP *pip = config->ip_a_d;
399
400         while (pip) {
401                 Htaccess_IP *cur_ipl = pip;
402
403                 pip = cur_ipl->next;
404                 free(cur_ipl);
405         }
406         config->ip_a_d = NULL;
407
408         config->flg_deny_all = 0;
409
410 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH || ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES || ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
411         /* retain previous auth and mime config only for subdir parse */
412         if (flag != SUBDIR_PARSE) {
413 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
414                 free_config_lines(&config->auth);
415 #endif
416 #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
417                 free_config_lines(&config->mime_a);
418 #endif
419 #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
420                 free_config_lines(&config->script_i);
421 #endif
422         }
423 #endif
424
425         if (flag == SUBDIR_PARSE || cf == NULL) {
426                 cf = alloca(strlen(path) + sizeof(httpd_conf) + 2);
427                 if (cf == NULL) {
428                         if (flag == FIRST_PARSE)
429                         bb_error_msg_and_die(bb_msg_memory_exhausted);
430                         return;
431                 }
432                 sprintf((char *)cf, "%s/%s", path, httpd_conf);
433         }
434
435         while ((f = fopen(cf, "r")) == NULL) {
436                 if (flag == SUBDIR_PARSE || flag == FIND_FROM_HTTPD_ROOT) {
437                         /* config file not found, no changes to config */
438                         return;
439                 }
440                 if (config->configFile && flag == FIRST_PARSE) /* if -c option given */
441                         bb_perror_msg_and_die("%s", cf);
442                 flag = FIND_FROM_HTTPD_ROOT;
443                 cf = httpd_conf;
444         }
445
446 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
447                 prev = config->auth;
448 #endif
449                 /* This could stand some work */
450         while ((p0 = fgets(buf, sizeof(buf), f)) != NULL) {
451                 c = NULL;
452                 for (p = p0; *p0 != 0 && *p0 != '#'; p0++) {
453                         if (!isspace(*p0)) {
454                                 *p++ = *p0;
455                                 if (*p0 == ':' && c == NULL)
456                                 c = p;
457                         }
458                 }
459                 *p = 0;
460
461                 /* test for empty or strange line */
462                 if (c == NULL || *c == 0)
463                         continue;
464                 p0 = buf;
465                 if (*p0 == 'd')
466                                 *p0 = 'D';
467                 if (*c == '*') {
468                         if (*p0 == 'D') {
469                                 /* memorize deny all */
470                                 config->flg_deny_all++;
471                         }
472                         /* skip default other "word:*" config lines */
473                         continue;
474                 }
475
476                 if (*p0 == 'a')
477                         *p0 = 'A';
478                 else if (*p0 != 'D' && *p0 != 'A'
479 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
480                          && *p0 != '/'
481 #endif
482 #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
483                          && *p0 != '.'
484 #endif
485 #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
486                          && *p0 != '*'
487 #endif
488                         )
489                          continue;
490                 if (*p0 == 'A' || *p0 == 'D') {
491                         /* storing current config IP line */
492                         pip = calloc(1, sizeof(Htaccess_IP));
493                         if (pip) {
494                                 if (scan_ip_mask(c, &(pip->ip), &(pip->mask))) {
495                                         /* syntax IP{/mask} error detected, protect all */
496                                         *p0 = 'D';
497                                         pip->mask = 0;
498                                 }
499                                 pip->allow_deny = *p0;
500                                 if (*p0 == 'D') {
501                                         /* Deny:form_IP move top */
502                                         pip->next = config->ip_a_d;
503                                         config->ip_a_d = pip;
504                                 } else {
505                                         /* add to bottom A:form_IP config line */
506                                         Htaccess_IP *prev_IP = config->ip_a_d;
507
508                                         if (prev_IP == NULL) {
509                                                 config->ip_a_d = pip;
510                                         } else {
511                                                 while (prev_IP->next)
512                                                         prev_IP = prev_IP->next;
513                                                 prev_IP->next = pip;
514                                         }
515                                 }
516                         }
517                         continue;
518                 }
519 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
520                 if (*p0 == '/') {
521                         /* make full path from httpd root / curent_path / config_line_path */
522                         cf = flag == SUBDIR_PARSE ? path : "";
523                         p0 = malloc(strlen(cf) + (c - buf) + 2 + strlen(c));
524                         if (p0 == NULL)
525                                 continue;
526                         c[-1] = 0;
527                         sprintf(p0, "/%s%s", cf, buf);
528
529                         /* another call bb_simplify_path */
530                         cf = p = p0;
531
532                         do {
533                                 if (*p == '/') {
534                                         if (*cf == '/') {    /* skip duplicate (or initial) slash */
535                                                 continue;
536                                         } else if (*cf == '.') {
537                                                 if (cf[1] == '/' || cf[1] == 0) { /* remove extra '.' */
538                                                         continue;
539                                                 } else if ((cf[1] == '.') && (cf[2] == '/' || cf[2] == 0)) {
540                                                         ++cf;
541                                                         if (p > p0) {
542                                                                 while (*--p != '/') /* omit previous dir */;
543                                                         }
544                                                         continue;
545                                                 }
546                                         }
547                                 }
548                                 *++p = *cf;
549                         } while (*++cf);
550
551                         if ((p == p0) || (*p != '/')) {      /* not a trailing slash */
552                                 ++p;                             /* so keep last character */
553                         }
554                         *p = 0;
555                         sprintf(p0, "%s:%s", p0, c);
556                 }
557 #endif
558
559 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH || ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES || ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
560                 /* storing current config line */
561                 cur = calloc(1, sizeof(Htaccess) + strlen(p0));
562                 if (cur) {
563                         cf = strcpy(cur->before_colon, p0);
564                         c = strchr(cf, ':');
565                         *c++ = 0;
566                         cur->after_colon = c;
567 #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
568                         if (*cf == '.') {
569                                 /* config .mime line move top for overwrite previous */
570                                 cur->next = config->mime_a;
571                                 config->mime_a = cur;
572                                 continue;
573                         }
574 #endif
575 #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
576                         if (*cf == '*' && cf[1] == '.') {
577                                 /* config script interpreter line move top for overwrite previous */
578                                 cur->next = config->script_i;
579                                 config->script_i = cur;
580                                 continue;
581                         }
582 #endif
583 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
584                         free(p0);
585                         if (prev == NULL) {
586                                 /* first line */
587                                 config->auth = prev = cur;
588                         } else {
589                                 /* sort path, if current lenght eq or bigger then move up */
590                                 Htaccess *prev_hti = config->auth;
591                                 size_t l = strlen(cf);
592                                 Htaccess *hti;
593
594                                 for (hti = prev_hti; hti; hti = hti->next) {
595                                         if (l >= strlen(hti->before_colon)) {
596                                                 /* insert before hti */
597                                                 cur->next = hti;
598                                                 if (prev_hti != hti) {
599                                                         prev_hti->next = cur;
600                                                 } else {
601                                                         /* insert as top */
602                                                         config->auth = cur;
603                                                 }
604                                                 break;
605                                         }
606                                         if (prev_hti != hti)
607                                                 prev_hti = prev_hti->next;
608                                 }
609                                 if (!hti) {       /* not inserted, add to bottom */
610                                         prev->next = cur;
611                                         prev = cur;
612                                 }
613                         }
614 #endif
615                 }
616 #endif
617          }
618          fclose(f);
619 }
620
621 #if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
622 /****************************************************************************
623  *
624  > $Function: encodeString()
625  *
626  * $Description: Given a string, html encode special characters.
627  *   This is used for the -e command line option to provide an easy way
628  *   for scripts to encode result data without confusing browsers.  The
629  *   returned string pointer is memory allocated by malloc().
630  *
631  * $Parameters:
632  *      (const char *) string . . The first string to encode.
633  *
634  * $Return: (char *) . . . .. . . A pointer to the encoded string.
635  *
636  * $Errors: Returns a null string ("") if memory is not available.
637  *
638  ****************************************************************************/
639 static char *encodeString(const char *string)
640 {
641         /* take the simple route and encode everything */
642         /* could possibly scan once to get length.     */
643         int len = strlen(string);
644         char *out = malloc(len * 6 + 1);
645         char *p = out;
646         char ch;
647
648         if (!out) return "";
649         while ((ch = *string++)) {
650                 // very simple check for what to encode
651                 if (isalnum(ch)) *p++ = ch;
652                 else p += sprintf(p, "&#%d;", (unsigned char) ch);
653         }
654         *p = 0;
655         return out;
656 }
657 #endif          /* FEATURE_HTTPD_ENCODE_URL_STR */
658
659 /****************************************************************************
660  *
661  > $Function: decodeString()
662  *
663  * $Description: Given a URL encoded string, convert it to plain ascii.
664  *   Since decoding always makes strings smaller, the decode is done in-place.
665  *   Thus, callers should strdup() the argument if they do not want the
666  *   argument modified.  The return is the original pointer, allowing this
667  *   function to be easily used as arguments to other functions.
668  *
669  * $Parameters:
670  *      (char *) string . . . The first string to decode.
671  *      (int)    flag   . . . 1 if require decode '+' as ' ' for CGI
672  *
673  * $Return: (char *)  . . . . A pointer to the decoded string (same as input).
674  *
675  * $Errors: None
676  *
677  ****************************************************************************/
678 static char *decodeString(char *orig, int flag_plus_to_space)
679 {
680         /* note that decoded string is always shorter than original */
681         char *string = orig;
682         char *ptr = string;
683
684         while (*ptr) {
685                 if (*ptr == '+' && flag_plus_to_space) { *string++ = ' '; ptr++; }
686                 else if (*ptr != '%') *string++ = *ptr++;
687                 else {
688                         unsigned int value1, value2;
689
690                         ptr++;
691                         if (sscanf(ptr, "%1X", &value1) != 1 ||
692                                                     sscanf(ptr+1, "%1X", &value2) != 1) {
693                                 if (!flag_plus_to_space)
694                                         return NULL;
695                                 *string++ = '%';
696                         } else {
697                                 value1 = value1 * 16 + value2;
698                                 if (value1 == '/' || value1 == 0)
699                                         return orig+1;
700                                 *string++ = value1;
701                                 ptr += 2;
702                         }
703                 }
704         }
705         *string = '\0';
706         return orig;
707 }
708
709
710 #if ENABLE_FEATURE_HTTPD_CGI
711 /****************************************************************************
712  * setenv helpers
713  ****************************************************************************/
714 static void setenv1(const char *name, const char *value)
715 {
716         if (!value)
717                 value = "";
718         setenv(name, value, 1);
719 }
720 static void setenv_long(const char *name, long value)
721 {
722         char buf[sizeof(value)*3 + 1];
723         sprintf(buf, "%ld", value);
724         setenv(name, buf, 1);
725 }
726 #endif
727
728 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
729 /****************************************************************************
730  *
731  > $Function: decodeBase64()
732  *
733  > $Description: Decode a base 64 data stream as per rfc1521.
734  *    Note that the rfc states that none base64 chars are to be ignored.
735  *    Since the decode always results in a shorter size than the input, it is
736  *    OK to pass the input arg as an output arg.
737  *
738  * $Parameter:
739  *      (char *) Data . . . . A pointer to a base64 encoded string.
740  *                            Where to place the decoded data.
741  *
742  * $Return: void
743  *
744  * $Errors: None
745  *
746  ****************************************************************************/
747 static void decodeBase64(char *Data)
748 {
749
750         const unsigned char *in = (const unsigned char *)Data;
751         // The decoded size will be at most 3/4 the size of the encoded
752         unsigned long ch = 0;
753         int i = 0;
754
755         while (*in) {
756                 int t = *in++;
757
758                 if (t >= '0' && t <= '9')
759                         t = t - '0' + 52;
760                 else if (t >= 'A' && t <= 'Z')
761                         t = t - 'A';
762                 else if (t >= 'a' && t <= 'z')
763                         t = t - 'a' + 26;
764                 else if (t == '+')
765                         t = 62;
766                 else if (t == '/')
767                         t = 63;
768                 else if (t == '=')
769                         t = 0;
770                 else
771                         continue;
772
773                 ch = (ch << 6) | t;
774                 i++;
775                 if (i == 4) {
776                         *Data++ = (char) (ch >> 16);
777                         *Data++ = (char) (ch >> 8);
778                         *Data++ = (char) ch;
779                         i = 0;
780                 }
781         }
782         *Data = 0;
783 }
784 #endif
785
786
787 /****************************************************************************
788  *
789  > $Function: openServer()
790  *
791  * $Description: create a listen server socket on the designated port.
792  *
793  * $Return: (int)  . . . A connection socket. -1 for errors.
794  *
795  * $Errors: None
796  *
797  ****************************************************************************/
798 static int openServer(void)
799 {
800         struct sockaddr_in lsocket;
801         int fd;
802         int on = 1;
803
804         /* create the socket right now */
805         /* inet_addr() returns a value that is already in network order */
806         memset(&lsocket, 0, sizeof(lsocket));
807         lsocket.sin_family = AF_INET;
808         lsocket.sin_addr.s_addr = INADDR_ANY;
809         lsocket.sin_port = htons(config->port);
810         fd = xsocket(AF_INET, SOCK_STREAM, 0);
811         /* tell the OS it's OK to reuse a previous address even though */
812         /* it may still be in a close down state.  Allows bind to succeed. */
813 #ifdef SO_REUSEPORT
814         setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, (void *)&on, sizeof(on));
815 #else
816         setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on));
817 #endif
818         xbind(fd, (struct sockaddr *)&lsocket, sizeof(lsocket));
819         xlisten(fd, 9);
820         signal(SIGCHLD, SIG_IGN);   /* prevent zombie (defunct) processes */
821         return fd;
822 }
823
824 /****************************************************************************
825  *
826  > $Function: sendHeaders()
827  *
828  * $Description: Create and send HTTP response headers.
829  *   The arguments are combined and sent as one write operation.  Note that
830  *   IE will puke big-time if the headers are not sent in one packet and the
831  *   second packet is delayed for any reason.
832  *
833  * $Parameter:
834  *      (HttpResponseNum) responseNum . . . The result code to send.
835  *
836  * $Return: (int)  . . . . writing errors
837  *
838  ****************************************************************************/
839 static int sendHeaders(HttpResponseNum responseNum)
840 {
841         char *buf = config->buf;
842         const char *responseString = "";
843         const char *infoString = 0;
844         const char *mime_type;
845         unsigned int i;
846         time_t timer = time(0);
847         char timeStr[80];
848         int len;
849         enum {
850                 numNames = sizeof(httpResponseNames) / sizeof(httpResponseNames[0])
851         };
852
853         for (i = 0; i < numNames; i++) {
854                 if (httpResponseNames[i].type == responseNum) {
855                         responseString = httpResponseNames[i].name;
856                         infoString = httpResponseNames[i].info;
857                         break;
858                 }
859         }
860         /* error message is HTML */
861         mime_type = responseNum == HTTP_OK ?
862                                 config->found_mime_type : "text/html";
863
864         /* emit the current date */
865         strftime(timeStr, sizeof(timeStr), RFC1123FMT, gmtime(&timer));
866         len = sprintf(buf,
867                 "HTTP/1.0 %d %s\r\nContent-type: %s\r\n"
868                 "Date: %s\r\nConnection: close\r\n",
869                         responseNum, responseString, mime_type, timeStr);
870
871 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
872         if (responseNum == HTTP_UNAUTHORIZED) {
873                 len += sprintf(buf+len, "WWW-Authenticate: Basic realm=\"%s\"\r\n",
874                                                                     config->realm);
875         }
876 #endif
877         if (responseNum == HTTP_MOVED_TEMPORARILY) {
878                 len += sprintf(buf+len, "Location: %s/%s%s\r\n",
879                                 config->found_moved_temporarily,
880                                 (config->query ? "?" : ""),
881                                 (config->query ? config->query : ""));
882         }
883
884         if (config->ContentLength != -1) {    /* file */
885                 strftime(timeStr, sizeof(timeStr), RFC1123FMT, gmtime(&config->last_mod));
886                 len += sprintf(buf+len, "Last-Modified: %s\r\n%s %"OFF_FMT"\r\n",
887                                 timeStr, "Content-length:", (off_t) config->ContentLength);
888         }
889         strcat(buf, "\r\n");
890         len += 2;
891         if (infoString) {
892                 len += sprintf(buf+len,
893                                 "<HEAD><TITLE>%d %s</TITLE></HEAD>\n"
894                                 "<BODY><H1>%d %s</H1>\n%s\n</BODY>\n",
895                                 responseNum, responseString,
896                                 responseNum, responseString, infoString);
897         }
898         if (DEBUG)
899                 fprintf(stderr, "headers: '%s'\n", buf);
900         return full_write(config->accepted_socket, buf, len);
901 }
902
903 /****************************************************************************
904  *
905  > $Function: getLine()
906  *
907  * $Description: Read from the socket until an end of line char found.
908  *
909  *   Characters are read one at a time until an eol sequence is found.
910  *
911  * $Return: (int) . . . . number of characters read.  -1 if error.
912  *
913  ****************************************************************************/
914 static int getLine(void)
915 {
916         int count = 0;
917         char *buf = config->buf;
918
919         while (read(config->accepted_socket, buf + count, 1) == 1) {
920                 if (buf[count] == '\r') continue;
921                 if (buf[count] == '\n') {
922                         buf[count] = 0;
923                         return count;
924                 }
925                 if (count < (MAX_MEMORY_BUFF-1))      /* check overflow */
926                         count++;
927         }
928         if (count) return count;
929         else return -1;
930 }
931
932 #if ENABLE_FEATURE_HTTPD_CGI
933 /****************************************************************************
934  *
935  > $Function: sendCgi()
936  *
937  * $Description: Execute a CGI script and send it's stdout back
938  *
939  *   Environment variables are set up and the script is invoked with pipes
940  *   for stdin/stdout.  If a post is being done the script is fed the POST
941  *   data in addition to setting the QUERY_STRING variable (for GETs or POSTs).
942  *
943  * $Parameters:
944  *      (const char *) url . . . . . . The requested URL (with leading /).
945  *      (int bodyLen)  . . . . . . . . Length of the post body.
946  *      (const char *cookie) . . . . . For set HTTP_COOKIE.
947  *      (const char *content_type) . . For set CONTENT_TYPE.
948
949  *
950  * $Return: (char *)  . . . . A pointer to the decoded string (same as input).
951  *
952  * $Errors: None
953  *
954  ****************************************************************************/
955 static int sendCgi(const char *url,
956                 const char *request, int bodyLen, const char *cookie,
957                 const char *content_type)
958 {
959         int fromCgi[2];  /* pipe for reading data from CGI */
960         int toCgi[2];    /* pipe for sending data to CGI */
961
962         static char * argp[] = { 0, 0 };
963         int pid = 0;
964         int inFd;
965         int outFd;
966         int firstLine = 1;
967         int status;
968         size_t post_readed_size, post_readed_idx;
969
970         if (pipe(fromCgi) != 0)
971                 return 0;
972         if (pipe(toCgi) != 0)
973                 return 0;
974
975         pid = fork();
976         if (pid < 0)
977                 return 0;
978         
979         if (!pid) {
980                 /* child process */
981                 char *script;
982                 char *purl = strdup(url);
983                 char realpath_buff[MAXPATHLEN];
984
985                 if (purl == NULL)
986                         _exit(242);
987
988                 inFd = toCgi[0];
989                 outFd = fromCgi[1];
990
991                 dup2(inFd, 0);  // replace stdin with the pipe
992                 dup2(outFd, 1);  // replace stdout with the pipe
993                 if (!DEBUG)
994                         dup2(outFd, 2);  // replace stderr with the pipe
995
996                 close(toCgi[0]);
997                 close(toCgi[1]);
998                 close(fromCgi[0]);
999                 close(fromCgi[1]);
1000
1001                 close(config->accepted_socket);
1002                 close(config->server_socket);
1003
1004                 /*
1005                  * Find PATH_INFO.
1006                  */
1007                 script = purl;
1008                 while ((script = strchr(script + 1, '/')) != NULL) {
1009                         /* have script.cgi/PATH_INFO or dirs/script.cgi[/PATH_INFO] */
1010                         struct stat sb;
1011
1012                         *script = '\0';
1013                         if (is_directory(purl + 1, 1, &sb) == 0) {
1014                                 /* not directory, found script.cgi/PATH_INFO */
1015                                 *script = '/';
1016                                 break;
1017                         }
1018                         *script = '/';          /* is directory, find next '/' */
1019                 }
1020                 setenv1("PATH_INFO", script);   /* set /PATH_INFO or "" */
1021                 /* setenv1("PATH", getenv("PATH")); redundant */
1022                 setenv1("REQUEST_METHOD", request);
1023                 if (config->query) {
1024                         char *uri = alloca(strlen(purl) + 2 + strlen(config->query));
1025                         if (uri)
1026                                 sprintf(uri, "%s?%s", purl, config->query);
1027                         setenv1("REQUEST_URI", uri);
1028                 } else {
1029                         setenv1("REQUEST_URI", purl);
1030                 }
1031                 if (script != NULL)
1032                         *script = '\0';         /* cut off /PATH_INFO */
1033                  /* SCRIPT_FILENAME required by PHP in CGI mode */
1034                 if (!realpath(purl + 1, realpath_buff))
1035                         goto error_execing_cgi;
1036                 setenv1("SCRIPT_FILENAME", realpath_buff);
1037                 /* set SCRIPT_NAME as full path: /cgi-bin/dirs/script.cgi */
1038                 setenv1("SCRIPT_NAME", purl);
1039                 setenv1("QUERY_STRING", config->query);
1040                 setenv1("SERVER_SOFTWARE", httpdVersion);
1041                 putenv("SERVER_PROTOCOL=HTTP/1.0");
1042                 putenv("GATEWAY_INTERFACE=CGI/1.1");
1043                 setenv1("REMOTE_ADDR", config->rmt_ip_str);
1044 #if ENABLE_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
1045                 setenv_long("REMOTE_PORT", config->port);
1046 #endif
1047                 if (bodyLen)
1048                         setenv_long("CONTENT_LENGTH", bodyLen);
1049                 if (cookie)
1050                         setenv1("HTTP_COOKIE", cookie);
1051                 if (content_type)
1052                         setenv1("CONTENT_TYPE", content_type);
1053 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1054                 if (config->remoteuser) {
1055                         setenv1("REMOTE_USER", config->remoteuser);
1056                         putenv("AUTH_TYPE=Basic");
1057                 }
1058 #endif
1059                 if (config->referer)
1060                         setenv1("HTTP_REFERER", config->referer);
1061
1062                 /* set execve argp[0] without path */
1063                 argp[0] = strrchr(purl, '/') + 1;
1064                 /* but script argp[0] must have absolute path and chdiring to this */
1065                 script = strrchr(realpath_buff, '/');
1066                 if (!script)
1067                         goto error_execing_cgi;
1068                 *script = '\0';
1069                 if (chdir(realpath_buff) == 0) {
1070                         // now run the program.  If it fails,
1071                         // use _exit() so no destructors
1072                         // get called and make a mess.
1073 #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
1074                         char *interpr = NULL;
1075                         char *suffix = strrchr(purl, '.');
1076
1077                         if (suffix) {
1078                                 Htaccess *cur;
1079                                 for (cur = config->script_i; cur; cur = cur->next) {
1080                                         if (strcmp(cur->before_colon + 1, suffix) == 0) {
1081                                                 interpr = cur->after_colon;
1082                                                 break;
1083                                         }
1084                                 }
1085                         }
1086 #endif
1087                         *script = '/';
1088 #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
1089                         if (interpr)
1090                                 execv(interpr, argp);
1091                         else
1092 #endif
1093                                 execv(realpath_buff, argp);
1094                 }
1095  error_execing_cgi:
1096                 /* send to stdout (even if we are not from inetd) */
1097                 config->accepted_socket = 1;
1098                 sendHeaders(HTTP_NOT_FOUND);
1099                 _exit(242);
1100         } /* end child */
1101
1102         /* parent process */
1103
1104         post_readed_size = 0;
1105         post_readed_idx = 0;
1106         inFd  = fromCgi[0];
1107         outFd = toCgi[1];
1108         close(fromCgi[1]);
1109         close(toCgi[0]);
1110         signal(SIGPIPE, SIG_IGN);
1111
1112         while (1) {
1113                 fd_set readSet;
1114                 fd_set writeSet;
1115                 char wbuf[128];
1116                 int nfound;
1117                 int count;
1118
1119                 FD_ZERO(&readSet);
1120                 FD_ZERO(&writeSet);
1121                 FD_SET(inFd, &readSet);
1122                 if (bodyLen > 0 || post_readed_size > 0) {
1123                         FD_SET(outFd, &writeSet);
1124                         nfound = outFd > inFd ? outFd : inFd;
1125                         if (post_readed_size == 0) {
1126                                 FD_SET(config->accepted_socket, &readSet);
1127                                 if (nfound < config->accepted_socket)
1128                                         nfound = config->accepted_socket;
1129                         }
1130                         /* Now wait on the set of sockets! */
1131                         nfound = select(nfound + 1, &readSet, &writeSet, 0, NULL);
1132                 } else {
1133                         if (!bodyLen) {
1134                                 close(outFd);
1135                                 bodyLen = -1;
1136                         }
1137                         nfound = select(inFd + 1, &readSet, 0, 0, NULL);
1138                 }
1139
1140                 if (nfound <= 0) {
1141                         if (waitpid(pid, &status, WNOHANG) > 0) {
1142                                 close(inFd);
1143                                 if (DEBUG && WIFEXITED(status))
1144                                         bb_error_msg("piped has exited with status=%d", WEXITSTATUS(status));
1145                                 if (DEBUG && WIFSIGNALED(status))
1146                                         bb_error_msg("piped has exited with signal=%d", WTERMSIG(status));
1147                                 break;
1148                         }
1149                 } else if (post_readed_size > 0 && FD_ISSET(outFd, &writeSet)) {
1150                         count = full_write(outFd, wbuf + post_readed_idx, post_readed_size);
1151                         if (count > 0) {
1152                                 post_readed_size -= count;
1153                                 post_readed_idx += count;
1154                                 if (post_readed_size == 0)
1155                                         post_readed_idx = 0;
1156                         } else {
1157                                 post_readed_size = post_readed_idx = bodyLen = 0; /* broken pipe to CGI */
1158                         }
1159                 } else if (bodyLen > 0 && post_readed_size == 0 && FD_ISSET(config->accepted_socket, &readSet)) {
1160                         count = bodyLen > (int)sizeof(wbuf) ? (int)sizeof(wbuf) : bodyLen;
1161                         count = safe_read(config->accepted_socket, wbuf, count);
1162                         if (count > 0) {
1163                                 post_readed_size += count;
1164                                 bodyLen -= count;
1165                         } else {
1166                                 bodyLen = 0;    /* closed */
1167                         }
1168                 }
1169                 if (FD_ISSET(inFd, &readSet)) {
1170                         int s = config->accepted_socket;
1171                         char *rbuf = config->buf;
1172
1173 #ifndef PIPE_BUF
1174 # define PIPESIZE 4096          /* amount of buffering in a pipe */
1175 #else
1176 # define PIPESIZE PIPE_BUF
1177 #endif
1178 #if PIPESIZE >= MAX_MEMORY_BUFF
1179 # error "PIPESIZE >= MAX_MEMORY_BUFF"
1180 #endif
1181
1182                         /* There is something to read */
1183                         count = safe_read(inFd, rbuf, PIPESIZE);
1184                         if (count == 0)
1185                                 break;  /* closed */
1186                         if (count > 0) {
1187                                 if (firstLine) {
1188                                         rbuf[count] = 0;
1189                                         /* check to see if the user script added headers */
1190                                         if (strncmp(rbuf, "HTTP/1.0 200 OK\r\n", 4) != 0) {
1191                                                 full_write(s, "HTTP/1.0 200 OK\r\n", 17);
1192                                         }
1193                                         if (strstr(rbuf, "ontent-") == 0) {
1194                                                 full_write(s, "Content-type: text/plain\r\n\r\n", 28);
1195                                         }
1196                                         firstLine = 0;
1197                                 }
1198                                 if (full_write(s, rbuf, count) != count)
1199                                         break;
1200
1201                                 if (DEBUG)
1202                                         fprintf(stderr, "cgi read %d bytes: '%.*s'\n", count, count, rbuf);
1203                         }
1204                 }
1205         }
1206         return 0;
1207 }
1208 #endif          /* FEATURE_HTTPD_CGI */
1209
1210 /****************************************************************************
1211  *
1212  > $Function: sendFile()
1213  *
1214  * $Description: Send a file response to a HTTP request
1215  *
1216  * $Parameter:
1217  *      (const char *) url . . The URL requested.
1218  *
1219  * $Return: (int)  . . . . . . Always 0.
1220  *
1221  ****************************************************************************/
1222 static int sendFile(const char *url)
1223 {
1224         char * suffix;
1225         int  f;
1226         const char * const * table;
1227         const char * try_suffix;
1228
1229         suffix = strrchr(url, '.');
1230
1231         for (table = suffixTable; *table; table += 2)
1232                 if (suffix != NULL && (try_suffix = strstr(*table, suffix)) != 0) {
1233                         try_suffix += strlen(suffix);
1234                         if (*try_suffix == 0 || *try_suffix == '.')
1235                                 break;
1236                 }
1237         /* also, if not found, set default as "application/octet-stream";  */
1238         config->found_mime_type = table[1];
1239 #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
1240         if (suffix) {
1241                 Htaccess * cur;
1242
1243                 for (cur = config->mime_a; cur; cur = cur->next) {
1244                         if (strcmp(cur->before_colon, suffix) == 0) {
1245                                 config->found_mime_type = cur->after_colon;
1246                                 break;
1247                         }
1248                 }
1249         }
1250 #endif  /* FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES */
1251
1252         if (DEBUG)
1253                 fprintf(stderr, "sending file '%s' content-type: %s\n",
1254                         url, config->found_mime_type);
1255
1256         f = open(url, O_RDONLY);
1257         if (f >= 0) {
1258                 int count;
1259                 char *buf = config->buf;
1260
1261                 sendHeaders(HTTP_OK);
1262                 /* TODO: sendfile() */
1263                 while ((count = full_read(f, buf, MAX_MEMORY_BUFF)) > 0) {
1264                         if (full_write(config->accepted_socket, buf, count) != count)
1265                                 break;
1266                 }
1267                 close(f);
1268         } else {
1269                 if (DEBUG)
1270                         bb_perror_msg("cannot open '%s'", url);
1271                 sendHeaders(HTTP_NOT_FOUND);
1272         }
1273
1274         return 0;
1275 }
1276
1277 static int checkPermIP(void)
1278 {
1279         Htaccess_IP * cur;
1280
1281         /* This could stand some work */
1282         for (cur = config->ip_a_d; cur; cur = cur->next) {
1283                 if (DEBUG)
1284                         fprintf(stderr, "checkPermIP: '%s' ? ", config->rmt_ip_str);
1285                 if (DEBUG)
1286                         fprintf(stderr, "'%u.%u.%u.%u/%u.%u.%u.%u'\n",
1287                                 (unsigned char)(cur->ip >> 24),
1288                                 (unsigned char)(cur->ip >> 16),
1289                                 (unsigned char)(cur->ip >> 8),
1290                                                 cur->ip & 0xff,
1291                                 (unsigned char)(cur->mask >> 24),
1292                                 (unsigned char)(cur->mask >> 16),
1293                                 (unsigned char)(cur->mask >> 8),
1294                                                 cur->mask & 0xff);
1295                 if ((config->rmt_ip & cur->mask) == cur->ip)
1296                         return cur->allow_deny == 'A';   /* Allow/Deny */
1297         }
1298
1299         /* if unconfigured, return 1 - access from all */
1300         return !config->flg_deny_all;
1301 }
1302
1303 /****************************************************************************
1304  *
1305  > $Function: checkPerm()
1306  *
1307  * $Description: Check the permission file for access password protected.
1308  *
1309  *   If config file isn't present, everything is allowed.
1310  *   Entries are of the form you can see example from header source
1311  *
1312  * $Parameters:
1313  *      (const char *) path  . . . . The file path.
1314  *      (const char *) request . . . User information to validate.
1315  *
1316  * $Return: (int)  . . . . . . . . . 1 if request OK, 0 otherwise.
1317  *
1318  ****************************************************************************/
1319
1320 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1321 static int checkPerm(const char *path, const char *request)
1322 {
1323         Htaccess * cur;
1324         const char *p;
1325         const char *p0;
1326
1327         const char *prev = NULL;
1328
1329         /* This could stand some work */
1330         for (cur = config->auth; cur; cur = cur->next) {
1331                 size_t l;
1332
1333                 p0 = cur->before_colon;
1334                 if (prev != NULL && strcmp(prev, p0) != 0)
1335                         continue;       /* find next identical */
1336                 p = cur->after_colon;
1337                 if (DEBUG)
1338                         fprintf(stderr, "checkPerm: '%s' ? '%s'\n", p0, request);
1339
1340                 l = strlen(p0);
1341                 if (strncmp(p0, path, l) == 0
1342                  && (l == 1 || path[l] == '/' || path[l] == '\0')
1343                 ) {
1344                         char *u;
1345                         /* path match found.  Check request */
1346                         /* for check next /path:user:password */
1347                         prev = p0;
1348                         u = strchr(request, ':');
1349                         if (u == NULL) {
1350                                 /* bad request, ':' required */
1351                                 break;
1352                         }
1353
1354                         if (ENABLE_FEATURE_HTTPD_AUTH_MD5) {
1355                                 char *cipher;
1356                                 char *pp;
1357
1358                                 if (strncmp(p, request, u-request) != 0) {
1359                                         /* user uncompared */
1360                                         continue;
1361                                 }
1362                                 pp = strchr(p, ':');
1363                                 if (pp && pp[1] == '$' && pp[2] == '1' &&
1364                                                 pp[3] == '$' && pp[4]) {
1365                                         pp++;
1366                                         cipher = pw_encrypt(u+1, pp);
1367                                         if (strcmp(cipher, pp) == 0)
1368                                                 goto set_remoteuser_var;   /* Ok */
1369                                         /* unauthorized */
1370                                         continue;
1371                                 }
1372                         }
1373
1374                         if (strcmp(p, request) == 0) {
1375 set_remoteuser_var:
1376                                 config->remoteuser = strdup(request);
1377                                 if (config->remoteuser)
1378                                         config->remoteuser[(u - request)] = 0;
1379                                 return 1;   /* Ok */
1380                         }
1381                         /* unauthorized */
1382                 }
1383         }   /* for */
1384
1385         return prev == NULL;
1386 }
1387
1388 #endif  /* FEATURE_HTTPD_BASIC_AUTH */
1389
1390 /****************************************************************************
1391  *
1392  > $Function: handle_sigalrm()
1393  *
1394  * $Description: Handle timeouts
1395  *
1396  ****************************************************************************/
1397
1398 static void handle_sigalrm(int sig)
1399 {
1400         sendHeaders(HTTP_REQUEST_TIMEOUT);
1401         config->alarm_signaled = sig;
1402 }
1403
1404 /****************************************************************************
1405  *
1406  > $Function: handleIncoming()
1407  *
1408  * $Description: Handle an incoming http request.
1409  *
1410  ****************************************************************************/
1411 static void handleIncoming(void)
1412 {
1413         char *buf = config->buf;
1414         char *url;
1415         char *purl;
1416         int  blank = -1;
1417         char *test;
1418         struct stat sb;
1419         int ip_allowed;
1420 #if ENABLE_FEATURE_HTTPD_CGI
1421         const char *prequest = request_GET;
1422         unsigned long length = 0;
1423         char *cookie = 0;
1424         char *content_type = 0;
1425 #endif
1426         fd_set s_fd;
1427         struct timeval tv;
1428         int retval;
1429         struct sigaction sa;
1430
1431 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1432         int credentials = -1;  /* if not required this is Ok */
1433 #endif
1434
1435         sa.sa_handler = handle_sigalrm;
1436         sigemptyset(&sa.sa_mask);
1437         sa.sa_flags = 0; /* no SA_RESTART */
1438         sigaction(SIGALRM, &sa, NULL);
1439
1440         do {
1441                 int count;
1442
1443                 (void) alarm(TIMEOUT);
1444                 if (getLine() <= 0)
1445                         break;  /* closed */
1446
1447                 purl = strpbrk(buf, " \t");
1448                 if (purl == NULL) {
1449  BAD_REQUEST:
1450                         sendHeaders(HTTP_BAD_REQUEST);
1451                         break;
1452                 }
1453                 *purl = '\0';
1454 #if ENABLE_FEATURE_HTTPD_CGI
1455                 if (strcasecmp(buf, prequest) != 0) {
1456                         prequest = "POST";
1457                         if (strcasecmp(buf, prequest) != 0) {
1458                                 sendHeaders(HTTP_NOT_IMPLEMENTED);
1459                                 break;
1460                         }
1461                 }
1462 #else
1463                 if (strcasecmp(buf, request_GET) != 0) {
1464                         sendHeaders(HTTP_NOT_IMPLEMENTED);
1465                         break;
1466                 }
1467 #endif
1468                 *purl = ' ';
1469                 count = sscanf(purl, " %[^ ] HTTP/%d.%*d", buf, &blank);
1470
1471                 if (count < 1 || buf[0] != '/') {
1472                         /* Garbled request/URL */
1473                         goto BAD_REQUEST;
1474                 }
1475                 url = alloca(strlen(buf) + sizeof("/index.html"));
1476                 if (url == NULL) {
1477                         sendHeaders(HTTP_INTERNAL_SERVER_ERROR);
1478                         break;
1479                 }
1480                 strcpy(url, buf);
1481                 /* extract url args if present */
1482                 test = strchr(url, '?');
1483                 if (test) {
1484                         *test++ = '\0';
1485                         config->query = test;
1486                 }
1487
1488                 test = decodeString(url, 0);
1489                 if (test == NULL)
1490                         goto BAD_REQUEST;
1491                 /* FIXME: bug? should be "url+1"? */
1492                 if (test == (buf+1)) {
1493                         sendHeaders(HTTP_NOT_FOUND);
1494                         break;
1495                 }
1496
1497                 /* algorithm stolen from libbb bb_simplify_path(),
1498                          but don't strdup and reducing trailing slash and protect out root */
1499                 purl = test = url;
1500                 do {
1501                         if (*purl == '/') {
1502                                 /* skip duplicate (or initial) slash */
1503                                 if (*test == '/') {
1504                                         continue;
1505                                 }
1506                                 if (*test == '.') {
1507                                         /* skip extra '.' */
1508                                         if (test[1] == '/' || test[1] == 0) {
1509                                                 continue;
1510                                         } else
1511                                         /* '..': be careful */
1512                                         if (test[1] == '.' && (test[2] == '/' || test[2] == 0)) {
1513                                                 ++test;
1514                                                 if (purl == url) {
1515                                                         /* protect out root */
1516                                                         goto BAD_REQUEST;
1517                                                 }
1518                                                 while (*--purl != '/') /* omit previous dir */;
1519                                                 continue;
1520                                         }
1521                                 }
1522                         }
1523                         *++purl = *test;
1524                 } while (*++test);
1525                 *++purl = '\0';       /* so keep last character */
1526                 test = purl;          /* end ptr */
1527
1528                 /* If URL is directory, adding '/' */
1529                 if (test[-1] != '/') {
1530                         if (is_directory(url + 1, 1, &sb)) {
1531                                 config->found_moved_temporarily = url;
1532                         }
1533                 }
1534                 if (DEBUG)
1535                         fprintf(stderr, "url='%s', args=%s\n", url, config->query);
1536
1537                 test = url;
1538                 ip_allowed = checkPermIP();
1539                 while (ip_allowed && (test = strchr(test + 1, '/')) != NULL) {
1540                         /* have path1/path2 */
1541                         *test = '\0';
1542                         if (is_directory(url + 1, 1, &sb)) {
1543                                 /* may be having subdir config */
1544                                 parse_conf(url + 1, SUBDIR_PARSE);
1545                                 ip_allowed = checkPermIP();
1546                         }
1547                         *test = '/';
1548                 }
1549                 if (blank >= 0) {
1550                         /* read until blank line for HTTP version specified, else parse immediate */
1551                         while (1) {
1552                                 alarm(TIMEOUT);
1553                                 count = getLine();
1554                                 if (count <= 0)
1555                                         break;
1556
1557                                 if (DEBUG)
1558                                         fprintf(stderr, "header: '%s'\n", buf);
1559
1560 #if ENABLE_FEATURE_HTTPD_CGI
1561                                 /* try and do our best to parse more lines */
1562                                 if ((STRNCASECMP(buf, "Content-length:") == 0)) {
1563                                         /* extra read only for POST */
1564                                         if (prequest != request_GET) {
1565                                                 test = buf + sizeof("Content-length:")-1;
1566                                                 if (!test[0]) goto bail_out;
1567                                                 errno = 0;
1568                                                 /* not using strtoul: it ignores leading munis! */
1569                                                 length = strtol(test, &test, 10);
1570                                                 /* length is "ulong", but we need to pass it to int later */
1571                                                 /* so we check for negative or too large values in one go: */
1572                                                 /* (long -> ulong conv caused negatives to be seen as > INT_MAX) */
1573                                                 if (test[0] || errno || length > INT_MAX)
1574                                                         goto bail_out;
1575                                         }
1576                                 } else if ((STRNCASECMP(buf, "Cookie:") == 0)) {
1577                                         cookie = strdup(skip_whitespace(buf + sizeof("Cookie:")-1));
1578                                 } else if ((STRNCASECMP(buf, "Content-Type:") == 0)) {
1579                                         content_type = strdup(skip_whitespace(buf + sizeof("Content-Type:")-1));
1580                                 } else if ((STRNCASECMP(buf, "Referer:") == 0)) {
1581                                         config->referer = strdup(skip_whitespace(buf + sizeof("Referer:")-1));
1582                                 }
1583 #endif
1584
1585 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1586                                 if (STRNCASECMP(buf, "Authorization:") == 0) {
1587                                         /* We only allow Basic credentials.
1588                                          * It shows up as "Authorization: Basic <userid:password>" where
1589                                          * the userid:password is base64 encoded.
1590                                          */
1591                                         test = skip_whitespace(buf + sizeof("Authorization:")-1);
1592                                         if (STRNCASECMP(test, "Basic") != 0)
1593                                                 continue;
1594                                         test += sizeof("Basic")-1;
1595                                         /* decodeBase64() skips whitespace itself */
1596                                         decodeBase64(test);
1597                                         credentials = checkPerm(url, test);
1598                                 }
1599 #endif          /* FEATURE_HTTPD_BASIC_AUTH */
1600
1601                         } /* while extra header reading */
1602                 }
1603                 alarm(0);
1604                 if (config->alarm_signaled)
1605                         break;
1606
1607                 if (strcmp(strrchr(url, '/') + 1, httpd_conf) == 0 || ip_allowed == 0) {
1608                         /* protect listing [/path]/httpd_conf or IP deny */
1609 #if ENABLE_FEATURE_HTTPD_CGI
1610  FORBIDDEN:             /* protect listing /cgi-bin */
1611 #endif
1612                         sendHeaders(HTTP_FORBIDDEN);
1613                         break;
1614                 }
1615
1616 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1617                 if (credentials <= 0 && checkPerm(url, ":") == 0) {
1618                         sendHeaders(HTTP_UNAUTHORIZED);
1619                         break;
1620                 }
1621 #endif
1622
1623                 if (config->found_moved_temporarily) {
1624                         sendHeaders(HTTP_MOVED_TEMPORARILY);
1625                         /* clear unforked memory flag */
1626                         config->found_moved_temporarily = NULL;
1627                         break;
1628                 }
1629
1630                 test = url + 1;      /* skip first '/' */
1631
1632 #if ENABLE_FEATURE_HTTPD_CGI
1633                 if (strncmp(test, "cgi-bin", 7) == 0) {
1634                         if (test[7] == '/' && test[8] == 0)
1635                                 goto FORBIDDEN;     /* protect listing cgi-bin/ */
1636                         sendCgi(url, prequest, length, cookie, content_type);
1637                         break;
1638                 }
1639                 if (prequest != request_GET) {
1640                         sendHeaders(HTTP_NOT_IMPLEMENTED);
1641                         break;
1642                 }
1643                 if (purl[-1] == '/') {
1644                         if (access("cgi-bin/index.cgi", X_OK) == 0) {
1645                                 config->query = url;
1646                                 sendCgi("/cgi-bin/index.cgi", prequest, length, cookie, content_type);
1647                                 break;
1648                         }
1649                 }
1650 #endif  /* FEATURE_HTTPD_CGI */
1651                 if (purl[-1] == '/')
1652                         strcpy(purl, "index.html");
1653                 if (stat(test, &sb) == 0) {
1654                         config->ContentLength = sb.st_size;
1655                         config->last_mod = sb.st_mtime;
1656                 }
1657                 sendFile(test);
1658                 config->ContentLength = -1;
1659         } while (0);
1660
1661  bail_out:
1662
1663         if (DEBUG)
1664                 fprintf(stderr, "closing socket\n\n");
1665 #if ENABLE_FEATURE_HTTPD_CGI
1666         free(cookie);
1667         free(content_type);
1668         free(config->referer);
1669         config->referer = NULL;
1670 # if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1671         free(config->remoteuser);
1672         config->remoteuser = NULL;
1673 # endif
1674 #endif
1675         shutdown(config->accepted_socket, SHUT_WR);
1676
1677         /* Properly wait for remote to closed */
1678         FD_ZERO(&s_fd);
1679         FD_SET(config->accepted_socket, &s_fd);
1680
1681         do {
1682                 tv.tv_sec = 2;
1683                 tv.tv_usec = 0;
1684                 retval = select(config->accepted_socket + 1, &s_fd, NULL, NULL, &tv);
1685         } while (retval > 0 && read(config->accepted_socket, buf, sizeof(config->buf) > 0));
1686
1687         shutdown(config->accepted_socket, SHUT_RD);
1688         /* In inetd case, we close fd 1 (stdout) here. We will exit soon anyway */
1689         close(config->accepted_socket);
1690 }
1691
1692 /****************************************************************************
1693  *
1694  > $Function: miniHttpd()
1695  *
1696  * $Description: The main http server function.
1697  *
1698  *   Given an open socket fildes, listen for new connections and farm out
1699  *   the processing as a forked process.
1700  *
1701  * $Parameters:
1702  *      (int) server. . . The server socket fildes.
1703  *
1704  * $Return: (int) . . . . Always 0.
1705  *
1706  ****************************************************************************/
1707 static int miniHttpd(int server)
1708 {
1709         fd_set readfd, portfd;
1710
1711         FD_ZERO(&portfd);
1712         FD_SET(server, &portfd);
1713
1714         /* copy the ports we are watching to the readfd set */
1715         while (1) {
1716                 int on, s;
1717                 socklen_t fromAddrLen;
1718                 struct sockaddr_in fromAddr;
1719
1720                 /* Now wait INDEFINITELY on the set of sockets! */
1721                 readfd = portfd;
1722                 if (select(server + 1, &readfd, 0, 0, 0) <= 0)
1723                         continue;
1724                 if (!FD_ISSET(server, &readfd))
1725                         continue;
1726                 fromAddrLen = sizeof(fromAddr);
1727                 s = accept(server, (struct sockaddr *)&fromAddr, &fromAddrLen);
1728                 if (s < 0)
1729                         continue;
1730                 config->accepted_socket = s;
1731                 config->rmt_ip = ntohl(fromAddr.sin_addr.s_addr);
1732 #if ENABLE_FEATURE_HTTPD_CGI || DEBUG
1733                 sprintf(config->rmt_ip_str, "%u.%u.%u.%u",
1734                                 (unsigned char)(config->rmt_ip >> 24),
1735                                 (unsigned char)(config->rmt_ip >> 16),
1736                                 (unsigned char)(config->rmt_ip >> 8),
1737                                 config->rmt_ip & 0xff);
1738                 config->port = ntohs(fromAddr.sin_port);
1739 #if DEBUG
1740                 bb_error_msg("connection from IP=%s, port %u",
1741                                 config->rmt_ip_str, config->port);
1742 #endif
1743 #endif /* FEATURE_HTTPD_CGI */
1744
1745                 /* set the KEEPALIVE option to cull dead connections */
1746                 on = 1;
1747                 setsockopt(s, SOL_SOCKET, SO_KEEPALIVE, (void *)&on, sizeof(on));
1748 #if !DEBUG
1749                 if (fork() == 0)
1750 #endif
1751                 {
1752                         /* This is the spawned thread */
1753 #if ENABLE_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
1754                         /* protect reload config, may be confuse checking */
1755                         signal(SIGHUP, SIG_IGN);
1756 #endif
1757                         handleIncoming();
1758 #if !DEBUG
1759                         exit(0);
1760 #endif
1761                 }
1762                 close(s);
1763         } // while (1)
1764         return 0;
1765 }
1766
1767 /* from inetd */
1768 static int miniHttpd_inetd(void)
1769 {
1770         struct sockaddr_in fromAddrLen;
1771         socklen_t sinlen = sizeof(struct sockaddr_in);
1772
1773         getpeername(0, (struct sockaddr *)&fromAddrLen, &sinlen);
1774         config->rmt_ip = ntohl(fromAddrLen.sin_addr.s_addr);
1775 #if ENABLE_FEATURE_HTTPD_CGI
1776         sprintf(config->rmt_ip_str, "%u.%u.%u.%u",
1777                                 (unsigned char)(config->rmt_ip >> 24),
1778                                 (unsigned char)(config->rmt_ip >> 16),
1779                                 (unsigned char)(config->rmt_ip >> 8),
1780                                                 config->rmt_ip & 0xff);
1781 #endif
1782         config->port = ntohs(fromAddrLen.sin_port);
1783         handleIncoming();
1784         return 0;
1785 }
1786
1787 #if ENABLE_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
1788 static void sighup_handler(int sig)
1789 {
1790         /* set and reset */
1791         struct sigaction sa;
1792
1793         parse_conf(default_path_httpd_conf, sig == SIGHUP ? SIGNALED_PARSE : FIRST_PARSE);
1794         sa.sa_handler = sighup_handler;
1795         sigemptyset(&sa.sa_mask);
1796         sa.sa_flags = SA_RESTART;
1797         sigaction(SIGHUP, &sa, NULL);
1798 }
1799 #endif
1800
1801 enum {
1802         c_opt_config_file = 0,
1803         d_opt_decode_url,
1804         h_opt_home_httpd,
1805         USE_FEATURE_HTTPD_ENCODE_URL_STR(e_opt_encode_url,)
1806         USE_FEATURE_HTTPD_BASIC_AUTH(    r_opt_realm     ,)
1807         USE_FEATURE_HTTPD_AUTH_MD5(      m_opt_md5       ,)
1808         USE_FEATURE_HTTPD_SETUID(        u_opt_setuid    ,)
1809         p_opt_port      ,
1810         p_opt_inetd     ,
1811         p_opt_foreground,
1812         OPT_CONFIG_FILE = 1 << c_opt_config_file,
1813         OPT_DECODE_URL  = 1 << d_opt_decode_url,
1814         OPT_HOME_HTTPD  = 1 << h_opt_home_httpd,
1815         OPT_ENCODE_URL  = USE_FEATURE_HTTPD_ENCODE_URL_STR((1 << e_opt_encode_url)) + 0,
1816         OPT_REALM       = USE_FEATURE_HTTPD_BASIC_AUTH(    (1 << r_opt_realm     )) + 0,
1817         OPT_MD5         = USE_FEATURE_HTTPD_AUTH_MD5(      (1 << m_opt_md5       )) + 0,
1818         OPT_SETUID      = USE_FEATURE_HTTPD_SETUID(        (1 << u_opt_setuid    )) + 0,
1819         OPT_PORT        = 1 << p_opt_port,
1820         OPT_INETD       = 1 << p_opt_inetd,
1821         OPT_FOREGROUND  = 1 << p_opt_foreground,
1822 };
1823
1824 static const char httpd_opts[] = "c:d:h:"
1825         USE_FEATURE_HTTPD_ENCODE_URL_STR("e:")
1826         USE_FEATURE_HTTPD_BASIC_AUTH("r:")
1827         USE_FEATURE_HTTPD_AUTH_MD5("m:")
1828         USE_FEATURE_HTTPD_SETUID("u:")
1829         "p:if";
1830
1831
1832 int httpd_main(int argc, char *argv[])
1833 {
1834         unsigned opt;
1835         const char *home_httpd = home;
1836         char *url_for_decode;
1837         USE_FEATURE_HTTPD_ENCODE_URL_STR(const char *url_for_encode;)
1838         const char *s_port;
1839         USE_FEATURE_HTTPD_SETUID(const char *s_ugid = NULL;)
1840         USE_FEATURE_HTTPD_SETUID(struct bb_uidgid_t ugid;)
1841         USE_FEATURE_HTTPD_AUTH_MD5(const char *pass;)
1842
1843 #if ENABLE_LOCALE_SUPPORT
1844         /* Undo busybox.c: we want to speak English in http (dates etc) */
1845         setlocale(LC_TIME, "C");
1846 #endif
1847
1848         config = xzalloc(sizeof(*config));
1849 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1850         config->realm = "Web Server Authentication";
1851 #endif
1852         config->port = 80;
1853         config->ContentLength = -1;
1854
1855         opt = getopt32(argc, argv, httpd_opts,
1856                         &(config->configFile), &url_for_decode, &home_httpd
1857                         USE_FEATURE_HTTPD_ENCODE_URL_STR(, &url_for_encode)
1858                         USE_FEATURE_HTTPD_BASIC_AUTH(, &(config->realm))
1859                         USE_FEATURE_HTTPD_AUTH_MD5(, &pass)
1860                         USE_FEATURE_HTTPD_SETUID(, &s_ugid)
1861                         , &s_port
1862                 );
1863         if (opt & OPT_DECODE_URL) {
1864                 printf("%s", decodeString(url_for_decode, 1));
1865                 return 0;
1866         }
1867 #if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
1868         if (opt & OPT_ENCODE_URL) {
1869                 printf("%s", encodeString(url_for_encode));
1870                 return 0;
1871         }
1872 #endif
1873 #if ENABLE_FEATURE_HTTPD_AUTH_MD5
1874         if (opt & OPT_MD5) {
1875                 puts(pw_encrypt(pass, "$1$"));
1876                 return 0;
1877         }
1878 #endif
1879         if (opt & OPT_PORT)
1880                 config->port = xatou16(s_port);
1881
1882 #if ENABLE_FEATURE_HTTPD_SETUID
1883         if (opt & OPT_SETUID) {
1884                 char *e;
1885                 // FIXME: what the default group should be?
1886                 ugid.gid = -1;
1887                 ugid.uid = strtoul(s_ugid, &e, 0);
1888                 if (*e == ':') {
1889                         e++;
1890                         ugid.gid = strtoul(e, &e, 0);
1891                 }
1892                 if (*e != '\0') {
1893                         /* not integer */
1894                         if (!uidgid_get(&ugid, s_ugid))
1895                                 bb_error_msg_and_die("unrecognized user[:group] "
1896                                                 "name '%s'", s_ugid);
1897                 }
1898         }
1899 #endif
1900
1901         xchdir(home_httpd);
1902         if (!(opt & OPT_INETD)) {
1903                 config->server_socket = openServer();
1904 #if ENABLE_FEATURE_HTTPD_SETUID
1905                 /* drop privileges */
1906                 if (opt & OPT_SETUID) {
1907                         if (ugid.gid != (gid_t)-1) {
1908                                 if (setgroups(1, &ugid.gid) == -1)
1909                                         bb_perror_msg_and_die("setgroups");
1910                                 xsetgid(ugid.gid);
1911                         }
1912                         xsetuid(ugid.uid);
1913                 }
1914 #endif
1915         }
1916
1917 #if ENABLE_FEATURE_HTTPD_CGI
1918         {
1919                 char *p = getenv("PATH");
1920                 if (p) {
1921                         p = xstrdup(p);
1922                 }
1923                 clearenv();
1924                 if (p)
1925                         setenv1("PATH", p);
1926                 if (!(opt & OPT_INETD))
1927                         setenv_long("SERVER_PORT", config->port);
1928         }
1929 #endif
1930
1931 #if ENABLE_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
1932         sighup_handler(0);
1933 #else
1934         parse_conf(default_path_httpd_conf, FIRST_PARSE);
1935 #endif
1936
1937         if (opt & OPT_INETD)
1938                 return miniHttpd_inetd();
1939
1940         if (!(opt & OPT_FOREGROUND))
1941                 xdaemon(1, 0);     /* don't change current directory */
1942         return miniHttpd(config->server_socket);
1943 }