blob: 6bf103c56fe6b555eed241a03bda720d7ff6381d [file] [log] [blame]
Bernhard Reutner-Fischer2c998512006-04-12 18:09:26 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002/*
3 * httpd implementation for busybox
4 *
Glenn L McGrath06e95652003-02-09 06:51:14 +00005 * Copyright (C) 2002,2003 Glenn Engel <glenne@engel.org>
"Vladimir N. Oleynik"79af7d52006-01-26 10:58:12 +00006 * Copyright (C) 2003-2006 Vladimir Oleynik <dzo@simtreas.ru>
Glenn L McGrath58c708a2003-01-05 04:01:56 +00007 *
Glenn L McGrath06e95652003-02-09 06:51:14 +00008 * simplify patch stolen from libbb without using strdup
Glenn L McGrath58c708a2003-01-05 04:01:56 +00009 *
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +000010 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Glenn L McGrath58c708a2003-01-05 04:01:56 +000011 *
12 *****************************************************************************
13 *
Glenn L McGrath06e95652003-02-09 06:51:14 +000014 * Typical usage:
15 * for non root user
16 * httpd -p 8080 -h $HOME/public_html
17 * or for daemon start from rc script with uid=0:
18 * httpd -u www
19 * This is equivalent if www user have uid=80 to
20 * httpd -p 80 -u 80 -h /www -c /etc/httpd.conf -r "Web Server Authentication"
21 *
Glenn L McGrath58c708a2003-01-05 04:01:56 +000022 *
Denis Vlasenko073214f2007-08-17 19:20:07 +000023 * When a url starts by "/cgi-bin/" it is assumed to be a cgi script. The
Glenn L McGrath58c708a2003-01-05 04:01:56 +000024 * server changes directory to the location of the script and executes it
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +000025 * after setting QUERY_STRING and other environment variables.
Glenn L McGrath58c708a2003-01-05 04:01:56 +000026 *
Denis Vlasenko8b458372006-11-21 21:23:21 +000027 * Doc:
28 * "CGI Environment Variables": http://hoohoo.ncsa.uiuc.edu/cgi/env.html
29 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +000030 * The applet can also be invoked as a url arg decoder and html text encoder
Glenn L McGrath58c708a2003-01-05 04:01:56 +000031 * as follows:
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000032 * foo=`httpd -d $foo` # decode "Hello%20World" as "Hello World"
Glenn L McGrathc9163fe2003-05-13 16:20:11 +000033 * bar=`httpd -e "<Hello World>"` # encode as "&#60Hello&#32World&#62"
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000034 * Note that url encoding for arguments is not the same as html encoding for
Eric Andersenaff114c2004-04-14 17:51:38 +000035 * presentation. -d decodes a url-encoded argument while -e encodes in html
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000036 * for page display.
Glenn L McGrath58c708a2003-01-05 04:01:56 +000037 *
38 * httpd.conf has the following format:
Eric Andersenc7bda1c2004-03-15 08:29:22 +000039 *
Denis Vlasenko395410b2008-07-20 23:25:32 +000040 * H:/serverroot # define the server root. It will override -h
Glenn L McGrathb65422c2003-09-08 10:59:27 +000041 * A:172.20. # Allow address from 172.20.0.0/16
42 * A:10.0.0.0/25 # Allow any address from 10.0.0.0-10.0.0.127
43 * A:10.0.0.0/255.255.255.128 # Allow any address that previous set
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000044 * A:127.0.0.1 # Allow local loopback connections
45 * D:* # Deny from other IP connections
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +000046 * E404:/path/e404.html # /path/e404.html is the 404 (not found) error page
Denis Vlasenkofcd878e2007-12-29 02:16:23 +000047 * I:index.html # Show index.html when a directory is requested
Denis Vlasenkof74194e2007-10-18 12:54:39 +000048 *
49 * P:/url:[http://]hostname[:port]/new/path
50 * # When /urlXXXXXX is requested, reverse proxy
51 * # it to http://hostname[:port]/new/pathXXXXXX
52 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000053 * /cgi-bin:foo:bar # Require user foo, pwd bar on urls starting with /cgi-bin/
54 * /adm:admin:setup # Require user admin, pwd setup on urls starting with /adm/
55 * /adm:toor:PaSsWd # or user toor, pwd PaSsWd on urls starting with /adm/
56 * .au:audio/basic # additional mime type for audio.au files
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +000057 * *.php:/path/php # running cgi.php scripts through an interpreter
Eric Andersenc7bda1c2004-03-15 08:29:22 +000058 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +000059 * A/D may be as a/d or allow/deny - only first char matters.
60 * Deny/Allow IP logic:
61 * - Default is to allow all (Allow all (A:*) is a no-op).
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000062 * - Deny rules take precedence over allow rules.
Denis Vlasenko0eb406c2008-06-13 09:53:06 +000063 * - "Deny all" rule (D:*) is applied last.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000064 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000065 * Example:
66 * 1. Allow only specified addresses
Glenn L McGrathb65422c2003-09-08 10:59:27 +000067 * A:172.20 # Allow any address that begins with 172.20.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000068 * A:10.10. # Allow any address that begins with 10.10.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000069 * A:127.0.0.1 # Allow local loopback connections
70 * D:* # Deny from other IP connections
Eric Andersenc7bda1c2004-03-15 08:29:22 +000071 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000072 * 2. Only deny specified addresses
73 * D:1.2.3. # deny from 1.2.3.0 - 1.2.3.255
74 * D:2.3.4. # deny from 2.3.4.0 - 2.3.4.255
75 * A:* # (optional line added for clarity)
Eric Andersenc7bda1c2004-03-15 08:29:22 +000076 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000077 * If a sub directory contains a config file it is parsed and merged with
Glenn L McGrathb65422c2003-09-08 10:59:27 +000078 * any existing settings as if it was appended to the original configuration.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000079 *
80 * subdir paths are relative to the containing subdir and thus cannot
81 * affect the parent rules.
82 *
83 * Note that since the sub dir is parsed in the forked thread servicing the
84 * subdir http request, any merge is discarded when the process exits. As a
85 * result, the subdir settings only have a lifetime of a single request.
86 *
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +000087 * Custom error pages can contain an absolute path or be relative to
88 * 'home_httpd'. Error pages are to be static files (no CGI or script). Error
89 * page can only be defined in the root configuration file and are not taken
90 * into account in local (directories) config files.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000091 *
92 * If -c is not set, an attempt will be made to open the default
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000093 * root configuration file. If -c is set and the file is not found, the
94 * server exits with an error.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000095 *
Denis Vlasenko073214f2007-08-17 19:20:07 +000096 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +000097
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000098#include "libbb.h"
Denis Vlasenko1b9064d2007-08-12 21:05:49 +000099#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
Denis Vlasenko1cbfd982009-02-04 23:43:44 +0000100# include <sys/sendfile.h>
Denis Vlasenko1b9064d2007-08-12 21:05:49 +0000101#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000102
Denis Vlasenko073214f2007-08-17 19:20:07 +0000103//#define DEBUG 1
104#define DEBUG 0
105
Denis Vlasenko32a471e2007-09-23 13:56:57 +0000106#define IOBUF_SIZE 8192 /* IO buffer */
107
Denis Vlasenko69981422007-01-07 21:25:12 +0000108/* amount of buffering in a pipe */
109#ifndef PIPE_BUF
110# define PIPE_BUF 4096
111#endif
Denis Vlasenko32a471e2007-09-23 13:56:57 +0000112#if PIPE_BUF >= IOBUF_SIZE
113# error "PIPE_BUF >= IOBUF_SIZE"
114#endif
Denis Vlasenko073214f2007-08-17 19:20:07 +0000115
116#define HEADER_READ_TIMEOUT 60
117
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000118static const char default_path_httpd_conf[] ALIGN1 = "/etc";
119static const char httpd_conf[] ALIGN1 = "httpd.conf";
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000120static const char HTTP_200[] ALIGN1 = "HTTP/1.0 200 OK\r\n";
Glenn L McGrath06e95652003-02-09 06:51:14 +0000121
Denis Vlasenko073214f2007-08-17 19:20:07 +0000122typedef struct has_next_ptr {
123 struct has_next_ptr *next;
124} has_next_ptr;
Eric Andersen07f2fea2004-10-08 08:03:29 +0000125
Denis Vlasenko073214f2007-08-17 19:20:07 +0000126/* Must have "next" as a first member */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000127typedef struct Htaccess {
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000128 struct Htaccess *next;
Denis Vlasenko073214f2007-08-17 19:20:07 +0000129 char *after_colon;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000130 char before_colon[1]; /* really bigger, must be last */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000131} Htaccess;
132
Denis Vlasenko073214f2007-08-17 19:20:07 +0000133/* Must have "next" as a first member */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000134typedef struct Htaccess_IP {
Denis Vlasenko073214f2007-08-17 19:20:07 +0000135 struct Htaccess_IP *next;
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000136 unsigned ip;
137 unsigned mask;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000138 int allow_deny;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000139} Htaccess_IP;
140
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000141/* Must have "next" as a first member */
142typedef struct Htaccess_Proxy {
143 struct Htaccess_Proxy *next;
144 char *url_from;
145 char *host_port;
146 char *url_to;
147} Htaccess_Proxy;
148
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000149enum {
150 HTTP_OK = 200,
Denis Vlasenkof4310172007-09-21 22:35:18 +0000151 HTTP_PARTIAL_CONTENT = 206,
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000152 HTTP_MOVED_TEMPORARILY = 302,
153 HTTP_BAD_REQUEST = 400, /* malformed syntax */
154 HTTP_UNAUTHORIZED = 401, /* authentication needed, respond with auth hdr */
155 HTTP_NOT_FOUND = 404,
156 HTTP_FORBIDDEN = 403,
157 HTTP_REQUEST_TIMEOUT = 408,
158 HTTP_NOT_IMPLEMENTED = 501, /* used for unrecognized requests */
159 HTTP_INTERNAL_SERVER_ERROR = 500,
160 HTTP_CONTINUE = 100,
161#if 0 /* future use */
162 HTTP_SWITCHING_PROTOCOLS = 101,
163 HTTP_CREATED = 201,
164 HTTP_ACCEPTED = 202,
165 HTTP_NON_AUTHORITATIVE_INFO = 203,
166 HTTP_NO_CONTENT = 204,
167 HTTP_MULTIPLE_CHOICES = 300,
168 HTTP_MOVED_PERMANENTLY = 301,
169 HTTP_NOT_MODIFIED = 304,
170 HTTP_PAYMENT_REQUIRED = 402,
171 HTTP_BAD_GATEWAY = 502,
172 HTTP_SERVICE_UNAVAILABLE = 503, /* overload, maintenance */
173 HTTP_RESPONSE_SETSIZE = 0xffffffff
174#endif
175};
176
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000177static const uint16_t http_response_type[] ALIGN2 = {
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000178 HTTP_OK,
Denis Vlasenkof4310172007-09-21 22:35:18 +0000179#if ENABLE_FEATURE_HTTPD_RANGES
180 HTTP_PARTIAL_CONTENT,
181#endif
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000182 HTTP_MOVED_TEMPORARILY,
183 HTTP_REQUEST_TIMEOUT,
184 HTTP_NOT_IMPLEMENTED,
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +0000185#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000186 HTTP_UNAUTHORIZED,
187#endif
188 HTTP_NOT_FOUND,
189 HTTP_BAD_REQUEST,
190 HTTP_FORBIDDEN,
191 HTTP_INTERNAL_SERVER_ERROR,
192#if 0 /* not implemented */
193 HTTP_CREATED,
194 HTTP_ACCEPTED,
195 HTTP_NO_CONTENT,
196 HTTP_MULTIPLE_CHOICES,
197 HTTP_MOVED_PERMANENTLY,
198 HTTP_NOT_MODIFIED,
199 HTTP_BAD_GATEWAY,
200 HTTP_SERVICE_UNAVAILABLE,
201#endif
202};
203
204static const struct {
205 const char *name;
206 const char *info;
207} http_response[ARRAY_SIZE(http_response_type)] = {
208 { "OK", NULL },
Denis Vlasenkof4310172007-09-21 22:35:18 +0000209#if ENABLE_FEATURE_HTTPD_RANGES
210 { "Partial Content", NULL },
211#endif
212 { "Found", NULL },
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000213 { "Request Timeout", "No request appeared within 60 seconds" },
214 { "Not Implemented", "The requested method is not recognized" },
215#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
216 { "Unauthorized", "" },
217#endif
218 { "Not Found", "The requested URL was not found" },
219 { "Bad Request", "Unsupported method" },
220 { "Forbidden", "" },
221 { "Internal Server Error", "Internal Server Error" },
222#if 0 /* not implemented */
223 { "Created" },
224 { "Accepted" },
225 { "No Content" },
226 { "Multiple Choices" },
227 { "Moved Permanently" },
228 { "Not Modified" },
229 { "Bad Gateway", "" },
230 { "Service Unavailable", "" },
231#endif
232};
233
Denis Vlasenkof4310172007-09-21 22:35:18 +0000234
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000235struct globals {
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000236 int verbose; /* must be int (used by getopt32) */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000237 smallint flg_deny_all;
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000238
Denis Vlasenko37c33162007-08-19 18:54:22 +0000239 unsigned rmt_ip; /* used for IP-based allow/deny rules */
240 time_t last_mod;
Denis Vlasenko37c33162007-08-19 18:54:22 +0000241 char *rmt_ip_str; /* for $REMOTE_ADDR and $REMOTE_PORT */
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000242 const char *bind_addr_or_port;
243
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000244 const char *g_query;
245 const char *configFile;
246 const char *home_httpd;
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000247 const char *index_page;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000248
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000249 const char *found_mime_type;
250 const char *found_moved_temporarily;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000251 Htaccess_IP *ip_a_d; /* config allow/deny lines */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000252
253 USE_FEATURE_HTTPD_BASIC_AUTH(const char *g_realm;)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000254 USE_FEATURE_HTTPD_BASIC_AUTH(char *remoteuser;)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000255 USE_FEATURE_HTTPD_CGI(char *referer;)
Denis Vlasenko6cd84da2007-07-21 14:57:54 +0000256 USE_FEATURE_HTTPD_CGI(char *user_agent;)
Denis Vlasenko9d1d4c02008-11-22 20:29:35 +0000257 USE_FEATURE_HTTPD_CGI(char *host;)
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +0000258 USE_FEATURE_HTTPD_CGI(char *http_accept;)
259 USE_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 )
292#define configFile (G.configFile )
293#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 Vlasenko77e44d62007-06-09 23:49:05 +0000329 USE_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 * The first non-white character is examined to determine if the config line
456 * is one of the following:
457 * .ext:mime/type # new mime type not compiled into httpd
458 * [adAD]:from # ip address allow/deny, * for wildcard
459 * /path:user:pass # username/password
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000460 * Ennn:error.html # error page for status nnn
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000461 * P:/url:[http://]hostname[:port]/new/path # reverse proxy
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000462 *
463 * Any previous IP rules are discarded.
464 * If the flag argument is not SUBDIR_PARSE then all /path and mime rules
465 * are also discarded. That is, previous settings are retained if flag is
466 * SUBDIR_PARSE.
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000467 * Error pages are only parsed on the main config file.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000468 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000469 * path Path where to look for httpd.conf (without filename).
470 * flag Type of the parse request.
471 */
472/* flag */
473#define FIRST_PARSE 0
474#define SUBDIR_PARSE 1
475#define SIGNALED_PARSE 2
476#define FIND_FROM_HTTPD_ROOT 3
Glenn L McGrath06e95652003-02-09 06:51:14 +0000477static void parse_conf(const char *path, int flag)
478{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000479 FILE *f;
Denis Vlasenko55a99402006-09-30 20:41:44 +0000480#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000481 Htaccess *prev;
482#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000483 Htaccess *cur;
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000484 const char *filename = configFile;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000485 char buf[160];
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000486 char *p, *p0;
487 char *after_colon;
Denis Vlasenko073214f2007-08-17 19:20:07 +0000488 Htaccess_IP *pip;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000489
Denis Vlasenko073214f2007-08-17 19:20:07 +0000490 /* discard old rules */
491 free_Htaccess_IP_list(&ip_a_d);
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000492 flg_deny_all = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000493 /* retain previous auth and mime config only for subdir parse */
494 if (flag != SUBDIR_PARSE) {
Denis Vlasenko55a99402006-09-30 20:41:44 +0000495#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko073214f2007-08-17 19:20:07 +0000496 free_Htaccess_list(&g_auth);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000497#endif
Denis Vlasenko073214f2007-08-17 19:20:07 +0000498 free_Htaccess_list(&mime_a);
Denis Vlasenko55a99402006-09-30 20:41:44 +0000499#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000500 free_Htaccess_list(&script_i);
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000501#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000502 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000503
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000504 if (flag == SUBDIR_PARSE || filename == NULL) {
505 filename = alloca(strlen(path) + sizeof(httpd_conf) + 2);
506 sprintf((char *)filename, "%s/%s", path, httpd_conf);
Glenn L McGrath393183d2003-05-26 14:07:50 +0000507 }
508
Denis Vlasenko5415c852008-07-21 23:05:26 +0000509 while ((f = fopen_for_read(filename)) == NULL) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000510 if (flag == SUBDIR_PARSE || flag == FIND_FROM_HTTPD_ROOT) {
511 /* config file not found, no changes to config */
512 return;
513 }
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000514 if (configFile && flag == FIRST_PARSE) /* if -c option given */
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000515 bb_simple_perror_msg_and_die(filename);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000516 flag = FIND_FROM_HTTPD_ROOT;
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000517 filename = httpd_conf;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000518 }
519
Denis Vlasenko55a99402006-09-30 20:41:44 +0000520#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000521 prev = g_auth;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000522#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000523 /* This could stand some work */
Denis Vlasenko55a99402006-09-30 20:41:44 +0000524 while ((p0 = fgets(buf, sizeof(buf), f)) != NULL) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000525 after_colon = NULL;
Denis Vlasenko073214f2007-08-17 19:20:07 +0000526 for (p = p0; *p0 != '\0' && *p0 != '#'; p0++) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000527 if (!isspace(*p0)) {
528 *p++ = *p0;
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000529 if (*p0 == ':' && after_colon == NULL)
530 after_colon = p;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000531 }
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000532 }
Denis Vlasenko073214f2007-08-17 19:20:07 +0000533 *p = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000534
535 /* test for empty or strange line */
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000536 if (after_colon == NULL || *after_colon == '\0')
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000537 continue;
538 p0 = buf;
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000539 if (*p0 == 'd' || *p0 == 'a')
540 *p0 -= 0x20; /* a/d -> A/D */
541 if (*after_colon == '*') {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000542 if (*p0 == 'D') {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000543 /* memorize "deny all" */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000544 flg_deny_all = 1;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000545 }
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000546 /* skip assumed "A:*", it is a default anyway */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000547 continue;
548 }
549
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000550 if (*p0 == 'A' || *p0 == 'D') {
551 /* storing current config IP line */
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000552 pip = xzalloc(sizeof(Htaccess_IP));
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000553 if (scan_ip_mask(after_colon, &(pip->ip), &(pip->mask))) {
554 /* IP{/mask} syntax error detected, protect all */
555 *p0 = 'D';
556 pip->mask = 0;
557 }
558 pip->allow_deny = *p0;
559 if (*p0 == 'D') {
560 /* Deny:from_IP - prepend */
561 pip->next = ip_a_d;
562 ip_a_d = pip;
563 } else {
564 /* A:from_IP - append (thus D precedes A) */
565 Htaccess_IP *prev_IP = ip_a_d;
566 if (prev_IP == NULL) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000567 ip_a_d = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000568 } else {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000569 while (prev_IP->next)
570 prev_IP = prev_IP->next;
571 prev_IP->next = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000572 }
573 }
574 continue;
575 }
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000576
577#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
578 if (flag == FIRST_PARSE && *p0 == 'E') {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000579 unsigned i;
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000580 int status = atoi(++p0); /* error status code */
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000581 if (status < HTTP_CONTINUE) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000582 bb_error_msg("config error '%s' in '%s'", buf, filename);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000583 continue;
584 }
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000585 /* then error page; find matching status */
586 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
587 if (http_response_type[i] == status) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000588 /* We chdir to home_httpd, thus no need to
589 * concat_path_file(home_httpd, after_colon)
590 * here */
591 http_error_page[i] = xstrdup(after_colon);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000592 break;
593 }
594 }
595 continue;
596 }
597#endif
598
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000599#if ENABLE_FEATURE_HTTPD_PROXY
600 if (flag == FIRST_PARSE && *p0 == 'P') {
601 /* P:/url:[http://]hostname[:port]/new/path */
602 char *url_from, *host_port, *url_to;
603 Htaccess_Proxy *proxy_entry;
604
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000605 url_from = after_colon;
606 host_port = strchr(after_colon, ':');
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000607 if (host_port == NULL) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000608 bb_error_msg("config error '%s' in '%s'", buf, filename);
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000609 continue;
610 }
611 *host_port++ = '\0';
612 if (strncmp(host_port, "http://", 7) == 0)
Denis Vlasenko78ee7c82007-10-21 23:24:42 +0000613 host_port += 7;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000614 if (*host_port == '\0') {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000615 bb_error_msg("config error '%s' in '%s'", buf, filename);
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000616 continue;
617 }
618 url_to = strchr(host_port, '/');
619 if (url_to == NULL) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000620 bb_error_msg("config error '%s' in '%s'", buf, filename);
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000621 continue;
622 }
623 *url_to = '\0';
624 proxy_entry = xzalloc(sizeof(Htaccess_Proxy));
625 proxy_entry->url_from = xstrdup(url_from);
626 proxy_entry->host_port = xstrdup(host_port);
627 *url_to = '/';
628 proxy_entry->url_to = xstrdup(url_to);
629 proxy_entry->next = proxy;
630 proxy = proxy_entry;
631 continue;
632 }
633#endif
634
Denis Vlasenko55a99402006-09-30 20:41:44 +0000635#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000636 if (*p0 == '/') {
Denis Vlasenko073214f2007-08-17 19:20:07 +0000637 /* make full path from httpd root / current_path / config_line_path */
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000638 const char *tp = (flag == SUBDIR_PARSE ? path : "");
639 p0 = xmalloc(strlen(tp) + (after_colon - buf) + 2 + strlen(after_colon));
640 after_colon[-1] = '\0';
641 sprintf(p0, "/%s%s", tp, buf);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000642
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000643 /* looks like bb_simplify_path... */
644 tp = p = p0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000645 do {
646 if (*p == '/') {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000647 if (*tp == '/') { /* skip duplicate (or initial) slash */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000648 continue;
Denis Vlasenko3d2a9212007-09-28 22:35:29 +0000649 }
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000650 if (*tp == '.') {
651 if (tp[1] == '/' || tp[1] == '\0') { /* remove extra '.' */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000652 continue;
Denis Vlasenko3d2a9212007-09-28 22:35:29 +0000653 }
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000654 if ((tp[1] == '.') && (tp[2] == '/' || tp[2] == '\0')) {
655 ++tp;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000656 if (p > p0) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000657 while (*--p != '/') /* omit previous dir */
658 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000659 }
660 continue;
661 }
662 }
663 }
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000664 *++p = *tp;
665 } while (*++tp);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000666
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000667 if ((p == p0) || (*p != '/')) { /* not a trailing slash */
668 ++p; /* so keep last character */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000669 }
Denis Vlasenko3d2a9212007-09-28 22:35:29 +0000670 *p = ':';
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000671 strcpy(p + 1, after_colon);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000672 }
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000673#endif
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000674 if (*p0 == 'I') {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000675 index_page = xstrdup(after_colon);
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000676 continue;
677 }
678
Denis Vlasenko395410b2008-07-20 23:25:32 +0000679 /* Do not allow jumping around using H in subdir's configs */
680 if (flag == FIRST_PARSE && *p0 == 'H') {
681 home_httpd = xstrdup(after_colon);
682 xchdir(home_httpd);
683 continue;
684 }
685
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000686 /* storing current config line */
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000687 cur = xzalloc(sizeof(Htaccess) + strlen(p0));
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000688 strcpy(cur->before_colon, p0);
Denis Vlasenko55a99402006-09-30 20:41:44 +0000689#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000690 if (*p0 == '/') /* was malloced - see above */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000691 free(p0);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000692#endif
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000693 cur->after_colon = strchr(cur->before_colon, ':');
694 *cur->after_colon++ = '\0';
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000695 if (cur->before_colon[0] == '.') {
696 /* .mime line: prepend to mime_a list */
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000697 cur->next = mime_a;
698 mime_a = cur;
699 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000700 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000701#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000702 if (cur->before_colon[0] == '*' && cur->before_colon[1] == '.') {
703 /* script interpreter line: prepend to script_i list */
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000704 cur->next = script_i;
705 script_i = cur;
706 continue;
707 }
708#endif
709#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000710//TODO: we do not test for leading "/"??
711//also, do we leak cur if BASIC_AUTH is off?
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000712 if (prev == NULL) {
713 /* first line */
714 g_auth = prev = cur;
715 } else {
716 /* sort path, if current length eq or bigger then move up */
717 Htaccess *prev_hti = g_auth;
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000718 size_t l = strlen(cur->before_colon);
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000719 Htaccess *hti;
720
721 for (hti = prev_hti; hti; hti = hti->next) {
722 if (l >= strlen(hti->before_colon)) {
723 /* insert before hti */
724 cur->next = hti;
725 if (prev_hti != hti) {
726 prev_hti->next = cur;
727 } else {
728 /* insert as top */
729 g_auth = cur;
730 }
731 break;
732 }
733 if (prev_hti != hti)
734 prev_hti = prev_hti->next;
735 }
736 if (!hti) { /* not inserted, add to bottom */
737 prev->next = cur;
738 prev = cur;
739 }
740 }
741#endif /* BASIC_AUTH */
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000742 } /* while (fgets) */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000743 fclose(f);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000744}
745
Denis Vlasenko55a99402006-09-30 20:41:44 +0000746#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000747/*
748 * Given a string, html-encode special characters.
749 * This is used for the -e command line option to provide an easy way
750 * for scripts to encode result data without confusing browsers. The
751 * returned string pointer is memory allocated by malloc().
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000752 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000753 * Returns a pointer to the encoded string (malloced).
754 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000755static char *encodeString(const char *string)
756{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000757 /* take the simple route and encode everything */
758 /* could possibly scan once to get length. */
759 int len = strlen(string);
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000760 char *out = xmalloc(len * 6 + 1);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000761 char *p = out;
762 char ch;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000763
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000764 while ((ch = *string++)) {
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000765 /* very simple check for what to encode */
766 if (isalnum(ch))
767 *p++ = ch;
768 else
769 p += sprintf(p, "&#%d;", (unsigned char) ch);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000770 }
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000771 *p = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000772 return out;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000773}
Denis Vlasenkob3a07152006-11-16 18:04:43 +0000774#endif /* FEATURE_HTTPD_ENCODE_URL_STR */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000775
Denis Vlasenko073214f2007-08-17 19:20:07 +0000776/*
777 * Given a URL encoded string, convert it to plain ascii.
778 * Since decoding always makes strings smaller, the decode is done in-place.
Denis Vlasenkoc4523c22008-03-28 02:24:59 +0000779 * Thus, callers should xstrdup() the argument if they do not want the
Denis Vlasenko073214f2007-08-17 19:20:07 +0000780 * argument modified. The return is the original pointer, allowing this
781 * function to be easily used as arguments to other functions.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000782 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000783 * string The first string to decode.
784 * option_d 1 if called for httpd -d
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000785 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000786 * Returns a pointer to the decoded string (same as input).
787 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000788static unsigned hex_to_bin(unsigned char c)
789{
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000790 unsigned v;
791
792 v = c - '0';
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000793 if (v <= 9)
794 return v;
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000795 /* c | 0x20: letters to lower case, non-letters
796 * to (potentially different) non-letters */
797 v = (unsigned)(c | 0x20) - 'a';
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000798 if (v <= 5)
799 return v + 10;
800 return ~0;
801}
802/* For testing:
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000803void t(char c) { printf("'%c'(%u) %u\n", c, c, hex_to_bin(c)); }
804int main() { t(0x10); t(0x20); t('0'); t('9'); t('A'); t('F'); t('a'); t('f');
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000805t('0'-1); t('9'+1); t('A'-1); t('F'+1); t('a'-1); t('f'+1); return 0; }
806*/
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000807static char *decodeString(char *orig, int option_d)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000808{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000809 /* note that decoded string is always shorter than original */
810 char *string = orig;
811 char *ptr = string;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000812 char c;
Eric Andersena3bb3e62003-06-26 09:05:32 +0000813
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000814 while ((c = *ptr++) != '\0') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000815 unsigned v;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000816
817 if (option_d && c == '+') {
Denis Vlasenko601ae132006-11-28 23:37:46 +0000818 *string++ = ' ';
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000819 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000820 }
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000821 if (c != '%') {
822 *string++ = c;
823 continue;
824 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000825 v = hex_to_bin(ptr[0]);
826 if (v > 15) {
827 bad_hex:
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000828 if (!option_d)
829 return NULL;
830 *string++ = '%';
831 continue;
832 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000833 v = (v * 16) | hex_to_bin(ptr[1]);
834 if (v > 255)
835 goto bad_hex;
836 if (!option_d && (v == '/' || v == '\0')) {
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000837 /* caller takes it as indication of invalid
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000838 * (dangerous wrt exploits) chars */
839 return orig + 1;
840 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000841 *string++ = v;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000842 ptr += 2;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000843 }
844 *string = '\0';
845 return orig;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000846}
847
Denis Vlasenko55a99402006-09-30 20:41:44 +0000848#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000849/*
Denis Vlasenko073214f2007-08-17 19:20:07 +0000850 * Decode a base64 data stream as per rfc1521.
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000851 * Note that the rfc states that non base64 chars are to be ignored.
Denis Vlasenko073214f2007-08-17 19:20:07 +0000852 * Since the decode always results in a shorter size than the input,
853 * it is OK to pass the input arg as an output arg.
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000854 * Parameter: a pointer to a base64 encoded string.
855 * Decoded data is stored in-place.
856 */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000857static void decodeBase64(char *Data)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000858{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000859 const unsigned char *in = (const unsigned char *)Data;
Denis Vlasenko37c33162007-08-19 18:54:22 +0000860 /* The decoded size will be at most 3/4 the size of the encoded */
Denis Vlasenko088b9592007-04-18 21:14:46 +0000861 unsigned ch = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000862 int i = 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000863
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000864 while (*in) {
865 int t = *in++;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000866
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000867 if (t >= '0' && t <= '9')
868 t = t - '0' + 52;
869 else if (t >= 'A' && t <= 'Z')
870 t = t - 'A';
871 else if (t >= 'a' && t <= 'z')
872 t = t - 'a' + 26;
873 else if (t == '+')
874 t = 62;
875 else if (t == '/')
876 t = 63;
877 else if (t == '=')
878 t = 0;
879 else
880 continue;
Glenn L McGrath874e3382003-05-14 12:11:36 +0000881
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000882 ch = (ch << 6) | t;
883 i++;
884 if (i == 4) {
885 *Data++ = (char) (ch >> 16);
886 *Data++ = (char) (ch >> 8);
887 *Data++ = (char) ch;
888 i = 0;
889 }
890 }
Denis Vlasenko088b9592007-04-18 21:14:46 +0000891 *Data = '\0';
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000892}
893#endif
894
Denis Vlasenko073214f2007-08-17 19:20:07 +0000895/*
896 * Create a listen server socket on the designated port.
897 */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000898static int openServer(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000899{
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000900 unsigned n = bb_strtou(bind_addr_or_port, NULL, 10);
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000901 if (!errno && n && n <= 0xffff)
902 n = create_and_bind_stream_or_die(NULL, n);
903 else
904 n = create_and_bind_stream_or_die(bind_addr_or_port, 80);
905 xlisten(n, 9);
906 return n;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000907}
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000908
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000909/*
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000910 * Log the connection closure and exit.
911 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000912static void log_and_exit(void) NORETURN;
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000913static void log_and_exit(void)
914{
Denis Vlasenko921799d2007-08-19 19:28:09 +0000915 /* Paranoia. IE said to be buggy. It may send some extra data
916 * or be confused by us just exiting without SHUT_WR. Oh well. */
917 shutdown(1, SHUT_WR);
Denis Vlasenkofaf334a2008-05-18 15:14:36 +0000918 /* Why??
919 (this also messes up stdin when user runs httpd -i from terminal)
Denis Vlasenko921799d2007-08-19 19:28:09 +0000920 ndelay_on(0);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000921 while (read(STDIN_FILENO, iobuf, IOBUF_SIZE) > 0)
Denis Vlasenko921799d2007-08-19 19:28:09 +0000922 continue;
Denis Vlasenkofaf334a2008-05-18 15:14:36 +0000923 */
Denis Vlasenko921799d2007-08-19 19:28:09 +0000924
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000925 if (verbose > 2)
926 bb_error_msg("closed");
927 _exit(xfunc_error_retval);
928}
929
930/*
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000931 * Create and send HTTP response headers.
932 * The arguments are combined and sent as one write operation. Note that
933 * IE will puke big-time if the headers are not sent in one packet and the
934 * second packet is delayed for any reason.
935 * responseNum - the result code to send.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000936 */
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000937static void send_headers(int responseNum)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000938{
Denis Vlasenko073214f2007-08-17 19:20:07 +0000939 static const char RFC1123FMT[] ALIGN1 = "%a, %d %b %Y %H:%M:%S GMT";
940
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000941 const char *responseString = "";
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000942 const char *infoString = NULL;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000943 const char *mime_type;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000944#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko2f518b02008-02-21 00:12:07 +0000945 const char *error_page = NULL;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000946#endif
Denis Vlasenkob64eed62007-01-14 17:06:11 +0000947 unsigned i;
Denis Vlasenko04158e02009-02-02 10:48:06 +0000948 time_t timer = time(NULL);
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000949 char tmp_str[80];
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000950 int len;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000951
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000952 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
953 if (http_response_type[i] == responseNum) {
954 responseString = http_response[i].name;
955 infoString = http_response[i].info;
956#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
957 error_page = http_error_page[i];
958#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000959 break;
960 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000961 }
962 /* error message is HTML */
963 mime_type = responseNum == HTTP_OK ?
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000964 found_mime_type : "text/html";
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000965
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000966 if (verbose)
Denis Vlasenko241b1562007-08-17 19:18:47 +0000967 bb_error_msg("response:%u", responseNum);
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000968
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000969 /* emit the current date */
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000970 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&timer));
971 len = sprintf(iobuf,
Denis Vlasenko69981422007-01-07 21:25:12 +0000972 "HTTP/1.0 %d %s\r\nContent-type: %s\r\n"
973 "Date: %s\r\nConnection: close\r\n",
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000974 responseNum, responseString, mime_type, tmp_str);
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000975
Denis Vlasenko55a99402006-09-30 20:41:44 +0000976#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000977 if (responseNum == HTTP_UNAUTHORIZED) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000978 len += sprintf(iobuf + len,
Denis Vlasenko8e858e22007-03-07 09:35:43 +0000979 "WWW-Authenticate: Basic realm=\"%s\"\r\n",
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000980 g_realm);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000981 }
Glenn L McGrath3d2405c2003-02-10 22:28:21 +0000982#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000983 if (responseNum == HTTP_MOVED_TEMPORARILY) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000984 len += sprintf(iobuf + len, "Location: %s/%s%s\r\n",
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000985 found_moved_temporarily,
986 (g_query ? "?" : ""),
987 (g_query ? g_query : ""));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000988 }
Eric Andersen07f2fea2004-10-08 08:03:29 +0000989
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000990#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +0000991 if (error_page && access(error_page, R_OK) == 0) {
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000992 strcat(iobuf, "\r\n");
993 len += 2;
994
995 if (DEBUG)
996 fprintf(stderr, "headers: '%s'\n", iobuf);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000997 full_write(STDOUT_FILENO, iobuf, len);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000998 if (DEBUG)
999 fprintf(stderr, "writing error page: '%s'\n", error_page);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001000 return send_file_and_exit(error_page, SEND_BODY);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001001 }
1002#endif
1003
Denis Vlasenkof4310172007-09-21 22:35:18 +00001004 if (file_size != -1) { /* file */
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001005 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&last_mod));
Denis Vlasenkof4310172007-09-21 22:35:18 +00001006#if ENABLE_FEATURE_HTTPD_RANGES
1007 if (responseNum == HTTP_PARTIAL_CONTENT) {
1008 len += sprintf(iobuf + len, "Content-Range: bytes %"OFF_FMT"d-%"OFF_FMT"d/%"OFF_FMT"d\r\n",
1009 range_start,
1010 range_end,
1011 file_size);
1012 file_size = range_end - range_start + 1;
1013 }
1014#endif
1015 len += sprintf(iobuf + len,
1016#if ENABLE_FEATURE_HTTPD_RANGES
1017 "Accept-Ranges: bytes\r\n"
1018#endif
1019 "Last-Modified: %s\r\n%s %"OFF_FMT"d\r\n",
1020 tmp_str,
1021 "Content-length:",
1022 file_size
1023 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001024 }
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001025 iobuf[len++] = '\r';
1026 iobuf[len++] = '\n';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001027 if (infoString) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001028 len += sprintf(iobuf + len,
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001029 "<HTML><HEAD><TITLE>%d %s</TITLE></HEAD>\n"
1030 "<BODY><H1>%d %s</H1>\n%s\n</BODY></HTML>\n",
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001031 responseNum, responseString,
1032 responseNum, responseString, infoString);
1033 }
Denis Vlasenko6c85ddc2006-11-21 00:08:39 +00001034 if (DEBUG)
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001035 fprintf(stderr, "headers: '%s'\n", iobuf);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001036 if (full_write(STDOUT_FILENO, iobuf, len) != len) {
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001037 if (verbose > 1)
1038 bb_perror_msg("error");
1039 log_and_exit();
1040 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001041}
1042
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001043static void send_headers_and_exit(int responseNum) NORETURN;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001044static void send_headers_and_exit(int responseNum)
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001045{
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001046 send_headers(responseNum);
1047 log_and_exit();
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001048}
1049
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001050/*
1051 * Read from the socket until '\n' or EOF. '\r' chars are removed.
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001052 * '\n' is replaced with NUL.
1053 * Return number of characters read or 0 if nothing is read
1054 * ('\r' and '\n' are not counted).
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001055 * Data is returned in iobuf.
1056 */
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001057static int get_line(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001058{
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001059 int count = 0;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001060 char c;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001061
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001062 alarm(HEADER_READ_TIMEOUT);
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001063 while (1) {
1064 if (hdr_cnt <= 0) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001065 hdr_cnt = safe_read(STDIN_FILENO, hdr_buf, sizeof(hdr_buf));
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001066 if (hdr_cnt <= 0)
1067 break;
1068 hdr_ptr = hdr_buf;
1069 }
1070 iobuf[count] = c = *hdr_ptr++;
1071 hdr_cnt--;
1072
1073 if (c == '\r')
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001074 continue;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001075 if (c == '\n') {
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001076 iobuf[count] = '\0';
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001077 break;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001078 }
Denis Vlasenko921799d2007-08-19 19:28:09 +00001079 if (count < (IOBUF_SIZE - 1)) /* check overflow */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001080 count++;
1081 }
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001082 return count;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001083}
1084
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001085#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001086
1087/* gcc 4.2.1 fares better with NOINLINE */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001088static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len) NORETURN;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001089static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len)
1090{
1091 enum { FROM_CGI = 1, TO_CGI = 2 }; /* indexes in pfd[] */
1092 struct pollfd pfd[3];
1093 int out_cnt; /* we buffer a bit of initial CGI output */
1094 int count;
1095
1096 /* iobuf is used for CGI -> network data,
1097 * hdr_buf is for network -> CGI data (POSTDATA) */
1098
1099 /* If CGI dies, we still want to correctly finish reading its output
1100 * and send it to the peer. So please no SIGPIPEs! */
1101 signal(SIGPIPE, SIG_IGN);
1102
Denis Vlasenko4a457562007-10-14 02:34:20 +00001103 // We inconsistently handle a case when more POSTDATA from network
1104 // is coming than we expected. We may give *some part* of that
1105 // extra data to CGI.
1106
1107 //if (hdr_cnt > post_len) {
1108 // /* We got more POSTDATA from network than we expected */
1109 // hdr_cnt = post_len;
1110 //}
1111 post_len -= hdr_cnt;
1112 /* post_len - number of POST bytes not yet read from network */
1113
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001114 /* NB: breaking out of this loop jumps to log_and_exit() */
1115 out_cnt = 0;
1116 while (1) {
1117 memset(pfd, 0, sizeof(pfd));
1118
1119 pfd[FROM_CGI].fd = fromCgi_rd;
1120 pfd[FROM_CGI].events = POLLIN;
1121
1122 if (toCgi_wr) {
1123 pfd[TO_CGI].fd = toCgi_wr;
1124 if (hdr_cnt > 0) {
1125 pfd[TO_CGI].events = POLLOUT;
1126 } else if (post_len > 0) {
1127 pfd[0].events = POLLIN;
1128 } else {
1129 /* post_len <= 0 && hdr_cnt <= 0:
1130 * no more POST data to CGI,
1131 * let CGI see EOF on CGI's stdin */
1132 close(toCgi_wr);
1133 toCgi_wr = 0;
1134 }
1135 }
1136
1137 /* Now wait on the set of sockets */
Denis Vlasenko5d61e712007-09-27 10:09:59 +00001138 count = safe_poll(pfd, 3, -1);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001139 if (count <= 0) {
1140#if 0
Denis Vlasenkofb0eba72008-01-02 19:55:04 +00001141 if (safe_waitpid(pid, &status, WNOHANG) <= 0) {
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001142 /* Weird. CGI didn't exit and no fd's
1143 * are ready, yet poll returned?! */
1144 continue;
1145 }
1146 if (DEBUG && WIFEXITED(status))
1147 bb_error_msg("CGI exited, status=%d", WEXITSTATUS(status));
1148 if (DEBUG && WIFSIGNALED(status))
1149 bb_error_msg("CGI killed, signal=%d", WTERMSIG(status));
1150#endif
1151 break;
1152 }
1153
1154 if (pfd[TO_CGI].revents) {
1155 /* hdr_cnt > 0 here due to the way pfd[TO_CGI].events set */
1156 /* Have data from peer and can write to CGI */
1157 count = safe_write(toCgi_wr, hdr_ptr, hdr_cnt);
1158 /* Doesn't happen, we dont use nonblocking IO here
1159 *if (count < 0 && errno == EAGAIN) {
1160 * ...
1161 *} else */
1162 if (count > 0) {
1163 hdr_ptr += count;
1164 hdr_cnt -= count;
1165 } else {
1166 /* EOF/broken pipe to CGI, stop piping POST data */
1167 hdr_cnt = post_len = 0;
1168 }
1169 }
1170
1171 if (pfd[0].revents) {
1172 /* post_len > 0 && hdr_cnt == 0 here */
1173 /* We expect data, prev data portion is eaten by CGI
1174 * and there *is* data to read from the peer
1175 * (POSTDATA) */
1176 //count = post_len > (int)sizeof(hdr_buf) ? (int)sizeof(hdr_buf) : post_len;
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001177 //count = safe_read(STDIN_FILENO, hdr_buf, count);
1178 count = safe_read(STDIN_FILENO, hdr_buf, sizeof(hdr_buf));
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001179 if (count > 0) {
1180 hdr_cnt = count;
1181 hdr_ptr = hdr_buf;
1182 post_len -= count;
1183 } else {
1184 /* no more POST data can be read */
1185 post_len = 0;
1186 }
1187 }
1188
1189 if (pfd[FROM_CGI].revents) {
1190 /* There is something to read from CGI */
1191 char *rbuf = iobuf;
1192
1193 /* Are we still buffering CGI output? */
1194 if (out_cnt >= 0) {
1195 /* HTTP_200[] has single "\r\n" at the end.
1196 * According to http://hoohoo.ncsa.uiuc.edu/cgi/out.html,
1197 * CGI scripts MUST send their own header terminated by
1198 * empty line, then data. That's why we have only one
1199 * <cr><lf> pair here. We will output "200 OK" line
1200 * if needed, but CGI still has to provide blank line
1201 * between header and body */
1202
1203 /* Must use safe_read, not full_read, because
1204 * CGI may output a few first bytes and then wait
1205 * for POSTDATA without closing stdout.
1206 * With full_read we may wait here forever. */
1207 count = safe_read(fromCgi_rd, rbuf + out_cnt, PIPE_BUF - 8);
1208 if (count <= 0) {
1209 /* eof (or error) and there was no "HTTP",
1210 * so write it, then write received data */
1211 if (out_cnt) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001212 full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1);
1213 full_write(STDOUT_FILENO, rbuf, out_cnt);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001214 }
1215 break; /* CGI stdout is closed, exiting */
1216 }
1217 out_cnt += count;
1218 count = 0;
1219 /* "Status" header format is: "Status: 302 Redirected\r\n" */
1220 if (out_cnt >= 8 && memcmp(rbuf, "Status: ", 8) == 0) {
1221 /* send "HTTP/1.0 " */
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001222 if (full_write(STDOUT_FILENO, HTTP_200, 9) != 9)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001223 break;
1224 rbuf += 8; /* skip "Status: " */
1225 count = out_cnt - 8;
1226 out_cnt = -1; /* buffering off */
1227 } else if (out_cnt >= 4) {
1228 /* Did CGI add "HTTP"? */
1229 if (memcmp(rbuf, HTTP_200, 4) != 0) {
1230 /* there is no "HTTP", do it ourself */
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001231 if (full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1) != sizeof(HTTP_200)-1)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001232 break;
1233 }
1234 /* Commented out:
1235 if (!strstr(rbuf, "ontent-")) {
1236 full_write(s, "Content-type: text/plain\r\n\r\n", 28);
1237 }
1238 * Counter-example of valid CGI without Content-type:
1239 * echo -en "HTTP/1.0 302 Found\r\n"
1240 * echo -en "Location: http://www.busybox.net\r\n"
1241 * echo -en "\r\n"
1242 */
1243 count = out_cnt;
1244 out_cnt = -1; /* buffering off */
1245 }
1246 } else {
1247 count = safe_read(fromCgi_rd, rbuf, PIPE_BUF);
1248 if (count <= 0)
1249 break; /* eof (or error) */
1250 }
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001251 if (full_write(STDOUT_FILENO, rbuf, count) != count)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001252 break;
1253 if (DEBUG)
1254 fprintf(stderr, "cgi read %d bytes: '%.*s'\n", count, count, rbuf);
1255 } /* if (pfd[FROM_CGI].revents) */
1256 } /* while (1) */
1257 log_and_exit();
1258}
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001259#endif
1260
1261#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001262
Denis Vlasenko921799d2007-08-19 19:28:09 +00001263static void setenv1(const char *name, const char *value)
1264{
1265 setenv(name, value ? value : "", 1);
1266}
1267
Denis Vlasenko241b1562007-08-17 19:18:47 +00001268/*
1269 * Spawn CGI script, forward CGI's stdin/out <=> network
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001270 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001271 * Environment variables are set up and the script is invoked with pipes
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001272 * for stdin/stdout. If a POST is being done the script is fed the POST
Denis Vlasenko241b1562007-08-17 19:18:47 +00001273 * data in addition to setting the QUERY_STRING variable (for GETs or POSTs).
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001274 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001275 * Parameters:
1276 * const char *url The requested URL (with leading /).
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001277 * int post_len Length of the POST body.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001278 * const char *cookie For set HTTP_COOKIE.
1279 * const char *content_type For set CONTENT_TYPE.
1280 */
1281static void send_cgi_and_exit(
1282 const char *url,
1283 const char *request,
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001284 int post_len,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001285 const char *cookie,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001286 const char *content_type) NORETURN;
Denis Vlasenko241b1562007-08-17 19:18:47 +00001287static void send_cgi_and_exit(
1288 const char *url,
1289 const char *request,
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001290 int post_len,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001291 const char *cookie,
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001292 const char *content_type)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001293{
Denis Vlasenko37188322008-02-16 13:20:56 +00001294 struct fd_pair fromCgi; /* CGI -> httpd pipe */
1295 struct fd_pair toCgi; /* httpd -> CGI pipe */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001296 char *script;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001297 int pid;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001298
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001299 /* Make a copy. NB: caller guarantees:
1300 * url[0] == '/', url[1] != '/' */
1301 url = xstrdup(url);
1302
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001303 /*
1304 * We are mucking with environment _first_ and then vfork/exec,
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001305 * this allows us to use vfork safely. Parent doesn't care about
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001306 * these environment changes anyway.
1307 */
1308
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001309 /* Check for [dirs/]script.cgi/PATH_INFO */
1310 script = (char*)url;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001311 while ((script = strchr(script + 1, '/')) != NULL) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001312 struct stat sb;
1313
1314 *script = '\0';
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001315 if (!is_directory(url + 1, 1, &sb)) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001316 /* not directory, found script.cgi/PATH_INFO */
1317 *script = '/';
1318 break;
1319 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001320 *script = '/'; /* is directory, find next '/' */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001321 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001322 setenv1("PATH_INFO", script); /* set to /PATH_INFO or "" */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001323 setenv1("REQUEST_METHOD", request);
1324 if (g_query) {
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001325 putenv(xasprintf("%s=%s?%s", "REQUEST_URI", url, g_query));
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001326 } else {
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001327 setenv1("REQUEST_URI", url);
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001328 }
1329 if (script != NULL)
1330 *script = '\0'; /* cut off /PATH_INFO */
1331
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001332 /* SCRIPT_FILENAME is required by PHP in CGI mode */
1333 if (home_httpd[0] == '/') {
1334 char *fullpath = concat_path_file(home_httpd, url);
1335 setenv1("SCRIPT_FILENAME", fullpath);
1336 }
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001337 /* set SCRIPT_NAME as full path: /cgi-bin/dirs/script.cgi */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001338 setenv1("SCRIPT_NAME", url);
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001339 /* http://hoohoo.ncsa.uiuc.edu/cgi/env.html:
1340 * QUERY_STRING: The information which follows the ? in the URL
1341 * which referenced this script. This is the query information.
1342 * It should not be decoded in any fashion. This variable
1343 * should always be set when there is query information,
1344 * regardless of command line decoding. */
1345 /* (Older versions of bbox seem to do some decoding) */
1346 setenv1("QUERY_STRING", g_query);
1347 putenv((char*)"SERVER_SOFTWARE=busybox httpd/"BB_VER);
1348 putenv((char*)"SERVER_PROTOCOL=HTTP/1.0");
1349 putenv((char*)"GATEWAY_INTERFACE=CGI/1.1");
1350 /* Having _separate_ variables for IP and port defeats
1351 * the purpose of having socket abstraction. Which "port"
1352 * are you using on Unix domain socket?
1353 * IOW - REMOTE_PEER="1.2.3.4:56" makes much more sense.
1354 * Oh well... */
1355 {
1356 char *p = rmt_ip_str ? rmt_ip_str : (char*)"";
1357 char *cp = strrchr(p, ':');
1358 if (ENABLE_FEATURE_IPV6 && cp && strchr(cp, ']'))
1359 cp = NULL;
1360 if (cp) *cp = '\0'; /* delete :PORT */
1361 setenv1("REMOTE_ADDR", p);
Denis Vlasenko37c33162007-08-19 18:54:22 +00001362 if (cp) {
1363 *cp = ':';
1364#if ENABLE_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
1365 setenv1("REMOTE_PORT", cp + 1);
1366#endif
1367 }
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001368 }
1369 setenv1("HTTP_USER_AGENT", user_agent);
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +00001370 if (http_accept)
1371 setenv1("HTTP_ACCEPT", http_accept);
1372 if (http_accept_language)
1373 setenv1("HTTP_ACCEPT_LANGUAGE", http_accept_language);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001374 if (post_len)
1375 putenv(xasprintf("CONTENT_LENGTH=%d", post_len));
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001376 if (cookie)
1377 setenv1("HTTP_COOKIE", cookie);
1378 if (content_type)
1379 setenv1("CONTENT_TYPE", content_type);
1380#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1381 if (remoteuser) {
1382 setenv1("REMOTE_USER", remoteuser);
1383 putenv((char*)"AUTH_TYPE=Basic");
1384 }
1385#endif
1386 if (referer)
1387 setenv1("HTTP_REFERER", referer);
Denis Vlasenko9d1d4c02008-11-22 20:29:35 +00001388 setenv1("HTTP_HOST", host); /* set to "" if NULL */
Denis Vlasenkocbb4e612009-03-18 20:00:46 +00001389 /* setenv1("SERVER_NAME", safe_gethostname()); - don't do this,
1390 * just run "env SERVER_NAME=xyz httpd ..." instead */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001391
Denis Vlasenko37188322008-02-16 13:20:56 +00001392 xpiped_pair(fromCgi);
1393 xpiped_pair(toCgi);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001394
Denis Vlasenko80281fe2007-03-07 22:16:38 +00001395 pid = vfork();
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001396 if (pid < 0) {
1397 /* TODO: log perror? */
1398 log_and_exit();
1399 }
Denis Vlasenkof7996f32007-01-11 17:20:00 +00001400
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001401 if (!pid) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001402 /* Child process */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001403 char *argv[3];
1404
Denis Vlasenko241b1562007-08-17 19:18:47 +00001405 xfunc_error_retval = 242;
1406
Denis Vlasenko284d0fa2008-02-16 13:18:17 +00001407 /* NB: close _first_, then move fds! */
1408 close(toCgi.wr);
1409 close(fromCgi.rd);
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001410 xmove_fd(toCgi.rd, 0); /* replace stdin with the pipe */
1411 xmove_fd(fromCgi.wr, 1); /* replace stdout with the pipe */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001412 /* User seeing stderr output can be a security problem.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001413 * If CGI really wants that, it can always do dup itself. */
Denis Vlasenko1ec15cd2007-08-11 20:20:43 +00001414 /* dup2(1, 2); */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001415
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001416 /* Chdiring to script's dir */
1417 script = strrchr(url, '/');
1418 if (script != url) { /* paranoia */
1419 *script = '\0';
1420 if (chdir(url + 1) != 0) {
1421 bb_perror_msg("chdir %s", url + 1);
1422 goto error_execing_cgi;
1423 }
1424 // not needed: *script = '/';
1425 }
1426 script++;
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001427
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001428 /* set argv[0] to name without path */
1429 argv[0] = script;
1430 argv[1] = NULL;
Denis Vlasenkofc213052008-02-11 16:26:22 +00001431
1432#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001433 {
1434 char *suffix = strrchr(script, '.');
Denis Vlasenkofc213052008-02-11 16:26:22 +00001435
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001436 if (suffix) {
1437 Htaccess *cur;
1438 for (cur = script_i; cur; cur = cur->next) {
1439 if (strcmp(cur->before_colon + 1, suffix) == 0) {
1440 /* found interpreter name */
1441 argv[0] = cur->after_colon;
1442 argv[1] = script;
1443 argv[2] = NULL;
1444 break;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001445 }
1446 }
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001447 }
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001448 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001449#endif
1450 /* restore default signal dispositions for CGI process */
1451 bb_signals(0
1452 | (1 << SIGCHLD)
1453 | (1 << SIGPIPE)
1454 | (1 << SIGHUP)
1455 , SIG_DFL);
1456
1457 /* _NOT_ execvp. We do not search PATH. argv[0] is a filename
1458 * without any dir components and will only match a file
1459 * in the current directory */
1460 execv(argv[0], argv);
1461 if (verbose)
1462 bb_perror_msg("exec %s", argv[0]);
1463 error_execing_cgi:
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001464 /* send to stdout
1465 * (we are CGI here, our stdout is pumped to the net) */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001466 send_headers_and_exit(HTTP_NOT_FOUND);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001467 } /* end child */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001468
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001469 /* Parent process */
1470
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001471 /* Restore variables possibly changed by child */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001472 xfunc_error_retval = 0;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001473
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001474 /* Pump data */
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001475 close(fromCgi.wr);
1476 close(toCgi.rd);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001477 cgi_io_loop_and_exit(fromCgi.rd, toCgi.wr, post_len);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001478}
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001479
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001480#endif /* FEATURE_HTTPD_CGI */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001481
Denis Vlasenko241b1562007-08-17 19:18:47 +00001482/*
1483 * Send a file response to a HTTP request, and exit
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00001484 *
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001485 * Parameters:
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001486 * const char *url The requested URL (with leading /).
1487 * what What to send (headers/body/both).
Denis Vlasenko241b1562007-08-17 19:18:47 +00001488 */
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001489static NOINLINE void send_file_and_exit(const char *url, int what)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001490{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001491 static const char *const suffixTable[] = {
1492 /* Warning: shorter equivalent suffix in one line must be first */
1493 ".htm.html", "text/html",
1494 ".jpg.jpeg", "image/jpeg",
1495 ".gif", "image/gif",
1496 ".png", "image/png",
1497 ".txt.h.c.cc.cpp", "text/plain",
1498 ".css", "text/css",
1499 ".wav", "audio/wav",
1500 ".avi", "video/x-msvideo",
1501 ".qt.mov", "video/quicktime",
1502 ".mpe.mpeg", "video/mpeg",
1503 ".mid.midi", "audio/midi",
1504 ".mp3", "audio/mpeg",
1505#if 0 /* unpopular */
1506 ".au", "audio/basic",
1507 ".pac", "application/x-ns-proxy-autoconfig",
1508 ".vrml.wrl", "model/vrml",
1509#endif
1510 NULL
1511 };
1512
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001513 char *suffix;
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001514 int fd;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001515 const char *const *table;
1516 const char *try_suffix;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001517 ssize_t count;
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001518
1519 fd = open(url, O_RDONLY);
1520 if (fd < 0) {
1521 if (DEBUG)
1522 bb_perror_msg("can't open '%s'", url);
1523 /* Error pages are sent by using send_file_and_exit(SEND_BODY).
1524 * IOW: it is unsafe to call send_headers_and_exit
1525 * if what is SEND_BODY! Can recurse! */
1526 if (what != SEND_BODY)
1527 send_headers_and_exit(HTTP_NOT_FOUND);
1528 log_and_exit();
1529 }
1530
1531 if (DEBUG)
1532 bb_error_msg("sending file '%s' content-type: %s",
1533 url, found_mime_type);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001534
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001535 /* If you want to know about EPIPE below
1536 * (happens if you abort downloads from local httpd): */
1537 signal(SIGPIPE, SIG_IGN);
1538
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001539 suffix = strrchr(url, '.');
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001540
Denis Vlasenko073214f2007-08-17 19:20:07 +00001541 /* If not found, set default as "application/octet-stream"; */
1542 found_mime_type = "application/octet-stream";
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001543 if (suffix) {
Denis Vlasenko073214f2007-08-17 19:20:07 +00001544 Htaccess *cur;
Denis Vlasenko073214f2007-08-17 19:20:07 +00001545 for (table = suffixTable; *table; table += 2) {
1546 try_suffix = strstr(table[0], suffix);
1547 if (try_suffix) {
1548 try_suffix += strlen(suffix);
1549 if (*try_suffix == '\0' || *try_suffix == '.') {
1550 found_mime_type = table[1];
1551 break;
1552 }
1553 }
1554 }
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001555 for (cur = mime_a; cur; cur = cur->next) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001556 if (strcmp(cur->before_colon, suffix) == 0) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001557 found_mime_type = cur->after_colon;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001558 break;
1559 }
1560 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001561 }
Denis Vlasenkof4310172007-09-21 22:35:18 +00001562#if ENABLE_FEATURE_HTTPD_RANGES
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001563 if (what == SEND_BODY)
Denis Vlasenkof4310172007-09-21 22:35:18 +00001564 range_start = 0; /* err pages and ranges don't mix */
1565 range_len = MAXINT(off_t);
1566 if (range_start) {
1567 if (!range_end) {
1568 range_end = file_size - 1;
1569 }
1570 if (range_end < range_start
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001571 || lseek(fd, range_start, SEEK_SET) != range_start
Denis Vlasenkof4310172007-09-21 22:35:18 +00001572 ) {
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001573 lseek(fd, 0, SEEK_SET);
Denis Vlasenkof4310172007-09-21 22:35:18 +00001574 range_start = 0;
1575 } else {
1576 range_len = range_end - range_start + 1;
1577 send_headers(HTTP_PARTIAL_CONTENT);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001578 what = SEND_BODY;
Denis Vlasenkof4310172007-09-21 22:35:18 +00001579 }
1580 }
1581#endif
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001582 if (what & SEND_HEADERS)
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001583 send_headers(HTTP_OK);
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001584#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001585 {
1586 off_t offset = range_start;
1587 while (1) {
1588 /* sz is rounded down to 64k */
1589 ssize_t sz = MAXINT(ssize_t) - 0xffff;
1590 USE_FEATURE_HTTPD_RANGES(if (sz > range_len) sz = range_len;)
1591 count = sendfile(STDOUT_FILENO, fd, &offset, sz);
1592 if (count < 0) {
1593 if (offset == range_start)
1594 break; /* fall back to read/write loop */
1595 goto fin;
1596 }
1597 USE_FEATURE_HTTPD_RANGES(range_len -= sz;)
1598 if (count == 0 || range_len == 0)
1599 log_and_exit();
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001600 }
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001601 }
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001602#endif
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001603 while ((count = safe_read(fd, iobuf, IOBUF_SIZE)) > 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00001604 ssize_t n;
1605 USE_FEATURE_HTTPD_RANGES(if (count > range_len) count = range_len;)
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001606 n = full_write(STDOUT_FILENO, iobuf, count);
Denis Vlasenko241b1562007-08-17 19:18:47 +00001607 if (count != n)
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001608 break;
Denis Vlasenkof4310172007-09-21 22:35:18 +00001609 USE_FEATURE_HTTPD_RANGES(range_len -= count;)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001610 if (range_len == 0)
Denis Vlasenkof4310172007-09-21 22:35:18 +00001611 break;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001612 }
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001613 if (count < 0) {
1614 USE_FEATURE_HTTPD_USE_SENDFILE(fin:)
1615 if (verbose > 1)
1616 bb_perror_msg("error");
1617 }
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001618 log_and_exit();
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001619}
1620
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001621static int checkPermIP(void)
1622{
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001623 Htaccess_IP *cur;
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001624
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001625 for (cur = ip_a_d; cur; cur = cur->next) {
Denis Vlasenkob64eed62007-01-14 17:06:11 +00001626#if DEBUG
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001627 fprintf(stderr,
1628 "checkPermIP: '%s' ? '%u.%u.%u.%u/%u.%u.%u.%u'\n",
1629 rmt_ip_str,
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00001630 (unsigned char)(cur->ip >> 24),
1631 (unsigned char)(cur->ip >> 16),
1632 (unsigned char)(cur->ip >> 8),
1633 (unsigned char)(cur->ip),
1634 (unsigned char)(cur->mask >> 24),
1635 (unsigned char)(cur->mask >> 16),
1636 (unsigned char)(cur->mask >> 8),
1637 (unsigned char)(cur->mask)
1638 );
Denis Vlasenko3bba5452006-12-30 17:57:03 +00001639#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001640 if ((rmt_ip & cur->mask) == cur->ip)
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001641 return (cur->allow_deny == 'A'); /* A -> 1 */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001642 }
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001643
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001644 return !flg_deny_all; /* depends on whether we saw "D:*" */
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001645}
1646
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001647#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko073214f2007-08-17 19:20:07 +00001648/*
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001649 * Config file entries are of the form "/<path>:<user>:<passwd>".
1650 * If config file has no prefix match for path, access is allowed.
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001651 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001652 * path The file path
1653 * user_and_passwd "user:passwd" to validate
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001654 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001655 * Returns 1 if user_and_passwd is OK.
Denis Vlasenko073214f2007-08-17 19:20:07 +00001656 */
Denis Vlasenko25b46302008-06-13 09:55:13 +00001657static int check_user_passwd(const char *path, const char *user_and_passwd)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001658{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001659 Htaccess *cur;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001660 const char *prev = NULL;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001661
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001662 for (cur = g_auth; cur; cur = cur->next) {
Denis Vlasenko25b46302008-06-13 09:55:13 +00001663 const char *dir_prefix;
1664 size_t len;
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001665
Denis Vlasenko25b46302008-06-13 09:55:13 +00001666 dir_prefix = cur->before_colon;
1667
1668 /* WHY? */
1669 /* If already saw a match, don't accept other different matches */
1670 if (prev && strcmp(prev, dir_prefix) != 0)
1671 continue;
1672
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001673 if (DEBUG)
Denis Vlasenko25b46302008-06-13 09:55:13 +00001674 fprintf(stderr, "checkPerm: '%s' ? '%s'\n", dir_prefix, user_and_passwd);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001675
Denis Vlasenko25b46302008-06-13 09:55:13 +00001676 /* If it's not a prefix match, continue searching */
1677 len = strlen(dir_prefix);
1678 if (len != 1 /* dir_prefix "/" matches all, don't need to check */
1679 && (strncmp(dir_prefix, path, len) != 0
1680 || (path[len] != '/' && path[len] != '\0'))
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001681 ) {
Denis Vlasenko25b46302008-06-13 09:55:13 +00001682 continue;
1683 }
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001684
Denis Vlasenko25b46302008-06-13 09:55:13 +00001685 /* Path match found */
1686 prev = dir_prefix;
Eric Andersen35e643b2003-07-28 07:40:39 +00001687
Denis Vlasenko25b46302008-06-13 09:55:13 +00001688 if (ENABLE_FEATURE_HTTPD_AUTH_MD5) {
1689 char *md5_passwd;
1690
1691 md5_passwd = strchr(cur->after_colon, ':');
1692 if (md5_passwd && md5_passwd[1] == '$' && md5_passwd[2] == '1'
1693 && md5_passwd[3] == '$' && md5_passwd[4]
1694 ) {
1695 char *encrypted;
1696 int r, user_len_p1;
1697
1698 md5_passwd++;
1699 user_len_p1 = md5_passwd - cur->after_colon;
1700 /* comparing "user:" */
1701 if (strncmp(cur->after_colon, user_and_passwd, user_len_p1) != 0) {
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001702 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001703 }
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001704
Denis Vlasenko25b46302008-06-13 09:55:13 +00001705 encrypted = pw_encrypt(
1706 user_and_passwd + user_len_p1 /* cleartext pwd from user */,
1707 md5_passwd /*salt */, 1 /* cleanup */);
1708 r = strcmp(encrypted, md5_passwd);
1709 free(encrypted);
1710 if (r == 0)
1711 goto set_remoteuser_var; /* Ok */
1712 continue;
1713 }
1714 }
1715
1716 /* Comparing plaintext "user:pass" in one go */
1717 if (strcmp(cur->after_colon, user_and_passwd) == 0) {
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001718 set_remoteuser_var:
Denis Vlasenko25b46302008-06-13 09:55:13 +00001719 remoteuser = xstrndup(user_and_passwd,
1720 strchrnul(user_and_passwd, ':') - user_and_passwd);
1721 return 1; /* Ok */
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001722 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001723 } /* for */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001724
Denis Vlasenko25b46302008-06-13 09:55:13 +00001725 /* 0(bad) if prev is set: matches were found but passwd was wrong */
1726 return (prev == NULL);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001727}
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001728#endif /* FEATURE_HTTPD_BASIC_AUTH */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001729
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001730#if ENABLE_FEATURE_HTTPD_PROXY
1731static Htaccess_Proxy *find_proxy_entry(const char *url)
1732{
1733 Htaccess_Proxy *p;
1734 for (p = proxy; p; p = p->next) {
1735 if (strncmp(url, p->url_from, strlen(p->url_from)) == 0)
1736 return p;
1737 }
1738 return NULL;
1739}
1740#endif
1741
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001742/*
1743 * Handle timeouts
1744 */
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001745static void send_REQUEST_TIMEOUT_and_exit(int sig) NORETURN;
1746static void send_REQUEST_TIMEOUT_and_exit(int sig UNUSED_PARAM)
Eric Andersen07f2fea2004-10-08 08:03:29 +00001747{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001748 send_headers_and_exit(HTTP_REQUEST_TIMEOUT);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001749}
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001750
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001751/*
1752 * Handle an incoming http request and exit.
1753 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001754static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr) NORETURN;
Denis Vlasenko367960b2007-08-18 14:20:21 +00001755static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001756{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001757 static const char request_GET[] ALIGN1 = "GET";
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001758 struct stat sb;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001759 char *urlcopy;
1760 char *urlp;
1761 char *tptr;
Denis Vlasenko55a99402006-09-30 20:41:44 +00001762#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001763 static const char request_HEAD[] ALIGN1 = "HEAD";
Denis Vlasenko073214f2007-08-17 19:20:07 +00001764 const char *prequest;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001765 char *cookie = NULL;
1766 char *content_type = NULL;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001767 unsigned long length = 0;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001768#elif ENABLE_FEATURE_HTTPD_PROXY
1769#define prequest request_GET
1770 unsigned long length = 0;
1771#endif
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001772#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1773 smallint authorized = -1;
1774#endif
1775 smallint ip_allowed;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001776 char http_major_version;
1777#if ENABLE_FEATURE_HTTPD_PROXY
1778 char http_minor_version;
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001779 char *header_buf = header_buf; /* for gcc */
1780 char *header_ptr = header_ptr;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001781 Htaccess_Proxy *proxy_entry;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001782#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001783
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001784 /* Allocation of iobuf is postponed until now
1785 * (IOW, server process doesn't need to waste 8k) */
Denis Vlasenko921799d2007-08-19 19:28:09 +00001786 iobuf = xmalloc(IOBUF_SIZE);
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001787
Denis Vlasenko367960b2007-08-18 14:20:21 +00001788 rmt_ip = 0;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001789 if (fromAddr->u.sa.sa_family == AF_INET) {
1790 rmt_ip = ntohl(fromAddr->u.sin.sin_addr.s_addr);
Denis Vlasenko367960b2007-08-18 14:20:21 +00001791 }
Denis Vlasenko35465a32007-09-25 11:58:33 +00001792#if ENABLE_FEATURE_IPV6
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001793 if (fromAddr->u.sa.sa_family == AF_INET6
1794 && fromAddr->u.sin6.sin6_addr.s6_addr32[0] == 0
1795 && fromAddr->u.sin6.sin6_addr.s6_addr32[1] == 0
1796 && ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[2]) == 0xffff)
1797 rmt_ip = ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[3]);
Denis Vlasenko35465a32007-09-25 11:58:33 +00001798#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00001799 if (ENABLE_FEATURE_HTTPD_CGI || DEBUG || verbose) {
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00001800 /* NB: can be NULL (user runs httpd -i by hand?) */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001801 rmt_ip_str = xmalloc_sockaddr2dotted(&fromAddr->u.sa);
Denis Vlasenko367960b2007-08-18 14:20:21 +00001802 }
1803 if (verbose) {
1804 /* this trick makes -v logging much simpler */
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00001805 if (rmt_ip_str)
1806 applet_name = rmt_ip_str;
Denis Vlasenko367960b2007-08-18 14:20:21 +00001807 if (verbose > 2)
1808 bb_error_msg("connected");
1809 }
1810
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001811 /* Install timeout handler. get_line() needs it. */
1812 signal(SIGALRM, send_REQUEST_TIMEOUT_and_exit);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001813
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001814 if (!get_line()) /* EOF or error or empty line */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001815 send_headers_and_exit(HTTP_BAD_REQUEST);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001816
Denis Vlasenko073214f2007-08-17 19:20:07 +00001817 /* Determine type of request (GET/POST) */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001818 urlp = strpbrk(iobuf, " \t");
1819 if (urlp == NULL)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001820 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001821 *urlp++ = '\0';
Denis Vlasenko55a99402006-09-30 20:41:44 +00001822#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko073214f2007-08-17 19:20:07 +00001823 prequest = request_GET;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001824 if (strcasecmp(iobuf, prequest) != 0) {
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001825 prequest = request_HEAD;
1826 if (strcasecmp(iobuf, prequest) != 0) {
1827 prequest = "POST";
1828 if (strcasecmp(iobuf, prequest) != 0)
1829 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
1830 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001831 }
1832#else
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001833 if (strcasecmp(iobuf, request_GET) != 0)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001834 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001835#endif
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001836 urlp = skip_whitespace(urlp);
1837 if (urlp[0] != '/')
1838 send_headers_and_exit(HTTP_BAD_REQUEST);
1839
1840 /* Find end of URL and parse HTTP version, if any */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001841 http_major_version = '0';
1842 USE_FEATURE_HTTPD_PROXY(http_minor_version = '0';)
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001843 tptr = strchrnul(urlp, ' ');
1844 /* Is it " HTTP/"? */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001845 if (tptr[0] && strncmp(tptr + 1, HTTP_200, 5) == 0) {
1846 http_major_version = tptr[6];
1847 USE_FEATURE_HTTPD_PROXY(http_minor_version = tptr[8];)
1848 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001849 *tptr = '\0';
Glenn L McGrath06e95652003-02-09 06:51:14 +00001850
Denis Vlasenko073214f2007-08-17 19:20:07 +00001851 /* Copy URL from after "GET "/"POST " to stack-allocated char[] */
Denis Vlasenkofcd878e2007-12-29 02:16:23 +00001852 urlcopy = alloca((tptr - urlp) + 2 + strlen(index_page));
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001853 /*if (urlcopy == NULL)
1854 * send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);*/
1855 strcpy(urlcopy, urlp);
1856 /* NB: urlcopy ptr is never changed after this */
Denis Vlasenko073214f2007-08-17 19:20:07 +00001857
1858 /* Extract url args if present */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001859 g_query = NULL;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001860 tptr = strchr(urlcopy, '?');
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001861 if (tptr) {
1862 *tptr++ = '\0';
1863 g_query = tptr;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001864 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001865
Denis Vlasenko073214f2007-08-17 19:20:07 +00001866 /* Decode URL escape sequences */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001867 tptr = decodeString(urlcopy, 0);
1868 if (tptr == NULL)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001869 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001870 if (tptr == urlcopy + 1) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001871 /* '/' or NUL is encoded */
1872 send_headers_and_exit(HTTP_NOT_FOUND);
1873 }
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001874
Denis Vlasenko073214f2007-08-17 19:20:07 +00001875 /* Canonicalize path */
1876 /* Algorithm stolen from libbb bb_simplify_path(),
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001877 * but don't strdup, retain trailing slash, protect root */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001878 urlp = tptr = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001879 do {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001880 if (*urlp == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001881 /* skip duplicate (or initial) slash */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001882 if (*tptr == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001883 continue;
1884 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001885 if (*tptr == '.') {
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001886 /* skip extra "/./" */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001887 if (tptr[1] == '/' || !tptr[1]) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001888 continue;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001889 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001890 /* "..": be careful */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001891 if (tptr[1] == '.' && (tptr[2] == '/' || !tptr[2])) {
1892 ++tptr;
1893 if (urlp == urlcopy) /* protect root */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001894 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001895 while (*--urlp != '/') /* omit previous dir */;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001896 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001897 }
1898 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001899 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001900 *++urlp = *tptr;
1901 } while (*++tptr);
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001902 *++urlp = '\0'; /* terminate after last character */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001903
Denis Vlasenko073214f2007-08-17 19:20:07 +00001904 /* If URL is a directory, add '/' */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001905 if (urlp[-1] != '/') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001906 if (is_directory(urlcopy + 1, 1, &sb)) {
1907 found_moved_temporarily = urlcopy;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001908 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001909 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001910
Denis Vlasenko073214f2007-08-17 19:20:07 +00001911 /* Log it */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001912 if (verbose > 1)
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001913 bb_error_msg("url:%s", urlcopy);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001914
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001915 tptr = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001916 ip_allowed = checkPermIP();
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001917 while (ip_allowed && (tptr = strchr(tptr + 1, '/')) != NULL) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001918 /* have path1/path2 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001919 *tptr = '\0';
1920 if (is_directory(urlcopy + 1, 1, &sb)) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001921 /* may have subdir config */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001922 parse_conf(urlcopy + 1, SUBDIR_PARSE);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001923 ip_allowed = checkPermIP();
1924 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001925 *tptr = '/';
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001926 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001927
1928#if ENABLE_FEATURE_HTTPD_PROXY
1929 proxy_entry = find_proxy_entry(urlcopy);
1930 if (proxy_entry)
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001931 header_buf = header_ptr = xmalloc(IOBUF_SIZE);
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001932#endif
1933
1934 if (http_major_version >= '0') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001935 /* Request was with "... HTTP/nXXX", and n >= 0 */
Denis Vlasenko073214f2007-08-17 19:20:07 +00001936
1937 /* Read until blank line for HTTP version specified, else parse immediate */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001938 while (1) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001939 if (!get_line())
1940 break; /* EOF or error or empty line */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001941 if (DEBUG)
1942 bb_error_msg("header: '%s'", iobuf);
Denis Vlasenko073214f2007-08-17 19:20:07 +00001943
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001944#if ENABLE_FEATURE_HTTPD_PROXY
1945 /* We need 2 more bytes for yet another "\r\n" -
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001946 * see near fdprintf(proxy_fd...) further below */
1947 if (proxy_entry && (header_ptr - header_buf) < IOBUF_SIZE - 2) {
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001948 int len = strlen(iobuf);
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001949 if (len > IOBUF_SIZE - (header_ptr - header_buf) - 4)
1950 len = IOBUF_SIZE - (header_ptr - header_buf) - 4;
1951 memcpy(header_ptr, iobuf, len);
1952 header_ptr += len;
1953 header_ptr[0] = '\r';
1954 header_ptr[1] = '\n';
1955 header_ptr += 2;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001956 }
1957#endif
1958
1959#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
1960 /* Try and do our best to parse more lines */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001961 if ((STRNCASECMP(iobuf, "Content-length:") == 0)) {
1962 /* extra read only for POST */
Denis Vlasenko85c24712008-03-17 09:04:04 +00001963 if (prequest != request_GET
1964#if ENABLE_FEATURE_HTTPD_CGI
1965 && prequest != request_HEAD
1966#endif
1967 ) {
Denis Vlasenko9c8c0382008-03-17 12:58:19 +00001968 tptr = skip_whitespace(iobuf + sizeof("Content-length:") - 1);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001969 if (!tptr[0])
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001970 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001971 /* not using strtoul: it ignores leading minus! */
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001972 length = bb_strtou(tptr, NULL, 10);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001973 /* length is "ulong", but we need to pass it to int later */
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001974 if (errno || length > INT_MAX)
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001975 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001976 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001977 }
1978#endif
1979#if ENABLE_FEATURE_HTTPD_CGI
1980 else if (STRNCASECMP(iobuf, "Cookie:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00001981 cookie = xstrdup(skip_whitespace(iobuf + sizeof("Cookie:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001982 } else if (STRNCASECMP(iobuf, "Content-Type:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00001983 content_type = xstrdup(skip_whitespace(iobuf + sizeof("Content-Type:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001984 } else if (STRNCASECMP(iobuf, "Referer:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00001985 referer = xstrdup(skip_whitespace(iobuf + sizeof("Referer:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001986 } else if (STRNCASECMP(iobuf, "User-Agent:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00001987 user_agent = xstrdup(skip_whitespace(iobuf + sizeof("User-Agent:")-1));
Denis Vlasenko9d1d4c02008-11-22 20:29:35 +00001988 } else if (STRNCASECMP(iobuf, "Host:") == 0) {
1989 host = xstrdup(skip_whitespace(iobuf + sizeof("Host:")-1));
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +00001990 } else if (STRNCASECMP(iobuf, "Accept:") == 0) {
1991 http_accept = xstrdup(skip_whitespace(iobuf + sizeof("Accept:")-1));
1992 } else if (STRNCASECMP(iobuf, "Accept-Language:") == 0) {
1993 http_accept_language = xstrdup(skip_whitespace(iobuf + sizeof("Accept-Language:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001994 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001995#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00001996#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001997 if (STRNCASECMP(iobuf, "Authorization:") == 0) {
1998 /* We only allow Basic credentials.
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001999 * It shows up as "Authorization: Basic <user>:<passwd>" where
2000 * "<user>:<passwd>" is base64 encoded.
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002001 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002002 tptr = skip_whitespace(iobuf + sizeof("Authorization:")-1);
2003 if (STRNCASECMP(tptr, "Basic") != 0)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002004 continue;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002005 tptr += sizeof("Basic")-1;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002006 /* decodeBase64() skips whitespace itself */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002007 decodeBase64(tptr);
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002008 authorized = check_user_passwd(urlcopy, tptr);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002009 }
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002010#endif
Denis Vlasenkof4310172007-09-21 22:35:18 +00002011#if ENABLE_FEATURE_HTTPD_RANGES
2012 if (STRNCASECMP(iobuf, "Range:") == 0) {
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002013 /* We know only bytes=NNN-[MMM] */
Denis Vlasenkof4310172007-09-21 22:35:18 +00002014 char *s = skip_whitespace(iobuf + sizeof("Range:")-1);
2015 if (strncmp(s, "bytes=", 6) == 0) {
2016 s += sizeof("bytes=")-1;
2017 range_start = BB_STRTOOFF(s, &s, 10);
2018 if (s[0] != '-' || range_start < 0) {
2019 range_start = 0;
2020 } else if (s[1]) {
2021 range_end = BB_STRTOOFF(s+1, NULL, 10);
2022 if (errno || range_end < range_start)
2023 range_start = 0;
2024 }
2025 }
2026 }
2027#endif
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002028 } /* while extra header reading */
2029 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002030
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002031 /* We are done reading headers, disable peer timeout */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002032 alarm(0);
2033
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002034 if (strcmp(bb_basename(urlcopy), httpd_conf) == 0 || !ip_allowed) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002035 /* protect listing [/path]/httpd_conf or IP deny */
2036 send_headers_and_exit(HTTP_FORBIDDEN);
2037 }
2038
2039#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002040 /* Case: no "Authorization:" was seen, but page does require passwd.
2041 * Check that with dummy user:pass */
Denis Vlasenko7504f2f2008-06-13 13:20:38 +00002042 if (authorized < 0)
2043 authorized = check_user_passwd(urlcopy, ":");
2044 if (!authorized)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002045 send_headers_and_exit(HTTP_UNAUTHORIZED);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002046#endif
2047
2048 if (found_moved_temporarily) {
2049 send_headers_and_exit(HTTP_MOVED_TEMPORARILY);
2050 }
2051
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002052#if ENABLE_FEATURE_HTTPD_PROXY
2053 if (proxy_entry != NULL) {
2054 int proxy_fd;
2055 len_and_sockaddr *lsa;
2056
2057 proxy_fd = socket(AF_INET, SOCK_STREAM, 0);
2058 if (proxy_fd < 0)
2059 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2060 lsa = host2sockaddr(proxy_entry->host_port, 80);
2061 if (lsa == NULL)
2062 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002063 if (connect(proxy_fd, &lsa->u.sa, lsa->len) < 0)
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002064 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2065 fdprintf(proxy_fd, "%s %s%s%s%s HTTP/%c.%c\r\n",
2066 prequest, /* GET or POST */
2067 proxy_entry->url_to, /* url part 1 */
2068 urlcopy + strlen(proxy_entry->url_from), /* url part 2 */
2069 (g_query ? "?" : ""), /* "?" (maybe) */
2070 (g_query ? g_query : ""), /* query string (maybe) */
2071 http_major_version, http_minor_version);
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00002072 header_ptr[0] = '\r';
2073 header_ptr[1] = '\n';
2074 header_ptr += 2;
2075 write(proxy_fd, header_buf, header_ptr - header_buf);
2076 free(header_buf); /* on the order of 8k, free it */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002077 /* cgi_io_loop_and_exit needs to have two disctinct fds */
2078 cgi_io_loop_and_exit(proxy_fd, dup(proxy_fd), length);
2079 }
2080#endif
2081
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002082 tptr = urlcopy + 1; /* skip first '/' */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002083
2084#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002085 if (strncmp(tptr, "cgi-bin/", 8) == 0) {
2086 if (tptr[8] == '\0') {
Denis Vlasenko073214f2007-08-17 19:20:07 +00002087 /* protect listing "cgi-bin/" */
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002088 send_headers_and_exit(HTTP_FORBIDDEN);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002089 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002090 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002091 }
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002092#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002093 {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002094 char *suffix = strrchr(tptr, '.');
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002095 if (suffix) {
2096 Htaccess *cur;
2097 for (cur = script_i; cur; cur = cur->next) {
2098 if (strcmp(cur->before_colon + 1, suffix) == 0) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002099 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002100 }
2101 }
2102 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002103 }
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002104#endif
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002105 if (prequest != request_GET && prequest != request_HEAD) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002106 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
2107 }
Denis Vlasenko5d148e22006-11-21 00:12:09 +00002108#endif /* FEATURE_HTTPD_CGI */
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00002109
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002110 if (urlp[-1] == '/')
Denis Vlasenkofcd878e2007-12-29 02:16:23 +00002111 strcpy(urlp, index_page);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002112 if (stat(tptr, &sb) == 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00002113 file_size = sb.st_size;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002114 last_mod = sb.st_mtime;
2115 }
Denis Vlasenko5d148e22006-11-21 00:12:09 +00002116#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002117 else if (urlp[-1] == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002118 /* It's a dir URL and there is no index.html
2119 * Try cgi-bin/index.cgi */
2120 if (access("/cgi-bin/index.cgi"+1, X_OK) == 0) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002121 urlp[0] = '\0';
2122 g_query = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002123 send_cgi_and_exit("/cgi-bin/index.cgi", prequest, length, cookie, content_type);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002124 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002125 }
Denis Vlasenko073214f2007-08-17 19:20:07 +00002126#endif
2127 /* else {
2128 * fall through to send_file, it errors out if open fails
2129 * }
2130 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002131
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002132 send_file_and_exit(tptr,
Denis Vlasenko85c24712008-03-17 09:04:04 +00002133#if ENABLE_FEATURE_HTTPD_CGI
2134 (prequest != request_HEAD ? SEND_HEADERS_AND_BODY : SEND_HEADERS)
2135#else
2136 SEND_HEADERS_AND_BODY
2137#endif
2138 );
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002139}
2140
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002141/*
2142 * The main http server function.
Denis Vlasenko367960b2007-08-18 14:20:21 +00002143 * Given a socket, listen for new connections and farm out
2144 * the processing as a [v]forked process.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002145 * Never returns.
2146 */
Denis Vlasenko367960b2007-08-18 14:20:21 +00002147#if BB_MMU
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002148static void mini_httpd(int server_socket) NORETURN;
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002149static void mini_httpd(int server_socket)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002150{
Denis Vlasenko073214f2007-08-17 19:20:07 +00002151 /* NB: it's best to not use xfuncs in this loop before fork().
2152 * Otherwise server may die on transient errors (temporary
2153 * out-of-memory condition, etc), which is Bad(tm).
2154 * Try to do any dangerous calls after fork.
2155 */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002156 while (1) {
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002157 int n;
2158 len_and_sockaddr fromAddr;
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00002159
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002160 /* Wait for connections... */
2161 fromAddr.len = LSA_SIZEOF_SA;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002162 n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002163
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002164 if (n < 0)
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00002165 continue;
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002166 /* set the KEEPALIVE option to cull dead connections */
2167 setsockopt(n, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002168
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002169 if (fork() == 0) {
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002170 /* child */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002171 /* Do not reload config on HUP */
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00002172 signal(SIGHUP, SIG_IGN);
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002173 close(server_socket);
2174 xmove_fd(n, 0);
2175 xdup2(0, 1);
2176
Denis Vlasenko367960b2007-08-18 14:20:21 +00002177 handle_incoming_and_exit(&fromAddr);
2178 }
2179 /* parent, or fork failed */
2180 close(n);
2181 } /* while (1) */
2182 /* never reached */
2183}
2184#else
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002185static void mini_httpd_nommu(int server_socket, int argc, char **argv) NORETURN;
Denis Vlasenko367960b2007-08-18 14:20:21 +00002186static void mini_httpd_nommu(int server_socket, int argc, char **argv)
2187{
2188 char *argv_copy[argc + 2];
2189
2190 argv_copy[0] = argv[0];
2191 argv_copy[1] = (char*)"-i";
2192 memcpy(&argv_copy[2], &argv[1], argc * sizeof(argv[0]));
2193
2194 /* NB: it's best to not use xfuncs in this loop before vfork().
2195 * Otherwise server may die on transient errors (temporary
2196 * out-of-memory condition, etc), which is Bad(tm).
2197 * Try to do any dangerous calls after fork.
2198 */
2199 while (1) {
2200 int n;
2201 len_and_sockaddr fromAddr;
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00002202
Denis Vlasenko367960b2007-08-18 14:20:21 +00002203 /* Wait for connections... */
2204 fromAddr.len = LSA_SIZEOF_SA;
Denis Vlasenko671ca332008-02-19 14:13:20 +00002205 n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002206
2207 if (n < 0)
2208 continue;
2209 /* set the KEEPALIVE option to cull dead connections */
2210 setsockopt(n, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
2211
2212 if (vfork() == 0) {
2213 /* child */
Denis Vlasenko367960b2007-08-18 14:20:21 +00002214 /* Do not reload config on HUP */
2215 signal(SIGHUP, SIG_IGN);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002216 close(server_socket);
2217 xmove_fd(n, 0);
2218 xdup2(0, 1);
2219
2220 /* Run a copy of ourself in inetd mode */
2221 re_exec(argv_copy);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002222 }
Denis Vlasenko921799d2007-08-19 19:28:09 +00002223 /* parent, or vfork failed */
Denis Vlasenko073214f2007-08-17 19:20:07 +00002224 close(n);
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002225 } /* while (1) */
Denis Vlasenko241b1562007-08-17 19:18:47 +00002226 /* never reached */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002227}
Denis Vlasenko56258b62007-06-23 23:14:02 +00002228#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002229
Denis Vlasenko367960b2007-08-18 14:20:21 +00002230/*
2231 * Process a HTTP connection on stdin/out.
2232 * Never returns.
2233 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002234static void mini_httpd_inetd(void) NORETURN;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002235static void mini_httpd_inetd(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002236{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002237 len_and_sockaddr fromAddr;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002238
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00002239 memset(&fromAddr, 0, sizeof(fromAddr));
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002240 fromAddr.len = LSA_SIZEOF_SA;
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00002241 /* NB: can fail if user runs it by hand and types in http cmds */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002242 getpeername(0, &fromAddr.u.sa, &fromAddr.len);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002243 handle_incoming_and_exit(&fromAddr);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002244}
Glenn L McGrath06e95652003-02-09 06:51:14 +00002245
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002246static void sighup_handler(int sig UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00002247{
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002248 parse_conf(default_path_httpd_conf, SIGNALED_PARSE);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002249}
Glenn L McGrath06e95652003-02-09 06:51:14 +00002250
Denis Vlasenko9f609292006-11-05 19:47:33 +00002251enum {
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002252 c_opt_config_file = 0,
2253 d_opt_decode_url,
2254 h_opt_home_httpd,
2255 USE_FEATURE_HTTPD_ENCODE_URL_STR(e_opt_encode_url,)
Denis Vlasenko9f609292006-11-05 19:47:33 +00002256 USE_FEATURE_HTTPD_BASIC_AUTH( r_opt_realm ,)
2257 USE_FEATURE_HTTPD_AUTH_MD5( m_opt_md5 ,)
2258 USE_FEATURE_HTTPD_SETUID( u_opt_setuid ,)
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002259 p_opt_port ,
2260 p_opt_inetd ,
2261 p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002262 p_opt_verbose ,
Denis Vlasenko9f609292006-11-05 19:47:33 +00002263 OPT_CONFIG_FILE = 1 << c_opt_config_file,
2264 OPT_DECODE_URL = 1 << d_opt_decode_url,
2265 OPT_HOME_HTTPD = 1 << h_opt_home_httpd,
2266 OPT_ENCODE_URL = USE_FEATURE_HTTPD_ENCODE_URL_STR((1 << e_opt_encode_url)) + 0,
2267 OPT_REALM = USE_FEATURE_HTTPD_BASIC_AUTH( (1 << r_opt_realm )) + 0,
2268 OPT_MD5 = USE_FEATURE_HTTPD_AUTH_MD5( (1 << m_opt_md5 )) + 0,
2269 OPT_SETUID = USE_FEATURE_HTTPD_SETUID( (1 << u_opt_setuid )) + 0,
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002270 OPT_PORT = 1 << p_opt_port,
2271 OPT_INETD = 1 << p_opt_inetd,
2272 OPT_FOREGROUND = 1 << p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002273 OPT_VERBOSE = 1 << p_opt_verbose,
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002274};
Eric Andersena3bb3e62003-06-26 09:05:32 +00002275
Eric Andersena3bb3e62003-06-26 09:05:32 +00002276
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00002277int httpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002278int httpd_main(int argc UNUSED_PARAM, char **argv)
Glenn L McGrath06e95652003-02-09 06:51:14 +00002279{
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002280 int server_socket = server_socket; /* for gcc */
Denis Vlasenko67b23e62006-10-03 21:00:06 +00002281 unsigned opt;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002282 char *url_for_decode;
2283 USE_FEATURE_HTTPD_ENCODE_URL_STR(const char *url_for_encode;)
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002284 USE_FEATURE_HTTPD_SETUID(const char *s_ugid = NULL;)
2285 USE_FEATURE_HTTPD_SETUID(struct bb_uidgid_t ugid;)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002286 USE_FEATURE_HTTPD_AUTH_MD5(const char *pass;)
Eric Andersen35e643b2003-07-28 07:40:39 +00002287
Denis Vlasenko073214f2007-08-17 19:20:07 +00002288 INIT_G();
2289
Denis Vlasenkofcdb00f2006-11-21 00:09:37 +00002290#if ENABLE_LOCALE_SUPPORT
2291 /* Undo busybox.c: we want to speak English in http (dates etc) */
2292 setlocale(LC_TIME, "C");
2293#endif
2294
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002295 home_httpd = xrealloc_getcwd_or_warn(NULL);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002296 /* -v counts, -i implies -f */
2297 opt_complementary = "vv:if";
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002298 /* We do not "absolutize" path given by -h (home) opt.
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00002299 * If user gives relative path in -h,
2300 * $SCRIPT_FILENAME will not be set. */
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00002301 opt = getopt32(argv, "c:d:h:"
Denis Vlasenko53091ec2007-03-26 13:35:09 +00002302 USE_FEATURE_HTTPD_ENCODE_URL_STR("e:")
2303 USE_FEATURE_HTTPD_BASIC_AUTH("r:")
2304 USE_FEATURE_HTTPD_AUTH_MD5("m:")
2305 USE_FEATURE_HTTPD_SETUID("u:")
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002306 "p:ifv",
2307 &configFile, &url_for_decode, &home_httpd
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002308 USE_FEATURE_HTTPD_ENCODE_URL_STR(, &url_for_encode)
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002309 USE_FEATURE_HTTPD_BASIC_AUTH(, &g_realm)
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002310 USE_FEATURE_HTTPD_AUTH_MD5(, &pass)
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002311 USE_FEATURE_HTTPD_SETUID(, &s_ugid)
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002312 , &bind_addr_or_port
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002313 , &verbose
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002314 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002315 if (opt & OPT_DECODE_URL) {
Denis Vlasenko367960b2007-08-18 14:20:21 +00002316 fputs(decodeString(url_for_decode, 1), stdout);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002317 return 0;
2318 }
Denis Vlasenko55a99402006-09-30 20:41:44 +00002319#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002320 if (opt & OPT_ENCODE_URL) {
Denis Vlasenko367960b2007-08-18 14:20:21 +00002321 fputs(encodeString(url_for_encode), stdout);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002322 return 0;
2323 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002324#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002325#if ENABLE_FEATURE_HTTPD_AUTH_MD5
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002326 if (opt & OPT_MD5) {
Denis Vlasenko4ea83bf2008-06-12 16:55:59 +00002327 puts(pw_encrypt(pass, "$1$", 1));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002328 return 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002329 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002330#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002331#if ENABLE_FEATURE_HTTPD_SETUID
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002332 if (opt & OPT_SETUID) {
Bernhard Reutner-Fischerd73cbd32008-07-21 14:41:33 +00002333 xget_uidgid(&ugid, s_ugid);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002334 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002335#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002336
Denis Vlasenko367960b2007-08-18 14:20:21 +00002337#if !BB_MMU
2338 if (!(opt & OPT_FOREGROUND)) {
2339 bb_daemonize_or_rexec(0, argv); /* don't change current directory */
2340 }
2341#endif
2342
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002343 xchdir(home_httpd);
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002344 if (!(opt & OPT_INETD)) {
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00002345 signal(SIGCHLD, SIG_IGN);
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002346 server_socket = openServer();
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002347#if ENABLE_FEATURE_HTTPD_SETUID
2348 /* drop privileges */
2349 if (opt & OPT_SETUID) {
2350 if (ugid.gid != (gid_t)-1) {
2351 if (setgroups(1, &ugid.gid) == -1)
Denis Vlasenko8e858e22007-03-07 09:35:43 +00002352 bb_perror_msg_and_die("setgroups");
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002353 xsetgid(ugid.gid);
2354 }
2355 xsetuid(ugid.uid);
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002356 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002357#endif
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002358 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002359
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002360#if 0
Denis Vlasenko2535f122007-09-15 13:28:30 +00002361 /* User can do it himself: 'env - PATH="$PATH" httpd'
2362 * We don't do it because we don't want to screw users
2363 * which want to do
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002364 * 'env - VAR1=val1 VAR2=val2 httpd'
Denis Vlasenko2535f122007-09-15 13:28:30 +00002365 * and have VAR1 and VAR2 values visible in their CGIs.
2366 * Besides, it is also smaller. */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002367 {
2368 char *p = getenv("PATH");
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002369 /* env strings themself are not freed, no need to xstrdup(p): */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002370 clearenv();
2371 if (p)
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002372 putenv(p - 5);
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002373// if (!(opt & OPT_INETD))
2374// setenv_long("SERVER_PORT", ???);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002375 }
Glenn L McGrathfe538ba2003-09-10 23:35:45 +00002376#endif
2377
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002378 parse_conf(default_path_httpd_conf, FIRST_PARSE);
2379 if (!(opt & OPT_INETD))
2380 signal(SIGHUP, sighup_handler);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002381
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00002382 xfunc_error_retval = 0;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002383 if (opt & OPT_INETD)
2384 mini_httpd_inetd();
Denis Vlasenko367960b2007-08-18 14:20:21 +00002385#if BB_MMU
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002386 if (!(opt & OPT_FOREGROUND))
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002387 bb_daemonize(0); /* don't change current directory */
2388 mini_httpd(server_socket); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002389#else
Denis Vlasenko367960b2007-08-18 14:20:21 +00002390 mini_httpd_nommu(server_socket, argc, argv); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002391#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00002392 /* return 0; */
Glenn L McGrath06e95652003-02-09 06:51:14 +00002393}