blob: 956eecaf20cd95f9495bc181f717d59f8c41fde8 [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
Bernhard Reutner-Fischer62851172009-05-03 18:53:22 +020035 * presentation. -d decodes an url-encoded argument while -e encodes in html
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000036 * for page display.
Glenn L McGrath58c708a2003-01-05 04:01:56 +000037 *
38 * httpd.conf has the following format:
Eric Andersenc7bda1c2004-03-15 08:29:22 +000039 *
Denis Vlasenko395410b2008-07-20 23:25:32 +000040 * H:/serverroot # define the server root. It will override -h
Glenn L McGrathb65422c2003-09-08 10:59:27 +000041 * A:172.20. # Allow address from 172.20.0.0/16
42 * A:10.0.0.0/25 # Allow any address from 10.0.0.0-10.0.0.127
43 * A:10.0.0.0/255.255.255.128 # Allow any address that previous set
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000044 * A:127.0.0.1 # Allow local loopback connections
45 * D:* # Deny from other IP connections
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +000046 * E404:/path/e404.html # /path/e404.html is the 404 (not found) error page
Denis Vlasenkofcd878e2007-12-29 02:16:23 +000047 * I:index.html # Show index.html when a directory is requested
Denis Vlasenkof74194e2007-10-18 12:54:39 +000048 *
49 * P:/url:[http://]hostname[:port]/new/path
50 * # When /urlXXXXXX is requested, reverse proxy
51 * # it to http://hostname[:port]/new/pathXXXXXX
52 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000053 * /cgi-bin:foo:bar # Require user foo, pwd bar on urls starting with /cgi-bin/
54 * /adm:admin:setup # Require user admin, pwd setup on urls starting with /adm/
55 * /adm:toor:PaSsWd # or user toor, pwd PaSsWd on urls starting with /adm/
56 * .au:audio/basic # additional mime type for audio.au files
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +000057 * *.php:/path/php # run xxx.php through an interpreter
Eric Andersenc7bda1c2004-03-15 08:29:22 +000058 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +000059 * A/D may be as a/d or allow/deny - only first char matters.
60 * Deny/Allow IP logic:
61 * - Default is to allow all (Allow all (A:*) is a no-op).
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000062 * - Deny rules take precedence over allow rules.
Denis Vlasenko0eb406c2008-06-13 09:53:06 +000063 * - "Deny all" rule (D:*) is applied last.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000064 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000065 * Example:
66 * 1. Allow only specified addresses
Glenn L McGrathb65422c2003-09-08 10:59:27 +000067 * A:172.20 # Allow any address that begins with 172.20.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000068 * A:10.10. # Allow any address that begins with 10.10.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000069 * A:127.0.0.1 # Allow local loopback connections
70 * D:* # Deny from other IP connections
Eric Andersenc7bda1c2004-03-15 08:29:22 +000071 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000072 * 2. Only deny specified addresses
73 * D:1.2.3. # deny from 1.2.3.0 - 1.2.3.255
74 * D:2.3.4. # deny from 2.3.4.0 - 2.3.4.255
75 * A:* # (optional line added for clarity)
Eric Andersenc7bda1c2004-03-15 08:29:22 +000076 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000077 * If a sub directory contains a config file it is parsed and merged with
Glenn L McGrathb65422c2003-09-08 10:59:27 +000078 * any existing settings as if it was appended to the original configuration.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000079 *
80 * subdir paths are relative to the containing subdir and thus cannot
81 * affect the parent rules.
82 *
83 * Note that since the sub dir is parsed in the forked thread servicing the
84 * subdir http request, any merge is discarded when the process exits. As a
85 * result, the subdir settings only have a lifetime of a single request.
86 *
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +000087 * Custom error pages can contain an absolute path or be relative to
88 * 'home_httpd'. Error pages are to be static files (no CGI or script). Error
89 * page can only be defined in the root configuration file and are not taken
90 * into account in local (directories) config files.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000091 *
92 * If -c is not set, an attempt will be made to open the default
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000093 * root configuration file. If -c is set and the file is not found, the
94 * server exits with an error.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000095 *
Denis Vlasenko073214f2007-08-17 19:20:07 +000096 */
Bernhard Reutner-Fischer62851172009-05-03 18:53:22 +020097 /* TODO: use TCP_CORK, parse_config() */
Glenn L McGrath58c708a2003-01-05 04:01:56 +000098
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000099#include "libbb.h"
Denis Vlasenko1b9064d2007-08-12 21:05:49 +0000100#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
Denis Vlasenko1cbfd982009-02-04 23:43:44 +0000101# include <sys/sendfile.h>
Denis Vlasenko1b9064d2007-08-12 21:05:49 +0000102#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000103
Denis Vlasenko073214f2007-08-17 19:20:07 +0000104#define DEBUG 0
105
Denis Vlasenko32a471e2007-09-23 13:56:57 +0000106#define IOBUF_SIZE 8192 /* IO buffer */
107
Denis Vlasenko69981422007-01-07 21:25:12 +0000108/* amount of buffering in a pipe */
109#ifndef PIPE_BUF
110# define PIPE_BUF 4096
111#endif
Denis Vlasenko32a471e2007-09-23 13:56:57 +0000112#if PIPE_BUF >= IOBUF_SIZE
113# error "PIPE_BUF >= IOBUF_SIZE"
114#endif
Denis Vlasenko073214f2007-08-17 19:20:07 +0000115
116#define HEADER_READ_TIMEOUT 60
117
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000118static const char DEFAULT_PATH_HTTPD_CONF[] ALIGN1 = "/etc";
119static const char HTTPD_CONF[] ALIGN1 = "httpd.conf";
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000120static const char HTTP_200[] ALIGN1 = "HTTP/1.0 200 OK\r\n";
Glenn L McGrath06e95652003-02-09 06:51:14 +0000121
Denis Vlasenko073214f2007-08-17 19:20:07 +0000122typedef struct has_next_ptr {
123 struct has_next_ptr *next;
124} has_next_ptr;
Eric Andersen07f2fea2004-10-08 08:03:29 +0000125
Denis Vlasenko073214f2007-08-17 19:20:07 +0000126/* Must have "next" as a first member */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000127typedef struct Htaccess {
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000128 struct Htaccess *next;
Denis Vlasenko073214f2007-08-17 19:20:07 +0000129 char *after_colon;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000130 char before_colon[1]; /* really bigger, must be last */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000131} Htaccess;
132
Denis Vlasenko073214f2007-08-17 19:20:07 +0000133/* Must have "next" as a first member */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000134typedef struct Htaccess_IP {
Denis Vlasenko073214f2007-08-17 19:20:07 +0000135 struct Htaccess_IP *next;
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000136 unsigned ip;
137 unsigned mask;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000138 int allow_deny;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000139} Htaccess_IP;
140
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000141/* Must have "next" as a first member */
142typedef struct Htaccess_Proxy {
143 struct Htaccess_Proxy *next;
144 char *url_from;
145 char *host_port;
146 char *url_to;
147} Htaccess_Proxy;
148
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000149enum {
150 HTTP_OK = 200,
Denis Vlasenkof4310172007-09-21 22:35:18 +0000151 HTTP_PARTIAL_CONTENT = 206,
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000152 HTTP_MOVED_TEMPORARILY = 302,
153 HTTP_BAD_REQUEST = 400, /* malformed syntax */
154 HTTP_UNAUTHORIZED = 401, /* authentication needed, respond with auth hdr */
155 HTTP_NOT_FOUND = 404,
156 HTTP_FORBIDDEN = 403,
157 HTTP_REQUEST_TIMEOUT = 408,
158 HTTP_NOT_IMPLEMENTED = 501, /* used for unrecognized requests */
159 HTTP_INTERNAL_SERVER_ERROR = 500,
160 HTTP_CONTINUE = 100,
161#if 0 /* future use */
162 HTTP_SWITCHING_PROTOCOLS = 101,
163 HTTP_CREATED = 201,
164 HTTP_ACCEPTED = 202,
165 HTTP_NON_AUTHORITATIVE_INFO = 203,
166 HTTP_NO_CONTENT = 204,
167 HTTP_MULTIPLE_CHOICES = 300,
168 HTTP_MOVED_PERMANENTLY = 301,
169 HTTP_NOT_MODIFIED = 304,
170 HTTP_PAYMENT_REQUIRED = 402,
171 HTTP_BAD_GATEWAY = 502,
172 HTTP_SERVICE_UNAVAILABLE = 503, /* overload, maintenance */
173 HTTP_RESPONSE_SETSIZE = 0xffffffff
174#endif
175};
176
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000177static const uint16_t http_response_type[] ALIGN2 = {
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000178 HTTP_OK,
Denis Vlasenkof4310172007-09-21 22:35:18 +0000179#if ENABLE_FEATURE_HTTPD_RANGES
180 HTTP_PARTIAL_CONTENT,
181#endif
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000182 HTTP_MOVED_TEMPORARILY,
183 HTTP_REQUEST_TIMEOUT,
184 HTTP_NOT_IMPLEMENTED,
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +0000185#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000186 HTTP_UNAUTHORIZED,
187#endif
188 HTTP_NOT_FOUND,
189 HTTP_BAD_REQUEST,
190 HTTP_FORBIDDEN,
191 HTTP_INTERNAL_SERVER_ERROR,
192#if 0 /* not implemented */
193 HTTP_CREATED,
194 HTTP_ACCEPTED,
195 HTTP_NO_CONTENT,
196 HTTP_MULTIPLE_CHOICES,
197 HTTP_MOVED_PERMANENTLY,
198 HTTP_NOT_MODIFIED,
199 HTTP_BAD_GATEWAY,
200 HTTP_SERVICE_UNAVAILABLE,
201#endif
202};
203
204static const struct {
205 const char *name;
206 const char *info;
207} http_response[ARRAY_SIZE(http_response_type)] = {
208 { "OK", NULL },
Denis Vlasenkof4310172007-09-21 22:35:18 +0000209#if ENABLE_FEATURE_HTTPD_RANGES
210 { "Partial Content", NULL },
211#endif
212 { "Found", NULL },
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000213 { "Request Timeout", "No request appeared within 60 seconds" },
214 { "Not Implemented", "The requested method is not recognized" },
215#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
216 { "Unauthorized", "" },
217#endif
218 { "Not Found", "The requested URL was not found" },
219 { "Bad Request", "Unsupported method" },
220 { "Forbidden", "" },
221 { "Internal Server Error", "Internal Server Error" },
222#if 0 /* not implemented */
223 { "Created" },
224 { "Accepted" },
225 { "No Content" },
226 { "Multiple Choices" },
227 { "Moved Permanently" },
228 { "Not Modified" },
229 { "Bad Gateway", "" },
230 { "Service Unavailable", "" },
231#endif
232};
233
Denis Vlasenkof4310172007-09-21 22:35:18 +0000234
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000235struct globals {
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000236 int verbose; /* must be int (used by getopt32) */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000237 smallint flg_deny_all;
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000238
Denis Vlasenko37c33162007-08-19 18:54:22 +0000239 unsigned rmt_ip; /* used for IP-based allow/deny rules */
240 time_t last_mod;
Denis Vlasenko37c33162007-08-19 18:54:22 +0000241 char *rmt_ip_str; /* for $REMOTE_ADDR and $REMOTE_PORT */
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000242 const char *bind_addr_or_port;
243
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000244 const char *g_query;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000245 const char *opt_c_configFile;
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000246 const char *home_httpd;
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000247 const char *index_page;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000248
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000249 const char *found_mime_type;
250 const char *found_moved_temporarily;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000251 Htaccess_IP *ip_a_d; /* config allow/deny lines */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000252
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000253 IF_FEATURE_HTTPD_BASIC_AUTH(const char *g_realm;)
254 IF_FEATURE_HTTPD_BASIC_AUTH(char *remoteuser;)
255 IF_FEATURE_HTTPD_CGI(char *referer;)
256 IF_FEATURE_HTTPD_CGI(char *user_agent;)
257 IF_FEATURE_HTTPD_CGI(char *host;)
258 IF_FEATURE_HTTPD_CGI(char *http_accept;)
259 IF_FEATURE_HTTPD_CGI(char *http_accept_language;)
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +0000260
Denis Vlasenkof4310172007-09-21 22:35:18 +0000261 off_t file_size; /* -1 - unknown */
262#if ENABLE_FEATURE_HTTPD_RANGES
263 off_t range_start;
264 off_t range_end;
265 off_t range_len;
266#endif
267
Denis Vlasenko55a99402006-09-30 20:41:44 +0000268#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000269 Htaccess *g_auth; /* config user:password lines */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000270#endif
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000271 Htaccess *mime_a; /* config mime types */
Denis Vlasenko55a99402006-09-30 20:41:44 +0000272#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000273 Htaccess *script_i; /* config script interpreters */
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000274#endif
Denis Vlasenko921799d2007-08-19 19:28:09 +0000275 char *iobuf; /* [IOBUF_SIZE] */
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000276#define hdr_buf bb_common_bufsiz1
277 char *hdr_ptr;
278 int hdr_cnt;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000279#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
280 const char *http_error_page[ARRAY_SIZE(http_response_type)];
281#endif
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000282#if ENABLE_FEATURE_HTTPD_PROXY
283 Htaccess_Proxy *proxy;
284#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000285};
286#define G (*ptr_to_globals)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000287#define verbose (G.verbose )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000288#define flg_deny_all (G.flg_deny_all )
289#define rmt_ip (G.rmt_ip )
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000290#define bind_addr_or_port (G.bind_addr_or_port)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000291#define g_query (G.g_query )
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000292#define opt_c_configFile (G.opt_c_configFile )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000293#define home_httpd (G.home_httpd )
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000294#define index_page (G.index_page )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000295#define found_mime_type (G.found_mime_type )
296#define found_moved_temporarily (G.found_moved_temporarily)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000297#define last_mod (G.last_mod )
298#define ip_a_d (G.ip_a_d )
299#define g_realm (G.g_realm )
300#define remoteuser (G.remoteuser )
301#define referer (G.referer )
302#define user_agent (G.user_agent )
Denis Vlasenko9d1d4c02008-11-22 20:29:35 +0000303#define host (G.host )
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +0000304#define http_accept (G.http_accept )
305#define http_accept_language (G.http_accept_language)
Denis Vlasenkof4310172007-09-21 22:35:18 +0000306#define file_size (G.file_size )
307#if ENABLE_FEATURE_HTTPD_RANGES
308#define range_start (G.range_start )
309#define range_end (G.range_end )
310#define range_len (G.range_len )
Denis Vlasenko1cbfd982009-02-04 23:43:44 +0000311#else
312enum {
313 range_start = 0,
314 range_end = MAXINT(off_t) - 1,
315 range_len = MAXINT(off_t),
316};
Denis Vlasenkof4310172007-09-21 22:35:18 +0000317#endif
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000318#define rmt_ip_str (G.rmt_ip_str )
319#define g_auth (G.g_auth )
320#define mime_a (G.mime_a )
321#define script_i (G.script_i )
322#define iobuf (G.iobuf )
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000323#define hdr_ptr (G.hdr_ptr )
324#define hdr_cnt (G.hdr_cnt )
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000325#define http_error_page (G.http_error_page )
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000326#define proxy (G.proxy )
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000327#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000328 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000329 IF_FEATURE_HTTPD_BASIC_AUTH(g_realm = "Web Server Authentication";) \
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000330 bind_addr_or_port = "80"; \
Denis Vlasenko1acb4ef2008-02-27 20:59:54 +0000331 index_page = "index.html"; \
Denis Vlasenkof4310172007-09-21 22:35:18 +0000332 file_size = -1; \
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000333} while (0)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000334
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000335
Denis Vlasenko0bb993f2006-11-21 00:06:28 +0000336#define STRNCASECMP(a, str) strncasecmp((a), (str), sizeof(str)-1)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000337
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000338/* Prototypes */
Denis Vlasenko2f518b02008-02-21 00:12:07 +0000339enum {
340 SEND_HEADERS = (1 << 0),
341 SEND_BODY = (1 << 1),
342 SEND_HEADERS_AND_BODY = SEND_HEADERS + SEND_BODY,
343};
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000344static void send_file_and_exit(const char *url, int what) NORETURN;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000345
Denis Vlasenko073214f2007-08-17 19:20:07 +0000346static void free_llist(has_next_ptr **pptr)
347{
348 has_next_ptr *cur = *pptr;
349 while (cur) {
350 has_next_ptr *t = cur;
351 cur = cur->next;
352 free(t);
353 }
354 *pptr = NULL;
355}
356
Denis Vlasenko073214f2007-08-17 19:20:07 +0000357static ALWAYS_INLINE void free_Htaccess_list(Htaccess **pptr)
358{
359 free_llist((has_next_ptr**)pptr);
360}
Denis Vlasenko073214f2007-08-17 19:20:07 +0000361
362static ALWAYS_INLINE void free_Htaccess_IP_list(Htaccess_IP **pptr)
363{
364 free_llist((has_next_ptr**)pptr);
365}
Glenn L McGrath06e95652003-02-09 06:51:14 +0000366
Denis Vlasenkod867f322007-08-19 21:15:42 +0000367/* Returns presumed mask width in bits or < 0 on error.
368 * Updates strp, stores IP at provided pointer */
369static int scan_ip(const char **strp, unsigned *ipp, unsigned char endc)
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000370{
Denis Vlasenkod867f322007-08-19 21:15:42 +0000371 const char *p = *strp;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000372 int auto_mask = 8;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000373 unsigned ip = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000374 int j;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000375
Denis Vlasenkod867f322007-08-19 21:15:42 +0000376 if (*p == '/')
377 return -auto_mask;
378
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000379 for (j = 0; j < 4; j++) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000380 unsigned octet;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000381
Denis Vlasenkod867f322007-08-19 21:15:42 +0000382 if ((*p < '0' || *p > '9') && *p != '/' && *p)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000383 return -auto_mask;
384 octet = 0;
385 while (*p >= '0' && *p <= '9') {
386 octet *= 10;
387 octet += *p - '0';
388 if (octet > 255)
389 return -auto_mask;
390 p++;
391 }
392 if (*p == '.')
393 p++;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000394 if (*p != '/' && *p)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000395 auto_mask += 8;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000396 ip = (ip << 8) | octet;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000397 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000398 if (*p) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000399 if (*p != endc)
400 return -auto_mask;
401 p++;
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000402 if (*p == '\0')
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000403 return -auto_mask;
404 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000405 *ipp = ip;
406 *strp = p;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000407 return auto_mask;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000408}
409
Denis Vlasenkod867f322007-08-19 21:15:42 +0000410/* Returns 0 on success. Stores IP and mask at provided pointers */
411static int scan_ip_mask(const char *str, unsigned *ipp, unsigned *maskp)
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000412{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000413 int i;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000414 unsigned mask;
415 char *p;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000416
Denis Vlasenkod867f322007-08-19 21:15:42 +0000417 i = scan_ip(&str, ipp, '/');
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000418 if (i < 0)
419 return i;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000420
Denis Vlasenkod867f322007-08-19 21:15:42 +0000421 if (*str) {
422 /* there is /xxx after dotted-IP address */
423 i = bb_strtou(str, &p, 10);
424 if (*p == '.') {
425 /* 'xxx' itself is dotted-IP mask, parse it */
426 /* (return 0 (success) only if it has N.N.N.N form) */
427 return scan_ip(&str, maskp, '\0') - 32;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000428 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000429 if (*p)
430 return -1;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000431 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000432
433 if (i > 32)
Denis Vlasenko92758142006-10-03 19:56:34 +0000434 return -1;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000435
436 if (sizeof(unsigned) == 4 && i == 32) {
437 /* mask >>= 32 below may not work */
438 mask = 0;
439 } else {
440 mask = 0xffffffff;
441 mask >>= i;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000442 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000443 /* i == 0 -> *maskp = 0x00000000
444 * i == 1 -> *maskp = 0x80000000
445 * i == 4 -> *maskp = 0xf0000000
446 * i == 31 -> *maskp = 0xfffffffe
447 * i == 32 -> *maskp = 0xffffffff */
448 *maskp = (uint32_t)(~mask);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000449 return 0;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000450}
451
Denis Vlasenko073214f2007-08-17 19:20:07 +0000452/*
453 * Parse configuration file into in-memory linked list.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000454 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000455 * Any previous IP rules are discarded.
456 * If the flag argument is not SUBDIR_PARSE then all /path and mime rules
457 * are also discarded. That is, previous settings are retained if flag is
458 * SUBDIR_PARSE.
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000459 * Error pages are only parsed on the main config file.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000460 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000461 * path Path where to look for httpd.conf (without filename).
462 * flag Type of the parse request.
463 */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000464/* flag param: */
465enum {
466 FIRST_PARSE = 0, /* path will be "/etc" */
467 SIGNALED_PARSE = 1, /* path will be "/etc" */
468 SUBDIR_PARSE = 2, /* path will be derived from URL */
469};
Glenn L McGrath06e95652003-02-09 06:51:14 +0000470static void parse_conf(const char *path, int flag)
471{
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000472 /* internally used extra flag state */
473 enum { TRY_CURDIR_PARSE = 3 };
474
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000475 FILE *f;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000476 const char *filename;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000477 char buf[160];
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000478
Denis Vlasenko073214f2007-08-17 19:20:07 +0000479 /* discard old rules */
480 free_Htaccess_IP_list(&ip_a_d);
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000481 flg_deny_all = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000482 /* retain previous auth and mime config only for subdir parse */
483 if (flag != SUBDIR_PARSE) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000484 free_Htaccess_list(&mime_a);
Denis Vlasenko55a99402006-09-30 20:41:44 +0000485#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko073214f2007-08-17 19:20:07 +0000486 free_Htaccess_list(&g_auth);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000487#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000488#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000489 free_Htaccess_list(&script_i);
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000490#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000491 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000492
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000493 filename = opt_c_configFile;
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000494 if (flag == SUBDIR_PARSE || filename == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000495 filename = alloca(strlen(path) + sizeof(HTTPD_CONF) + 2);
496 sprintf((char *)filename, "%s/%s", path, HTTPD_CONF);
Glenn L McGrath393183d2003-05-26 14:07:50 +0000497 }
498
Denis Vlasenko5415c852008-07-21 23:05:26 +0000499 while ((f = fopen_for_read(filename)) == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000500 if (flag >= SUBDIR_PARSE) { /* SUBDIR or TRY_CURDIR */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000501 /* config file not found, no changes to config */
502 return;
503 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000504 if (flag == FIRST_PARSE) {
505 /* -c CONFFILE given, but CONFFILE doesn't exist? */
506 if (opt_c_configFile)
507 bb_simple_perror_msg_and_die(opt_c_configFile);
508 /* else: no -c, thus we looked at /etc/httpd.conf,
509 * and it's not there. try ./httpd.conf: */
510 }
511 flag = TRY_CURDIR_PARSE;
512 filename = HTTPD_CONF;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000513 }
514
Denis Vlasenko55a99402006-09-30 20:41:44 +0000515#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000516 /* in "/file:user:pass" lines, we prepend path in subdirs */
517 if (flag != SUBDIR_PARSE)
518 path = "";
Glenn L McGrath06e95652003-02-09 06:51:14 +0000519#endif
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000520 /* The lines can be:
521 *
522 * I:default_index_file
523 * H:http_home
524 * [AD]:IP[/mask] # allow/deny, * for wildcard
525 * Ennn:error.html # error page for status nnn
526 * P:/url:[http://]hostname[:port]/new/path # reverse proxy
527 * .ext:mime/type # mime type
528 * *.php:/path/php # run xxx.php through an interpreter
529 * /file:user:pass # username and password
530 */
531 while (fgets(buf, sizeof(buf), f) != NULL) {
532 unsigned strlen_buf;
533 unsigned char ch;
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200534 char *after_colon;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000535
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000536 { /* remove all whitespace, and # comments */
537 char *p, *p0;
538
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200539 p0 = buf;
540 /* skip non-whitespace beginning. Often the whole line
541 * is non-whitespace. We want this case to work fast,
542 * without needless copying, therefore we don't merge
543 * this operation into next while loop. */
544 while ((ch = *p0) != '\0' && ch != '\n' && ch != '#'
545 && ch != ' ' && ch != '\t'
546 ) {
547 p0++;
548 }
549 p = p0;
550 /* if we enter this loop, we have some whitespace.
551 * discard it */
552 while (ch != '\0' && ch != '\n' && ch != '#') {
553 if (ch != ' ' && ch != '\t') {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000554 *p++ = ch;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000555 }
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200556 ch = *++p0;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000557 }
558 *p = '\0';
559 strlen_buf = p - buf;
Denis Vlasenko00643ca2009-04-22 13:52:22 +0000560 if (strlen_buf == 0)
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200561 continue; /* empty line */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000562 }
563
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200564 after_colon = strchr(buf, ':');
Denis Vlasenko00643ca2009-04-22 13:52:22 +0000565 /* strange line? */
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200566 if (after_colon == NULL || *++after_colon == '\0')
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000567 goto config_error;
568
569 ch = (buf[0] & ~0x20); /* toupper if it's a letter */
570
571 if (ch == 'I') {
572 index_page = xstrdup(after_colon);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000573 continue;
574 }
575
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000576 /* do not allow jumping around using H in subdir's configs */
577 if (flag == FIRST_PARSE && ch == 'H') {
578 home_httpd = xstrdup(after_colon);
579 xchdir(home_httpd);
580 continue;
581 }
582
583 if (ch == 'A' || ch == 'D') {
584 Htaccess_IP *pip;
585
586 if (*after_colon == '*') {
587 if (ch == 'D') {
588 /* memorize "deny all" */
589 flg_deny_all = 1;
590 }
591 /* skip assumed "A:*", it is a default anyway */
592 continue;
593 }
594 /* store "allow/deny IP/mask" line */
595 pip = xzalloc(sizeof(*pip));
596 if (scan_ip_mask(after_colon, &pip->ip, &pip->mask)) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000597 /* IP{/mask} syntax error detected, protect all */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000598 ch = 'D';
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000599 pip->mask = 0;
600 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000601 pip->allow_deny = ch;
602 if (ch == 'D') {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000603 /* Deny:from_IP - prepend */
604 pip->next = ip_a_d;
605 ip_a_d = pip;
606 } else {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000607 /* A:from_IP - append (thus all D's precedes A's) */
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000608 Htaccess_IP *prev_IP = ip_a_d;
609 if (prev_IP == NULL) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000610 ip_a_d = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000611 } else {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000612 while (prev_IP->next)
613 prev_IP = prev_IP->next;
614 prev_IP->next = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000615 }
616 }
617 continue;
618 }
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000619
620#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000621 if (flag == FIRST_PARSE && ch == 'E') {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000622 unsigned i;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000623 int status = atoi(buf + 1); /* error status code */
624
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000625 if (status < HTTP_CONTINUE) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000626 goto config_error;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000627 }
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000628 /* then error page; find matching status */
629 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
630 if (http_response_type[i] == status) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000631 /* We chdir to home_httpd, thus no need to
632 * concat_path_file(home_httpd, after_colon)
633 * here */
634 http_error_page[i] = xstrdup(after_colon);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000635 break;
636 }
637 }
638 continue;
639 }
640#endif
641
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000642#if ENABLE_FEATURE_HTTPD_PROXY
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000643 if (flag == FIRST_PARSE && ch == 'P') {
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000644 /* P:/url:[http://]hostname[:port]/new/path */
645 char *url_from, *host_port, *url_to;
646 Htaccess_Proxy *proxy_entry;
647
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000648 url_from = after_colon;
649 host_port = strchr(after_colon, ':');
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000650 if (host_port == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000651 goto config_error;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000652 }
653 *host_port++ = '\0';
654 if (strncmp(host_port, "http://", 7) == 0)
Denis Vlasenko78ee7c82007-10-21 23:24:42 +0000655 host_port += 7;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000656 if (*host_port == '\0') {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000657 goto config_error;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000658 }
659 url_to = strchr(host_port, '/');
660 if (url_to == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000661 goto config_error;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000662 }
663 *url_to = '\0';
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000664 proxy_entry = xzalloc(sizeof(*proxy_entry));
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000665 proxy_entry->url_from = xstrdup(url_from);
666 proxy_entry->host_port = xstrdup(host_port);
667 *url_to = '/';
668 proxy_entry->url_to = xstrdup(url_to);
669 proxy_entry->next = proxy;
670 proxy = proxy_entry;
671 continue;
672 }
673#endif
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000674 /* the rest of directives are non-alphabetic,
675 * must avoid using "toupper'ed" ch */
676 ch = buf[0];
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000677
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000678 if (ch == '.' /* ".ext:mime/type" */
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000679#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000680 || (ch == '*' && buf[1] == '.') /* "*.php:/path/php" */
681#endif
682 ) {
683 char *p;
684 Htaccess *cur;
685
686 cur = xzalloc(sizeof(*cur) /* includes space for NUL */ + strlen_buf);
687 strcpy(cur->before_colon, buf);
688 p = cur->before_colon + (after_colon - buf);
689 p[-1] = '\0';
690 cur->after_colon = p;
691 if (ch == '.') {
692 /* .mime line: prepend to mime_a list */
693 cur->next = mime_a;
694 mime_a = cur;
695 }
696#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
697 else {
698 /* script interpreter line: prepend to script_i list */
699 cur->next = script_i;
700 script_i = cur;
701 }
702#endif
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000703 continue;
704 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000705
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000706#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
707 if (ch == '/') { /* "/file:user:pass" */
708 char *p;
709 Htaccess *cur;
710 unsigned file_len;
711
712 /* note: path is "" unless we are in SUBDIR parse,
Denis Vlasenkoc8d71092009-04-22 14:16:59 +0000713 * otherwise it does NOT start with "/" */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000714 cur = xzalloc(sizeof(*cur) /* includes space for NUL */
Denis Vlasenkoc8d71092009-04-22 14:16:59 +0000715 + 1 + strlen(path)
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000716 + strlen_buf
717 );
718 /* form "/path/file" */
Denis Vlasenkoc8d71092009-04-22 14:16:59 +0000719 sprintf(cur->before_colon, "/%s%.*s",
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000720 path,
Denys Vlasenkoa4bcbd02009-06-09 23:01:24 +0200721 (int) (after_colon - buf - 1), /* includes "/", but not ":" */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000722 buf);
723 /* canonicalize it */
724 p = bb_simplify_abs_path_inplace(cur->before_colon);
725 file_len = p - cur->before_colon;
726 /* add "user:pass" after NUL */
727 strcpy(++p, after_colon);
728 cur->after_colon = p;
729
730 /* insert cur into g_auth */
731 /* g_auth is sorted by decreased filename length */
732 {
733 Htaccess *auth, **authp;
734
735 authp = &g_auth;
736 while ((auth = *authp) != NULL) {
737 if (file_len >= strlen(auth->before_colon)) {
738 /* insert cur before auth */
739 cur->next = auth;
740 break;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000741 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000742 authp = &auth->next;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000743 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000744 *authp = cur;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000745 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000746 continue;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000747 }
748#endif /* BASIC_AUTH */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000749
750 /* the line is not recognized */
751 config_error:
752 bb_error_msg("config error '%s' in '%s'", buf, filename);
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000753 } /* while (fgets) */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000754
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000755 fclose(f);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000756}
757
Denis Vlasenko55a99402006-09-30 20:41:44 +0000758#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000759/*
760 * Given a string, html-encode special characters.
761 * This is used for the -e command line option to provide an easy way
762 * for scripts to encode result data without confusing browsers. The
763 * returned string pointer is memory allocated by malloc().
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000764 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000765 * Returns a pointer to the encoded string (malloced).
766 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000767static char *encodeString(const char *string)
768{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000769 /* take the simple route and encode everything */
770 /* could possibly scan once to get length. */
771 int len = strlen(string);
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000772 char *out = xmalloc(len * 6 + 1);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000773 char *p = out;
774 char ch;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000775
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000776 while ((ch = *string++)) {
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000777 /* very simple check for what to encode */
778 if (isalnum(ch))
779 *p++ = ch;
780 else
781 p += sprintf(p, "&#%d;", (unsigned char) ch);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000782 }
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000783 *p = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000784 return out;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000785}
Denis Vlasenkob3a07152006-11-16 18:04:43 +0000786#endif /* FEATURE_HTTPD_ENCODE_URL_STR */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000787
Denis Vlasenko073214f2007-08-17 19:20:07 +0000788/*
789 * Given a URL encoded string, convert it to plain ascii.
790 * Since decoding always makes strings smaller, the decode is done in-place.
Denis Vlasenkoc4523c22008-03-28 02:24:59 +0000791 * Thus, callers should xstrdup() the argument if they do not want the
Denis Vlasenko073214f2007-08-17 19:20:07 +0000792 * argument modified. The return is the original pointer, allowing this
793 * function to be easily used as arguments to other functions.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000794 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000795 * string The first string to decode.
796 * option_d 1 if called for httpd -d
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000797 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000798 * Returns a pointer to the decoded string (same as input).
799 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000800static unsigned hex_to_bin(unsigned char c)
801{
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000802 unsigned v;
803
804 v = c - '0';
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000805 if (v <= 9)
806 return v;
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000807 /* c | 0x20: letters to lower case, non-letters
808 * to (potentially different) non-letters */
809 v = (unsigned)(c | 0x20) - 'a';
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000810 if (v <= 5)
811 return v + 10;
812 return ~0;
813}
814/* For testing:
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000815void t(char c) { printf("'%c'(%u) %u\n", c, c, hex_to_bin(c)); }
816int main() { t(0x10); t(0x20); t('0'); t('9'); t('A'); t('F'); t('a'); t('f');
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000817t('0'-1); t('9'+1); t('A'-1); t('F'+1); t('a'-1); t('f'+1); return 0; }
818*/
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000819static char *decodeString(char *orig, int option_d)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000820{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000821 /* note that decoded string is always shorter than original */
822 char *string = orig;
823 char *ptr = string;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000824 char c;
Eric Andersena3bb3e62003-06-26 09:05:32 +0000825
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000826 while ((c = *ptr++) != '\0') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000827 unsigned v;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000828
829 if (option_d && c == '+') {
Denis Vlasenko601ae132006-11-28 23:37:46 +0000830 *string++ = ' ';
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000831 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000832 }
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000833 if (c != '%') {
834 *string++ = c;
835 continue;
836 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000837 v = hex_to_bin(ptr[0]);
838 if (v > 15) {
839 bad_hex:
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000840 if (!option_d)
841 return NULL;
842 *string++ = '%';
843 continue;
844 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000845 v = (v * 16) | hex_to_bin(ptr[1]);
846 if (v > 255)
847 goto bad_hex;
848 if (!option_d && (v == '/' || v == '\0')) {
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000849 /* caller takes it as indication of invalid
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000850 * (dangerous wrt exploits) chars */
851 return orig + 1;
852 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000853 *string++ = v;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000854 ptr += 2;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000855 }
856 *string = '\0';
857 return orig;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000858}
859
Denis Vlasenko55a99402006-09-30 20:41:44 +0000860#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000861/*
Denis Vlasenko073214f2007-08-17 19:20:07 +0000862 * Decode a base64 data stream as per rfc1521.
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000863 * Note that the rfc states that non base64 chars are to be ignored.
Denis Vlasenko073214f2007-08-17 19:20:07 +0000864 * Since the decode always results in a shorter size than the input,
865 * it is OK to pass the input arg as an output arg.
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000866 * Parameter: a pointer to a base64 encoded string.
867 * Decoded data is stored in-place.
868 */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000869static void decodeBase64(char *Data)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000870{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000871 const unsigned char *in = (const unsigned char *)Data;
Denis Vlasenko37c33162007-08-19 18:54:22 +0000872 /* The decoded size will be at most 3/4 the size of the encoded */
Denis Vlasenko088b9592007-04-18 21:14:46 +0000873 unsigned ch = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000874 int i = 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000875
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000876 while (*in) {
877 int t = *in++;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000878
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000879 if (t >= '0' && t <= '9')
880 t = t - '0' + 52;
881 else if (t >= 'A' && t <= 'Z')
882 t = t - 'A';
883 else if (t >= 'a' && t <= 'z')
884 t = t - 'a' + 26;
885 else if (t == '+')
886 t = 62;
887 else if (t == '/')
888 t = 63;
889 else if (t == '=')
890 t = 0;
891 else
892 continue;
Glenn L McGrath874e3382003-05-14 12:11:36 +0000893
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000894 ch = (ch << 6) | t;
895 i++;
896 if (i == 4) {
897 *Data++ = (char) (ch >> 16);
898 *Data++ = (char) (ch >> 8);
899 *Data++ = (char) ch;
900 i = 0;
901 }
902 }
Denis Vlasenko088b9592007-04-18 21:14:46 +0000903 *Data = '\0';
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000904}
905#endif
906
Denis Vlasenko073214f2007-08-17 19:20:07 +0000907/*
908 * Create a listen server socket on the designated port.
909 */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000910static int openServer(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000911{
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000912 unsigned n = bb_strtou(bind_addr_or_port, NULL, 10);
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000913 if (!errno && n && n <= 0xffff)
914 n = create_and_bind_stream_or_die(NULL, n);
915 else
916 n = create_and_bind_stream_or_die(bind_addr_or_port, 80);
917 xlisten(n, 9);
918 return n;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000919}
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000920
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000921/*
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000922 * Log the connection closure and exit.
923 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000924static void log_and_exit(void) NORETURN;
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000925static void log_and_exit(void)
926{
Denis Vlasenko921799d2007-08-19 19:28:09 +0000927 /* Paranoia. IE said to be buggy. It may send some extra data
928 * or be confused by us just exiting without SHUT_WR. Oh well. */
929 shutdown(1, SHUT_WR);
Denis Vlasenkofaf334a2008-05-18 15:14:36 +0000930 /* Why??
931 (this also messes up stdin when user runs httpd -i from terminal)
Denis Vlasenko921799d2007-08-19 19:28:09 +0000932 ndelay_on(0);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000933 while (read(STDIN_FILENO, iobuf, IOBUF_SIZE) > 0)
Denis Vlasenko921799d2007-08-19 19:28:09 +0000934 continue;
Denis Vlasenkofaf334a2008-05-18 15:14:36 +0000935 */
Denis Vlasenko921799d2007-08-19 19:28:09 +0000936
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000937 if (verbose > 2)
938 bb_error_msg("closed");
939 _exit(xfunc_error_retval);
940}
941
942/*
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000943 * Create and send HTTP response headers.
944 * The arguments are combined and sent as one write operation. Note that
945 * IE will puke big-time if the headers are not sent in one packet and the
946 * second packet is delayed for any reason.
947 * responseNum - the result code to send.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000948 */
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000949static void send_headers(int responseNum)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000950{
Denis Vlasenko073214f2007-08-17 19:20:07 +0000951 static const char RFC1123FMT[] ALIGN1 = "%a, %d %b %Y %H:%M:%S GMT";
952
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000953 const char *responseString = "";
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000954 const char *infoString = NULL;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000955 const char *mime_type;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000956#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko2f518b02008-02-21 00:12:07 +0000957 const char *error_page = NULL;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000958#endif
Denis Vlasenkob64eed62007-01-14 17:06:11 +0000959 unsigned i;
Denis Vlasenko04158e02009-02-02 10:48:06 +0000960 time_t timer = time(NULL);
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000961 char tmp_str[80];
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000962 int len;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000963
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000964 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
965 if (http_response_type[i] == responseNum) {
966 responseString = http_response[i].name;
967 infoString = http_response[i].info;
968#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
969 error_page = http_error_page[i];
970#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000971 break;
972 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000973 }
974 /* error message is HTML */
975 mime_type = responseNum == HTTP_OK ?
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000976 found_mime_type : "text/html";
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000977
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000978 if (verbose)
Denis Vlasenko241b1562007-08-17 19:18:47 +0000979 bb_error_msg("response:%u", responseNum);
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000980
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000981 /* emit the current date */
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000982 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&timer));
983 len = sprintf(iobuf,
Denis Vlasenko69981422007-01-07 21:25:12 +0000984 "HTTP/1.0 %d %s\r\nContent-type: %s\r\n"
985 "Date: %s\r\nConnection: close\r\n",
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000986 responseNum, responseString, mime_type, tmp_str);
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000987
Denis Vlasenko55a99402006-09-30 20:41:44 +0000988#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000989 if (responseNum == HTTP_UNAUTHORIZED) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000990 len += sprintf(iobuf + len,
Denis Vlasenko8e858e22007-03-07 09:35:43 +0000991 "WWW-Authenticate: Basic realm=\"%s\"\r\n",
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000992 g_realm);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000993 }
Glenn L McGrath3d2405c2003-02-10 22:28:21 +0000994#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000995 if (responseNum == HTTP_MOVED_TEMPORARILY) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000996 len += sprintf(iobuf + len, "Location: %s/%s%s\r\n",
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000997 found_moved_temporarily,
998 (g_query ? "?" : ""),
999 (g_query ? g_query : ""));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001000 }
Eric Andersen07f2fea2004-10-08 08:03:29 +00001001
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001002#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001003 if (error_page && access(error_page, R_OK) == 0) {
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001004 strcat(iobuf, "\r\n");
1005 len += 2;
1006
1007 if (DEBUG)
1008 fprintf(stderr, "headers: '%s'\n", iobuf);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001009 full_write(STDOUT_FILENO, iobuf, len);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001010 if (DEBUG)
1011 fprintf(stderr, "writing error page: '%s'\n", error_page);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001012 return send_file_and_exit(error_page, SEND_BODY);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001013 }
1014#endif
1015
Denis Vlasenkof4310172007-09-21 22:35:18 +00001016 if (file_size != -1) { /* file */
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001017 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&last_mod));
Denis Vlasenkof4310172007-09-21 22:35:18 +00001018#if ENABLE_FEATURE_HTTPD_RANGES
1019 if (responseNum == HTTP_PARTIAL_CONTENT) {
1020 len += sprintf(iobuf + len, "Content-Range: bytes %"OFF_FMT"d-%"OFF_FMT"d/%"OFF_FMT"d\r\n",
1021 range_start,
1022 range_end,
1023 file_size);
1024 file_size = range_end - range_start + 1;
1025 }
1026#endif
1027 len += sprintf(iobuf + len,
1028#if ENABLE_FEATURE_HTTPD_RANGES
1029 "Accept-Ranges: bytes\r\n"
1030#endif
1031 "Last-Modified: %s\r\n%s %"OFF_FMT"d\r\n",
1032 tmp_str,
1033 "Content-length:",
1034 file_size
1035 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001036 }
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001037 iobuf[len++] = '\r';
1038 iobuf[len++] = '\n';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001039 if (infoString) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001040 len += sprintf(iobuf + len,
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001041 "<HTML><HEAD><TITLE>%d %s</TITLE></HEAD>\n"
1042 "<BODY><H1>%d %s</H1>\n%s\n</BODY></HTML>\n",
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001043 responseNum, responseString,
1044 responseNum, responseString, infoString);
1045 }
Denis Vlasenko6c85ddc2006-11-21 00:08:39 +00001046 if (DEBUG)
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001047 fprintf(stderr, "headers: '%s'\n", iobuf);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001048 if (full_write(STDOUT_FILENO, iobuf, len) != len) {
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001049 if (verbose > 1)
1050 bb_perror_msg("error");
1051 log_and_exit();
1052 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001053}
1054
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001055static void send_headers_and_exit(int responseNum) NORETURN;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001056static void send_headers_and_exit(int responseNum)
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001057{
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001058 send_headers(responseNum);
1059 log_and_exit();
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001060}
1061
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001062/*
1063 * Read from the socket until '\n' or EOF. '\r' chars are removed.
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001064 * '\n' is replaced with NUL.
1065 * Return number of characters read or 0 if nothing is read
1066 * ('\r' and '\n' are not counted).
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001067 * Data is returned in iobuf.
1068 */
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001069static int get_line(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001070{
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001071 int count = 0;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001072 char c;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001073
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001074 alarm(HEADER_READ_TIMEOUT);
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001075 while (1) {
1076 if (hdr_cnt <= 0) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001077 hdr_cnt = safe_read(STDIN_FILENO, hdr_buf, sizeof(hdr_buf));
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001078 if (hdr_cnt <= 0)
1079 break;
1080 hdr_ptr = hdr_buf;
1081 }
1082 iobuf[count] = c = *hdr_ptr++;
1083 hdr_cnt--;
1084
1085 if (c == '\r')
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001086 continue;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001087 if (c == '\n') {
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001088 iobuf[count] = '\0';
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001089 break;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001090 }
Denis Vlasenko921799d2007-08-19 19:28:09 +00001091 if (count < (IOBUF_SIZE - 1)) /* check overflow */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001092 count++;
1093 }
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001094 return count;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001095}
1096
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001097#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001098
1099/* gcc 4.2.1 fares better with NOINLINE */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001100static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len) NORETURN;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001101static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len)
1102{
1103 enum { FROM_CGI = 1, TO_CGI = 2 }; /* indexes in pfd[] */
1104 struct pollfd pfd[3];
1105 int out_cnt; /* we buffer a bit of initial CGI output */
1106 int count;
1107
1108 /* iobuf is used for CGI -> network data,
1109 * hdr_buf is for network -> CGI data (POSTDATA) */
1110
1111 /* If CGI dies, we still want to correctly finish reading its output
1112 * and send it to the peer. So please no SIGPIPEs! */
1113 signal(SIGPIPE, SIG_IGN);
1114
Denis Vlasenko4a457562007-10-14 02:34:20 +00001115 // We inconsistently handle a case when more POSTDATA from network
1116 // is coming than we expected. We may give *some part* of that
1117 // extra data to CGI.
1118
1119 //if (hdr_cnt > post_len) {
1120 // /* We got more POSTDATA from network than we expected */
1121 // hdr_cnt = post_len;
1122 //}
1123 post_len -= hdr_cnt;
1124 /* post_len - number of POST bytes not yet read from network */
1125
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001126 /* NB: breaking out of this loop jumps to log_and_exit() */
1127 out_cnt = 0;
1128 while (1) {
1129 memset(pfd, 0, sizeof(pfd));
1130
1131 pfd[FROM_CGI].fd = fromCgi_rd;
1132 pfd[FROM_CGI].events = POLLIN;
1133
1134 if (toCgi_wr) {
1135 pfd[TO_CGI].fd = toCgi_wr;
1136 if (hdr_cnt > 0) {
1137 pfd[TO_CGI].events = POLLOUT;
1138 } else if (post_len > 0) {
1139 pfd[0].events = POLLIN;
1140 } else {
1141 /* post_len <= 0 && hdr_cnt <= 0:
1142 * no more POST data to CGI,
1143 * let CGI see EOF on CGI's stdin */
1144 close(toCgi_wr);
1145 toCgi_wr = 0;
1146 }
1147 }
1148
1149 /* Now wait on the set of sockets */
Denis Vlasenko5d61e712007-09-27 10:09:59 +00001150 count = safe_poll(pfd, 3, -1);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001151 if (count <= 0) {
1152#if 0
Denis Vlasenkofb0eba72008-01-02 19:55:04 +00001153 if (safe_waitpid(pid, &status, WNOHANG) <= 0) {
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001154 /* Weird. CGI didn't exit and no fd's
1155 * are ready, yet poll returned?! */
1156 continue;
1157 }
1158 if (DEBUG && WIFEXITED(status))
1159 bb_error_msg("CGI exited, status=%d", WEXITSTATUS(status));
1160 if (DEBUG && WIFSIGNALED(status))
1161 bb_error_msg("CGI killed, signal=%d", WTERMSIG(status));
1162#endif
1163 break;
1164 }
1165
1166 if (pfd[TO_CGI].revents) {
1167 /* hdr_cnt > 0 here due to the way pfd[TO_CGI].events set */
1168 /* Have data from peer and can write to CGI */
1169 count = safe_write(toCgi_wr, hdr_ptr, hdr_cnt);
1170 /* Doesn't happen, we dont use nonblocking IO here
1171 *if (count < 0 && errno == EAGAIN) {
1172 * ...
1173 *} else */
1174 if (count > 0) {
1175 hdr_ptr += count;
1176 hdr_cnt -= count;
1177 } else {
1178 /* EOF/broken pipe to CGI, stop piping POST data */
1179 hdr_cnt = post_len = 0;
1180 }
1181 }
1182
1183 if (pfd[0].revents) {
1184 /* post_len > 0 && hdr_cnt == 0 here */
1185 /* We expect data, prev data portion is eaten by CGI
1186 * and there *is* data to read from the peer
1187 * (POSTDATA) */
1188 //count = post_len > (int)sizeof(hdr_buf) ? (int)sizeof(hdr_buf) : post_len;
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001189 //count = safe_read(STDIN_FILENO, hdr_buf, count);
1190 count = safe_read(STDIN_FILENO, hdr_buf, sizeof(hdr_buf));
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001191 if (count > 0) {
1192 hdr_cnt = count;
1193 hdr_ptr = hdr_buf;
1194 post_len -= count;
1195 } else {
1196 /* no more POST data can be read */
1197 post_len = 0;
1198 }
1199 }
1200
1201 if (pfd[FROM_CGI].revents) {
1202 /* There is something to read from CGI */
1203 char *rbuf = iobuf;
1204
1205 /* Are we still buffering CGI output? */
1206 if (out_cnt >= 0) {
1207 /* HTTP_200[] has single "\r\n" at the end.
1208 * According to http://hoohoo.ncsa.uiuc.edu/cgi/out.html,
1209 * CGI scripts MUST send their own header terminated by
1210 * empty line, then data. That's why we have only one
1211 * <cr><lf> pair here. We will output "200 OK" line
1212 * if needed, but CGI still has to provide blank line
1213 * between header and body */
1214
1215 /* Must use safe_read, not full_read, because
1216 * CGI may output a few first bytes and then wait
1217 * for POSTDATA without closing stdout.
1218 * With full_read we may wait here forever. */
1219 count = safe_read(fromCgi_rd, rbuf + out_cnt, PIPE_BUF - 8);
1220 if (count <= 0) {
1221 /* eof (or error) and there was no "HTTP",
1222 * so write it, then write received data */
1223 if (out_cnt) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001224 full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1);
1225 full_write(STDOUT_FILENO, rbuf, out_cnt);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001226 }
1227 break; /* CGI stdout is closed, exiting */
1228 }
1229 out_cnt += count;
1230 count = 0;
1231 /* "Status" header format is: "Status: 302 Redirected\r\n" */
1232 if (out_cnt >= 8 && memcmp(rbuf, "Status: ", 8) == 0) {
1233 /* send "HTTP/1.0 " */
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001234 if (full_write(STDOUT_FILENO, HTTP_200, 9) != 9)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001235 break;
1236 rbuf += 8; /* skip "Status: " */
1237 count = out_cnt - 8;
1238 out_cnt = -1; /* buffering off */
1239 } else if (out_cnt >= 4) {
1240 /* Did CGI add "HTTP"? */
1241 if (memcmp(rbuf, HTTP_200, 4) != 0) {
1242 /* there is no "HTTP", do it ourself */
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001243 if (full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1) != sizeof(HTTP_200)-1)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001244 break;
1245 }
1246 /* Commented out:
1247 if (!strstr(rbuf, "ontent-")) {
1248 full_write(s, "Content-type: text/plain\r\n\r\n", 28);
1249 }
1250 * Counter-example of valid CGI without Content-type:
1251 * echo -en "HTTP/1.0 302 Found\r\n"
1252 * echo -en "Location: http://www.busybox.net\r\n"
1253 * echo -en "\r\n"
1254 */
1255 count = out_cnt;
1256 out_cnt = -1; /* buffering off */
1257 }
1258 } else {
1259 count = safe_read(fromCgi_rd, rbuf, PIPE_BUF);
1260 if (count <= 0)
1261 break; /* eof (or error) */
1262 }
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001263 if (full_write(STDOUT_FILENO, rbuf, count) != count)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001264 break;
1265 if (DEBUG)
1266 fprintf(stderr, "cgi read %d bytes: '%.*s'\n", count, count, rbuf);
1267 } /* if (pfd[FROM_CGI].revents) */
1268 } /* while (1) */
1269 log_and_exit();
1270}
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001271#endif
1272
1273#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001274
Denis Vlasenko921799d2007-08-19 19:28:09 +00001275static void setenv1(const char *name, const char *value)
1276{
1277 setenv(name, value ? value : "", 1);
1278}
1279
Denis Vlasenko241b1562007-08-17 19:18:47 +00001280/*
1281 * Spawn CGI script, forward CGI's stdin/out <=> network
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001282 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001283 * Environment variables are set up and the script is invoked with pipes
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001284 * for stdin/stdout. If a POST is being done the script is fed the POST
Denis Vlasenko241b1562007-08-17 19:18:47 +00001285 * data in addition to setting the QUERY_STRING variable (for GETs or POSTs).
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001286 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001287 * Parameters:
1288 * const char *url The requested URL (with leading /).
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001289 * int post_len Length of the POST body.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001290 * const char *cookie For set HTTP_COOKIE.
1291 * const char *content_type For set CONTENT_TYPE.
1292 */
1293static void send_cgi_and_exit(
1294 const char *url,
1295 const char *request,
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001296 int post_len,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001297 const char *cookie,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001298 const char *content_type) NORETURN;
Denis Vlasenko241b1562007-08-17 19:18:47 +00001299static void send_cgi_and_exit(
1300 const char *url,
1301 const char *request,
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001302 int post_len,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001303 const char *cookie,
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001304 const char *content_type)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001305{
Denis Vlasenko37188322008-02-16 13:20:56 +00001306 struct fd_pair fromCgi; /* CGI -> httpd pipe */
1307 struct fd_pair toCgi; /* httpd -> CGI pipe */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001308 char *script;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001309 int pid;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001310
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001311 /* Make a copy. NB: caller guarantees:
1312 * url[0] == '/', url[1] != '/' */
1313 url = xstrdup(url);
1314
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001315 /*
1316 * We are mucking with environment _first_ and then vfork/exec,
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001317 * this allows us to use vfork safely. Parent doesn't care about
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001318 * these environment changes anyway.
1319 */
1320
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001321 /* Check for [dirs/]script.cgi/PATH_INFO */
1322 script = (char*)url;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001323 while ((script = strchr(script + 1, '/')) != NULL) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001324 struct stat sb;
1325
1326 *script = '\0';
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001327 if (!is_directory(url + 1, 1, &sb)) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001328 /* not directory, found script.cgi/PATH_INFO */
1329 *script = '/';
1330 break;
1331 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001332 *script = '/'; /* is directory, find next '/' */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001333 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001334 setenv1("PATH_INFO", script); /* set to /PATH_INFO or "" */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001335 setenv1("REQUEST_METHOD", request);
1336 if (g_query) {
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001337 putenv(xasprintf("%s=%s?%s", "REQUEST_URI", url, g_query));
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001338 } else {
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001339 setenv1("REQUEST_URI", url);
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001340 }
1341 if (script != NULL)
1342 *script = '\0'; /* cut off /PATH_INFO */
1343
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001344 /* SCRIPT_FILENAME is required by PHP in CGI mode */
1345 if (home_httpd[0] == '/') {
1346 char *fullpath = concat_path_file(home_httpd, url);
1347 setenv1("SCRIPT_FILENAME", fullpath);
1348 }
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001349 /* set SCRIPT_NAME as full path: /cgi-bin/dirs/script.cgi */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001350 setenv1("SCRIPT_NAME", url);
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001351 /* http://hoohoo.ncsa.uiuc.edu/cgi/env.html:
1352 * QUERY_STRING: The information which follows the ? in the URL
1353 * which referenced this script. This is the query information.
1354 * It should not be decoded in any fashion. This variable
1355 * should always be set when there is query information,
1356 * regardless of command line decoding. */
1357 /* (Older versions of bbox seem to do some decoding) */
1358 setenv1("QUERY_STRING", g_query);
1359 putenv((char*)"SERVER_SOFTWARE=busybox httpd/"BB_VER);
1360 putenv((char*)"SERVER_PROTOCOL=HTTP/1.0");
1361 putenv((char*)"GATEWAY_INTERFACE=CGI/1.1");
1362 /* Having _separate_ variables for IP and port defeats
1363 * the purpose of having socket abstraction. Which "port"
1364 * are you using on Unix domain socket?
1365 * IOW - REMOTE_PEER="1.2.3.4:56" makes much more sense.
1366 * Oh well... */
1367 {
1368 char *p = rmt_ip_str ? rmt_ip_str : (char*)"";
1369 char *cp = strrchr(p, ':');
1370 if (ENABLE_FEATURE_IPV6 && cp && strchr(cp, ']'))
1371 cp = NULL;
1372 if (cp) *cp = '\0'; /* delete :PORT */
1373 setenv1("REMOTE_ADDR", p);
Denis Vlasenko37c33162007-08-19 18:54:22 +00001374 if (cp) {
1375 *cp = ':';
1376#if ENABLE_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
1377 setenv1("REMOTE_PORT", cp + 1);
1378#endif
1379 }
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001380 }
1381 setenv1("HTTP_USER_AGENT", user_agent);
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +00001382 if (http_accept)
1383 setenv1("HTTP_ACCEPT", http_accept);
1384 if (http_accept_language)
1385 setenv1("HTTP_ACCEPT_LANGUAGE", http_accept_language);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001386 if (post_len)
1387 putenv(xasprintf("CONTENT_LENGTH=%d", post_len));
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001388 if (cookie)
1389 setenv1("HTTP_COOKIE", cookie);
1390 if (content_type)
1391 setenv1("CONTENT_TYPE", content_type);
1392#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1393 if (remoteuser) {
1394 setenv1("REMOTE_USER", remoteuser);
1395 putenv((char*)"AUTH_TYPE=Basic");
1396 }
1397#endif
1398 if (referer)
1399 setenv1("HTTP_REFERER", referer);
Denis Vlasenko9d1d4c02008-11-22 20:29:35 +00001400 setenv1("HTTP_HOST", host); /* set to "" if NULL */
Denis Vlasenkocbb4e612009-03-18 20:00:46 +00001401 /* setenv1("SERVER_NAME", safe_gethostname()); - don't do this,
1402 * just run "env SERVER_NAME=xyz httpd ..." instead */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001403
Denis Vlasenko37188322008-02-16 13:20:56 +00001404 xpiped_pair(fromCgi);
1405 xpiped_pair(toCgi);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001406
Denis Vlasenko80281fe2007-03-07 22:16:38 +00001407 pid = vfork();
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001408 if (pid < 0) {
1409 /* TODO: log perror? */
1410 log_and_exit();
1411 }
Denis Vlasenkof7996f32007-01-11 17:20:00 +00001412
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001413 if (!pid) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001414 /* Child process */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001415 char *argv[3];
1416
Denis Vlasenko241b1562007-08-17 19:18:47 +00001417 xfunc_error_retval = 242;
1418
Denis Vlasenko284d0fa2008-02-16 13:18:17 +00001419 /* NB: close _first_, then move fds! */
1420 close(toCgi.wr);
1421 close(fromCgi.rd);
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001422 xmove_fd(toCgi.rd, 0); /* replace stdin with the pipe */
1423 xmove_fd(fromCgi.wr, 1); /* replace stdout with the pipe */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001424 /* User seeing stderr output can be a security problem.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001425 * If CGI really wants that, it can always do dup itself. */
Denis Vlasenko1ec15cd2007-08-11 20:20:43 +00001426 /* dup2(1, 2); */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001427
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001428 /* Chdiring to script's dir */
1429 script = strrchr(url, '/');
1430 if (script != url) { /* paranoia */
1431 *script = '\0';
1432 if (chdir(url + 1) != 0) {
1433 bb_perror_msg("chdir %s", url + 1);
1434 goto error_execing_cgi;
1435 }
1436 // not needed: *script = '/';
1437 }
1438 script++;
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001439
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001440 /* set argv[0] to name without path */
1441 argv[0] = script;
1442 argv[1] = NULL;
Denis Vlasenkofc213052008-02-11 16:26:22 +00001443
1444#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001445 {
1446 char *suffix = strrchr(script, '.');
Denis Vlasenkofc213052008-02-11 16:26:22 +00001447
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001448 if (suffix) {
1449 Htaccess *cur;
1450 for (cur = script_i; cur; cur = cur->next) {
1451 if (strcmp(cur->before_colon + 1, suffix) == 0) {
1452 /* found interpreter name */
1453 argv[0] = cur->after_colon;
1454 argv[1] = script;
1455 argv[2] = NULL;
1456 break;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001457 }
1458 }
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001459 }
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001460 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001461#endif
1462 /* restore default signal dispositions for CGI process */
1463 bb_signals(0
1464 | (1 << SIGCHLD)
1465 | (1 << SIGPIPE)
1466 | (1 << SIGHUP)
1467 , SIG_DFL);
1468
1469 /* _NOT_ execvp. We do not search PATH. argv[0] is a filename
1470 * without any dir components and will only match a file
1471 * in the current directory */
1472 execv(argv[0], argv);
1473 if (verbose)
1474 bb_perror_msg("exec %s", argv[0]);
1475 error_execing_cgi:
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001476 /* send to stdout
1477 * (we are CGI here, our stdout is pumped to the net) */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001478 send_headers_and_exit(HTTP_NOT_FOUND);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001479 } /* end child */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001480
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001481 /* Parent process */
1482
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001483 /* Restore variables possibly changed by child */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001484 xfunc_error_retval = 0;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001485
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001486 /* Pump data */
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001487 close(fromCgi.wr);
1488 close(toCgi.rd);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001489 cgi_io_loop_and_exit(fromCgi.rd, toCgi.wr, post_len);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001490}
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001491
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001492#endif /* FEATURE_HTTPD_CGI */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001493
Denis Vlasenko241b1562007-08-17 19:18:47 +00001494/*
1495 * Send a file response to a HTTP request, and exit
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00001496 *
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001497 * Parameters:
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001498 * const char *url The requested URL (with leading /).
1499 * what What to send (headers/body/both).
Denis Vlasenko241b1562007-08-17 19:18:47 +00001500 */
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001501static NOINLINE void send_file_and_exit(const char *url, int what)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001502{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001503 static const char *const suffixTable[] = {
1504 /* Warning: shorter equivalent suffix in one line must be first */
1505 ".htm.html", "text/html",
1506 ".jpg.jpeg", "image/jpeg",
1507 ".gif", "image/gif",
1508 ".png", "image/png",
1509 ".txt.h.c.cc.cpp", "text/plain",
1510 ".css", "text/css",
1511 ".wav", "audio/wav",
1512 ".avi", "video/x-msvideo",
1513 ".qt.mov", "video/quicktime",
1514 ".mpe.mpeg", "video/mpeg",
1515 ".mid.midi", "audio/midi",
1516 ".mp3", "audio/mpeg",
1517#if 0 /* unpopular */
1518 ".au", "audio/basic",
1519 ".pac", "application/x-ns-proxy-autoconfig",
1520 ".vrml.wrl", "model/vrml",
1521#endif
1522 NULL
1523 };
1524
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001525 char *suffix;
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001526 int fd;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001527 const char *const *table;
1528 const char *try_suffix;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001529 ssize_t count;
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001530
1531 fd = open(url, O_RDONLY);
1532 if (fd < 0) {
1533 if (DEBUG)
1534 bb_perror_msg("can't open '%s'", url);
1535 /* Error pages are sent by using send_file_and_exit(SEND_BODY).
1536 * IOW: it is unsafe to call send_headers_and_exit
1537 * if what is SEND_BODY! Can recurse! */
1538 if (what != SEND_BODY)
1539 send_headers_and_exit(HTTP_NOT_FOUND);
1540 log_and_exit();
1541 }
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001542 /* If you want to know about EPIPE below
1543 * (happens if you abort downloads from local httpd): */
1544 signal(SIGPIPE, SIG_IGN);
1545
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001546 suffix = strrchr(url, '.');
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001547
Denis Vlasenko073214f2007-08-17 19:20:07 +00001548 /* If not found, set default as "application/octet-stream"; */
1549 found_mime_type = "application/octet-stream";
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001550 if (suffix) {
Denis Vlasenko073214f2007-08-17 19:20:07 +00001551 Htaccess *cur;
Denis Vlasenko073214f2007-08-17 19:20:07 +00001552 for (table = suffixTable; *table; table += 2) {
1553 try_suffix = strstr(table[0], suffix);
1554 if (try_suffix) {
1555 try_suffix += strlen(suffix);
1556 if (*try_suffix == '\0' || *try_suffix == '.') {
1557 found_mime_type = table[1];
1558 break;
1559 }
1560 }
1561 }
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001562 for (cur = mime_a; cur; cur = cur->next) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001563 if (strcmp(cur->before_colon, suffix) == 0) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001564 found_mime_type = cur->after_colon;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001565 break;
1566 }
1567 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001568 }
Bernhard Reutner-Fischer62851172009-05-03 18:53:22 +02001569
1570 if (DEBUG)
1571 bb_error_msg("sending file '%s' content-type: %s",
1572 url, found_mime_type);
1573
Denis Vlasenkof4310172007-09-21 22:35:18 +00001574#if ENABLE_FEATURE_HTTPD_RANGES
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001575 if (what == SEND_BODY)
Denis Vlasenkof4310172007-09-21 22:35:18 +00001576 range_start = 0; /* err pages and ranges don't mix */
1577 range_len = MAXINT(off_t);
1578 if (range_start) {
1579 if (!range_end) {
1580 range_end = file_size - 1;
1581 }
1582 if (range_end < range_start
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001583 || lseek(fd, range_start, SEEK_SET) != range_start
Denis Vlasenkof4310172007-09-21 22:35:18 +00001584 ) {
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001585 lseek(fd, 0, SEEK_SET);
Denis Vlasenkof4310172007-09-21 22:35:18 +00001586 range_start = 0;
1587 } else {
1588 range_len = range_end - range_start + 1;
1589 send_headers(HTTP_PARTIAL_CONTENT);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001590 what = SEND_BODY;
Denis Vlasenkof4310172007-09-21 22:35:18 +00001591 }
1592 }
1593#endif
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001594 if (what & SEND_HEADERS)
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001595 send_headers(HTTP_OK);
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001596#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001597 {
1598 off_t offset = range_start;
1599 while (1) {
1600 /* sz is rounded down to 64k */
1601 ssize_t sz = MAXINT(ssize_t) - 0xffff;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001602 IF_FEATURE_HTTPD_RANGES(if (sz > range_len) sz = range_len;)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001603 count = sendfile(STDOUT_FILENO, fd, &offset, sz);
1604 if (count < 0) {
1605 if (offset == range_start)
1606 break; /* fall back to read/write loop */
1607 goto fin;
1608 }
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001609 IF_FEATURE_HTTPD_RANGES(range_len -= sz;)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001610 if (count == 0 || range_len == 0)
1611 log_and_exit();
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001612 }
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001613 }
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001614#endif
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001615 while ((count = safe_read(fd, iobuf, IOBUF_SIZE)) > 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00001616 ssize_t n;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001617 IF_FEATURE_HTTPD_RANGES(if (count > range_len) count = range_len;)
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001618 n = full_write(STDOUT_FILENO, iobuf, count);
Denis Vlasenko241b1562007-08-17 19:18:47 +00001619 if (count != n)
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001620 break;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001621 IF_FEATURE_HTTPD_RANGES(range_len -= count;)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001622 if (range_len == 0)
Denis Vlasenkof4310172007-09-21 22:35:18 +00001623 break;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001624 }
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001625 if (count < 0) {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001626 IF_FEATURE_HTTPD_USE_SENDFILE(fin:)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001627 if (verbose > 1)
1628 bb_perror_msg("error");
1629 }
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001630 log_and_exit();
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001631}
1632
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001633static int checkPermIP(void)
1634{
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001635 Htaccess_IP *cur;
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001636
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001637 for (cur = ip_a_d; cur; cur = cur->next) {
Denis Vlasenkob64eed62007-01-14 17:06:11 +00001638#if DEBUG
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001639 fprintf(stderr,
1640 "checkPermIP: '%s' ? '%u.%u.%u.%u/%u.%u.%u.%u'\n",
1641 rmt_ip_str,
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00001642 (unsigned char)(cur->ip >> 24),
1643 (unsigned char)(cur->ip >> 16),
1644 (unsigned char)(cur->ip >> 8),
1645 (unsigned char)(cur->ip),
1646 (unsigned char)(cur->mask >> 24),
1647 (unsigned char)(cur->mask >> 16),
1648 (unsigned char)(cur->mask >> 8),
1649 (unsigned char)(cur->mask)
1650 );
Denis Vlasenko3bba5452006-12-30 17:57:03 +00001651#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001652 if ((rmt_ip & cur->mask) == cur->ip)
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001653 return (cur->allow_deny == 'A'); /* A -> 1 */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001654 }
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001655
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001656 return !flg_deny_all; /* depends on whether we saw "D:*" */
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001657}
1658
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001659#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko073214f2007-08-17 19:20:07 +00001660/*
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001661 * Config file entries are of the form "/<path>:<user>:<passwd>".
1662 * If config file has no prefix match for path, access is allowed.
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001663 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001664 * path The file path
1665 * user_and_passwd "user:passwd" to validate
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001666 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001667 * Returns 1 if user_and_passwd is OK.
Denis Vlasenko073214f2007-08-17 19:20:07 +00001668 */
Denis Vlasenko25b46302008-06-13 09:55:13 +00001669static int check_user_passwd(const char *path, const char *user_and_passwd)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001670{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001671 Htaccess *cur;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001672 const char *prev = NULL;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001673
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001674 for (cur = g_auth; cur; cur = cur->next) {
Denis Vlasenko25b46302008-06-13 09:55:13 +00001675 const char *dir_prefix;
1676 size_t len;
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001677
Denis Vlasenko25b46302008-06-13 09:55:13 +00001678 dir_prefix = cur->before_colon;
1679
1680 /* WHY? */
1681 /* If already saw a match, don't accept other different matches */
1682 if (prev && strcmp(prev, dir_prefix) != 0)
1683 continue;
1684
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001685 if (DEBUG)
Denis Vlasenko25b46302008-06-13 09:55:13 +00001686 fprintf(stderr, "checkPerm: '%s' ? '%s'\n", dir_prefix, user_and_passwd);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001687
Denis Vlasenko25b46302008-06-13 09:55:13 +00001688 /* If it's not a prefix match, continue searching */
1689 len = strlen(dir_prefix);
1690 if (len != 1 /* dir_prefix "/" matches all, don't need to check */
1691 && (strncmp(dir_prefix, path, len) != 0
1692 || (path[len] != '/' && path[len] != '\0'))
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001693 ) {
Denis Vlasenko25b46302008-06-13 09:55:13 +00001694 continue;
1695 }
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001696
Denis Vlasenko25b46302008-06-13 09:55:13 +00001697 /* Path match found */
1698 prev = dir_prefix;
Eric Andersen35e643b2003-07-28 07:40:39 +00001699
Denis Vlasenko25b46302008-06-13 09:55:13 +00001700 if (ENABLE_FEATURE_HTTPD_AUTH_MD5) {
1701 char *md5_passwd;
1702
1703 md5_passwd = strchr(cur->after_colon, ':');
1704 if (md5_passwd && md5_passwd[1] == '$' && md5_passwd[2] == '1'
1705 && md5_passwd[3] == '$' && md5_passwd[4]
1706 ) {
1707 char *encrypted;
1708 int r, user_len_p1;
1709
1710 md5_passwd++;
1711 user_len_p1 = md5_passwd - cur->after_colon;
1712 /* comparing "user:" */
1713 if (strncmp(cur->after_colon, user_and_passwd, user_len_p1) != 0) {
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001714 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001715 }
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001716
Denis Vlasenko25b46302008-06-13 09:55:13 +00001717 encrypted = pw_encrypt(
1718 user_and_passwd + user_len_p1 /* cleartext pwd from user */,
1719 md5_passwd /*salt */, 1 /* cleanup */);
1720 r = strcmp(encrypted, md5_passwd);
1721 free(encrypted);
1722 if (r == 0)
1723 goto set_remoteuser_var; /* Ok */
1724 continue;
1725 }
1726 }
1727
1728 /* Comparing plaintext "user:pass" in one go */
1729 if (strcmp(cur->after_colon, user_and_passwd) == 0) {
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001730 set_remoteuser_var:
Denis Vlasenko25b46302008-06-13 09:55:13 +00001731 remoteuser = xstrndup(user_and_passwd,
1732 strchrnul(user_and_passwd, ':') - user_and_passwd);
1733 return 1; /* Ok */
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001734 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001735 } /* for */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001736
Denis Vlasenko25b46302008-06-13 09:55:13 +00001737 /* 0(bad) if prev is set: matches were found but passwd was wrong */
1738 return (prev == NULL);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001739}
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001740#endif /* FEATURE_HTTPD_BASIC_AUTH */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001741
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001742#if ENABLE_FEATURE_HTTPD_PROXY
1743static Htaccess_Proxy *find_proxy_entry(const char *url)
1744{
1745 Htaccess_Proxy *p;
1746 for (p = proxy; p; p = p->next) {
1747 if (strncmp(url, p->url_from, strlen(p->url_from)) == 0)
1748 return p;
1749 }
1750 return NULL;
1751}
1752#endif
1753
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001754/*
1755 * Handle timeouts
1756 */
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001757static void send_REQUEST_TIMEOUT_and_exit(int sig) NORETURN;
1758static void send_REQUEST_TIMEOUT_and_exit(int sig UNUSED_PARAM)
Eric Andersen07f2fea2004-10-08 08:03:29 +00001759{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001760 send_headers_and_exit(HTTP_REQUEST_TIMEOUT);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001761}
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001762
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001763/*
1764 * Handle an incoming http request and exit.
1765 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001766static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr) NORETURN;
Denis Vlasenko367960b2007-08-18 14:20:21 +00001767static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001768{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001769 static const char request_GET[] ALIGN1 = "GET";
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001770 struct stat sb;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001771 char *urlcopy;
1772 char *urlp;
1773 char *tptr;
Denis Vlasenko55a99402006-09-30 20:41:44 +00001774#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001775 static const char request_HEAD[] ALIGN1 = "HEAD";
Denis Vlasenko073214f2007-08-17 19:20:07 +00001776 const char *prequest;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001777 char *cookie = NULL;
1778 char *content_type = NULL;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001779 unsigned long length = 0;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001780#elif ENABLE_FEATURE_HTTPD_PROXY
1781#define prequest request_GET
1782 unsigned long length = 0;
1783#endif
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001784#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1785 smallint authorized = -1;
1786#endif
1787 smallint ip_allowed;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001788 char http_major_version;
1789#if ENABLE_FEATURE_HTTPD_PROXY
1790 char http_minor_version;
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001791 char *header_buf = header_buf; /* for gcc */
1792 char *header_ptr = header_ptr;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001793 Htaccess_Proxy *proxy_entry;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001794#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001795
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001796 /* Allocation of iobuf is postponed until now
1797 * (IOW, server process doesn't need to waste 8k) */
Denis Vlasenko921799d2007-08-19 19:28:09 +00001798 iobuf = xmalloc(IOBUF_SIZE);
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001799
Denis Vlasenko367960b2007-08-18 14:20:21 +00001800 rmt_ip = 0;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001801 if (fromAddr->u.sa.sa_family == AF_INET) {
1802 rmt_ip = ntohl(fromAddr->u.sin.sin_addr.s_addr);
Denis Vlasenko367960b2007-08-18 14:20:21 +00001803 }
Denis Vlasenko35465a32007-09-25 11:58:33 +00001804#if ENABLE_FEATURE_IPV6
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001805 if (fromAddr->u.sa.sa_family == AF_INET6
1806 && fromAddr->u.sin6.sin6_addr.s6_addr32[0] == 0
1807 && fromAddr->u.sin6.sin6_addr.s6_addr32[1] == 0
1808 && ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[2]) == 0xffff)
1809 rmt_ip = ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[3]);
Denis Vlasenko35465a32007-09-25 11:58:33 +00001810#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00001811 if (ENABLE_FEATURE_HTTPD_CGI || DEBUG || verbose) {
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00001812 /* NB: can be NULL (user runs httpd -i by hand?) */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001813 rmt_ip_str = xmalloc_sockaddr2dotted(&fromAddr->u.sa);
Denis Vlasenko367960b2007-08-18 14:20:21 +00001814 }
1815 if (verbose) {
1816 /* this trick makes -v logging much simpler */
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00001817 if (rmt_ip_str)
1818 applet_name = rmt_ip_str;
Denis Vlasenko367960b2007-08-18 14:20:21 +00001819 if (verbose > 2)
1820 bb_error_msg("connected");
1821 }
1822
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001823 /* Install timeout handler. get_line() needs it. */
1824 signal(SIGALRM, send_REQUEST_TIMEOUT_and_exit);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001825
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001826 if (!get_line()) /* EOF or error or empty line */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001827 send_headers_and_exit(HTTP_BAD_REQUEST);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001828
Denis Vlasenko073214f2007-08-17 19:20:07 +00001829 /* Determine type of request (GET/POST) */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001830 urlp = strpbrk(iobuf, " \t");
1831 if (urlp == NULL)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001832 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001833 *urlp++ = '\0';
Denis Vlasenko55a99402006-09-30 20:41:44 +00001834#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko073214f2007-08-17 19:20:07 +00001835 prequest = request_GET;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001836 if (strcasecmp(iobuf, prequest) != 0) {
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001837 prequest = request_HEAD;
1838 if (strcasecmp(iobuf, prequest) != 0) {
1839 prequest = "POST";
1840 if (strcasecmp(iobuf, prequest) != 0)
1841 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
1842 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001843 }
1844#else
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001845 if (strcasecmp(iobuf, request_GET) != 0)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001846 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001847#endif
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001848 urlp = skip_whitespace(urlp);
1849 if (urlp[0] != '/')
1850 send_headers_and_exit(HTTP_BAD_REQUEST);
1851
1852 /* Find end of URL and parse HTTP version, if any */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001853 http_major_version = '0';
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001854 IF_FEATURE_HTTPD_PROXY(http_minor_version = '0';)
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001855 tptr = strchrnul(urlp, ' ');
1856 /* Is it " HTTP/"? */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001857 if (tptr[0] && strncmp(tptr + 1, HTTP_200, 5) == 0) {
1858 http_major_version = tptr[6];
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001859 IF_FEATURE_HTTPD_PROXY(http_minor_version = tptr[8];)
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001860 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001861 *tptr = '\0';
Glenn L McGrath06e95652003-02-09 06:51:14 +00001862
Denis Vlasenko073214f2007-08-17 19:20:07 +00001863 /* Copy URL from after "GET "/"POST " to stack-allocated char[] */
Denis Vlasenkofcd878e2007-12-29 02:16:23 +00001864 urlcopy = alloca((tptr - urlp) + 2 + strlen(index_page));
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001865 /*if (urlcopy == NULL)
1866 * send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);*/
1867 strcpy(urlcopy, urlp);
1868 /* NB: urlcopy ptr is never changed after this */
Denis Vlasenko073214f2007-08-17 19:20:07 +00001869
1870 /* Extract url args if present */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001871 g_query = NULL;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001872 tptr = strchr(urlcopy, '?');
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001873 if (tptr) {
1874 *tptr++ = '\0';
1875 g_query = tptr;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001876 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001877
Denis Vlasenko073214f2007-08-17 19:20:07 +00001878 /* Decode URL escape sequences */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001879 tptr = decodeString(urlcopy, 0);
1880 if (tptr == NULL)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001881 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001882 if (tptr == urlcopy + 1) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001883 /* '/' or NUL is encoded */
1884 send_headers_and_exit(HTTP_NOT_FOUND);
1885 }
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001886
Denis Vlasenko073214f2007-08-17 19:20:07 +00001887 /* Canonicalize path */
1888 /* Algorithm stolen from libbb bb_simplify_path(),
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001889 * but don't strdup, retain trailing slash, protect root */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001890 urlp = tptr = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001891 do {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001892 if (*urlp == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001893 /* skip duplicate (or initial) slash */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001894 if (*tptr == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001895 continue;
1896 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001897 if (*tptr == '.') {
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001898 /* skip extra "/./" */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001899 if (tptr[1] == '/' || !tptr[1]) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001900 continue;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001901 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001902 /* "..": be careful */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001903 if (tptr[1] == '.' && (tptr[2] == '/' || !tptr[2])) {
1904 ++tptr;
1905 if (urlp == urlcopy) /* protect root */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001906 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001907 while (*--urlp != '/') /* omit previous dir */;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001908 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001909 }
1910 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001911 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001912 *++urlp = *tptr;
1913 } while (*++tptr);
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001914 *++urlp = '\0'; /* terminate after last character */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001915
Denis Vlasenko073214f2007-08-17 19:20:07 +00001916 /* If URL is a directory, add '/' */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001917 if (urlp[-1] != '/') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001918 if (is_directory(urlcopy + 1, 1, &sb)) {
1919 found_moved_temporarily = urlcopy;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001920 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001921 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001922
Denis Vlasenko073214f2007-08-17 19:20:07 +00001923 /* Log it */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001924 if (verbose > 1)
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001925 bb_error_msg("url:%s", urlcopy);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001926
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001927 tptr = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001928 ip_allowed = checkPermIP();
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001929 while (ip_allowed && (tptr = strchr(tptr + 1, '/')) != NULL) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001930 /* have path1/path2 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001931 *tptr = '\0';
1932 if (is_directory(urlcopy + 1, 1, &sb)) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001933 /* may have subdir config */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001934 parse_conf(urlcopy + 1, SUBDIR_PARSE);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001935 ip_allowed = checkPermIP();
1936 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001937 *tptr = '/';
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001938 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001939
1940#if ENABLE_FEATURE_HTTPD_PROXY
1941 proxy_entry = find_proxy_entry(urlcopy);
1942 if (proxy_entry)
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001943 header_buf = header_ptr = xmalloc(IOBUF_SIZE);
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001944#endif
1945
1946 if (http_major_version >= '0') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001947 /* Request was with "... HTTP/nXXX", and n >= 0 */
Denis Vlasenko073214f2007-08-17 19:20:07 +00001948
1949 /* Read until blank line for HTTP version specified, else parse immediate */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001950 while (1) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001951 if (!get_line())
1952 break; /* EOF or error or empty line */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001953 if (DEBUG)
1954 bb_error_msg("header: '%s'", iobuf);
Denis Vlasenko073214f2007-08-17 19:20:07 +00001955
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001956#if ENABLE_FEATURE_HTTPD_PROXY
1957 /* We need 2 more bytes for yet another "\r\n" -
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001958 * see near fdprintf(proxy_fd...) further below */
1959 if (proxy_entry && (header_ptr - header_buf) < IOBUF_SIZE - 2) {
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001960 int len = strlen(iobuf);
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001961 if (len > IOBUF_SIZE - (header_ptr - header_buf) - 4)
1962 len = IOBUF_SIZE - (header_ptr - header_buf) - 4;
1963 memcpy(header_ptr, iobuf, len);
1964 header_ptr += len;
1965 header_ptr[0] = '\r';
1966 header_ptr[1] = '\n';
1967 header_ptr += 2;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001968 }
1969#endif
1970
1971#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
1972 /* Try and do our best to parse more lines */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001973 if ((STRNCASECMP(iobuf, "Content-length:") == 0)) {
1974 /* extra read only for POST */
Denis Vlasenko85c24712008-03-17 09:04:04 +00001975 if (prequest != request_GET
1976#if ENABLE_FEATURE_HTTPD_CGI
1977 && prequest != request_HEAD
1978#endif
1979 ) {
Denis Vlasenko9c8c0382008-03-17 12:58:19 +00001980 tptr = skip_whitespace(iobuf + sizeof("Content-length:") - 1);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001981 if (!tptr[0])
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001982 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001983 /* not using strtoul: it ignores leading minus! */
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001984 length = bb_strtou(tptr, NULL, 10);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001985 /* length is "ulong", but we need to pass it to int later */
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001986 if (errno || length > INT_MAX)
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001987 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001988 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001989 }
1990#endif
1991#if ENABLE_FEATURE_HTTPD_CGI
1992 else if (STRNCASECMP(iobuf, "Cookie:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00001993 cookie = xstrdup(skip_whitespace(iobuf + sizeof("Cookie:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001994 } else if (STRNCASECMP(iobuf, "Content-Type:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00001995 content_type = xstrdup(skip_whitespace(iobuf + sizeof("Content-Type:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001996 } else if (STRNCASECMP(iobuf, "Referer:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00001997 referer = xstrdup(skip_whitespace(iobuf + sizeof("Referer:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001998 } else if (STRNCASECMP(iobuf, "User-Agent:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00001999 user_agent = xstrdup(skip_whitespace(iobuf + sizeof("User-Agent:")-1));
Denis Vlasenko9d1d4c02008-11-22 20:29:35 +00002000 } else if (STRNCASECMP(iobuf, "Host:") == 0) {
2001 host = xstrdup(skip_whitespace(iobuf + sizeof("Host:")-1));
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +00002002 } else if (STRNCASECMP(iobuf, "Accept:") == 0) {
2003 http_accept = xstrdup(skip_whitespace(iobuf + sizeof("Accept:")-1));
2004 } else if (STRNCASECMP(iobuf, "Accept-Language:") == 0) {
2005 http_accept_language = xstrdup(skip_whitespace(iobuf + sizeof("Accept-Language:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002006 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002007#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002008#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002009 if (STRNCASECMP(iobuf, "Authorization:") == 0) {
2010 /* We only allow Basic credentials.
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002011 * It shows up as "Authorization: Basic <user>:<passwd>" where
2012 * "<user>:<passwd>" is base64 encoded.
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002013 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002014 tptr = skip_whitespace(iobuf + sizeof("Authorization:")-1);
2015 if (STRNCASECMP(tptr, "Basic") != 0)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002016 continue;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002017 tptr += sizeof("Basic")-1;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002018 /* decodeBase64() skips whitespace itself */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002019 decodeBase64(tptr);
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002020 authorized = check_user_passwd(urlcopy, tptr);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002021 }
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002022#endif
Denis Vlasenkof4310172007-09-21 22:35:18 +00002023#if ENABLE_FEATURE_HTTPD_RANGES
2024 if (STRNCASECMP(iobuf, "Range:") == 0) {
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002025 /* We know only bytes=NNN-[MMM] */
Denis Vlasenkof4310172007-09-21 22:35:18 +00002026 char *s = skip_whitespace(iobuf + sizeof("Range:")-1);
2027 if (strncmp(s, "bytes=", 6) == 0) {
2028 s += sizeof("bytes=")-1;
2029 range_start = BB_STRTOOFF(s, &s, 10);
2030 if (s[0] != '-' || range_start < 0) {
2031 range_start = 0;
2032 } else if (s[1]) {
2033 range_end = BB_STRTOOFF(s+1, NULL, 10);
2034 if (errno || range_end < range_start)
2035 range_start = 0;
2036 }
2037 }
2038 }
2039#endif
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002040 } /* while extra header reading */
2041 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002042
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002043 /* We are done reading headers, disable peer timeout */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002044 alarm(0);
2045
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002046 if (strcmp(bb_basename(urlcopy), HTTPD_CONF) == 0 || !ip_allowed) {
2047 /* protect listing [/path]/httpd.conf or IP deny */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002048 send_headers_and_exit(HTTP_FORBIDDEN);
2049 }
2050
2051#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002052 /* Case: no "Authorization:" was seen, but page does require passwd.
2053 * Check that with dummy user:pass */
Denis Vlasenko7504f2f2008-06-13 13:20:38 +00002054 if (authorized < 0)
2055 authorized = check_user_passwd(urlcopy, ":");
2056 if (!authorized)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002057 send_headers_and_exit(HTTP_UNAUTHORIZED);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002058#endif
2059
2060 if (found_moved_temporarily) {
2061 send_headers_and_exit(HTTP_MOVED_TEMPORARILY);
2062 }
2063
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002064#if ENABLE_FEATURE_HTTPD_PROXY
2065 if (proxy_entry != NULL) {
2066 int proxy_fd;
2067 len_and_sockaddr *lsa;
2068
2069 proxy_fd = socket(AF_INET, SOCK_STREAM, 0);
2070 if (proxy_fd < 0)
2071 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2072 lsa = host2sockaddr(proxy_entry->host_port, 80);
2073 if (lsa == NULL)
2074 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002075 if (connect(proxy_fd, &lsa->u.sa, lsa->len) < 0)
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002076 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2077 fdprintf(proxy_fd, "%s %s%s%s%s HTTP/%c.%c\r\n",
2078 prequest, /* GET or POST */
2079 proxy_entry->url_to, /* url part 1 */
2080 urlcopy + strlen(proxy_entry->url_from), /* url part 2 */
2081 (g_query ? "?" : ""), /* "?" (maybe) */
2082 (g_query ? g_query : ""), /* query string (maybe) */
2083 http_major_version, http_minor_version);
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00002084 header_ptr[0] = '\r';
2085 header_ptr[1] = '\n';
2086 header_ptr += 2;
2087 write(proxy_fd, header_buf, header_ptr - header_buf);
2088 free(header_buf); /* on the order of 8k, free it */
Bernhard Reutner-Fischer62851172009-05-03 18:53:22 +02002089 /* cgi_io_loop_and_exit needs to have two distinct fds */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002090 cgi_io_loop_and_exit(proxy_fd, dup(proxy_fd), length);
2091 }
2092#endif
2093
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002094 tptr = urlcopy + 1; /* skip first '/' */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002095
2096#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002097 if (strncmp(tptr, "cgi-bin/", 8) == 0) {
2098 if (tptr[8] == '\0') {
Denis Vlasenko073214f2007-08-17 19:20:07 +00002099 /* protect listing "cgi-bin/" */
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002100 send_headers_and_exit(HTTP_FORBIDDEN);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002101 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002102 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002103 }
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002104#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002105 {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002106 char *suffix = strrchr(tptr, '.');
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002107 if (suffix) {
2108 Htaccess *cur;
2109 for (cur = script_i; cur; cur = cur->next) {
2110 if (strcmp(cur->before_colon + 1, suffix) == 0) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002111 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002112 }
2113 }
2114 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002115 }
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002116#endif
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002117 if (prequest != request_GET && prequest != request_HEAD) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002118 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
2119 }
Denis Vlasenko5d148e22006-11-21 00:12:09 +00002120#endif /* FEATURE_HTTPD_CGI */
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00002121
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002122 if (urlp[-1] == '/')
Denis Vlasenkofcd878e2007-12-29 02:16:23 +00002123 strcpy(urlp, index_page);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002124 if (stat(tptr, &sb) == 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00002125 file_size = sb.st_size;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002126 last_mod = sb.st_mtime;
2127 }
Denis Vlasenko5d148e22006-11-21 00:12:09 +00002128#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002129 else if (urlp[-1] == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002130 /* It's a dir URL and there is no index.html
2131 * Try cgi-bin/index.cgi */
2132 if (access("/cgi-bin/index.cgi"+1, X_OK) == 0) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002133 urlp[0] = '\0';
2134 g_query = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002135 send_cgi_and_exit("/cgi-bin/index.cgi", prequest, length, cookie, content_type);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002136 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002137 }
Denis Vlasenko073214f2007-08-17 19:20:07 +00002138#endif
2139 /* else {
2140 * fall through to send_file, it errors out if open fails
2141 * }
2142 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002143
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002144 send_file_and_exit(tptr,
Denis Vlasenko85c24712008-03-17 09:04:04 +00002145#if ENABLE_FEATURE_HTTPD_CGI
2146 (prequest != request_HEAD ? SEND_HEADERS_AND_BODY : SEND_HEADERS)
2147#else
2148 SEND_HEADERS_AND_BODY
2149#endif
2150 );
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002151}
2152
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002153/*
2154 * The main http server function.
Denis Vlasenko367960b2007-08-18 14:20:21 +00002155 * Given a socket, listen for new connections and farm out
2156 * the processing as a [v]forked process.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002157 * Never returns.
2158 */
Denis Vlasenko367960b2007-08-18 14:20:21 +00002159#if BB_MMU
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002160static void mini_httpd(int server_socket) NORETURN;
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002161static void mini_httpd(int server_socket)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002162{
Denis Vlasenko073214f2007-08-17 19:20:07 +00002163 /* NB: it's best to not use xfuncs in this loop before fork().
2164 * Otherwise server may die on transient errors (temporary
2165 * out-of-memory condition, etc), which is Bad(tm).
2166 * Try to do any dangerous calls after fork.
2167 */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002168 while (1) {
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002169 int n;
2170 len_and_sockaddr fromAddr;
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00002171
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002172 /* Wait for connections... */
2173 fromAddr.len = LSA_SIZEOF_SA;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002174 n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002175
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002176 if (n < 0)
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00002177 continue;
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002178 /* set the KEEPALIVE option to cull dead connections */
2179 setsockopt(n, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002180
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002181 if (fork() == 0) {
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002182 /* child */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002183 /* Do not reload config on HUP */
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00002184 signal(SIGHUP, SIG_IGN);
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002185 close(server_socket);
2186 xmove_fd(n, 0);
2187 xdup2(0, 1);
2188
Denis Vlasenko367960b2007-08-18 14:20:21 +00002189 handle_incoming_and_exit(&fromAddr);
2190 }
2191 /* parent, or fork failed */
2192 close(n);
2193 } /* while (1) */
2194 /* never reached */
2195}
2196#else
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002197static void mini_httpd_nommu(int server_socket, int argc, char **argv) NORETURN;
Denis Vlasenko367960b2007-08-18 14:20:21 +00002198static void mini_httpd_nommu(int server_socket, int argc, char **argv)
2199{
2200 char *argv_copy[argc + 2];
2201
2202 argv_copy[0] = argv[0];
2203 argv_copy[1] = (char*)"-i";
2204 memcpy(&argv_copy[2], &argv[1], argc * sizeof(argv[0]));
2205
2206 /* NB: it's best to not use xfuncs in this loop before vfork().
2207 * Otherwise server may die on transient errors (temporary
2208 * out-of-memory condition, etc), which is Bad(tm).
2209 * Try to do any dangerous calls after fork.
2210 */
2211 while (1) {
2212 int n;
2213 len_and_sockaddr fromAddr;
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00002214
Denis Vlasenko367960b2007-08-18 14:20:21 +00002215 /* Wait for connections... */
2216 fromAddr.len = LSA_SIZEOF_SA;
Denis Vlasenko671ca332008-02-19 14:13:20 +00002217 n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002218
2219 if (n < 0)
2220 continue;
2221 /* set the KEEPALIVE option to cull dead connections */
2222 setsockopt(n, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
2223
2224 if (vfork() == 0) {
2225 /* child */
Denis Vlasenko367960b2007-08-18 14:20:21 +00002226 /* Do not reload config on HUP */
2227 signal(SIGHUP, SIG_IGN);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002228 close(server_socket);
2229 xmove_fd(n, 0);
2230 xdup2(0, 1);
2231
2232 /* Run a copy of ourself in inetd mode */
2233 re_exec(argv_copy);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002234 }
Denis Vlasenko921799d2007-08-19 19:28:09 +00002235 /* parent, or vfork failed */
Denis Vlasenko073214f2007-08-17 19:20:07 +00002236 close(n);
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002237 } /* while (1) */
Denis Vlasenko241b1562007-08-17 19:18:47 +00002238 /* never reached */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002239}
Denis Vlasenko56258b62007-06-23 23:14:02 +00002240#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002241
Denis Vlasenko367960b2007-08-18 14:20:21 +00002242/*
2243 * Process a HTTP connection on stdin/out.
2244 * Never returns.
2245 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002246static void mini_httpd_inetd(void) NORETURN;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002247static void mini_httpd_inetd(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002248{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002249 len_and_sockaddr fromAddr;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002250
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00002251 memset(&fromAddr, 0, sizeof(fromAddr));
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002252 fromAddr.len = LSA_SIZEOF_SA;
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00002253 /* NB: can fail if user runs it by hand and types in http cmds */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002254 getpeername(0, &fromAddr.u.sa, &fromAddr.len);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002255 handle_incoming_and_exit(&fromAddr);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002256}
Glenn L McGrath06e95652003-02-09 06:51:14 +00002257
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002258static void sighup_handler(int sig UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00002259{
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002260 parse_conf(DEFAULT_PATH_HTTPD_CONF, SIGNALED_PARSE);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002261}
Glenn L McGrath06e95652003-02-09 06:51:14 +00002262
Denis Vlasenko9f609292006-11-05 19:47:33 +00002263enum {
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002264 c_opt_config_file = 0,
2265 d_opt_decode_url,
2266 h_opt_home_httpd,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002267 IF_FEATURE_HTTPD_ENCODE_URL_STR(e_opt_encode_url,)
2268 IF_FEATURE_HTTPD_BASIC_AUTH( r_opt_realm ,)
2269 IF_FEATURE_HTTPD_AUTH_MD5( m_opt_md5 ,)
2270 IF_FEATURE_HTTPD_SETUID( u_opt_setuid ,)
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002271 p_opt_port ,
2272 p_opt_inetd ,
2273 p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002274 p_opt_verbose ,
Denis Vlasenko9f609292006-11-05 19:47:33 +00002275 OPT_CONFIG_FILE = 1 << c_opt_config_file,
2276 OPT_DECODE_URL = 1 << d_opt_decode_url,
2277 OPT_HOME_HTTPD = 1 << h_opt_home_httpd,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002278 OPT_ENCODE_URL = IF_FEATURE_HTTPD_ENCODE_URL_STR((1 << e_opt_encode_url)) + 0,
2279 OPT_REALM = IF_FEATURE_HTTPD_BASIC_AUTH( (1 << r_opt_realm )) + 0,
2280 OPT_MD5 = IF_FEATURE_HTTPD_AUTH_MD5( (1 << m_opt_md5 )) + 0,
2281 OPT_SETUID = IF_FEATURE_HTTPD_SETUID( (1 << u_opt_setuid )) + 0,
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002282 OPT_PORT = 1 << p_opt_port,
2283 OPT_INETD = 1 << p_opt_inetd,
2284 OPT_FOREGROUND = 1 << p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002285 OPT_VERBOSE = 1 << p_opt_verbose,
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002286};
Eric Andersena3bb3e62003-06-26 09:05:32 +00002287
Eric Andersena3bb3e62003-06-26 09:05:32 +00002288
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00002289int httpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002290int httpd_main(int argc UNUSED_PARAM, char **argv)
Glenn L McGrath06e95652003-02-09 06:51:14 +00002291{
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002292 int server_socket = server_socket; /* for gcc */
Denis Vlasenko67b23e62006-10-03 21:00:06 +00002293 unsigned opt;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002294 char *url_for_decode;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002295 IF_FEATURE_HTTPD_ENCODE_URL_STR(const char *url_for_encode;)
2296 IF_FEATURE_HTTPD_SETUID(const char *s_ugid = NULL;)
2297 IF_FEATURE_HTTPD_SETUID(struct bb_uidgid_t ugid;)
2298 IF_FEATURE_HTTPD_AUTH_MD5(const char *pass;)
Eric Andersen35e643b2003-07-28 07:40:39 +00002299
Denis Vlasenko073214f2007-08-17 19:20:07 +00002300 INIT_G();
2301
Denis Vlasenkofcdb00f2006-11-21 00:09:37 +00002302#if ENABLE_LOCALE_SUPPORT
2303 /* Undo busybox.c: we want to speak English in http (dates etc) */
2304 setlocale(LC_TIME, "C");
2305#endif
2306
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002307 home_httpd = xrealloc_getcwd_or_warn(NULL);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002308 /* -v counts, -i implies -f */
2309 opt_complementary = "vv:if";
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002310 /* We do not "absolutize" path given by -h (home) opt.
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00002311 * If user gives relative path in -h,
2312 * $SCRIPT_FILENAME will not be set. */
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00002313 opt = getopt32(argv, "c:d:h:"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002314 IF_FEATURE_HTTPD_ENCODE_URL_STR("e:")
2315 IF_FEATURE_HTTPD_BASIC_AUTH("r:")
2316 IF_FEATURE_HTTPD_AUTH_MD5("m:")
2317 IF_FEATURE_HTTPD_SETUID("u:")
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002318 "p:ifv",
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002319 &opt_c_configFile, &url_for_decode, &home_httpd
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002320 IF_FEATURE_HTTPD_ENCODE_URL_STR(, &url_for_encode)
2321 IF_FEATURE_HTTPD_BASIC_AUTH(, &g_realm)
2322 IF_FEATURE_HTTPD_AUTH_MD5(, &pass)
2323 IF_FEATURE_HTTPD_SETUID(, &s_ugid)
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002324 , &bind_addr_or_port
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002325 , &verbose
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002326 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002327 if (opt & OPT_DECODE_URL) {
Denis Vlasenko367960b2007-08-18 14:20:21 +00002328 fputs(decodeString(url_for_decode, 1), stdout);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002329 return 0;
2330 }
Denis Vlasenko55a99402006-09-30 20:41:44 +00002331#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002332 if (opt & OPT_ENCODE_URL) {
Denis Vlasenko367960b2007-08-18 14:20:21 +00002333 fputs(encodeString(url_for_encode), stdout);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002334 return 0;
2335 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002336#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002337#if ENABLE_FEATURE_HTTPD_AUTH_MD5
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002338 if (opt & OPT_MD5) {
Denis Vlasenko4ea83bf2008-06-12 16:55:59 +00002339 puts(pw_encrypt(pass, "$1$", 1));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002340 return 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002341 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002342#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002343#if ENABLE_FEATURE_HTTPD_SETUID
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002344 if (opt & OPT_SETUID) {
Bernhard Reutner-Fischerd73cbd32008-07-21 14:41:33 +00002345 xget_uidgid(&ugid, s_ugid);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002346 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002347#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002348
Denis Vlasenko367960b2007-08-18 14:20:21 +00002349#if !BB_MMU
2350 if (!(opt & OPT_FOREGROUND)) {
2351 bb_daemonize_or_rexec(0, argv); /* don't change current directory */
2352 }
2353#endif
2354
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002355 xchdir(home_httpd);
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002356 if (!(opt & OPT_INETD)) {
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00002357 signal(SIGCHLD, SIG_IGN);
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002358 server_socket = openServer();
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002359#if ENABLE_FEATURE_HTTPD_SETUID
2360 /* drop privileges */
2361 if (opt & OPT_SETUID) {
2362 if (ugid.gid != (gid_t)-1) {
2363 if (setgroups(1, &ugid.gid) == -1)
Denis Vlasenko8e858e22007-03-07 09:35:43 +00002364 bb_perror_msg_and_die("setgroups");
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002365 xsetgid(ugid.gid);
2366 }
2367 xsetuid(ugid.uid);
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002368 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002369#endif
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002370 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002371
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002372#if 0
Denis Vlasenko2535f122007-09-15 13:28:30 +00002373 /* User can do it himself: 'env - PATH="$PATH" httpd'
2374 * We don't do it because we don't want to screw users
2375 * which want to do
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002376 * 'env - VAR1=val1 VAR2=val2 httpd'
Denis Vlasenko2535f122007-09-15 13:28:30 +00002377 * and have VAR1 and VAR2 values visible in their CGIs.
2378 * Besides, it is also smaller. */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002379 {
2380 char *p = getenv("PATH");
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002381 /* env strings themself are not freed, no need to xstrdup(p): */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002382 clearenv();
2383 if (p)
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002384 putenv(p - 5);
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002385// if (!(opt & OPT_INETD))
2386// setenv_long("SERVER_PORT", ???);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002387 }
Glenn L McGrathfe538ba2003-09-10 23:35:45 +00002388#endif
2389
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002390 parse_conf(DEFAULT_PATH_HTTPD_CONF, FIRST_PARSE);
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002391 if (!(opt & OPT_INETD))
2392 signal(SIGHUP, sighup_handler);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002393
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00002394 xfunc_error_retval = 0;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002395 if (opt & OPT_INETD)
2396 mini_httpd_inetd();
Denis Vlasenko367960b2007-08-18 14:20:21 +00002397#if BB_MMU
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002398 if (!(opt & OPT_FOREGROUND))
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002399 bb_daemonize(0); /* don't change current directory */
2400 mini_httpd(server_socket); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002401#else
Denis Vlasenko367960b2007-08-18 14:20:21 +00002402 mini_httpd_nommu(server_socket, argc, argv); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002403#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00002404 /* return 0; */
Glenn L McGrath06e95652003-02-09 06:51:14 +00002405}