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