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