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