blob: db8eb1e9c7898000166e4b2bf57c32b08c756643 [file] [log] [blame]
Bernhard Reutner-Fischer2c998512006-04-12 18:09:26 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002/*
3 * httpd implementation for busybox
4 *
Glenn L McGrath06e95652003-02-09 06:51:14 +00005 * Copyright (C) 2002,2003 Glenn Engel <glenne@engel.org>
"Vladimir N. Oleynik"79af7d52006-01-26 10:58:12 +00006 * Copyright (C) 2003-2006 Vladimir Oleynik <dzo@simtreas.ru>
Glenn L McGrath58c708a2003-01-05 04:01:56 +00007 *
Glenn L McGrath06e95652003-02-09 06:51:14 +00008 * simplify patch stolen from libbb without using strdup
Glenn L McGrath58c708a2003-01-05 04:01:56 +00009 *
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +000010 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Glenn L McGrath58c708a2003-01-05 04:01:56 +000011 *
12 *****************************************************************************
13 *
Glenn L McGrath06e95652003-02-09 06:51:14 +000014 * Typical usage:
15 * for non root user
16 * httpd -p 8080 -h $HOME/public_html
17 * or for daemon start from rc script with uid=0:
18 * httpd -u www
19 * This is equivalent if www user have uid=80 to
20 * httpd -p 80 -u 80 -h /www -c /etc/httpd.conf -r "Web Server Authentication"
21 *
Glenn L McGrath58c708a2003-01-05 04:01:56 +000022 *
Denis Vlasenko073214f2007-08-17 19:20:07 +000023 * When a url starts by "/cgi-bin/" it is assumed to be a cgi script. The
Glenn L McGrath58c708a2003-01-05 04:01:56 +000024 * server changes directory to the location of the script and executes it
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +000025 * after setting QUERY_STRING and other environment variables.
Glenn L McGrath58c708a2003-01-05 04:01:56 +000026 *
Denis Vlasenko8b458372006-11-21 21:23:21 +000027 * Doc:
28 * "CGI Environment Variables": http://hoohoo.ncsa.uiuc.edu/cgi/env.html
29 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +000030 * The applet can also be invoked as a url arg decoder and html text encoder
Glenn L McGrath58c708a2003-01-05 04:01:56 +000031 * as follows:
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000032 * foo=`httpd -d $foo` # decode "Hello%20World" as "Hello World"
Glenn L McGrathc9163fe2003-05-13 16:20:11 +000033 * bar=`httpd -e "<Hello World>"` # encode as "&#60Hello&#32World&#62"
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000034 * Note that url encoding for arguments is not the same as html encoding for
Eric Andersenaff114c2004-04-14 17:51:38 +000035 * presentation. -d decodes a url-encoded argument while -e encodes in html
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000036 * for page display.
Glenn L McGrath58c708a2003-01-05 04:01:56 +000037 *
38 * httpd.conf has the following format:
Eric Andersenc7bda1c2004-03-15 08:29:22 +000039 *
Denis Vlasenko395410b2008-07-20 23:25:32 +000040 * H:/serverroot # define the server root. It will override -h
Glenn L McGrathb65422c2003-09-08 10:59:27 +000041 * A:172.20. # Allow address from 172.20.0.0/16
42 * A:10.0.0.0/25 # Allow any address from 10.0.0.0-10.0.0.127
43 * A:10.0.0.0/255.255.255.128 # Allow any address that previous set
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000044 * A:127.0.0.1 # Allow local loopback connections
45 * D:* # Deny from other IP connections
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +000046 * E404:/path/e404.html # /path/e404.html is the 404 (not found) error page
Denis Vlasenkofcd878e2007-12-29 02:16:23 +000047 * I:index.html # Show index.html when a directory is requested
Denis Vlasenkof74194e2007-10-18 12:54:39 +000048 *
49 * P:/url:[http://]hostname[:port]/new/path
50 * # When /urlXXXXXX is requested, reverse proxy
51 * # it to http://hostname[:port]/new/pathXXXXXX
52 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000053 * /cgi-bin:foo:bar # Require user foo, pwd bar on urls starting with /cgi-bin/
54 * /adm:admin:setup # Require user admin, pwd setup on urls starting with /adm/
55 * /adm:toor:PaSsWd # or user toor, pwd PaSsWd on urls starting with /adm/
56 * .au:audio/basic # additional mime type for audio.au files
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +000057 * *.php:/path/php # running cgi.php scripts through an interpreter
Eric Andersenc7bda1c2004-03-15 08:29:22 +000058 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +000059 * A/D may be as a/d or allow/deny - only first char matters.
60 * Deny/Allow IP logic:
61 * - Default is to allow all (Allow all (A:*) is a no-op).
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000062 * - Deny rules take precedence over allow rules.
Denis Vlasenko0eb406c2008-06-13 09:53:06 +000063 * - "Deny all" rule (D:*) is applied last.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000064 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000065 * Example:
66 * 1. Allow only specified addresses
Glenn L McGrathb65422c2003-09-08 10:59:27 +000067 * A:172.20 # Allow any address that begins with 172.20.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000068 * A:10.10. # Allow any address that begins with 10.10.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000069 * A:127.0.0.1 # Allow local loopback connections
70 * D:* # Deny from other IP connections
Eric Andersenc7bda1c2004-03-15 08:29:22 +000071 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000072 * 2. Only deny specified addresses
73 * D:1.2.3. # deny from 1.2.3.0 - 1.2.3.255
74 * D:2.3.4. # deny from 2.3.4.0 - 2.3.4.255
75 * A:* # (optional line added for clarity)
Eric Andersenc7bda1c2004-03-15 08:29:22 +000076 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000077 * If a sub directory contains a config file it is parsed and merged with
Glenn L McGrathb65422c2003-09-08 10:59:27 +000078 * any existing settings as if it was appended to the original configuration.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000079 *
80 * subdir paths are relative to the containing subdir and thus cannot
81 * affect the parent rules.
82 *
83 * Note that since the sub dir is parsed in the forked thread servicing the
84 * subdir http request, any merge is discarded when the process exits. As a
85 * result, the subdir settings only have a lifetime of a single request.
86 *
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +000087 * Custom error pages can contain an absolute path or be relative to
88 * 'home_httpd'. Error pages are to be static files (no CGI or script). Error
89 * page can only be defined in the root configuration file and are not taken
90 * into account in local (directories) config files.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000091 *
92 * If -c is not set, an attempt will be made to open the default
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000093 * root configuration file. If -c is set and the file is not found, the
94 * server exits with an error.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000095 *
Denis Vlasenko073214f2007-08-17 19:20:07 +000096 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +000097
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000098#include "libbb.h"
Denis Vlasenko1b9064d2007-08-12 21:05:49 +000099#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
100#include <sys/sendfile.h>
101#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000102
Denis Vlasenko073214f2007-08-17 19:20:07 +0000103//#define DEBUG 1
104#define DEBUG 0
105
Denis Vlasenko32a471e2007-09-23 13:56:57 +0000106#define IOBUF_SIZE 8192 /* IO buffer */
107
Denis Vlasenko69981422007-01-07 21:25:12 +0000108/* amount of buffering in a pipe */
109#ifndef PIPE_BUF
110# define PIPE_BUF 4096
111#endif
Denis Vlasenko32a471e2007-09-23 13:56:57 +0000112#if PIPE_BUF >= IOBUF_SIZE
113# error "PIPE_BUF >= IOBUF_SIZE"
114#endif
Denis Vlasenko073214f2007-08-17 19:20:07 +0000115
116#define HEADER_READ_TIMEOUT 60
117
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000118static const char default_path_httpd_conf[] ALIGN1 = "/etc";
119static const char httpd_conf[] ALIGN1 = "httpd.conf";
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000120static const char HTTP_200[] ALIGN1 = "HTTP/1.0 200 OK\r\n";
Glenn L McGrath06e95652003-02-09 06:51:14 +0000121
Denis Vlasenko073214f2007-08-17 19:20:07 +0000122typedef struct has_next_ptr {
123 struct has_next_ptr *next;
124} has_next_ptr;
Eric Andersen07f2fea2004-10-08 08:03:29 +0000125
Denis Vlasenko073214f2007-08-17 19:20:07 +0000126/* Must have "next" as a first member */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000127typedef struct Htaccess {
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000128 struct Htaccess *next;
Denis Vlasenko073214f2007-08-17 19:20:07 +0000129 char *after_colon;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000130 char before_colon[1]; /* really bigger, must be last */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000131} Htaccess;
132
Denis Vlasenko073214f2007-08-17 19:20:07 +0000133/* Must have "next" as a first member */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000134typedef struct Htaccess_IP {
Denis Vlasenko073214f2007-08-17 19:20:07 +0000135 struct Htaccess_IP *next;
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000136 unsigned ip;
137 unsigned mask;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000138 int allow_deny;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000139} Htaccess_IP;
140
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000141/* Must have "next" as a first member */
142typedef struct Htaccess_Proxy {
143 struct Htaccess_Proxy *next;
144 char *url_from;
145 char *host_port;
146 char *url_to;
147} Htaccess_Proxy;
148
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000149enum {
150 HTTP_OK = 200,
Denis Vlasenkof4310172007-09-21 22:35:18 +0000151 HTTP_PARTIAL_CONTENT = 206,
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000152 HTTP_MOVED_TEMPORARILY = 302,
153 HTTP_BAD_REQUEST = 400, /* malformed syntax */
154 HTTP_UNAUTHORIZED = 401, /* authentication needed, respond with auth hdr */
155 HTTP_NOT_FOUND = 404,
156 HTTP_FORBIDDEN = 403,
157 HTTP_REQUEST_TIMEOUT = 408,
158 HTTP_NOT_IMPLEMENTED = 501, /* used for unrecognized requests */
159 HTTP_INTERNAL_SERVER_ERROR = 500,
160 HTTP_CONTINUE = 100,
161#if 0 /* future use */
162 HTTP_SWITCHING_PROTOCOLS = 101,
163 HTTP_CREATED = 201,
164 HTTP_ACCEPTED = 202,
165 HTTP_NON_AUTHORITATIVE_INFO = 203,
166 HTTP_NO_CONTENT = 204,
167 HTTP_MULTIPLE_CHOICES = 300,
168 HTTP_MOVED_PERMANENTLY = 301,
169 HTTP_NOT_MODIFIED = 304,
170 HTTP_PAYMENT_REQUIRED = 402,
171 HTTP_BAD_GATEWAY = 502,
172 HTTP_SERVICE_UNAVAILABLE = 503, /* overload, maintenance */
173 HTTP_RESPONSE_SETSIZE = 0xffffffff
174#endif
175};
176
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000177static const uint16_t http_response_type[] ALIGN2 = {
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000178 HTTP_OK,
Denis Vlasenkof4310172007-09-21 22:35:18 +0000179#if ENABLE_FEATURE_HTTPD_RANGES
180 HTTP_PARTIAL_CONTENT,
181#endif
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000182 HTTP_MOVED_TEMPORARILY,
183 HTTP_REQUEST_TIMEOUT,
184 HTTP_NOT_IMPLEMENTED,
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +0000185#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000186 HTTP_UNAUTHORIZED,
187#endif
188 HTTP_NOT_FOUND,
189 HTTP_BAD_REQUEST,
190 HTTP_FORBIDDEN,
191 HTTP_INTERNAL_SERVER_ERROR,
192#if 0 /* not implemented */
193 HTTP_CREATED,
194 HTTP_ACCEPTED,
195 HTTP_NO_CONTENT,
196 HTTP_MULTIPLE_CHOICES,
197 HTTP_MOVED_PERMANENTLY,
198 HTTP_NOT_MODIFIED,
199 HTTP_BAD_GATEWAY,
200 HTTP_SERVICE_UNAVAILABLE,
201#endif
202};
203
204static const struct {
205 const char *name;
206 const char *info;
207} http_response[ARRAY_SIZE(http_response_type)] = {
208 { "OK", NULL },
Denis Vlasenkof4310172007-09-21 22:35:18 +0000209#if ENABLE_FEATURE_HTTPD_RANGES
210 { "Partial Content", NULL },
211#endif
212 { "Found", NULL },
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000213 { "Request Timeout", "No request appeared within 60 seconds" },
214 { "Not Implemented", "The requested method is not recognized" },
215#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
216 { "Unauthorized", "" },
217#endif
218 { "Not Found", "The requested URL was not found" },
219 { "Bad Request", "Unsupported method" },
220 { "Forbidden", "" },
221 { "Internal Server Error", "Internal Server Error" },
222#if 0 /* not implemented */
223 { "Created" },
224 { "Accepted" },
225 { "No Content" },
226 { "Multiple Choices" },
227 { "Moved Permanently" },
228 { "Not Modified" },
229 { "Bad Gateway", "" },
230 { "Service Unavailable", "" },
231#endif
232};
233
Denis Vlasenkof4310172007-09-21 22:35:18 +0000234
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000235struct globals {
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000236 int verbose; /* must be int (used by getopt32) */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000237 smallint flg_deny_all;
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000238
Denis Vlasenko37c33162007-08-19 18:54:22 +0000239 unsigned rmt_ip; /* used for IP-based allow/deny rules */
240 time_t last_mod;
Denis Vlasenko37c33162007-08-19 18:54:22 +0000241 char *rmt_ip_str; /* for $REMOTE_ADDR and $REMOTE_PORT */
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000242 const char *bind_addr_or_port;
243
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000244 const char *g_query;
245 const char *configFile;
246 const char *home_httpd;
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000247 const char *index_page;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000248
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000249 const char *found_mime_type;
250 const char *found_moved_temporarily;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000251 Htaccess_IP *ip_a_d; /* config allow/deny lines */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000252
253 USE_FEATURE_HTTPD_BASIC_AUTH(const char *g_realm;)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000254 USE_FEATURE_HTTPD_BASIC_AUTH(char *remoteuser;)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000255 USE_FEATURE_HTTPD_CGI(char *referer;)
Denis Vlasenko6cd84da2007-07-21 14:57:54 +0000256 USE_FEATURE_HTTPD_CGI(char *user_agent;)
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +0000257 USE_FEATURE_HTTPD_CGI(char *http_accept;)
258 USE_FEATURE_HTTPD_CGI(char *http_accept_language;)
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +0000259
Denis Vlasenkof4310172007-09-21 22:35:18 +0000260 off_t file_size; /* -1 - unknown */
261#if ENABLE_FEATURE_HTTPD_RANGES
262 off_t range_start;
263 off_t range_end;
264 off_t range_len;
265#endif
266
Denis Vlasenko55a99402006-09-30 20:41:44 +0000267#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000268 Htaccess *g_auth; /* config user:password lines */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000269#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000270#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000271 Htaccess *mime_a; /* config mime types */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000272#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000273#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000274 Htaccess *script_i; /* config script interpreters */
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000275#endif
Denis Vlasenko921799d2007-08-19 19:28:09 +0000276 char *iobuf; /* [IOBUF_SIZE] */
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000277#define hdr_buf bb_common_bufsiz1
278 char *hdr_ptr;
279 int hdr_cnt;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000280#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
281 const char *http_error_page[ARRAY_SIZE(http_response_type)];
282#endif
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000283#if ENABLE_FEATURE_HTTPD_PROXY
284 Htaccess_Proxy *proxy;
285#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000286};
287#define G (*ptr_to_globals)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000288#define verbose (G.verbose )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000289#define flg_deny_all (G.flg_deny_all )
290#define rmt_ip (G.rmt_ip )
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000291#define bind_addr_or_port (G.bind_addr_or_port)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000292#define g_query (G.g_query )
293#define configFile (G.configFile )
294#define home_httpd (G.home_httpd )
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000295#define index_page (G.index_page )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000296#define found_mime_type (G.found_mime_type )
297#define found_moved_temporarily (G.found_moved_temporarily)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000298#define last_mod (G.last_mod )
299#define ip_a_d (G.ip_a_d )
300#define g_realm (G.g_realm )
301#define remoteuser (G.remoteuser )
302#define referer (G.referer )
303#define user_agent (G.user_agent )
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +0000304#define http_accept (G.http_accept )
305#define http_accept_language (G.http_accept_language)
Denis Vlasenkof4310172007-09-21 22:35:18 +0000306#define file_size (G.file_size )
307#if ENABLE_FEATURE_HTTPD_RANGES
308#define range_start (G.range_start )
309#define range_end (G.range_end )
310#define range_len (G.range_len )
311#endif
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000312#define rmt_ip_str (G.rmt_ip_str )
313#define g_auth (G.g_auth )
314#define mime_a (G.mime_a )
315#define script_i (G.script_i )
316#define iobuf (G.iobuf )
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000317#define hdr_ptr (G.hdr_ptr )
318#define hdr_cnt (G.hdr_cnt )
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000319#define http_error_page (G.http_error_page )
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000320#define proxy (G.proxy )
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000321#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000322 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000323 USE_FEATURE_HTTPD_BASIC_AUTH(g_realm = "Web Server Authentication";) \
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000324 bind_addr_or_port = "80"; \
Denis Vlasenko1acb4ef2008-02-27 20:59:54 +0000325 index_page = "index.html"; \
Denis Vlasenkof4310172007-09-21 22:35:18 +0000326 file_size = -1; \
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000327} while (0)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000328
Denis Vlasenkof4310172007-09-21 22:35:18 +0000329#if !ENABLE_FEATURE_HTTPD_RANGES
330enum {
331 range_start = 0,
332 range_end = MAXINT(off_t) - 1,
333 range_len = MAXINT(off_t),
334};
335#endif
336
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000337
Denis Vlasenko0bb993f2006-11-21 00:06:28 +0000338#define STRNCASECMP(a, str) strncasecmp((a), (str), sizeof(str)-1)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000339
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000340/* Prototypes */
Denis Vlasenko2f518b02008-02-21 00:12:07 +0000341enum {
342 SEND_HEADERS = (1 << 0),
343 SEND_BODY = (1 << 1),
344 SEND_HEADERS_AND_BODY = SEND_HEADERS + SEND_BODY,
345};
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000346static void send_file_and_exit(const char *url, int what) NORETURN;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000347
Denis Vlasenko073214f2007-08-17 19:20:07 +0000348static void free_llist(has_next_ptr **pptr)
349{
350 has_next_ptr *cur = *pptr;
351 while (cur) {
352 has_next_ptr *t = cur;
353 cur = cur->next;
354 free(t);
355 }
356 *pptr = NULL;
357}
358
359#if ENABLE_FEATURE_HTTPD_BASIC_AUTH \
360 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES \
361 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
362static ALWAYS_INLINE void free_Htaccess_list(Htaccess **pptr)
363{
364 free_llist((has_next_ptr**)pptr);
365}
366#endif
367
368static ALWAYS_INLINE void free_Htaccess_IP_list(Htaccess_IP **pptr)
369{
370 free_llist((has_next_ptr**)pptr);
371}
Glenn L McGrath06e95652003-02-09 06:51:14 +0000372
Denis Vlasenkod867f322007-08-19 21:15:42 +0000373/* Returns presumed mask width in bits or < 0 on error.
374 * Updates strp, stores IP at provided pointer */
375static int scan_ip(const char **strp, unsigned *ipp, unsigned char endc)
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000376{
Denis Vlasenkod867f322007-08-19 21:15:42 +0000377 const char *p = *strp;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000378 int auto_mask = 8;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000379 unsigned ip = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000380 int j;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000381
Denis Vlasenkod867f322007-08-19 21:15:42 +0000382 if (*p == '/')
383 return -auto_mask;
384
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000385 for (j = 0; j < 4; j++) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000386 unsigned octet;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000387
Denis Vlasenkod867f322007-08-19 21:15:42 +0000388 if ((*p < '0' || *p > '9') && *p != '/' && *p)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000389 return -auto_mask;
390 octet = 0;
391 while (*p >= '0' && *p <= '9') {
392 octet *= 10;
393 octet += *p - '0';
394 if (octet > 255)
395 return -auto_mask;
396 p++;
397 }
398 if (*p == '.')
399 p++;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000400 if (*p != '/' && *p)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000401 auto_mask += 8;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000402 ip = (ip << 8) | octet;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000403 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000404 if (*p) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000405 if (*p != endc)
406 return -auto_mask;
407 p++;
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000408 if (*p == '\0')
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000409 return -auto_mask;
410 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000411 *ipp = ip;
412 *strp = p;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000413 return auto_mask;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000414}
415
Denis Vlasenkod867f322007-08-19 21:15:42 +0000416/* Returns 0 on success. Stores IP and mask at provided pointers */
417static int scan_ip_mask(const char *str, unsigned *ipp, unsigned *maskp)
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000418{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000419 int i;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000420 unsigned mask;
421 char *p;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000422
Denis Vlasenkod867f322007-08-19 21:15:42 +0000423 i = scan_ip(&str, ipp, '/');
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000424 if (i < 0)
425 return i;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000426
Denis Vlasenkod867f322007-08-19 21:15:42 +0000427 if (*str) {
428 /* there is /xxx after dotted-IP address */
429 i = bb_strtou(str, &p, 10);
430 if (*p == '.') {
431 /* 'xxx' itself is dotted-IP mask, parse it */
432 /* (return 0 (success) only if it has N.N.N.N form) */
433 return scan_ip(&str, maskp, '\0') - 32;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000434 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000435 if (*p)
436 return -1;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000437 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000438
439 if (i > 32)
Denis Vlasenko92758142006-10-03 19:56:34 +0000440 return -1;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000441
442 if (sizeof(unsigned) == 4 && i == 32) {
443 /* mask >>= 32 below may not work */
444 mask = 0;
445 } else {
446 mask = 0xffffffff;
447 mask >>= i;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000448 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000449 /* i == 0 -> *maskp = 0x00000000
450 * i == 1 -> *maskp = 0x80000000
451 * i == 4 -> *maskp = 0xf0000000
452 * i == 31 -> *maskp = 0xfffffffe
453 * i == 32 -> *maskp = 0xffffffff */
454 *maskp = (uint32_t)(~mask);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000455 return 0;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000456}
457
Denis Vlasenko073214f2007-08-17 19:20:07 +0000458/*
459 * Parse configuration file into in-memory linked list.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000460 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000461 * The first non-white character is examined to determine if the config line
462 * is one of the following:
463 * .ext:mime/type # new mime type not compiled into httpd
464 * [adAD]:from # ip address allow/deny, * for wildcard
465 * /path:user:pass # username/password
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000466 * Ennn:error.html # error page for status nnn
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000467 * P:/url:[http://]hostname[:port]/new/path # reverse proxy
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000468 *
469 * Any previous IP rules are discarded.
470 * If the flag argument is not SUBDIR_PARSE then all /path and mime rules
471 * are also discarded. That is, previous settings are retained if flag is
472 * SUBDIR_PARSE.
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000473 * Error pages are only parsed on the main config file.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000474 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000475 * path Path where to look for httpd.conf (without filename).
476 * flag Type of the parse request.
477 */
478/* flag */
479#define FIRST_PARSE 0
480#define SUBDIR_PARSE 1
481#define SIGNALED_PARSE 2
482#define FIND_FROM_HTTPD_ROOT 3
Glenn L McGrath06e95652003-02-09 06:51:14 +0000483static void parse_conf(const char *path, int flag)
484{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000485 FILE *f;
Denis Vlasenko55a99402006-09-30 20:41:44 +0000486#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000487 Htaccess *prev;
488#endif
489#if ENABLE_FEATURE_HTTPD_BASIC_AUTH \
490 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES \
491 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000492 Htaccess *cur;
Glenn L McGrathbaaa6e92003-09-15 15:00:43 +0000493#endif
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000494 const char *filename = configFile;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000495 char buf[160];
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000496 char *p, *p0;
497 char *after_colon;
Denis Vlasenko073214f2007-08-17 19:20:07 +0000498 Htaccess_IP *pip;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000499
Denis Vlasenko073214f2007-08-17 19:20:07 +0000500 /* discard old rules */
501 free_Htaccess_IP_list(&ip_a_d);
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000502 flg_deny_all = 0;
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000503#if ENABLE_FEATURE_HTTPD_BASIC_AUTH \
504 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES \
505 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000506 /* retain previous auth and mime config only for subdir parse */
507 if (flag != SUBDIR_PARSE) {
Denis Vlasenko55a99402006-09-30 20:41:44 +0000508#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko073214f2007-08-17 19:20:07 +0000509 free_Htaccess_list(&g_auth);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000510#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000511#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
Denis Vlasenko073214f2007-08-17 19:20:07 +0000512 free_Htaccess_list(&mime_a);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000513#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000514#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000515 free_Htaccess_list(&script_i);
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000516#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000517 }
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000518#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000519
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000520 if (flag == SUBDIR_PARSE || filename == NULL) {
521 filename = alloca(strlen(path) + sizeof(httpd_conf) + 2);
522 sprintf((char *)filename, "%s/%s", path, httpd_conf);
Glenn L McGrath393183d2003-05-26 14:07:50 +0000523 }
524
Denis Vlasenko5415c852008-07-21 23:05:26 +0000525 while ((f = fopen_for_read(filename)) == NULL) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000526 if (flag == SUBDIR_PARSE || flag == FIND_FROM_HTTPD_ROOT) {
527 /* config file not found, no changes to config */
528 return;
529 }
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000530 if (configFile && flag == FIRST_PARSE) /* if -c option given */
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000531 bb_simple_perror_msg_and_die(filename);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000532 flag = FIND_FROM_HTTPD_ROOT;
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000533 filename = httpd_conf;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000534 }
535
Denis Vlasenko55a99402006-09-30 20:41:44 +0000536#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000537 prev = g_auth;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000538#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000539 /* This could stand some work */
Denis Vlasenko55a99402006-09-30 20:41:44 +0000540 while ((p0 = fgets(buf, sizeof(buf), f)) != NULL) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000541 after_colon = NULL;
Denis Vlasenko073214f2007-08-17 19:20:07 +0000542 for (p = p0; *p0 != '\0' && *p0 != '#'; p0++) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000543 if (!isspace(*p0)) {
544 *p++ = *p0;
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000545 if (*p0 == ':' && after_colon == NULL)
546 after_colon = p;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000547 }
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000548 }
Denis Vlasenko073214f2007-08-17 19:20:07 +0000549 *p = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000550
551 /* test for empty or strange line */
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000552 if (after_colon == NULL || *after_colon == '\0')
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000553 continue;
554 p0 = buf;
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000555 if (*p0 == 'd' || *p0 == 'a')
556 *p0 -= 0x20; /* a/d -> A/D */
557 if (*after_colon == '*') {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000558 if (*p0 == 'D') {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000559 /* memorize "deny all" */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000560 flg_deny_all = 1;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000561 }
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000562 /* skip assumed "A:*", it is a default anyway */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000563 continue;
564 }
565
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000566 if (*p0 == 'A' || *p0 == 'D') {
567 /* storing current config IP line */
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000568 pip = xzalloc(sizeof(Htaccess_IP));
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000569 if (scan_ip_mask(after_colon, &(pip->ip), &(pip->mask))) {
570 /* IP{/mask} syntax error detected, protect all */
571 *p0 = 'D';
572 pip->mask = 0;
573 }
574 pip->allow_deny = *p0;
575 if (*p0 == 'D') {
576 /* Deny:from_IP - prepend */
577 pip->next = ip_a_d;
578 ip_a_d = pip;
579 } else {
580 /* A:from_IP - append (thus D precedes A) */
581 Htaccess_IP *prev_IP = ip_a_d;
582 if (prev_IP == NULL) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000583 ip_a_d = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000584 } else {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000585 while (prev_IP->next)
586 prev_IP = prev_IP->next;
587 prev_IP->next = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000588 }
589 }
590 continue;
591 }
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000592
593#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
594 if (flag == FIRST_PARSE && *p0 == 'E') {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000595 unsigned i;
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000596 int status = atoi(++p0); /* error status code */
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000597 if (status < HTTP_CONTINUE) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000598 bb_error_msg("config error '%s' in '%s'", buf, filename);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000599 continue;
600 }
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000601 /* then error page; find matching status */
602 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
603 if (http_response_type[i] == status) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000604 /* We chdir to home_httpd, thus no need to
605 * concat_path_file(home_httpd, after_colon)
606 * here */
607 http_error_page[i] = xstrdup(after_colon);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000608 break;
609 }
610 }
611 continue;
612 }
613#endif
614
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000615#if ENABLE_FEATURE_HTTPD_PROXY
616 if (flag == FIRST_PARSE && *p0 == 'P') {
617 /* P:/url:[http://]hostname[:port]/new/path */
618 char *url_from, *host_port, *url_to;
619 Htaccess_Proxy *proxy_entry;
620
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000621 url_from = after_colon;
622 host_port = strchr(after_colon, ':');
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000623 if (host_port == NULL) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000624 bb_error_msg("config error '%s' in '%s'", buf, filename);
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000625 continue;
626 }
627 *host_port++ = '\0';
628 if (strncmp(host_port, "http://", 7) == 0)
Denis Vlasenko78ee7c82007-10-21 23:24:42 +0000629 host_port += 7;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000630 if (*host_port == '\0') {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000631 bb_error_msg("config error '%s' in '%s'", buf, filename);
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000632 continue;
633 }
634 url_to = strchr(host_port, '/');
635 if (url_to == NULL) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000636 bb_error_msg("config error '%s' in '%s'", buf, filename);
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000637 continue;
638 }
639 *url_to = '\0';
640 proxy_entry = xzalloc(sizeof(Htaccess_Proxy));
641 proxy_entry->url_from = xstrdup(url_from);
642 proxy_entry->host_port = xstrdup(host_port);
643 *url_to = '/';
644 proxy_entry->url_to = xstrdup(url_to);
645 proxy_entry->next = proxy;
646 proxy = proxy_entry;
647 continue;
648 }
649#endif
650
Denis Vlasenko55a99402006-09-30 20:41:44 +0000651#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000652 if (*p0 == '/') {
Denis Vlasenko073214f2007-08-17 19:20:07 +0000653 /* make full path from httpd root / current_path / config_line_path */
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000654 const char *tp = (flag == SUBDIR_PARSE ? path : "");
655 p0 = xmalloc(strlen(tp) + (after_colon - buf) + 2 + strlen(after_colon));
656 after_colon[-1] = '\0';
657 sprintf(p0, "/%s%s", tp, buf);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000658
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000659 /* looks like bb_simplify_path... */
660 tp = p = p0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000661 do {
662 if (*p == '/') {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000663 if (*tp == '/') { /* skip duplicate (or initial) slash */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000664 continue;
Denis Vlasenko3d2a9212007-09-28 22:35:29 +0000665 }
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000666 if (*tp == '.') {
667 if (tp[1] == '/' || tp[1] == '\0') { /* remove extra '.' */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000668 continue;
Denis Vlasenko3d2a9212007-09-28 22:35:29 +0000669 }
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000670 if ((tp[1] == '.') && (tp[2] == '/' || tp[2] == '\0')) {
671 ++tp;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000672 if (p > p0) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000673 while (*--p != '/') /* omit previous dir */
674 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000675 }
676 continue;
677 }
678 }
679 }
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000680 *++p = *tp;
681 } while (*++tp);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000682
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000683 if ((p == p0) || (*p != '/')) { /* not a trailing slash */
684 ++p; /* so keep last character */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000685 }
Denis Vlasenko3d2a9212007-09-28 22:35:29 +0000686 *p = ':';
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000687 strcpy(p + 1, after_colon);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000688 }
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000689#endif
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000690 if (*p0 == 'I') {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000691 index_page = xstrdup(after_colon);
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000692 continue;
693 }
694
Denis Vlasenko395410b2008-07-20 23:25:32 +0000695 /* Do not allow jumping around using H in subdir's configs */
696 if (flag == FIRST_PARSE && *p0 == 'H') {
697 home_httpd = xstrdup(after_colon);
698 xchdir(home_httpd);
699 continue;
700 }
701
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000702#if ENABLE_FEATURE_HTTPD_BASIC_AUTH \
703 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES \
704 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000705 /* storing current config line */
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000706 cur = xzalloc(sizeof(Htaccess) + strlen(p0));
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000707 strcpy(cur->before_colon, p0);
Denis Vlasenko55a99402006-09-30 20:41:44 +0000708#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000709 if (*p0 == '/') /* was malloced - see above */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000710 free(p0);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000711#endif
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000712 cur->after_colon = strchr(cur->before_colon, ':');
713 *cur->after_colon++ = '\0';
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000714#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000715 if (cur->before_colon[0] == '.') {
716 /* .mime line: prepend to mime_a list */
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000717 cur->next = mime_a;
718 mime_a = cur;
719 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000720 }
Glenn L McGrathbaaa6e92003-09-15 15:00:43 +0000721#endif
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000722#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000723 if (cur->before_colon[0] == '*' && cur->before_colon[1] == '.') {
724 /* script interpreter line: prepend to script_i list */
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000725 cur->next = script_i;
726 script_i = cur;
727 continue;
728 }
729#endif
730#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000731//TODO: we do not test for leading "/"??
732//also, do we leak cur if BASIC_AUTH is off?
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000733 if (prev == NULL) {
734 /* first line */
735 g_auth = prev = cur;
736 } else {
737 /* sort path, if current length eq or bigger then move up */
738 Htaccess *prev_hti = g_auth;
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000739 size_t l = strlen(cur->before_colon);
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000740 Htaccess *hti;
741
742 for (hti = prev_hti; hti; hti = hti->next) {
743 if (l >= strlen(hti->before_colon)) {
744 /* insert before hti */
745 cur->next = hti;
746 if (prev_hti != hti) {
747 prev_hti->next = cur;
748 } else {
749 /* insert as top */
750 g_auth = cur;
751 }
752 break;
753 }
754 if (prev_hti != hti)
755 prev_hti = prev_hti->next;
756 }
757 if (!hti) { /* not inserted, add to bottom */
758 prev->next = cur;
759 prev = cur;
760 }
761 }
762#endif /* BASIC_AUTH */
763#endif /* BASIC_AUTH || MIME_TYPES || SCRIPT_INTERPR */
764 } /* while (fgets) */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000765 fclose(f);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000766}
767
Denis Vlasenko55a99402006-09-30 20:41:44 +0000768#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000769/*
770 * Given a string, html-encode special characters.
771 * This is used for the -e command line option to provide an easy way
772 * for scripts to encode result data without confusing browsers. The
773 * returned string pointer is memory allocated by malloc().
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000774 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000775 * Returns a pointer to the encoded string (malloced).
776 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000777static char *encodeString(const char *string)
778{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000779 /* take the simple route and encode everything */
780 /* could possibly scan once to get length. */
781 int len = strlen(string);
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000782 char *out = xmalloc(len * 6 + 1);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000783 char *p = out;
784 char ch;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000785
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000786 while ((ch = *string++)) {
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000787 /* very simple check for what to encode */
788 if (isalnum(ch))
789 *p++ = ch;
790 else
791 p += sprintf(p, "&#%d;", (unsigned char) ch);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000792 }
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000793 *p = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000794 return out;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000795}
Denis Vlasenkob3a07152006-11-16 18:04:43 +0000796#endif /* FEATURE_HTTPD_ENCODE_URL_STR */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000797
Denis Vlasenko073214f2007-08-17 19:20:07 +0000798/*
799 * Given a URL encoded string, convert it to plain ascii.
800 * Since decoding always makes strings smaller, the decode is done in-place.
Denis Vlasenkoc4523c22008-03-28 02:24:59 +0000801 * Thus, callers should xstrdup() the argument if they do not want the
Denis Vlasenko073214f2007-08-17 19:20:07 +0000802 * argument modified. The return is the original pointer, allowing this
803 * function to be easily used as arguments to other functions.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000804 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000805 * string The first string to decode.
806 * option_d 1 if called for httpd -d
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000807 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000808 * Returns a pointer to the decoded string (same as input).
809 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000810static unsigned hex_to_bin(unsigned char c)
811{
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000812 unsigned v;
813
814 v = c - '0';
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000815 if (v <= 9)
816 return v;
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000817 /* c | 0x20: letters to lower case, non-letters
818 * to (potentially different) non-letters */
819 v = (unsigned)(c | 0x20) - 'a';
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000820 if (v <= 5)
821 return v + 10;
822 return ~0;
823}
824/* For testing:
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000825void t(char c) { printf("'%c'(%u) %u\n", c, c, hex_to_bin(c)); }
826int main() { t(0x10); t(0x20); t('0'); t('9'); t('A'); t('F'); t('a'); t('f');
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000827t('0'-1); t('9'+1); t('A'-1); t('F'+1); t('a'-1); t('f'+1); return 0; }
828*/
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000829static char *decodeString(char *orig, int option_d)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000830{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000831 /* note that decoded string is always shorter than original */
832 char *string = orig;
833 char *ptr = string;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000834 char c;
Eric Andersena3bb3e62003-06-26 09:05:32 +0000835
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000836 while ((c = *ptr++) != '\0') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000837 unsigned v;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000838
839 if (option_d && c == '+') {
Denis Vlasenko601ae132006-11-28 23:37:46 +0000840 *string++ = ' ';
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000841 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000842 }
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000843 if (c != '%') {
844 *string++ = c;
845 continue;
846 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000847 v = hex_to_bin(ptr[0]);
848 if (v > 15) {
849 bad_hex:
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000850 if (!option_d)
851 return NULL;
852 *string++ = '%';
853 continue;
854 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000855 v = (v * 16) | hex_to_bin(ptr[1]);
856 if (v > 255)
857 goto bad_hex;
858 if (!option_d && (v == '/' || v == '\0')) {
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000859 /* caller takes it as indication of invalid
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000860 * (dangerous wrt exploits) chars */
861 return orig + 1;
862 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000863 *string++ = v;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000864 ptr += 2;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000865 }
866 *string = '\0';
867 return orig;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000868}
869
Denis Vlasenko55a99402006-09-30 20:41:44 +0000870#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000871/*
Denis Vlasenko073214f2007-08-17 19:20:07 +0000872 * Decode a base64 data stream as per rfc1521.
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000873 * Note that the rfc states that non base64 chars are to be ignored.
Denis Vlasenko073214f2007-08-17 19:20:07 +0000874 * Since the decode always results in a shorter size than the input,
875 * it is OK to pass the input arg as an output arg.
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000876 * Parameter: a pointer to a base64 encoded string.
877 * Decoded data is stored in-place.
878 */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000879static void decodeBase64(char *Data)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000880{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000881 const unsigned char *in = (const unsigned char *)Data;
Denis Vlasenko37c33162007-08-19 18:54:22 +0000882 /* The decoded size will be at most 3/4 the size of the encoded */
Denis Vlasenko088b9592007-04-18 21:14:46 +0000883 unsigned ch = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000884 int i = 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000885
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000886 while (*in) {
887 int t = *in++;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000888
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000889 if (t >= '0' && t <= '9')
890 t = t - '0' + 52;
891 else if (t >= 'A' && t <= 'Z')
892 t = t - 'A';
893 else if (t >= 'a' && t <= 'z')
894 t = t - 'a' + 26;
895 else if (t == '+')
896 t = 62;
897 else if (t == '/')
898 t = 63;
899 else if (t == '=')
900 t = 0;
901 else
902 continue;
Glenn L McGrath874e3382003-05-14 12:11:36 +0000903
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000904 ch = (ch << 6) | t;
905 i++;
906 if (i == 4) {
907 *Data++ = (char) (ch >> 16);
908 *Data++ = (char) (ch >> 8);
909 *Data++ = (char) ch;
910 i = 0;
911 }
912 }
Denis Vlasenko088b9592007-04-18 21:14:46 +0000913 *Data = '\0';
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000914}
915#endif
916
Denis Vlasenko073214f2007-08-17 19:20:07 +0000917/*
918 * Create a listen server socket on the designated port.
919 */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000920static int openServer(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000921{
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000922 unsigned n = bb_strtou(bind_addr_or_port, NULL, 10);
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000923 if (!errno && n && n <= 0xffff)
924 n = create_and_bind_stream_or_die(NULL, n);
925 else
926 n = create_and_bind_stream_or_die(bind_addr_or_port, 80);
927 xlisten(n, 9);
928 return n;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000929}
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000930
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000931/*
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000932 * Log the connection closure and exit.
933 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000934static void log_and_exit(void) NORETURN;
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000935static void log_and_exit(void)
936{
Denis Vlasenko921799d2007-08-19 19:28:09 +0000937 /* Paranoia. IE said to be buggy. It may send some extra data
938 * or be confused by us just exiting without SHUT_WR. Oh well. */
939 shutdown(1, SHUT_WR);
Denis Vlasenkofaf334a2008-05-18 15:14:36 +0000940 /* Why??
941 (this also messes up stdin when user runs httpd -i from terminal)
Denis Vlasenko921799d2007-08-19 19:28:09 +0000942 ndelay_on(0);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000943 while (read(STDIN_FILENO, iobuf, IOBUF_SIZE) > 0)
Denis Vlasenko921799d2007-08-19 19:28:09 +0000944 continue;
Denis Vlasenkofaf334a2008-05-18 15:14:36 +0000945 */
Denis Vlasenko921799d2007-08-19 19:28:09 +0000946
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000947 if (verbose > 2)
948 bb_error_msg("closed");
949 _exit(xfunc_error_retval);
950}
951
952/*
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000953 * Create and send HTTP response headers.
954 * The arguments are combined and sent as one write operation. Note that
955 * IE will puke big-time if the headers are not sent in one packet and the
956 * second packet is delayed for any reason.
957 * responseNum - the result code to send.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000958 */
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000959static void send_headers(int responseNum)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000960{
Denis Vlasenko073214f2007-08-17 19:20:07 +0000961 static const char RFC1123FMT[] ALIGN1 = "%a, %d %b %Y %H:%M:%S GMT";
962
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000963 const char *responseString = "";
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000964 const char *infoString = NULL;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000965 const char *mime_type;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000966#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko2f518b02008-02-21 00:12:07 +0000967 const char *error_page = NULL;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000968#endif
Denis Vlasenkob64eed62007-01-14 17:06:11 +0000969 unsigned i;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000970 time_t timer = time(0);
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000971 char tmp_str[80];
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000972 int len;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000973
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000974 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
975 if (http_response_type[i] == responseNum) {
976 responseString = http_response[i].name;
977 infoString = http_response[i].info;
978#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
979 error_page = http_error_page[i];
980#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000981 break;
982 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000983 }
984 /* error message is HTML */
985 mime_type = responseNum == HTTP_OK ?
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000986 found_mime_type : "text/html";
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000987
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000988 if (verbose)
Denis Vlasenko241b1562007-08-17 19:18:47 +0000989 bb_error_msg("response:%u", responseNum);
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000990
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000991 /* emit the current date */
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000992 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&timer));
993 len = sprintf(iobuf,
Denis Vlasenko69981422007-01-07 21:25:12 +0000994 "HTTP/1.0 %d %s\r\nContent-type: %s\r\n"
995 "Date: %s\r\nConnection: close\r\n",
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000996 responseNum, responseString, mime_type, tmp_str);
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000997
Denis Vlasenko55a99402006-09-30 20:41:44 +0000998#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000999 if (responseNum == HTTP_UNAUTHORIZED) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001000 len += sprintf(iobuf + len,
Denis Vlasenko8e858e22007-03-07 09:35:43 +00001001 "WWW-Authenticate: Basic realm=\"%s\"\r\n",
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001002 g_realm);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001003 }
Glenn L McGrath3d2405c2003-02-10 22:28:21 +00001004#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001005 if (responseNum == HTTP_MOVED_TEMPORARILY) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001006 len += sprintf(iobuf + len, "Location: %s/%s%s\r\n",
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001007 found_moved_temporarily,
1008 (g_query ? "?" : ""),
1009 (g_query ? g_query : ""));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001010 }
Eric Andersen07f2fea2004-10-08 08:03:29 +00001011
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001012#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001013 if (error_page && access(error_page, R_OK) == 0) {
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001014 strcat(iobuf, "\r\n");
1015 len += 2;
1016
1017 if (DEBUG)
1018 fprintf(stderr, "headers: '%s'\n", iobuf);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001019 full_write(STDOUT_FILENO, iobuf, len);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001020 if (DEBUG)
1021 fprintf(stderr, "writing error page: '%s'\n", error_page);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001022 return send_file_and_exit(error_page, SEND_BODY);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001023 }
1024#endif
1025
Denis Vlasenkof4310172007-09-21 22:35:18 +00001026 if (file_size != -1) { /* file */
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001027 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&last_mod));
Denis Vlasenkof4310172007-09-21 22:35:18 +00001028#if ENABLE_FEATURE_HTTPD_RANGES
1029 if (responseNum == HTTP_PARTIAL_CONTENT) {
1030 len += sprintf(iobuf + len, "Content-Range: bytes %"OFF_FMT"d-%"OFF_FMT"d/%"OFF_FMT"d\r\n",
1031 range_start,
1032 range_end,
1033 file_size);
1034 file_size = range_end - range_start + 1;
1035 }
1036#endif
1037 len += sprintf(iobuf + len,
1038#if ENABLE_FEATURE_HTTPD_RANGES
1039 "Accept-Ranges: bytes\r\n"
1040#endif
1041 "Last-Modified: %s\r\n%s %"OFF_FMT"d\r\n",
1042 tmp_str,
1043 "Content-length:",
1044 file_size
1045 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001046 }
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001047 iobuf[len++] = '\r';
1048 iobuf[len++] = '\n';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001049 if (infoString) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001050 len += sprintf(iobuf + len,
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001051 "<HTML><HEAD><TITLE>%d %s</TITLE></HEAD>\n"
1052 "<BODY><H1>%d %s</H1>\n%s\n</BODY></HTML>\n",
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001053 responseNum, responseString,
1054 responseNum, responseString, infoString);
1055 }
Denis Vlasenko6c85ddc2006-11-21 00:08:39 +00001056 if (DEBUG)
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001057 fprintf(stderr, "headers: '%s'\n", iobuf);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001058 if (full_write(STDOUT_FILENO, iobuf, len) != len) {
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001059 if (verbose > 1)
1060 bb_perror_msg("error");
1061 log_and_exit();
1062 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001063}
1064
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001065static void send_headers_and_exit(int responseNum) NORETURN;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001066static void send_headers_and_exit(int responseNum)
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001067{
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001068 send_headers(responseNum);
1069 log_and_exit();
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001070}
1071
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001072/*
1073 * Read from the socket until '\n' or EOF. '\r' chars are removed.
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001074 * '\n' is replaced with NUL.
1075 * Return number of characters read or 0 if nothing is read
1076 * ('\r' and '\n' are not counted).
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001077 * Data is returned in iobuf.
1078 */
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001079static int get_line(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001080{
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001081 int count = 0;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001082 char c;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001083
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001084 while (1) {
1085 if (hdr_cnt <= 0) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001086 hdr_cnt = safe_read(STDIN_FILENO, hdr_buf, sizeof(hdr_buf));
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001087 if (hdr_cnt <= 0)
1088 break;
1089 hdr_ptr = hdr_buf;
1090 }
1091 iobuf[count] = c = *hdr_ptr++;
1092 hdr_cnt--;
1093
1094 if (c == '\r')
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001095 continue;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001096 if (c == '\n') {
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001097 iobuf[count] = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001098 return count;
1099 }
Denis Vlasenko921799d2007-08-19 19:28:09 +00001100 if (count < (IOBUF_SIZE - 1)) /* check overflow */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001101 count++;
1102 }
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001103 return count;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001104}
1105
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001106#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001107
1108/* gcc 4.2.1 fares better with NOINLINE */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001109static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len) NORETURN;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001110static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len)
1111{
1112 enum { FROM_CGI = 1, TO_CGI = 2 }; /* indexes in pfd[] */
1113 struct pollfd pfd[3];
1114 int out_cnt; /* we buffer a bit of initial CGI output */
1115 int count;
1116
1117 /* iobuf is used for CGI -> network data,
1118 * hdr_buf is for network -> CGI data (POSTDATA) */
1119
1120 /* If CGI dies, we still want to correctly finish reading its output
1121 * and send it to the peer. So please no SIGPIPEs! */
1122 signal(SIGPIPE, SIG_IGN);
1123
Denis Vlasenko4a457562007-10-14 02:34:20 +00001124 // We inconsistently handle a case when more POSTDATA from network
1125 // is coming than we expected. We may give *some part* of that
1126 // extra data to CGI.
1127
1128 //if (hdr_cnt > post_len) {
1129 // /* We got more POSTDATA from network than we expected */
1130 // hdr_cnt = post_len;
1131 //}
1132 post_len -= hdr_cnt;
1133 /* post_len - number of POST bytes not yet read from network */
1134
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001135 /* NB: breaking out of this loop jumps to log_and_exit() */
1136 out_cnt = 0;
1137 while (1) {
1138 memset(pfd, 0, sizeof(pfd));
1139
1140 pfd[FROM_CGI].fd = fromCgi_rd;
1141 pfd[FROM_CGI].events = POLLIN;
1142
1143 if (toCgi_wr) {
1144 pfd[TO_CGI].fd = toCgi_wr;
1145 if (hdr_cnt > 0) {
1146 pfd[TO_CGI].events = POLLOUT;
1147 } else if (post_len > 0) {
1148 pfd[0].events = POLLIN;
1149 } else {
1150 /* post_len <= 0 && hdr_cnt <= 0:
1151 * no more POST data to CGI,
1152 * let CGI see EOF on CGI's stdin */
1153 close(toCgi_wr);
1154 toCgi_wr = 0;
1155 }
1156 }
1157
1158 /* Now wait on the set of sockets */
Denis Vlasenko5d61e712007-09-27 10:09:59 +00001159 count = safe_poll(pfd, 3, -1);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001160 if (count <= 0) {
1161#if 0
Denis Vlasenkofb0eba72008-01-02 19:55:04 +00001162 if (safe_waitpid(pid, &status, WNOHANG) <= 0) {
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001163 /* Weird. CGI didn't exit and no fd's
1164 * are ready, yet poll returned?! */
1165 continue;
1166 }
1167 if (DEBUG && WIFEXITED(status))
1168 bb_error_msg("CGI exited, status=%d", WEXITSTATUS(status));
1169 if (DEBUG && WIFSIGNALED(status))
1170 bb_error_msg("CGI killed, signal=%d", WTERMSIG(status));
1171#endif
1172 break;
1173 }
1174
1175 if (pfd[TO_CGI].revents) {
1176 /* hdr_cnt > 0 here due to the way pfd[TO_CGI].events set */
1177 /* Have data from peer and can write to CGI */
1178 count = safe_write(toCgi_wr, hdr_ptr, hdr_cnt);
1179 /* Doesn't happen, we dont use nonblocking IO here
1180 *if (count < 0 && errno == EAGAIN) {
1181 * ...
1182 *} else */
1183 if (count > 0) {
1184 hdr_ptr += count;
1185 hdr_cnt -= count;
1186 } else {
1187 /* EOF/broken pipe to CGI, stop piping POST data */
1188 hdr_cnt = post_len = 0;
1189 }
1190 }
1191
1192 if (pfd[0].revents) {
1193 /* post_len > 0 && hdr_cnt == 0 here */
1194 /* We expect data, prev data portion is eaten by CGI
1195 * and there *is* data to read from the peer
1196 * (POSTDATA) */
1197 //count = post_len > (int)sizeof(hdr_buf) ? (int)sizeof(hdr_buf) : post_len;
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001198 //count = safe_read(STDIN_FILENO, hdr_buf, count);
1199 count = safe_read(STDIN_FILENO, hdr_buf, sizeof(hdr_buf));
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001200 if (count > 0) {
1201 hdr_cnt = count;
1202 hdr_ptr = hdr_buf;
1203 post_len -= count;
1204 } else {
1205 /* no more POST data can be read */
1206 post_len = 0;
1207 }
1208 }
1209
1210 if (pfd[FROM_CGI].revents) {
1211 /* There is something to read from CGI */
1212 char *rbuf = iobuf;
1213
1214 /* Are we still buffering CGI output? */
1215 if (out_cnt >= 0) {
1216 /* HTTP_200[] has single "\r\n" at the end.
1217 * According to http://hoohoo.ncsa.uiuc.edu/cgi/out.html,
1218 * CGI scripts MUST send their own header terminated by
1219 * empty line, then data. That's why we have only one
1220 * <cr><lf> pair here. We will output "200 OK" line
1221 * if needed, but CGI still has to provide blank line
1222 * between header and body */
1223
1224 /* Must use safe_read, not full_read, because
1225 * CGI may output a few first bytes and then wait
1226 * for POSTDATA without closing stdout.
1227 * With full_read we may wait here forever. */
1228 count = safe_read(fromCgi_rd, rbuf + out_cnt, PIPE_BUF - 8);
1229 if (count <= 0) {
1230 /* eof (or error) and there was no "HTTP",
1231 * so write it, then write received data */
1232 if (out_cnt) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001233 full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1);
1234 full_write(STDOUT_FILENO, rbuf, out_cnt);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001235 }
1236 break; /* CGI stdout is closed, exiting */
1237 }
1238 out_cnt += count;
1239 count = 0;
1240 /* "Status" header format is: "Status: 302 Redirected\r\n" */
1241 if (out_cnt >= 8 && memcmp(rbuf, "Status: ", 8) == 0) {
1242 /* send "HTTP/1.0 " */
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001243 if (full_write(STDOUT_FILENO, HTTP_200, 9) != 9)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001244 break;
1245 rbuf += 8; /* skip "Status: " */
1246 count = out_cnt - 8;
1247 out_cnt = -1; /* buffering off */
1248 } else if (out_cnt >= 4) {
1249 /* Did CGI add "HTTP"? */
1250 if (memcmp(rbuf, HTTP_200, 4) != 0) {
1251 /* there is no "HTTP", do it ourself */
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001252 if (full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1) != sizeof(HTTP_200)-1)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001253 break;
1254 }
1255 /* Commented out:
1256 if (!strstr(rbuf, "ontent-")) {
1257 full_write(s, "Content-type: text/plain\r\n\r\n", 28);
1258 }
1259 * Counter-example of valid CGI without Content-type:
1260 * echo -en "HTTP/1.0 302 Found\r\n"
1261 * echo -en "Location: http://www.busybox.net\r\n"
1262 * echo -en "\r\n"
1263 */
1264 count = out_cnt;
1265 out_cnt = -1; /* buffering off */
1266 }
1267 } else {
1268 count = safe_read(fromCgi_rd, rbuf, PIPE_BUF);
1269 if (count <= 0)
1270 break; /* eof (or error) */
1271 }
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001272 if (full_write(STDOUT_FILENO, rbuf, count) != count)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001273 break;
1274 if (DEBUG)
1275 fprintf(stderr, "cgi read %d bytes: '%.*s'\n", count, count, rbuf);
1276 } /* if (pfd[FROM_CGI].revents) */
1277 } /* while (1) */
1278 log_and_exit();
1279}
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001280#endif
1281
1282#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001283
Denis Vlasenko921799d2007-08-19 19:28:09 +00001284static void setenv1(const char *name, const char *value)
1285{
1286 setenv(name, value ? value : "", 1);
1287}
1288
Denis Vlasenko241b1562007-08-17 19:18:47 +00001289/*
1290 * Spawn CGI script, forward CGI's stdin/out <=> network
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001291 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001292 * Environment variables are set up and the script is invoked with pipes
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001293 * for stdin/stdout. If a POST is being done the script is fed the POST
Denis Vlasenko241b1562007-08-17 19:18:47 +00001294 * data in addition to setting the QUERY_STRING variable (for GETs or POSTs).
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001295 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001296 * Parameters:
1297 * const char *url The requested URL (with leading /).
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001298 * int post_len Length of the POST body.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001299 * const char *cookie For set HTTP_COOKIE.
1300 * const char *content_type For set CONTENT_TYPE.
1301 */
1302static void send_cgi_and_exit(
1303 const char *url,
1304 const char *request,
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001305 int post_len,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001306 const char *cookie,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001307 const char *content_type) NORETURN;
Denis Vlasenko241b1562007-08-17 19:18:47 +00001308static void send_cgi_and_exit(
1309 const char *url,
1310 const char *request,
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001311 int post_len,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001312 const char *cookie,
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001313 const char *content_type)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001314{
Denis Vlasenko37188322008-02-16 13:20:56 +00001315 struct fd_pair fromCgi; /* CGI -> httpd pipe */
1316 struct fd_pair toCgi; /* httpd -> CGI pipe */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001317 char *script;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001318 int pid;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001319
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001320 /* Make a copy. NB: caller guarantees:
1321 * url[0] == '/', url[1] != '/' */
1322 url = xstrdup(url);
1323
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001324 /*
1325 * We are mucking with environment _first_ and then vfork/exec,
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001326 * this allows us to use vfork safely. Parent doesn't care about
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001327 * these environment changes anyway.
1328 */
1329
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001330 /* Check for [dirs/]script.cgi/PATH_INFO */
1331 script = (char*)url;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001332 while ((script = strchr(script + 1, '/')) != NULL) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001333 struct stat sb;
1334
1335 *script = '\0';
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001336 if (!is_directory(url + 1, 1, &sb)) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001337 /* not directory, found script.cgi/PATH_INFO */
1338 *script = '/';
1339 break;
1340 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001341 *script = '/'; /* is directory, find next '/' */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001342 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001343 setenv1("PATH_INFO", script); /* set to /PATH_INFO or "" */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001344 setenv1("REQUEST_METHOD", request);
1345 if (g_query) {
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001346 putenv(xasprintf("%s=%s?%s", "REQUEST_URI", url, g_query));
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001347 } else {
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001348 setenv1("REQUEST_URI", url);
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001349 }
1350 if (script != NULL)
1351 *script = '\0'; /* cut off /PATH_INFO */
1352
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001353 /* SCRIPT_FILENAME is required by PHP in CGI mode */
1354 if (home_httpd[0] == '/') {
1355 char *fullpath = concat_path_file(home_httpd, url);
1356 setenv1("SCRIPT_FILENAME", fullpath);
1357 }
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001358 /* set SCRIPT_NAME as full path: /cgi-bin/dirs/script.cgi */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001359 setenv1("SCRIPT_NAME", url);
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001360 /* http://hoohoo.ncsa.uiuc.edu/cgi/env.html:
1361 * QUERY_STRING: The information which follows the ? in the URL
1362 * which referenced this script. This is the query information.
1363 * It should not be decoded in any fashion. This variable
1364 * should always be set when there is query information,
1365 * regardless of command line decoding. */
1366 /* (Older versions of bbox seem to do some decoding) */
1367 setenv1("QUERY_STRING", g_query);
1368 putenv((char*)"SERVER_SOFTWARE=busybox httpd/"BB_VER);
1369 putenv((char*)"SERVER_PROTOCOL=HTTP/1.0");
1370 putenv((char*)"GATEWAY_INTERFACE=CGI/1.1");
1371 /* Having _separate_ variables for IP and port defeats
1372 * the purpose of having socket abstraction. Which "port"
1373 * are you using on Unix domain socket?
1374 * IOW - REMOTE_PEER="1.2.3.4:56" makes much more sense.
1375 * Oh well... */
1376 {
1377 char *p = rmt_ip_str ? rmt_ip_str : (char*)"";
1378 char *cp = strrchr(p, ':');
1379 if (ENABLE_FEATURE_IPV6 && cp && strchr(cp, ']'))
1380 cp = NULL;
1381 if (cp) *cp = '\0'; /* delete :PORT */
1382 setenv1("REMOTE_ADDR", p);
Denis Vlasenko37c33162007-08-19 18:54:22 +00001383 if (cp) {
1384 *cp = ':';
1385#if ENABLE_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
1386 setenv1("REMOTE_PORT", cp + 1);
1387#endif
1388 }
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001389 }
1390 setenv1("HTTP_USER_AGENT", user_agent);
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +00001391 if (http_accept)
1392 setenv1("HTTP_ACCEPT", http_accept);
1393 if (http_accept_language)
1394 setenv1("HTTP_ACCEPT_LANGUAGE", http_accept_language);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001395 if (post_len)
1396 putenv(xasprintf("CONTENT_LENGTH=%d", post_len));
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001397 if (cookie)
1398 setenv1("HTTP_COOKIE", cookie);
1399 if (content_type)
1400 setenv1("CONTENT_TYPE", content_type);
1401#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1402 if (remoteuser) {
1403 setenv1("REMOTE_USER", remoteuser);
1404 putenv((char*)"AUTH_TYPE=Basic");
1405 }
1406#endif
1407 if (referer)
1408 setenv1("HTTP_REFERER", referer);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001409
Denis Vlasenko37188322008-02-16 13:20:56 +00001410 xpiped_pair(fromCgi);
1411 xpiped_pair(toCgi);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001412
Denis Vlasenko80281fe2007-03-07 22:16:38 +00001413 pid = vfork();
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001414 if (pid < 0) {
1415 /* TODO: log perror? */
1416 log_and_exit();
1417 }
Denis Vlasenkof7996f32007-01-11 17:20:00 +00001418
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001419 if (!pid) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001420 /* Child process */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001421 char *argv[3];
1422
Denis Vlasenko241b1562007-08-17 19:18:47 +00001423 xfunc_error_retval = 242;
1424
Denis Vlasenko284d0fa2008-02-16 13:18:17 +00001425 /* NB: close _first_, then move fds! */
1426 close(toCgi.wr);
1427 close(fromCgi.rd);
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001428 xmove_fd(toCgi.rd, 0); /* replace stdin with the pipe */
1429 xmove_fd(fromCgi.wr, 1); /* replace stdout with the pipe */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001430 /* User seeing stderr output can be a security problem.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001431 * If CGI really wants that, it can always do dup itself. */
Denis Vlasenko1ec15cd2007-08-11 20:20:43 +00001432 /* dup2(1, 2); */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001433
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001434 /* Chdiring to script's dir */
1435 script = strrchr(url, '/');
1436 if (script != url) { /* paranoia */
1437 *script = '\0';
1438 if (chdir(url + 1) != 0) {
1439 bb_perror_msg("chdir %s", url + 1);
1440 goto error_execing_cgi;
1441 }
1442 // not needed: *script = '/';
1443 }
1444 script++;
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001445
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001446 /* set argv[0] to name without path */
1447 argv[0] = script;
1448 argv[1] = NULL;
Denis Vlasenkofc213052008-02-11 16:26:22 +00001449
1450#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001451 {
1452 char *suffix = strrchr(script, '.');
Denis Vlasenkofc213052008-02-11 16:26:22 +00001453
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001454 if (suffix) {
1455 Htaccess *cur;
1456 for (cur = script_i; cur; cur = cur->next) {
1457 if (strcmp(cur->before_colon + 1, suffix) == 0) {
1458 /* found interpreter name */
1459 argv[0] = cur->after_colon;
1460 argv[1] = script;
1461 argv[2] = NULL;
1462 break;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001463 }
1464 }
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001465 }
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001466 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001467#endif
1468 /* restore default signal dispositions for CGI process */
1469 bb_signals(0
1470 | (1 << SIGCHLD)
1471 | (1 << SIGPIPE)
1472 | (1 << SIGHUP)
1473 , SIG_DFL);
1474
1475 /* _NOT_ execvp. We do not search PATH. argv[0] is a filename
1476 * without any dir components and will only match a file
1477 * in the current directory */
1478 execv(argv[0], argv);
1479 if (verbose)
1480 bb_perror_msg("exec %s", argv[0]);
1481 error_execing_cgi:
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001482 /* send to stdout
1483 * (we are CGI here, our stdout is pumped to the net) */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001484 send_headers_and_exit(HTTP_NOT_FOUND);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001485 } /* end child */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001486
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001487 /* Parent process */
1488
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001489 /* Restore variables possibly changed by child */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001490 xfunc_error_retval = 0;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001491
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001492 /* Pump data */
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001493 close(fromCgi.wr);
1494 close(toCgi.rd);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001495 cgi_io_loop_and_exit(fromCgi.rd, toCgi.wr, post_len);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001496}
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001497
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001498#endif /* FEATURE_HTTPD_CGI */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001499
Denis Vlasenko241b1562007-08-17 19:18:47 +00001500/*
1501 * Send a file response to a HTTP request, and exit
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00001502 *
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001503 * Parameters:
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001504 * const char *url The requested URL (with leading /).
1505 * what What to send (headers/body/both).
Denis Vlasenko241b1562007-08-17 19:18:47 +00001506 */
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001507static void send_file_and_exit(const char *url, int what)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001508{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001509 static const char *const suffixTable[] = {
1510 /* Warning: shorter equivalent suffix in one line must be first */
1511 ".htm.html", "text/html",
1512 ".jpg.jpeg", "image/jpeg",
1513 ".gif", "image/gif",
1514 ".png", "image/png",
1515 ".txt.h.c.cc.cpp", "text/plain",
1516 ".css", "text/css",
1517 ".wav", "audio/wav",
1518 ".avi", "video/x-msvideo",
1519 ".qt.mov", "video/quicktime",
1520 ".mpe.mpeg", "video/mpeg",
1521 ".mid.midi", "audio/midi",
1522 ".mp3", "audio/mpeg",
1523#if 0 /* unpopular */
1524 ".au", "audio/basic",
1525 ".pac", "application/x-ns-proxy-autoconfig",
1526 ".vrml.wrl", "model/vrml",
1527#endif
1528 NULL
1529 };
1530
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001531 char *suffix;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001532 int f;
1533 const char *const *table;
1534 const char *try_suffix;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001535 ssize_t count;
1536#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
Denis Vlasenkof4310172007-09-21 22:35:18 +00001537 off_t offset;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001538#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001539
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001540 /* If you want to know about EPIPE below
1541 * (happens if you abort downloads from local httpd): */
1542 signal(SIGPIPE, SIG_IGN);
1543
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001544 suffix = strrchr(url, '.');
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001545
Denis Vlasenko073214f2007-08-17 19:20:07 +00001546 /* If not found, set default as "application/octet-stream"; */
1547 found_mime_type = "application/octet-stream";
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001548 if (suffix) {
Denis Vlasenko073214f2007-08-17 19:20:07 +00001549#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
1550 Htaccess *cur;
1551#endif
1552 for (table = suffixTable; *table; table += 2) {
1553 try_suffix = strstr(table[0], suffix);
1554 if (try_suffix) {
1555 try_suffix += strlen(suffix);
1556 if (*try_suffix == '\0' || *try_suffix == '.') {
1557 found_mime_type = table[1];
1558 break;
1559 }
1560 }
1561 }
1562#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001563 for (cur = mime_a; cur; cur = cur->next) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001564 if (strcmp(cur->before_colon, suffix) == 0) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001565 found_mime_type = cur->after_colon;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001566 break;
1567 }
1568 }
Denis Vlasenko073214f2007-08-17 19:20:07 +00001569#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001570 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001571
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001572 if (DEBUG)
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001573 bb_error_msg("sending file '%s' content-type: %s",
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001574 url, found_mime_type);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001575
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001576 f = open(url, O_RDONLY);
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001577 if (f < 0) {
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001578 if (DEBUG)
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +00001579 bb_perror_msg("can't open '%s'", url);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001580 /* Error pages are sent by using send_file_and_exit(SEND_BODY).
1581 * IOW: it is unsafe to call send_headers_and_exit
1582 * if what is SEND_BODY! Can recurse! */
1583 if (what != SEND_BODY)
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001584 send_headers_and_exit(HTTP_NOT_FOUND);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001585 log_and_exit();
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001586 }
Denis Vlasenkof4310172007-09-21 22:35:18 +00001587#if ENABLE_FEATURE_HTTPD_RANGES
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001588 if (what == SEND_BODY)
Denis Vlasenkof4310172007-09-21 22:35:18 +00001589 range_start = 0; /* err pages and ranges don't mix */
1590 range_len = MAXINT(off_t);
1591 if (range_start) {
1592 if (!range_end) {
1593 range_end = file_size - 1;
1594 }
1595 if (range_end < range_start
1596 || lseek(f, range_start, SEEK_SET) != range_start
1597 ) {
1598 lseek(f, 0, SEEK_SET);
1599 range_start = 0;
1600 } else {
1601 range_len = range_end - range_start + 1;
1602 send_headers(HTTP_PARTIAL_CONTENT);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001603 what = SEND_BODY;
Denis Vlasenkof4310172007-09-21 22:35:18 +00001604 }
1605 }
1606#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001607
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001608 if (what & SEND_HEADERS)
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001609 send_headers(HTTP_OK);
Denis Vlasenko241b1562007-08-17 19:18:47 +00001610
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001611#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
Denis Vlasenkof4310172007-09-21 22:35:18 +00001612 offset = range_start;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001613 do {
Denis Vlasenkof4310172007-09-21 22:35:18 +00001614 /* sz is rounded down to 64k */
1615 ssize_t sz = MAXINT(ssize_t) - 0xffff;
1616 USE_FEATURE_HTTPD_RANGES(if (sz > range_len) sz = range_len;)
1617 count = sendfile(1, f, &offset, sz);
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001618 if (count < 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00001619 if (offset == range_start)
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001620 goto fallback;
Denis Vlasenko241b1562007-08-17 19:18:47 +00001621 goto fin;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001622 }
Denis Vlasenkof4310172007-09-21 22:35:18 +00001623 USE_FEATURE_HTTPD_RANGES(range_len -= sz;)
1624 } while (count > 0 && range_len);
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001625 log_and_exit();
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001626
1627 fallback:
1628#endif
Denis Vlasenko921799d2007-08-19 19:28:09 +00001629 while ((count = safe_read(f, iobuf, IOBUF_SIZE)) > 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00001630 ssize_t n;
1631 USE_FEATURE_HTTPD_RANGES(if (count > range_len) count = range_len;)
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001632 n = full_write(STDOUT_FILENO, iobuf, count);
Denis Vlasenko241b1562007-08-17 19:18:47 +00001633 if (count != n)
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001634 break;
Denis Vlasenkof4310172007-09-21 22:35:18 +00001635 USE_FEATURE_HTTPD_RANGES(range_len -= count;)
1636 if (!range_len)
1637 break;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001638 }
Denis Vlasenko241b1562007-08-17 19:18:47 +00001639#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
1640 fin:
1641#endif
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001642 if (count < 0 && verbose > 1)
1643 bb_perror_msg("error");
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001644 log_and_exit();
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001645}
1646
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001647static int checkPermIP(void)
1648{
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001649 Htaccess_IP *cur;
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001650
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001651 for (cur = ip_a_d; cur; cur = cur->next) {
Denis Vlasenkob64eed62007-01-14 17:06:11 +00001652#if DEBUG
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001653 fprintf(stderr,
1654 "checkPermIP: '%s' ? '%u.%u.%u.%u/%u.%u.%u.%u'\n",
1655 rmt_ip_str,
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00001656 (unsigned char)(cur->ip >> 24),
1657 (unsigned char)(cur->ip >> 16),
1658 (unsigned char)(cur->ip >> 8),
1659 (unsigned char)(cur->ip),
1660 (unsigned char)(cur->mask >> 24),
1661 (unsigned char)(cur->mask >> 16),
1662 (unsigned char)(cur->mask >> 8),
1663 (unsigned char)(cur->mask)
1664 );
Denis Vlasenko3bba5452006-12-30 17:57:03 +00001665#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001666 if ((rmt_ip & cur->mask) == cur->ip)
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001667 return (cur->allow_deny == 'A'); /* A -> 1 */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001668 }
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001669
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001670 return !flg_deny_all; /* depends on whether we saw "D:*" */
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001671}
1672
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001673#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko073214f2007-08-17 19:20:07 +00001674/*
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001675 * Config file entries are of the form "/<path>:<user>:<passwd>".
1676 * If config file has no prefix match for path, access is allowed.
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001677 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001678 * path The file path
1679 * user_and_passwd "user:passwd" to validate
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001680 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001681 * Returns 1 if user_and_passwd is OK.
Denis Vlasenko073214f2007-08-17 19:20:07 +00001682 */
Denis Vlasenko25b46302008-06-13 09:55:13 +00001683static int check_user_passwd(const char *path, const char *user_and_passwd)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001684{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001685 Htaccess *cur;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001686 const char *prev = NULL;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001687
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001688 for (cur = g_auth; cur; cur = cur->next) {
Denis Vlasenko25b46302008-06-13 09:55:13 +00001689 const char *dir_prefix;
1690 size_t len;
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001691
Denis Vlasenko25b46302008-06-13 09:55:13 +00001692 dir_prefix = cur->before_colon;
1693
1694 /* WHY? */
1695 /* If already saw a match, don't accept other different matches */
1696 if (prev && strcmp(prev, dir_prefix) != 0)
1697 continue;
1698
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001699 if (DEBUG)
Denis Vlasenko25b46302008-06-13 09:55:13 +00001700 fprintf(stderr, "checkPerm: '%s' ? '%s'\n", dir_prefix, user_and_passwd);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001701
Denis Vlasenko25b46302008-06-13 09:55:13 +00001702 /* If it's not a prefix match, continue searching */
1703 len = strlen(dir_prefix);
1704 if (len != 1 /* dir_prefix "/" matches all, don't need to check */
1705 && (strncmp(dir_prefix, path, len) != 0
1706 || (path[len] != '/' && path[len] != '\0'))
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001707 ) {
Denis Vlasenko25b46302008-06-13 09:55:13 +00001708 continue;
1709 }
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001710
Denis Vlasenko25b46302008-06-13 09:55:13 +00001711 /* Path match found */
1712 prev = dir_prefix;
Eric Andersen35e643b2003-07-28 07:40:39 +00001713
Denis Vlasenko25b46302008-06-13 09:55:13 +00001714 if (ENABLE_FEATURE_HTTPD_AUTH_MD5) {
1715 char *md5_passwd;
1716
1717 md5_passwd = strchr(cur->after_colon, ':');
1718 if (md5_passwd && md5_passwd[1] == '$' && md5_passwd[2] == '1'
1719 && md5_passwd[3] == '$' && md5_passwd[4]
1720 ) {
1721 char *encrypted;
1722 int r, user_len_p1;
1723
1724 md5_passwd++;
1725 user_len_p1 = md5_passwd - cur->after_colon;
1726 /* comparing "user:" */
1727 if (strncmp(cur->after_colon, user_and_passwd, user_len_p1) != 0) {
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001728 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001729 }
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001730
Denis Vlasenko25b46302008-06-13 09:55:13 +00001731 encrypted = pw_encrypt(
1732 user_and_passwd + user_len_p1 /* cleartext pwd from user */,
1733 md5_passwd /*salt */, 1 /* cleanup */);
1734 r = strcmp(encrypted, md5_passwd);
1735 free(encrypted);
1736 if (r == 0)
1737 goto set_remoteuser_var; /* Ok */
1738 continue;
1739 }
1740 }
1741
1742 /* Comparing plaintext "user:pass" in one go */
1743 if (strcmp(cur->after_colon, user_and_passwd) == 0) {
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001744 set_remoteuser_var:
Denis Vlasenko25b46302008-06-13 09:55:13 +00001745 remoteuser = xstrndup(user_and_passwd,
1746 strchrnul(user_and_passwd, ':') - user_and_passwd);
1747 return 1; /* Ok */
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001748 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001749 } /* for */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001750
Denis Vlasenko25b46302008-06-13 09:55:13 +00001751 /* 0(bad) if prev is set: matches were found but passwd was wrong */
1752 return (prev == NULL);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001753}
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001754#endif /* FEATURE_HTTPD_BASIC_AUTH */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001755
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001756#if ENABLE_FEATURE_HTTPD_PROXY
1757static Htaccess_Proxy *find_proxy_entry(const char *url)
1758{
1759 Htaccess_Proxy *p;
1760 for (p = proxy; p; p = p->next) {
1761 if (strncmp(url, p->url_from, strlen(p->url_from)) == 0)
1762 return p;
1763 }
1764 return NULL;
1765}
1766#endif
1767
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001768/*
1769 * Handle timeouts
1770 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001771static void exit_on_signal(int sig) NORETURN;
1772static void exit_on_signal(int sig UNUSED_PARAM)
Eric Andersen07f2fea2004-10-08 08:03:29 +00001773{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001774 send_headers_and_exit(HTTP_REQUEST_TIMEOUT);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001775}
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001776
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001777/*
1778 * Handle an incoming http request and exit.
1779 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001780static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr) NORETURN;
Denis Vlasenko367960b2007-08-18 14:20:21 +00001781static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001782{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001783 static const char request_GET[] ALIGN1 = "GET";
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001784 struct stat sb;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001785 char *urlcopy;
1786 char *urlp;
1787 char *tptr;
Denis Vlasenko55a99402006-09-30 20:41:44 +00001788#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001789 static const char request_HEAD[] ALIGN1 = "HEAD";
Denis Vlasenko073214f2007-08-17 19:20:07 +00001790 const char *prequest;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001791 char *cookie = NULL;
1792 char *content_type = NULL;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001793 unsigned long length = 0;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001794#elif ENABLE_FEATURE_HTTPD_PROXY
1795#define prequest request_GET
1796 unsigned long length = 0;
1797#endif
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001798#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1799 smallint authorized = -1;
1800#endif
1801 smallint ip_allowed;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001802 char http_major_version;
1803#if ENABLE_FEATURE_HTTPD_PROXY
1804 char http_minor_version;
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001805 char *header_buf = header_buf; /* for gcc */
1806 char *header_ptr = header_ptr;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001807 Htaccess_Proxy *proxy_entry;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001808#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001809
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001810 /* Allocation of iobuf is postponed until now
1811 * (IOW, server process doesn't need to waste 8k) */
Denis Vlasenko921799d2007-08-19 19:28:09 +00001812 iobuf = xmalloc(IOBUF_SIZE);
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001813
Denis Vlasenko367960b2007-08-18 14:20:21 +00001814 rmt_ip = 0;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001815 if (fromAddr->u.sa.sa_family == AF_INET) {
1816 rmt_ip = ntohl(fromAddr->u.sin.sin_addr.s_addr);
Denis Vlasenko367960b2007-08-18 14:20:21 +00001817 }
Denis Vlasenko35465a32007-09-25 11:58:33 +00001818#if ENABLE_FEATURE_IPV6
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001819 if (fromAddr->u.sa.sa_family == AF_INET6
1820 && fromAddr->u.sin6.sin6_addr.s6_addr32[0] == 0
1821 && fromAddr->u.sin6.sin6_addr.s6_addr32[1] == 0
1822 && ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[2]) == 0xffff)
1823 rmt_ip = ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[3]);
Denis Vlasenko35465a32007-09-25 11:58:33 +00001824#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00001825 if (ENABLE_FEATURE_HTTPD_CGI || DEBUG || verbose) {
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00001826 /* NB: can be NULL (user runs httpd -i by hand?) */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001827 rmt_ip_str = xmalloc_sockaddr2dotted(&fromAddr->u.sa);
Denis Vlasenko367960b2007-08-18 14:20:21 +00001828 }
1829 if (verbose) {
1830 /* this trick makes -v logging much simpler */
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00001831 if (rmt_ip_str)
1832 applet_name = rmt_ip_str;
Denis Vlasenko367960b2007-08-18 14:20:21 +00001833 if (verbose > 2)
1834 bb_error_msg("connected");
1835 }
1836
Denis Vlasenko073214f2007-08-17 19:20:07 +00001837 /* Install timeout handler */
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00001838 signal_no_SA_RESTART_empty_mask(SIGALRM, exit_on_signal);
Denis Vlasenko073214f2007-08-17 19:20:07 +00001839 alarm(HEADER_READ_TIMEOUT);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001840
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001841 if (!get_line()) /* EOF or error or empty line */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001842 send_headers_and_exit(HTTP_BAD_REQUEST);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001843
Denis Vlasenko073214f2007-08-17 19:20:07 +00001844 /* Determine type of request (GET/POST) */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001845 urlp = strpbrk(iobuf, " \t");
1846 if (urlp == NULL)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001847 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001848 *urlp++ = '\0';
Denis Vlasenko55a99402006-09-30 20:41:44 +00001849#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko073214f2007-08-17 19:20:07 +00001850 prequest = request_GET;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001851 if (strcasecmp(iobuf, prequest) != 0) {
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001852 prequest = request_HEAD;
1853 if (strcasecmp(iobuf, prequest) != 0) {
1854 prequest = "POST";
1855 if (strcasecmp(iobuf, prequest) != 0)
1856 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
1857 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001858 }
1859#else
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001860 if (strcasecmp(iobuf, request_GET) != 0)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001861 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001862#endif
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001863 urlp = skip_whitespace(urlp);
1864 if (urlp[0] != '/')
1865 send_headers_and_exit(HTTP_BAD_REQUEST);
1866
1867 /* Find end of URL and parse HTTP version, if any */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001868 http_major_version = '0';
1869 USE_FEATURE_HTTPD_PROXY(http_minor_version = '0';)
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001870 tptr = strchrnul(urlp, ' ');
1871 /* Is it " HTTP/"? */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001872 if (tptr[0] && strncmp(tptr + 1, HTTP_200, 5) == 0) {
1873 http_major_version = tptr[6];
1874 USE_FEATURE_HTTPD_PROXY(http_minor_version = tptr[8];)
1875 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001876 *tptr = '\0';
Glenn L McGrath06e95652003-02-09 06:51:14 +00001877
Denis Vlasenko073214f2007-08-17 19:20:07 +00001878 /* Copy URL from after "GET "/"POST " to stack-allocated char[] */
Denis Vlasenkofcd878e2007-12-29 02:16:23 +00001879 urlcopy = alloca((tptr - urlp) + 2 + strlen(index_page));
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001880 /*if (urlcopy == NULL)
1881 * send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);*/
1882 strcpy(urlcopy, urlp);
1883 /* NB: urlcopy ptr is never changed after this */
Denis Vlasenko073214f2007-08-17 19:20:07 +00001884
1885 /* Extract url args if present */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001886 g_query = NULL;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001887 tptr = strchr(urlcopy, '?');
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001888 if (tptr) {
1889 *tptr++ = '\0';
1890 g_query = tptr;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001891 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001892
Denis Vlasenko073214f2007-08-17 19:20:07 +00001893 /* Decode URL escape sequences */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001894 tptr = decodeString(urlcopy, 0);
1895 if (tptr == NULL)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001896 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001897 if (tptr == urlcopy + 1) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001898 /* '/' or NUL is encoded */
1899 send_headers_and_exit(HTTP_NOT_FOUND);
1900 }
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001901
Denis Vlasenko073214f2007-08-17 19:20:07 +00001902 /* Canonicalize path */
1903 /* Algorithm stolen from libbb bb_simplify_path(),
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001904 * but don't strdup, retain trailing slash, protect root */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001905 urlp = tptr = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001906 do {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001907 if (*urlp == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001908 /* skip duplicate (or initial) slash */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001909 if (*tptr == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001910 continue;
1911 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001912 if (*tptr == '.') {
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001913 /* skip extra "/./" */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001914 if (tptr[1] == '/' || !tptr[1]) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001915 continue;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001916 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001917 /* "..": be careful */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001918 if (tptr[1] == '.' && (tptr[2] == '/' || !tptr[2])) {
1919 ++tptr;
1920 if (urlp == urlcopy) /* protect root */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001921 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001922 while (*--urlp != '/') /* omit previous dir */;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001923 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001924 }
1925 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001926 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001927 *++urlp = *tptr;
1928 } while (*++tptr);
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001929 *++urlp = '\0'; /* terminate after last character */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001930
Denis Vlasenko073214f2007-08-17 19:20:07 +00001931 /* If URL is a directory, add '/' */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001932 if (urlp[-1] != '/') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001933 if (is_directory(urlcopy + 1, 1, &sb)) {
1934 found_moved_temporarily = urlcopy;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001935 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001936 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001937
Denis Vlasenko073214f2007-08-17 19:20:07 +00001938 /* Log it */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001939 if (verbose > 1)
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001940 bb_error_msg("url:%s", urlcopy);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001941
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001942 tptr = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001943 ip_allowed = checkPermIP();
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001944 while (ip_allowed && (tptr = strchr(tptr + 1, '/')) != NULL) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001945 /* have path1/path2 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001946 *tptr = '\0';
1947 if (is_directory(urlcopy + 1, 1, &sb)) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001948 /* may have subdir config */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001949 parse_conf(urlcopy + 1, SUBDIR_PARSE);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001950 ip_allowed = checkPermIP();
1951 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001952 *tptr = '/';
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001953 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001954
1955#if ENABLE_FEATURE_HTTPD_PROXY
1956 proxy_entry = find_proxy_entry(urlcopy);
1957 if (proxy_entry)
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001958 header_buf = header_ptr = xmalloc(IOBUF_SIZE);
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001959#endif
1960
1961 if (http_major_version >= '0') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001962 /* Request was with "... HTTP/nXXX", and n >= 0 */
Denis Vlasenko073214f2007-08-17 19:20:07 +00001963
1964 /* Read until blank line for HTTP version specified, else parse immediate */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001965 while (1) {
Denis Vlasenko073214f2007-08-17 19:20:07 +00001966 alarm(HEADER_READ_TIMEOUT);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001967 if (!get_line())
1968 break; /* EOF or error or empty line */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001969 if (DEBUG)
1970 bb_error_msg("header: '%s'", iobuf);
Denis Vlasenko073214f2007-08-17 19:20:07 +00001971
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001972#if ENABLE_FEATURE_HTTPD_PROXY
1973 /* We need 2 more bytes for yet another "\r\n" -
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001974 * see near fdprintf(proxy_fd...) further below */
1975 if (proxy_entry && (header_ptr - header_buf) < IOBUF_SIZE - 2) {
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001976 int len = strlen(iobuf);
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001977 if (len > IOBUF_SIZE - (header_ptr - header_buf) - 4)
1978 len = IOBUF_SIZE - (header_ptr - header_buf) - 4;
1979 memcpy(header_ptr, iobuf, len);
1980 header_ptr += len;
1981 header_ptr[0] = '\r';
1982 header_ptr[1] = '\n';
1983 header_ptr += 2;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001984 }
1985#endif
1986
1987#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
1988 /* Try and do our best to parse more lines */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001989 if ((STRNCASECMP(iobuf, "Content-length:") == 0)) {
1990 /* extra read only for POST */
Denis Vlasenko85c24712008-03-17 09:04:04 +00001991 if (prequest != request_GET
1992#if ENABLE_FEATURE_HTTPD_CGI
1993 && prequest != request_HEAD
1994#endif
1995 ) {
Denis Vlasenko9c8c0382008-03-17 12:58:19 +00001996 tptr = skip_whitespace(iobuf + sizeof("Content-length:") - 1);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001997 if (!tptr[0])
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001998 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001999 /* not using strtoul: it ignores leading minus! */
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002000 length = bb_strtou(tptr, NULL, 10);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002001 /* length is "ulong", but we need to pass it to int later */
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002002 if (errno || length > INT_MAX)
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00002003 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002004 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002005 }
2006#endif
2007#if ENABLE_FEATURE_HTTPD_CGI
2008 else if (STRNCASECMP(iobuf, "Cookie:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002009 cookie = xstrdup(skip_whitespace(iobuf + sizeof("Cookie:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002010 } else if (STRNCASECMP(iobuf, "Content-Type:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002011 content_type = xstrdup(skip_whitespace(iobuf + sizeof("Content-Type:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002012 } else if (STRNCASECMP(iobuf, "Referer:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002013 referer = xstrdup(skip_whitespace(iobuf + sizeof("Referer:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002014 } else if (STRNCASECMP(iobuf, "User-Agent:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002015 user_agent = xstrdup(skip_whitespace(iobuf + sizeof("User-Agent:")-1));
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +00002016 } else if (STRNCASECMP(iobuf, "Accept:") == 0) {
2017 http_accept = xstrdup(skip_whitespace(iobuf + sizeof("Accept:")-1));
2018 } else if (STRNCASECMP(iobuf, "Accept-Language:") == 0) {
2019 http_accept_language = xstrdup(skip_whitespace(iobuf + sizeof("Accept-Language:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002020 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002021#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002022#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002023 if (STRNCASECMP(iobuf, "Authorization:") == 0) {
2024 /* We only allow Basic credentials.
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002025 * It shows up as "Authorization: Basic <user>:<passwd>" where
2026 * "<user>:<passwd>" is base64 encoded.
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002027 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002028 tptr = skip_whitespace(iobuf + sizeof("Authorization:")-1);
2029 if (STRNCASECMP(tptr, "Basic") != 0)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002030 continue;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002031 tptr += sizeof("Basic")-1;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002032 /* decodeBase64() skips whitespace itself */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002033 decodeBase64(tptr);
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002034 authorized = check_user_passwd(urlcopy, tptr);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002035 }
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002036#endif
Denis Vlasenkof4310172007-09-21 22:35:18 +00002037#if ENABLE_FEATURE_HTTPD_RANGES
2038 if (STRNCASECMP(iobuf, "Range:") == 0) {
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002039 /* We know only bytes=NNN-[MMM] */
Denis Vlasenkof4310172007-09-21 22:35:18 +00002040 char *s = skip_whitespace(iobuf + sizeof("Range:")-1);
2041 if (strncmp(s, "bytes=", 6) == 0) {
2042 s += sizeof("bytes=")-1;
2043 range_start = BB_STRTOOFF(s, &s, 10);
2044 if (s[0] != '-' || range_start < 0) {
2045 range_start = 0;
2046 } else if (s[1]) {
2047 range_end = BB_STRTOOFF(s+1, NULL, 10);
2048 if (errno || range_end < range_start)
2049 range_start = 0;
2050 }
2051 }
2052 }
2053#endif
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002054 } /* while extra header reading */
2055 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002056
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002057 /* We are done reading headers, disable peer timeout */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002058 alarm(0);
2059
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002060 if (strcmp(bb_basename(urlcopy), httpd_conf) == 0 || !ip_allowed) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002061 /* protect listing [/path]/httpd_conf or IP deny */
2062 send_headers_and_exit(HTTP_FORBIDDEN);
2063 }
2064
2065#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002066 /* Case: no "Authorization:" was seen, but page does require passwd.
2067 * Check that with dummy user:pass */
Denis Vlasenko7504f2f2008-06-13 13:20:38 +00002068 if (authorized < 0)
2069 authorized = check_user_passwd(urlcopy, ":");
2070 if (!authorized)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002071 send_headers_and_exit(HTTP_UNAUTHORIZED);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002072#endif
2073
2074 if (found_moved_temporarily) {
2075 send_headers_and_exit(HTTP_MOVED_TEMPORARILY);
2076 }
2077
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002078#if ENABLE_FEATURE_HTTPD_PROXY
2079 if (proxy_entry != NULL) {
2080 int proxy_fd;
2081 len_and_sockaddr *lsa;
2082
2083 proxy_fd = socket(AF_INET, SOCK_STREAM, 0);
2084 if (proxy_fd < 0)
2085 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2086 lsa = host2sockaddr(proxy_entry->host_port, 80);
2087 if (lsa == NULL)
2088 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002089 if (connect(proxy_fd, &lsa->u.sa, lsa->len) < 0)
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002090 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2091 fdprintf(proxy_fd, "%s %s%s%s%s HTTP/%c.%c\r\n",
2092 prequest, /* GET or POST */
2093 proxy_entry->url_to, /* url part 1 */
2094 urlcopy + strlen(proxy_entry->url_from), /* url part 2 */
2095 (g_query ? "?" : ""), /* "?" (maybe) */
2096 (g_query ? g_query : ""), /* query string (maybe) */
2097 http_major_version, http_minor_version);
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00002098 header_ptr[0] = '\r';
2099 header_ptr[1] = '\n';
2100 header_ptr += 2;
2101 write(proxy_fd, header_buf, header_ptr - header_buf);
2102 free(header_buf); /* on the order of 8k, free it */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002103 /* cgi_io_loop_and_exit needs to have two disctinct fds */
2104 cgi_io_loop_and_exit(proxy_fd, dup(proxy_fd), length);
2105 }
2106#endif
2107
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002108 tptr = urlcopy + 1; /* skip first '/' */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002109
2110#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002111 if (strncmp(tptr, "cgi-bin/", 8) == 0) {
2112 if (tptr[8] == '\0') {
Denis Vlasenko073214f2007-08-17 19:20:07 +00002113 /* protect listing "cgi-bin/" */
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002114 send_headers_and_exit(HTTP_FORBIDDEN);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002115 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002116 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002117 }
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002118#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002119 {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002120 char *suffix = strrchr(tptr, '.');
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002121 if (suffix) {
2122 Htaccess *cur;
2123 for (cur = script_i; cur; cur = cur->next) {
2124 if (strcmp(cur->before_colon + 1, suffix) == 0) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002125 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002126 }
2127 }
2128 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002129 }
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002130#endif
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002131 if (prequest != request_GET && prequest != request_HEAD) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002132 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
2133 }
Denis Vlasenko5d148e22006-11-21 00:12:09 +00002134#endif /* FEATURE_HTTPD_CGI */
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00002135
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002136 if (urlp[-1] == '/')
Denis Vlasenkofcd878e2007-12-29 02:16:23 +00002137 strcpy(urlp, index_page);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002138 if (stat(tptr, &sb) == 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00002139 file_size = sb.st_size;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002140 last_mod = sb.st_mtime;
2141 }
Denis Vlasenko5d148e22006-11-21 00:12:09 +00002142#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002143 else if (urlp[-1] == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002144 /* It's a dir URL and there is no index.html
2145 * Try cgi-bin/index.cgi */
2146 if (access("/cgi-bin/index.cgi"+1, X_OK) == 0) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002147 urlp[0] = '\0';
2148 g_query = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002149 send_cgi_and_exit("/cgi-bin/index.cgi", prequest, length, cookie, content_type);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002150 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002151 }
Denis Vlasenko073214f2007-08-17 19:20:07 +00002152#endif
2153 /* else {
2154 * fall through to send_file, it errors out if open fails
2155 * }
2156 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002157
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002158 send_file_and_exit(tptr,
Denis Vlasenko85c24712008-03-17 09:04:04 +00002159#if ENABLE_FEATURE_HTTPD_CGI
2160 (prequest != request_HEAD ? SEND_HEADERS_AND_BODY : SEND_HEADERS)
2161#else
2162 SEND_HEADERS_AND_BODY
2163#endif
2164 );
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002165}
2166
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002167/*
2168 * The main http server function.
Denis Vlasenko367960b2007-08-18 14:20:21 +00002169 * Given a socket, listen for new connections and farm out
2170 * the processing as a [v]forked process.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002171 * Never returns.
2172 */
Denis Vlasenko367960b2007-08-18 14:20:21 +00002173#if BB_MMU
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002174static void mini_httpd(int server_socket) NORETURN;
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002175static void mini_httpd(int server_socket)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002176{
Denis Vlasenko073214f2007-08-17 19:20:07 +00002177 /* NB: it's best to not use xfuncs in this loop before fork().
2178 * Otherwise server may die on transient errors (temporary
2179 * out-of-memory condition, etc), which is Bad(tm).
2180 * Try to do any dangerous calls after fork.
2181 */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002182 while (1) {
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002183 int n;
2184 len_and_sockaddr fromAddr;
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00002185
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002186 /* Wait for connections... */
2187 fromAddr.len = LSA_SIZEOF_SA;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002188 n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002189
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002190 if (n < 0)
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00002191 continue;
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002192 /* set the KEEPALIVE option to cull dead connections */
2193 setsockopt(n, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002194
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002195 if (fork() == 0) {
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002196 /* child */
Denis Vlasenko55a99402006-09-30 20:41:44 +00002197#if ENABLE_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002198 /* Do not reload config on HUP */
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00002199 signal(SIGHUP, SIG_IGN);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00002200#endif
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002201 close(server_socket);
2202 xmove_fd(n, 0);
2203 xdup2(0, 1);
2204
Denis Vlasenko367960b2007-08-18 14:20:21 +00002205 handle_incoming_and_exit(&fromAddr);
2206 }
2207 /* parent, or fork failed */
2208 close(n);
2209 } /* while (1) */
2210 /* never reached */
2211}
2212#else
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002213static void mini_httpd_nommu(int server_socket, int argc, char **argv) NORETURN;
Denis Vlasenko367960b2007-08-18 14:20:21 +00002214static void mini_httpd_nommu(int server_socket, int argc, char **argv)
2215{
2216 char *argv_copy[argc + 2];
2217
2218 argv_copy[0] = argv[0];
2219 argv_copy[1] = (char*)"-i";
2220 memcpy(&argv_copy[2], &argv[1], argc * sizeof(argv[0]));
2221
2222 /* NB: it's best to not use xfuncs in this loop before vfork().
2223 * Otherwise server may die on transient errors (temporary
2224 * out-of-memory condition, etc), which is Bad(tm).
2225 * Try to do any dangerous calls after fork.
2226 */
2227 while (1) {
2228 int n;
2229 len_and_sockaddr fromAddr;
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00002230
Denis Vlasenko367960b2007-08-18 14:20:21 +00002231 /* Wait for connections... */
2232 fromAddr.len = LSA_SIZEOF_SA;
Denis Vlasenko671ca332008-02-19 14:13:20 +00002233 n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002234
2235 if (n < 0)
2236 continue;
2237 /* set the KEEPALIVE option to cull dead connections */
2238 setsockopt(n, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
2239
2240 if (vfork() == 0) {
2241 /* child */
2242#if ENABLE_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
2243 /* Do not reload config on HUP */
2244 signal(SIGHUP, SIG_IGN);
2245#endif
2246 close(server_socket);
2247 xmove_fd(n, 0);
2248 xdup2(0, 1);
2249
2250 /* Run a copy of ourself in inetd mode */
2251 re_exec(argv_copy);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002252 }
Denis Vlasenko921799d2007-08-19 19:28:09 +00002253 /* parent, or vfork failed */
Denis Vlasenko073214f2007-08-17 19:20:07 +00002254 close(n);
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002255 } /* while (1) */
Denis Vlasenko241b1562007-08-17 19:18:47 +00002256 /* never reached */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002257}
Denis Vlasenko56258b62007-06-23 23:14:02 +00002258#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002259
Denis Vlasenko367960b2007-08-18 14:20:21 +00002260/*
2261 * Process a HTTP connection on stdin/out.
2262 * Never returns.
2263 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002264static void mini_httpd_inetd(void) NORETURN;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002265static void mini_httpd_inetd(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002266{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002267 len_and_sockaddr fromAddr;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002268
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00002269 memset(&fromAddr, 0, sizeof(fromAddr));
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002270 fromAddr.len = LSA_SIZEOF_SA;
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00002271 /* NB: can fail if user runs it by hand and types in http cmds */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002272 getpeername(0, &fromAddr.u.sa, &fromAddr.len);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002273 handle_incoming_and_exit(&fromAddr);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002274}
Glenn L McGrath06e95652003-02-09 06:51:14 +00002275
Denis Vlasenko55a99402006-09-30 20:41:44 +00002276#if ENABLE_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
Glenn L McGrath06e95652003-02-09 06:51:14 +00002277static void sighup_handler(int sig)
2278{
Denis Vlasenko395410b2008-07-20 23:25:32 +00002279 parse_conf(default_path_httpd_conf, sig ? SIGNALED_PARSE : FIRST_PARSE);
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00002280 signal_SA_RESTART_empty_mask(SIGHUP, sighup_handler);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002281}
2282#endif
2283
Denis Vlasenko9f609292006-11-05 19:47:33 +00002284enum {
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002285 c_opt_config_file = 0,
2286 d_opt_decode_url,
2287 h_opt_home_httpd,
2288 USE_FEATURE_HTTPD_ENCODE_URL_STR(e_opt_encode_url,)
Denis Vlasenko9f609292006-11-05 19:47:33 +00002289 USE_FEATURE_HTTPD_BASIC_AUTH( r_opt_realm ,)
2290 USE_FEATURE_HTTPD_AUTH_MD5( m_opt_md5 ,)
2291 USE_FEATURE_HTTPD_SETUID( u_opt_setuid ,)
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002292 p_opt_port ,
2293 p_opt_inetd ,
2294 p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002295 p_opt_verbose ,
Denis Vlasenko9f609292006-11-05 19:47:33 +00002296 OPT_CONFIG_FILE = 1 << c_opt_config_file,
2297 OPT_DECODE_URL = 1 << d_opt_decode_url,
2298 OPT_HOME_HTTPD = 1 << h_opt_home_httpd,
2299 OPT_ENCODE_URL = USE_FEATURE_HTTPD_ENCODE_URL_STR((1 << e_opt_encode_url)) + 0,
2300 OPT_REALM = USE_FEATURE_HTTPD_BASIC_AUTH( (1 << r_opt_realm )) + 0,
2301 OPT_MD5 = USE_FEATURE_HTTPD_AUTH_MD5( (1 << m_opt_md5 )) + 0,
2302 OPT_SETUID = USE_FEATURE_HTTPD_SETUID( (1 << u_opt_setuid )) + 0,
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002303 OPT_PORT = 1 << p_opt_port,
2304 OPT_INETD = 1 << p_opt_inetd,
2305 OPT_FOREGROUND = 1 << p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002306 OPT_VERBOSE = 1 << p_opt_verbose,
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002307};
Eric Andersena3bb3e62003-06-26 09:05:32 +00002308
Eric Andersena3bb3e62003-06-26 09:05:32 +00002309
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00002310int httpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002311int httpd_main(int argc UNUSED_PARAM, char **argv)
Glenn L McGrath06e95652003-02-09 06:51:14 +00002312{
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002313 int server_socket = server_socket; /* for gcc */
Denis Vlasenko67b23e62006-10-03 21:00:06 +00002314 unsigned opt;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002315 char *url_for_decode;
2316 USE_FEATURE_HTTPD_ENCODE_URL_STR(const char *url_for_encode;)
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002317 USE_FEATURE_HTTPD_SETUID(const char *s_ugid = NULL;)
2318 USE_FEATURE_HTTPD_SETUID(struct bb_uidgid_t ugid;)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002319 USE_FEATURE_HTTPD_AUTH_MD5(const char *pass;)
Eric Andersen35e643b2003-07-28 07:40:39 +00002320
Denis Vlasenko073214f2007-08-17 19:20:07 +00002321 INIT_G();
2322
Denis Vlasenkofcdb00f2006-11-21 00:09:37 +00002323#if ENABLE_LOCALE_SUPPORT
2324 /* Undo busybox.c: we want to speak English in http (dates etc) */
2325 setlocale(LC_TIME, "C");
2326#endif
2327
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002328 home_httpd = xrealloc_getcwd_or_warn(NULL);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002329 /* -v counts, -i implies -f */
2330 opt_complementary = "vv:if";
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002331 /* We do not "absolutize" path given by -h (home) opt.
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00002332 * If user gives relative path in -h,
2333 * $SCRIPT_FILENAME will not be set. */
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00002334 opt = getopt32(argv, "c:d:h:"
Denis Vlasenko53091ec2007-03-26 13:35:09 +00002335 USE_FEATURE_HTTPD_ENCODE_URL_STR("e:")
2336 USE_FEATURE_HTTPD_BASIC_AUTH("r:")
2337 USE_FEATURE_HTTPD_AUTH_MD5("m:")
2338 USE_FEATURE_HTTPD_SETUID("u:")
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002339 "p:ifv",
2340 &configFile, &url_for_decode, &home_httpd
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002341 USE_FEATURE_HTTPD_ENCODE_URL_STR(, &url_for_encode)
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002342 USE_FEATURE_HTTPD_BASIC_AUTH(, &g_realm)
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002343 USE_FEATURE_HTTPD_AUTH_MD5(, &pass)
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002344 USE_FEATURE_HTTPD_SETUID(, &s_ugid)
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002345 , &bind_addr_or_port
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002346 , &verbose
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002347 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002348 if (opt & OPT_DECODE_URL) {
Denis Vlasenko367960b2007-08-18 14:20:21 +00002349 fputs(decodeString(url_for_decode, 1), stdout);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002350 return 0;
2351 }
Denis Vlasenko55a99402006-09-30 20:41:44 +00002352#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002353 if (opt & OPT_ENCODE_URL) {
Denis Vlasenko367960b2007-08-18 14:20:21 +00002354 fputs(encodeString(url_for_encode), stdout);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002355 return 0;
2356 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002357#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002358#if ENABLE_FEATURE_HTTPD_AUTH_MD5
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002359 if (opt & OPT_MD5) {
Denis Vlasenko4ea83bf2008-06-12 16:55:59 +00002360 puts(pw_encrypt(pass, "$1$", 1));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002361 return 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002362 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002363#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002364#if ENABLE_FEATURE_HTTPD_SETUID
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002365 if (opt & OPT_SETUID) {
Bernhard Reutner-Fischerd73cbd32008-07-21 14:41:33 +00002366 xget_uidgid(&ugid, s_ugid);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002367 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002368#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002369
Denis Vlasenko367960b2007-08-18 14:20:21 +00002370#if !BB_MMU
2371 if (!(opt & OPT_FOREGROUND)) {
2372 bb_daemonize_or_rexec(0, argv); /* don't change current directory */
2373 }
2374#endif
2375
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002376 xchdir(home_httpd);
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002377 if (!(opt & OPT_INETD)) {
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00002378 signal(SIGCHLD, SIG_IGN);
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002379 server_socket = openServer();
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002380#if ENABLE_FEATURE_HTTPD_SETUID
2381 /* drop privileges */
2382 if (opt & OPT_SETUID) {
2383 if (ugid.gid != (gid_t)-1) {
2384 if (setgroups(1, &ugid.gid) == -1)
Denis Vlasenko8e858e22007-03-07 09:35:43 +00002385 bb_perror_msg_and_die("setgroups");
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002386 xsetgid(ugid.gid);
2387 }
2388 xsetuid(ugid.uid);
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002389 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002390#endif
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002391 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002392
Denis Vlasenko2535f122007-09-15 13:28:30 +00002393#if 0 /*was #if ENABLE_FEATURE_HTTPD_CGI*/
2394 /* User can do it himself: 'env - PATH="$PATH" httpd'
2395 * We don't do it because we don't want to screw users
2396 * which want to do
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002397 * 'env - VAR1=val1 VAR2=val2 httpd'
Denis Vlasenko2535f122007-09-15 13:28:30 +00002398 * and have VAR1 and VAR2 values visible in their CGIs.
2399 * Besides, it is also smaller. */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002400 {
2401 char *p = getenv("PATH");
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002402 /* env strings themself are not freed, no need to xstrdup(p): */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002403 clearenv();
2404 if (p)
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002405 putenv(p - 5);
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002406// if (!(opt & OPT_INETD))
2407// setenv_long("SERVER_PORT", ???);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002408 }
Glenn L McGrathfe538ba2003-09-10 23:35:45 +00002409#endif
2410
Denis Vlasenko55a99402006-09-30 20:41:44 +00002411#if ENABLE_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
Denis Vlasenko395410b2008-07-20 23:25:32 +00002412 if (!(opt & OPT_INETD)) {
2413 /* runs parse_conf() inside */
Denis Vlasenko367960b2007-08-18 14:20:21 +00002414 sighup_handler(0);
Denis Vlasenko395410b2008-07-20 23:25:32 +00002415 } else
Glenn L McGrath06e95652003-02-09 06:51:14 +00002416#endif
Denis Vlasenko395410b2008-07-20 23:25:32 +00002417 {
2418 parse_conf(default_path_httpd_conf, FIRST_PARSE);
2419 }
Denis Vlasenko367960b2007-08-18 14:20:21 +00002420
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00002421 xfunc_error_retval = 0;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002422 if (opt & OPT_INETD)
2423 mini_httpd_inetd();
Denis Vlasenko367960b2007-08-18 14:20:21 +00002424#if BB_MMU
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002425 if (!(opt & OPT_FOREGROUND))
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002426 bb_daemonize(0); /* don't change current directory */
2427 mini_httpd(server_socket); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002428#else
Denis Vlasenko367960b2007-08-18 14:20:21 +00002429 mini_httpd_nommu(server_socket, argc, argv); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002430#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00002431 /* return 0; */
Glenn L McGrath06e95652003-02-09 06:51:14 +00002432}