blob: a2a52b58aa20533c9a4d06f1e9039bbd1ab5f3ba [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 *
Denys Vlasenko33d8d082009-09-10 01:46:02 +020023 * When an 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 *
Denys Vlasenko33d8d082009-09-10 01:46:02 +020030 * The applet can also be invoked as an 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
Bernhard Reutner-Fischer62851172009-05-03 18:53:22 +020035 * presentation. -d decodes an 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
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +000057 * *.php:/path/php # run xxx.php 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 */
Bernhard Reutner-Fischer62851172009-05-03 18:53:22 +020097 /* TODO: use TCP_CORK, parse_config() */
Glenn L McGrath58c708a2003-01-05 04:01:56 +000098
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000099#include "libbb.h"
Denis Vlasenko1b9064d2007-08-12 21:05:49 +0000100#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
Denis Vlasenko1cbfd982009-02-04 23:43:44 +0000101# include <sys/sendfile.h>
Denis Vlasenko1b9064d2007-08-12 21:05:49 +0000102#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000103
Denis Vlasenko073214f2007-08-17 19:20:07 +0000104#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 Vlasenko1cf4a0e2009-04-22 13:49:16 +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
Denys Vlasenko108b8c52009-09-08 21:17:49 +0200234static const char index_html[] ALIGN1 = "index.html";
235
Denis Vlasenkof4310172007-09-21 22:35:18 +0000236
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000237struct globals {
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000238 int verbose; /* must be int (used by getopt32) */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000239 smallint flg_deny_all;
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000240
Denis Vlasenko37c33162007-08-19 18:54:22 +0000241 unsigned rmt_ip; /* used for IP-based allow/deny rules */
242 time_t last_mod;
Denis Vlasenko37c33162007-08-19 18:54:22 +0000243 char *rmt_ip_str; /* for $REMOTE_ADDR and $REMOTE_PORT */
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000244 const char *bind_addr_or_port;
245
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000246 const char *g_query;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000247 const char *opt_c_configFile;
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000248 const char *home_httpd;
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000249 const char *index_page;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000250
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000251 const char *found_mime_type;
252 const char *found_moved_temporarily;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000253 Htaccess_IP *ip_a_d; /* config allow/deny lines */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000254
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000255 IF_FEATURE_HTTPD_BASIC_AUTH(const char *g_realm;)
256 IF_FEATURE_HTTPD_BASIC_AUTH(char *remoteuser;)
257 IF_FEATURE_HTTPD_CGI(char *referer;)
258 IF_FEATURE_HTTPD_CGI(char *user_agent;)
259 IF_FEATURE_HTTPD_CGI(char *host;)
260 IF_FEATURE_HTTPD_CGI(char *http_accept;)
261 IF_FEATURE_HTTPD_CGI(char *http_accept_language;)
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +0000262
Denis Vlasenkof4310172007-09-21 22:35:18 +0000263 off_t file_size; /* -1 - unknown */
264#if ENABLE_FEATURE_HTTPD_RANGES
265 off_t range_start;
266 off_t range_end;
267 off_t range_len;
268#endif
269
Denis Vlasenko55a99402006-09-30 20:41:44 +0000270#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000271 Htaccess *g_auth; /* config user:password lines */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000272#endif
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000273 Htaccess *mime_a; /* config mime types */
Denis Vlasenko55a99402006-09-30 20:41:44 +0000274#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000275 Htaccess *script_i; /* config script interpreters */
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000276#endif
Denis Vlasenko921799d2007-08-19 19:28:09 +0000277 char *iobuf; /* [IOBUF_SIZE] */
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000278#define hdr_buf bb_common_bufsiz1
279 char *hdr_ptr;
280 int hdr_cnt;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000281#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
282 const char *http_error_page[ARRAY_SIZE(http_response_type)];
283#endif
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000284#if ENABLE_FEATURE_HTTPD_PROXY
285 Htaccess_Proxy *proxy;
286#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000287};
288#define G (*ptr_to_globals)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000289#define verbose (G.verbose )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000290#define flg_deny_all (G.flg_deny_all )
291#define rmt_ip (G.rmt_ip )
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000292#define bind_addr_or_port (G.bind_addr_or_port)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000293#define g_query (G.g_query )
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000294#define opt_c_configFile (G.opt_c_configFile )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000295#define home_httpd (G.home_httpd )
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000296#define index_page (G.index_page )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000297#define found_mime_type (G.found_mime_type )
298#define found_moved_temporarily (G.found_moved_temporarily)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000299#define last_mod (G.last_mod )
300#define ip_a_d (G.ip_a_d )
301#define g_realm (G.g_realm )
302#define remoteuser (G.remoteuser )
303#define referer (G.referer )
304#define user_agent (G.user_agent )
Denis Vlasenko9d1d4c02008-11-22 20:29:35 +0000305#define host (G.host )
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +0000306#define http_accept (G.http_accept )
307#define http_accept_language (G.http_accept_language)
Denis Vlasenkof4310172007-09-21 22:35:18 +0000308#define file_size (G.file_size )
309#if ENABLE_FEATURE_HTTPD_RANGES
310#define range_start (G.range_start )
311#define range_end (G.range_end )
312#define range_len (G.range_len )
Denis Vlasenko1cbfd982009-02-04 23:43:44 +0000313#else
314enum {
315 range_start = 0,
316 range_end = MAXINT(off_t) - 1,
317 range_len = MAXINT(off_t),
318};
Denis Vlasenkof4310172007-09-21 22:35:18 +0000319#endif
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000320#define rmt_ip_str (G.rmt_ip_str )
321#define g_auth (G.g_auth )
322#define mime_a (G.mime_a )
323#define script_i (G.script_i )
324#define iobuf (G.iobuf )
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000325#define hdr_ptr (G.hdr_ptr )
326#define hdr_cnt (G.hdr_cnt )
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000327#define http_error_page (G.http_error_page )
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000328#define proxy (G.proxy )
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000329#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000330 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000331 IF_FEATURE_HTTPD_BASIC_AUTH(g_realm = "Web Server Authentication";) \
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000332 bind_addr_or_port = "80"; \
Denys Vlasenko108b8c52009-09-08 21:17:49 +0200333 index_page = index_html; \
Denis Vlasenkof4310172007-09-21 22:35:18 +0000334 file_size = -1; \
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000335} while (0)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000336
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
Denis Vlasenko073214f2007-08-17 19:20:07 +0000359static ALWAYS_INLINE void free_Htaccess_list(Htaccess **pptr)
360{
361 free_llist((has_next_ptr**)pptr);
362}
Denis Vlasenko073214f2007-08-17 19:20:07 +0000363
364static ALWAYS_INLINE void free_Htaccess_IP_list(Htaccess_IP **pptr)
365{
366 free_llist((has_next_ptr**)pptr);
367}
Glenn L McGrath06e95652003-02-09 06:51:14 +0000368
Denis Vlasenkod867f322007-08-19 21:15:42 +0000369/* Returns presumed mask width in bits or < 0 on error.
370 * Updates strp, stores IP at provided pointer */
371static int scan_ip(const char **strp, unsigned *ipp, unsigned char endc)
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000372{
Denis Vlasenkod867f322007-08-19 21:15:42 +0000373 const char *p = *strp;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000374 int auto_mask = 8;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000375 unsigned ip = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000376 int j;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000377
Denis Vlasenkod867f322007-08-19 21:15:42 +0000378 if (*p == '/')
379 return -auto_mask;
380
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000381 for (j = 0; j < 4; j++) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000382 unsigned octet;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000383
Denis Vlasenkod867f322007-08-19 21:15:42 +0000384 if ((*p < '0' || *p > '9') && *p != '/' && *p)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000385 return -auto_mask;
386 octet = 0;
387 while (*p >= '0' && *p <= '9') {
388 octet *= 10;
389 octet += *p - '0';
390 if (octet > 255)
391 return -auto_mask;
392 p++;
393 }
394 if (*p == '.')
395 p++;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000396 if (*p != '/' && *p)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000397 auto_mask += 8;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000398 ip = (ip << 8) | octet;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000399 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000400 if (*p) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000401 if (*p != endc)
402 return -auto_mask;
403 p++;
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000404 if (*p == '\0')
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000405 return -auto_mask;
406 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000407 *ipp = ip;
408 *strp = p;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000409 return auto_mask;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000410}
411
Denis Vlasenkod867f322007-08-19 21:15:42 +0000412/* Returns 0 on success. Stores IP and mask at provided pointers */
413static int scan_ip_mask(const char *str, unsigned *ipp, unsigned *maskp)
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000414{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000415 int i;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000416 unsigned mask;
417 char *p;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000418
Denis Vlasenkod867f322007-08-19 21:15:42 +0000419 i = scan_ip(&str, ipp, '/');
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000420 if (i < 0)
421 return i;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000422
Denis Vlasenkod867f322007-08-19 21:15:42 +0000423 if (*str) {
424 /* there is /xxx after dotted-IP address */
425 i = bb_strtou(str, &p, 10);
426 if (*p == '.') {
427 /* 'xxx' itself is dotted-IP mask, parse it */
428 /* (return 0 (success) only if it has N.N.N.N form) */
429 return scan_ip(&str, maskp, '\0') - 32;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000430 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000431 if (*p)
432 return -1;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000433 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000434
435 if (i > 32)
Denis Vlasenko92758142006-10-03 19:56:34 +0000436 return -1;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000437
438 if (sizeof(unsigned) == 4 && i == 32) {
439 /* mask >>= 32 below may not work */
440 mask = 0;
441 } else {
442 mask = 0xffffffff;
443 mask >>= i;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000444 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000445 /* i == 0 -> *maskp = 0x00000000
446 * i == 1 -> *maskp = 0x80000000
447 * i == 4 -> *maskp = 0xf0000000
448 * i == 31 -> *maskp = 0xfffffffe
449 * i == 32 -> *maskp = 0xffffffff */
450 *maskp = (uint32_t)(~mask);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000451 return 0;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000452}
453
Denis Vlasenko073214f2007-08-17 19:20:07 +0000454/*
455 * Parse configuration file into in-memory linked list.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000456 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000457 * Any previous IP rules are discarded.
458 * If the flag argument is not SUBDIR_PARSE then all /path and mime rules
459 * are also discarded. That is, previous settings are retained if flag is
460 * SUBDIR_PARSE.
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000461 * Error pages are only parsed on the main config file.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000462 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000463 * path Path where to look for httpd.conf (without filename).
464 * flag Type of the parse request.
465 */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000466/* flag param: */
467enum {
468 FIRST_PARSE = 0, /* path will be "/etc" */
469 SIGNALED_PARSE = 1, /* path will be "/etc" */
470 SUBDIR_PARSE = 2, /* path will be derived from URL */
471};
Glenn L McGrath06e95652003-02-09 06:51:14 +0000472static void parse_conf(const char *path, int flag)
473{
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000474 /* internally used extra flag state */
475 enum { TRY_CURDIR_PARSE = 3 };
476
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000477 FILE *f;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000478 const char *filename;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000479 char buf[160];
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000480
Denis Vlasenko073214f2007-08-17 19:20:07 +0000481 /* discard old rules */
482 free_Htaccess_IP_list(&ip_a_d);
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000483 flg_deny_all = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000484 /* retain previous auth and mime config only for subdir parse */
485 if (flag != SUBDIR_PARSE) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000486 free_Htaccess_list(&mime_a);
Denis Vlasenko55a99402006-09-30 20:41:44 +0000487#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko073214f2007-08-17 19:20:07 +0000488 free_Htaccess_list(&g_auth);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000489#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000490#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000491 free_Htaccess_list(&script_i);
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000492#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000493 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000494
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000495 filename = opt_c_configFile;
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000496 if (flag == SUBDIR_PARSE || filename == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000497 filename = alloca(strlen(path) + sizeof(HTTPD_CONF) + 2);
498 sprintf((char *)filename, "%s/%s", path, HTTPD_CONF);
Glenn L McGrath393183d2003-05-26 14:07:50 +0000499 }
500
Denis Vlasenko5415c852008-07-21 23:05:26 +0000501 while ((f = fopen_for_read(filename)) == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000502 if (flag >= SUBDIR_PARSE) { /* SUBDIR or TRY_CURDIR */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000503 /* config file not found, no changes to config */
504 return;
505 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000506 if (flag == FIRST_PARSE) {
507 /* -c CONFFILE given, but CONFFILE doesn't exist? */
508 if (opt_c_configFile)
509 bb_simple_perror_msg_and_die(opt_c_configFile);
510 /* else: no -c, thus we looked at /etc/httpd.conf,
511 * and it's not there. try ./httpd.conf: */
512 }
513 flag = TRY_CURDIR_PARSE;
514 filename = HTTPD_CONF;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000515 }
516
Denis Vlasenko55a99402006-09-30 20:41:44 +0000517#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000518 /* in "/file:user:pass" lines, we prepend path in subdirs */
519 if (flag != SUBDIR_PARSE)
520 path = "";
Glenn L McGrath06e95652003-02-09 06:51:14 +0000521#endif
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000522 /* The lines can be:
523 *
524 * I:default_index_file
525 * H:http_home
526 * [AD]:IP[/mask] # allow/deny, * for wildcard
527 * Ennn:error.html # error page for status nnn
528 * P:/url:[http://]hostname[:port]/new/path # reverse proxy
529 * .ext:mime/type # mime type
530 * *.php:/path/php # run xxx.php through an interpreter
531 * /file:user:pass # username and password
532 */
533 while (fgets(buf, sizeof(buf), f) != NULL) {
534 unsigned strlen_buf;
535 unsigned char ch;
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200536 char *after_colon;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000537
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000538 { /* remove all whitespace, and # comments */
539 char *p, *p0;
540
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200541 p0 = buf;
542 /* skip non-whitespace beginning. Often the whole line
543 * is non-whitespace. We want this case to work fast,
544 * without needless copying, therefore we don't merge
545 * this operation into next while loop. */
546 while ((ch = *p0) != '\0' && ch != '\n' && ch != '#'
547 && ch != ' ' && ch != '\t'
548 ) {
549 p0++;
550 }
551 p = p0;
552 /* if we enter this loop, we have some whitespace.
553 * discard it */
554 while (ch != '\0' && ch != '\n' && ch != '#') {
555 if (ch != ' ' && ch != '\t') {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000556 *p++ = ch;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000557 }
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200558 ch = *++p0;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000559 }
560 *p = '\0';
561 strlen_buf = p - buf;
Denis Vlasenko00643ca2009-04-22 13:52:22 +0000562 if (strlen_buf == 0)
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200563 continue; /* empty line */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000564 }
565
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200566 after_colon = strchr(buf, ':');
Denis Vlasenko00643ca2009-04-22 13:52:22 +0000567 /* strange line? */
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200568 if (after_colon == NULL || *++after_colon == '\0')
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000569 goto config_error;
570
571 ch = (buf[0] & ~0x20); /* toupper if it's a letter */
572
573 if (ch == 'I') {
Denys Vlasenko108b8c52009-09-08 21:17:49 +0200574 if (index_page != index_html)
575 free((char*)index_page);
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000576 index_page = xstrdup(after_colon);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000577 continue;
578 }
579
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000580 /* do not allow jumping around using H in subdir's configs */
581 if (flag == FIRST_PARSE && ch == 'H') {
582 home_httpd = xstrdup(after_colon);
583 xchdir(home_httpd);
584 continue;
585 }
586
587 if (ch == 'A' || ch == 'D') {
588 Htaccess_IP *pip;
589
590 if (*after_colon == '*') {
591 if (ch == 'D') {
592 /* memorize "deny all" */
593 flg_deny_all = 1;
594 }
595 /* skip assumed "A:*", it is a default anyway */
596 continue;
597 }
598 /* store "allow/deny IP/mask" line */
599 pip = xzalloc(sizeof(*pip));
600 if (scan_ip_mask(after_colon, &pip->ip, &pip->mask)) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000601 /* IP{/mask} syntax error detected, protect all */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000602 ch = 'D';
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000603 pip->mask = 0;
604 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000605 pip->allow_deny = ch;
606 if (ch == 'D') {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000607 /* Deny:from_IP - prepend */
608 pip->next = ip_a_d;
609 ip_a_d = pip;
610 } else {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000611 /* A:from_IP - append (thus all D's precedes A's) */
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000612 Htaccess_IP *prev_IP = ip_a_d;
613 if (prev_IP == NULL) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000614 ip_a_d = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000615 } else {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000616 while (prev_IP->next)
617 prev_IP = prev_IP->next;
618 prev_IP->next = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000619 }
620 }
621 continue;
622 }
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000623
624#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000625 if (flag == FIRST_PARSE && ch == 'E') {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000626 unsigned i;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000627 int status = atoi(buf + 1); /* error status code */
628
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000629 if (status < HTTP_CONTINUE) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000630 goto config_error;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000631 }
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000632 /* then error page; find matching status */
633 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
634 if (http_response_type[i] == status) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000635 /* We chdir to home_httpd, thus no need to
636 * concat_path_file(home_httpd, after_colon)
637 * here */
638 http_error_page[i] = xstrdup(after_colon);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000639 break;
640 }
641 }
642 continue;
643 }
644#endif
645
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000646#if ENABLE_FEATURE_HTTPD_PROXY
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000647 if (flag == FIRST_PARSE && ch == 'P') {
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000648 /* P:/url:[http://]hostname[:port]/new/path */
649 char *url_from, *host_port, *url_to;
650 Htaccess_Proxy *proxy_entry;
651
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000652 url_from = after_colon;
653 host_port = strchr(after_colon, ':');
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000654 if (host_port == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000655 goto config_error;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000656 }
657 *host_port++ = '\0';
658 if (strncmp(host_port, "http://", 7) == 0)
Denis Vlasenko78ee7c82007-10-21 23:24:42 +0000659 host_port += 7;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000660 if (*host_port == '\0') {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000661 goto config_error;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000662 }
663 url_to = strchr(host_port, '/');
664 if (url_to == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000665 goto config_error;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000666 }
667 *url_to = '\0';
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000668 proxy_entry = xzalloc(sizeof(*proxy_entry));
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000669 proxy_entry->url_from = xstrdup(url_from);
670 proxy_entry->host_port = xstrdup(host_port);
671 *url_to = '/';
672 proxy_entry->url_to = xstrdup(url_to);
673 proxy_entry->next = proxy;
674 proxy = proxy_entry;
675 continue;
676 }
677#endif
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000678 /* the rest of directives are non-alphabetic,
679 * must avoid using "toupper'ed" ch */
680 ch = buf[0];
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000681
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000682 if (ch == '.' /* ".ext:mime/type" */
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000683#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000684 || (ch == '*' && buf[1] == '.') /* "*.php:/path/php" */
685#endif
686 ) {
687 char *p;
688 Htaccess *cur;
689
690 cur = xzalloc(sizeof(*cur) /* includes space for NUL */ + strlen_buf);
691 strcpy(cur->before_colon, buf);
692 p = cur->before_colon + (after_colon - buf);
693 p[-1] = '\0';
694 cur->after_colon = p;
695 if (ch == '.') {
696 /* .mime line: prepend to mime_a list */
697 cur->next = mime_a;
698 mime_a = cur;
699 }
700#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
701 else {
702 /* script interpreter line: prepend to script_i list */
703 cur->next = script_i;
704 script_i = cur;
705 }
706#endif
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000707 continue;
708 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000709
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000710#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
711 if (ch == '/') { /* "/file:user:pass" */
712 char *p;
713 Htaccess *cur;
714 unsigned file_len;
715
716 /* note: path is "" unless we are in SUBDIR parse,
Denis Vlasenkoc8d71092009-04-22 14:16:59 +0000717 * otherwise it does NOT start with "/" */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000718 cur = xzalloc(sizeof(*cur) /* includes space for NUL */
Denis Vlasenkoc8d71092009-04-22 14:16:59 +0000719 + 1 + strlen(path)
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000720 + strlen_buf
721 );
722 /* form "/path/file" */
Denis Vlasenkoc8d71092009-04-22 14:16:59 +0000723 sprintf(cur->before_colon, "/%s%.*s",
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000724 path,
Denys Vlasenkoa4bcbd02009-06-09 23:01:24 +0200725 (int) (after_colon - buf - 1), /* includes "/", but not ":" */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000726 buf);
727 /* canonicalize it */
728 p = bb_simplify_abs_path_inplace(cur->before_colon);
729 file_len = p - cur->before_colon;
730 /* add "user:pass" after NUL */
731 strcpy(++p, after_colon);
732 cur->after_colon = p;
733
734 /* insert cur into g_auth */
735 /* g_auth is sorted by decreased filename length */
736 {
737 Htaccess *auth, **authp;
738
739 authp = &g_auth;
740 while ((auth = *authp) != NULL) {
741 if (file_len >= strlen(auth->before_colon)) {
742 /* insert cur before auth */
743 cur->next = auth;
744 break;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000745 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000746 authp = &auth->next;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000747 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000748 *authp = cur;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000749 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000750 continue;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000751 }
752#endif /* BASIC_AUTH */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000753
754 /* the line is not recognized */
755 config_error:
756 bb_error_msg("config error '%s' in '%s'", buf, filename);
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000757 } /* while (fgets) */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000758
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000759 fclose(f);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000760}
761
Denis Vlasenko55a99402006-09-30 20:41:44 +0000762#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000763/*
764 * Given a string, html-encode special characters.
765 * This is used for the -e command line option to provide an easy way
766 * for scripts to encode result data without confusing browsers. The
767 * returned string pointer is memory allocated by malloc().
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000768 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000769 * Returns a pointer to the encoded string (malloced).
770 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000771static char *encodeString(const char *string)
772{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000773 /* take the simple route and encode everything */
774 /* could possibly scan once to get length. */
775 int len = strlen(string);
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000776 char *out = xmalloc(len * 6 + 1);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000777 char *p = out;
778 char ch;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000779
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000780 while ((ch = *string++)) {
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000781 /* very simple check for what to encode */
782 if (isalnum(ch))
783 *p++ = ch;
784 else
785 p += sprintf(p, "&#%d;", (unsigned char) ch);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000786 }
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000787 *p = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000788 return out;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000789}
Denis Vlasenkob3a07152006-11-16 18:04:43 +0000790#endif /* FEATURE_HTTPD_ENCODE_URL_STR */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000791
Denis Vlasenko073214f2007-08-17 19:20:07 +0000792/*
793 * Given a URL encoded string, convert it to plain ascii.
794 * Since decoding always makes strings smaller, the decode is done in-place.
Denis Vlasenkoc4523c22008-03-28 02:24:59 +0000795 * Thus, callers should xstrdup() the argument if they do not want the
Denis Vlasenko073214f2007-08-17 19:20:07 +0000796 * argument modified. The return is the original pointer, allowing this
797 * function to be easily used as arguments to other functions.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000798 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000799 * string The first string to decode.
800 * option_d 1 if called for httpd -d
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000801 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000802 * Returns a pointer to the decoded string (same as input).
803 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000804static unsigned hex_to_bin(unsigned char c)
805{
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000806 unsigned v;
807
808 v = c - '0';
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000809 if (v <= 9)
810 return v;
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000811 /* c | 0x20: letters to lower case, non-letters
812 * to (potentially different) non-letters */
813 v = (unsigned)(c | 0x20) - 'a';
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000814 if (v <= 5)
815 return v + 10;
816 return ~0;
817}
818/* For testing:
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000819void t(char c) { printf("'%c'(%u) %u\n", c, c, hex_to_bin(c)); }
820int main() { t(0x10); t(0x20); t('0'); t('9'); t('A'); t('F'); t('a'); t('f');
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000821t('0'-1); t('9'+1); t('A'-1); t('F'+1); t('a'-1); t('f'+1); return 0; }
822*/
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000823static char *decodeString(char *orig, int option_d)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000824{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000825 /* note that decoded string is always shorter than original */
826 char *string = orig;
827 char *ptr = string;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000828 char c;
Eric Andersena3bb3e62003-06-26 09:05:32 +0000829
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000830 while ((c = *ptr++) != '\0') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000831 unsigned v;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000832
833 if (option_d && c == '+') {
Denis Vlasenko601ae132006-11-28 23:37:46 +0000834 *string++ = ' ';
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000835 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000836 }
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000837 if (c != '%') {
838 *string++ = c;
839 continue;
840 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000841 v = hex_to_bin(ptr[0]);
842 if (v > 15) {
843 bad_hex:
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000844 if (!option_d)
845 return NULL;
846 *string++ = '%';
847 continue;
848 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000849 v = (v * 16) | hex_to_bin(ptr[1]);
850 if (v > 255)
851 goto bad_hex;
852 if (!option_d && (v == '/' || v == '\0')) {
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000853 /* caller takes it as indication of invalid
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000854 * (dangerous wrt exploits) chars */
855 return orig + 1;
856 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000857 *string++ = v;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000858 ptr += 2;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000859 }
860 *string = '\0';
861 return orig;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000862}
863
Denis Vlasenko55a99402006-09-30 20:41:44 +0000864#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000865/*
Denis Vlasenko073214f2007-08-17 19:20:07 +0000866 * Decode a base64 data stream as per rfc1521.
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000867 * Note that the rfc states that non base64 chars are to be ignored.
Denis Vlasenko073214f2007-08-17 19:20:07 +0000868 * Since the decode always results in a shorter size than the input,
869 * it is OK to pass the input arg as an output arg.
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000870 * Parameter: a pointer to a base64 encoded string.
871 * Decoded data is stored in-place.
872 */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000873static void decodeBase64(char *Data)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000874{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000875 const unsigned char *in = (const unsigned char *)Data;
Denis Vlasenko37c33162007-08-19 18:54:22 +0000876 /* The decoded size will be at most 3/4 the size of the encoded */
Denis Vlasenko088b9592007-04-18 21:14:46 +0000877 unsigned ch = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000878 int i = 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000879
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000880 while (*in) {
881 int t = *in++;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000882
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000883 if (t >= '0' && t <= '9')
884 t = t - '0' + 52;
885 else if (t >= 'A' && t <= 'Z')
886 t = t - 'A';
887 else if (t >= 'a' && t <= 'z')
888 t = t - 'a' + 26;
889 else if (t == '+')
890 t = 62;
891 else if (t == '/')
892 t = 63;
893 else if (t == '=')
894 t = 0;
895 else
896 continue;
Glenn L McGrath874e3382003-05-14 12:11:36 +0000897
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000898 ch = (ch << 6) | t;
899 i++;
900 if (i == 4) {
901 *Data++ = (char) (ch >> 16);
902 *Data++ = (char) (ch >> 8);
903 *Data++ = (char) ch;
904 i = 0;
905 }
906 }
Denis Vlasenko088b9592007-04-18 21:14:46 +0000907 *Data = '\0';
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000908}
909#endif
910
Denis Vlasenko073214f2007-08-17 19:20:07 +0000911/*
912 * Create a listen server socket on the designated port.
913 */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000914static int openServer(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000915{
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000916 unsigned n = bb_strtou(bind_addr_or_port, NULL, 10);
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000917 if (!errno && n && n <= 0xffff)
918 n = create_and_bind_stream_or_die(NULL, n);
919 else
920 n = create_and_bind_stream_or_die(bind_addr_or_port, 80);
921 xlisten(n, 9);
922 return n;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000923}
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000924
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000925/*
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000926 * Log the connection closure and exit.
927 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000928static void log_and_exit(void) NORETURN;
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000929static void log_and_exit(void)
930{
Denis Vlasenko921799d2007-08-19 19:28:09 +0000931 /* Paranoia. IE said to be buggy. It may send some extra data
932 * or be confused by us just exiting without SHUT_WR. Oh well. */
933 shutdown(1, SHUT_WR);
Denis Vlasenkofaf334a2008-05-18 15:14:36 +0000934 /* Why??
935 (this also messes up stdin when user runs httpd -i from terminal)
Denis Vlasenko921799d2007-08-19 19:28:09 +0000936 ndelay_on(0);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000937 while (read(STDIN_FILENO, iobuf, IOBUF_SIZE) > 0)
Denis Vlasenko921799d2007-08-19 19:28:09 +0000938 continue;
Denis Vlasenkofaf334a2008-05-18 15:14:36 +0000939 */
Denis Vlasenko921799d2007-08-19 19:28:09 +0000940
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000941 if (verbose > 2)
942 bb_error_msg("closed");
943 _exit(xfunc_error_retval);
944}
945
946/*
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000947 * Create and send HTTP response headers.
948 * The arguments are combined and sent as one write operation. Note that
949 * IE will puke big-time if the headers are not sent in one packet and the
950 * second packet is delayed for any reason.
951 * responseNum - the result code to send.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000952 */
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000953static void send_headers(int responseNum)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000954{
Denis Vlasenko073214f2007-08-17 19:20:07 +0000955 static const char RFC1123FMT[] ALIGN1 = "%a, %d %b %Y %H:%M:%S GMT";
956
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000957 const char *responseString = "";
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000958 const char *infoString = NULL;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000959 const char *mime_type;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000960#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko2f518b02008-02-21 00:12:07 +0000961 const char *error_page = NULL;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000962#endif
Denis Vlasenkob64eed62007-01-14 17:06:11 +0000963 unsigned i;
Denis Vlasenko04158e02009-02-02 10:48:06 +0000964 time_t timer = time(NULL);
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000965 char tmp_str[80];
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000966 int len;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000967
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000968 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
969 if (http_response_type[i] == responseNum) {
970 responseString = http_response[i].name;
971 infoString = http_response[i].info;
972#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
973 error_page = http_error_page[i];
974#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000975 break;
976 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000977 }
978 /* error message is HTML */
979 mime_type = responseNum == HTTP_OK ?
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000980 found_mime_type : "text/html";
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000981
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000982 if (verbose)
Denis Vlasenko241b1562007-08-17 19:18:47 +0000983 bb_error_msg("response:%u", responseNum);
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000984
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000985 /* emit the current date */
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000986 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&timer));
987 len = sprintf(iobuf,
Denis Vlasenko69981422007-01-07 21:25:12 +0000988 "HTTP/1.0 %d %s\r\nContent-type: %s\r\n"
989 "Date: %s\r\nConnection: close\r\n",
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000990 responseNum, responseString, mime_type, tmp_str);
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000991
Denis Vlasenko55a99402006-09-30 20:41:44 +0000992#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000993 if (responseNum == HTTP_UNAUTHORIZED) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000994 len += sprintf(iobuf + len,
Denis Vlasenko8e858e22007-03-07 09:35:43 +0000995 "WWW-Authenticate: Basic realm=\"%s\"\r\n",
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000996 g_realm);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000997 }
Glenn L McGrath3d2405c2003-02-10 22:28:21 +0000998#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000999 if (responseNum == HTTP_MOVED_TEMPORARILY) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001000 len += sprintf(iobuf + len, "Location: %s/%s%s\r\n",
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001001 found_moved_temporarily,
1002 (g_query ? "?" : ""),
1003 (g_query ? g_query : ""));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001004 }
Eric Andersen07f2fea2004-10-08 08:03:29 +00001005
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001006#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001007 if (error_page && access(error_page, R_OK) == 0) {
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001008 strcat(iobuf, "\r\n");
1009 len += 2;
1010
1011 if (DEBUG)
1012 fprintf(stderr, "headers: '%s'\n", iobuf);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001013 full_write(STDOUT_FILENO, iobuf, len);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001014 if (DEBUG)
1015 fprintf(stderr, "writing error page: '%s'\n", error_page);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001016 return send_file_and_exit(error_page, SEND_BODY);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001017 }
1018#endif
1019
Denis Vlasenkof4310172007-09-21 22:35:18 +00001020 if (file_size != -1) { /* file */
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001021 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&last_mod));
Denis Vlasenkof4310172007-09-21 22:35:18 +00001022#if ENABLE_FEATURE_HTTPD_RANGES
1023 if (responseNum == HTTP_PARTIAL_CONTENT) {
1024 len += sprintf(iobuf + len, "Content-Range: bytes %"OFF_FMT"d-%"OFF_FMT"d/%"OFF_FMT"d\r\n",
1025 range_start,
1026 range_end,
1027 file_size);
1028 file_size = range_end - range_start + 1;
1029 }
1030#endif
1031 len += sprintf(iobuf + len,
1032#if ENABLE_FEATURE_HTTPD_RANGES
1033 "Accept-Ranges: bytes\r\n"
1034#endif
1035 "Last-Modified: %s\r\n%s %"OFF_FMT"d\r\n",
1036 tmp_str,
1037 "Content-length:",
1038 file_size
1039 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001040 }
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001041 iobuf[len++] = '\r';
1042 iobuf[len++] = '\n';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001043 if (infoString) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001044 len += sprintf(iobuf + len,
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001045 "<HTML><HEAD><TITLE>%d %s</TITLE></HEAD>\n"
1046 "<BODY><H1>%d %s</H1>\n%s\n</BODY></HTML>\n",
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001047 responseNum, responseString,
1048 responseNum, responseString, infoString);
1049 }
Denis Vlasenko6c85ddc2006-11-21 00:08:39 +00001050 if (DEBUG)
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001051 fprintf(stderr, "headers: '%s'\n", iobuf);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001052 if (full_write(STDOUT_FILENO, iobuf, len) != len) {
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001053 if (verbose > 1)
1054 bb_perror_msg("error");
1055 log_and_exit();
1056 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001057}
1058
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001059static void send_headers_and_exit(int responseNum) NORETURN;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001060static void send_headers_and_exit(int responseNum)
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001061{
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001062 send_headers(responseNum);
1063 log_and_exit();
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001064}
1065
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001066/*
1067 * Read from the socket until '\n' or EOF. '\r' chars are removed.
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001068 * '\n' is replaced with NUL.
1069 * Return number of characters read or 0 if nothing is read
1070 * ('\r' and '\n' are not counted).
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001071 * Data is returned in iobuf.
1072 */
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001073static int get_line(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001074{
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001075 int count = 0;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001076 char c;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001077
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001078 alarm(HEADER_READ_TIMEOUT);
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001079 while (1) {
1080 if (hdr_cnt <= 0) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001081 hdr_cnt = safe_read(STDIN_FILENO, hdr_buf, sizeof(hdr_buf));
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001082 if (hdr_cnt <= 0)
1083 break;
1084 hdr_ptr = hdr_buf;
1085 }
1086 iobuf[count] = c = *hdr_ptr++;
1087 hdr_cnt--;
1088
1089 if (c == '\r')
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001090 continue;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001091 if (c == '\n') {
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001092 iobuf[count] = '\0';
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001093 break;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001094 }
Denis Vlasenko921799d2007-08-19 19:28:09 +00001095 if (count < (IOBUF_SIZE - 1)) /* check overflow */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001096 count++;
1097 }
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001098 return count;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001099}
1100
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001101#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001102
1103/* gcc 4.2.1 fares better with NOINLINE */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001104static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len) NORETURN;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001105static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len)
1106{
1107 enum { FROM_CGI = 1, TO_CGI = 2 }; /* indexes in pfd[] */
1108 struct pollfd pfd[3];
1109 int out_cnt; /* we buffer a bit of initial CGI output */
1110 int count;
1111
1112 /* iobuf is used for CGI -> network data,
1113 * hdr_buf is for network -> CGI data (POSTDATA) */
1114
1115 /* If CGI dies, we still want to correctly finish reading its output
1116 * and send it to the peer. So please no SIGPIPEs! */
1117 signal(SIGPIPE, SIG_IGN);
1118
Denis Vlasenko4a457562007-10-14 02:34:20 +00001119 // We inconsistently handle a case when more POSTDATA from network
1120 // is coming than we expected. We may give *some part* of that
1121 // extra data to CGI.
1122
1123 //if (hdr_cnt > post_len) {
1124 // /* We got more POSTDATA from network than we expected */
1125 // hdr_cnt = post_len;
1126 //}
1127 post_len -= hdr_cnt;
1128 /* post_len - number of POST bytes not yet read from network */
1129
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001130 /* NB: breaking out of this loop jumps to log_and_exit() */
1131 out_cnt = 0;
1132 while (1) {
1133 memset(pfd, 0, sizeof(pfd));
1134
1135 pfd[FROM_CGI].fd = fromCgi_rd;
1136 pfd[FROM_CGI].events = POLLIN;
1137
1138 if (toCgi_wr) {
1139 pfd[TO_CGI].fd = toCgi_wr;
1140 if (hdr_cnt > 0) {
1141 pfd[TO_CGI].events = POLLOUT;
1142 } else if (post_len > 0) {
1143 pfd[0].events = POLLIN;
1144 } else {
1145 /* post_len <= 0 && hdr_cnt <= 0:
1146 * no more POST data to CGI,
1147 * let CGI see EOF on CGI's stdin */
1148 close(toCgi_wr);
1149 toCgi_wr = 0;
1150 }
1151 }
1152
1153 /* Now wait on the set of sockets */
Denis Vlasenko5d61e712007-09-27 10:09:59 +00001154 count = safe_poll(pfd, 3, -1);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001155 if (count <= 0) {
1156#if 0
Denis Vlasenkofb0eba72008-01-02 19:55:04 +00001157 if (safe_waitpid(pid, &status, WNOHANG) <= 0) {
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001158 /* Weird. CGI didn't exit and no fd's
1159 * are ready, yet poll returned?! */
1160 continue;
1161 }
1162 if (DEBUG && WIFEXITED(status))
1163 bb_error_msg("CGI exited, status=%d", WEXITSTATUS(status));
1164 if (DEBUG && WIFSIGNALED(status))
1165 bb_error_msg("CGI killed, signal=%d", WTERMSIG(status));
1166#endif
1167 break;
1168 }
1169
1170 if (pfd[TO_CGI].revents) {
1171 /* hdr_cnt > 0 here due to the way pfd[TO_CGI].events set */
1172 /* Have data from peer and can write to CGI */
1173 count = safe_write(toCgi_wr, hdr_ptr, hdr_cnt);
1174 /* Doesn't happen, we dont use nonblocking IO here
1175 *if (count < 0 && errno == EAGAIN) {
1176 * ...
1177 *} else */
1178 if (count > 0) {
1179 hdr_ptr += count;
1180 hdr_cnt -= count;
1181 } else {
1182 /* EOF/broken pipe to CGI, stop piping POST data */
1183 hdr_cnt = post_len = 0;
1184 }
1185 }
1186
1187 if (pfd[0].revents) {
1188 /* post_len > 0 && hdr_cnt == 0 here */
1189 /* We expect data, prev data portion is eaten by CGI
1190 * and there *is* data to read from the peer
1191 * (POSTDATA) */
1192 //count = post_len > (int)sizeof(hdr_buf) ? (int)sizeof(hdr_buf) : post_len;
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001193 //count = safe_read(STDIN_FILENO, hdr_buf, count);
1194 count = safe_read(STDIN_FILENO, hdr_buf, sizeof(hdr_buf));
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001195 if (count > 0) {
1196 hdr_cnt = count;
1197 hdr_ptr = hdr_buf;
1198 post_len -= count;
1199 } else {
1200 /* no more POST data can be read */
1201 post_len = 0;
1202 }
1203 }
1204
1205 if (pfd[FROM_CGI].revents) {
1206 /* There is something to read from CGI */
1207 char *rbuf = iobuf;
1208
1209 /* Are we still buffering CGI output? */
1210 if (out_cnt >= 0) {
1211 /* HTTP_200[] has single "\r\n" at the end.
1212 * According to http://hoohoo.ncsa.uiuc.edu/cgi/out.html,
1213 * CGI scripts MUST send their own header terminated by
1214 * empty line, then data. That's why we have only one
1215 * <cr><lf> pair here. We will output "200 OK" line
1216 * if needed, but CGI still has to provide blank line
1217 * between header and body */
1218
1219 /* Must use safe_read, not full_read, because
1220 * CGI may output a few first bytes and then wait
1221 * for POSTDATA without closing stdout.
1222 * With full_read we may wait here forever. */
1223 count = safe_read(fromCgi_rd, rbuf + out_cnt, PIPE_BUF - 8);
1224 if (count <= 0) {
1225 /* eof (or error) and there was no "HTTP",
1226 * so write it, then write received data */
1227 if (out_cnt) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001228 full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1);
1229 full_write(STDOUT_FILENO, rbuf, out_cnt);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001230 }
1231 break; /* CGI stdout is closed, exiting */
1232 }
1233 out_cnt += count;
1234 count = 0;
1235 /* "Status" header format is: "Status: 302 Redirected\r\n" */
1236 if (out_cnt >= 8 && memcmp(rbuf, "Status: ", 8) == 0) {
1237 /* send "HTTP/1.0 " */
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001238 if (full_write(STDOUT_FILENO, HTTP_200, 9) != 9)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001239 break;
1240 rbuf += 8; /* skip "Status: " */
1241 count = out_cnt - 8;
1242 out_cnt = -1; /* buffering off */
1243 } else if (out_cnt >= 4) {
1244 /* Did CGI add "HTTP"? */
1245 if (memcmp(rbuf, HTTP_200, 4) != 0) {
1246 /* there is no "HTTP", do it ourself */
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001247 if (full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1) != sizeof(HTTP_200)-1)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001248 break;
1249 }
1250 /* Commented out:
1251 if (!strstr(rbuf, "ontent-")) {
1252 full_write(s, "Content-type: text/plain\r\n\r\n", 28);
1253 }
1254 * Counter-example of valid CGI without Content-type:
1255 * echo -en "HTTP/1.0 302 Found\r\n"
1256 * echo -en "Location: http://www.busybox.net\r\n"
1257 * echo -en "\r\n"
1258 */
1259 count = out_cnt;
1260 out_cnt = -1; /* buffering off */
1261 }
1262 } else {
1263 count = safe_read(fromCgi_rd, rbuf, PIPE_BUF);
1264 if (count <= 0)
1265 break; /* eof (or error) */
1266 }
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001267 if (full_write(STDOUT_FILENO, rbuf, count) != count)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001268 break;
1269 if (DEBUG)
1270 fprintf(stderr, "cgi read %d bytes: '%.*s'\n", count, count, rbuf);
1271 } /* if (pfd[FROM_CGI].revents) */
1272 } /* while (1) */
1273 log_and_exit();
1274}
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001275#endif
1276
1277#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001278
Denis Vlasenko921799d2007-08-19 19:28:09 +00001279static void setenv1(const char *name, const char *value)
1280{
1281 setenv(name, value ? value : "", 1);
1282}
1283
Denis Vlasenko241b1562007-08-17 19:18:47 +00001284/*
1285 * Spawn CGI script, forward CGI's stdin/out <=> network
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001286 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001287 * Environment variables are set up and the script is invoked with pipes
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001288 * for stdin/stdout. If a POST is being done the script is fed the POST
Denis Vlasenko241b1562007-08-17 19:18:47 +00001289 * data in addition to setting the QUERY_STRING variable (for GETs or POSTs).
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001290 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001291 * Parameters:
1292 * const char *url The requested URL (with leading /).
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001293 * int post_len Length of the POST body.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001294 * const char *cookie For set HTTP_COOKIE.
1295 * const char *content_type For set CONTENT_TYPE.
1296 */
1297static void send_cgi_and_exit(
1298 const char *url,
1299 const char *request,
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001300 int post_len,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001301 const char *cookie,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001302 const char *content_type) NORETURN;
Denis Vlasenko241b1562007-08-17 19:18:47 +00001303static void send_cgi_and_exit(
1304 const char *url,
1305 const char *request,
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001306 int post_len,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001307 const char *cookie,
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001308 const char *content_type)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001309{
Denis Vlasenko37188322008-02-16 13:20:56 +00001310 struct fd_pair fromCgi; /* CGI -> httpd pipe */
1311 struct fd_pair toCgi; /* httpd -> CGI pipe */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001312 char *script;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001313 int pid;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001314
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001315 /* Make a copy. NB: caller guarantees:
1316 * url[0] == '/', url[1] != '/' */
1317 url = xstrdup(url);
1318
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001319 /*
1320 * We are mucking with environment _first_ and then vfork/exec,
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001321 * this allows us to use vfork safely. Parent doesn't care about
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001322 * these environment changes anyway.
1323 */
1324
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001325 /* Check for [dirs/]script.cgi/PATH_INFO */
1326 script = (char*)url;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001327 while ((script = strchr(script + 1, '/')) != NULL) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001328 *script = '\0';
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001329 if (!is_directory(url + 1, 1, NULL)) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001330 /* not directory, found script.cgi/PATH_INFO */
1331 *script = '/';
1332 break;
1333 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001334 *script = '/'; /* is directory, find next '/' */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001335 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001336 setenv1("PATH_INFO", script); /* set to /PATH_INFO or "" */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001337 setenv1("REQUEST_METHOD", request);
1338 if (g_query) {
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001339 putenv(xasprintf("%s=%s?%s", "REQUEST_URI", url, g_query));
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001340 } else {
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001341 setenv1("REQUEST_URI", url);
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001342 }
1343 if (script != NULL)
1344 *script = '\0'; /* cut off /PATH_INFO */
1345
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001346 /* SCRIPT_FILENAME is required by PHP in CGI mode */
1347 if (home_httpd[0] == '/') {
1348 char *fullpath = concat_path_file(home_httpd, url);
1349 setenv1("SCRIPT_FILENAME", fullpath);
1350 }
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001351 /* set SCRIPT_NAME as full path: /cgi-bin/dirs/script.cgi */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001352 setenv1("SCRIPT_NAME", url);
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001353 /* http://hoohoo.ncsa.uiuc.edu/cgi/env.html:
1354 * QUERY_STRING: The information which follows the ? in the URL
1355 * which referenced this script. This is the query information.
1356 * It should not be decoded in any fashion. This variable
1357 * should always be set when there is query information,
1358 * regardless of command line decoding. */
1359 /* (Older versions of bbox seem to do some decoding) */
1360 setenv1("QUERY_STRING", g_query);
1361 putenv((char*)"SERVER_SOFTWARE=busybox httpd/"BB_VER);
1362 putenv((char*)"SERVER_PROTOCOL=HTTP/1.0");
1363 putenv((char*)"GATEWAY_INTERFACE=CGI/1.1");
1364 /* Having _separate_ variables for IP and port defeats
1365 * the purpose of having socket abstraction. Which "port"
1366 * are you using on Unix domain socket?
1367 * IOW - REMOTE_PEER="1.2.3.4:56" makes much more sense.
1368 * Oh well... */
1369 {
1370 char *p = rmt_ip_str ? rmt_ip_str : (char*)"";
1371 char *cp = strrchr(p, ':');
1372 if (ENABLE_FEATURE_IPV6 && cp && strchr(cp, ']'))
1373 cp = NULL;
1374 if (cp) *cp = '\0'; /* delete :PORT */
1375 setenv1("REMOTE_ADDR", p);
Denis Vlasenko37c33162007-08-19 18:54:22 +00001376 if (cp) {
1377 *cp = ':';
1378#if ENABLE_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
1379 setenv1("REMOTE_PORT", cp + 1);
1380#endif
1381 }
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001382 }
1383 setenv1("HTTP_USER_AGENT", user_agent);
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +00001384 if (http_accept)
1385 setenv1("HTTP_ACCEPT", http_accept);
1386 if (http_accept_language)
1387 setenv1("HTTP_ACCEPT_LANGUAGE", http_accept_language);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001388 if (post_len)
1389 putenv(xasprintf("CONTENT_LENGTH=%d", post_len));
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001390 if (cookie)
1391 setenv1("HTTP_COOKIE", cookie);
1392 if (content_type)
1393 setenv1("CONTENT_TYPE", content_type);
1394#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1395 if (remoteuser) {
1396 setenv1("REMOTE_USER", remoteuser);
1397 putenv((char*)"AUTH_TYPE=Basic");
1398 }
1399#endif
1400 if (referer)
1401 setenv1("HTTP_REFERER", referer);
Denis Vlasenko9d1d4c02008-11-22 20:29:35 +00001402 setenv1("HTTP_HOST", host); /* set to "" if NULL */
Denis Vlasenkocbb4e612009-03-18 20:00:46 +00001403 /* setenv1("SERVER_NAME", safe_gethostname()); - don't do this,
1404 * just run "env SERVER_NAME=xyz httpd ..." instead */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001405
Denis Vlasenko37188322008-02-16 13:20:56 +00001406 xpiped_pair(fromCgi);
1407 xpiped_pair(toCgi);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001408
Denis Vlasenko80281fe2007-03-07 22:16:38 +00001409 pid = vfork();
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001410 if (pid < 0) {
1411 /* TODO: log perror? */
1412 log_and_exit();
1413 }
Denis Vlasenkof7996f32007-01-11 17:20:00 +00001414
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001415 if (!pid) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001416 /* Child process */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001417 char *argv[3];
1418
Denis Vlasenko241b1562007-08-17 19:18:47 +00001419 xfunc_error_retval = 242;
1420
Denis Vlasenko284d0fa2008-02-16 13:18:17 +00001421 /* NB: close _first_, then move fds! */
1422 close(toCgi.wr);
1423 close(fromCgi.rd);
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001424 xmove_fd(toCgi.rd, 0); /* replace stdin with the pipe */
1425 xmove_fd(fromCgi.wr, 1); /* replace stdout with the pipe */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001426 /* User seeing stderr output can be a security problem.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001427 * If CGI really wants that, it can always do dup itself. */
Denis Vlasenko1ec15cd2007-08-11 20:20:43 +00001428 /* dup2(1, 2); */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001429
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001430 /* Chdiring to script's dir */
1431 script = strrchr(url, '/');
1432 if (script != url) { /* paranoia */
1433 *script = '\0';
1434 if (chdir(url + 1) != 0) {
1435 bb_perror_msg("chdir %s", url + 1);
1436 goto error_execing_cgi;
1437 }
1438 // not needed: *script = '/';
1439 }
1440 script++;
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001441
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001442 /* set argv[0] to name without path */
1443 argv[0] = script;
1444 argv[1] = NULL;
Denis Vlasenkofc213052008-02-11 16:26:22 +00001445
1446#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001447 {
1448 char *suffix = strrchr(script, '.');
Denis Vlasenkofc213052008-02-11 16:26:22 +00001449
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001450 if (suffix) {
1451 Htaccess *cur;
1452 for (cur = script_i; cur; cur = cur->next) {
1453 if (strcmp(cur->before_colon + 1, suffix) == 0) {
1454 /* found interpreter name */
1455 argv[0] = cur->after_colon;
1456 argv[1] = script;
1457 argv[2] = NULL;
1458 break;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001459 }
1460 }
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001461 }
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001462 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001463#endif
1464 /* restore default signal dispositions for CGI process */
1465 bb_signals(0
1466 | (1 << SIGCHLD)
1467 | (1 << SIGPIPE)
1468 | (1 << SIGHUP)
1469 , SIG_DFL);
1470
1471 /* _NOT_ execvp. We do not search PATH. argv[0] is a filename
1472 * without any dir components and will only match a file
1473 * in the current directory */
1474 execv(argv[0], argv);
1475 if (verbose)
1476 bb_perror_msg("exec %s", argv[0]);
1477 error_execing_cgi:
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001478 /* send to stdout
1479 * (we are CGI here, our stdout is pumped to the net) */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001480 send_headers_and_exit(HTTP_NOT_FOUND);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001481 } /* end child */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001482
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001483 /* Parent process */
1484
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001485 /* Restore variables possibly changed by child */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001486 xfunc_error_retval = 0;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001487
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001488 /* Pump data */
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001489 close(fromCgi.wr);
1490 close(toCgi.rd);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001491 cgi_io_loop_and_exit(fromCgi.rd, toCgi.wr, post_len);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001492}
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001493
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001494#endif /* FEATURE_HTTPD_CGI */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001495
Denis Vlasenko241b1562007-08-17 19:18:47 +00001496/*
1497 * Send a file response to a HTTP request, and exit
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00001498 *
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001499 * Parameters:
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001500 * const char *url The requested URL (with leading /).
1501 * what What to send (headers/body/both).
Denis Vlasenko241b1562007-08-17 19:18:47 +00001502 */
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001503static NOINLINE void send_file_and_exit(const char *url, int what)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001504{
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001505 char *suffix;
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001506 int fd;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001507 ssize_t count;
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001508
1509 fd = open(url, O_RDONLY);
1510 if (fd < 0) {
1511 if (DEBUG)
1512 bb_perror_msg("can't open '%s'", url);
1513 /* Error pages are sent by using send_file_and_exit(SEND_BODY).
1514 * IOW: it is unsafe to call send_headers_and_exit
1515 * if what is SEND_BODY! Can recurse! */
1516 if (what != SEND_BODY)
1517 send_headers_and_exit(HTTP_NOT_FOUND);
1518 log_and_exit();
1519 }
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001520 /* If you want to know about EPIPE below
1521 * (happens if you abort downloads from local httpd): */
1522 signal(SIGPIPE, SIG_IGN);
1523
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001524 /* If not found, default is "application/octet-stream" */
Denis Vlasenko073214f2007-08-17 19:20:07 +00001525 found_mime_type = "application/octet-stream";
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001526 suffix = strrchr(url, '.');
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001527 if (suffix) {
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001528 static const char suffixTable[] ALIGN1 =
1529 /* Shorter suffix must be first:
1530 * ".html.htm" will fail for ".htm"
1531 */
1532 ".txt.h.c.cc.cpp\0" "text/plain\0"
1533 /* .htm line must be after .h line */
1534 ".htm.html\0" "text/html\0"
1535 ".jpg.jpeg\0" "image/jpeg\0"
1536 ".gif\0" "image/gif\0"
1537 ".png\0" "image/png\0"
1538 /* .css line must be after .c line */
1539 ".css\0" "text/css\0"
1540 ".wav\0" "audio/wav\0"
1541 ".avi\0" "video/x-msvideo\0"
1542 ".qt.mov\0" "video/quicktime\0"
1543 ".mpe.mpeg\0" "video/mpeg\0"
1544 ".mid.midi\0" "audio/midi\0"
1545 ".mp3\0" "audio/mpeg\0"
1546#if 0 /* unpopular */
1547 ".au\0" "audio/basic\0"
1548 ".pac\0" "application/x-ns-proxy-autoconfig\0"
1549 ".vrml.wrl\0" "model/vrml\0"
1550#endif
1551 /* compiler adds another "\0" here */
1552 ;
Denis Vlasenko073214f2007-08-17 19:20:07 +00001553 Htaccess *cur;
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001554
1555 /* Examine built-in table */
1556 const char *table = suffixTable;
1557 const char *table_next;
1558 for (; *table; table = table_next) {
1559 const char *try_suffix;
1560 const char *mime_type;
1561 mime_type = table + strlen(table) + 1;
1562 table_next = mime_type + strlen(mime_type) + 1;
1563 try_suffix = strstr(table, suffix);
1564 if (!try_suffix)
1565 continue;
1566 try_suffix += strlen(suffix);
1567 if (*try_suffix == '\0' || *try_suffix == '.') {
1568 found_mime_type = mime_type;
1569 break;
Denis Vlasenko073214f2007-08-17 19:20:07 +00001570 }
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001571 /* Example: strstr(table, ".av") != NULL, but it
1572 * does not match ".avi" after all and we end up here.
1573 * The table is arranged so that in this case we know
1574 * that it can't match anything in the following lines,
1575 * and we stop the search: */
1576 break;
Denis Vlasenko073214f2007-08-17 19:20:07 +00001577 }
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001578 /* ...then user's table */
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001579 for (cur = mime_a; cur; cur = cur->next) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001580 if (strcmp(cur->before_colon, suffix) == 0) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001581 found_mime_type = cur->after_colon;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001582 break;
1583 }
1584 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001585 }
Bernhard Reutner-Fischer62851172009-05-03 18:53:22 +02001586
1587 if (DEBUG)
1588 bb_error_msg("sending file '%s' content-type: %s",
1589 url, found_mime_type);
1590
Denis Vlasenkof4310172007-09-21 22:35:18 +00001591#if ENABLE_FEATURE_HTTPD_RANGES
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001592 if (what == SEND_BODY)
Denis Vlasenkof4310172007-09-21 22:35:18 +00001593 range_start = 0; /* err pages and ranges don't mix */
1594 range_len = MAXINT(off_t);
1595 if (range_start) {
1596 if (!range_end) {
1597 range_end = file_size - 1;
1598 }
1599 if (range_end < range_start
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001600 || lseek(fd, range_start, SEEK_SET) != range_start
Denis Vlasenkof4310172007-09-21 22:35:18 +00001601 ) {
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001602 lseek(fd, 0, SEEK_SET);
Denis Vlasenkof4310172007-09-21 22:35:18 +00001603 range_start = 0;
1604 } else {
1605 range_len = range_end - range_start + 1;
1606 send_headers(HTTP_PARTIAL_CONTENT);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001607 what = SEND_BODY;
Denis Vlasenkof4310172007-09-21 22:35:18 +00001608 }
1609 }
1610#endif
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001611 if (what & SEND_HEADERS)
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001612 send_headers(HTTP_OK);
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001613#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001614 {
1615 off_t offset = range_start;
1616 while (1) {
1617 /* sz is rounded down to 64k */
1618 ssize_t sz = MAXINT(ssize_t) - 0xffff;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001619 IF_FEATURE_HTTPD_RANGES(if (sz > range_len) sz = range_len;)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001620 count = sendfile(STDOUT_FILENO, fd, &offset, sz);
1621 if (count < 0) {
1622 if (offset == range_start)
1623 break; /* fall back to read/write loop */
1624 goto fin;
1625 }
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001626 IF_FEATURE_HTTPD_RANGES(range_len -= sz;)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001627 if (count == 0 || range_len == 0)
1628 log_and_exit();
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001629 }
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001630 }
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001631#endif
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001632 while ((count = safe_read(fd, iobuf, IOBUF_SIZE)) > 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00001633 ssize_t n;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001634 IF_FEATURE_HTTPD_RANGES(if (count > range_len) count = range_len;)
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001635 n = full_write(STDOUT_FILENO, iobuf, count);
Denis Vlasenko241b1562007-08-17 19:18:47 +00001636 if (count != n)
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001637 break;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001638 IF_FEATURE_HTTPD_RANGES(range_len -= count;)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001639 if (range_len == 0)
Denis Vlasenkof4310172007-09-21 22:35:18 +00001640 break;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001641 }
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001642 if (count < 0) {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001643 IF_FEATURE_HTTPD_USE_SENDFILE(fin:)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001644 if (verbose > 1)
1645 bb_perror_msg("error");
1646 }
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001647 log_and_exit();
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001648}
1649
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001650static int checkPermIP(void)
1651{
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001652 Htaccess_IP *cur;
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001653
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001654 for (cur = ip_a_d; cur; cur = cur->next) {
Denis Vlasenkob64eed62007-01-14 17:06:11 +00001655#if DEBUG
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001656 fprintf(stderr,
1657 "checkPermIP: '%s' ? '%u.%u.%u.%u/%u.%u.%u.%u'\n",
1658 rmt_ip_str,
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00001659 (unsigned char)(cur->ip >> 24),
1660 (unsigned char)(cur->ip >> 16),
1661 (unsigned char)(cur->ip >> 8),
1662 (unsigned char)(cur->ip),
1663 (unsigned char)(cur->mask >> 24),
1664 (unsigned char)(cur->mask >> 16),
1665 (unsigned char)(cur->mask >> 8),
1666 (unsigned char)(cur->mask)
1667 );
Denis Vlasenko3bba5452006-12-30 17:57:03 +00001668#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001669 if ((rmt_ip & cur->mask) == cur->ip)
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001670 return (cur->allow_deny == 'A'); /* A -> 1 */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001671 }
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001672
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001673 return !flg_deny_all; /* depends on whether we saw "D:*" */
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001674}
1675
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001676#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko073214f2007-08-17 19:20:07 +00001677/*
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001678 * Config file entries are of the form "/<path>:<user>:<passwd>".
1679 * If config file has no prefix match for path, access is allowed.
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001680 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001681 * path The file path
1682 * user_and_passwd "user:passwd" to validate
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001683 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001684 * Returns 1 if user_and_passwd is OK.
Denis Vlasenko073214f2007-08-17 19:20:07 +00001685 */
Denis Vlasenko25b46302008-06-13 09:55:13 +00001686static int check_user_passwd(const char *path, const char *user_and_passwd)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001687{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001688 Htaccess *cur;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001689 const char *prev = NULL;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001690
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001691 for (cur = g_auth; cur; cur = cur->next) {
Denis Vlasenko25b46302008-06-13 09:55:13 +00001692 const char *dir_prefix;
1693 size_t len;
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001694
Denis Vlasenko25b46302008-06-13 09:55:13 +00001695 dir_prefix = cur->before_colon;
1696
1697 /* WHY? */
1698 /* If already saw a match, don't accept other different matches */
1699 if (prev && strcmp(prev, dir_prefix) != 0)
1700 continue;
1701
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001702 if (DEBUG)
Denis Vlasenko25b46302008-06-13 09:55:13 +00001703 fprintf(stderr, "checkPerm: '%s' ? '%s'\n", dir_prefix, user_and_passwd);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001704
Denis Vlasenko25b46302008-06-13 09:55:13 +00001705 /* If it's not a prefix match, continue searching */
1706 len = strlen(dir_prefix);
1707 if (len != 1 /* dir_prefix "/" matches all, don't need to check */
1708 && (strncmp(dir_prefix, path, len) != 0
1709 || (path[len] != '/' && path[len] != '\0'))
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001710 ) {
Denis Vlasenko25b46302008-06-13 09:55:13 +00001711 continue;
1712 }
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001713
Denis Vlasenko25b46302008-06-13 09:55:13 +00001714 /* Path match found */
1715 prev = dir_prefix;
Eric Andersen35e643b2003-07-28 07:40:39 +00001716
Denis Vlasenko25b46302008-06-13 09:55:13 +00001717 if (ENABLE_FEATURE_HTTPD_AUTH_MD5) {
1718 char *md5_passwd;
1719
1720 md5_passwd = strchr(cur->after_colon, ':');
1721 if (md5_passwd && md5_passwd[1] == '$' && md5_passwd[2] == '1'
1722 && md5_passwd[3] == '$' && md5_passwd[4]
1723 ) {
1724 char *encrypted;
1725 int r, user_len_p1;
1726
1727 md5_passwd++;
1728 user_len_p1 = md5_passwd - cur->after_colon;
1729 /* comparing "user:" */
1730 if (strncmp(cur->after_colon, user_and_passwd, user_len_p1) != 0) {
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001731 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001732 }
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001733
Denis Vlasenko25b46302008-06-13 09:55:13 +00001734 encrypted = pw_encrypt(
1735 user_and_passwd + user_len_p1 /* cleartext pwd from user */,
1736 md5_passwd /*salt */, 1 /* cleanup */);
1737 r = strcmp(encrypted, md5_passwd);
1738 free(encrypted);
1739 if (r == 0)
1740 goto set_remoteuser_var; /* Ok */
1741 continue;
1742 }
1743 }
1744
1745 /* Comparing plaintext "user:pass" in one go */
1746 if (strcmp(cur->after_colon, user_and_passwd) == 0) {
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001747 set_remoteuser_var:
Denis Vlasenko25b46302008-06-13 09:55:13 +00001748 remoteuser = xstrndup(user_and_passwd,
1749 strchrnul(user_and_passwd, ':') - user_and_passwd);
1750 return 1; /* Ok */
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001751 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001752 } /* for */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001753
Denis Vlasenko25b46302008-06-13 09:55:13 +00001754 /* 0(bad) if prev is set: matches were found but passwd was wrong */
1755 return (prev == NULL);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001756}
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001757#endif /* FEATURE_HTTPD_BASIC_AUTH */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001758
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001759#if ENABLE_FEATURE_HTTPD_PROXY
1760static Htaccess_Proxy *find_proxy_entry(const char *url)
1761{
1762 Htaccess_Proxy *p;
1763 for (p = proxy; p; p = p->next) {
1764 if (strncmp(url, p->url_from, strlen(p->url_from)) == 0)
1765 return p;
1766 }
1767 return NULL;
1768}
1769#endif
1770
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001771/*
1772 * Handle timeouts
1773 */
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001774static void send_REQUEST_TIMEOUT_and_exit(int sig) NORETURN;
1775static void send_REQUEST_TIMEOUT_and_exit(int sig UNUSED_PARAM)
Eric Andersen07f2fea2004-10-08 08:03:29 +00001776{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001777 send_headers_and_exit(HTTP_REQUEST_TIMEOUT);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001778}
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001779
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001780/*
1781 * Handle an incoming http request and exit.
1782 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001783static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr) NORETURN;
Denis Vlasenko367960b2007-08-18 14:20:21 +00001784static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001785{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001786 static const char request_GET[] ALIGN1 = "GET";
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001787 struct stat sb;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001788 char *urlcopy;
1789 char *urlp;
1790 char *tptr;
Denis Vlasenko55a99402006-09-30 20:41:44 +00001791#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001792 static const char request_HEAD[] ALIGN1 = "HEAD";
Denis Vlasenko073214f2007-08-17 19:20:07 +00001793 const char *prequest;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001794 char *cookie = NULL;
1795 char *content_type = NULL;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001796 unsigned long length = 0;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001797#elif ENABLE_FEATURE_HTTPD_PROXY
1798#define prequest request_GET
1799 unsigned long length = 0;
1800#endif
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001801#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1802 smallint authorized = -1;
1803#endif
1804 smallint ip_allowed;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001805 char http_major_version;
1806#if ENABLE_FEATURE_HTTPD_PROXY
1807 char http_minor_version;
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001808 char *header_buf = header_buf; /* for gcc */
1809 char *header_ptr = header_ptr;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001810 Htaccess_Proxy *proxy_entry;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001811#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001812
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001813 /* Allocation of iobuf is postponed until now
1814 * (IOW, server process doesn't need to waste 8k) */
Denis Vlasenko921799d2007-08-19 19:28:09 +00001815 iobuf = xmalloc(IOBUF_SIZE);
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001816
Denis Vlasenko367960b2007-08-18 14:20:21 +00001817 rmt_ip = 0;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001818 if (fromAddr->u.sa.sa_family == AF_INET) {
1819 rmt_ip = ntohl(fromAddr->u.sin.sin_addr.s_addr);
Denis Vlasenko367960b2007-08-18 14:20:21 +00001820 }
Denis Vlasenko35465a32007-09-25 11:58:33 +00001821#if ENABLE_FEATURE_IPV6
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001822 if (fromAddr->u.sa.sa_family == AF_INET6
1823 && fromAddr->u.sin6.sin6_addr.s6_addr32[0] == 0
1824 && fromAddr->u.sin6.sin6_addr.s6_addr32[1] == 0
1825 && ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[2]) == 0xffff)
1826 rmt_ip = ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[3]);
Denis Vlasenko35465a32007-09-25 11:58:33 +00001827#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00001828 if (ENABLE_FEATURE_HTTPD_CGI || DEBUG || verbose) {
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00001829 /* NB: can be NULL (user runs httpd -i by hand?) */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001830 rmt_ip_str = xmalloc_sockaddr2dotted(&fromAddr->u.sa);
Denis Vlasenko367960b2007-08-18 14:20:21 +00001831 }
1832 if (verbose) {
1833 /* this trick makes -v logging much simpler */
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00001834 if (rmt_ip_str)
1835 applet_name = rmt_ip_str;
Denis Vlasenko367960b2007-08-18 14:20:21 +00001836 if (verbose > 2)
1837 bb_error_msg("connected");
1838 }
1839
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001840 /* Install timeout handler. get_line() needs it. */
1841 signal(SIGALRM, send_REQUEST_TIMEOUT_and_exit);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001842
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001843 if (!get_line()) /* EOF or error or empty line */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001844 send_headers_and_exit(HTTP_BAD_REQUEST);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001845
Denis Vlasenko073214f2007-08-17 19:20:07 +00001846 /* Determine type of request (GET/POST) */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001847 urlp = strpbrk(iobuf, " \t");
1848 if (urlp == NULL)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001849 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001850 *urlp++ = '\0';
Denis Vlasenko55a99402006-09-30 20:41:44 +00001851#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko073214f2007-08-17 19:20:07 +00001852 prequest = request_GET;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001853 if (strcasecmp(iobuf, prequest) != 0) {
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001854 prequest = request_HEAD;
1855 if (strcasecmp(iobuf, prequest) != 0) {
1856 prequest = "POST";
1857 if (strcasecmp(iobuf, prequest) != 0)
1858 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
1859 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001860 }
1861#else
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001862 if (strcasecmp(iobuf, request_GET) != 0)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001863 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001864#endif
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001865 urlp = skip_whitespace(urlp);
1866 if (urlp[0] != '/')
1867 send_headers_and_exit(HTTP_BAD_REQUEST);
1868
1869 /* Find end of URL and parse HTTP version, if any */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001870 http_major_version = '0';
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001871 IF_FEATURE_HTTPD_PROXY(http_minor_version = '0';)
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001872 tptr = strchrnul(urlp, ' ');
1873 /* Is it " HTTP/"? */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001874 if (tptr[0] && strncmp(tptr + 1, HTTP_200, 5) == 0) {
1875 http_major_version = tptr[6];
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001876 IF_FEATURE_HTTPD_PROXY(http_minor_version = tptr[8];)
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001877 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001878 *tptr = '\0';
Glenn L McGrath06e95652003-02-09 06:51:14 +00001879
Denis Vlasenko073214f2007-08-17 19:20:07 +00001880 /* Copy URL from after "GET "/"POST " to stack-allocated char[] */
Denis Vlasenkofcd878e2007-12-29 02:16:23 +00001881 urlcopy = alloca((tptr - urlp) + 2 + strlen(index_page));
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001882 /*if (urlcopy == NULL)
1883 * send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);*/
1884 strcpy(urlcopy, urlp);
1885 /* NB: urlcopy ptr is never changed after this */
Denis Vlasenko073214f2007-08-17 19:20:07 +00001886
1887 /* Extract url args if present */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001888 g_query = NULL;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001889 tptr = strchr(urlcopy, '?');
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001890 if (tptr) {
1891 *tptr++ = '\0';
1892 g_query = tptr;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001893 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001894
Denis Vlasenko073214f2007-08-17 19:20:07 +00001895 /* Decode URL escape sequences */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001896 tptr = decodeString(urlcopy, 0);
1897 if (tptr == NULL)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001898 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001899 if (tptr == urlcopy + 1) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001900 /* '/' or NUL is encoded */
1901 send_headers_and_exit(HTTP_NOT_FOUND);
1902 }
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001903
Denis Vlasenko073214f2007-08-17 19:20:07 +00001904 /* Canonicalize path */
1905 /* Algorithm stolen from libbb bb_simplify_path(),
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001906 * but don't strdup, retain trailing slash, protect root */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001907 urlp = tptr = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001908 do {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001909 if (*urlp == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001910 /* skip duplicate (or initial) slash */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001911 if (*tptr == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001912 continue;
1913 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001914 if (*tptr == '.') {
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001915 /* skip extra "/./" */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001916 if (tptr[1] == '/' || !tptr[1]) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001917 continue;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001918 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001919 /* "..": be careful */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001920 if (tptr[1] == '.' && (tptr[2] == '/' || !tptr[2])) {
1921 ++tptr;
1922 if (urlp == urlcopy) /* protect root */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001923 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001924 while (*--urlp != '/') /* omit previous dir */;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001925 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001926 }
1927 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001928 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001929 *++urlp = *tptr;
1930 } while (*++tptr);
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001931 *++urlp = '\0'; /* terminate after last character */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001932
Denis Vlasenko073214f2007-08-17 19:20:07 +00001933 /* If URL is a directory, add '/' */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001934 if (urlp[-1] != '/') {
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001935 if (is_directory(urlcopy + 1, 1, NULL)) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001936 found_moved_temporarily = urlcopy;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001937 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001938 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001939
Denis Vlasenko073214f2007-08-17 19:20:07 +00001940 /* Log it */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001941 if (verbose > 1)
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001942 bb_error_msg("url:%s", urlcopy);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001943
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001944 tptr = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001945 ip_allowed = checkPermIP();
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001946 while (ip_allowed && (tptr = strchr(tptr + 1, '/')) != NULL) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001947 /* have path1/path2 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001948 *tptr = '\0';
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001949 if (is_directory(urlcopy + 1, 1, NULL)) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001950 /* may have subdir config */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001951 parse_conf(urlcopy + 1, SUBDIR_PARSE);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001952 ip_allowed = checkPermIP();
1953 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001954 *tptr = '/';
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001955 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001956
1957#if ENABLE_FEATURE_HTTPD_PROXY
1958 proxy_entry = find_proxy_entry(urlcopy);
1959 if (proxy_entry)
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001960 header_buf = header_ptr = xmalloc(IOBUF_SIZE);
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001961#endif
1962
1963 if (http_major_version >= '0') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001964 /* Request was with "... HTTP/nXXX", and n >= 0 */
Denis Vlasenko073214f2007-08-17 19:20:07 +00001965
1966 /* Read until blank line for HTTP version specified, else parse immediate */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001967 while (1) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001968 if (!get_line())
1969 break; /* EOF or error or empty line */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001970 if (DEBUG)
1971 bb_error_msg("header: '%s'", iobuf);
Denis Vlasenko073214f2007-08-17 19:20:07 +00001972
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001973#if ENABLE_FEATURE_HTTPD_PROXY
1974 /* We need 2 more bytes for yet another "\r\n" -
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001975 * see near fdprintf(proxy_fd...) further below */
1976 if (proxy_entry && (header_ptr - header_buf) < IOBUF_SIZE - 2) {
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001977 int len = strlen(iobuf);
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001978 if (len > IOBUF_SIZE - (header_ptr - header_buf) - 4)
1979 len = IOBUF_SIZE - (header_ptr - header_buf) - 4;
1980 memcpy(header_ptr, iobuf, len);
1981 header_ptr += len;
1982 header_ptr[0] = '\r';
1983 header_ptr[1] = '\n';
1984 header_ptr += 2;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001985 }
1986#endif
1987
1988#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
1989 /* Try and do our best to parse more lines */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001990 if ((STRNCASECMP(iobuf, "Content-length:") == 0)) {
1991 /* extra read only for POST */
Denis Vlasenko85c24712008-03-17 09:04:04 +00001992 if (prequest != request_GET
1993#if ENABLE_FEATURE_HTTPD_CGI
1994 && prequest != request_HEAD
1995#endif
1996 ) {
Denis Vlasenko9c8c0382008-03-17 12:58:19 +00001997 tptr = skip_whitespace(iobuf + sizeof("Content-length:") - 1);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001998 if (!tptr[0])
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001999 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002000 /* not using strtoul: it ignores leading minus! */
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002001 length = bb_strtou(tptr, NULL, 10);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002002 /* length is "ulong", but we need to pass it to int later */
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002003 if (errno || length > INT_MAX)
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00002004 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002005 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002006 }
2007#endif
2008#if ENABLE_FEATURE_HTTPD_CGI
2009 else if (STRNCASECMP(iobuf, "Cookie:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002010 cookie = xstrdup(skip_whitespace(iobuf + sizeof("Cookie:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002011 } else if (STRNCASECMP(iobuf, "Content-Type:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002012 content_type = xstrdup(skip_whitespace(iobuf + sizeof("Content-Type:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002013 } else if (STRNCASECMP(iobuf, "Referer:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002014 referer = xstrdup(skip_whitespace(iobuf + sizeof("Referer:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002015 } else if (STRNCASECMP(iobuf, "User-Agent:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002016 user_agent = xstrdup(skip_whitespace(iobuf + sizeof("User-Agent:")-1));
Denis Vlasenko9d1d4c02008-11-22 20:29:35 +00002017 } else if (STRNCASECMP(iobuf, "Host:") == 0) {
2018 host = xstrdup(skip_whitespace(iobuf + sizeof("Host:")-1));
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +00002019 } else if (STRNCASECMP(iobuf, "Accept:") == 0) {
2020 http_accept = xstrdup(skip_whitespace(iobuf + sizeof("Accept:")-1));
2021 } else if (STRNCASECMP(iobuf, "Accept-Language:") == 0) {
2022 http_accept_language = xstrdup(skip_whitespace(iobuf + sizeof("Accept-Language:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002023 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002024#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002025#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002026 if (STRNCASECMP(iobuf, "Authorization:") == 0) {
2027 /* We only allow Basic credentials.
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002028 * It shows up as "Authorization: Basic <user>:<passwd>" where
2029 * "<user>:<passwd>" is base64 encoded.
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002030 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002031 tptr = skip_whitespace(iobuf + sizeof("Authorization:")-1);
2032 if (STRNCASECMP(tptr, "Basic") != 0)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002033 continue;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002034 tptr += sizeof("Basic")-1;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002035 /* decodeBase64() skips whitespace itself */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002036 decodeBase64(tptr);
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002037 authorized = check_user_passwd(urlcopy, tptr);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002038 }
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002039#endif
Denis Vlasenkof4310172007-09-21 22:35:18 +00002040#if ENABLE_FEATURE_HTTPD_RANGES
2041 if (STRNCASECMP(iobuf, "Range:") == 0) {
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002042 /* We know only bytes=NNN-[MMM] */
Denis Vlasenkof4310172007-09-21 22:35:18 +00002043 char *s = skip_whitespace(iobuf + sizeof("Range:")-1);
2044 if (strncmp(s, "bytes=", 6) == 0) {
2045 s += sizeof("bytes=")-1;
2046 range_start = BB_STRTOOFF(s, &s, 10);
2047 if (s[0] != '-' || range_start < 0) {
2048 range_start = 0;
2049 } else if (s[1]) {
2050 range_end = BB_STRTOOFF(s+1, NULL, 10);
2051 if (errno || range_end < range_start)
2052 range_start = 0;
2053 }
2054 }
2055 }
2056#endif
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002057 } /* while extra header reading */
2058 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002059
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002060 /* We are done reading headers, disable peer timeout */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002061 alarm(0);
2062
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002063 if (strcmp(bb_basename(urlcopy), HTTPD_CONF) == 0 || !ip_allowed) {
2064 /* protect listing [/path]/httpd.conf or IP deny */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002065 send_headers_and_exit(HTTP_FORBIDDEN);
2066 }
2067
2068#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002069 /* Case: no "Authorization:" was seen, but page does require passwd.
2070 * Check that with dummy user:pass */
Denis Vlasenko7504f2f2008-06-13 13:20:38 +00002071 if (authorized < 0)
2072 authorized = check_user_passwd(urlcopy, ":");
2073 if (!authorized)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002074 send_headers_and_exit(HTTP_UNAUTHORIZED);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002075#endif
2076
2077 if (found_moved_temporarily) {
2078 send_headers_and_exit(HTTP_MOVED_TEMPORARILY);
2079 }
2080
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002081#if ENABLE_FEATURE_HTTPD_PROXY
2082 if (proxy_entry != NULL) {
2083 int proxy_fd;
2084 len_and_sockaddr *lsa;
2085
2086 proxy_fd = socket(AF_INET, SOCK_STREAM, 0);
2087 if (proxy_fd < 0)
2088 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2089 lsa = host2sockaddr(proxy_entry->host_port, 80);
2090 if (lsa == NULL)
2091 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002092 if (connect(proxy_fd, &lsa->u.sa, lsa->len) < 0)
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002093 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2094 fdprintf(proxy_fd, "%s %s%s%s%s HTTP/%c.%c\r\n",
2095 prequest, /* GET or POST */
2096 proxy_entry->url_to, /* url part 1 */
2097 urlcopy + strlen(proxy_entry->url_from), /* url part 2 */
2098 (g_query ? "?" : ""), /* "?" (maybe) */
2099 (g_query ? g_query : ""), /* query string (maybe) */
2100 http_major_version, http_minor_version);
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00002101 header_ptr[0] = '\r';
2102 header_ptr[1] = '\n';
2103 header_ptr += 2;
2104 write(proxy_fd, header_buf, header_ptr - header_buf);
2105 free(header_buf); /* on the order of 8k, free it */
Bernhard Reutner-Fischer62851172009-05-03 18:53:22 +02002106 /* cgi_io_loop_and_exit needs to have two distinct fds */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002107 cgi_io_loop_and_exit(proxy_fd, dup(proxy_fd), length);
2108 }
2109#endif
2110
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002111 tptr = urlcopy + 1; /* skip first '/' */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002112
2113#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002114 if (strncmp(tptr, "cgi-bin/", 8) == 0) {
2115 if (tptr[8] == '\0') {
Denis Vlasenko073214f2007-08-17 19:20:07 +00002116 /* protect listing "cgi-bin/" */
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002117 send_headers_and_exit(HTTP_FORBIDDEN);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002118 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002119 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002120 }
Denys Vlasenko108b8c52009-09-08 21:17:49 +02002121#endif
2122
2123 if (urlp[-1] == '/')
2124 strcpy(urlp, index_page);
2125 if (stat(tptr, &sb) == 0) {
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002126#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002127 char *suffix = strrchr(tptr, '.');
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002128 if (suffix) {
2129 Htaccess *cur;
2130 for (cur = script_i; cur; cur = cur->next) {
2131 if (strcmp(cur->before_colon + 1, suffix) == 0) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002132 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002133 }
2134 }
2135 }
2136#endif
Denis Vlasenkof4310172007-09-21 22:35:18 +00002137 file_size = sb.st_size;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002138 last_mod = sb.st_mtime;
2139 }
Denis Vlasenko5d148e22006-11-21 00:12:09 +00002140#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002141 else if (urlp[-1] == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002142 /* It's a dir URL and there is no index.html
2143 * Try cgi-bin/index.cgi */
2144 if (access("/cgi-bin/index.cgi"+1, X_OK) == 0) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002145 urlp[0] = '\0';
2146 g_query = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002147 send_cgi_and_exit("/cgi-bin/index.cgi", prequest, length, cookie, content_type);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002148 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002149 }
Denys Vlasenko108b8c52009-09-08 21:17:49 +02002150 /* else fall through to send_file, it errors out if open fails: */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002151
Denys Vlasenko108b8c52009-09-08 21:17:49 +02002152 if (prequest != request_GET && prequest != request_HEAD) {
2153 /* POST for files does not make sense */
2154 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
2155 }
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002156 send_file_and_exit(tptr,
Denis Vlasenko85c24712008-03-17 09:04:04 +00002157 (prequest != request_HEAD ? SEND_HEADERS_AND_BODY : SEND_HEADERS)
Denis Vlasenko85c24712008-03-17 09:04:04 +00002158 );
Denys Vlasenko108b8c52009-09-08 21:17:49 +02002159#else
2160 send_file_and_exit(tptr, SEND_HEADERS_AND_BODY);
2161#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002162}
2163
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002164/*
2165 * The main http server function.
Denis Vlasenko367960b2007-08-18 14:20:21 +00002166 * Given a socket, listen for new connections and farm out
2167 * the processing as a [v]forked process.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002168 * Never returns.
2169 */
Denis Vlasenko367960b2007-08-18 14:20:21 +00002170#if BB_MMU
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002171static void mini_httpd(int server_socket) NORETURN;
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002172static void mini_httpd(int server_socket)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002173{
Denis Vlasenko073214f2007-08-17 19:20:07 +00002174 /* NB: it's best to not use xfuncs in this loop before fork().
2175 * Otherwise server may die on transient errors (temporary
2176 * out-of-memory condition, etc), which is Bad(tm).
2177 * Try to do any dangerous calls after fork.
2178 */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002179 while (1) {
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002180 int n;
2181 len_and_sockaddr fromAddr;
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00002182
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002183 /* Wait for connections... */
2184 fromAddr.len = LSA_SIZEOF_SA;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002185 n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002186
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002187 if (n < 0)
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00002188 continue;
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002189 /* set the KEEPALIVE option to cull dead connections */
2190 setsockopt(n, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002191
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002192 if (fork() == 0) {
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002193 /* child */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002194 /* Do not reload config on HUP */
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00002195 signal(SIGHUP, SIG_IGN);
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002196 close(server_socket);
2197 xmove_fd(n, 0);
2198 xdup2(0, 1);
2199
Denis Vlasenko367960b2007-08-18 14:20:21 +00002200 handle_incoming_and_exit(&fromAddr);
2201 }
2202 /* parent, or fork failed */
2203 close(n);
2204 } /* while (1) */
2205 /* never reached */
2206}
2207#else
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002208static void mini_httpd_nommu(int server_socket, int argc, char **argv) NORETURN;
Denis Vlasenko367960b2007-08-18 14:20:21 +00002209static void mini_httpd_nommu(int server_socket, int argc, char **argv)
2210{
2211 char *argv_copy[argc + 2];
2212
2213 argv_copy[0] = argv[0];
2214 argv_copy[1] = (char*)"-i";
2215 memcpy(&argv_copy[2], &argv[1], argc * sizeof(argv[0]));
2216
2217 /* NB: it's best to not use xfuncs in this loop before vfork().
2218 * Otherwise server may die on transient errors (temporary
2219 * out-of-memory condition, etc), which is Bad(tm).
2220 * Try to do any dangerous calls after fork.
2221 */
2222 while (1) {
2223 int n;
2224 len_and_sockaddr fromAddr;
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00002225
Denis Vlasenko367960b2007-08-18 14:20:21 +00002226 /* Wait for connections... */
2227 fromAddr.len = LSA_SIZEOF_SA;
Denis Vlasenko671ca332008-02-19 14:13:20 +00002228 n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002229
2230 if (n < 0)
2231 continue;
2232 /* set the KEEPALIVE option to cull dead connections */
2233 setsockopt(n, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
2234
2235 if (vfork() == 0) {
2236 /* child */
Denis Vlasenko367960b2007-08-18 14:20:21 +00002237 /* Do not reload config on HUP */
2238 signal(SIGHUP, SIG_IGN);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002239 close(server_socket);
2240 xmove_fd(n, 0);
2241 xdup2(0, 1);
2242
2243 /* Run a copy of ourself in inetd mode */
2244 re_exec(argv_copy);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002245 }
Denis Vlasenko921799d2007-08-19 19:28:09 +00002246 /* parent, or vfork failed */
Denis Vlasenko073214f2007-08-17 19:20:07 +00002247 close(n);
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002248 } /* while (1) */
Denis Vlasenko241b1562007-08-17 19:18:47 +00002249 /* never reached */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002250}
Denis Vlasenko56258b62007-06-23 23:14:02 +00002251#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002252
Denis Vlasenko367960b2007-08-18 14:20:21 +00002253/*
2254 * Process a HTTP connection on stdin/out.
2255 * Never returns.
2256 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002257static void mini_httpd_inetd(void) NORETURN;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002258static void mini_httpd_inetd(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002259{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002260 len_and_sockaddr fromAddr;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002261
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00002262 memset(&fromAddr, 0, sizeof(fromAddr));
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002263 fromAddr.len = LSA_SIZEOF_SA;
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00002264 /* NB: can fail if user runs it by hand and types in http cmds */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002265 getpeername(0, &fromAddr.u.sa, &fromAddr.len);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002266 handle_incoming_and_exit(&fromAddr);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002267}
Glenn L McGrath06e95652003-02-09 06:51:14 +00002268
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002269static void sighup_handler(int sig UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00002270{
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002271 parse_conf(DEFAULT_PATH_HTTPD_CONF, SIGNALED_PARSE);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002272}
Glenn L McGrath06e95652003-02-09 06:51:14 +00002273
Denis Vlasenko9f609292006-11-05 19:47:33 +00002274enum {
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002275 c_opt_config_file = 0,
2276 d_opt_decode_url,
2277 h_opt_home_httpd,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002278 IF_FEATURE_HTTPD_ENCODE_URL_STR(e_opt_encode_url,)
2279 IF_FEATURE_HTTPD_BASIC_AUTH( r_opt_realm ,)
2280 IF_FEATURE_HTTPD_AUTH_MD5( m_opt_md5 ,)
2281 IF_FEATURE_HTTPD_SETUID( u_opt_setuid ,)
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002282 p_opt_port ,
2283 p_opt_inetd ,
2284 p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002285 p_opt_verbose ,
Denis Vlasenko9f609292006-11-05 19:47:33 +00002286 OPT_CONFIG_FILE = 1 << c_opt_config_file,
2287 OPT_DECODE_URL = 1 << d_opt_decode_url,
2288 OPT_HOME_HTTPD = 1 << h_opt_home_httpd,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002289 OPT_ENCODE_URL = IF_FEATURE_HTTPD_ENCODE_URL_STR((1 << e_opt_encode_url)) + 0,
2290 OPT_REALM = IF_FEATURE_HTTPD_BASIC_AUTH( (1 << r_opt_realm )) + 0,
2291 OPT_MD5 = IF_FEATURE_HTTPD_AUTH_MD5( (1 << m_opt_md5 )) + 0,
2292 OPT_SETUID = IF_FEATURE_HTTPD_SETUID( (1 << u_opt_setuid )) + 0,
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002293 OPT_PORT = 1 << p_opt_port,
2294 OPT_INETD = 1 << p_opt_inetd,
2295 OPT_FOREGROUND = 1 << p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002296 OPT_VERBOSE = 1 << p_opt_verbose,
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002297};
Eric Andersena3bb3e62003-06-26 09:05:32 +00002298
Eric Andersena3bb3e62003-06-26 09:05:32 +00002299
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00002300int httpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002301int httpd_main(int argc UNUSED_PARAM, char **argv)
Glenn L McGrath06e95652003-02-09 06:51:14 +00002302{
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002303 int server_socket = server_socket; /* for gcc */
Denis Vlasenko67b23e62006-10-03 21:00:06 +00002304 unsigned opt;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002305 char *url_for_decode;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002306 IF_FEATURE_HTTPD_ENCODE_URL_STR(const char *url_for_encode;)
2307 IF_FEATURE_HTTPD_SETUID(const char *s_ugid = NULL;)
2308 IF_FEATURE_HTTPD_SETUID(struct bb_uidgid_t ugid;)
2309 IF_FEATURE_HTTPD_AUTH_MD5(const char *pass;)
Eric Andersen35e643b2003-07-28 07:40:39 +00002310
Denis Vlasenko073214f2007-08-17 19:20:07 +00002311 INIT_G();
2312
Denis Vlasenkofcdb00f2006-11-21 00:09:37 +00002313#if ENABLE_LOCALE_SUPPORT
2314 /* Undo busybox.c: we want to speak English in http (dates etc) */
2315 setlocale(LC_TIME, "C");
2316#endif
2317
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002318 home_httpd = xrealloc_getcwd_or_warn(NULL);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002319 /* -v counts, -i implies -f */
2320 opt_complementary = "vv:if";
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002321 /* We do not "absolutize" path given by -h (home) opt.
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00002322 * If user gives relative path in -h,
2323 * $SCRIPT_FILENAME will not be set. */
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00002324 opt = getopt32(argv, "c:d:h:"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002325 IF_FEATURE_HTTPD_ENCODE_URL_STR("e:")
2326 IF_FEATURE_HTTPD_BASIC_AUTH("r:")
2327 IF_FEATURE_HTTPD_AUTH_MD5("m:")
2328 IF_FEATURE_HTTPD_SETUID("u:")
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002329 "p:ifv",
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002330 &opt_c_configFile, &url_for_decode, &home_httpd
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002331 IF_FEATURE_HTTPD_ENCODE_URL_STR(, &url_for_encode)
2332 IF_FEATURE_HTTPD_BASIC_AUTH(, &g_realm)
2333 IF_FEATURE_HTTPD_AUTH_MD5(, &pass)
2334 IF_FEATURE_HTTPD_SETUID(, &s_ugid)
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002335 , &bind_addr_or_port
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002336 , &verbose
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002337 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002338 if (opt & OPT_DECODE_URL) {
Denis Vlasenko367960b2007-08-18 14:20:21 +00002339 fputs(decodeString(url_for_decode, 1), stdout);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002340 return 0;
2341 }
Denis Vlasenko55a99402006-09-30 20:41:44 +00002342#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002343 if (opt & OPT_ENCODE_URL) {
Denis Vlasenko367960b2007-08-18 14:20:21 +00002344 fputs(encodeString(url_for_encode), stdout);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002345 return 0;
2346 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002347#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002348#if ENABLE_FEATURE_HTTPD_AUTH_MD5
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002349 if (opt & OPT_MD5) {
Denis Vlasenko4ea83bf2008-06-12 16:55:59 +00002350 puts(pw_encrypt(pass, "$1$", 1));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002351 return 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002352 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002353#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002354#if ENABLE_FEATURE_HTTPD_SETUID
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002355 if (opt & OPT_SETUID) {
Bernhard Reutner-Fischerd73cbd32008-07-21 14:41:33 +00002356 xget_uidgid(&ugid, s_ugid);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002357 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002358#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002359
Denis Vlasenko367960b2007-08-18 14:20:21 +00002360#if !BB_MMU
2361 if (!(opt & OPT_FOREGROUND)) {
2362 bb_daemonize_or_rexec(0, argv); /* don't change current directory */
2363 }
2364#endif
2365
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002366 xchdir(home_httpd);
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002367 if (!(opt & OPT_INETD)) {
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00002368 signal(SIGCHLD, SIG_IGN);
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002369 server_socket = openServer();
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002370#if ENABLE_FEATURE_HTTPD_SETUID
2371 /* drop privileges */
2372 if (opt & OPT_SETUID) {
2373 if (ugid.gid != (gid_t)-1) {
2374 if (setgroups(1, &ugid.gid) == -1)
Denis Vlasenko8e858e22007-03-07 09:35:43 +00002375 bb_perror_msg_and_die("setgroups");
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002376 xsetgid(ugid.gid);
2377 }
2378 xsetuid(ugid.uid);
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002379 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002380#endif
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002381 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002382
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002383#if 0
Denis Vlasenko2535f122007-09-15 13:28:30 +00002384 /* User can do it himself: 'env - PATH="$PATH" httpd'
2385 * We don't do it because we don't want to screw users
2386 * which want to do
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002387 * 'env - VAR1=val1 VAR2=val2 httpd'
Denis Vlasenko2535f122007-09-15 13:28:30 +00002388 * and have VAR1 and VAR2 values visible in their CGIs.
2389 * Besides, it is also smaller. */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002390 {
2391 char *p = getenv("PATH");
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002392 /* env strings themself are not freed, no need to xstrdup(p): */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002393 clearenv();
2394 if (p)
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002395 putenv(p - 5);
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002396// if (!(opt & OPT_INETD))
2397// setenv_long("SERVER_PORT", ???);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002398 }
Glenn L McGrathfe538ba2003-09-10 23:35:45 +00002399#endif
2400
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002401 parse_conf(DEFAULT_PATH_HTTPD_CONF, FIRST_PARSE);
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002402 if (!(opt & OPT_INETD))
2403 signal(SIGHUP, sighup_handler);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002404
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00002405 xfunc_error_retval = 0;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002406 if (opt & OPT_INETD)
2407 mini_httpd_inetd();
Denis Vlasenko367960b2007-08-18 14:20:21 +00002408#if BB_MMU
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002409 if (!(opt & OPT_FOREGROUND))
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002410 bb_daemonize(0); /* don't change current directory */
2411 mini_httpd(server_socket); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002412#else
Denis Vlasenko367960b2007-08-18 14:20:21 +00002413 mini_httpd_nommu(server_socket, argc, argv); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002414#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00002415 /* return 0; */
Glenn L McGrath06e95652003-02-09 06:51:14 +00002416}