ioctl(SIOCGIFINDEX) does not require clearing of entire ifr
[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  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
9  *
10  *****************************************************************************
11  *
12  * Typical usage:
13  * For non root user:
14  *      httpd -p 8080 -h $HOME/public_html
15  * For daemon start from rc script with uid=0:
16  *      httpd -u www
17  * which is equivalent to (assuming user www has uid 80):
18  *      httpd -p 80 -u 80 -h $PWD -c /etc/httpd.conf -r "Web Server Authentication"
19  *
20  * When an url starts with "/cgi-bin/" it is assumed to be a cgi script.
21  * The server changes directory to the location of the script and executes it
22  * after setting QUERY_STRING and other environment variables.
23  *
24  * If directory URL is given, no index.html is found and CGI support is enabled,
25  * cgi-bin/index.cgi will be run. Directory to list is ../$QUERY_STRING.
26  * See httpd_indexcgi.c for an example GCI code.
27  *
28  * Doc:
29  * "CGI Environment Variables": http://hoohoo.ncsa.uiuc.edu/cgi/env.html
30  *
31  * The applet can also be invoked as an url arg decoder and html text encoder
32  * as follows:
33  *      foo=`httpd -d $foo`             # decode "Hello%20World" as "Hello World"
34  *      bar=`httpd -e "<Hello World>"`  # encode as "&#60Hello&#32World&#62"
35  * Note that url encoding for arguments is not the same as html encoding for
36  * presentation.  -d decodes an url-encoded argument while -e encodes in html
37  * for page display.
38  *
39  * httpd.conf has the following format:
40  *
41  * H:/serverroot     # define the server root. It will override -h
42  * A:172.20.         # Allow address from 172.20.0.0/16
43  * A:10.0.0.0/25     # Allow any address from 10.0.0.0-10.0.0.127
44  * A:10.0.0.0/255.255.255.128  # Allow any address that previous set
45  * A:127.0.0.1       # Allow local loopback connections
46  * D:*               # Deny from other IP connections
47  * E404:/path/e404.html # /path/e404.html is the 404 (not found) error page
48  * I:index.html      # Show index.html when a directory is requested
49  *
50  * P:/url:[http://]hostname[:port]/new/path
51  *                   # When /urlXXXXXX is requested, reverse proxy
52  *                   # it to http://hostname[:port]/new/pathXXXXXX
53  *
54  * /cgi-bin:foo:bar  # Require user foo, pwd bar on urls starting with /cgi-bin/
55  * /adm:admin:setup  # Require user admin, pwd setup on urls starting with /adm/
56  * /adm:toor:PaSsWd  # or user toor, pwd PaSsWd on urls starting with /adm/
57  * /adm:root:*       # or user root, pwd from /etc/passwd on urls starting with /adm/
58  * /wiki:*:*         # or any user from /etc/passwd with according pwd on urls starting with /wiki/
59  * .au:audio/basic   # additional mime type for audio.au files
60  * *.php:/path/php   # run xxx.php through an interpreter
61  *
62  * A/D may be as a/d or allow/deny - only first char matters.
63  * Deny/Allow IP logic:
64  *  - Default is to allow all (Allow all (A:*) is a no-op).
65  *  - Deny rules take precedence over allow rules.
66  *  - "Deny all" rule (D:*) is applied last.
67  *
68  * Example:
69  *   1. Allow only specified addresses
70  *     A:172.20          # Allow any address that begins with 172.20.
71  *     A:10.10.          # Allow any address that begins with 10.10.
72  *     A:127.0.0.1       # Allow local loopback connections
73  *     D:*               # Deny from other IP connections
74  *
75  *   2. Only deny specified addresses
76  *     D:1.2.3.        # deny from 1.2.3.0 - 1.2.3.255
77  *     D:2.3.4.        # deny from 2.3.4.0 - 2.3.4.255
78  *     A:*             # (optional line added for clarity)
79  *
80  * If a sub directory contains config file, it is parsed and merged with
81  * any existing settings as if it was appended to the original configuration.
82  *
83  * subdir paths are relative to the containing subdir and thus cannot
84  * affect the parent rules.
85  *
86  * Note that since the sub dir is parsed in the forked thread servicing the
87  * subdir http request, any merge is discarded when the process exits.  As a
88  * result, the subdir settings only have a lifetime of a single request.
89  *
90  * Custom error pages can contain an absolute path or be relative to
91  * 'home_httpd'. Error pages are to be static files (no CGI or script). Error
92  * page can only be defined in the root configuration file and are not taken
93  * into account in local (directories) config files.
94  *
95  * If -c is not set, an attempt will be made to open the default
96  * root configuration file.  If -c is set and the file is not found, the
97  * server exits with an error.
98  *
99  */
100  /* TODO: use TCP_CORK, parse_config() */
101 //config:config HTTPD
102 //config:       bool "httpd (32 kb)"
103 //config:       default y
104 //config:       help
105 //config:       HTTP server.
106 //config:
107 //config:config FEATURE_HTTPD_RANGES
108 //config:       bool "Support 'Ranges:' header"
109 //config:       default y
110 //config:       depends on HTTPD
111 //config:       help
112 //config:       Makes httpd emit "Accept-Ranges: bytes" header and understand
113 //config:       "Range: bytes=NNN-[MMM]" header. Allows for resuming interrupted
114 //config:       downloads, seeking in multimedia players etc.
115 //config:
116 //config:config FEATURE_HTTPD_SETUID
117 //config:       bool "Enable -u <user> option"
118 //config:       default y
119 //config:       depends on HTTPD
120 //config:       help
121 //config:       This option allows the server to run as a specific user
122 //config:       rather than defaulting to the user that starts the server.
123 //config:       Use of this option requires special privileges to change to a
124 //config:       different user.
125 //config:
126 //config:config FEATURE_HTTPD_BASIC_AUTH
127 //config:       bool "Enable HTTP authentication"
128 //config:       default y
129 //config:       depends on HTTPD
130 //config:       help
131 //config:       Utilizes password settings from /etc/httpd.conf for basic
132 //config:       authentication on a per url basis.
133 //config:       Example for httpd.conf file:
134 //config:       /adm:toor:PaSsWd
135 //config:
136 //config:config FEATURE_HTTPD_AUTH_MD5
137 //config:       bool "Support MD5-encrypted passwords in HTTP authentication"
138 //config:       default y
139 //config:       depends on FEATURE_HTTPD_BASIC_AUTH
140 //config:       help
141 //config:       Enables encrypted passwords, and wildcard user/passwords
142 //config:       in httpd.conf file.
143 //config:       User '*' means 'any system user name is ok',
144 //config:       password of '*' means 'use system password for this user'
145 //config:       Examples:
146 //config:       /adm:toor:$1$P/eKnWXS$aI1aPGxT.dJD5SzqAKWrF0
147 //config:       /adm:root:*
148 //config:       /wiki:*:*
149 //config:
150 //config:config FEATURE_HTTPD_CGI
151 //config:       bool "Support Common Gateway Interface (CGI)"
152 //config:       default y
153 //config:       depends on HTTPD
154 //config:       help
155 //config:       This option allows scripts and executables to be invoked
156 //config:       when specific URLs are requested.
157 //config:
158 //config:config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
159 //config:       bool "Support running scripts through an interpreter"
160 //config:       default y
161 //config:       depends on FEATURE_HTTPD_CGI
162 //config:       help
163 //config:       This option enables support for running scripts through an
164 //config:       interpreter. Turn this on if you want PHP scripts to work
165 //config:       properly. You need to supply an additional line in your
166 //config:       httpd.conf file:
167 //config:       *.php:/path/to/your/php
168 //config:
169 //config:config FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
170 //config:       bool "Set REMOTE_PORT environment variable for CGI"
171 //config:       default y
172 //config:       depends on FEATURE_HTTPD_CGI
173 //config:       help
174 //config:       Use of this option can assist scripts in generating
175 //config:       references that contain a unique port number.
176 //config:
177 //config:config FEATURE_HTTPD_ENCODE_URL_STR
178 //config:       bool "Enable -e option (useful for CGIs written as shell scripts)"
179 //config:       default y
180 //config:       depends on HTTPD
181 //config:       help
182 //config:       This option allows html encoding of arbitrary strings for display
183 //config:       by the browser. Output goes to stdout.
184 //config:       For example, httpd -e "<Hello World>" produces
185 //config:       "&#60Hello&#32World&#62".
186 //config:
187 //config:config FEATURE_HTTPD_ERROR_PAGES
188 //config:       bool "Support custom error pages"
189 //config:       default y
190 //config:       depends on HTTPD
191 //config:       help
192 //config:       This option allows you to define custom error pages in
193 //config:       the configuration file instead of the default HTTP status
194 //config:       error pages. For instance, if you add the line:
195 //config:               E404:/path/e404.html
196 //config:       in the config file, the server will respond the specified
197 //config:       '/path/e404.html' file instead of the terse '404 NOT FOUND'
198 //config:       message.
199 //config:
200 //config:config FEATURE_HTTPD_PROXY
201 //config:       bool "Support reverse proxy"
202 //config:       default y
203 //config:       depends on HTTPD
204 //config:       help
205 //config:       This option allows you to define URLs that will be forwarded
206 //config:       to another HTTP server. To setup add the following line to the
207 //config:       configuration file
208 //config:               P:/url/:http://hostname[:port]/new/path/
209 //config:       Then a request to /url/myfile will be forwarded to
210 //config:       http://hostname[:port]/new/path/myfile.
211 //config:
212 //config:config FEATURE_HTTPD_GZIP
213 //config:       bool "Support GZIP content encoding"
214 //config:       default y
215 //config:       depends on HTTPD
216 //config:       help
217 //config:       Makes httpd send files using GZIP content encoding if the
218 //config:       client supports it and a pre-compressed <file>.gz exists.
219
220 //applet:IF_HTTPD(APPLET(httpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
221
222 //kbuild:lib-$(CONFIG_HTTPD) += httpd.o
223
224 //usage:#define httpd_trivial_usage
225 //usage:       "[-ifv[v]]"
226 //usage:       " [-c CONFFILE]"
227 //usage:       " [-p [IP:]PORT]"
228 //usage:        IF_FEATURE_HTTPD_SETUID(" [-u USER[:GRP]]")
229 //usage:        IF_FEATURE_HTTPD_BASIC_AUTH(" [-r REALM]")
230 //usage:       " [-h HOME]\n"
231 //usage:       "or httpd -d/-e" IF_FEATURE_HTTPD_AUTH_MD5("/-m") " STRING"
232 //usage:#define httpd_full_usage "\n\n"
233 //usage:       "Listen for incoming HTTP requests\n"
234 //usage:     "\n        -i              Inetd mode"
235 //usage:     "\n        -f              Don't daemonize"
236 //usage:     "\n        -v[v]           Verbose"
237 //usage:     "\n        -p [IP:]PORT    Bind to IP:PORT (default *:80)"
238 //usage:        IF_FEATURE_HTTPD_SETUID(
239 //usage:     "\n        -u USER[:GRP]   Set uid/gid after binding to port")
240 //usage:        IF_FEATURE_HTTPD_BASIC_AUTH(
241 //usage:     "\n        -r REALM        Authentication Realm for Basic Authentication")
242 //usage:     "\n        -h HOME         Home directory (default .)"
243 //usage:     "\n        -c FILE         Configuration file (default {/etc,HOME}/httpd.conf)"
244 //usage:        IF_FEATURE_HTTPD_AUTH_MD5(
245 //usage:     "\n        -m STRING       MD5 crypt STRING")
246 //usage:     "\n        -e STRING       HTML encode STRING"
247 //usage:     "\n        -d STRING       URL decode STRING"
248
249 #include "libbb.h"
250 #include "common_bufsiz.h"
251 #if ENABLE_PAM
252 /* PAM may include <locale.h>. We may need to undefine bbox's stub define: */
253 # undef setlocale
254 /* For some obscure reason, PAM is not in pam/xxx, but in security/xxx.
255  * Apparently they like to confuse people. */
256 # include <security/pam_appl.h>
257 # include <security/pam_misc.h>
258 #endif
259 #if ENABLE_FEATURE_USE_SENDFILE
260 # include <sys/sendfile.h>
261 #endif
262 /* amount of buffering in a pipe */
263 #ifndef PIPE_BUF
264 # define PIPE_BUF 4096
265 #endif
266
267 #define DEBUG 0
268
269 #define IOBUF_SIZE 8192
270 #if PIPE_BUF >= IOBUF_SIZE
271 # error "PIPE_BUF >= IOBUF_SIZE"
272 #endif
273
274 #define HEADER_READ_TIMEOUT 60
275
276 static const char DEFAULT_PATH_HTTPD_CONF[] ALIGN1 = "/etc";
277 static const char HTTPD_CONF[] ALIGN1 = "httpd.conf";
278 static const char HTTP_200[] ALIGN1 = "HTTP/1.0 200 OK\r\n";
279 static const char index_html[] ALIGN1 = "index.html";
280
281 typedef struct has_next_ptr {
282         struct has_next_ptr *next;
283 } has_next_ptr;
284
285 /* Must have "next" as a first member */
286 typedef struct Htaccess {
287         struct Htaccess *next;
288         char *after_colon;
289         char before_colon[1];  /* really bigger, must be last */
290 } Htaccess;
291
292 /* Must have "next" as a first member */
293 typedef struct Htaccess_IP {
294         struct Htaccess_IP *next;
295         unsigned ip;
296         unsigned mask;
297         int allow_deny;
298 } Htaccess_IP;
299
300 /* Must have "next" as a first member */
301 typedef struct Htaccess_Proxy {
302         struct Htaccess_Proxy *next;
303         char *url_from;
304         char *host_port;
305         char *url_to;
306 } Htaccess_Proxy;
307
308 enum {
309         HTTP_OK = 200,
310         HTTP_PARTIAL_CONTENT = 206,
311         HTTP_MOVED_TEMPORARILY = 302,
312         HTTP_BAD_REQUEST = 400,       /* malformed syntax */
313         HTTP_UNAUTHORIZED = 401, /* authentication needed, respond with auth hdr */
314         HTTP_NOT_FOUND = 404,
315         HTTP_FORBIDDEN = 403,
316         HTTP_REQUEST_TIMEOUT = 408,
317         HTTP_NOT_IMPLEMENTED = 501,   /* used for unrecognized requests */
318         HTTP_INTERNAL_SERVER_ERROR = 500,
319         HTTP_CONTINUE = 100,
320 #if 0   /* future use */
321         HTTP_SWITCHING_PROTOCOLS = 101,
322         HTTP_CREATED = 201,
323         HTTP_ACCEPTED = 202,
324         HTTP_NON_AUTHORITATIVE_INFO = 203,
325         HTTP_NO_CONTENT = 204,
326         HTTP_MULTIPLE_CHOICES = 300,
327         HTTP_MOVED_PERMANENTLY = 301,
328         HTTP_NOT_MODIFIED = 304,
329         HTTP_PAYMENT_REQUIRED = 402,
330         HTTP_BAD_GATEWAY = 502,
331         HTTP_SERVICE_UNAVAILABLE = 503, /* overload, maintenance */
332 #endif
333 };
334
335 static const uint16_t http_response_type[] ALIGN2 = {
336         HTTP_OK,
337 #if ENABLE_FEATURE_HTTPD_RANGES
338         HTTP_PARTIAL_CONTENT,
339 #endif
340         HTTP_MOVED_TEMPORARILY,
341         HTTP_REQUEST_TIMEOUT,
342         HTTP_NOT_IMPLEMENTED,
343 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
344         HTTP_UNAUTHORIZED,
345 #endif
346         HTTP_NOT_FOUND,
347         HTTP_BAD_REQUEST,
348         HTTP_FORBIDDEN,
349         HTTP_INTERNAL_SERVER_ERROR,
350 #if 0   /* not implemented */
351         HTTP_CREATED,
352         HTTP_ACCEPTED,
353         HTTP_NO_CONTENT,
354         HTTP_MULTIPLE_CHOICES,
355         HTTP_MOVED_PERMANENTLY,
356         HTTP_NOT_MODIFIED,
357         HTTP_BAD_GATEWAY,
358         HTTP_SERVICE_UNAVAILABLE,
359 #endif
360 };
361
362 static const struct {
363         const char *name;
364         const char *info;
365 } http_response[ARRAY_SIZE(http_response_type)] = {
366         { "OK", NULL },
367 #if ENABLE_FEATURE_HTTPD_RANGES
368         { "Partial Content", NULL },
369 #endif
370         { "Found", NULL },
371         { "Request Timeout", "No request appeared within 60 seconds" },
372         { "Not Implemented", "The requested method is not recognized" },
373 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
374         { "Unauthorized", "" },
375 #endif
376         { "Not Found", "The requested URL was not found" },
377         { "Bad Request", "Unsupported method" },
378         { "Forbidden", ""  },
379         { "Internal Server Error", "Internal Server Error" },
380 #if 0   /* not implemented */
381         { "Created" },
382         { "Accepted" },
383         { "No Content" },
384         { "Multiple Choices" },
385         { "Moved Permanently" },
386         { "Not Modified" },
387         { "Bad Gateway", "" },
388         { "Service Unavailable", "" },
389 #endif
390 };
391
392 struct globals {
393         int verbose;            /* must be int (used by getopt32) */
394         smallint flg_deny_all;
395
396         unsigned rmt_ip;        /* used for IP-based allow/deny rules */
397         time_t last_mod;
398         char *rmt_ip_str;       /* for $REMOTE_ADDR and $REMOTE_PORT */
399         const char *bind_addr_or_port;
400
401         const char *g_query;
402         const char *opt_c_configFile;
403         const char *home_httpd;
404         const char *index_page;
405
406         const char *found_mime_type;
407         const char *found_moved_temporarily;
408         Htaccess_IP *ip_a_d;    /* config allow/deny lines */
409
410         IF_FEATURE_HTTPD_BASIC_AUTH(const char *g_realm;)
411         IF_FEATURE_HTTPD_BASIC_AUTH(char *remoteuser;)
412         IF_FEATURE_HTTPD_CGI(char *referer;)
413         IF_FEATURE_HTTPD_CGI(char *user_agent;)
414         IF_FEATURE_HTTPD_CGI(char *host;)
415         IF_FEATURE_HTTPD_CGI(char *http_accept;)
416         IF_FEATURE_HTTPD_CGI(char *http_accept_language;)
417
418         off_t file_size;        /* -1 - unknown */
419 #if ENABLE_FEATURE_HTTPD_RANGES
420         off_t range_start;
421         off_t range_end;
422         off_t range_len;
423 #endif
424
425 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
426         Htaccess *g_auth;       /* config user:password lines */
427 #endif
428         Htaccess *mime_a;       /* config mime types */
429 #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
430         Htaccess *script_i;     /* config script interpreters */
431 #endif
432         char *iobuf;            /* [IOBUF_SIZE] */
433 #define        hdr_buf bb_common_bufsiz1
434 #define sizeof_hdr_buf COMMON_BUFSIZE
435         char *hdr_ptr;
436         int hdr_cnt;
437 #if ENABLE_FEATURE_HTTPD_ERROR_PAGES
438         const char *http_error_page[ARRAY_SIZE(http_response_type)];
439 #endif
440 #if ENABLE_FEATURE_HTTPD_PROXY
441         Htaccess_Proxy *proxy;
442 #endif
443 #if ENABLE_FEATURE_HTTPD_GZIP
444         /* client can handle gzip / we are going to send gzip */
445         smallint content_gzip;
446 #endif
447 };
448 #define G (*ptr_to_globals)
449 #define verbose           (G.verbose          )
450 #define flg_deny_all      (G.flg_deny_all     )
451 #define rmt_ip            (G.rmt_ip           )
452 #define bind_addr_or_port (G.bind_addr_or_port)
453 #define g_query           (G.g_query          )
454 #define opt_c_configFile  (G.opt_c_configFile )
455 #define home_httpd        (G.home_httpd       )
456 #define index_page        (G.index_page       )
457 #define found_mime_type   (G.found_mime_type  )
458 #define found_moved_temporarily (G.found_moved_temporarily)
459 #define last_mod          (G.last_mod         )
460 #define ip_a_d            (G.ip_a_d           )
461 #define g_realm           (G.g_realm          )
462 #define remoteuser        (G.remoteuser       )
463 #define file_size         (G.file_size        )
464 #if ENABLE_FEATURE_HTTPD_RANGES
465 #define range_start       (G.range_start      )
466 #define range_end         (G.range_end        )
467 #define range_len         (G.range_len        )
468 #else
469 enum {
470         range_start = -1,
471         range_end = MAXINT(off_t) - 1,
472         range_len = MAXINT(off_t),
473 };
474 #endif
475 #define rmt_ip_str        (G.rmt_ip_str       )
476 #define g_auth            (G.g_auth           )
477 #define mime_a            (G.mime_a           )
478 #define script_i          (G.script_i         )
479 #define iobuf             (G.iobuf            )
480 #define hdr_ptr           (G.hdr_ptr          )
481 #define hdr_cnt           (G.hdr_cnt          )
482 #define http_error_page   (G.http_error_page  )
483 #define proxy             (G.proxy            )
484 #if ENABLE_FEATURE_HTTPD_GZIP
485 # define content_gzip     (G.content_gzip     )
486 #else
487 # define content_gzip     0
488 #endif
489 #define INIT_G() do { \
490         setup_common_bufsiz(); \
491         SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
492         IF_FEATURE_HTTPD_BASIC_AUTH(g_realm = "Web Server Authentication";) \
493         IF_FEATURE_HTTPD_RANGES(range_start = -1;) \
494         bind_addr_or_port = "80"; \
495         index_page = index_html; \
496         file_size = -1; \
497 } while (0)
498
499
500 #define STRNCASECMP(a, str) strncasecmp((a), (str), sizeof(str)-1)
501
502 /* Prototypes */
503 enum {
504         SEND_HEADERS     = (1 << 0),
505         SEND_BODY        = (1 << 1),
506         SEND_HEADERS_AND_BODY = SEND_HEADERS + SEND_BODY,
507 };
508 static void send_file_and_exit(const char *url, int what) NORETURN;
509
510 static void free_llist(has_next_ptr **pptr)
511 {
512         has_next_ptr *cur = *pptr;
513         while (cur) {
514                 has_next_ptr *t = cur;
515                 cur = cur->next;
516                 free(t);
517         }
518         *pptr = NULL;
519 }
520
521 static ALWAYS_INLINE void free_Htaccess_list(Htaccess **pptr)
522 {
523         free_llist((has_next_ptr**)pptr);
524 }
525
526 static ALWAYS_INLINE void free_Htaccess_IP_list(Htaccess_IP **pptr)
527 {
528         free_llist((has_next_ptr**)pptr);
529 }
530
531 /* Returns presumed mask width in bits or < 0 on error.
532  * Updates strp, stores IP at provided pointer */
533 static int scan_ip(const char **strp, unsigned *ipp, unsigned char endc)
534 {
535         const char *p = *strp;
536         int auto_mask = 8;
537         unsigned ip = 0;
538         int j;
539
540         if (*p == '/')
541                 return -auto_mask;
542
543         for (j = 0; j < 4; j++) {
544                 unsigned octet;
545
546                 if ((*p < '0' || *p > '9') && *p != '/' && *p)
547                         return -auto_mask;
548                 octet = 0;
549                 while (*p >= '0' && *p <= '9') {
550                         octet *= 10;
551                         octet += *p - '0';
552                         if (octet > 255)
553                                 return -auto_mask;
554                         p++;
555                 }
556                 if (*p == '.')
557                         p++;
558                 if (*p != '/' && *p)
559                         auto_mask += 8;
560                 ip = (ip << 8) | octet;
561         }
562         if (*p) {
563                 if (*p != endc)
564                         return -auto_mask;
565                 p++;
566                 if (*p == '\0')
567                         return -auto_mask;
568         }
569         *ipp = ip;
570         *strp = p;
571         return auto_mask;
572 }
573
574 /* Returns 0 on success. Stores IP and mask at provided pointers */
575 static int scan_ip_mask(const char *str, unsigned *ipp, unsigned *maskp)
576 {
577         int i;
578         unsigned mask;
579         char *p;
580
581         i = scan_ip(&str, ipp, '/');
582         if (i < 0)
583                 return i;
584
585         if (*str) {
586                 /* there is /xxx after dotted-IP address */
587                 i = bb_strtou(str, &p, 10);
588                 if (*p == '.') {
589                         /* 'xxx' itself is dotted-IP mask, parse it */
590                         /* (return 0 (success) only if it has N.N.N.N form) */
591                         return scan_ip(&str, maskp, '\0') - 32;
592                 }
593                 if (*p)
594                         return -1;
595         }
596
597         if (i > 32)
598                 return -1;
599
600         if (sizeof(unsigned) == 4 && i == 32) {
601                 /* mask >>= 32 below may not work */
602                 mask = 0;
603         } else {
604                 mask = 0xffffffff;
605                 mask >>= i;
606         }
607         /* i == 0 -> *maskp = 0x00000000
608          * i == 1 -> *maskp = 0x80000000
609          * i == 4 -> *maskp = 0xf0000000
610          * i == 31 -> *maskp = 0xfffffffe
611          * i == 32 -> *maskp = 0xffffffff */
612         *maskp = (uint32_t)(~mask);
613         return 0;
614 }
615
616 /*
617  * Parse configuration file into in-memory linked list.
618  *
619  * Any previous IP rules are discarded.
620  * If the flag argument is not SUBDIR_PARSE then all /path and mime rules
621  * are also discarded.  That is, previous settings are retained if flag is
622  * SUBDIR_PARSE.
623  * Error pages are only parsed on the main config file.
624  *
625  * path   Path where to look for httpd.conf (without filename).
626  * flag   Type of the parse request.
627  */
628 /* flag param: */
629 enum {
630         FIRST_PARSE    = 0, /* path will be "/etc" */
631         SIGNALED_PARSE = 1, /* path will be "/etc" */
632         SUBDIR_PARSE   = 2, /* path will be derived from URL */
633 };
634 static void parse_conf(const char *path, int flag)
635 {
636         /* internally used extra flag state */
637         enum { TRY_CURDIR_PARSE = 3 };
638
639         FILE *f;
640         const char *filename;
641         char buf[160];
642
643         /* discard old rules */
644         free_Htaccess_IP_list(&ip_a_d);
645         flg_deny_all = 0;
646         /* retain previous auth and mime config only for subdir parse */
647         if (flag != SUBDIR_PARSE) {
648                 free_Htaccess_list(&mime_a);
649 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
650                 free_Htaccess_list(&g_auth);
651 #endif
652 #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
653                 free_Htaccess_list(&script_i);
654 #endif
655         }
656
657         filename = opt_c_configFile;
658         if (flag == SUBDIR_PARSE || filename == NULL) {
659                 filename = alloca(strlen(path) + sizeof(HTTPD_CONF) + 2);
660                 sprintf((char *)filename, "%s/%s", path, HTTPD_CONF);
661         }
662
663         while ((f = fopen_for_read(filename)) == NULL) {
664                 if (flag >= SUBDIR_PARSE) { /* SUBDIR or TRY_CURDIR */
665                         /* config file not found, no changes to config */
666                         return;
667                 }
668                 if (flag == FIRST_PARSE) {
669                         /* -c CONFFILE given, but CONFFILE doesn't exist? */
670                         if (opt_c_configFile)
671                                 bb_simple_perror_msg_and_die(opt_c_configFile);
672                         /* else: no -c, thus we looked at /etc/httpd.conf,
673                          * and it's not there. try ./httpd.conf: */
674                 }
675                 flag = TRY_CURDIR_PARSE;
676                 filename = HTTPD_CONF;
677         }
678
679 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
680         /* in "/file:user:pass" lines, we prepend path in subdirs */
681         if (flag != SUBDIR_PARSE)
682                 path = "";
683 #endif
684         /* The lines can be:
685          *
686          * I:default_index_file
687          * H:http_home
688          * [AD]:IP[/mask]   # allow/deny, * for wildcard
689          * Ennn:error.html  # error page for status nnn
690          * P:/url:[http://]hostname[:port]/new/path # reverse proxy
691          * .ext:mime/type   # mime type
692          * *.php:/path/php  # run xxx.php through an interpreter
693          * /file:user:pass  # username and password
694          */
695         while (fgets(buf, sizeof(buf), f) != NULL) {
696                 unsigned strlen_buf;
697                 unsigned char ch;
698                 char *after_colon;
699
700                 { /* remove all whitespace, and # comments */
701                         char *p, *p0;
702
703                         p0 = buf;
704                         /* skip non-whitespace beginning. Often the whole line
705                          * is non-whitespace. We want this case to work fast,
706                          * without needless copying, therefore we don't merge
707                          * this operation into next while loop. */
708                         while ((ch = *p0) != '\0' && ch != '\n' && ch != '#'
709                          && ch != ' ' && ch != '\t'
710                         ) {
711                                 p0++;
712                         }
713                         p = p0;
714                         /* if we enter this loop, we have some whitespace.
715                          * discard it */
716                         while (ch != '\0' && ch != '\n' && ch != '#') {
717                                 if (ch != ' ' && ch != '\t') {
718                                         *p++ = ch;
719                                 }
720                                 ch = *++p0;
721                         }
722                         *p = '\0';
723                         strlen_buf = p - buf;
724                         if (strlen_buf == 0)
725                                 continue; /* empty line */
726                 }
727
728                 after_colon = strchr(buf, ':');
729                 /* strange line? */
730                 if (after_colon == NULL || *++after_colon == '\0')
731                         goto config_error;
732
733                 ch = (buf[0] & ~0x20); /* toupper if it's a letter */
734
735                 if (ch == 'I') {
736                         if (index_page != index_html)
737                                 free((char*)index_page);
738                         index_page = xstrdup(after_colon);
739                         continue;
740                 }
741
742                 /* do not allow jumping around using H in subdir's configs */
743                 if (flag == FIRST_PARSE && ch == 'H') {
744                         home_httpd = xstrdup(after_colon);
745                         xchdir(home_httpd);
746                         continue;
747                 }
748
749                 if (ch == 'A' || ch == 'D') {
750                         Htaccess_IP *pip;
751
752                         if (*after_colon == '*') {
753                                 if (ch == 'D') {
754                                         /* memorize "deny all" */
755                                         flg_deny_all = 1;
756                                 }
757                                 /* skip assumed "A:*", it is a default anyway */
758                                 continue;
759                         }
760                         /* store "allow/deny IP/mask" line */
761                         pip = xzalloc(sizeof(*pip));
762                         if (scan_ip_mask(after_colon, &pip->ip, &pip->mask)) {
763                                 /* IP{/mask} syntax error detected, protect all */
764                                 ch = 'D';
765                                 pip->mask = 0;
766                         }
767                         pip->allow_deny = ch;
768                         if (ch == 'D') {
769                                 /* Deny:from_IP - prepend */
770                                 pip->next = ip_a_d;
771                                 ip_a_d = pip;
772                         } else {
773                                 /* A:from_IP - append (thus all D's precedes A's) */
774                                 Htaccess_IP *prev_IP = ip_a_d;
775                                 if (prev_IP == NULL) {
776                                         ip_a_d = pip;
777                                 } else {
778                                         while (prev_IP->next)
779                                                 prev_IP = prev_IP->next;
780                                         prev_IP->next = pip;
781                                 }
782                         }
783                         continue;
784                 }
785
786 #if ENABLE_FEATURE_HTTPD_ERROR_PAGES
787                 if (flag == FIRST_PARSE && ch == 'E') {
788                         unsigned i;
789                         int status = atoi(buf + 1); /* error status code */
790
791                         if (status < HTTP_CONTINUE) {
792                                 goto config_error;
793                         }
794                         /* then error page; find matching status */
795                         for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
796                                 if (http_response_type[i] == status) {
797                                         /* We chdir to home_httpd, thus no need to
798                                          * concat_path_file(home_httpd, after_colon)
799                                          * here */
800                                         http_error_page[i] = xstrdup(after_colon);
801                                         break;
802                                 }
803                         }
804                         continue;
805                 }
806 #endif
807
808 #if ENABLE_FEATURE_HTTPD_PROXY
809                 if (flag == FIRST_PARSE && ch == 'P') {
810                         /* P:/url:[http://]hostname[:port]/new/path */
811                         char *url_from, *host_port, *url_to;
812                         Htaccess_Proxy *proxy_entry;
813
814                         url_from = after_colon;
815                         host_port = strchr(after_colon, ':');
816                         if (host_port == NULL) {
817                                 goto config_error;
818                         }
819                         *host_port++ = '\0';
820                         if (is_prefixed_with(host_port, "http://"))
821                                 host_port += 7;
822                         if (*host_port == '\0') {
823                                 goto config_error;
824                         }
825                         url_to = strchr(host_port, '/');
826                         if (url_to == NULL) {
827                                 goto config_error;
828                         }
829                         *url_to = '\0';
830                         proxy_entry = xzalloc(sizeof(*proxy_entry));
831                         proxy_entry->url_from = xstrdup(url_from);
832                         proxy_entry->host_port = xstrdup(host_port);
833                         *url_to = '/';
834                         proxy_entry->url_to = xstrdup(url_to);
835                         proxy_entry->next = proxy;
836                         proxy = proxy_entry;
837                         continue;
838                 }
839 #endif
840                 /* the rest of directives are non-alphabetic,
841                  * must avoid using "toupper'ed" ch */
842                 ch = buf[0];
843
844                 if (ch == '.' /* ".ext:mime/type" */
845 #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
846                  || (ch == '*' && buf[1] == '.') /* "*.php:/path/php" */
847 #endif
848                 ) {
849                         char *p;
850                         Htaccess *cur;
851
852                         cur = xzalloc(sizeof(*cur) /* includes space for NUL */ + strlen_buf);
853                         strcpy(cur->before_colon, buf);
854                         p = cur->before_colon + (after_colon - buf);
855                         p[-1] = '\0';
856                         cur->after_colon = p;
857                         if (ch == '.') {
858                                 /* .mime line: prepend to mime_a list */
859                                 cur->next = mime_a;
860                                 mime_a = cur;
861                         }
862 #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
863                         else {
864                                 /* script interpreter line: prepend to script_i list */
865                                 cur->next = script_i;
866                                 script_i = cur;
867                         }
868 #endif
869                         continue;
870                 }
871
872 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
873                 if (ch == '/') { /* "/file:user:pass" */
874                         char *p;
875                         Htaccess *cur;
876                         unsigned file_len;
877
878                         /* note: path is "" unless we are in SUBDIR parse,
879                          * otherwise it does NOT start with "/" */
880                         cur = xzalloc(sizeof(*cur) /* includes space for NUL */
881                                 + 1 + strlen(path)
882                                 + strlen_buf
883                                 );
884                         /* form "/path/file" */
885                         sprintf(cur->before_colon, "/%s%.*s",
886                                 path,
887                                 (int) (after_colon - buf - 1), /* includes "/", but not ":" */
888                                 buf);
889                         /* canonicalize it */
890                         p = bb_simplify_abs_path_inplace(cur->before_colon);
891                         file_len = p - cur->before_colon;
892                         /* add "user:pass" after NUL */
893                         strcpy(++p, after_colon);
894                         cur->after_colon = p;
895
896                         /* insert cur into g_auth */
897                         /* g_auth is sorted by decreased filename length */
898                         {
899                                 Htaccess *auth, **authp;
900
901                                 authp = &g_auth;
902                                 while ((auth = *authp) != NULL) {
903                                         if (file_len >= strlen(auth->before_colon)) {
904                                                 /* insert cur before auth */
905                                                 cur->next = auth;
906                                                 break;
907                                         }
908                                         authp = &auth->next;
909                                 }
910                                 *authp = cur;
911                         }
912                         continue;
913                 }
914 #endif /* BASIC_AUTH */
915
916                 /* the line is not recognized */
917  config_error:
918                 bb_error_msg("config error '%s' in '%s'", buf, filename);
919         } /* while (fgets) */
920
921         fclose(f);
922 }
923
924 #if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
925 /*
926  * Given a string, html-encode special characters.
927  * This is used for the -e command line option to provide an easy way
928  * for scripts to encode result data without confusing browsers.  The
929  * returned string pointer is memory allocated by malloc().
930  *
931  * Returns a pointer to the encoded string (malloced).
932  */
933 static char *encodeString(const char *string)
934 {
935         /* take the simple route and encode everything */
936         /* could possibly scan once to get length.     */
937         int len = strlen(string);
938         char *out = xmalloc(len * 6 + 1);
939         char *p = out;
940         char ch;
941
942         while ((ch = *string++) != '\0') {
943                 /* very simple check for what to encode */
944                 if (isalnum(ch))
945                         *p++ = ch;
946                 else
947                         p += sprintf(p, "&#%d;", (unsigned char) ch);
948         }
949         *p = '\0';
950         return out;
951 }
952 #endif
953
954 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
955 /*
956  * Decode a base64 data stream as per rfc1521.
957  * Note that the rfc states that non base64 chars are to be ignored.
958  * Since the decode always results in a shorter size than the input,
959  * it is OK to pass the input arg as an output arg.
960  * Parameter: a pointer to a base64 encoded string.
961  * Decoded data is stored in-place.
962  */
963 static void decodeBase64(char *Data)
964 {
965         const unsigned char *in = (const unsigned char *)Data;
966         /* The decoded size will be at most 3/4 the size of the encoded */
967         unsigned ch = 0;
968         int i = 0;
969
970         while (*in) {
971                 int t = *in++;
972
973                 if (t >= '0' && t <= '9')
974                         t = t - '0' + 52;
975                 else if (t >= 'A' && t <= 'Z')
976                         t = t - 'A';
977                 else if (t >= 'a' && t <= 'z')
978                         t = t - 'a' + 26;
979                 else if (t == '+')
980                         t = 62;
981                 else if (t == '/')
982                         t = 63;
983                 else if (t == '=')
984                         t = 0;
985                 else
986                         continue;
987
988                 ch = (ch << 6) | t;
989                 i++;
990                 if (i == 4) {
991                         *Data++ = (char) (ch >> 16);
992                         *Data++ = (char) (ch >> 8);
993                         *Data++ = (char) ch;
994                         i = 0;
995                 }
996         }
997         *Data = '\0';
998 }
999 #endif
1000
1001 /*
1002  * Create a listen server socket on the designated port.
1003  */
1004 static int openServer(void)
1005 {
1006         unsigned n = bb_strtou(bind_addr_or_port, NULL, 10);
1007         if (!errno && n && n <= 0xffff)
1008                 n = create_and_bind_stream_or_die(NULL, n);
1009         else
1010                 n = create_and_bind_stream_or_die(bind_addr_or_port, 80);
1011         xlisten(n, 9);
1012         return n;
1013 }
1014
1015 /*
1016  * Log the connection closure and exit.
1017  */
1018 static void log_and_exit(void) NORETURN;
1019 static void log_and_exit(void)
1020 {
1021         /* Paranoia. IE said to be buggy. It may send some extra data
1022          * or be confused by us just exiting without SHUT_WR. Oh well. */
1023         shutdown(1, SHUT_WR);
1024         /* Why??
1025         (this also messes up stdin when user runs httpd -i from terminal)
1026         ndelay_on(0);
1027         while (read(STDIN_FILENO, iobuf, IOBUF_SIZE) > 0)
1028                 continue;
1029         */
1030
1031         if (verbose > 2)
1032                 bb_error_msg("closed");
1033         _exit(xfunc_error_retval);
1034 }
1035
1036 /*
1037  * Create and send HTTP response headers.
1038  * The arguments are combined and sent as one write operation.  Note that
1039  * IE will puke big-time if the headers are not sent in one packet and the
1040  * second packet is delayed for any reason.
1041  * responseNum - the result code to send.
1042  */
1043 static void send_headers(int responseNum)
1044 {
1045         static const char RFC1123FMT[] ALIGN1 = "%a, %d %b %Y %H:%M:%S GMT";
1046         /* Fixed size 29-byte string. Example: Sun, 06 Nov 1994 08:49:37 GMT */
1047         char date_str[40]; /* using a bit larger buffer to paranoia reasons */
1048
1049         struct tm tm;
1050         const char *responseString = "";
1051         const char *infoString = NULL;
1052 #if ENABLE_FEATURE_HTTPD_ERROR_PAGES
1053         const char *error_page = NULL;
1054 #endif
1055         unsigned i;
1056         time_t timer = time(NULL);
1057         int len;
1058
1059         for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
1060                 if (http_response_type[i] == responseNum) {
1061                         responseString = http_response[i].name;
1062                         infoString = http_response[i].info;
1063 #if ENABLE_FEATURE_HTTPD_ERROR_PAGES
1064                         error_page = http_error_page[i];
1065 #endif
1066                         break;
1067                 }
1068         }
1069
1070         if (verbose)
1071                 bb_error_msg("response:%u", responseNum);
1072
1073         /* We use sprintf, not snprintf (it's less code).
1074          * iobuf[] is several kbytes long and all headers we generate
1075          * always fit into those kbytes.
1076          */
1077
1078         strftime(date_str, sizeof(date_str), RFC1123FMT, gmtime_r(&timer, &tm));
1079         /* ^^^ using gmtime_r() instead of gmtime() to not use static data */
1080         len = sprintf(iobuf,
1081                         "HTTP/1.0 %d %s\r\n"
1082                         "Content-type: %s\r\n"
1083                         "Date: %s\r\n"
1084                         "Connection: close\r\n",
1085                         responseNum, responseString,
1086                         /* if it's error message, then it's HTML */
1087                         (responseNum == HTTP_OK ? found_mime_type : "text/html"),
1088                         date_str
1089         );
1090
1091 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1092         if (responseNum == HTTP_UNAUTHORIZED) {
1093                 len += sprintf(iobuf + len,
1094                                 "WWW-Authenticate: Basic realm=\"%.999s\"\r\n",
1095                                 g_realm /* %.999s protects from overflowing iobuf[] */
1096                 );
1097         }
1098 #endif
1099         if (responseNum == HTTP_MOVED_TEMPORARILY) {
1100                 /* Responding to "GET /dir" with
1101                  * "HTTP/1.0 302 Found" "Location: /dir/"
1102                  * - IOW, asking them to repeat with a slash.
1103                  * Here, overflow IS possible, can't use sprintf:
1104                  * mkdir test
1105                  * python -c 'print("get /test?" + ("x" * 8192))' | busybox httpd -i -h .
1106                  */
1107                 len += snprintf(iobuf + len, IOBUF_SIZE-3 - len,
1108                                 "Location: %s/%s%s\r\n",
1109                                 found_moved_temporarily,
1110                                 (g_query ? "?" : ""),
1111                                 (g_query ? g_query : "")
1112                 );
1113                 if (len > IOBUF_SIZE-3)
1114                         len = IOBUF_SIZE-3;
1115         }
1116
1117 #if ENABLE_FEATURE_HTTPD_ERROR_PAGES
1118         if (error_page && access(error_page, R_OK) == 0) {
1119                 iobuf[len++] = '\r';
1120                 iobuf[len++] = '\n';
1121                 if (DEBUG) {
1122                         iobuf[len] = '\0';
1123                         fprintf(stderr, "headers: '%s'\n", iobuf);
1124                 }
1125                 full_write(STDOUT_FILENO, iobuf, len);
1126                 if (DEBUG)
1127                         fprintf(stderr, "writing error page: '%s'\n", error_page);
1128                 return send_file_and_exit(error_page, SEND_BODY);
1129         }
1130 #endif
1131
1132         if (file_size != -1) {    /* file */
1133                 strftime(date_str, sizeof(date_str), RFC1123FMT, gmtime_r(&last_mod, &tm));
1134 #if ENABLE_FEATURE_HTTPD_RANGES
1135                 if (responseNum == HTTP_PARTIAL_CONTENT) {
1136                         len += sprintf(iobuf + len,
1137                                 "Content-Range: bytes %"OFF_FMT"u-%"OFF_FMT"u/%"OFF_FMT"u\r\n",
1138                                         range_start,
1139                                         range_end,
1140                                         file_size
1141                         );
1142                         file_size = range_end - range_start + 1;
1143                 }
1144 #endif
1145                 len += sprintf(iobuf + len,
1146 #if ENABLE_FEATURE_HTTPD_RANGES
1147                         "Accept-Ranges: bytes\r\n"
1148 #endif
1149                         "Last-Modified: %s\r\n"
1150                         "%s %"OFF_FMT"u\r\n",
1151                                 date_str,
1152                                 content_gzip ? "Transfer-Length:" : "Content-Length:",
1153                                 file_size
1154                 );
1155         }
1156
1157         if (content_gzip)
1158                 len += sprintf(iobuf + len, "Content-Encoding: gzip\r\n");
1159
1160         iobuf[len++] = '\r';
1161         iobuf[len++] = '\n';
1162         if (infoString) {
1163                 len += sprintf(iobuf + len,
1164                                 "<HTML><HEAD><TITLE>%d %s</TITLE></HEAD>\n"
1165                                 "<BODY><H1>%d %s</H1>\n"
1166                                 "%s\n"
1167                                 "</BODY></HTML>\n",
1168                                 responseNum, responseString,
1169                                 responseNum, responseString,
1170                                 infoString
1171                 );
1172         }
1173         if (DEBUG) {
1174                 iobuf[len] = '\0';
1175                 fprintf(stderr, "headers: '%s'\n", iobuf);
1176         }
1177         if (full_write(STDOUT_FILENO, iobuf, len) != len) {
1178                 if (verbose > 1)
1179                         bb_perror_msg("error");
1180                 log_and_exit();
1181         }
1182 }
1183
1184 static void send_headers_and_exit(int responseNum) NORETURN;
1185 static void send_headers_and_exit(int responseNum)
1186 {
1187         IF_FEATURE_HTTPD_GZIP(content_gzip = 0;)
1188         send_headers(responseNum);
1189         log_and_exit();
1190 }
1191
1192 /*
1193  * Read from the socket until '\n' or EOF. '\r' chars are removed.
1194  * '\n' is replaced with NUL.
1195  * Return number of characters read or 0 if nothing is read
1196  * ('\r' and '\n' are not counted).
1197  * Data is returned in iobuf.
1198  */
1199 static int get_line(void)
1200 {
1201         int count = 0;
1202         char c;
1203
1204         alarm(HEADER_READ_TIMEOUT);
1205         while (1) {
1206                 if (hdr_cnt <= 0) {
1207                         hdr_cnt = safe_read(STDIN_FILENO, hdr_buf, sizeof_hdr_buf);
1208                         if (hdr_cnt <= 0)
1209                                 break;
1210                         hdr_ptr = hdr_buf;
1211                 }
1212                 iobuf[count] = c = *hdr_ptr++;
1213                 hdr_cnt--;
1214
1215                 if (c == '\r')
1216                         continue;
1217                 if (c == '\n') {
1218                         iobuf[count] = '\0';
1219                         break;
1220                 }
1221                 if (count < (IOBUF_SIZE - 1))      /* check overflow */
1222                         count++;
1223         }
1224         return count;
1225 }
1226
1227 #if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
1228
1229 /* gcc 4.2.1 fares better with NOINLINE */
1230 static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len) NORETURN;
1231 static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len)
1232 {
1233         enum { FROM_CGI = 1, TO_CGI = 2 }; /* indexes in pfd[] */
1234         struct pollfd pfd[3];
1235         int out_cnt; /* we buffer a bit of initial CGI output */
1236         int count;
1237
1238         /* iobuf is used for CGI -> network data,
1239          * hdr_buf is for network -> CGI data (POSTDATA) */
1240
1241         /* If CGI dies, we still want to correctly finish reading its output
1242          * and send it to the peer. So please no SIGPIPEs! */
1243         signal(SIGPIPE, SIG_IGN);
1244
1245         // We inconsistently handle a case when more POSTDATA from network
1246         // is coming than we expected. We may give *some part* of that
1247         // extra data to CGI.
1248
1249         //if (hdr_cnt > post_len) {
1250         //      /* We got more POSTDATA from network than we expected */
1251         //      hdr_cnt = post_len;
1252         //}
1253         post_len -= hdr_cnt;
1254         /* post_len - number of POST bytes not yet read from network */
1255
1256         /* NB: breaking out of this loop jumps to log_and_exit() */
1257         out_cnt = 0;
1258         pfd[FROM_CGI].fd = fromCgi_rd;
1259         pfd[FROM_CGI].events = POLLIN;
1260         pfd[TO_CGI].fd = toCgi_wr;
1261         while (1) {
1262                 /* Note: even pfd[0].events == 0 won't prevent
1263                  * revents == POLLHUP|POLLERR reports from closed stdin.
1264                  * Setting fd to -1 works: */
1265                 pfd[0].fd = -1;
1266                 pfd[0].events = POLLIN;
1267                 pfd[0].revents = 0; /* probably not needed, paranoia */
1268
1269                 /* We always poll this fd, thus kernel always sets revents: */
1270                 /*pfd[FROM_CGI].events = POLLIN; - moved out of loop */
1271                 /*pfd[FROM_CGI].revents = 0; - not needed */
1272
1273                 /* gcc-4.8.0 still doesnt fill two shorts with one insn :( */
1274                 /* http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47059 */
1275                 /* hopefully one day it will... */
1276                 pfd[TO_CGI].events = POLLOUT;
1277                 pfd[TO_CGI].revents = 0; /* needed! */
1278
1279                 if (toCgi_wr && hdr_cnt <= 0) {
1280                         if (post_len > 0) {
1281                                 /* Expect more POST data from network */
1282                                 pfd[0].fd = 0;
1283                         } else {
1284                                 /* post_len <= 0 && hdr_cnt <= 0:
1285                                  * no more POST data to CGI,
1286                                  * let CGI see EOF on CGI's stdin */
1287                                 if (toCgi_wr != fromCgi_rd)
1288                                         close(toCgi_wr);
1289                                 toCgi_wr = 0;
1290                         }
1291                 }
1292
1293                 /* Now wait on the set of sockets */
1294                 count = safe_poll(pfd, hdr_cnt > 0 ? TO_CGI+1 : FROM_CGI+1, -1);
1295                 if (count <= 0) {
1296 #if 0
1297                         if (safe_waitpid(pid, &status, WNOHANG) <= 0) {
1298                                 /* Weird. CGI didn't exit and no fd's
1299                                  * are ready, yet poll returned?! */
1300                                 continue;
1301                         }
1302                         if (DEBUG && WIFEXITED(status))
1303                                 bb_error_msg("CGI exited, status=%d", WEXITSTATUS(status));
1304                         if (DEBUG && WIFSIGNALED(status))
1305                                 bb_error_msg("CGI killed, signal=%d", WTERMSIG(status));
1306 #endif
1307                         break;
1308                 }
1309
1310                 if (pfd[TO_CGI].revents) {
1311                         /* hdr_cnt > 0 here due to the way poll() called */
1312                         /* Have data from peer and can write to CGI */
1313                         count = safe_write(toCgi_wr, hdr_ptr, hdr_cnt);
1314                         /* Doesn't happen, we dont use nonblocking IO here
1315                          *if (count < 0 && errno == EAGAIN) {
1316                          *      ...
1317                          *} else */
1318                         if (count > 0) {
1319                                 hdr_ptr += count;
1320                                 hdr_cnt -= count;
1321                         } else {
1322                                 /* EOF/broken pipe to CGI, stop piping POST data */
1323                                 hdr_cnt = post_len = 0;
1324                         }
1325                 }
1326
1327                 if (pfd[0].revents) {
1328                         /* post_len > 0 && hdr_cnt == 0 here */
1329                         /* We expect data, prev data portion is eaten by CGI
1330                          * and there *is* data to read from the peer
1331                          * (POSTDATA) */
1332                         //count = post_len > (int)sizeof_hdr_buf ? (int)sizeof_hdr_buf : post_len;
1333                         //count = safe_read(STDIN_FILENO, hdr_buf, count);
1334                         count = safe_read(STDIN_FILENO, hdr_buf, sizeof_hdr_buf);
1335                         if (count > 0) {
1336                                 hdr_cnt = count;
1337                                 hdr_ptr = hdr_buf;
1338                                 post_len -= count;
1339                         } else {
1340                                 /* no more POST data can be read */
1341                                 post_len = 0;
1342                         }
1343                 }
1344
1345                 if (pfd[FROM_CGI].revents) {
1346                         /* There is something to read from CGI */
1347                         char *rbuf = iobuf;
1348
1349                         /* Are we still buffering CGI output? */
1350                         if (out_cnt >= 0) {
1351                                 /* HTTP_200[] has single "\r\n" at the end.
1352                                  * According to http://hoohoo.ncsa.uiuc.edu/cgi/out.html,
1353                                  * CGI scripts MUST send their own header terminated by
1354                                  * empty line, then data. That's why we have only one
1355                                  * <cr><lf> pair here. We will output "200 OK" line
1356                                  * if needed, but CGI still has to provide blank line
1357                                  * between header and body */
1358
1359                                 /* Must use safe_read, not full_read, because
1360                                  * CGI may output a few first bytes and then wait
1361                                  * for POSTDATA without closing stdout.
1362                                  * With full_read we may wait here forever. */
1363                                 count = safe_read(fromCgi_rd, rbuf + out_cnt, PIPE_BUF - 8);
1364                                 if (count <= 0) {
1365                                         /* eof (or error) and there was no "HTTP",
1366                                          * so write it, then write received data */
1367                                         if (out_cnt) {
1368                                                 full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1);
1369                                                 full_write(STDOUT_FILENO, rbuf, out_cnt);
1370                                         }
1371                                         break; /* CGI stdout is closed, exiting */
1372                                 }
1373                                 out_cnt += count;
1374                                 count = 0;
1375                                 /* "Status" header format is: "Status: 302 Redirected\r\n" */
1376                                 if (out_cnt >= 8 && memcmp(rbuf, "Status: ", 8) == 0) {
1377                                         /* send "HTTP/1.0 " */
1378                                         if (full_write(STDOUT_FILENO, HTTP_200, 9) != 9)
1379                                                 break;
1380                                         /* skip "Status: " (including space, sending "HTTP/1.0  NNN" is wrong) */
1381                                         rbuf += 8;
1382                                         count = out_cnt - 8;
1383                                         out_cnt = -1; /* buffering off */
1384                                 } else if (out_cnt >= 4) {
1385                                         /* Did CGI add "HTTP"? */
1386                                         if (memcmp(rbuf, HTTP_200, 4) != 0) {
1387                                                 /* there is no "HTTP", do it ourself */
1388                                                 if (full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1) != sizeof(HTTP_200)-1)
1389                                                         break;
1390                                         }
1391                                         /* Commented out:
1392                                         if (!strstr(rbuf, "ontent-")) {
1393                                                 full_write(s, "Content-type: text/plain\r\n\r\n", 28);
1394                                         }
1395                                          * Counter-example of valid CGI without Content-type:
1396                                          * echo -en "HTTP/1.0 302 Found\r\n"
1397                                          * echo -en "Location: http://www.busybox.net\r\n"
1398                                          * echo -en "\r\n"
1399                                          */
1400                                         count = out_cnt;
1401                                         out_cnt = -1; /* buffering off */
1402                                 }
1403                         } else {
1404                                 count = safe_read(fromCgi_rd, rbuf, PIPE_BUF);
1405                                 if (count <= 0)
1406                                         break;  /* eof (or error) */
1407                         }
1408                         if (full_write(STDOUT_FILENO, rbuf, count) != count)
1409                                 break;
1410                         if (DEBUG)
1411                                 fprintf(stderr, "cgi read %d bytes: '%.*s'\n", count, count, rbuf);
1412                 } /* if (pfd[FROM_CGI].revents) */
1413         } /* while (1) */
1414         log_and_exit();
1415 }
1416 #endif
1417
1418 #if ENABLE_FEATURE_HTTPD_CGI
1419
1420 static void setenv1(const char *name, const char *value)
1421 {
1422         setenv(name, value ? value : "", 1);
1423 }
1424
1425 /*
1426  * Spawn CGI script, forward CGI's stdin/out <=> network
1427  *
1428  * Environment variables are set up and the script is invoked with pipes
1429  * for stdin/stdout.  If a POST is being done the script is fed the POST
1430  * data in addition to setting the QUERY_STRING variable (for GETs or POSTs).
1431  *
1432  * Parameters:
1433  * const char *url              The requested URL (with leading /).
1434  * const char *orig_uri         The original URI before rewriting (if any)
1435  * int post_len                 Length of the POST body.
1436  * const char *cookie           For set HTTP_COOKIE.
1437  * const char *content_type     For set CONTENT_TYPE.
1438  */
1439 static void send_cgi_and_exit(
1440                 const char *url,
1441                 const char *orig_uri,
1442                 const char *request,
1443                 int post_len,
1444                 const char *cookie,
1445                 const char *content_type) NORETURN;
1446 static void send_cgi_and_exit(
1447                 const char *url,
1448                 const char *orig_uri,
1449                 const char *request,
1450                 int post_len,
1451                 const char *cookie,
1452                 const char *content_type)
1453 {
1454         struct fd_pair fromCgi;  /* CGI -> httpd pipe */
1455         struct fd_pair toCgi;    /* httpd -> CGI pipe */
1456         char *script, *last_slash;
1457         int pid;
1458
1459         /* Make a copy. NB: caller guarantees:
1460          * url[0] == '/', url[1] != '/' */
1461         url = xstrdup(url);
1462
1463         /*
1464          * We are mucking with environment _first_ and then vfork/exec,
1465          * this allows us to use vfork safely. Parent doesn't care about
1466          * these environment changes anyway.
1467          */
1468
1469         /* Check for [dirs/]script.cgi/PATH_INFO */
1470         last_slash = script = (char*)url;
1471         while ((script = strchr(script + 1, '/')) != NULL) {
1472                 int dir;
1473                 *script = '\0';
1474                 dir = is_directory(url + 1, /*followlinks:*/ 1);
1475                 *script = '/';
1476                 if (!dir) {
1477                         /* not directory, found script.cgi/PATH_INFO */
1478                         break;
1479                 }
1480                 /* is directory, find next '/' */
1481                 last_slash = script;
1482         }
1483         setenv1("PATH_INFO", script);   /* set to /PATH_INFO or "" */
1484         setenv1("REQUEST_METHOD", request);
1485         if (g_query) {
1486                 putenv(xasprintf("%s=%s?%s", "REQUEST_URI", orig_uri, g_query));
1487         } else {
1488                 setenv1("REQUEST_URI", orig_uri);
1489         }
1490         if (script != NULL)
1491                 *script = '\0';         /* cut off /PATH_INFO */
1492
1493         /* SCRIPT_FILENAME is required by PHP in CGI mode */
1494         if (home_httpd[0] == '/') {
1495                 char *fullpath = concat_path_file(home_httpd, url);
1496                 setenv1("SCRIPT_FILENAME", fullpath);
1497         }
1498         /* set SCRIPT_NAME as full path: /cgi-bin/dirs/script.cgi */
1499         setenv1("SCRIPT_NAME", url);
1500         /* http://hoohoo.ncsa.uiuc.edu/cgi/env.html:
1501          * QUERY_STRING: The information which follows the ? in the URL
1502          * which referenced this script. This is the query information.
1503          * It should not be decoded in any fashion. This variable
1504          * should always be set when there is query information,
1505          * regardless of command line decoding. */
1506         /* (Older versions of bbox seem to do some decoding) */
1507         setenv1("QUERY_STRING", g_query);
1508         putenv((char*)"SERVER_SOFTWARE=busybox httpd/"BB_VER);
1509         putenv((char*)"SERVER_PROTOCOL=HTTP/1.0");
1510         putenv((char*)"GATEWAY_INTERFACE=CGI/1.1");
1511         /* Having _separate_ variables for IP and port defeats
1512          * the purpose of having socket abstraction. Which "port"
1513          * are you using on Unix domain socket?
1514          * IOW - REMOTE_PEER="1.2.3.4:56" makes much more sense.
1515          * Oh well... */
1516         {
1517                 char *p = rmt_ip_str ? rmt_ip_str : (char*)"";
1518                 char *cp = strrchr(p, ':');
1519                 if (ENABLE_FEATURE_IPV6 && cp && strchr(cp, ']'))
1520                         cp = NULL;
1521                 if (cp) *cp = '\0'; /* delete :PORT */
1522                 setenv1("REMOTE_ADDR", p);
1523                 if (cp) {
1524                         *cp = ':';
1525 #if ENABLE_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
1526                         setenv1("REMOTE_PORT", cp + 1);
1527 #endif
1528                 }
1529         }
1530         setenv1("HTTP_USER_AGENT", G.user_agent);
1531         if (G.http_accept)
1532                 setenv1("HTTP_ACCEPT", G.http_accept);
1533         if (G.http_accept_language)
1534                 setenv1("HTTP_ACCEPT_LANGUAGE", G.http_accept_language);
1535         if (post_len)
1536                 putenv(xasprintf("CONTENT_LENGTH=%d", post_len));
1537         if (cookie)
1538                 setenv1("HTTP_COOKIE", cookie);
1539         if (content_type)
1540                 setenv1("CONTENT_TYPE", content_type);
1541 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1542         if (remoteuser) {
1543                 setenv1("REMOTE_USER", remoteuser);
1544                 putenv((char*)"AUTH_TYPE=Basic");
1545         }
1546 #endif
1547         if (G.referer)
1548                 setenv1("HTTP_REFERER", G.referer);
1549         setenv1("HTTP_HOST", G.host); /* set to "" if NULL */
1550         /* setenv1("SERVER_NAME", safe_gethostname()); - don't do this,
1551          * just run "env SERVER_NAME=xyz httpd ..." instead */
1552
1553         xpiped_pair(fromCgi);
1554         xpiped_pair(toCgi);
1555
1556         pid = vfork();
1557         if (pid < 0) {
1558                 /* TODO: log perror? */
1559                 log_and_exit();
1560         }
1561
1562         if (pid == 0) {
1563                 /* Child process */
1564                 char *argv[3];
1565
1566                 xfunc_error_retval = 242;
1567
1568                 /* NB: close _first_, then move fds! */
1569                 close(toCgi.wr);
1570                 close(fromCgi.rd);
1571                 xmove_fd(toCgi.rd, 0);  /* replace stdin with the pipe */
1572                 xmove_fd(fromCgi.wr, 1);  /* replace stdout with the pipe */
1573                 /* User seeing stderr output can be a security problem.
1574                  * If CGI really wants that, it can always do dup itself. */
1575                 /* dup2(1, 2); */
1576
1577                 /* Chdiring to script's dir */
1578                 script = last_slash;
1579                 if (script != url) { /* paranoia */
1580                         *script = '\0';
1581                         if (chdir(url + 1) != 0) {
1582                                 bb_perror_msg("can't change directory to '%s'", url + 1);
1583                                 goto error_execing_cgi;
1584                         }
1585                         // not needed: *script = '/';
1586                 }
1587                 script++;
1588
1589                 /* set argv[0] to name without path */
1590                 argv[0] = script;
1591                 argv[1] = NULL;
1592
1593 #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
1594                 {
1595                         char *suffix = strrchr(script, '.');
1596
1597                         if (suffix) {
1598                                 Htaccess *cur;
1599                                 for (cur = script_i; cur; cur = cur->next) {
1600                                         if (strcmp(cur->before_colon + 1, suffix) == 0) {
1601                                                 /* found interpreter name */
1602                                                 argv[0] = cur->after_colon;
1603                                                 argv[1] = script;
1604                                                 argv[2] = NULL;
1605                                                 break;
1606                                         }
1607                                 }
1608                         }
1609                 }
1610 #endif
1611                 /* restore default signal dispositions for CGI process */
1612                 bb_signals(0
1613                         | (1 << SIGCHLD)
1614                         | (1 << SIGPIPE)
1615                         | (1 << SIGHUP)
1616                         , SIG_DFL);
1617
1618                 /* _NOT_ execvp. We do not search PATH. argv[0] is a filename
1619                  * without any dir components and will only match a file
1620                  * in the current directory */
1621                 execv(argv[0], argv);
1622                 if (verbose)
1623                         bb_perror_msg("can't execute '%s'", argv[0]);
1624  error_execing_cgi:
1625                 /* send to stdout
1626                  * (we are CGI here, our stdout is pumped to the net) */
1627                 send_headers_and_exit(HTTP_NOT_FOUND);
1628         } /* end child */
1629
1630         /* Parent process */
1631
1632         /* Restore variables possibly changed by child */
1633         xfunc_error_retval = 0;
1634
1635         /* Pump data */
1636         close(fromCgi.wr);
1637         close(toCgi.rd);
1638         cgi_io_loop_and_exit(fromCgi.rd, toCgi.wr, post_len);
1639 }
1640
1641 #endif          /* FEATURE_HTTPD_CGI */
1642
1643 /*
1644  * Send a file response to a HTTP request, and exit
1645  *
1646  * Parameters:
1647  * const char *url  The requested URL (with leading /).
1648  * what             What to send (headers/body/both).
1649  */
1650 static NOINLINE void send_file_and_exit(const char *url, int what)
1651 {
1652         char *suffix;
1653         int fd;
1654         ssize_t count;
1655
1656         if (content_gzip) {
1657                 /* does <url>.gz exist? Then use it instead */
1658                 char *gzurl = xasprintf("%s.gz", url);
1659                 fd = open(gzurl, O_RDONLY);
1660                 free(gzurl);
1661                 if (fd != -1) {
1662                         struct stat sb;
1663                         fstat(fd, &sb);
1664                         file_size = sb.st_size;
1665                         last_mod = sb.st_mtime;
1666                 } else {
1667                         IF_FEATURE_HTTPD_GZIP(content_gzip = 0;)
1668                         fd = open(url, O_RDONLY);
1669                 }
1670         } else {
1671                 fd = open(url, O_RDONLY);
1672         }
1673         if (fd < 0) {
1674                 if (DEBUG)
1675                         bb_perror_msg("can't open '%s'", url);
1676                 /* Error pages are sent by using send_file_and_exit(SEND_BODY).
1677                  * IOW: it is unsafe to call send_headers_and_exit
1678                  * if what is SEND_BODY! Can recurse! */
1679                 if (what != SEND_BODY)
1680                         send_headers_and_exit(HTTP_NOT_FOUND);
1681                 log_and_exit();
1682         }
1683         /* If you want to know about EPIPE below
1684          * (happens if you abort downloads from local httpd): */
1685         signal(SIGPIPE, SIG_IGN);
1686
1687         /* If not found, default is "application/octet-stream" */
1688         found_mime_type = "application/octet-stream";
1689         suffix = strrchr(url, '.');
1690         if (suffix) {
1691                 static const char suffixTable[] ALIGN1 =
1692                         /* Shorter suffix must be first:
1693                          * ".html.htm" will fail for ".htm"
1694                          */
1695                         ".txt.h.c.cc.cpp\0" "text/plain\0"
1696                         /* .htm line must be after .h line */
1697                         ".htm.html\0" "text/html\0"
1698                         ".jpg.jpeg\0" "image/jpeg\0"
1699                         ".gif\0"      "image/gif\0"
1700                         ".png\0"      "image/png\0"
1701                         /* .css line must be after .c line */
1702                         ".css\0"      "text/css\0"
1703                         ".wav\0"      "audio/wav\0"
1704                         ".avi\0"      "video/x-msvideo\0"
1705                         ".qt.mov\0"   "video/quicktime\0"
1706                         ".mpe.mpeg\0" "video/mpeg\0"
1707                         ".mid.midi\0" "audio/midi\0"
1708                         ".mp3\0"      "audio/mpeg\0"
1709 #if 0  /* unpopular */
1710                         ".au\0"       "audio/basic\0"
1711                         ".pac\0"      "application/x-ns-proxy-autoconfig\0"
1712                         ".vrml.wrl\0" "model/vrml\0"
1713 #endif
1714                         /* compiler adds another "\0" here */
1715                 ;
1716                 Htaccess *cur;
1717
1718                 /* Examine built-in table */
1719                 const char *table = suffixTable;
1720                 const char *table_next;
1721                 for (; *table; table = table_next) {
1722                         const char *try_suffix;
1723                         const char *mime_type;
1724                         mime_type  = table + strlen(table) + 1;
1725                         table_next = mime_type + strlen(mime_type) + 1;
1726                         try_suffix = strstr(table, suffix);
1727                         if (!try_suffix)
1728                                 continue;
1729                         try_suffix += strlen(suffix);
1730                         if (*try_suffix == '\0' || *try_suffix == '.') {
1731                                 found_mime_type = mime_type;
1732                                 break;
1733                         }
1734                         /* Example: strstr(table, ".av") != NULL, but it
1735                          * does not match ".avi" after all and we end up here.
1736                          * The table is arranged so that in this case we know
1737                          * that it can't match anything in the following lines,
1738                          * and we stop the search: */
1739                         break;
1740                 }
1741                 /* ...then user's table */
1742                 for (cur = mime_a; cur; cur = cur->next) {
1743                         if (strcmp(cur->before_colon, suffix) == 0) {
1744                                 found_mime_type = cur->after_colon;
1745                                 break;
1746                         }
1747                 }
1748         }
1749
1750         if (DEBUG)
1751                 bb_error_msg("sending file '%s' content-type: %s",
1752                         url, found_mime_type);
1753
1754 #if ENABLE_FEATURE_HTTPD_RANGES
1755         if (what == SEND_BODY /* err pages and ranges don't mix */
1756          || content_gzip /* we are sending compressed page: can't do ranges */  ///why?
1757         ) {
1758                 range_start = -1;
1759         }
1760         range_len = MAXINT(off_t);
1761         if (range_start >= 0) {
1762                 if (!range_end || range_end > file_size - 1) {
1763                         range_end = file_size - 1;
1764                 }
1765                 if (range_end < range_start
1766                  || lseek(fd, range_start, SEEK_SET) != range_start
1767                 ) {
1768                         lseek(fd, 0, SEEK_SET);
1769                         range_start = -1;
1770                 } else {
1771                         range_len = range_end - range_start + 1;
1772                         send_headers(HTTP_PARTIAL_CONTENT);
1773                         what = SEND_BODY;
1774                 }
1775         }
1776 #endif
1777         if (what & SEND_HEADERS)
1778                 send_headers(HTTP_OK);
1779 #if ENABLE_FEATURE_USE_SENDFILE
1780         {
1781                 off_t offset = range_start;
1782                 while (1) {
1783                         /* sz is rounded down to 64k */
1784                         ssize_t sz = MAXINT(ssize_t) - 0xffff;
1785                         IF_FEATURE_HTTPD_RANGES(if (sz > range_len) sz = range_len;)
1786                         count = sendfile(STDOUT_FILENO, fd, &offset, sz);
1787                         if (count < 0) {
1788                                 if (offset == range_start)
1789                                         break; /* fall back to read/write loop */
1790                                 goto fin;
1791                         }
1792                         IF_FEATURE_HTTPD_RANGES(range_len -= count;)
1793                         if (count == 0 || range_len == 0)
1794                                 log_and_exit();
1795                 }
1796         }
1797 #endif
1798         while ((count = safe_read(fd, iobuf, IOBUF_SIZE)) > 0) {
1799                 ssize_t n;
1800                 IF_FEATURE_HTTPD_RANGES(if (count > range_len) count = range_len;)
1801                 n = full_write(STDOUT_FILENO, iobuf, count);
1802                 if (count != n)
1803                         break;
1804                 IF_FEATURE_HTTPD_RANGES(range_len -= count;)
1805                 if (range_len == 0)
1806                         break;
1807         }
1808         if (count < 0) {
1809  IF_FEATURE_USE_SENDFILE(fin:)
1810                 if (verbose > 1)
1811                         bb_perror_msg("error");
1812         }
1813         log_and_exit();
1814 }
1815
1816 static int checkPermIP(void)
1817 {
1818         Htaccess_IP *cur;
1819
1820         for (cur = ip_a_d; cur; cur = cur->next) {
1821 #if DEBUG
1822                 fprintf(stderr,
1823                         "checkPermIP: '%s' ? '%u.%u.%u.%u/%u.%u.%u.%u'\n",
1824                         rmt_ip_str,
1825                         (unsigned char)(cur->ip >> 24),
1826                         (unsigned char)(cur->ip >> 16),
1827                         (unsigned char)(cur->ip >> 8),
1828                         (unsigned char)(cur->ip),
1829                         (unsigned char)(cur->mask >> 24),
1830                         (unsigned char)(cur->mask >> 16),
1831                         (unsigned char)(cur->mask >> 8),
1832                         (unsigned char)(cur->mask)
1833                 );
1834 #endif
1835                 if ((rmt_ip & cur->mask) == cur->ip)
1836                         return (cur->allow_deny == 'A'); /* A -> 1 */
1837         }
1838
1839         return !flg_deny_all; /* depends on whether we saw "D:*" */
1840 }
1841
1842 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1843
1844 # if ENABLE_PAM
1845 struct pam_userinfo {
1846         const char *name;
1847         const char *pw;
1848 };
1849
1850 static int pam_talker(int num_msg,
1851                 const struct pam_message **msg,
1852                 struct pam_response **resp,
1853                 void *appdata_ptr)
1854 {
1855         int i;
1856         struct pam_userinfo *userinfo = (struct pam_userinfo *) appdata_ptr;
1857         struct pam_response *response;
1858
1859         if (!resp || !msg || !userinfo)
1860                 return PAM_CONV_ERR;
1861
1862         /* allocate memory to store response */
1863         response = xzalloc(num_msg * sizeof(*response));
1864
1865         /* copy values */
1866         for (i = 0; i < num_msg; i++) {
1867                 const char *s;
1868
1869                 switch (msg[i]->msg_style) {
1870                 case PAM_PROMPT_ECHO_ON:
1871                         s = userinfo->name;
1872                         break;
1873                 case PAM_PROMPT_ECHO_OFF:
1874                         s = userinfo->pw;
1875                         break;
1876                 case PAM_ERROR_MSG:
1877                 case PAM_TEXT_INFO:
1878                         s = "";
1879                         break;
1880                 default:
1881                         free(response);
1882                         return PAM_CONV_ERR;
1883                 }
1884                 response[i].resp = xstrdup(s);
1885                 if (PAM_SUCCESS != 0)
1886                         response[i].resp_retcode = PAM_SUCCESS;
1887         }
1888         *resp = response;
1889         return PAM_SUCCESS;
1890 }
1891 # endif
1892
1893 /*
1894  * Config file entries are of the form "/<path>:<user>:<passwd>".
1895  * If config file has no prefix match for path, access is allowed.
1896  *
1897  * path                 The file path
1898  * user_and_passwd      "user:passwd" to validate
1899  *
1900  * Returns 1 if user_and_passwd is OK.
1901  */
1902 static int check_user_passwd(const char *path, char *user_and_passwd)
1903 {
1904         Htaccess *cur;
1905         const char *prev = NULL;
1906
1907         for (cur = g_auth; cur; cur = cur->next) {
1908                 const char *dir_prefix;
1909                 size_t len;
1910                 int r;
1911
1912                 dir_prefix = cur->before_colon;
1913
1914                 /* WHY? */
1915                 /* If already saw a match, don't accept other different matches */
1916                 if (prev && strcmp(prev, dir_prefix) != 0)
1917                         continue;
1918
1919                 if (DEBUG)
1920                         fprintf(stderr, "checkPerm: '%s' ? '%s'\n", dir_prefix, user_and_passwd);
1921
1922                 /* If it's not a prefix match, continue searching */
1923                 len = strlen(dir_prefix);
1924                 if (len != 1 /* dir_prefix "/" matches all, don't need to check */
1925                  && (strncmp(dir_prefix, path, len) != 0
1926                     || (path[len] != '/' && path[len] != '\0')
1927                     )
1928                 ) {
1929                         continue;
1930                 }
1931
1932                 /* Path match found */
1933                 prev = dir_prefix;
1934
1935                 if (ENABLE_FEATURE_HTTPD_AUTH_MD5) {
1936                         char *colon_after_user;
1937                         const char *passwd;
1938 # if ENABLE_FEATURE_SHADOWPASSWDS && !ENABLE_PAM
1939                         char sp_buf[256];
1940 # endif
1941
1942                         colon_after_user = strchr(user_and_passwd, ':');
1943                         if (!colon_after_user)
1944                                 goto bad_input;
1945
1946                         /* compare "user:" */
1947                         if (cur->after_colon[0] != '*'
1948                          && strncmp(cur->after_colon, user_and_passwd,
1949                                         colon_after_user - user_and_passwd + 1) != 0
1950                         ) {
1951                                 continue;
1952                         }
1953                         /* this cfg entry is '*' or matches username from peer */
1954
1955                         passwd = strchr(cur->after_colon, ':');
1956                         if (!passwd)
1957                                 goto bad_input;
1958                         passwd++;
1959                         if (passwd[0] == '*') {
1960 # if ENABLE_PAM
1961                                 struct pam_userinfo userinfo;
1962                                 struct pam_conv conv_info = { &pam_talker, (void *) &userinfo };
1963                                 pam_handle_t *pamh;
1964
1965                                 *colon_after_user = '\0';
1966                                 userinfo.name = user_and_passwd;
1967                                 userinfo.pw = colon_after_user + 1;
1968                                 r = pam_start("httpd", user_and_passwd, &conv_info, &pamh) != PAM_SUCCESS;
1969                                 if (r == 0) {
1970                                         r = pam_authenticate(pamh, PAM_DISALLOW_NULL_AUTHTOK) != PAM_SUCCESS
1971                                          || pam_acct_mgmt(pamh, PAM_DISALLOW_NULL_AUTHTOK)    != PAM_SUCCESS
1972                                         ;
1973                                         pam_end(pamh, PAM_SUCCESS);
1974                                 }
1975                                 *colon_after_user = ':';
1976                                 goto end_check_passwd;
1977 # else
1978 #  if ENABLE_FEATURE_SHADOWPASSWDS
1979                                 /* Using _r function to avoid pulling in static buffers */
1980                                 struct spwd spw;
1981 #  endif
1982                                 struct passwd *pw;
1983
1984                                 *colon_after_user = '\0';
1985                                 pw = getpwnam(user_and_passwd);
1986                                 *colon_after_user = ':';
1987                                 if (!pw || !pw->pw_passwd)
1988                                         continue;
1989                                 passwd = pw->pw_passwd;
1990 #  if ENABLE_FEATURE_SHADOWPASSWDS
1991                                 if ((passwd[0] == 'x' || passwd[0] == '*') && !passwd[1]) {
1992                                         /* getspnam_r may return 0 yet set result to NULL.
1993                                          * At least glibc 2.4 does this. Be extra paranoid here. */
1994                                         struct spwd *result = NULL;
1995                                         r = getspnam_r(pw->pw_name, &spw, sp_buf, sizeof(sp_buf), &result);
1996                                         if (r == 0 && result)
1997                                                 passwd = result->sp_pwdp;
1998                                 }
1999 #  endif
2000                                 /* In this case, passwd is ALWAYS encrypted:
2001                                  * it came from /etc/passwd or /etc/shadow!
2002                                  */
2003                                 goto check_encrypted;
2004 # endif /* ENABLE_PAM */
2005                         }
2006                         /* Else: passwd is from httpd.conf, it is either plaintext or encrypted */
2007
2008                         if (passwd[0] == '$' && isdigit(passwd[1])) {
2009                                 char *encrypted;
2010 # if !ENABLE_PAM
2011  check_encrypted:
2012 # endif
2013                                 /* encrypt pwd from peer and check match with local one */
2014                                 encrypted = pw_encrypt(
2015                                         /* pwd (from peer): */  colon_after_user + 1,
2016                                         /* salt: */ passwd,
2017                                         /* cleanup: */ 0
2018                                 );
2019                                 r = strcmp(encrypted, passwd);
2020                                 free(encrypted);
2021                         } else {
2022                                 /* local passwd is from httpd.conf and it's plaintext */
2023                                 r = strcmp(colon_after_user + 1, passwd);
2024                         }
2025                         goto end_check_passwd;
2026                 }
2027  bad_input:
2028                 /* Comparing plaintext "user:pass" in one go */
2029                 r = strcmp(cur->after_colon, user_and_passwd);
2030  end_check_passwd:
2031                 if (r == 0) {
2032                         remoteuser = xstrndup(user_and_passwd,
2033                                 strchrnul(user_and_passwd, ':') - user_and_passwd
2034                         );
2035                         return 1; /* Ok */
2036                 }
2037         } /* for */
2038
2039         /* 0(bad) if prev is set: matches were found but passwd was wrong */
2040         return (prev == NULL);
2041 }
2042 #endif  /* FEATURE_HTTPD_BASIC_AUTH */
2043
2044 #if ENABLE_FEATURE_HTTPD_PROXY
2045 static Htaccess_Proxy *find_proxy_entry(const char *url)
2046 {
2047         Htaccess_Proxy *p;
2048         for (p = proxy; p; p = p->next) {
2049                 if (is_prefixed_with(url, p->url_from))
2050                         return p;
2051         }
2052         return NULL;
2053 }
2054 #endif
2055
2056 /*
2057  * Handle timeouts
2058  */
2059 static void send_REQUEST_TIMEOUT_and_exit(int sig) NORETURN;
2060 static void send_REQUEST_TIMEOUT_and_exit(int sig UNUSED_PARAM)
2061 {
2062         send_headers_and_exit(HTTP_REQUEST_TIMEOUT);
2063 }
2064
2065 /*
2066  * Handle an incoming http request and exit.
2067  */
2068 static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr) NORETURN;
2069 static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr)
2070 {
2071         static const char request_GET[] ALIGN1 = "GET";
2072         struct stat sb;
2073         char *urlcopy;
2074         char *urlp;
2075         char *tptr;
2076 #if ENABLE_FEATURE_HTTPD_CGI
2077         static const char request_HEAD[] ALIGN1 = "HEAD";
2078         const char *prequest;
2079         char *cookie = NULL;
2080         char *content_type = NULL;
2081         unsigned long length = 0;
2082 #elif ENABLE_FEATURE_HTTPD_PROXY
2083 #define prequest request_GET
2084         unsigned long length = 0;
2085 #endif
2086 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
2087         smallint authorized = -1;
2088 #endif
2089         smallint ip_allowed;
2090         char http_major_version;
2091 #if ENABLE_FEATURE_HTTPD_PROXY
2092         char http_minor_version;
2093         char *header_buf = header_buf; /* for gcc */
2094         char *header_ptr = header_ptr;
2095         Htaccess_Proxy *proxy_entry;
2096 #endif
2097
2098         /* Allocation of iobuf is postponed until now
2099          * (IOW, server process doesn't need to waste 8k) */
2100         iobuf = xmalloc(IOBUF_SIZE);
2101
2102         rmt_ip = 0;
2103         if (fromAddr->u.sa.sa_family == AF_INET) {
2104                 rmt_ip = ntohl(fromAddr->u.sin.sin_addr.s_addr);
2105         }
2106 #if ENABLE_FEATURE_IPV6
2107         if (fromAddr->u.sa.sa_family == AF_INET6
2108          && fromAddr->u.sin6.sin6_addr.s6_addr32[0] == 0
2109          && fromAddr->u.sin6.sin6_addr.s6_addr32[1] == 0
2110          && ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[2]) == 0xffff)
2111                 rmt_ip = ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[3]);
2112 #endif
2113         if (ENABLE_FEATURE_HTTPD_CGI || DEBUG || verbose) {
2114                 /* NB: can be NULL (user runs httpd -i by hand?) */
2115                 rmt_ip_str = xmalloc_sockaddr2dotted(&fromAddr->u.sa);
2116         }
2117         if (verbose) {
2118                 /* this trick makes -v logging much simpler */
2119                 if (rmt_ip_str)
2120                         applet_name = rmt_ip_str;
2121                 if (verbose > 2)
2122                         bb_error_msg("connected");
2123         }
2124
2125         /* Install timeout handler. get_line() needs it. */
2126         signal(SIGALRM, send_REQUEST_TIMEOUT_and_exit);
2127
2128         if (!get_line()) /* EOF or error or empty line */
2129                 send_headers_and_exit(HTTP_BAD_REQUEST);
2130
2131         /* Determine type of request (GET/POST) */
2132         // rfc2616: method and URI is separated by exactly one space
2133         //urlp = strpbrk(iobuf, " \t"); - no, tab isn't allowed
2134         urlp = strchr(iobuf, ' ');
2135         if (urlp == NULL)
2136                 send_headers_and_exit(HTTP_BAD_REQUEST);
2137         *urlp++ = '\0';
2138 #if ENABLE_FEATURE_HTTPD_CGI
2139         prequest = request_GET;
2140         if (strcasecmp(iobuf, prequest) != 0) {
2141                 prequest = request_HEAD;
2142                 if (strcasecmp(iobuf, prequest) != 0) {
2143                         prequest = "POST";
2144                         if (strcasecmp(iobuf, prequest) != 0)
2145                                 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
2146                 }
2147         }
2148 #else
2149         if (strcasecmp(iobuf, request_GET) != 0)
2150                 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
2151 #endif
2152         // rfc2616: method and URI is separated by exactly one space
2153         //urlp = skip_whitespace(urlp); - should not be necessary
2154         if (urlp[0] != '/')
2155                 send_headers_and_exit(HTTP_BAD_REQUEST);
2156
2157         /* Find end of URL and parse HTTP version, if any */
2158         http_major_version = '0';
2159         IF_FEATURE_HTTPD_PROXY(http_minor_version = '0';)
2160         tptr = strchrnul(urlp, ' ');
2161         /* Is it " HTTP/"? */
2162         if (tptr[0] && strncmp(tptr + 1, HTTP_200, 5) == 0) {
2163                 http_major_version = tptr[6];
2164                 IF_FEATURE_HTTPD_PROXY(http_minor_version = tptr[8];)
2165         }
2166         *tptr = '\0';
2167
2168         /* Copy URL from after "GET "/"POST " to stack-allocated char[] */
2169         urlcopy = alloca((tptr - urlp) + 2 + strlen(index_page));
2170         /*if (urlcopy == NULL)
2171          *      send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);*/
2172         strcpy(urlcopy, urlp);
2173         /* NB: urlcopy ptr is never changed after this */
2174
2175         /* Extract url args if present */
2176         /* g_query = NULL; - already is */
2177         tptr = strchr(urlcopy, '?');
2178         if (tptr) {
2179                 *tptr++ = '\0';
2180                 g_query = tptr;
2181         }
2182
2183         /* Decode URL escape sequences */
2184         tptr = percent_decode_in_place(urlcopy, /*strict:*/ 1);
2185         if (tptr == NULL)
2186                 send_headers_and_exit(HTTP_BAD_REQUEST);
2187         if (tptr == urlcopy + 1) {
2188                 /* '/' or NUL is encoded */
2189                 send_headers_and_exit(HTTP_NOT_FOUND);
2190         }
2191
2192         /* Canonicalize path */
2193         /* Algorithm stolen from libbb bb_simplify_path(),
2194          * but don't strdup, retain trailing slash, protect root */
2195         urlp = tptr = urlcopy;
2196         for (;;) {
2197                 if (*urlp == '/') {
2198                         /* skip duplicate (or initial) slash */
2199                         if (*tptr == '/') {
2200                                 goto next_char;
2201                         }
2202                         if (*tptr == '.') {
2203                                 if (tptr[1] == '.' && (tptr[2] == '/' || tptr[2] == '\0')) {
2204                                         /* "..": be careful */
2205                                         /* protect root */
2206                                         if (urlp == urlcopy)
2207                                                 send_headers_and_exit(HTTP_BAD_REQUEST);
2208                                         /* omit previous dir */
2209                                         while (*--urlp != '/')
2210                                                 continue;
2211                                         /* skip to "./" or ".<NUL>" */
2212                                         tptr++;
2213                                 }
2214                                 if (tptr[1] == '/' || tptr[1] == '\0') {
2215                                         /* skip extra "/./" */
2216                                         goto next_char;
2217                                 }
2218                         }
2219                 }
2220                 *++urlp = *tptr;
2221                 if (*urlp == '\0')
2222                         break;
2223  next_char:
2224                 tptr++;
2225         }
2226
2227         /* If URL is a directory, add '/' */
2228         if (urlp[-1] != '/') {
2229                 if (is_directory(urlcopy + 1, /*followlinks:*/ 1)) {
2230                         found_moved_temporarily = urlcopy;
2231                 }
2232         }
2233
2234         /* Log it */
2235         if (verbose > 1)
2236                 bb_error_msg("url:%s", urlcopy);
2237
2238         tptr = urlcopy;
2239         ip_allowed = checkPermIP();
2240         while (ip_allowed && (tptr = strchr(tptr + 1, '/')) != NULL) {
2241                 /* have path1/path2 */
2242                 *tptr = '\0';
2243                 if (is_directory(urlcopy + 1, /*followlinks:*/ 1)) {
2244                         /* may have subdir config */
2245                         parse_conf(urlcopy + 1, SUBDIR_PARSE);
2246                         ip_allowed = checkPermIP();
2247                 }
2248                 *tptr = '/';
2249         }
2250
2251 #if ENABLE_FEATURE_HTTPD_PROXY
2252         proxy_entry = find_proxy_entry(urlcopy);
2253         if (proxy_entry)
2254                 header_buf = header_ptr = xmalloc(IOBUF_SIZE);
2255 #endif
2256
2257         if (http_major_version >= '0') {
2258                 /* Request was with "... HTTP/nXXX", and n >= 0 */
2259
2260                 /* Read until blank line */
2261                 while (1) {
2262                         if (!get_line())
2263                                 break; /* EOF or error or empty line */
2264                         if (DEBUG)
2265                                 bb_error_msg("header: '%s'", iobuf);
2266
2267 #if ENABLE_FEATURE_HTTPD_PROXY
2268                         /* We need 2 more bytes for yet another "\r\n" -
2269                          * see near fdprintf(proxy_fd...) further below */
2270                         if (proxy_entry && (header_ptr - header_buf) < IOBUF_SIZE - 4) {
2271                                 int len = strnlen(iobuf, IOBUF_SIZE - (header_ptr - header_buf) - 4);
2272                                 memcpy(header_ptr, iobuf, len);
2273                                 header_ptr += len;
2274                                 header_ptr[0] = '\r';
2275                                 header_ptr[1] = '\n';
2276                                 header_ptr += 2;
2277                         }
2278 #endif
2279
2280 #if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
2281                         /* Try and do our best to parse more lines */
2282                         if ((STRNCASECMP(iobuf, "Content-Length:") == 0)) {
2283                                 /* extra read only for POST */
2284                                 if (prequest != request_GET
2285 # if ENABLE_FEATURE_HTTPD_CGI
2286                                  && prequest != request_HEAD
2287 # endif
2288                                 ) {
2289                                         tptr = skip_whitespace(iobuf + sizeof("Content-Length:") - 1);
2290                                         if (!tptr[0])
2291                                                 send_headers_and_exit(HTTP_BAD_REQUEST);
2292                                         /* not using strtoul: it ignores leading minus! */
2293                                         length = bb_strtou(tptr, NULL, 10);
2294                                         /* length is "ulong", but we need to pass it to int later */
2295                                         if (errno || length > INT_MAX)
2296                                                 send_headers_and_exit(HTTP_BAD_REQUEST);
2297                                 }
2298                         }
2299 #endif
2300 #if ENABLE_FEATURE_HTTPD_CGI
2301                         else if (STRNCASECMP(iobuf, "Cookie:") == 0) {
2302                                 if (!cookie) /* in case they send millions of these, do not OOM */
2303                                         cookie = xstrdup(skip_whitespace(iobuf + sizeof("Cookie:")-1));
2304                         } else if (STRNCASECMP(iobuf, "Content-Type:") == 0) {
2305                                 if (!content_type)
2306                                         content_type = xstrdup(skip_whitespace(iobuf + sizeof("Content-Type:")-1));
2307                         } else if (STRNCASECMP(iobuf, "Referer:") == 0) {
2308                                 if (!G.referer)
2309                                         G.referer = xstrdup(skip_whitespace(iobuf + sizeof("Referer:")-1));
2310                         } else if (STRNCASECMP(iobuf, "User-Agent:") == 0) {
2311                                 if (!G.user_agent)
2312                                         G.user_agent = xstrdup(skip_whitespace(iobuf + sizeof("User-Agent:")-1));
2313                         } else if (STRNCASECMP(iobuf, "Host:") == 0) {
2314                                 if (!G.host)
2315                                         G.host = xstrdup(skip_whitespace(iobuf + sizeof("Host:")-1));
2316                         } else if (STRNCASECMP(iobuf, "Accept:") == 0) {
2317                                 if (!G.http_accept)
2318                                         G.http_accept = xstrdup(skip_whitespace(iobuf + sizeof("Accept:")-1));
2319                         } else if (STRNCASECMP(iobuf, "Accept-Language:") == 0) {
2320                                 if (!G.http_accept_language)
2321                                         G.http_accept_language = xstrdup(skip_whitespace(iobuf + sizeof("Accept-Language:")-1));
2322                         }
2323 #endif
2324 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
2325                         if (STRNCASECMP(iobuf, "Authorization:") == 0) {
2326                                 /* We only allow Basic credentials.
2327                                  * It shows up as "Authorization: Basic <user>:<passwd>" where
2328                                  * "<user>:<passwd>" is base64 encoded.
2329                                  */
2330                                 tptr = skip_whitespace(iobuf + sizeof("Authorization:")-1);
2331                                 if (STRNCASECMP(tptr, "Basic") != 0)
2332                                         continue;
2333                                 tptr += sizeof("Basic")-1;
2334                                 /* decodeBase64() skips whitespace itself */
2335                                 decodeBase64(tptr);
2336                                 authorized = check_user_passwd(urlcopy, tptr);
2337                         }
2338 #endif
2339 #if ENABLE_FEATURE_HTTPD_RANGES
2340                         if (STRNCASECMP(iobuf, "Range:") == 0) {
2341                                 /* We know only bytes=NNN-[MMM] */
2342                                 char *s = skip_whitespace(iobuf + sizeof("Range:")-1);
2343                                 if (is_prefixed_with(s, "bytes=")) {
2344                                         s += sizeof("bytes=")-1;
2345                                         range_start = BB_STRTOOFF(s, &s, 10);
2346                                         if (s[0] != '-' || range_start < 0) {
2347                                                 range_start = -1;
2348                                         } else if (s[1]) {
2349                                                 range_end = BB_STRTOOFF(s+1, NULL, 10);
2350                                                 if (errno || range_end < range_start)
2351                                                         range_start = -1;
2352                                         }
2353                                 }
2354                         }
2355 #endif
2356 #if ENABLE_FEATURE_HTTPD_GZIP
2357                         if (STRNCASECMP(iobuf, "Accept-Encoding:") == 0) {
2358                                 /* Note: we do not support "gzip;q=0"
2359                                  * method of _disabling_ gzip
2360                                  * delivery. No one uses that, though */
2361                                 const char *s = strstr(iobuf, "gzip");
2362                                 if (s) {
2363                                         // want more thorough checks?
2364                                         //if (s[-1] == ' '
2365                                         // || s[-1] == ','
2366                                         // || s[-1] == ':'
2367                                         //) {
2368                                                 content_gzip = 1;
2369                                         //}
2370                                 }
2371                         }
2372 #endif
2373                 } /* while extra header reading */
2374         }
2375
2376         /* We are done reading headers, disable peer timeout */
2377         alarm(0);
2378
2379         if (strcmp(bb_basename(urlcopy), HTTPD_CONF) == 0 || !ip_allowed) {
2380                 /* protect listing [/path]/httpd.conf or IP deny */
2381                 send_headers_and_exit(HTTP_FORBIDDEN);
2382         }
2383
2384 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
2385         /* Case: no "Authorization:" was seen, but page might require passwd.
2386          * Check that with dummy user:pass */
2387         if (authorized < 0)
2388                 authorized = check_user_passwd(urlcopy, (char *) "");
2389         if (!authorized)
2390                 send_headers_and_exit(HTTP_UNAUTHORIZED);
2391 #endif
2392
2393         if (found_moved_temporarily) {
2394                 send_headers_and_exit(HTTP_MOVED_TEMPORARILY);
2395         }
2396
2397 #if ENABLE_FEATURE_HTTPD_PROXY
2398         if (proxy_entry != NULL) {
2399                 int proxy_fd;
2400                 len_and_sockaddr *lsa;
2401
2402                 lsa = host2sockaddr(proxy_entry->host_port, 80);
2403                 if (lsa == NULL)
2404                         send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2405                 proxy_fd = socket(lsa->u.sa.sa_family, SOCK_STREAM, 0);
2406                 if (proxy_fd < 0)
2407                         send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2408                 if (connect(proxy_fd, &lsa->u.sa, lsa->len) < 0)
2409                         send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2410                 fdprintf(proxy_fd, "%s %s%s%s%s HTTP/%c.%c\r\n",
2411                                 prequest, /* GET or POST */
2412                                 proxy_entry->url_to, /* url part 1 */
2413                                 urlcopy + strlen(proxy_entry->url_from), /* url part 2 */
2414                                 (g_query ? "?" : ""), /* "?" (maybe) */
2415                                 (g_query ? g_query : ""), /* query string (maybe) */
2416                                 http_major_version, http_minor_version);
2417                 header_ptr[0] = '\r';
2418                 header_ptr[1] = '\n';
2419                 header_ptr += 2;
2420                 write(proxy_fd, header_buf, header_ptr - header_buf);
2421                 free(header_buf); /* on the order of 8k, free it */
2422                 cgi_io_loop_and_exit(proxy_fd, proxy_fd, length);
2423         }
2424 #endif
2425
2426         tptr = urlcopy + 1;      /* skip first '/' */
2427
2428 #if ENABLE_FEATURE_HTTPD_CGI
2429         if (is_prefixed_with(tptr, "cgi-bin/")) {
2430                 if (tptr[8] == '\0') {
2431                         /* protect listing "cgi-bin/" */
2432                         send_headers_and_exit(HTTP_FORBIDDEN);
2433                 }
2434                 send_cgi_and_exit(urlcopy, urlcopy, prequest, length, cookie, content_type);
2435         }
2436 #endif
2437
2438         if (urlp[-1] == '/') {
2439                 /* When index_page string is appended to <dir>/ URL, it overwrites
2440                  * the query string. If we fall back to call /cgi-bin/index.cgi,
2441                  * query string would be lost and not available to the CGI.
2442                  * Work around it by making a deep copy.
2443                  */
2444                 if (ENABLE_FEATURE_HTTPD_CGI)
2445                         g_query = xstrdup(g_query); /* ok for NULL too */
2446                 strcpy(urlp, index_page);
2447         }
2448         if (stat(tptr, &sb) == 0) {
2449 #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
2450                 char *suffix = strrchr(tptr, '.');
2451                 if (suffix) {
2452                         Htaccess *cur;
2453                         for (cur = script_i; cur; cur = cur->next) {
2454                                 if (strcmp(cur->before_colon + 1, suffix) == 0) {
2455                                         send_cgi_and_exit(urlcopy, urlcopy, prequest, length, cookie, content_type);
2456                                 }
2457                         }
2458                 }
2459 #endif
2460                 file_size = sb.st_size;
2461                 last_mod = sb.st_mtime;
2462         }
2463 #if ENABLE_FEATURE_HTTPD_CGI
2464         else if (urlp[-1] == '/') {
2465                 /* It's a dir URL and there is no index.html
2466                  * Try cgi-bin/index.cgi */
2467                 if (access("/cgi-bin/index.cgi"+1, X_OK) == 0) {
2468                         urlp[0] = '\0'; /* remove index_page */
2469                         send_cgi_and_exit("/cgi-bin/index.cgi", urlcopy, prequest, length, cookie, content_type);
2470                 }
2471         }
2472         /* else fall through to send_file, it errors out if open fails: */
2473
2474         if (prequest != request_GET && prequest != request_HEAD) {
2475                 /* POST for files does not make sense */
2476                 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
2477         }
2478         send_file_and_exit(tptr,
2479                 (prequest != request_HEAD ? SEND_HEADERS_AND_BODY : SEND_HEADERS)
2480         );
2481 #else
2482         send_file_and_exit(tptr, SEND_HEADERS_AND_BODY);
2483 #endif
2484 }
2485
2486 /*
2487  * The main http server function.
2488  * Given a socket, listen for new connections and farm out
2489  * the processing as a [v]forked process.
2490  * Never returns.
2491  */
2492 #if BB_MMU
2493 static void mini_httpd(int server_socket) NORETURN;
2494 static void mini_httpd(int server_socket)
2495 {
2496         /* NB: it's best to not use xfuncs in this loop before fork().
2497          * Otherwise server may die on transient errors (temporary
2498          * out-of-memory condition, etc), which is Bad(tm).
2499          * Try to do any dangerous calls after fork.
2500          */
2501         while (1) {
2502                 int n;
2503                 len_and_sockaddr fromAddr;
2504
2505                 /* Wait for connections... */
2506                 fromAddr.len = LSA_SIZEOF_SA;
2507                 n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
2508                 if (n < 0)
2509                         continue;
2510
2511                 /* set the KEEPALIVE option to cull dead connections */
2512                 setsockopt_keepalive(n);
2513
2514                 if (fork() == 0) {
2515                         /* child */
2516                         /* Do not reload config on HUP */
2517                         signal(SIGHUP, SIG_IGN);
2518                         close(server_socket);
2519                         xmove_fd(n, 0);
2520                         xdup2(0, 1);
2521
2522                         handle_incoming_and_exit(&fromAddr);
2523                 }
2524                 /* parent, or fork failed */
2525                 close(n);
2526         } /* while (1) */
2527         /* never reached */
2528 }
2529 #else
2530 static void mini_httpd_nommu(int server_socket, int argc, char **argv) NORETURN;
2531 static void mini_httpd_nommu(int server_socket, int argc, char **argv)
2532 {
2533         char *argv_copy[argc + 2];
2534
2535         argv_copy[0] = argv[0];
2536         argv_copy[1] = (char*)"-i";
2537         memcpy(&argv_copy[2], &argv[1], argc * sizeof(argv[0]));
2538
2539         /* NB: it's best to not use xfuncs in this loop before vfork().
2540          * Otherwise server may die on transient errors (temporary
2541          * out-of-memory condition, etc), which is Bad(tm).
2542          * Try to do any dangerous calls after fork.
2543          */
2544         while (1) {
2545                 int n;
2546                 len_and_sockaddr fromAddr;
2547
2548                 /* Wait for connections... */
2549                 fromAddr.len = LSA_SIZEOF_SA;
2550                 n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
2551                 if (n < 0)
2552                         continue;
2553
2554                 /* set the KEEPALIVE option to cull dead connections */
2555                 setsockopt_keepalive(n);
2556
2557                 if (vfork() == 0) {
2558                         /* child */
2559                         /* Do not reload config on HUP */
2560                         signal(SIGHUP, SIG_IGN);
2561                         close(server_socket);
2562                         xmove_fd(n, 0);
2563                         xdup2(0, 1);
2564
2565                         /* Run a copy of ourself in inetd mode */
2566                         re_exec(argv_copy);
2567                 }
2568                 argv_copy[0][0] &= 0x7f;
2569                 /* parent, or vfork failed */
2570                 close(n);
2571         } /* while (1) */
2572         /* never reached */
2573 }
2574 #endif
2575
2576 /*
2577  * Process a HTTP connection on stdin/out.
2578  * Never returns.
2579  */
2580 static void mini_httpd_inetd(void) NORETURN;
2581 static void mini_httpd_inetd(void)
2582 {
2583         len_and_sockaddr fromAddr;
2584
2585         memset(&fromAddr, 0, sizeof(fromAddr));
2586         fromAddr.len = LSA_SIZEOF_SA;
2587         /* NB: can fail if user runs it by hand and types in http cmds */
2588         getpeername(0, &fromAddr.u.sa, &fromAddr.len);
2589         handle_incoming_and_exit(&fromAddr);
2590 }
2591
2592 static void sighup_handler(int sig UNUSED_PARAM)
2593 {
2594         parse_conf(DEFAULT_PATH_HTTPD_CONF, SIGNALED_PARSE);
2595 }
2596
2597 enum {
2598         c_opt_config_file = 0,
2599         d_opt_decode_url,
2600         h_opt_home_httpd,
2601         IF_FEATURE_HTTPD_ENCODE_URL_STR(e_opt_encode_url,)
2602         IF_FEATURE_HTTPD_BASIC_AUTH(    r_opt_realm     ,)
2603         IF_FEATURE_HTTPD_AUTH_MD5(      m_opt_md5       ,)
2604         IF_FEATURE_HTTPD_SETUID(        u_opt_setuid    ,)
2605         p_opt_port      ,
2606         p_opt_inetd     ,
2607         p_opt_foreground,
2608         p_opt_verbose   ,
2609         OPT_CONFIG_FILE = 1 << c_opt_config_file,
2610         OPT_DECODE_URL  = 1 << d_opt_decode_url,
2611         OPT_HOME_HTTPD  = 1 << h_opt_home_httpd,
2612         OPT_ENCODE_URL  = IF_FEATURE_HTTPD_ENCODE_URL_STR((1 << e_opt_encode_url)) + 0,
2613         OPT_REALM       = IF_FEATURE_HTTPD_BASIC_AUTH(    (1 << r_opt_realm     )) + 0,
2614         OPT_MD5         = IF_FEATURE_HTTPD_AUTH_MD5(      (1 << m_opt_md5       )) + 0,
2615         OPT_SETUID      = IF_FEATURE_HTTPD_SETUID(        (1 << u_opt_setuid    )) + 0,
2616         OPT_PORT        = 1 << p_opt_port,
2617         OPT_INETD       = 1 << p_opt_inetd,
2618         OPT_FOREGROUND  = 1 << p_opt_foreground,
2619         OPT_VERBOSE     = 1 << p_opt_verbose,
2620 };
2621
2622
2623 int httpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
2624 int httpd_main(int argc UNUSED_PARAM, char **argv)
2625 {
2626         int server_socket = server_socket; /* for gcc */
2627         unsigned opt;
2628         char *url_for_decode;
2629         IF_FEATURE_HTTPD_ENCODE_URL_STR(const char *url_for_encode;)
2630         IF_FEATURE_HTTPD_SETUID(const char *s_ugid = NULL;)
2631         IF_FEATURE_HTTPD_SETUID(struct bb_uidgid_t ugid;)
2632         IF_FEATURE_HTTPD_AUTH_MD5(const char *pass;)
2633
2634         INIT_G();
2635
2636 #if ENABLE_LOCALE_SUPPORT
2637         /* Undo busybox.c: we want to speak English in http (dates etc) */
2638         setlocale(LC_TIME, "C");
2639 #endif
2640
2641         home_httpd = xrealloc_getcwd_or_warn(NULL);
2642         /* We do not "absolutize" path given by -h (home) opt.
2643          * If user gives relative path in -h,
2644          * $SCRIPT_FILENAME will not be set. */
2645         opt = getopt32(argv, "^"
2646                         "c:d:h:"
2647                         IF_FEATURE_HTTPD_ENCODE_URL_STR("e:")
2648                         IF_FEATURE_HTTPD_BASIC_AUTH("r:")
2649                         IF_FEATURE_HTTPD_AUTH_MD5("m:")
2650                         IF_FEATURE_HTTPD_SETUID("u:")
2651                         "p:ifv"
2652                         "\0"
2653                         /* -v counts, -i implies -f */
2654                         "vv:if",
2655                         &opt_c_configFile, &url_for_decode, &home_httpd
2656                         IF_FEATURE_HTTPD_ENCODE_URL_STR(, &url_for_encode)
2657                         IF_FEATURE_HTTPD_BASIC_AUTH(, &g_realm)
2658                         IF_FEATURE_HTTPD_AUTH_MD5(, &pass)
2659                         IF_FEATURE_HTTPD_SETUID(, &s_ugid)
2660                         , &bind_addr_or_port
2661                         , &verbose
2662                 );
2663         if (opt & OPT_DECODE_URL) {
2664                 fputs(percent_decode_in_place(url_for_decode, /*strict:*/ 0), stdout);
2665                 return 0;
2666         }
2667 #if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
2668         if (opt & OPT_ENCODE_URL) {
2669                 fputs(encodeString(url_for_encode), stdout);
2670                 return 0;
2671         }
2672 #endif
2673 #if ENABLE_FEATURE_HTTPD_AUTH_MD5
2674         if (opt & OPT_MD5) {
2675                 char salt[sizeof("$1$XXXXXXXX")];
2676                 salt[0] = '$';
2677                 salt[1] = '1';
2678                 salt[2] = '$';
2679                 crypt_make_salt(salt + 3, 4);
2680                 puts(pw_encrypt(pass, salt, /*cleanup:*/ 0));
2681                 return 0;
2682         }
2683 #endif
2684 #if ENABLE_FEATURE_HTTPD_SETUID
2685         if (opt & OPT_SETUID) {
2686                 xget_uidgid(&ugid, s_ugid);
2687         }
2688 #endif
2689
2690 #if !BB_MMU
2691         if (!(opt & OPT_FOREGROUND)) {
2692                 bb_daemonize_or_rexec(0, argv); /* don't change current directory */
2693         }
2694 #endif
2695
2696         xchdir(home_httpd);
2697         if (!(opt & OPT_INETD)) {
2698                 signal(SIGCHLD, SIG_IGN);
2699                 server_socket = openServer();
2700 #if ENABLE_FEATURE_HTTPD_SETUID
2701                 /* drop privileges */
2702                 if (opt & OPT_SETUID) {
2703                         if (ugid.gid != (gid_t)-1) {
2704                                 if (setgroups(1, &ugid.gid) == -1)
2705                                         bb_perror_msg_and_die("setgroups");
2706                                 xsetgid(ugid.gid);
2707                         }
2708                         xsetuid(ugid.uid);
2709                 }
2710 #endif
2711         }
2712
2713 #if 0
2714         /* User can do it himself: 'env - PATH="$PATH" httpd'
2715          * We don't do it because we don't want to screw users
2716          * which want to do
2717          * 'env - VAR1=val1 VAR2=val2 httpd'
2718          * and have VAR1 and VAR2 values visible in their CGIs.
2719          * Besides, it is also smaller. */
2720         {
2721                 char *p = getenv("PATH");
2722                 /* env strings themself are not freed, no need to xstrdup(p): */
2723                 clearenv();
2724                 if (p)
2725                         putenv(p - 5);
2726 //              if (!(opt & OPT_INETD))
2727 //                      setenv_long("SERVER_PORT", ???);
2728         }
2729 #endif
2730
2731         parse_conf(DEFAULT_PATH_HTTPD_CONF, FIRST_PARSE);
2732         if (!(opt & OPT_INETD))
2733                 signal(SIGHUP, sighup_handler);
2734
2735         xfunc_error_retval = 0;
2736         if (opt & OPT_INETD)
2737                 mini_httpd_inetd();
2738 #if BB_MMU
2739         if (!(opt & OPT_FOREGROUND))
2740                 bb_daemonize(0); /* don't change current directory */
2741         mini_httpd(server_socket); /* never returns */
2742 #else
2743         mini_httpd_nommu(server_socket, argc, argv); /* never returns */
2744 #endif
2745         /* return 0; */
2746 }