blob: 52b2b2a7a9201a5df506f800c6220f3763778845 [file] [log] [blame]
Bernhard Reutner-Fischer2c998512006-04-12 18:09:26 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002/*
3 * httpd implementation for busybox
4 *
Glenn L McGrath06e95652003-02-09 06:51:14 +00005 * Copyright (C) 2002,2003 Glenn Engel <glenne@engel.org>
"Vladimir N. Oleynik"79af7d52006-01-26 10:58:12 +00006 * Copyright (C) 2003-2006 Vladimir Oleynik <dzo@simtreas.ru>
Glenn L McGrath58c708a2003-01-05 04:01:56 +00007 *
Glenn L McGrath06e95652003-02-09 06:51:14 +00008 * simplify patch stolen from libbb without using strdup
Glenn L McGrath58c708a2003-01-05 04:01:56 +00009 *
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +000010 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Glenn L McGrath58c708a2003-01-05 04:01:56 +000011 *
12 *****************************************************************************
13 *
Glenn L McGrath06e95652003-02-09 06:51:14 +000014 * Typical usage:
15 * for non root user
16 * httpd -p 8080 -h $HOME/public_html
17 * or for daemon start from rc script with uid=0:
18 * httpd -u www
19 * This is equivalent if www user have uid=80 to
20 * httpd -p 80 -u 80 -h /www -c /etc/httpd.conf -r "Web Server Authentication"
21 *
Glenn L McGrath58c708a2003-01-05 04:01:56 +000022 *
Denis Vlasenko073214f2007-08-17 19:20:07 +000023 * When a url starts by "/cgi-bin/" it is assumed to be a cgi script. The
Glenn L McGrath58c708a2003-01-05 04:01:56 +000024 * server changes directory to the location of the script and executes it
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +000025 * after setting QUERY_STRING and other environment variables.
Glenn L McGrath58c708a2003-01-05 04:01:56 +000026 *
Denis Vlasenko8b458372006-11-21 21:23:21 +000027 * Doc:
28 * "CGI Environment Variables": http://hoohoo.ncsa.uiuc.edu/cgi/env.html
29 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +000030 * The applet can also be invoked as a url arg decoder and html text encoder
Glenn L McGrath58c708a2003-01-05 04:01:56 +000031 * as follows:
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000032 * foo=`httpd -d $foo` # decode "Hello%20World" as "Hello World"
Glenn L McGrathc9163fe2003-05-13 16:20:11 +000033 * bar=`httpd -e "<Hello World>"` # encode as "&#60Hello&#32World&#62"
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000034 * Note that url encoding for arguments is not the same as html encoding for
Eric Andersenaff114c2004-04-14 17:51:38 +000035 * presentation. -d decodes a url-encoded argument while -e encodes in html
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000036 * for page display.
Glenn L McGrath58c708a2003-01-05 04:01:56 +000037 *
38 * httpd.conf has the following format:
Eric Andersenc7bda1c2004-03-15 08:29:22 +000039 *
Denis Vlasenko395410b2008-07-20 23:25:32 +000040 * H:/serverroot # define the server root. It will override -h
Glenn L McGrathb65422c2003-09-08 10:59:27 +000041 * A:172.20. # Allow address from 172.20.0.0/16
42 * A:10.0.0.0/25 # Allow any address from 10.0.0.0-10.0.0.127
43 * A:10.0.0.0/255.255.255.128 # Allow any address that previous set
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000044 * A:127.0.0.1 # Allow local loopback connections
45 * D:* # Deny from other IP connections
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +000046 * E404:/path/e404.html # /path/e404.html is the 404 (not found) error page
Denis Vlasenkofcd878e2007-12-29 02:16:23 +000047 * I:index.html # Show index.html when a directory is requested
Denis Vlasenkof74194e2007-10-18 12:54:39 +000048 *
49 * P:/url:[http://]hostname[:port]/new/path
50 * # When /urlXXXXXX is requested, reverse proxy
51 * # it to http://hostname[:port]/new/pathXXXXXX
52 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000053 * /cgi-bin:foo:bar # Require user foo, pwd bar on urls starting with /cgi-bin/
54 * /adm:admin:setup # Require user admin, pwd setup on urls starting with /adm/
55 * /adm:toor:PaSsWd # or user toor, pwd PaSsWd on urls starting with /adm/
56 * .au:audio/basic # additional mime type for audio.au files
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 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +000097
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000098#include "libbb.h"
Denis Vlasenko1b9064d2007-08-12 21:05:49 +000099#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
Denis Vlasenko1cbfd982009-02-04 23:43:44 +0000100# include <sys/sendfile.h>
Denis Vlasenko1b9064d2007-08-12 21:05:49 +0000101#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000102
Denis Vlasenko073214f2007-08-17 19:20:07 +0000103#define DEBUG 0
104
Denis Vlasenko32a471e2007-09-23 13:56:57 +0000105#define IOBUF_SIZE 8192 /* IO buffer */
106
Denis Vlasenko69981422007-01-07 21:25:12 +0000107/* amount of buffering in a pipe */
108#ifndef PIPE_BUF
109# define PIPE_BUF 4096
110#endif
Denis Vlasenko32a471e2007-09-23 13:56:57 +0000111#if PIPE_BUF >= IOBUF_SIZE
112# error "PIPE_BUF >= IOBUF_SIZE"
113#endif
Denis Vlasenko073214f2007-08-17 19:20:07 +0000114
115#define HEADER_READ_TIMEOUT 60
116
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000117static const char DEFAULT_PATH_HTTPD_CONF[] ALIGN1 = "/etc";
118static const char HTTPD_CONF[] ALIGN1 = "httpd.conf";
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000119static const char HTTP_200[] ALIGN1 = "HTTP/1.0 200 OK\r\n";
Glenn L McGrath06e95652003-02-09 06:51:14 +0000120
Denis Vlasenko073214f2007-08-17 19:20:07 +0000121typedef struct has_next_ptr {
122 struct has_next_ptr *next;
123} has_next_ptr;
Eric Andersen07f2fea2004-10-08 08:03:29 +0000124
Denis Vlasenko073214f2007-08-17 19:20:07 +0000125/* Must have "next" as a first member */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000126typedef struct Htaccess {
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000127 struct Htaccess *next;
Denis Vlasenko073214f2007-08-17 19:20:07 +0000128 char *after_colon;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000129 char before_colon[1]; /* really bigger, must be last */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000130} Htaccess;
131
Denis Vlasenko073214f2007-08-17 19:20:07 +0000132/* Must have "next" as a first member */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000133typedef struct Htaccess_IP {
Denis Vlasenko073214f2007-08-17 19:20:07 +0000134 struct Htaccess_IP *next;
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000135 unsigned ip;
136 unsigned mask;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000137 int allow_deny;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000138} Htaccess_IP;
139
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000140/* Must have "next" as a first member */
141typedef struct Htaccess_Proxy {
142 struct Htaccess_Proxy *next;
143 char *url_from;
144 char *host_port;
145 char *url_to;
146} Htaccess_Proxy;
147
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000148enum {
149 HTTP_OK = 200,
Denis Vlasenkof4310172007-09-21 22:35:18 +0000150 HTTP_PARTIAL_CONTENT = 206,
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000151 HTTP_MOVED_TEMPORARILY = 302,
152 HTTP_BAD_REQUEST = 400, /* malformed syntax */
153 HTTP_UNAUTHORIZED = 401, /* authentication needed, respond with auth hdr */
154 HTTP_NOT_FOUND = 404,
155 HTTP_FORBIDDEN = 403,
156 HTTP_REQUEST_TIMEOUT = 408,
157 HTTP_NOT_IMPLEMENTED = 501, /* used for unrecognized requests */
158 HTTP_INTERNAL_SERVER_ERROR = 500,
159 HTTP_CONTINUE = 100,
160#if 0 /* future use */
161 HTTP_SWITCHING_PROTOCOLS = 101,
162 HTTP_CREATED = 201,
163 HTTP_ACCEPTED = 202,
164 HTTP_NON_AUTHORITATIVE_INFO = 203,
165 HTTP_NO_CONTENT = 204,
166 HTTP_MULTIPLE_CHOICES = 300,
167 HTTP_MOVED_PERMANENTLY = 301,
168 HTTP_NOT_MODIFIED = 304,
169 HTTP_PAYMENT_REQUIRED = 402,
170 HTTP_BAD_GATEWAY = 502,
171 HTTP_SERVICE_UNAVAILABLE = 503, /* overload, maintenance */
172 HTTP_RESPONSE_SETSIZE = 0xffffffff
173#endif
174};
175
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000176static const uint16_t http_response_type[] ALIGN2 = {
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000177 HTTP_OK,
Denis Vlasenkof4310172007-09-21 22:35:18 +0000178#if ENABLE_FEATURE_HTTPD_RANGES
179 HTTP_PARTIAL_CONTENT,
180#endif
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000181 HTTP_MOVED_TEMPORARILY,
182 HTTP_REQUEST_TIMEOUT,
183 HTTP_NOT_IMPLEMENTED,
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +0000184#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000185 HTTP_UNAUTHORIZED,
186#endif
187 HTTP_NOT_FOUND,
188 HTTP_BAD_REQUEST,
189 HTTP_FORBIDDEN,
190 HTTP_INTERNAL_SERVER_ERROR,
191#if 0 /* not implemented */
192 HTTP_CREATED,
193 HTTP_ACCEPTED,
194 HTTP_NO_CONTENT,
195 HTTP_MULTIPLE_CHOICES,
196 HTTP_MOVED_PERMANENTLY,
197 HTTP_NOT_MODIFIED,
198 HTTP_BAD_GATEWAY,
199 HTTP_SERVICE_UNAVAILABLE,
200#endif
201};
202
203static const struct {
204 const char *name;
205 const char *info;
206} http_response[ARRAY_SIZE(http_response_type)] = {
207 { "OK", NULL },
Denis Vlasenkof4310172007-09-21 22:35:18 +0000208#if ENABLE_FEATURE_HTTPD_RANGES
209 { "Partial Content", NULL },
210#endif
211 { "Found", NULL },
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000212 { "Request Timeout", "No request appeared within 60 seconds" },
213 { "Not Implemented", "The requested method is not recognized" },
214#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
215 { "Unauthorized", "" },
216#endif
217 { "Not Found", "The requested URL was not found" },
218 { "Bad Request", "Unsupported method" },
219 { "Forbidden", "" },
220 { "Internal Server Error", "Internal Server Error" },
221#if 0 /* not implemented */
222 { "Created" },
223 { "Accepted" },
224 { "No Content" },
225 { "Multiple Choices" },
226 { "Moved Permanently" },
227 { "Not Modified" },
228 { "Bad Gateway", "" },
229 { "Service Unavailable", "" },
230#endif
231};
232
Denis Vlasenkof4310172007-09-21 22:35:18 +0000233
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000234struct globals {
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000235 int verbose; /* must be int (used by getopt32) */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000236 smallint flg_deny_all;
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000237
Denis Vlasenko37c33162007-08-19 18:54:22 +0000238 unsigned rmt_ip; /* used for IP-based allow/deny rules */
239 time_t last_mod;
Denis Vlasenko37c33162007-08-19 18:54:22 +0000240 char *rmt_ip_str; /* for $REMOTE_ADDR and $REMOTE_PORT */
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000241 const char *bind_addr_or_port;
242
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000243 const char *g_query;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000244 const char *opt_c_configFile;
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000245 const char *home_httpd;
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000246 const char *index_page;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000247
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000248 const char *found_mime_type;
249 const char *found_moved_temporarily;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000250 Htaccess_IP *ip_a_d; /* config allow/deny lines */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000251
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000252 IF_FEATURE_HTTPD_BASIC_AUTH(const char *g_realm;)
253 IF_FEATURE_HTTPD_BASIC_AUTH(char *remoteuser;)
254 IF_FEATURE_HTTPD_CGI(char *referer;)
255 IF_FEATURE_HTTPD_CGI(char *user_agent;)
256 IF_FEATURE_HTTPD_CGI(char *host;)
257 IF_FEATURE_HTTPD_CGI(char *http_accept;)
258 IF_FEATURE_HTTPD_CGI(char *http_accept_language;)
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +0000259
Denis Vlasenkof4310172007-09-21 22:35:18 +0000260 off_t file_size; /* -1 - unknown */
261#if ENABLE_FEATURE_HTTPD_RANGES
262 off_t range_start;
263 off_t range_end;
264 off_t range_len;
265#endif
266
Denis Vlasenko55a99402006-09-30 20:41:44 +0000267#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000268 Htaccess *g_auth; /* config user:password lines */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000269#endif
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000270 Htaccess *mime_a; /* config mime types */
Denis Vlasenko55a99402006-09-30 20:41:44 +0000271#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000272 Htaccess *script_i; /* config script interpreters */
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000273#endif
Denis Vlasenko921799d2007-08-19 19:28:09 +0000274 char *iobuf; /* [IOBUF_SIZE] */
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000275#define hdr_buf bb_common_bufsiz1
276 char *hdr_ptr;
277 int hdr_cnt;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000278#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
279 const char *http_error_page[ARRAY_SIZE(http_response_type)];
280#endif
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000281#if ENABLE_FEATURE_HTTPD_PROXY
282 Htaccess_Proxy *proxy;
283#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000284};
285#define G (*ptr_to_globals)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000286#define verbose (G.verbose )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000287#define flg_deny_all (G.flg_deny_all )
288#define rmt_ip (G.rmt_ip )
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000289#define bind_addr_or_port (G.bind_addr_or_port)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000290#define g_query (G.g_query )
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000291#define opt_c_configFile (G.opt_c_configFile )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000292#define home_httpd (G.home_httpd )
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000293#define index_page (G.index_page )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000294#define found_mime_type (G.found_mime_type )
295#define found_moved_temporarily (G.found_moved_temporarily)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000296#define last_mod (G.last_mod )
297#define ip_a_d (G.ip_a_d )
298#define g_realm (G.g_realm )
299#define remoteuser (G.remoteuser )
300#define referer (G.referer )
301#define user_agent (G.user_agent )
Denis Vlasenko9d1d4c02008-11-22 20:29:35 +0000302#define host (G.host )
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +0000303#define http_accept (G.http_accept )
304#define http_accept_language (G.http_accept_language)
Denis Vlasenkof4310172007-09-21 22:35:18 +0000305#define file_size (G.file_size )
306#if ENABLE_FEATURE_HTTPD_RANGES
307#define range_start (G.range_start )
308#define range_end (G.range_end )
309#define range_len (G.range_len )
Denis Vlasenko1cbfd982009-02-04 23:43:44 +0000310#else
311enum {
312 range_start = 0,
313 range_end = MAXINT(off_t) - 1,
314 range_len = MAXINT(off_t),
315};
Denis Vlasenkof4310172007-09-21 22:35:18 +0000316#endif
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000317#define rmt_ip_str (G.rmt_ip_str )
318#define g_auth (G.g_auth )
319#define mime_a (G.mime_a )
320#define script_i (G.script_i )
321#define iobuf (G.iobuf )
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000322#define hdr_ptr (G.hdr_ptr )
323#define hdr_cnt (G.hdr_cnt )
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000324#define http_error_page (G.http_error_page )
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000325#define proxy (G.proxy )
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000326#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000327 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000328 IF_FEATURE_HTTPD_BASIC_AUTH(g_realm = "Web Server Authentication";) \
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000329 bind_addr_or_port = "80"; \
Denis Vlasenko1acb4ef2008-02-27 20:59:54 +0000330 index_page = "index.html"; \
Denis Vlasenkof4310172007-09-21 22:35:18 +0000331 file_size = -1; \
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000332} while (0)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000333
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000334
Denis Vlasenko0bb993f2006-11-21 00:06:28 +0000335#define STRNCASECMP(a, str) strncasecmp((a), (str), sizeof(str)-1)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000336
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000337/* Prototypes */
Denis Vlasenko2f518b02008-02-21 00:12:07 +0000338enum {
339 SEND_HEADERS = (1 << 0),
340 SEND_BODY = (1 << 1),
341 SEND_HEADERS_AND_BODY = SEND_HEADERS + SEND_BODY,
342};
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000343static void send_file_and_exit(const char *url, int what) NORETURN;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000344
Denis Vlasenko073214f2007-08-17 19:20:07 +0000345static void free_llist(has_next_ptr **pptr)
346{
347 has_next_ptr *cur = *pptr;
348 while (cur) {
349 has_next_ptr *t = cur;
350 cur = cur->next;
351 free(t);
352 }
353 *pptr = NULL;
354}
355
Denis Vlasenko073214f2007-08-17 19:20:07 +0000356static ALWAYS_INLINE void free_Htaccess_list(Htaccess **pptr)
357{
358 free_llist((has_next_ptr**)pptr);
359}
Denis Vlasenko073214f2007-08-17 19:20:07 +0000360
361static ALWAYS_INLINE void free_Htaccess_IP_list(Htaccess_IP **pptr)
362{
363 free_llist((has_next_ptr**)pptr);
364}
Glenn L McGrath06e95652003-02-09 06:51:14 +0000365
Denis Vlasenkod867f322007-08-19 21:15:42 +0000366/* Returns presumed mask width in bits or < 0 on error.
367 * Updates strp, stores IP at provided pointer */
368static int scan_ip(const char **strp, unsigned *ipp, unsigned char endc)
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000369{
Denis Vlasenkod867f322007-08-19 21:15:42 +0000370 const char *p = *strp;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000371 int auto_mask = 8;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000372 unsigned ip = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000373 int j;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000374
Denis Vlasenkod867f322007-08-19 21:15:42 +0000375 if (*p == '/')
376 return -auto_mask;
377
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000378 for (j = 0; j < 4; j++) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000379 unsigned octet;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000380
Denis Vlasenkod867f322007-08-19 21:15:42 +0000381 if ((*p < '0' || *p > '9') && *p != '/' && *p)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000382 return -auto_mask;
383 octet = 0;
384 while (*p >= '0' && *p <= '9') {
385 octet *= 10;
386 octet += *p - '0';
387 if (octet > 255)
388 return -auto_mask;
389 p++;
390 }
391 if (*p == '.')
392 p++;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000393 if (*p != '/' && *p)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000394 auto_mask += 8;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000395 ip = (ip << 8) | octet;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000396 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000397 if (*p) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000398 if (*p != endc)
399 return -auto_mask;
400 p++;
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000401 if (*p == '\0')
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000402 return -auto_mask;
403 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000404 *ipp = ip;
405 *strp = p;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000406 return auto_mask;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000407}
408
Denis Vlasenkod867f322007-08-19 21:15:42 +0000409/* Returns 0 on success. Stores IP and mask at provided pointers */
410static int scan_ip_mask(const char *str, unsigned *ipp, unsigned *maskp)
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000411{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000412 int i;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000413 unsigned mask;
414 char *p;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000415
Denis Vlasenkod867f322007-08-19 21:15:42 +0000416 i = scan_ip(&str, ipp, '/');
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000417 if (i < 0)
418 return i;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000419
Denis Vlasenkod867f322007-08-19 21:15:42 +0000420 if (*str) {
421 /* there is /xxx after dotted-IP address */
422 i = bb_strtou(str, &p, 10);
423 if (*p == '.') {
424 /* 'xxx' itself is dotted-IP mask, parse it */
425 /* (return 0 (success) only if it has N.N.N.N form) */
426 return scan_ip(&str, maskp, '\0') - 32;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000427 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000428 if (*p)
429 return -1;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000430 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000431
432 if (i > 32)
Denis Vlasenko92758142006-10-03 19:56:34 +0000433 return -1;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000434
435 if (sizeof(unsigned) == 4 && i == 32) {
436 /* mask >>= 32 below may not work */
437 mask = 0;
438 } else {
439 mask = 0xffffffff;
440 mask >>= i;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000441 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000442 /* i == 0 -> *maskp = 0x00000000
443 * i == 1 -> *maskp = 0x80000000
444 * i == 4 -> *maskp = 0xf0000000
445 * i == 31 -> *maskp = 0xfffffffe
446 * i == 32 -> *maskp = 0xffffffff */
447 *maskp = (uint32_t)(~mask);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000448 return 0;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000449}
450
Denis Vlasenko073214f2007-08-17 19:20:07 +0000451/*
452 * Parse configuration file into in-memory linked list.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000453 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000454 * Any previous IP rules are discarded.
455 * If the flag argument is not SUBDIR_PARSE then all /path and mime rules
456 * are also discarded. That is, previous settings are retained if flag is
457 * SUBDIR_PARSE.
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000458 * Error pages are only parsed on the main config file.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000459 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000460 * path Path where to look for httpd.conf (without filename).
461 * flag Type of the parse request.
462 */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000463/* flag param: */
464enum {
465 FIRST_PARSE = 0, /* path will be "/etc" */
466 SIGNALED_PARSE = 1, /* path will be "/etc" */
467 SUBDIR_PARSE = 2, /* path will be derived from URL */
468};
Glenn L McGrath06e95652003-02-09 06:51:14 +0000469static void parse_conf(const char *path, int flag)
470{
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000471 /* internally used extra flag state */
472 enum { TRY_CURDIR_PARSE = 3 };
473
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000474 FILE *f;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000475 const char *filename;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000476 char buf[160];
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000477
Denis Vlasenko073214f2007-08-17 19:20:07 +0000478 /* discard old rules */
479 free_Htaccess_IP_list(&ip_a_d);
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000480 flg_deny_all = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000481 /* retain previous auth and mime config only for subdir parse */
482 if (flag != SUBDIR_PARSE) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000483 free_Htaccess_list(&mime_a);
Denis Vlasenko55a99402006-09-30 20:41:44 +0000484#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko073214f2007-08-17 19:20:07 +0000485 free_Htaccess_list(&g_auth);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000486#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000487#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000488 free_Htaccess_list(&script_i);
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000489#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000490 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000491
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000492 filename = opt_c_configFile;
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000493 if (flag == SUBDIR_PARSE || filename == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000494 filename = alloca(strlen(path) + sizeof(HTTPD_CONF) + 2);
495 sprintf((char *)filename, "%s/%s", path, HTTPD_CONF);
Glenn L McGrath393183d2003-05-26 14:07:50 +0000496 }
497
Denis Vlasenko5415c852008-07-21 23:05:26 +0000498 while ((f = fopen_for_read(filename)) == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000499 if (flag >= SUBDIR_PARSE) { /* SUBDIR or TRY_CURDIR */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000500 /* config file not found, no changes to config */
501 return;
502 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000503 if (flag == FIRST_PARSE) {
504 /* -c CONFFILE given, but CONFFILE doesn't exist? */
505 if (opt_c_configFile)
506 bb_simple_perror_msg_and_die(opt_c_configFile);
507 /* else: no -c, thus we looked at /etc/httpd.conf,
508 * and it's not there. try ./httpd.conf: */
509 }
510 flag = TRY_CURDIR_PARSE;
511 filename = HTTPD_CONF;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000512 }
513
Denis Vlasenko55a99402006-09-30 20:41:44 +0000514#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000515 /* in "/file:user:pass" lines, we prepend path in subdirs */
516 if (flag != SUBDIR_PARSE)
517 path = "";
Glenn L McGrath06e95652003-02-09 06:51:14 +0000518#endif
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000519 /* The lines can be:
520 *
521 * I:default_index_file
522 * H:http_home
523 * [AD]:IP[/mask] # allow/deny, * for wildcard
524 * Ennn:error.html # error page for status nnn
525 * P:/url:[http://]hostname[:port]/new/path # reverse proxy
526 * .ext:mime/type # mime type
527 * *.php:/path/php # run xxx.php through an interpreter
528 * /file:user:pass # username and password
529 */
530 while (fgets(buf, sizeof(buf), f) != NULL) {
531 unsigned strlen_buf;
532 unsigned char ch;
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200533 char *after_colon;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000534
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000535 { /* remove all whitespace, and # comments */
536 char *p, *p0;
537
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200538 p0 = buf;
539 /* skip non-whitespace beginning. Often the whole line
540 * is non-whitespace. We want this case to work fast,
541 * without needless copying, therefore we don't merge
542 * this operation into next while loop. */
543 while ((ch = *p0) != '\0' && ch != '\n' && ch != '#'
544 && ch != ' ' && ch != '\t'
545 ) {
546 p0++;
547 }
548 p = p0;
549 /* if we enter this loop, we have some whitespace.
550 * discard it */
551 while (ch != '\0' && ch != '\n' && ch != '#') {
552 if (ch != ' ' && ch != '\t') {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000553 *p++ = ch;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000554 }
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200555 ch = *++p0;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000556 }
557 *p = '\0';
558 strlen_buf = p - buf;
Denis Vlasenko00643ca2009-04-22 13:52:22 +0000559 if (strlen_buf == 0)
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200560 continue; /* empty line */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000561 }
562
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200563 after_colon = strchr(buf, ':');
Denis Vlasenko00643ca2009-04-22 13:52:22 +0000564 /* strange line? */
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200565 if (after_colon == NULL || *++after_colon == '\0')
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000566 goto config_error;
567
568 ch = (buf[0] & ~0x20); /* toupper if it's a letter */
569
570 if (ch == 'I') {
571 index_page = xstrdup(after_colon);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000572 continue;
573 }
574
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000575 /* do not allow jumping around using H in subdir's configs */
576 if (flag == FIRST_PARSE && ch == 'H') {
577 home_httpd = xstrdup(after_colon);
578 xchdir(home_httpd);
579 continue;
580 }
581
582 if (ch == 'A' || ch == 'D') {
583 Htaccess_IP *pip;
584
585 if (*after_colon == '*') {
586 if (ch == 'D') {
587 /* memorize "deny all" */
588 flg_deny_all = 1;
589 }
590 /* skip assumed "A:*", it is a default anyway */
591 continue;
592 }
593 /* store "allow/deny IP/mask" line */
594 pip = xzalloc(sizeof(*pip));
595 if (scan_ip_mask(after_colon, &pip->ip, &pip->mask)) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000596 /* IP{/mask} syntax error detected, protect all */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000597 ch = 'D';
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000598 pip->mask = 0;
599 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000600 pip->allow_deny = ch;
601 if (ch == 'D') {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000602 /* Deny:from_IP - prepend */
603 pip->next = ip_a_d;
604 ip_a_d = pip;
605 } else {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000606 /* A:from_IP - append (thus all D's precedes A's) */
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000607 Htaccess_IP *prev_IP = ip_a_d;
608 if (prev_IP == NULL) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000609 ip_a_d = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000610 } else {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000611 while (prev_IP->next)
612 prev_IP = prev_IP->next;
613 prev_IP->next = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000614 }
615 }
616 continue;
617 }
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000618
619#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000620 if (flag == FIRST_PARSE && ch == 'E') {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000621 unsigned i;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000622 int status = atoi(buf + 1); /* error status code */
623
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000624 if (status < HTTP_CONTINUE) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000625 goto config_error;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000626 }
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000627 /* then error page; find matching status */
628 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
629 if (http_response_type[i] == status) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000630 /* We chdir to home_httpd, thus no need to
631 * concat_path_file(home_httpd, after_colon)
632 * here */
633 http_error_page[i] = xstrdup(after_colon);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000634 break;
635 }
636 }
637 continue;
638 }
639#endif
640
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000641#if ENABLE_FEATURE_HTTPD_PROXY
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000642 if (flag == FIRST_PARSE && ch == 'P') {
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000643 /* P:/url:[http://]hostname[:port]/new/path */
644 char *url_from, *host_port, *url_to;
645 Htaccess_Proxy *proxy_entry;
646
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000647 url_from = after_colon;
648 host_port = strchr(after_colon, ':');
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000649 if (host_port == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000650 goto config_error;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000651 }
652 *host_port++ = '\0';
653 if (strncmp(host_port, "http://", 7) == 0)
Denis Vlasenko78ee7c82007-10-21 23:24:42 +0000654 host_port += 7;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000655 if (*host_port == '\0') {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000656 goto config_error;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000657 }
658 url_to = strchr(host_port, '/');
659 if (url_to == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000660 goto config_error;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000661 }
662 *url_to = '\0';
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000663 proxy_entry = xzalloc(sizeof(*proxy_entry));
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000664 proxy_entry->url_from = xstrdup(url_from);
665 proxy_entry->host_port = xstrdup(host_port);
666 *url_to = '/';
667 proxy_entry->url_to = xstrdup(url_to);
668 proxy_entry->next = proxy;
669 proxy = proxy_entry;
670 continue;
671 }
672#endif
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000673 /* the rest of directives are non-alphabetic,
674 * must avoid using "toupper'ed" ch */
675 ch = buf[0];
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000676
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000677 if (ch == '.' /* ".ext:mime/type" */
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000678#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000679 || (ch == '*' && buf[1] == '.') /* "*.php:/path/php" */
680#endif
681 ) {
682 char *p;
683 Htaccess *cur;
684
685 cur = xzalloc(sizeof(*cur) /* includes space for NUL */ + strlen_buf);
686 strcpy(cur->before_colon, buf);
687 p = cur->before_colon + (after_colon - buf);
688 p[-1] = '\0';
689 cur->after_colon = p;
690 if (ch == '.') {
691 /* .mime line: prepend to mime_a list */
692 cur->next = mime_a;
693 mime_a = cur;
694 }
695#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
696 else {
697 /* script interpreter line: prepend to script_i list */
698 cur->next = script_i;
699 script_i = cur;
700 }
701#endif
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000702 continue;
703 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000704
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000705#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
706 if (ch == '/') { /* "/file:user:pass" */
707 char *p;
708 Htaccess *cur;
709 unsigned file_len;
710
711 /* note: path is "" unless we are in SUBDIR parse,
Denis Vlasenkoc8d71092009-04-22 14:16:59 +0000712 * otherwise it does NOT start with "/" */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000713 cur = xzalloc(sizeof(*cur) /* includes space for NUL */
Denis Vlasenkoc8d71092009-04-22 14:16:59 +0000714 + 1 + strlen(path)
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000715 + strlen_buf
716 );
717 /* form "/path/file" */
Denis Vlasenkoc8d71092009-04-22 14:16:59 +0000718 sprintf(cur->before_colon, "/%s%.*s",
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000719 path,
720 after_colon - buf - 1, /* includes "/", but not ":" */
721 buf);
722 /* canonicalize it */
723 p = bb_simplify_abs_path_inplace(cur->before_colon);
724 file_len = p - cur->before_colon;
725 /* add "user:pass" after NUL */
726 strcpy(++p, after_colon);
727 cur->after_colon = p;
728
729 /* insert cur into g_auth */
730 /* g_auth is sorted by decreased filename length */
731 {
732 Htaccess *auth, **authp;
733
734 authp = &g_auth;
735 while ((auth = *authp) != NULL) {
736 if (file_len >= strlen(auth->before_colon)) {
737 /* insert cur before auth */
738 cur->next = auth;
739 break;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000740 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000741 authp = &auth->next;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000742 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000743 *authp = cur;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000744 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000745 continue;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000746 }
747#endif /* BASIC_AUTH */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000748
749 /* the line is not recognized */
750 config_error:
751 bb_error_msg("config error '%s' in '%s'", buf, filename);
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000752 } /* while (fgets) */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000753
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000754 fclose(f);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000755}
756
Denis Vlasenko55a99402006-09-30 20:41:44 +0000757#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000758/*
759 * Given a string, html-encode special characters.
760 * This is used for the -e command line option to provide an easy way
761 * for scripts to encode result data without confusing browsers. The
762 * returned string pointer is memory allocated by malloc().
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000763 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000764 * Returns a pointer to the encoded string (malloced).
765 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000766static char *encodeString(const char *string)
767{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000768 /* take the simple route and encode everything */
769 /* could possibly scan once to get length. */
770 int len = strlen(string);
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000771 char *out = xmalloc(len * 6 + 1);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000772 char *p = out;
773 char ch;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000774
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000775 while ((ch = *string++)) {
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000776 /* very simple check for what to encode */
777 if (isalnum(ch))
778 *p++ = ch;
779 else
780 p += sprintf(p, "&#%d;", (unsigned char) ch);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000781 }
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000782 *p = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000783 return out;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000784}
Denis Vlasenkob3a07152006-11-16 18:04:43 +0000785#endif /* FEATURE_HTTPD_ENCODE_URL_STR */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000786
Denis Vlasenko073214f2007-08-17 19:20:07 +0000787/*
788 * Given a URL encoded string, convert it to plain ascii.
789 * Since decoding always makes strings smaller, the decode is done in-place.
Denis Vlasenkoc4523c22008-03-28 02:24:59 +0000790 * Thus, callers should xstrdup() the argument if they do not want the
Denis Vlasenko073214f2007-08-17 19:20:07 +0000791 * argument modified. The return is the original pointer, allowing this
792 * function to be easily used as arguments to other functions.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000793 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000794 * string The first string to decode.
795 * option_d 1 if called for httpd -d
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000796 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000797 * Returns a pointer to the decoded string (same as input).
798 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000799static unsigned hex_to_bin(unsigned char c)
800{
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000801 unsigned v;
802
803 v = c - '0';
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000804 if (v <= 9)
805 return v;
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000806 /* c | 0x20: letters to lower case, non-letters
807 * to (potentially different) non-letters */
808 v = (unsigned)(c | 0x20) - 'a';
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000809 if (v <= 5)
810 return v + 10;
811 return ~0;
812}
813/* For testing:
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000814void t(char c) { printf("'%c'(%u) %u\n", c, c, hex_to_bin(c)); }
815int main() { t(0x10); t(0x20); t('0'); t('9'); t('A'); t('F'); t('a'); t('f');
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000816t('0'-1); t('9'+1); t('A'-1); t('F'+1); t('a'-1); t('f'+1); return 0; }
817*/
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000818static char *decodeString(char *orig, int option_d)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000819{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000820 /* note that decoded string is always shorter than original */
821 char *string = orig;
822 char *ptr = string;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000823 char c;
Eric Andersena3bb3e62003-06-26 09:05:32 +0000824
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000825 while ((c = *ptr++) != '\0') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000826 unsigned v;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000827
828 if (option_d && c == '+') {
Denis Vlasenko601ae132006-11-28 23:37:46 +0000829 *string++ = ' ';
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000830 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000831 }
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000832 if (c != '%') {
833 *string++ = c;
834 continue;
835 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000836 v = hex_to_bin(ptr[0]);
837 if (v > 15) {
838 bad_hex:
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000839 if (!option_d)
840 return NULL;
841 *string++ = '%';
842 continue;
843 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000844 v = (v * 16) | hex_to_bin(ptr[1]);
845 if (v > 255)
846 goto bad_hex;
847 if (!option_d && (v == '/' || v == '\0')) {
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000848 /* caller takes it as indication of invalid
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000849 * (dangerous wrt exploits) chars */
850 return orig + 1;
851 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000852 *string++ = v;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000853 ptr += 2;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000854 }
855 *string = '\0';
856 return orig;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000857}
858
Denis Vlasenko55a99402006-09-30 20:41:44 +0000859#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000860/*
Denis Vlasenko073214f2007-08-17 19:20:07 +0000861 * Decode a base64 data stream as per rfc1521.
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000862 * Note that the rfc states that non base64 chars are to be ignored.
Denis Vlasenko073214f2007-08-17 19:20:07 +0000863 * Since the decode always results in a shorter size than the input,
864 * it is OK to pass the input arg as an output arg.
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000865 * Parameter: a pointer to a base64 encoded string.
866 * Decoded data is stored in-place.
867 */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000868static void decodeBase64(char *Data)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000869{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000870 const unsigned char *in = (const unsigned char *)Data;
Denis Vlasenko37c33162007-08-19 18:54:22 +0000871 /* The decoded size will be at most 3/4 the size of the encoded */
Denis Vlasenko088b9592007-04-18 21:14:46 +0000872 unsigned ch = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000873 int i = 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000874
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000875 while (*in) {
876 int t = *in++;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000877
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000878 if (t >= '0' && t <= '9')
879 t = t - '0' + 52;
880 else if (t >= 'A' && t <= 'Z')
881 t = t - 'A';
882 else if (t >= 'a' && t <= 'z')
883 t = t - 'a' + 26;
884 else if (t == '+')
885 t = 62;
886 else if (t == '/')
887 t = 63;
888 else if (t == '=')
889 t = 0;
890 else
891 continue;
Glenn L McGrath874e3382003-05-14 12:11:36 +0000892
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000893 ch = (ch << 6) | t;
894 i++;
895 if (i == 4) {
896 *Data++ = (char) (ch >> 16);
897 *Data++ = (char) (ch >> 8);
898 *Data++ = (char) ch;
899 i = 0;
900 }
901 }
Denis Vlasenko088b9592007-04-18 21:14:46 +0000902 *Data = '\0';
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000903}
904#endif
905
Denis Vlasenko073214f2007-08-17 19:20:07 +0000906/*
907 * Create a listen server socket on the designated port.
908 */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000909static int openServer(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000910{
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000911 unsigned n = bb_strtou(bind_addr_or_port, NULL, 10);
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000912 if (!errno && n && n <= 0xffff)
913 n = create_and_bind_stream_or_die(NULL, n);
914 else
915 n = create_and_bind_stream_or_die(bind_addr_or_port, 80);
916 xlisten(n, 9);
917 return n;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000918}
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000919
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000920/*
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000921 * Log the connection closure and exit.
922 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000923static void log_and_exit(void) NORETURN;
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000924static void log_and_exit(void)
925{
Denis Vlasenko921799d2007-08-19 19:28:09 +0000926 /* Paranoia. IE said to be buggy. It may send some extra data
927 * or be confused by us just exiting without SHUT_WR. Oh well. */
928 shutdown(1, SHUT_WR);
Denis Vlasenkofaf334a2008-05-18 15:14:36 +0000929 /* Why??
930 (this also messes up stdin when user runs httpd -i from terminal)
Denis Vlasenko921799d2007-08-19 19:28:09 +0000931 ndelay_on(0);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000932 while (read(STDIN_FILENO, iobuf, IOBUF_SIZE) > 0)
Denis Vlasenko921799d2007-08-19 19:28:09 +0000933 continue;
Denis Vlasenkofaf334a2008-05-18 15:14:36 +0000934 */
Denis Vlasenko921799d2007-08-19 19:28:09 +0000935
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000936 if (verbose > 2)
937 bb_error_msg("closed");
938 _exit(xfunc_error_retval);
939}
940
941/*
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000942 * Create and send HTTP response headers.
943 * The arguments are combined and sent as one write operation. Note that
944 * IE will puke big-time if the headers are not sent in one packet and the
945 * second packet is delayed for any reason.
946 * responseNum - the result code to send.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000947 */
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000948static void send_headers(int responseNum)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000949{
Denis Vlasenko073214f2007-08-17 19:20:07 +0000950 static const char RFC1123FMT[] ALIGN1 = "%a, %d %b %Y %H:%M:%S GMT";
951
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000952 const char *responseString = "";
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000953 const char *infoString = NULL;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000954 const char *mime_type;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000955#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko2f518b02008-02-21 00:12:07 +0000956 const char *error_page = NULL;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000957#endif
Denis Vlasenkob64eed62007-01-14 17:06:11 +0000958 unsigned i;
Denis Vlasenko04158e02009-02-02 10:48:06 +0000959 time_t timer = time(NULL);
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000960 char tmp_str[80];
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000961 int len;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000962
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000963 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
964 if (http_response_type[i] == responseNum) {
965 responseString = http_response[i].name;
966 infoString = http_response[i].info;
967#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
968 error_page = http_error_page[i];
969#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000970 break;
971 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000972 }
973 /* error message is HTML */
974 mime_type = responseNum == HTTP_OK ?
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000975 found_mime_type : "text/html";
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000976
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000977 if (verbose)
Denis Vlasenko241b1562007-08-17 19:18:47 +0000978 bb_error_msg("response:%u", responseNum);
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000979
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000980 /* emit the current date */
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000981 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&timer));
982 len = sprintf(iobuf,
Denis Vlasenko69981422007-01-07 21:25:12 +0000983 "HTTP/1.0 %d %s\r\nContent-type: %s\r\n"
984 "Date: %s\r\nConnection: close\r\n",
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000985 responseNum, responseString, mime_type, tmp_str);
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000986
Denis Vlasenko55a99402006-09-30 20:41:44 +0000987#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000988 if (responseNum == HTTP_UNAUTHORIZED) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000989 len += sprintf(iobuf + len,
Denis Vlasenko8e858e22007-03-07 09:35:43 +0000990 "WWW-Authenticate: Basic realm=\"%s\"\r\n",
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000991 g_realm);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000992 }
Glenn L McGrath3d2405c2003-02-10 22:28:21 +0000993#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000994 if (responseNum == HTTP_MOVED_TEMPORARILY) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000995 len += sprintf(iobuf + len, "Location: %s/%s%s\r\n",
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000996 found_moved_temporarily,
997 (g_query ? "?" : ""),
998 (g_query ? g_query : ""));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000999 }
Eric Andersen07f2fea2004-10-08 08:03:29 +00001000
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001001#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001002 if (error_page && access(error_page, R_OK) == 0) {
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001003 strcat(iobuf, "\r\n");
1004 len += 2;
1005
1006 if (DEBUG)
1007 fprintf(stderr, "headers: '%s'\n", iobuf);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001008 full_write(STDOUT_FILENO, iobuf, len);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001009 if (DEBUG)
1010 fprintf(stderr, "writing error page: '%s'\n", error_page);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001011 return send_file_and_exit(error_page, SEND_BODY);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001012 }
1013#endif
1014
Denis Vlasenkof4310172007-09-21 22:35:18 +00001015 if (file_size != -1) { /* file */
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001016 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&last_mod));
Denis Vlasenkof4310172007-09-21 22:35:18 +00001017#if ENABLE_FEATURE_HTTPD_RANGES
1018 if (responseNum == HTTP_PARTIAL_CONTENT) {
1019 len += sprintf(iobuf + len, "Content-Range: bytes %"OFF_FMT"d-%"OFF_FMT"d/%"OFF_FMT"d\r\n",
1020 range_start,
1021 range_end,
1022 file_size);
1023 file_size = range_end - range_start + 1;
1024 }
1025#endif
1026 len += sprintf(iobuf + len,
1027#if ENABLE_FEATURE_HTTPD_RANGES
1028 "Accept-Ranges: bytes\r\n"
1029#endif
1030 "Last-Modified: %s\r\n%s %"OFF_FMT"d\r\n",
1031 tmp_str,
1032 "Content-length:",
1033 file_size
1034 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001035 }
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001036 iobuf[len++] = '\r';
1037 iobuf[len++] = '\n';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001038 if (infoString) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001039 len += sprintf(iobuf + len,
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001040 "<HTML><HEAD><TITLE>%d %s</TITLE></HEAD>\n"
1041 "<BODY><H1>%d %s</H1>\n%s\n</BODY></HTML>\n",
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001042 responseNum, responseString,
1043 responseNum, responseString, infoString);
1044 }
Denis Vlasenko6c85ddc2006-11-21 00:08:39 +00001045 if (DEBUG)
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001046 fprintf(stderr, "headers: '%s'\n", iobuf);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001047 if (full_write(STDOUT_FILENO, iobuf, len) != len) {
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001048 if (verbose > 1)
1049 bb_perror_msg("error");
1050 log_and_exit();
1051 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001052}
1053
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001054static void send_headers_and_exit(int responseNum) NORETURN;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001055static void send_headers_and_exit(int responseNum)
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001056{
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001057 send_headers(responseNum);
1058 log_and_exit();
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001059}
1060
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001061/*
1062 * Read from the socket until '\n' or EOF. '\r' chars are removed.
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001063 * '\n' is replaced with NUL.
1064 * Return number of characters read or 0 if nothing is read
1065 * ('\r' and '\n' are not counted).
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001066 * Data is returned in iobuf.
1067 */
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001068static int get_line(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001069{
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001070 int count = 0;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001071 char c;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001072
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001073 alarm(HEADER_READ_TIMEOUT);
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001074 while (1) {
1075 if (hdr_cnt <= 0) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001076 hdr_cnt = safe_read(STDIN_FILENO, hdr_buf, sizeof(hdr_buf));
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001077 if (hdr_cnt <= 0)
1078 break;
1079 hdr_ptr = hdr_buf;
1080 }
1081 iobuf[count] = c = *hdr_ptr++;
1082 hdr_cnt--;
1083
1084 if (c == '\r')
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001085 continue;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001086 if (c == '\n') {
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001087 iobuf[count] = '\0';
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001088 break;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001089 }
Denis Vlasenko921799d2007-08-19 19:28:09 +00001090 if (count < (IOBUF_SIZE - 1)) /* check overflow */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001091 count++;
1092 }
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001093 return count;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001094}
1095
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001096#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001097
1098/* gcc 4.2.1 fares better with NOINLINE */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001099static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len) NORETURN;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001100static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len)
1101{
1102 enum { FROM_CGI = 1, TO_CGI = 2 }; /* indexes in pfd[] */
1103 struct pollfd pfd[3];
1104 int out_cnt; /* we buffer a bit of initial CGI output */
1105 int count;
1106
1107 /* iobuf is used for CGI -> network data,
1108 * hdr_buf is for network -> CGI data (POSTDATA) */
1109
1110 /* If CGI dies, we still want to correctly finish reading its output
1111 * and send it to the peer. So please no SIGPIPEs! */
1112 signal(SIGPIPE, SIG_IGN);
1113
Denis Vlasenko4a457562007-10-14 02:34:20 +00001114 // We inconsistently handle a case when more POSTDATA from network
1115 // is coming than we expected. We may give *some part* of that
1116 // extra data to CGI.
1117
1118 //if (hdr_cnt > post_len) {
1119 // /* We got more POSTDATA from network than we expected */
1120 // hdr_cnt = post_len;
1121 //}
1122 post_len -= hdr_cnt;
1123 /* post_len - number of POST bytes not yet read from network */
1124
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001125 /* NB: breaking out of this loop jumps to log_and_exit() */
1126 out_cnt = 0;
1127 while (1) {
1128 memset(pfd, 0, sizeof(pfd));
1129
1130 pfd[FROM_CGI].fd = fromCgi_rd;
1131 pfd[FROM_CGI].events = POLLIN;
1132
1133 if (toCgi_wr) {
1134 pfd[TO_CGI].fd = toCgi_wr;
1135 if (hdr_cnt > 0) {
1136 pfd[TO_CGI].events = POLLOUT;
1137 } else if (post_len > 0) {
1138 pfd[0].events = POLLIN;
1139 } else {
1140 /* post_len <= 0 && hdr_cnt <= 0:
1141 * no more POST data to CGI,
1142 * let CGI see EOF on CGI's stdin */
1143 close(toCgi_wr);
1144 toCgi_wr = 0;
1145 }
1146 }
1147
1148 /* Now wait on the set of sockets */
Denis Vlasenko5d61e712007-09-27 10:09:59 +00001149 count = safe_poll(pfd, 3, -1);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001150 if (count <= 0) {
1151#if 0
Denis Vlasenkofb0eba72008-01-02 19:55:04 +00001152 if (safe_waitpid(pid, &status, WNOHANG) <= 0) {
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001153 /* Weird. CGI didn't exit and no fd's
1154 * are ready, yet poll returned?! */
1155 continue;
1156 }
1157 if (DEBUG && WIFEXITED(status))
1158 bb_error_msg("CGI exited, status=%d", WEXITSTATUS(status));
1159 if (DEBUG && WIFSIGNALED(status))
1160 bb_error_msg("CGI killed, signal=%d", WTERMSIG(status));
1161#endif
1162 break;
1163 }
1164
1165 if (pfd[TO_CGI].revents) {
1166 /* hdr_cnt > 0 here due to the way pfd[TO_CGI].events set */
1167 /* Have data from peer and can write to CGI */
1168 count = safe_write(toCgi_wr, hdr_ptr, hdr_cnt);
1169 /* Doesn't happen, we dont use nonblocking IO here
1170 *if (count < 0 && errno == EAGAIN) {
1171 * ...
1172 *} else */
1173 if (count > 0) {
1174 hdr_ptr += count;
1175 hdr_cnt -= count;
1176 } else {
1177 /* EOF/broken pipe to CGI, stop piping POST data */
1178 hdr_cnt = post_len = 0;
1179 }
1180 }
1181
1182 if (pfd[0].revents) {
1183 /* post_len > 0 && hdr_cnt == 0 here */
1184 /* We expect data, prev data portion is eaten by CGI
1185 * and there *is* data to read from the peer
1186 * (POSTDATA) */
1187 //count = post_len > (int)sizeof(hdr_buf) ? (int)sizeof(hdr_buf) : post_len;
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001188 //count = safe_read(STDIN_FILENO, hdr_buf, count);
1189 count = safe_read(STDIN_FILENO, hdr_buf, sizeof(hdr_buf));
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001190 if (count > 0) {
1191 hdr_cnt = count;
1192 hdr_ptr = hdr_buf;
1193 post_len -= count;
1194 } else {
1195 /* no more POST data can be read */
1196 post_len = 0;
1197 }
1198 }
1199
1200 if (pfd[FROM_CGI].revents) {
1201 /* There is something to read from CGI */
1202 char *rbuf = iobuf;
1203
1204 /* Are we still buffering CGI output? */
1205 if (out_cnt >= 0) {
1206 /* HTTP_200[] has single "\r\n" at the end.
1207 * According to http://hoohoo.ncsa.uiuc.edu/cgi/out.html,
1208 * CGI scripts MUST send their own header terminated by
1209 * empty line, then data. That's why we have only one
1210 * <cr><lf> pair here. We will output "200 OK" line
1211 * if needed, but CGI still has to provide blank line
1212 * between header and body */
1213
1214 /* Must use safe_read, not full_read, because
1215 * CGI may output a few first bytes and then wait
1216 * for POSTDATA without closing stdout.
1217 * With full_read we may wait here forever. */
1218 count = safe_read(fromCgi_rd, rbuf + out_cnt, PIPE_BUF - 8);
1219 if (count <= 0) {
1220 /* eof (or error) and there was no "HTTP",
1221 * so write it, then write received data */
1222 if (out_cnt) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001223 full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1);
1224 full_write(STDOUT_FILENO, rbuf, out_cnt);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001225 }
1226 break; /* CGI stdout is closed, exiting */
1227 }
1228 out_cnt += count;
1229 count = 0;
1230 /* "Status" header format is: "Status: 302 Redirected\r\n" */
1231 if (out_cnt >= 8 && memcmp(rbuf, "Status: ", 8) == 0) {
1232 /* send "HTTP/1.0 " */
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001233 if (full_write(STDOUT_FILENO, HTTP_200, 9) != 9)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001234 break;
1235 rbuf += 8; /* skip "Status: " */
1236 count = out_cnt - 8;
1237 out_cnt = -1; /* buffering off */
1238 } else if (out_cnt >= 4) {
1239 /* Did CGI add "HTTP"? */
1240 if (memcmp(rbuf, HTTP_200, 4) != 0) {
1241 /* there is no "HTTP", do it ourself */
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001242 if (full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1) != sizeof(HTTP_200)-1)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001243 break;
1244 }
1245 /* Commented out:
1246 if (!strstr(rbuf, "ontent-")) {
1247 full_write(s, "Content-type: text/plain\r\n\r\n", 28);
1248 }
1249 * Counter-example of valid CGI without Content-type:
1250 * echo -en "HTTP/1.0 302 Found\r\n"
1251 * echo -en "Location: http://www.busybox.net\r\n"
1252 * echo -en "\r\n"
1253 */
1254 count = out_cnt;
1255 out_cnt = -1; /* buffering off */
1256 }
1257 } else {
1258 count = safe_read(fromCgi_rd, rbuf, PIPE_BUF);
1259 if (count <= 0)
1260 break; /* eof (or error) */
1261 }
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001262 if (full_write(STDOUT_FILENO, rbuf, count) != count)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001263 break;
1264 if (DEBUG)
1265 fprintf(stderr, "cgi read %d bytes: '%.*s'\n", count, count, rbuf);
1266 } /* if (pfd[FROM_CGI].revents) */
1267 } /* while (1) */
1268 log_and_exit();
1269}
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001270#endif
1271
1272#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001273
Denis Vlasenko921799d2007-08-19 19:28:09 +00001274static void setenv1(const char *name, const char *value)
1275{
1276 setenv(name, value ? value : "", 1);
1277}
1278
Denis Vlasenko241b1562007-08-17 19:18:47 +00001279/*
1280 * Spawn CGI script, forward CGI's stdin/out <=> network
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001281 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001282 * Environment variables are set up and the script is invoked with pipes
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001283 * for stdin/stdout. If a POST is being done the script is fed the POST
Denis Vlasenko241b1562007-08-17 19:18:47 +00001284 * data in addition to setting the QUERY_STRING variable (for GETs or POSTs).
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001285 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001286 * Parameters:
1287 * const char *url The requested URL (with leading /).
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001288 * int post_len Length of the POST body.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001289 * const char *cookie For set HTTP_COOKIE.
1290 * const char *content_type For set CONTENT_TYPE.
1291 */
1292static void send_cgi_and_exit(
1293 const char *url,
1294 const char *request,
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001295 int post_len,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001296 const char *cookie,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001297 const char *content_type) NORETURN;
Denis Vlasenko241b1562007-08-17 19:18:47 +00001298static void send_cgi_and_exit(
1299 const char *url,
1300 const char *request,
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001301 int post_len,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001302 const char *cookie,
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001303 const char *content_type)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001304{
Denis Vlasenko37188322008-02-16 13:20:56 +00001305 struct fd_pair fromCgi; /* CGI -> httpd pipe */
1306 struct fd_pair toCgi; /* httpd -> CGI pipe */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001307 char *script;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001308 int pid;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001309
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001310 /* Make a copy. NB: caller guarantees:
1311 * url[0] == '/', url[1] != '/' */
1312 url = xstrdup(url);
1313
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001314 /*
1315 * We are mucking with environment _first_ and then vfork/exec,
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001316 * this allows us to use vfork safely. Parent doesn't care about
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001317 * these environment changes anyway.
1318 */
1319
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001320 /* Check for [dirs/]script.cgi/PATH_INFO */
1321 script = (char*)url;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001322 while ((script = strchr(script + 1, '/')) != NULL) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001323 struct stat sb;
1324
1325 *script = '\0';
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001326 if (!is_directory(url + 1, 1, &sb)) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001327 /* not directory, found script.cgi/PATH_INFO */
1328 *script = '/';
1329 break;
1330 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001331 *script = '/'; /* is directory, find next '/' */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001332 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001333 setenv1("PATH_INFO", script); /* set to /PATH_INFO or "" */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001334 setenv1("REQUEST_METHOD", request);
1335 if (g_query) {
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001336 putenv(xasprintf("%s=%s?%s", "REQUEST_URI", url, g_query));
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001337 } else {
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001338 setenv1("REQUEST_URI", url);
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001339 }
1340 if (script != NULL)
1341 *script = '\0'; /* cut off /PATH_INFO */
1342
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001343 /* SCRIPT_FILENAME is required by PHP in CGI mode */
1344 if (home_httpd[0] == '/') {
1345 char *fullpath = concat_path_file(home_httpd, url);
1346 setenv1("SCRIPT_FILENAME", fullpath);
1347 }
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001348 /* set SCRIPT_NAME as full path: /cgi-bin/dirs/script.cgi */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001349 setenv1("SCRIPT_NAME", url);
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001350 /* http://hoohoo.ncsa.uiuc.edu/cgi/env.html:
1351 * QUERY_STRING: The information which follows the ? in the URL
1352 * which referenced this script. This is the query information.
1353 * It should not be decoded in any fashion. This variable
1354 * should always be set when there is query information,
1355 * regardless of command line decoding. */
1356 /* (Older versions of bbox seem to do some decoding) */
1357 setenv1("QUERY_STRING", g_query);
1358 putenv((char*)"SERVER_SOFTWARE=busybox httpd/"BB_VER);
1359 putenv((char*)"SERVER_PROTOCOL=HTTP/1.0");
1360 putenv((char*)"GATEWAY_INTERFACE=CGI/1.1");
1361 /* Having _separate_ variables for IP and port defeats
1362 * the purpose of having socket abstraction. Which "port"
1363 * are you using on Unix domain socket?
1364 * IOW - REMOTE_PEER="1.2.3.4:56" makes much more sense.
1365 * Oh well... */
1366 {
1367 char *p = rmt_ip_str ? rmt_ip_str : (char*)"";
1368 char *cp = strrchr(p, ':');
1369 if (ENABLE_FEATURE_IPV6 && cp && strchr(cp, ']'))
1370 cp = NULL;
1371 if (cp) *cp = '\0'; /* delete :PORT */
1372 setenv1("REMOTE_ADDR", p);
Denis Vlasenko37c33162007-08-19 18:54:22 +00001373 if (cp) {
1374 *cp = ':';
1375#if ENABLE_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
1376 setenv1("REMOTE_PORT", cp + 1);
1377#endif
1378 }
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001379 }
1380 setenv1("HTTP_USER_AGENT", user_agent);
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +00001381 if (http_accept)
1382 setenv1("HTTP_ACCEPT", http_accept);
1383 if (http_accept_language)
1384 setenv1("HTTP_ACCEPT_LANGUAGE", http_accept_language);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001385 if (post_len)
1386 putenv(xasprintf("CONTENT_LENGTH=%d", post_len));
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001387 if (cookie)
1388 setenv1("HTTP_COOKIE", cookie);
1389 if (content_type)
1390 setenv1("CONTENT_TYPE", content_type);
1391#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1392 if (remoteuser) {
1393 setenv1("REMOTE_USER", remoteuser);
1394 putenv((char*)"AUTH_TYPE=Basic");
1395 }
1396#endif
1397 if (referer)
1398 setenv1("HTTP_REFERER", referer);
Denis Vlasenko9d1d4c02008-11-22 20:29:35 +00001399 setenv1("HTTP_HOST", host); /* set to "" if NULL */
Denis Vlasenkocbb4e612009-03-18 20:00:46 +00001400 /* setenv1("SERVER_NAME", safe_gethostname()); - don't do this,
1401 * just run "env SERVER_NAME=xyz httpd ..." instead */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001402
Denis Vlasenko37188322008-02-16 13:20:56 +00001403 xpiped_pair(fromCgi);
1404 xpiped_pair(toCgi);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001405
Denis Vlasenko80281fe2007-03-07 22:16:38 +00001406 pid = vfork();
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001407 if (pid < 0) {
1408 /* TODO: log perror? */
1409 log_and_exit();
1410 }
Denis Vlasenkof7996f32007-01-11 17:20:00 +00001411
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001412 if (!pid) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001413 /* Child process */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001414 char *argv[3];
1415
Denis Vlasenko241b1562007-08-17 19:18:47 +00001416 xfunc_error_retval = 242;
1417
Denis Vlasenko284d0fa2008-02-16 13:18:17 +00001418 /* NB: close _first_, then move fds! */
1419 close(toCgi.wr);
1420 close(fromCgi.rd);
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001421 xmove_fd(toCgi.rd, 0); /* replace stdin with the pipe */
1422 xmove_fd(fromCgi.wr, 1); /* replace stdout with the pipe */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001423 /* User seeing stderr output can be a security problem.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001424 * If CGI really wants that, it can always do dup itself. */
Denis Vlasenko1ec15cd2007-08-11 20:20:43 +00001425 /* dup2(1, 2); */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001426
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001427 /* Chdiring to script's dir */
1428 script = strrchr(url, '/');
1429 if (script != url) { /* paranoia */
1430 *script = '\0';
1431 if (chdir(url + 1) != 0) {
1432 bb_perror_msg("chdir %s", url + 1);
1433 goto error_execing_cgi;
1434 }
1435 // not needed: *script = '/';
1436 }
1437 script++;
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001438
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001439 /* set argv[0] to name without path */
1440 argv[0] = script;
1441 argv[1] = NULL;
Denis Vlasenkofc213052008-02-11 16:26:22 +00001442
1443#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001444 {
1445 char *suffix = strrchr(script, '.');
Denis Vlasenkofc213052008-02-11 16:26:22 +00001446
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001447 if (suffix) {
1448 Htaccess *cur;
1449 for (cur = script_i; cur; cur = cur->next) {
1450 if (strcmp(cur->before_colon + 1, suffix) == 0) {
1451 /* found interpreter name */
1452 argv[0] = cur->after_colon;
1453 argv[1] = script;
1454 argv[2] = NULL;
1455 break;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001456 }
1457 }
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001458 }
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001459 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001460#endif
1461 /* restore default signal dispositions for CGI process */
1462 bb_signals(0
1463 | (1 << SIGCHLD)
1464 | (1 << SIGPIPE)
1465 | (1 << SIGHUP)
1466 , SIG_DFL);
1467
1468 /* _NOT_ execvp. We do not search PATH. argv[0] is a filename
1469 * without any dir components and will only match a file
1470 * in the current directory */
1471 execv(argv[0], argv);
1472 if (verbose)
1473 bb_perror_msg("exec %s", argv[0]);
1474 error_execing_cgi:
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001475 /* send to stdout
1476 * (we are CGI here, our stdout is pumped to the net) */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001477 send_headers_and_exit(HTTP_NOT_FOUND);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001478 } /* end child */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001479
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001480 /* Parent process */
1481
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001482 /* Restore variables possibly changed by child */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001483 xfunc_error_retval = 0;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001484
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001485 /* Pump data */
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001486 close(fromCgi.wr);
1487 close(toCgi.rd);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001488 cgi_io_loop_and_exit(fromCgi.rd, toCgi.wr, post_len);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001489}
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001490
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001491#endif /* FEATURE_HTTPD_CGI */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001492
Denis Vlasenko241b1562007-08-17 19:18:47 +00001493/*
1494 * Send a file response to a HTTP request, and exit
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00001495 *
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001496 * Parameters:
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001497 * const char *url The requested URL (with leading /).
1498 * what What to send (headers/body/both).
Denis Vlasenko241b1562007-08-17 19:18:47 +00001499 */
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001500static NOINLINE void send_file_and_exit(const char *url, int what)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001501{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001502 static const char *const suffixTable[] = {
1503 /* Warning: shorter equivalent suffix in one line must be first */
1504 ".htm.html", "text/html",
1505 ".jpg.jpeg", "image/jpeg",
1506 ".gif", "image/gif",
1507 ".png", "image/png",
1508 ".txt.h.c.cc.cpp", "text/plain",
1509 ".css", "text/css",
1510 ".wav", "audio/wav",
1511 ".avi", "video/x-msvideo",
1512 ".qt.mov", "video/quicktime",
1513 ".mpe.mpeg", "video/mpeg",
1514 ".mid.midi", "audio/midi",
1515 ".mp3", "audio/mpeg",
1516#if 0 /* unpopular */
1517 ".au", "audio/basic",
1518 ".pac", "application/x-ns-proxy-autoconfig",
1519 ".vrml.wrl", "model/vrml",
1520#endif
1521 NULL
1522 };
1523
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001524 char *suffix;
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001525 int fd;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001526 const char *const *table;
1527 const char *try_suffix;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001528 ssize_t count;
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001529
1530 fd = open(url, O_RDONLY);
1531 if (fd < 0) {
1532 if (DEBUG)
1533 bb_perror_msg("can't open '%s'", url);
1534 /* Error pages are sent by using send_file_and_exit(SEND_BODY).
1535 * IOW: it is unsafe to call send_headers_and_exit
1536 * if what is SEND_BODY! Can recurse! */
1537 if (what != SEND_BODY)
1538 send_headers_and_exit(HTTP_NOT_FOUND);
1539 log_and_exit();
1540 }
1541
1542 if (DEBUG)
1543 bb_error_msg("sending file '%s' content-type: %s",
1544 url, found_mime_type);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001545
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001546 /* If you want to know about EPIPE below
1547 * (happens if you abort downloads from local httpd): */
1548 signal(SIGPIPE, SIG_IGN);
1549
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001550 suffix = strrchr(url, '.');
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001551
Denis Vlasenko073214f2007-08-17 19:20:07 +00001552 /* If not found, set default as "application/octet-stream"; */
1553 found_mime_type = "application/octet-stream";
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001554 if (suffix) {
Denis Vlasenko073214f2007-08-17 19:20:07 +00001555 Htaccess *cur;
Denis Vlasenko073214f2007-08-17 19:20:07 +00001556 for (table = suffixTable; *table; table += 2) {
1557 try_suffix = strstr(table[0], suffix);
1558 if (try_suffix) {
1559 try_suffix += strlen(suffix);
1560 if (*try_suffix == '\0' || *try_suffix == '.') {
1561 found_mime_type = table[1];
1562 break;
1563 }
1564 }
1565 }
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001566 for (cur = mime_a; cur; cur = cur->next) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001567 if (strcmp(cur->before_colon, suffix) == 0) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001568 found_mime_type = cur->after_colon;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001569 break;
1570 }
1571 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001572 }
Denis Vlasenkof4310172007-09-21 22:35:18 +00001573#if ENABLE_FEATURE_HTTPD_RANGES
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001574 if (what == SEND_BODY)
Denis Vlasenkof4310172007-09-21 22:35:18 +00001575 range_start = 0; /* err pages and ranges don't mix */
1576 range_len = MAXINT(off_t);
1577 if (range_start) {
1578 if (!range_end) {
1579 range_end = file_size - 1;
1580 }
1581 if (range_end < range_start
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001582 || lseek(fd, range_start, SEEK_SET) != range_start
Denis Vlasenkof4310172007-09-21 22:35:18 +00001583 ) {
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001584 lseek(fd, 0, SEEK_SET);
Denis Vlasenkof4310172007-09-21 22:35:18 +00001585 range_start = 0;
1586 } else {
1587 range_len = range_end - range_start + 1;
1588 send_headers(HTTP_PARTIAL_CONTENT);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001589 what = SEND_BODY;
Denis Vlasenkof4310172007-09-21 22:35:18 +00001590 }
1591 }
1592#endif
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001593 if (what & SEND_HEADERS)
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001594 send_headers(HTTP_OK);
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001595#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001596 {
1597 off_t offset = range_start;
1598 while (1) {
1599 /* sz is rounded down to 64k */
1600 ssize_t sz = MAXINT(ssize_t) - 0xffff;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001601 IF_FEATURE_HTTPD_RANGES(if (sz > range_len) sz = range_len;)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001602 count = sendfile(STDOUT_FILENO, fd, &offset, sz);
1603 if (count < 0) {
1604 if (offset == range_start)
1605 break; /* fall back to read/write loop */
1606 goto fin;
1607 }
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001608 IF_FEATURE_HTTPD_RANGES(range_len -= sz;)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001609 if (count == 0 || range_len == 0)
1610 log_and_exit();
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001611 }
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001612 }
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001613#endif
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001614 while ((count = safe_read(fd, iobuf, IOBUF_SIZE)) > 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00001615 ssize_t n;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001616 IF_FEATURE_HTTPD_RANGES(if (count > range_len) count = range_len;)
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001617 n = full_write(STDOUT_FILENO, iobuf, count);
Denis Vlasenko241b1562007-08-17 19:18:47 +00001618 if (count != n)
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001619 break;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001620 IF_FEATURE_HTTPD_RANGES(range_len -= count;)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001621 if (range_len == 0)
Denis Vlasenkof4310172007-09-21 22:35:18 +00001622 break;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001623 }
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001624 if (count < 0) {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001625 IF_FEATURE_HTTPD_USE_SENDFILE(fin:)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001626 if (verbose > 1)
1627 bb_perror_msg("error");
1628 }
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001629 log_and_exit();
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001630}
1631
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001632static int checkPermIP(void)
1633{
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001634 Htaccess_IP *cur;
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001635
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001636 for (cur = ip_a_d; cur; cur = cur->next) {
Denis Vlasenkob64eed62007-01-14 17:06:11 +00001637#if DEBUG
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001638 fprintf(stderr,
1639 "checkPermIP: '%s' ? '%u.%u.%u.%u/%u.%u.%u.%u'\n",
1640 rmt_ip_str,
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00001641 (unsigned char)(cur->ip >> 24),
1642 (unsigned char)(cur->ip >> 16),
1643 (unsigned char)(cur->ip >> 8),
1644 (unsigned char)(cur->ip),
1645 (unsigned char)(cur->mask >> 24),
1646 (unsigned char)(cur->mask >> 16),
1647 (unsigned char)(cur->mask >> 8),
1648 (unsigned char)(cur->mask)
1649 );
Denis Vlasenko3bba5452006-12-30 17:57:03 +00001650#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001651 if ((rmt_ip & cur->mask) == cur->ip)
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001652 return (cur->allow_deny == 'A'); /* A -> 1 */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001653 }
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001654
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001655 return !flg_deny_all; /* depends on whether we saw "D:*" */
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001656}
1657
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001658#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko073214f2007-08-17 19:20:07 +00001659/*
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001660 * Config file entries are of the form "/<path>:<user>:<passwd>".
1661 * If config file has no prefix match for path, access is allowed.
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001662 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001663 * path The file path
1664 * user_and_passwd "user:passwd" to validate
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001665 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001666 * Returns 1 if user_and_passwd is OK.
Denis Vlasenko073214f2007-08-17 19:20:07 +00001667 */
Denis Vlasenko25b46302008-06-13 09:55:13 +00001668static int check_user_passwd(const char *path, const char *user_and_passwd)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001669{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001670 Htaccess *cur;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001671 const char *prev = NULL;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001672
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001673 for (cur = g_auth; cur; cur = cur->next) {
Denis Vlasenko25b46302008-06-13 09:55:13 +00001674 const char *dir_prefix;
1675 size_t len;
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001676
Denis Vlasenko25b46302008-06-13 09:55:13 +00001677 dir_prefix = cur->before_colon;
1678
1679 /* WHY? */
1680 /* If already saw a match, don't accept other different matches */
1681 if (prev && strcmp(prev, dir_prefix) != 0)
1682 continue;
1683
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001684 if (DEBUG)
Denis Vlasenko25b46302008-06-13 09:55:13 +00001685 fprintf(stderr, "checkPerm: '%s' ? '%s'\n", dir_prefix, user_and_passwd);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001686
Denis Vlasenko25b46302008-06-13 09:55:13 +00001687 /* If it's not a prefix match, continue searching */
1688 len = strlen(dir_prefix);
1689 if (len != 1 /* dir_prefix "/" matches all, don't need to check */
1690 && (strncmp(dir_prefix, path, len) != 0
1691 || (path[len] != '/' && path[len] != '\0'))
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001692 ) {
Denis Vlasenko25b46302008-06-13 09:55:13 +00001693 continue;
1694 }
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001695
Denis Vlasenko25b46302008-06-13 09:55:13 +00001696 /* Path match found */
1697 prev = dir_prefix;
Eric Andersen35e643b2003-07-28 07:40:39 +00001698
Denis Vlasenko25b46302008-06-13 09:55:13 +00001699 if (ENABLE_FEATURE_HTTPD_AUTH_MD5) {
1700 char *md5_passwd;
1701
1702 md5_passwd = strchr(cur->after_colon, ':');
1703 if (md5_passwd && md5_passwd[1] == '$' && md5_passwd[2] == '1'
1704 && md5_passwd[3] == '$' && md5_passwd[4]
1705 ) {
1706 char *encrypted;
1707 int r, user_len_p1;
1708
1709 md5_passwd++;
1710 user_len_p1 = md5_passwd - cur->after_colon;
1711 /* comparing "user:" */
1712 if (strncmp(cur->after_colon, user_and_passwd, user_len_p1) != 0) {
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001713 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001714 }
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001715
Denis Vlasenko25b46302008-06-13 09:55:13 +00001716 encrypted = pw_encrypt(
1717 user_and_passwd + user_len_p1 /* cleartext pwd from user */,
1718 md5_passwd /*salt */, 1 /* cleanup */);
1719 r = strcmp(encrypted, md5_passwd);
1720 free(encrypted);
1721 if (r == 0)
1722 goto set_remoteuser_var; /* Ok */
1723 continue;
1724 }
1725 }
1726
1727 /* Comparing plaintext "user:pass" in one go */
1728 if (strcmp(cur->after_colon, user_and_passwd) == 0) {
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001729 set_remoteuser_var:
Denis Vlasenko25b46302008-06-13 09:55:13 +00001730 remoteuser = xstrndup(user_and_passwd,
1731 strchrnul(user_and_passwd, ':') - user_and_passwd);
1732 return 1; /* Ok */
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001733 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001734 } /* for */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001735
Denis Vlasenko25b46302008-06-13 09:55:13 +00001736 /* 0(bad) if prev is set: matches were found but passwd was wrong */
1737 return (prev == NULL);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001738}
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001739#endif /* FEATURE_HTTPD_BASIC_AUTH */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001740
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001741#if ENABLE_FEATURE_HTTPD_PROXY
1742static Htaccess_Proxy *find_proxy_entry(const char *url)
1743{
1744 Htaccess_Proxy *p;
1745 for (p = proxy; p; p = p->next) {
1746 if (strncmp(url, p->url_from, strlen(p->url_from)) == 0)
1747 return p;
1748 }
1749 return NULL;
1750}
1751#endif
1752
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001753/*
1754 * Handle timeouts
1755 */
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001756static void send_REQUEST_TIMEOUT_and_exit(int sig) NORETURN;
1757static void send_REQUEST_TIMEOUT_and_exit(int sig UNUSED_PARAM)
Eric Andersen07f2fea2004-10-08 08:03:29 +00001758{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001759 send_headers_and_exit(HTTP_REQUEST_TIMEOUT);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001760}
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001761
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001762/*
1763 * Handle an incoming http request and exit.
1764 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001765static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr) NORETURN;
Denis Vlasenko367960b2007-08-18 14:20:21 +00001766static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001767{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001768 static const char request_GET[] ALIGN1 = "GET";
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001769 struct stat sb;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001770 char *urlcopy;
1771 char *urlp;
1772 char *tptr;
Denis Vlasenko55a99402006-09-30 20:41:44 +00001773#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001774 static const char request_HEAD[] ALIGN1 = "HEAD";
Denis Vlasenko073214f2007-08-17 19:20:07 +00001775 const char *prequest;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001776 char *cookie = NULL;
1777 char *content_type = NULL;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001778 unsigned long length = 0;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001779#elif ENABLE_FEATURE_HTTPD_PROXY
1780#define prequest request_GET
1781 unsigned long length = 0;
1782#endif
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001783#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1784 smallint authorized = -1;
1785#endif
1786 smallint ip_allowed;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001787 char http_major_version;
1788#if ENABLE_FEATURE_HTTPD_PROXY
1789 char http_minor_version;
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001790 char *header_buf = header_buf; /* for gcc */
1791 char *header_ptr = header_ptr;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001792 Htaccess_Proxy *proxy_entry;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001793#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001794
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001795 /* Allocation of iobuf is postponed until now
1796 * (IOW, server process doesn't need to waste 8k) */
Denis Vlasenko921799d2007-08-19 19:28:09 +00001797 iobuf = xmalloc(IOBUF_SIZE);
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001798
Denis Vlasenko367960b2007-08-18 14:20:21 +00001799 rmt_ip = 0;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001800 if (fromAddr->u.sa.sa_family == AF_INET) {
1801 rmt_ip = ntohl(fromAddr->u.sin.sin_addr.s_addr);
Denis Vlasenko367960b2007-08-18 14:20:21 +00001802 }
Denis Vlasenko35465a32007-09-25 11:58:33 +00001803#if ENABLE_FEATURE_IPV6
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001804 if (fromAddr->u.sa.sa_family == AF_INET6
1805 && fromAddr->u.sin6.sin6_addr.s6_addr32[0] == 0
1806 && fromAddr->u.sin6.sin6_addr.s6_addr32[1] == 0
1807 && ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[2]) == 0xffff)
1808 rmt_ip = ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[3]);
Denis Vlasenko35465a32007-09-25 11:58:33 +00001809#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00001810 if (ENABLE_FEATURE_HTTPD_CGI || DEBUG || verbose) {
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00001811 /* NB: can be NULL (user runs httpd -i by hand?) */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001812 rmt_ip_str = xmalloc_sockaddr2dotted(&fromAddr->u.sa);
Denis Vlasenko367960b2007-08-18 14:20:21 +00001813 }
1814 if (verbose) {
1815 /* this trick makes -v logging much simpler */
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00001816 if (rmt_ip_str)
1817 applet_name = rmt_ip_str;
Denis Vlasenko367960b2007-08-18 14:20:21 +00001818 if (verbose > 2)
1819 bb_error_msg("connected");
1820 }
1821
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001822 /* Install timeout handler. get_line() needs it. */
1823 signal(SIGALRM, send_REQUEST_TIMEOUT_and_exit);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001824
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001825 if (!get_line()) /* EOF or error or empty line */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001826 send_headers_and_exit(HTTP_BAD_REQUEST);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001827
Denis Vlasenko073214f2007-08-17 19:20:07 +00001828 /* Determine type of request (GET/POST) */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001829 urlp = strpbrk(iobuf, " \t");
1830 if (urlp == NULL)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001831 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001832 *urlp++ = '\0';
Denis Vlasenko55a99402006-09-30 20:41:44 +00001833#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko073214f2007-08-17 19:20:07 +00001834 prequest = request_GET;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001835 if (strcasecmp(iobuf, prequest) != 0) {
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001836 prequest = request_HEAD;
1837 if (strcasecmp(iobuf, prequest) != 0) {
1838 prequest = "POST";
1839 if (strcasecmp(iobuf, prequest) != 0)
1840 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
1841 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001842 }
1843#else
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001844 if (strcasecmp(iobuf, request_GET) != 0)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001845 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001846#endif
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001847 urlp = skip_whitespace(urlp);
1848 if (urlp[0] != '/')
1849 send_headers_and_exit(HTTP_BAD_REQUEST);
1850
1851 /* Find end of URL and parse HTTP version, if any */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001852 http_major_version = '0';
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001853 IF_FEATURE_HTTPD_PROXY(http_minor_version = '0';)
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001854 tptr = strchrnul(urlp, ' ');
1855 /* Is it " HTTP/"? */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001856 if (tptr[0] && strncmp(tptr + 1, HTTP_200, 5) == 0) {
1857 http_major_version = tptr[6];
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001858 IF_FEATURE_HTTPD_PROXY(http_minor_version = tptr[8];)
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001859 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001860 *tptr = '\0';
Glenn L McGrath06e95652003-02-09 06:51:14 +00001861
Denis Vlasenko073214f2007-08-17 19:20:07 +00001862 /* Copy URL from after "GET "/"POST " to stack-allocated char[] */
Denis Vlasenkofcd878e2007-12-29 02:16:23 +00001863 urlcopy = alloca((tptr - urlp) + 2 + strlen(index_page));
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001864 /*if (urlcopy == NULL)
1865 * send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);*/
1866 strcpy(urlcopy, urlp);
1867 /* NB: urlcopy ptr is never changed after this */
Denis Vlasenko073214f2007-08-17 19:20:07 +00001868
1869 /* Extract url args if present */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001870 g_query = NULL;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001871 tptr = strchr(urlcopy, '?');
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001872 if (tptr) {
1873 *tptr++ = '\0';
1874 g_query = tptr;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001875 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001876
Denis Vlasenko073214f2007-08-17 19:20:07 +00001877 /* Decode URL escape sequences */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001878 tptr = decodeString(urlcopy, 0);
1879 if (tptr == NULL)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001880 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001881 if (tptr == urlcopy + 1) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001882 /* '/' or NUL is encoded */
1883 send_headers_and_exit(HTTP_NOT_FOUND);
1884 }
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001885
Denis Vlasenko073214f2007-08-17 19:20:07 +00001886 /* Canonicalize path */
1887 /* Algorithm stolen from libbb bb_simplify_path(),
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001888 * but don't strdup, retain trailing slash, protect root */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001889 urlp = tptr = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001890 do {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001891 if (*urlp == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001892 /* skip duplicate (or initial) slash */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001893 if (*tptr == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001894 continue;
1895 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001896 if (*tptr == '.') {
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001897 /* skip extra "/./" */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001898 if (tptr[1] == '/' || !tptr[1]) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001899 continue;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001900 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001901 /* "..": be careful */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001902 if (tptr[1] == '.' && (tptr[2] == '/' || !tptr[2])) {
1903 ++tptr;
1904 if (urlp == urlcopy) /* protect root */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001905 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001906 while (*--urlp != '/') /* omit previous dir */;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001907 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001908 }
1909 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001910 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001911 *++urlp = *tptr;
1912 } while (*++tptr);
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001913 *++urlp = '\0'; /* terminate after last character */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001914
Denis Vlasenko073214f2007-08-17 19:20:07 +00001915 /* If URL is a directory, add '/' */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001916 if (urlp[-1] != '/') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001917 if (is_directory(urlcopy + 1, 1, &sb)) {
1918 found_moved_temporarily = urlcopy;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001919 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001920 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001921
Denis Vlasenko073214f2007-08-17 19:20:07 +00001922 /* Log it */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001923 if (verbose > 1)
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001924 bb_error_msg("url:%s", urlcopy);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001925
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001926 tptr = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001927 ip_allowed = checkPermIP();
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001928 while (ip_allowed && (tptr = strchr(tptr + 1, '/')) != NULL) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001929 /* have path1/path2 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001930 *tptr = '\0';
1931 if (is_directory(urlcopy + 1, 1, &sb)) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001932 /* may have subdir config */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001933 parse_conf(urlcopy + 1, SUBDIR_PARSE);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001934 ip_allowed = checkPermIP();
1935 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001936 *tptr = '/';
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001937 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001938
1939#if ENABLE_FEATURE_HTTPD_PROXY
1940 proxy_entry = find_proxy_entry(urlcopy);
1941 if (proxy_entry)
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001942 header_buf = header_ptr = xmalloc(IOBUF_SIZE);
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001943#endif
1944
1945 if (http_major_version >= '0') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001946 /* Request was with "... HTTP/nXXX", and n >= 0 */
Denis Vlasenko073214f2007-08-17 19:20:07 +00001947
1948 /* Read until blank line for HTTP version specified, else parse immediate */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001949 while (1) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001950 if (!get_line())
1951 break; /* EOF or error or empty line */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001952 if (DEBUG)
1953 bb_error_msg("header: '%s'", iobuf);
Denis Vlasenko073214f2007-08-17 19:20:07 +00001954
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001955#if ENABLE_FEATURE_HTTPD_PROXY
1956 /* We need 2 more bytes for yet another "\r\n" -
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001957 * see near fdprintf(proxy_fd...) further below */
1958 if (proxy_entry && (header_ptr - header_buf) < IOBUF_SIZE - 2) {
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001959 int len = strlen(iobuf);
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001960 if (len > IOBUF_SIZE - (header_ptr - header_buf) - 4)
1961 len = IOBUF_SIZE - (header_ptr - header_buf) - 4;
1962 memcpy(header_ptr, iobuf, len);
1963 header_ptr += len;
1964 header_ptr[0] = '\r';
1965 header_ptr[1] = '\n';
1966 header_ptr += 2;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001967 }
1968#endif
1969
1970#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
1971 /* Try and do our best to parse more lines */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001972 if ((STRNCASECMP(iobuf, "Content-length:") == 0)) {
1973 /* extra read only for POST */
Denis Vlasenko85c24712008-03-17 09:04:04 +00001974 if (prequest != request_GET
1975#if ENABLE_FEATURE_HTTPD_CGI
1976 && prequest != request_HEAD
1977#endif
1978 ) {
Denis Vlasenko9c8c0382008-03-17 12:58:19 +00001979 tptr = skip_whitespace(iobuf + sizeof("Content-length:") - 1);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001980 if (!tptr[0])
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001981 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001982 /* not using strtoul: it ignores leading minus! */
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001983 length = bb_strtou(tptr, NULL, 10);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001984 /* length is "ulong", but we need to pass it to int later */
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001985 if (errno || length > INT_MAX)
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001986 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001987 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001988 }
1989#endif
1990#if ENABLE_FEATURE_HTTPD_CGI
1991 else if (STRNCASECMP(iobuf, "Cookie:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00001992 cookie = xstrdup(skip_whitespace(iobuf + sizeof("Cookie:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001993 } else if (STRNCASECMP(iobuf, "Content-Type:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00001994 content_type = xstrdup(skip_whitespace(iobuf + sizeof("Content-Type:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001995 } else if (STRNCASECMP(iobuf, "Referer:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00001996 referer = xstrdup(skip_whitespace(iobuf + sizeof("Referer:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001997 } else if (STRNCASECMP(iobuf, "User-Agent:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00001998 user_agent = xstrdup(skip_whitespace(iobuf + sizeof("User-Agent:")-1));
Denis Vlasenko9d1d4c02008-11-22 20:29:35 +00001999 } else if (STRNCASECMP(iobuf, "Host:") == 0) {
2000 host = xstrdup(skip_whitespace(iobuf + sizeof("Host:")-1));
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +00002001 } else if (STRNCASECMP(iobuf, "Accept:") == 0) {
2002 http_accept = xstrdup(skip_whitespace(iobuf + sizeof("Accept:")-1));
2003 } else if (STRNCASECMP(iobuf, "Accept-Language:") == 0) {
2004 http_accept_language = xstrdup(skip_whitespace(iobuf + sizeof("Accept-Language:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002005 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002006#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002007#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002008 if (STRNCASECMP(iobuf, "Authorization:") == 0) {
2009 /* We only allow Basic credentials.
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002010 * It shows up as "Authorization: Basic <user>:<passwd>" where
2011 * "<user>:<passwd>" is base64 encoded.
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002012 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002013 tptr = skip_whitespace(iobuf + sizeof("Authorization:")-1);
2014 if (STRNCASECMP(tptr, "Basic") != 0)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002015 continue;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002016 tptr += sizeof("Basic")-1;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002017 /* decodeBase64() skips whitespace itself */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002018 decodeBase64(tptr);
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002019 authorized = check_user_passwd(urlcopy, tptr);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002020 }
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002021#endif
Denis Vlasenkof4310172007-09-21 22:35:18 +00002022#if ENABLE_FEATURE_HTTPD_RANGES
2023 if (STRNCASECMP(iobuf, "Range:") == 0) {
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002024 /* We know only bytes=NNN-[MMM] */
Denis Vlasenkof4310172007-09-21 22:35:18 +00002025 char *s = skip_whitespace(iobuf + sizeof("Range:")-1);
2026 if (strncmp(s, "bytes=", 6) == 0) {
2027 s += sizeof("bytes=")-1;
2028 range_start = BB_STRTOOFF(s, &s, 10);
2029 if (s[0] != '-' || range_start < 0) {
2030 range_start = 0;
2031 } else if (s[1]) {
2032 range_end = BB_STRTOOFF(s+1, NULL, 10);
2033 if (errno || range_end < range_start)
2034 range_start = 0;
2035 }
2036 }
2037 }
2038#endif
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002039 } /* while extra header reading */
2040 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002041
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002042 /* We are done reading headers, disable peer timeout */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002043 alarm(0);
2044
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002045 if (strcmp(bb_basename(urlcopy), HTTPD_CONF) == 0 || !ip_allowed) {
2046 /* protect listing [/path]/httpd.conf or IP deny */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002047 send_headers_and_exit(HTTP_FORBIDDEN);
2048 }
2049
2050#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002051 /* Case: no "Authorization:" was seen, but page does require passwd.
2052 * Check that with dummy user:pass */
Denis Vlasenko7504f2f2008-06-13 13:20:38 +00002053 if (authorized < 0)
2054 authorized = check_user_passwd(urlcopy, ":");
2055 if (!authorized)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002056 send_headers_and_exit(HTTP_UNAUTHORIZED);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002057#endif
2058
2059 if (found_moved_temporarily) {
2060 send_headers_and_exit(HTTP_MOVED_TEMPORARILY);
2061 }
2062
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002063#if ENABLE_FEATURE_HTTPD_PROXY
2064 if (proxy_entry != NULL) {
2065 int proxy_fd;
2066 len_and_sockaddr *lsa;
2067
2068 proxy_fd = socket(AF_INET, SOCK_STREAM, 0);
2069 if (proxy_fd < 0)
2070 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2071 lsa = host2sockaddr(proxy_entry->host_port, 80);
2072 if (lsa == NULL)
2073 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002074 if (connect(proxy_fd, &lsa->u.sa, lsa->len) < 0)
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002075 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2076 fdprintf(proxy_fd, "%s %s%s%s%s HTTP/%c.%c\r\n",
2077 prequest, /* GET or POST */
2078 proxy_entry->url_to, /* url part 1 */
2079 urlcopy + strlen(proxy_entry->url_from), /* url part 2 */
2080 (g_query ? "?" : ""), /* "?" (maybe) */
2081 (g_query ? g_query : ""), /* query string (maybe) */
2082 http_major_version, http_minor_version);
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00002083 header_ptr[0] = '\r';
2084 header_ptr[1] = '\n';
2085 header_ptr += 2;
2086 write(proxy_fd, header_buf, header_ptr - header_buf);
2087 free(header_buf); /* on the order of 8k, free it */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002088 /* cgi_io_loop_and_exit needs to have two disctinct fds */
2089 cgi_io_loop_and_exit(proxy_fd, dup(proxy_fd), length);
2090 }
2091#endif
2092
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002093 tptr = urlcopy + 1; /* skip first '/' */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002094
2095#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002096 if (strncmp(tptr, "cgi-bin/", 8) == 0) {
2097 if (tptr[8] == '\0') {
Denis Vlasenko073214f2007-08-17 19:20:07 +00002098 /* protect listing "cgi-bin/" */
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002099 send_headers_and_exit(HTTP_FORBIDDEN);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002100 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002101 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002102 }
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002103#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002104 {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002105 char *suffix = strrchr(tptr, '.');
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002106 if (suffix) {
2107 Htaccess *cur;
2108 for (cur = script_i; cur; cur = cur->next) {
2109 if (strcmp(cur->before_colon + 1, suffix) == 0) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002110 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002111 }
2112 }
2113 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002114 }
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002115#endif
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002116 if (prequest != request_GET && prequest != request_HEAD) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002117 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
2118 }
Denis Vlasenko5d148e22006-11-21 00:12:09 +00002119#endif /* FEATURE_HTTPD_CGI */
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00002120
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002121 if (urlp[-1] == '/')
Denis Vlasenkofcd878e2007-12-29 02:16:23 +00002122 strcpy(urlp, index_page);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002123 if (stat(tptr, &sb) == 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00002124 file_size = sb.st_size;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002125 last_mod = sb.st_mtime;
2126 }
Denis Vlasenko5d148e22006-11-21 00:12:09 +00002127#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002128 else if (urlp[-1] == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002129 /* It's a dir URL and there is no index.html
2130 * Try cgi-bin/index.cgi */
2131 if (access("/cgi-bin/index.cgi"+1, X_OK) == 0) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002132 urlp[0] = '\0';
2133 g_query = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002134 send_cgi_and_exit("/cgi-bin/index.cgi", prequest, length, cookie, content_type);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002135 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002136 }
Denis Vlasenko073214f2007-08-17 19:20:07 +00002137#endif
2138 /* else {
2139 * fall through to send_file, it errors out if open fails
2140 * }
2141 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002142
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002143 send_file_and_exit(tptr,
Denis Vlasenko85c24712008-03-17 09:04:04 +00002144#if ENABLE_FEATURE_HTTPD_CGI
2145 (prequest != request_HEAD ? SEND_HEADERS_AND_BODY : SEND_HEADERS)
2146#else
2147 SEND_HEADERS_AND_BODY
2148#endif
2149 );
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002150}
2151
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002152/*
2153 * The main http server function.
Denis Vlasenko367960b2007-08-18 14:20:21 +00002154 * Given a socket, listen for new connections and farm out
2155 * the processing as a [v]forked process.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002156 * Never returns.
2157 */
Denis Vlasenko367960b2007-08-18 14:20:21 +00002158#if BB_MMU
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002159static void mini_httpd(int server_socket) NORETURN;
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002160static void mini_httpd(int server_socket)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002161{
Denis Vlasenko073214f2007-08-17 19:20:07 +00002162 /* NB: it's best to not use xfuncs in this loop before fork().
2163 * Otherwise server may die on transient errors (temporary
2164 * out-of-memory condition, etc), which is Bad(tm).
2165 * Try to do any dangerous calls after fork.
2166 */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002167 while (1) {
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002168 int n;
2169 len_and_sockaddr fromAddr;
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00002170
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002171 /* Wait for connections... */
2172 fromAddr.len = LSA_SIZEOF_SA;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002173 n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002174
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002175 if (n < 0)
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00002176 continue;
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002177 /* set the KEEPALIVE option to cull dead connections */
2178 setsockopt(n, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002179
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002180 if (fork() == 0) {
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002181 /* child */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002182 /* Do not reload config on HUP */
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00002183 signal(SIGHUP, SIG_IGN);
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002184 close(server_socket);
2185 xmove_fd(n, 0);
2186 xdup2(0, 1);
2187
Denis Vlasenko367960b2007-08-18 14:20:21 +00002188 handle_incoming_and_exit(&fromAddr);
2189 }
2190 /* parent, or fork failed */
2191 close(n);
2192 } /* while (1) */
2193 /* never reached */
2194}
2195#else
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002196static void mini_httpd_nommu(int server_socket, int argc, char **argv) NORETURN;
Denis Vlasenko367960b2007-08-18 14:20:21 +00002197static void mini_httpd_nommu(int server_socket, int argc, char **argv)
2198{
2199 char *argv_copy[argc + 2];
2200
2201 argv_copy[0] = argv[0];
2202 argv_copy[1] = (char*)"-i";
2203 memcpy(&argv_copy[2], &argv[1], argc * sizeof(argv[0]));
2204
2205 /* NB: it's best to not use xfuncs in this loop before vfork().
2206 * Otherwise server may die on transient errors (temporary
2207 * out-of-memory condition, etc), which is Bad(tm).
2208 * Try to do any dangerous calls after fork.
2209 */
2210 while (1) {
2211 int n;
2212 len_and_sockaddr fromAddr;
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00002213
Denis Vlasenko367960b2007-08-18 14:20:21 +00002214 /* Wait for connections... */
2215 fromAddr.len = LSA_SIZEOF_SA;
Denis Vlasenko671ca332008-02-19 14:13:20 +00002216 n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002217
2218 if (n < 0)
2219 continue;
2220 /* set the KEEPALIVE option to cull dead connections */
2221 setsockopt(n, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
2222
2223 if (vfork() == 0) {
2224 /* child */
Denis Vlasenko367960b2007-08-18 14:20:21 +00002225 /* Do not reload config on HUP */
2226 signal(SIGHUP, SIG_IGN);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002227 close(server_socket);
2228 xmove_fd(n, 0);
2229 xdup2(0, 1);
2230
2231 /* Run a copy of ourself in inetd mode */
2232 re_exec(argv_copy);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002233 }
Denis Vlasenko921799d2007-08-19 19:28:09 +00002234 /* parent, or vfork failed */
Denis Vlasenko073214f2007-08-17 19:20:07 +00002235 close(n);
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002236 } /* while (1) */
Denis Vlasenko241b1562007-08-17 19:18:47 +00002237 /* never reached */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002238}
Denis Vlasenko56258b62007-06-23 23:14:02 +00002239#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002240
Denis Vlasenko367960b2007-08-18 14:20:21 +00002241/*
2242 * Process a HTTP connection on stdin/out.
2243 * Never returns.
2244 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002245static void mini_httpd_inetd(void) NORETURN;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002246static void mini_httpd_inetd(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002247{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002248 len_and_sockaddr fromAddr;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002249
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00002250 memset(&fromAddr, 0, sizeof(fromAddr));
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002251 fromAddr.len = LSA_SIZEOF_SA;
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00002252 /* NB: can fail if user runs it by hand and types in http cmds */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002253 getpeername(0, &fromAddr.u.sa, &fromAddr.len);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002254 handle_incoming_and_exit(&fromAddr);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002255}
Glenn L McGrath06e95652003-02-09 06:51:14 +00002256
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002257static void sighup_handler(int sig UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00002258{
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002259 parse_conf(DEFAULT_PATH_HTTPD_CONF, SIGNALED_PARSE);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002260}
Glenn L McGrath06e95652003-02-09 06:51:14 +00002261
Denis Vlasenko9f609292006-11-05 19:47:33 +00002262enum {
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002263 c_opt_config_file = 0,
2264 d_opt_decode_url,
2265 h_opt_home_httpd,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002266 IF_FEATURE_HTTPD_ENCODE_URL_STR(e_opt_encode_url,)
2267 IF_FEATURE_HTTPD_BASIC_AUTH( r_opt_realm ,)
2268 IF_FEATURE_HTTPD_AUTH_MD5( m_opt_md5 ,)
2269 IF_FEATURE_HTTPD_SETUID( u_opt_setuid ,)
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002270 p_opt_port ,
2271 p_opt_inetd ,
2272 p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002273 p_opt_verbose ,
Denis Vlasenko9f609292006-11-05 19:47:33 +00002274 OPT_CONFIG_FILE = 1 << c_opt_config_file,
2275 OPT_DECODE_URL = 1 << d_opt_decode_url,
2276 OPT_HOME_HTTPD = 1 << h_opt_home_httpd,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002277 OPT_ENCODE_URL = IF_FEATURE_HTTPD_ENCODE_URL_STR((1 << e_opt_encode_url)) + 0,
2278 OPT_REALM = IF_FEATURE_HTTPD_BASIC_AUTH( (1 << r_opt_realm )) + 0,
2279 OPT_MD5 = IF_FEATURE_HTTPD_AUTH_MD5( (1 << m_opt_md5 )) + 0,
2280 OPT_SETUID = IF_FEATURE_HTTPD_SETUID( (1 << u_opt_setuid )) + 0,
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002281 OPT_PORT = 1 << p_opt_port,
2282 OPT_INETD = 1 << p_opt_inetd,
2283 OPT_FOREGROUND = 1 << p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002284 OPT_VERBOSE = 1 << p_opt_verbose,
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002285};
Eric Andersena3bb3e62003-06-26 09:05:32 +00002286
Eric Andersena3bb3e62003-06-26 09:05:32 +00002287
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00002288int httpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002289int httpd_main(int argc UNUSED_PARAM, char **argv)
Glenn L McGrath06e95652003-02-09 06:51:14 +00002290{
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002291 int server_socket = server_socket; /* for gcc */
Denis Vlasenko67b23e62006-10-03 21:00:06 +00002292 unsigned opt;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002293 char *url_for_decode;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002294 IF_FEATURE_HTTPD_ENCODE_URL_STR(const char *url_for_encode;)
2295 IF_FEATURE_HTTPD_SETUID(const char *s_ugid = NULL;)
2296 IF_FEATURE_HTTPD_SETUID(struct bb_uidgid_t ugid;)
2297 IF_FEATURE_HTTPD_AUTH_MD5(const char *pass;)
Eric Andersen35e643b2003-07-28 07:40:39 +00002298
Denis Vlasenko073214f2007-08-17 19:20:07 +00002299 INIT_G();
2300
Denis Vlasenkofcdb00f2006-11-21 00:09:37 +00002301#if ENABLE_LOCALE_SUPPORT
2302 /* Undo busybox.c: we want to speak English in http (dates etc) */
2303 setlocale(LC_TIME, "C");
2304#endif
2305
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002306 home_httpd = xrealloc_getcwd_or_warn(NULL);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002307 /* -v counts, -i implies -f */
2308 opt_complementary = "vv:if";
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002309 /* We do not "absolutize" path given by -h (home) opt.
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00002310 * If user gives relative path in -h,
2311 * $SCRIPT_FILENAME will not be set. */
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00002312 opt = getopt32(argv, "c:d:h:"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002313 IF_FEATURE_HTTPD_ENCODE_URL_STR("e:")
2314 IF_FEATURE_HTTPD_BASIC_AUTH("r:")
2315 IF_FEATURE_HTTPD_AUTH_MD5("m:")
2316 IF_FEATURE_HTTPD_SETUID("u:")
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002317 "p:ifv",
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002318 &opt_c_configFile, &url_for_decode, &home_httpd
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002319 IF_FEATURE_HTTPD_ENCODE_URL_STR(, &url_for_encode)
2320 IF_FEATURE_HTTPD_BASIC_AUTH(, &g_realm)
2321 IF_FEATURE_HTTPD_AUTH_MD5(, &pass)
2322 IF_FEATURE_HTTPD_SETUID(, &s_ugid)
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002323 , &bind_addr_or_port
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002324 , &verbose
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002325 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002326 if (opt & OPT_DECODE_URL) {
Denis Vlasenko367960b2007-08-18 14:20:21 +00002327 fputs(decodeString(url_for_decode, 1), stdout);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002328 return 0;
2329 }
Denis Vlasenko55a99402006-09-30 20:41:44 +00002330#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002331 if (opt & OPT_ENCODE_URL) {
Denis Vlasenko367960b2007-08-18 14:20:21 +00002332 fputs(encodeString(url_for_encode), stdout);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002333 return 0;
2334 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002335#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002336#if ENABLE_FEATURE_HTTPD_AUTH_MD5
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002337 if (opt & OPT_MD5) {
Denis Vlasenko4ea83bf2008-06-12 16:55:59 +00002338 puts(pw_encrypt(pass, "$1$", 1));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002339 return 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002340 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002341#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002342#if ENABLE_FEATURE_HTTPD_SETUID
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002343 if (opt & OPT_SETUID) {
Bernhard Reutner-Fischerd73cbd32008-07-21 14:41:33 +00002344 xget_uidgid(&ugid, s_ugid);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002345 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002346#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002347
Denis Vlasenko367960b2007-08-18 14:20:21 +00002348#if !BB_MMU
2349 if (!(opt & OPT_FOREGROUND)) {
2350 bb_daemonize_or_rexec(0, argv); /* don't change current directory */
2351 }
2352#endif
2353
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002354 xchdir(home_httpd);
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002355 if (!(opt & OPT_INETD)) {
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00002356 signal(SIGCHLD, SIG_IGN);
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002357 server_socket = openServer();
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002358#if ENABLE_FEATURE_HTTPD_SETUID
2359 /* drop privileges */
2360 if (opt & OPT_SETUID) {
2361 if (ugid.gid != (gid_t)-1) {
2362 if (setgroups(1, &ugid.gid) == -1)
Denis Vlasenko8e858e22007-03-07 09:35:43 +00002363 bb_perror_msg_and_die("setgroups");
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002364 xsetgid(ugid.gid);
2365 }
2366 xsetuid(ugid.uid);
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002367 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002368#endif
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002369 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002370
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002371#if 0
Denis Vlasenko2535f122007-09-15 13:28:30 +00002372 /* User can do it himself: 'env - PATH="$PATH" httpd'
2373 * We don't do it because we don't want to screw users
2374 * which want to do
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002375 * 'env - VAR1=val1 VAR2=val2 httpd'
Denis Vlasenko2535f122007-09-15 13:28:30 +00002376 * and have VAR1 and VAR2 values visible in their CGIs.
2377 * Besides, it is also smaller. */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002378 {
2379 char *p = getenv("PATH");
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002380 /* env strings themself are not freed, no need to xstrdup(p): */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002381 clearenv();
2382 if (p)
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002383 putenv(p - 5);
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002384// if (!(opt & OPT_INETD))
2385// setenv_long("SERVER_PORT", ???);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002386 }
Glenn L McGrathfe538ba2003-09-10 23:35:45 +00002387#endif
2388
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002389 parse_conf(DEFAULT_PATH_HTTPD_CONF, FIRST_PARSE);
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002390 if (!(opt & OPT_INETD))
2391 signal(SIGHUP, sighup_handler);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002392
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00002393 xfunc_error_retval = 0;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002394 if (opt & OPT_INETD)
2395 mini_httpd_inetd();
Denis Vlasenko367960b2007-08-18 14:20:21 +00002396#if BB_MMU
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002397 if (!(opt & OPT_FOREGROUND))
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002398 bb_daemonize(0); /* don't change current directory */
2399 mini_httpd(server_socket); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002400#else
Denis Vlasenko367960b2007-08-18 14:20:21 +00002401 mini_httpd_nommu(server_socket, argc, argv); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002402#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00002403 /* return 0; */
Glenn L McGrath06e95652003-02-09 06:51:14 +00002404}