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