blob: 5be53179f076a0d4ddd5468759acaedb66f50a6f [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 *
Glenn L McGrath58c708a2003-01-05 04:01:56 +000030 * The server can also be invoked as a url arg decoder and html text encoder
31 * 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 *
Glenn L McGrathb65422c2003-09-08 10:59:27 +000040 * A:172.20. # Allow address from 172.20.0.0/16
41 * A:10.0.0.0/25 # Allow any address from 10.0.0.0-10.0.0.127
42 * A:10.0.0.0/255.255.255.128 # Allow any address that previous set
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000043 * A:127.0.0.1 # Allow local loopback connections
44 * D:* # Deny from other IP connections
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +000045 * E404:/path/e404.html # /path/e404.html is the 404 (not found) error page
Denis Vlasenkofcd878e2007-12-29 02:16:23 +000046 * I:index.html # Show index.html when a directory is requested
Denis Vlasenkof74194e2007-10-18 12:54:39 +000047 *
48 * P:/url:[http://]hostname[:port]/new/path
49 * # When /urlXXXXXX is requested, reverse proxy
50 * # it to http://hostname[:port]/new/pathXXXXXX
51 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000052 * /cgi-bin:foo:bar # Require user foo, pwd bar on urls starting with /cgi-bin/
53 * /adm:admin:setup # Require user admin, pwd setup on urls starting with /adm/
54 * /adm:toor:PaSsWd # or user toor, pwd PaSsWd on urls starting with /adm/
55 * .au:audio/basic # additional mime type for audio.au files
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +000056 * *.php:/path/php # running cgi.php scripts through an interpreter
Eric Andersenc7bda1c2004-03-15 08:29:22 +000057 *
Eric Andersenaff114c2004-04-14 17:51:38 +000058 * A/D may be as a/d or allow/deny - first char case insensitive
Glenn L McGrath393183d2003-05-26 14:07:50 +000059 * Deny IP rules take precedence over allow rules.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000060 *
61 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000062 * The Deny/Allow IP logic:
Eric Andersenc7bda1c2004-03-15 08:29:22 +000063 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000064 * - Default is to allow all. No addresses are denied unless
Eric Andersen97a1de12004-08-26 22:22:50 +000065 * denied with a D: rule.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000066 * - Order of Deny/Allow rules is significant
67 * - Deny rules take precedence over allow rules.
68 * - If a deny all rule (D:*) is used it acts as a catch-all for unmatched
Eric Andersen97a1de12004-08-26 22:22:50 +000069 * addresses.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000070 * - Specification of Allow all (A:*) is a no-op
Eric Andersenc7bda1c2004-03-15 08:29:22 +000071 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000072 * Example:
73 * 1. Allow only specified addresses
Glenn L McGrathb65422c2003-09-08 10:59:27 +000074 * A:172.20 # Allow any address that begins with 172.20.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000075 * A:10.10. # Allow any address that begins with 10.10.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000076 * A:127.0.0.1 # Allow local loopback connections
77 * D:* # Deny from other IP connections
Eric Andersenc7bda1c2004-03-15 08:29:22 +000078 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000079 * 2. Only deny specified addresses
80 * D:1.2.3. # deny from 1.2.3.0 - 1.2.3.255
81 * D:2.3.4. # deny from 2.3.4.0 - 2.3.4.255
82 * A:* # (optional line added for clarity)
Eric Andersenc7bda1c2004-03-15 08:29:22 +000083 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000084 * If a sub directory contains a config file it is parsed and merged with
Glenn L McGrathb65422c2003-09-08 10:59:27 +000085 * any existing settings as if it was appended to the original configuration.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000086 *
87 * subdir paths are relative to the containing subdir and thus cannot
88 * affect the parent rules.
89 *
90 * Note that since the sub dir is parsed in the forked thread servicing the
91 * subdir http request, any merge is discarded when the process exits. As a
92 * result, the subdir settings only have a lifetime of a single request.
93 *
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +000094 * Custom error pages can contain an absolute path or be relative to
95 * 'home_httpd'. Error pages are to be static files (no CGI or script). Error
96 * page can only be defined in the root configuration file and are not taken
97 * into account in local (directories) config files.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000098 *
99 * If -c is not set, an attempt will be made to open the default
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000100 * root configuration file. If -c is set and the file is not found, the
101 * server exits with an error.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000102 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000103 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000104
Denis Vlasenkob6adbf12007-05-26 19:00:18 +0000105#include "libbb.h"
Denis Vlasenko1b9064d2007-08-12 21:05:49 +0000106#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
107#include <sys/sendfile.h>
108#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000109
Denis Vlasenko073214f2007-08-17 19:20:07 +0000110//#define DEBUG 1
111#define DEBUG 0
112
Denis Vlasenko32a471e2007-09-23 13:56:57 +0000113#define IOBUF_SIZE 8192 /* IO buffer */
114
Denis Vlasenko69981422007-01-07 21:25:12 +0000115/* amount of buffering in a pipe */
116#ifndef PIPE_BUF
117# define PIPE_BUF 4096
118#endif
Denis Vlasenko32a471e2007-09-23 13:56:57 +0000119#if PIPE_BUF >= IOBUF_SIZE
120# error "PIPE_BUF >= IOBUF_SIZE"
121#endif
Denis Vlasenko073214f2007-08-17 19:20:07 +0000122
123#define HEADER_READ_TIMEOUT 60
124
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000125static const char default_path_httpd_conf[] ALIGN1 = "/etc";
126static const char httpd_conf[] ALIGN1 = "httpd.conf";
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000127static const char HTTP_200[] ALIGN1 = "HTTP/1.0 200 OK\r\n";
Glenn L McGrath06e95652003-02-09 06:51:14 +0000128
Denis Vlasenko073214f2007-08-17 19:20:07 +0000129typedef struct has_next_ptr {
130 struct has_next_ptr *next;
131} has_next_ptr;
Eric Andersen07f2fea2004-10-08 08:03:29 +0000132
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 {
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000135 struct Htaccess *next;
Denis Vlasenko073214f2007-08-17 19:20:07 +0000136 char *after_colon;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000137 char before_colon[1]; /* really bigger, must be last */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000138} Htaccess;
139
Denis Vlasenko073214f2007-08-17 19:20:07 +0000140/* Must have "next" as a first member */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000141typedef struct Htaccess_IP {
Denis Vlasenko073214f2007-08-17 19:20:07 +0000142 struct Htaccess_IP *next;
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000143 unsigned ip;
144 unsigned mask;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000145 int allow_deny;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000146} Htaccess_IP;
147
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000148/* Must have "next" as a first member */
149typedef struct Htaccess_Proxy {
150 struct Htaccess_Proxy *next;
151 char *url_from;
152 char *host_port;
153 char *url_to;
154} Htaccess_Proxy;
155
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000156enum {
157 HTTP_OK = 200,
Denis Vlasenkof4310172007-09-21 22:35:18 +0000158 HTTP_PARTIAL_CONTENT = 206,
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000159 HTTP_MOVED_TEMPORARILY = 302,
160 HTTP_BAD_REQUEST = 400, /* malformed syntax */
161 HTTP_UNAUTHORIZED = 401, /* authentication needed, respond with auth hdr */
162 HTTP_NOT_FOUND = 404,
163 HTTP_FORBIDDEN = 403,
164 HTTP_REQUEST_TIMEOUT = 408,
165 HTTP_NOT_IMPLEMENTED = 501, /* used for unrecognized requests */
166 HTTP_INTERNAL_SERVER_ERROR = 500,
167 HTTP_CONTINUE = 100,
168#if 0 /* future use */
169 HTTP_SWITCHING_PROTOCOLS = 101,
170 HTTP_CREATED = 201,
171 HTTP_ACCEPTED = 202,
172 HTTP_NON_AUTHORITATIVE_INFO = 203,
173 HTTP_NO_CONTENT = 204,
174 HTTP_MULTIPLE_CHOICES = 300,
175 HTTP_MOVED_PERMANENTLY = 301,
176 HTTP_NOT_MODIFIED = 304,
177 HTTP_PAYMENT_REQUIRED = 402,
178 HTTP_BAD_GATEWAY = 502,
179 HTTP_SERVICE_UNAVAILABLE = 503, /* overload, maintenance */
180 HTTP_RESPONSE_SETSIZE = 0xffffffff
181#endif
182};
183
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000184static const uint16_t http_response_type[] ALIGN2 = {
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000185 HTTP_OK,
Denis Vlasenkof4310172007-09-21 22:35:18 +0000186#if ENABLE_FEATURE_HTTPD_RANGES
187 HTTP_PARTIAL_CONTENT,
188#endif
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000189 HTTP_MOVED_TEMPORARILY,
190 HTTP_REQUEST_TIMEOUT,
191 HTTP_NOT_IMPLEMENTED,
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +0000192#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000193 HTTP_UNAUTHORIZED,
194#endif
195 HTTP_NOT_FOUND,
196 HTTP_BAD_REQUEST,
197 HTTP_FORBIDDEN,
198 HTTP_INTERNAL_SERVER_ERROR,
199#if 0 /* not implemented */
200 HTTP_CREATED,
201 HTTP_ACCEPTED,
202 HTTP_NO_CONTENT,
203 HTTP_MULTIPLE_CHOICES,
204 HTTP_MOVED_PERMANENTLY,
205 HTTP_NOT_MODIFIED,
206 HTTP_BAD_GATEWAY,
207 HTTP_SERVICE_UNAVAILABLE,
208#endif
209};
210
211static const struct {
212 const char *name;
213 const char *info;
214} http_response[ARRAY_SIZE(http_response_type)] = {
215 { "OK", NULL },
Denis Vlasenkof4310172007-09-21 22:35:18 +0000216#if ENABLE_FEATURE_HTTPD_RANGES
217 { "Partial Content", NULL },
218#endif
219 { "Found", NULL },
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000220 { "Request Timeout", "No request appeared within 60 seconds" },
221 { "Not Implemented", "The requested method is not recognized" },
222#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
223 { "Unauthorized", "" },
224#endif
225 { "Not Found", "The requested URL was not found" },
226 { "Bad Request", "Unsupported method" },
227 { "Forbidden", "" },
228 { "Internal Server Error", "Internal Server Error" },
229#if 0 /* not implemented */
230 { "Created" },
231 { "Accepted" },
232 { "No Content" },
233 { "Multiple Choices" },
234 { "Moved Permanently" },
235 { "Not Modified" },
236 { "Bad Gateway", "" },
237 { "Service Unavailable", "" },
238#endif
239};
240
Denis Vlasenkof4310172007-09-21 22:35:18 +0000241
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000242struct globals {
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000243 int verbose; /* must be int (used by getopt32) */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000244 smallint flg_deny_all;
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000245
Denis Vlasenko37c33162007-08-19 18:54:22 +0000246 unsigned rmt_ip; /* used for IP-based allow/deny rules */
247 time_t last_mod;
Denis Vlasenko37c33162007-08-19 18:54:22 +0000248 char *rmt_ip_str; /* for $REMOTE_ADDR and $REMOTE_PORT */
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000249 const char *bind_addr_or_port;
250
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000251 const char *g_query;
252 const char *configFile;
253 const char *home_httpd;
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000254 const char *index_page;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000255
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000256 const char *found_mime_type;
257 const char *found_moved_temporarily;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000258 Htaccess_IP *ip_a_d; /* config allow/deny lines */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000259
260 USE_FEATURE_HTTPD_BASIC_AUTH(const char *g_realm;)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000261 USE_FEATURE_HTTPD_BASIC_AUTH(char *remoteuser;)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000262 USE_FEATURE_HTTPD_CGI(char *referer;)
Denis Vlasenko6cd84da2007-07-21 14:57:54 +0000263 USE_FEATURE_HTTPD_CGI(char *user_agent;)
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +0000264
Denis Vlasenkof4310172007-09-21 22:35:18 +0000265 off_t file_size; /* -1 - unknown */
266#if ENABLE_FEATURE_HTTPD_RANGES
267 off_t range_start;
268 off_t range_end;
269 off_t range_len;
270#endif
271
Denis Vlasenko55a99402006-09-30 20:41:44 +0000272#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000273 Htaccess *g_auth; /* config user:password lines */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000274#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000275#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000276 Htaccess *mime_a; /* config mime types */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000277#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000278#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000279 Htaccess *script_i; /* config script interpreters */
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000280#endif
Denis Vlasenko921799d2007-08-19 19:28:09 +0000281 char *iobuf; /* [IOBUF_SIZE] */
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000282#define hdr_buf bb_common_bufsiz1
283 char *hdr_ptr;
284 int hdr_cnt;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000285#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
286 const char *http_error_page[ARRAY_SIZE(http_response_type)];
287#endif
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000288#if ENABLE_FEATURE_HTTPD_PROXY
289 Htaccess_Proxy *proxy;
290#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000291};
292#define G (*ptr_to_globals)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000293#define verbose (G.verbose )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000294#define flg_deny_all (G.flg_deny_all )
295#define rmt_ip (G.rmt_ip )
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000296#define bind_addr_or_port (G.bind_addr_or_port)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000297#define g_query (G.g_query )
298#define configFile (G.configFile )
299#define home_httpd (G.home_httpd )
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000300#define index_page (G.index_page )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000301#define found_mime_type (G.found_mime_type )
302#define found_moved_temporarily (G.found_moved_temporarily)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000303#define last_mod (G.last_mod )
304#define ip_a_d (G.ip_a_d )
305#define g_realm (G.g_realm )
306#define remoteuser (G.remoteuser )
307#define referer (G.referer )
308#define user_agent (G.user_agent )
Denis Vlasenkof4310172007-09-21 22:35:18 +0000309#define file_size (G.file_size )
310#if ENABLE_FEATURE_HTTPD_RANGES
311#define range_start (G.range_start )
312#define range_end (G.range_end )
313#define range_len (G.range_len )
314#endif
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000315#define rmt_ip_str (G.rmt_ip_str )
316#define g_auth (G.g_auth )
317#define mime_a (G.mime_a )
318#define script_i (G.script_i )
319#define iobuf (G.iobuf )
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000320#define hdr_ptr (G.hdr_ptr )
321#define hdr_cnt (G.hdr_cnt )
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000322#define http_error_page (G.http_error_page )
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000323#define proxy (G.proxy )
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000324#define INIT_G() do { \
325 PTR_TO_GLOBALS = xzalloc(sizeof(G)); \
326 USE_FEATURE_HTTPD_BASIC_AUTH(g_realm = "Web Server Authentication";) \
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000327 bind_addr_or_port = "80"; \
Denis Vlasenkof4310172007-09-21 22:35:18 +0000328 file_size = -1; \
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000329} while (0)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000330
Denis Vlasenkof4310172007-09-21 22:35:18 +0000331#if !ENABLE_FEATURE_HTTPD_RANGES
332enum {
333 range_start = 0,
334 range_end = MAXINT(off_t) - 1,
335 range_len = MAXINT(off_t),
336};
337#endif
338
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000339
Denis Vlasenko0bb993f2006-11-21 00:06:28 +0000340#define STRNCASECMP(a, str) strncasecmp((a), (str), sizeof(str)-1)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000341
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000342/* Prototypes */
Denis Vlasenko2f518b02008-02-21 00:12:07 +0000343enum {
344 SEND_HEADERS = (1 << 0),
345 SEND_BODY = (1 << 1),
346 SEND_HEADERS_AND_BODY = SEND_HEADERS + SEND_BODY,
347};
348static void send_file_and_exit(const char *url, int what) ATTRIBUTE_NORETURN;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000349
Denis Vlasenko073214f2007-08-17 19:20:07 +0000350static void free_llist(has_next_ptr **pptr)
351{
352 has_next_ptr *cur = *pptr;
353 while (cur) {
354 has_next_ptr *t = cur;
355 cur = cur->next;
356 free(t);
357 }
358 *pptr = NULL;
359}
360
361#if ENABLE_FEATURE_HTTPD_BASIC_AUTH \
362 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES \
363 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
364static ALWAYS_INLINE void free_Htaccess_list(Htaccess **pptr)
365{
366 free_llist((has_next_ptr**)pptr);
367}
368#endif
369
370static ALWAYS_INLINE void free_Htaccess_IP_list(Htaccess_IP **pptr)
371{
372 free_llist((has_next_ptr**)pptr);
373}
Glenn L McGrath06e95652003-02-09 06:51:14 +0000374
Denis Vlasenkod867f322007-08-19 21:15:42 +0000375/* Returns presumed mask width in bits or < 0 on error.
376 * Updates strp, stores IP at provided pointer */
377static int scan_ip(const char **strp, unsigned *ipp, unsigned char endc)
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000378{
Denis Vlasenkod867f322007-08-19 21:15:42 +0000379 const char *p = *strp;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000380 int auto_mask = 8;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000381 unsigned ip = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000382 int j;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000383
Denis Vlasenkod867f322007-08-19 21:15:42 +0000384 if (*p == '/')
385 return -auto_mask;
386
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000387 for (j = 0; j < 4; j++) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000388 unsigned octet;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000389
Denis Vlasenkod867f322007-08-19 21:15:42 +0000390 if ((*p < '0' || *p > '9') && *p != '/' && *p)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000391 return -auto_mask;
392 octet = 0;
393 while (*p >= '0' && *p <= '9') {
394 octet *= 10;
395 octet += *p - '0';
396 if (octet > 255)
397 return -auto_mask;
398 p++;
399 }
400 if (*p == '.')
401 p++;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000402 if (*p != '/' && *p)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000403 auto_mask += 8;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000404 ip = (ip << 8) | octet;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000405 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000406 if (*p) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000407 if (*p != endc)
408 return -auto_mask;
409 p++;
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000410 if (*p == '\0')
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000411 return -auto_mask;
412 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000413 *ipp = ip;
414 *strp = p;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000415 return auto_mask;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000416}
417
Denis Vlasenkod867f322007-08-19 21:15:42 +0000418/* Returns 0 on success. Stores IP and mask at provided pointers */
419static int scan_ip_mask(const char *str, unsigned *ipp, unsigned *maskp)
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000420{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000421 int i;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000422 unsigned mask;
423 char *p;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000424
Denis Vlasenkod867f322007-08-19 21:15:42 +0000425 i = scan_ip(&str, ipp, '/');
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000426 if (i < 0)
427 return i;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000428
Denis Vlasenkod867f322007-08-19 21:15:42 +0000429 if (*str) {
430 /* there is /xxx after dotted-IP address */
431 i = bb_strtou(str, &p, 10);
432 if (*p == '.') {
433 /* 'xxx' itself is dotted-IP mask, parse it */
434 /* (return 0 (success) only if it has N.N.N.N form) */
435 return scan_ip(&str, maskp, '\0') - 32;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000436 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000437 if (*p)
438 return -1;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000439 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000440
441 if (i > 32)
Denis Vlasenko92758142006-10-03 19:56:34 +0000442 return -1;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000443
444 if (sizeof(unsigned) == 4 && i == 32) {
445 /* mask >>= 32 below may not work */
446 mask = 0;
447 } else {
448 mask = 0xffffffff;
449 mask >>= i;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000450 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000451 /* i == 0 -> *maskp = 0x00000000
452 * i == 1 -> *maskp = 0x80000000
453 * i == 4 -> *maskp = 0xf0000000
454 * i == 31 -> *maskp = 0xfffffffe
455 * i == 32 -> *maskp = 0xffffffff */
456 *maskp = (uint32_t)(~mask);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000457 return 0;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000458}
459
Denis Vlasenko073214f2007-08-17 19:20:07 +0000460/*
461 * Parse configuration file into in-memory linked list.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000462 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000463 * The first non-white character is examined to determine if the config line
464 * is one of the following:
465 * .ext:mime/type # new mime type not compiled into httpd
466 * [adAD]:from # ip address allow/deny, * for wildcard
467 * /path:user:pass # username/password
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000468 * Ennn:error.html # error page for status nnn
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000469 * P:/url:[http://]hostname[:port]/new/path # reverse proxy
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000470 *
471 * Any previous IP rules are discarded.
472 * If the flag argument is not SUBDIR_PARSE then all /path and mime rules
473 * are also discarded. That is, previous settings are retained if flag is
474 * SUBDIR_PARSE.
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000475 * Error pages are only parsed on the main config file.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000476 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000477 * path Path where to look for httpd.conf (without filename).
478 * flag Type of the parse request.
479 */
480/* flag */
481#define FIRST_PARSE 0
482#define SUBDIR_PARSE 1
483#define SIGNALED_PARSE 2
484#define FIND_FROM_HTTPD_ROOT 3
Glenn L McGrath06e95652003-02-09 06:51:14 +0000485static void parse_conf(const char *path, int flag)
486{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000487 FILE *f;
Denis Vlasenko55a99402006-09-30 20:41:44 +0000488#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000489 Htaccess *prev;
490#endif
491#if ENABLE_FEATURE_HTTPD_BASIC_AUTH \
492 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES \
493 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000494 Htaccess *cur;
Glenn L McGrathbaaa6e92003-09-15 15:00:43 +0000495#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000496 const char *cf = configFile;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000497 char buf[160];
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000498 char *p0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000499 char *c, *p;
Denis Vlasenko073214f2007-08-17 19:20:07 +0000500 Htaccess_IP *pip;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000501
Denis Vlasenko073214f2007-08-17 19:20:07 +0000502 /* discard old rules */
503 free_Htaccess_IP_list(&ip_a_d);
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000504 flg_deny_all = 0;
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000505#if ENABLE_FEATURE_HTTPD_BASIC_AUTH \
506 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES \
507 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000508 /* retain previous auth and mime config only for subdir parse */
509 if (flag != SUBDIR_PARSE) {
Denis Vlasenko55a99402006-09-30 20:41:44 +0000510#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko073214f2007-08-17 19:20:07 +0000511 free_Htaccess_list(&g_auth);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000512#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000513#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
Denis Vlasenko073214f2007-08-17 19:20:07 +0000514 free_Htaccess_list(&mime_a);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000515#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000516#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000517 free_Htaccess_list(&script_i);
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000518#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000519 }
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000520#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000521
522 if (flag == SUBDIR_PARSE || cf == NULL) {
523 cf = alloca(strlen(path) + sizeof(httpd_conf) + 2);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000524 sprintf((char *)cf, "%s/%s", path, httpd_conf);
Glenn L McGrath393183d2003-05-26 14:07:50 +0000525 }
526
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000527 while ((f = fopen(cf, "r")) == NULL) {
528 if (flag == SUBDIR_PARSE || flag == FIND_FROM_HTTPD_ROOT) {
529 /* config file not found, no changes to config */
530 return;
531 }
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000532 if (configFile && flag == FIRST_PARSE) /* if -c option given */
Denis Vlasenko0c97c9d2007-10-01 11:58:38 +0000533 bb_simple_perror_msg_and_die(cf);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000534 flag = FIND_FROM_HTTPD_ROOT;
535 cf = httpd_conf;
536 }
537
Denis Vlasenko55a99402006-09-30 20:41:44 +0000538#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000539 prev = g_auth;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000540#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000541 /* This could stand some work */
Denis Vlasenko55a99402006-09-30 20:41:44 +0000542 while ((p0 = fgets(buf, sizeof(buf), f)) != NULL) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000543 c = NULL;
Denis Vlasenko073214f2007-08-17 19:20:07 +0000544 for (p = p0; *p0 != '\0' && *p0 != '#'; p0++) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000545 if (!isspace(*p0)) {
546 *p++ = *p0;
547 if (*p0 == ':' && c == NULL)
Denis Vlasenko073214f2007-08-17 19:20:07 +0000548 c = p;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000549 }
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000550 }
Denis Vlasenko073214f2007-08-17 19:20:07 +0000551 *p = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000552
553 /* test for empty or strange line */
Denis Vlasenko073214f2007-08-17 19:20:07 +0000554 if (c == NULL || *c == '\0')
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000555 continue;
556 p0 = buf;
557 if (*p0 == 'd')
Denis Vlasenko073214f2007-08-17 19:20:07 +0000558 *p0 = 'D';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000559 if (*c == '*') {
560 if (*p0 == 'D') {
561 /* memorize deny all */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000562 flg_deny_all = 1;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000563 }
564 /* skip default other "word:*" config lines */
565 continue;
566 }
567
568 if (*p0 == 'a')
569 *p0 = 'A';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000570 if (*p0 == 'A' || *p0 == 'D') {
571 /* storing current config IP line */
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000572 pip = xzalloc(sizeof(Htaccess_IP));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000573 if (pip) {
Denis Vlasenko55a99402006-09-30 20:41:44 +0000574 if (scan_ip_mask(c, &(pip->ip), &(pip->mask))) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000575 /* syntax IP{/mask} error detected, protect all */
576 *p0 = 'D';
577 pip->mask = 0;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000578 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000579 pip->allow_deny = *p0;
580 if (*p0 == 'D') {
Denis Vlasenko073214f2007-08-17 19:20:07 +0000581 /* Deny:from_IP move top */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000582 pip->next = ip_a_d;
583 ip_a_d = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000584 } else {
585 /* add to bottom A:form_IP config line */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000586 Htaccess_IP *prev_IP = ip_a_d;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000587
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000588 if (prev_IP == NULL) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000589 ip_a_d = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000590 } else {
591 while (prev_IP->next)
592 prev_IP = prev_IP->next;
593 prev_IP->next = pip;
594 }
595 }
596 }
597 continue;
598 }
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000599
600#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
601 if (flag == FIRST_PARSE && *p0 == 'E') {
602 int i;
603 /* error status code */
604 int status = atoi(++p0);
605 /* c already points at the character following ':' in parse loop */
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000606 /* c = strchr(p0, ':'); c++; */
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000607 if (status < HTTP_CONTINUE) {
608 bb_error_msg("config error '%s' in '%s'", buf, cf);
609 continue;
610 }
611
612 /* then error page; find matching status */
613 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
614 if (http_response_type[i] == status) {
615 http_error_page[i] = concat_path_file((*c == '/') ? NULL : home_httpd, c);
616 break;
617 }
618 }
619 continue;
620 }
621#endif
622
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000623#if ENABLE_FEATURE_HTTPD_PROXY
624 if (flag == FIRST_PARSE && *p0 == 'P') {
625 /* P:/url:[http://]hostname[:port]/new/path */
626 char *url_from, *host_port, *url_to;
627 Htaccess_Proxy *proxy_entry;
628
629 url_from = c;
630 host_port = strchr(c, ':');
631 if (host_port == NULL) {
632 bb_error_msg("config error '%s' in '%s'", buf, cf);
633 continue;
634 }
635 *host_port++ = '\0';
636 if (strncmp(host_port, "http://", 7) == 0)
Denis Vlasenko78ee7c82007-10-21 23:24:42 +0000637 host_port += 7;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000638 if (*host_port == '\0') {
639 bb_error_msg("config error '%s' in '%s'", buf, cf);
640 continue;
641 }
642 url_to = strchr(host_port, '/');
643 if (url_to == NULL) {
644 bb_error_msg("config error '%s' in '%s'", buf, cf);
645 continue;
646 }
647 *url_to = '\0';
648 proxy_entry = xzalloc(sizeof(Htaccess_Proxy));
649 proxy_entry->url_from = xstrdup(url_from);
650 proxy_entry->host_port = xstrdup(host_port);
651 *url_to = '/';
652 proxy_entry->url_to = xstrdup(url_to);
653 proxy_entry->next = proxy;
654 proxy = proxy_entry;
655 continue;
656 }
657#endif
658
Denis Vlasenko55a99402006-09-30 20:41:44 +0000659#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000660 if (*p0 == '/') {
Denis Vlasenko073214f2007-08-17 19:20:07 +0000661 /* make full path from httpd root / current_path / config_line_path */
662 cf = (flag == SUBDIR_PARSE ? path : "");
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000663 p0 = xmalloc(strlen(cf) + (c - buf) + 2 + strlen(c));
Denis Vlasenko073214f2007-08-17 19:20:07 +0000664 c[-1] = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000665 sprintf(p0, "/%s%s", cf, buf);
666
667 /* another call bb_simplify_path */
668 cf = p = p0;
669
670 do {
671 if (*p == '/') {
672 if (*cf == '/') { /* skip duplicate (or initial) slash */
673 continue;
Denis Vlasenko3d2a9212007-09-28 22:35:29 +0000674 }
675 if (*cf == '.') {
Denis Vlasenko073214f2007-08-17 19:20:07 +0000676 if (cf[1] == '/' || cf[1] == '\0') { /* remove extra '.' */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000677 continue;
Denis Vlasenko3d2a9212007-09-28 22:35:29 +0000678 }
679 if ((cf[1] == '.') && (cf[2] == '/' || cf[2] == '\0')) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000680 ++cf;
681 if (p > p0) {
Denis Vlasenko92758142006-10-03 19:56:34 +0000682 while (*--p != '/') /* omit previous dir */;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000683 }
684 continue;
685 }
686 }
687 }
688 *++p = *cf;
689 } while (*++cf);
690
691 if ((p == p0) || (*p != '/')) { /* not a trailing slash */
692 ++p; /* so keep last character */
693 }
Denis Vlasenko3d2a9212007-09-28 22:35:29 +0000694 *p = ':';
695 strcpy(p + 1, c);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000696 }
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000697#endif
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000698
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000699 if (*p0 == 'I') {
700 index_page = xstrdup(c);
701 continue;
702 }
703
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000704#if ENABLE_FEATURE_HTTPD_BASIC_AUTH \
705 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES \
706 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000707 /* storing current config line */
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000708 cur = xzalloc(sizeof(Htaccess) + strlen(p0));
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000709 cf = strcpy(cur->before_colon, p0);
Denis Vlasenko55a99402006-09-30 20:41:44 +0000710#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000711 if (*p0 == '/')
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000712 free(p0);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000713#endif
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000714 c = strchr(cf, ':');
715 *c++ = '\0';
716 cur->after_colon = c;
717#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
718 if (*cf == '.') {
719 /* config .mime line move top for overwrite previous */
720 cur->next = mime_a;
721 mime_a = cur;
722 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000723 }
Glenn L McGrathbaaa6e92003-09-15 15:00:43 +0000724#endif
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000725#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
726 if (*cf == '*' && cf[1] == '.') {
727 /* config script interpreter line move top for overwrite previous */
728 cur->next = script_i;
729 script_i = cur;
730 continue;
731 }
732#endif
733#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
734 if (prev == NULL) {
735 /* first line */
736 g_auth = prev = cur;
737 } else {
738 /* sort path, if current length eq or bigger then move up */
739 Htaccess *prev_hti = g_auth;
740 size_t l = strlen(cf);
741 Htaccess *hti;
742
743 for (hti = prev_hti; hti; hti = hti->next) {
744 if (l >= strlen(hti->before_colon)) {
745 /* insert before hti */
746 cur->next = hti;
747 if (prev_hti != hti) {
748 prev_hti->next = cur;
749 } else {
750 /* insert as top */
751 g_auth = cur;
752 }
753 break;
754 }
755 if (prev_hti != hti)
756 prev_hti = prev_hti->next;
757 }
758 if (!hti) { /* not inserted, add to bottom */
759 prev->next = cur;
760 prev = cur;
761 }
762 }
763#endif /* BASIC_AUTH */
764#endif /* BASIC_AUTH || MIME_TYPES || SCRIPT_INTERPR */
765 } /* while (fgets) */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000766 fclose(f);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000767}
768
Denis Vlasenko55a99402006-09-30 20:41:44 +0000769#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000770/*
771 * Given a string, html-encode special characters.
772 * This is used for the -e command line option to provide an easy way
773 * for scripts to encode result data without confusing browsers. The
774 * returned string pointer is memory allocated by malloc().
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000775 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000776 * Returns a pointer to the encoded string (malloced).
777 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000778static char *encodeString(const char *string)
779{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000780 /* take the simple route and encode everything */
781 /* could possibly scan once to get length. */
782 int len = strlen(string);
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000783 char *out = xmalloc(len * 6 + 1);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000784 char *p = out;
785 char ch;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000786
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000787 while ((ch = *string++)) {
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000788 /* very simple check for what to encode */
789 if (isalnum(ch))
790 *p++ = ch;
791 else
792 p += sprintf(p, "&#%d;", (unsigned char) ch);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000793 }
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000794 *p = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000795 return out;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000796}
Denis Vlasenkob3a07152006-11-16 18:04:43 +0000797#endif /* FEATURE_HTTPD_ENCODE_URL_STR */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000798
Denis Vlasenko073214f2007-08-17 19:20:07 +0000799/*
800 * Given a URL encoded string, convert it to plain ascii.
801 * Since decoding always makes strings smaller, the decode is done in-place.
802 * Thus, callers should strdup() the argument if they do not want the
803 * argument modified. The return is the original pointer, allowing this
804 * function to be easily used as arguments to other functions.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000805 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000806 * string The first string to decode.
807 * option_d 1 if called for httpd -d
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000808 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000809 * Returns a pointer to the decoded string (same as input).
810 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000811static unsigned hex_to_bin(unsigned char c)
812{
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000813 unsigned v;
814
815 v = c - '0';
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000816 if (v <= 9)
817 return v;
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000818 /* c | 0x20: letters to lower case, non-letters
819 * to (potentially different) non-letters */
820 v = (unsigned)(c | 0x20) - 'a';
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000821 if (v <= 5)
822 return v + 10;
823 return ~0;
824}
825/* For testing:
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000826void t(char c) { printf("'%c'(%u) %u\n", c, c, hex_to_bin(c)); }
827int main() { t(0x10); t(0x20); t('0'); t('9'); t('A'); t('F'); t('a'); t('f');
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000828t('0'-1); t('9'+1); t('A'-1); t('F'+1); t('a'-1); t('f'+1); return 0; }
829*/
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000830static char *decodeString(char *orig, int option_d)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000831{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000832 /* note that decoded string is always shorter than original */
833 char *string = orig;
834 char *ptr = string;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000835 char c;
Eric Andersena3bb3e62003-06-26 09:05:32 +0000836
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000837 while ((c = *ptr++) != '\0') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000838 unsigned v;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000839
840 if (option_d && c == '+') {
Denis Vlasenko601ae132006-11-28 23:37:46 +0000841 *string++ = ' ';
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000842 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000843 }
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000844 if (c != '%') {
845 *string++ = c;
846 continue;
847 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000848 v = hex_to_bin(ptr[0]);
849 if (v > 15) {
850 bad_hex:
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000851 if (!option_d)
852 return NULL;
853 *string++ = '%';
854 continue;
855 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000856 v = (v * 16) | hex_to_bin(ptr[1]);
857 if (v > 255)
858 goto bad_hex;
859 if (!option_d && (v == '/' || v == '\0')) {
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000860 /* caller takes it as indication of invalid
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000861 * (dangerous wrt exploits) chars */
862 return orig + 1;
863 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000864 *string++ = v;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000865 ptr += 2;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000866 }
867 *string = '\0';
868 return orig;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000869}
870
Denis Vlasenko55a99402006-09-30 20:41:44 +0000871#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000872/*
Denis Vlasenko073214f2007-08-17 19:20:07 +0000873 * Decode a base64 data stream as per rfc1521.
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000874 * Note that the rfc states that non base64 chars are to be ignored.
Denis Vlasenko073214f2007-08-17 19:20:07 +0000875 * Since the decode always results in a shorter size than the input,
876 * it is OK to pass the input arg as an output arg.
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000877 * Parameter: a pointer to a base64 encoded string.
878 * Decoded data is stored in-place.
879 */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000880static void decodeBase64(char *Data)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000881{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000882 const unsigned char *in = (const unsigned char *)Data;
Denis Vlasenko37c33162007-08-19 18:54:22 +0000883 /* The decoded size will be at most 3/4 the size of the encoded */
Denis Vlasenko088b9592007-04-18 21:14:46 +0000884 unsigned ch = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000885 int i = 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000886
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000887 while (*in) {
888 int t = *in++;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000889
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000890 if (t >= '0' && t <= '9')
891 t = t - '0' + 52;
892 else if (t >= 'A' && t <= 'Z')
893 t = t - 'A';
894 else if (t >= 'a' && t <= 'z')
895 t = t - 'a' + 26;
896 else if (t == '+')
897 t = 62;
898 else if (t == '/')
899 t = 63;
900 else if (t == '=')
901 t = 0;
902 else
903 continue;
Glenn L McGrath874e3382003-05-14 12:11:36 +0000904
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000905 ch = (ch << 6) | t;
906 i++;
907 if (i == 4) {
908 *Data++ = (char) (ch >> 16);
909 *Data++ = (char) (ch >> 8);
910 *Data++ = (char) ch;
911 i = 0;
912 }
913 }
Denis Vlasenko088b9592007-04-18 21:14:46 +0000914 *Data = '\0';
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000915}
916#endif
917
Denis Vlasenko073214f2007-08-17 19:20:07 +0000918/*
919 * Create a listen server socket on the designated port.
920 */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000921static int openServer(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000922{
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000923 unsigned n = bb_strtou(bind_addr_or_port, NULL, 10);
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000924 if (!errno && n && n <= 0xffff)
925 n = create_and_bind_stream_or_die(NULL, n);
926 else
927 n = create_and_bind_stream_or_die(bind_addr_or_port, 80);
928 xlisten(n, 9);
929 return n;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000930}
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000931
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000932/*
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000933 * Log the connection closure and exit.
934 */
935static void log_and_exit(void) ATTRIBUTE_NORETURN;
936static void log_and_exit(void)
937{
Denis Vlasenko921799d2007-08-19 19:28:09 +0000938 /* Paranoia. IE said to be buggy. It may send some extra data
939 * or be confused by us just exiting without SHUT_WR. Oh well. */
940 shutdown(1, SHUT_WR);
941 ndelay_on(0);
942 while (read(0, iobuf, IOBUF_SIZE) > 0)
943 continue;
944
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000945 if (verbose > 2)
946 bb_error_msg("closed");
947 _exit(xfunc_error_retval);
948}
949
950/*
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000951 * Create and send HTTP response headers.
952 * The arguments are combined and sent as one write operation. Note that
953 * IE will puke big-time if the headers are not sent in one packet and the
954 * second packet is delayed for any reason.
955 * responseNum - the result code to send.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000956 */
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000957static void send_headers(int responseNum)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000958{
Denis Vlasenko073214f2007-08-17 19:20:07 +0000959 static const char RFC1123FMT[] ALIGN1 = "%a, %d %b %Y %H:%M:%S GMT";
960
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000961 const char *responseString = "";
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000962 const char *infoString = NULL;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000963 const char *mime_type;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000964#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko2f518b02008-02-21 00:12:07 +0000965 const char *error_page = NULL;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000966#endif
Denis Vlasenkob64eed62007-01-14 17:06:11 +0000967 unsigned i;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000968 time_t timer = time(0);
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000969 char tmp_str[80];
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000970 int len;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000971
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000972 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
973 if (http_response_type[i] == responseNum) {
974 responseString = http_response[i].name;
975 infoString = http_response[i].info;
976#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
977 error_page = http_error_page[i];
978#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000979 break;
980 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000981 }
982 /* error message is HTML */
983 mime_type = responseNum == HTTP_OK ?
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000984 found_mime_type : "text/html";
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000985
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000986 if (verbose)
Denis Vlasenko241b1562007-08-17 19:18:47 +0000987 bb_error_msg("response:%u", responseNum);
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000988
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000989 /* emit the current date */
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000990 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&timer));
991 len = sprintf(iobuf,
Denis Vlasenko69981422007-01-07 21:25:12 +0000992 "HTTP/1.0 %d %s\r\nContent-type: %s\r\n"
993 "Date: %s\r\nConnection: close\r\n",
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000994 responseNum, responseString, mime_type, tmp_str);
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000995
Denis Vlasenko55a99402006-09-30 20:41:44 +0000996#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000997 if (responseNum == HTTP_UNAUTHORIZED) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000998 len += sprintf(iobuf + len,
Denis Vlasenko8e858e22007-03-07 09:35:43 +0000999 "WWW-Authenticate: Basic realm=\"%s\"\r\n",
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001000 g_realm);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001001 }
Glenn L McGrath3d2405c2003-02-10 22:28:21 +00001002#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001003 if (responseNum == HTTP_MOVED_TEMPORARILY) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001004 len += sprintf(iobuf + len, "Location: %s/%s%s\r\n",
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001005 found_moved_temporarily,
1006 (g_query ? "?" : ""),
1007 (g_query ? g_query : ""));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001008 }
Eric Andersen07f2fea2004-10-08 08:03:29 +00001009
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001010#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
1011 if (error_page && !access(error_page, R_OK)) {
1012 strcat(iobuf, "\r\n");
1013 len += 2;
1014
1015 if (DEBUG)
1016 fprintf(stderr, "headers: '%s'\n", iobuf);
1017 full_write(1, iobuf, len);
1018 if (DEBUG)
1019 fprintf(stderr, "writing error page: '%s'\n", error_page);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001020 return send_file_and_exit(error_page, SEND_BODY);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001021 }
1022#endif
1023
Denis Vlasenkof4310172007-09-21 22:35:18 +00001024 if (file_size != -1) { /* file */
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001025 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&last_mod));
Denis Vlasenkof4310172007-09-21 22:35:18 +00001026#if ENABLE_FEATURE_HTTPD_RANGES
1027 if (responseNum == HTTP_PARTIAL_CONTENT) {
1028 len += sprintf(iobuf + len, "Content-Range: bytes %"OFF_FMT"d-%"OFF_FMT"d/%"OFF_FMT"d\r\n",
1029 range_start,
1030 range_end,
1031 file_size);
1032 file_size = range_end - range_start + 1;
1033 }
1034#endif
1035 len += sprintf(iobuf + len,
1036#if ENABLE_FEATURE_HTTPD_RANGES
1037 "Accept-Ranges: bytes\r\n"
1038#endif
1039 "Last-Modified: %s\r\n%s %"OFF_FMT"d\r\n",
1040 tmp_str,
1041 "Content-length:",
1042 file_size
1043 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001044 }
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001045 iobuf[len++] = '\r';
1046 iobuf[len++] = '\n';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001047 if (infoString) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001048 len += sprintf(iobuf + len,
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001049 "<HTML><HEAD><TITLE>%d %s</TITLE></HEAD>\n"
1050 "<BODY><H1>%d %s</H1>\n%s\n</BODY></HTML>\n",
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001051 responseNum, responseString,
1052 responseNum, responseString, infoString);
1053 }
Denis Vlasenko6c85ddc2006-11-21 00:08:39 +00001054 if (DEBUG)
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001055 fprintf(stderr, "headers: '%s'\n", iobuf);
Denis Vlasenko9611cb12007-08-18 14:18:43 +00001056 if (full_write(1, iobuf, len) != len) {
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001057 if (verbose > 1)
1058 bb_perror_msg("error");
1059 log_and_exit();
1060 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001061}
1062
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001063static void send_headers_and_exit(int responseNum) ATTRIBUTE_NORETURN;
1064static void send_headers_and_exit(int responseNum)
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001065{
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001066 send_headers(responseNum);
1067 log_and_exit();
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001068}
1069
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001070/*
1071 * Read from the socket until '\n' or EOF. '\r' chars are removed.
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001072 * '\n' is replaced with NUL.
1073 * Return number of characters read or 0 if nothing is read
1074 * ('\r' and '\n' are not counted).
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001075 * Data is returned in iobuf.
1076 */
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001077static int get_line(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001078{
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001079 int count = 0;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001080 char c;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001081
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001082 while (1) {
1083 if (hdr_cnt <= 0) {
1084 hdr_cnt = safe_read(0, hdr_buf, sizeof(hdr_buf));
1085 if (hdr_cnt <= 0)
1086 break;
1087 hdr_ptr = hdr_buf;
1088 }
1089 iobuf[count] = c = *hdr_ptr++;
1090 hdr_cnt--;
1091
1092 if (c == '\r')
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001093 continue;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001094 if (c == '\n') {
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001095 iobuf[count] = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001096 return count;
1097 }
Denis Vlasenko921799d2007-08-19 19:28:09 +00001098 if (count < (IOBUF_SIZE - 1)) /* check overflow */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001099 count++;
1100 }
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001101 return count;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001102}
1103
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001104#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001105
1106/* gcc 4.2.1 fares better with NOINLINE */
1107static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len) ATTRIBUTE_NORETURN;
1108static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len)
1109{
1110 enum { FROM_CGI = 1, TO_CGI = 2 }; /* indexes in pfd[] */
1111 struct pollfd pfd[3];
1112 int out_cnt; /* we buffer a bit of initial CGI output */
1113 int count;
1114
1115 /* iobuf is used for CGI -> network data,
1116 * hdr_buf is for network -> CGI data (POSTDATA) */
1117
1118 /* If CGI dies, we still want to correctly finish reading its output
1119 * and send it to the peer. So please no SIGPIPEs! */
1120 signal(SIGPIPE, SIG_IGN);
1121
Denis Vlasenko4a457562007-10-14 02:34:20 +00001122 // We inconsistently handle a case when more POSTDATA from network
1123 // is coming than we expected. We may give *some part* of that
1124 // extra data to CGI.
1125
1126 //if (hdr_cnt > post_len) {
1127 // /* We got more POSTDATA from network than we expected */
1128 // hdr_cnt = post_len;
1129 //}
1130 post_len -= hdr_cnt;
1131 /* post_len - number of POST bytes not yet read from network */
1132
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001133 /* NB: breaking out of this loop jumps to log_and_exit() */
1134 out_cnt = 0;
1135 while (1) {
1136 memset(pfd, 0, sizeof(pfd));
1137
1138 pfd[FROM_CGI].fd = fromCgi_rd;
1139 pfd[FROM_CGI].events = POLLIN;
1140
1141 if (toCgi_wr) {
1142 pfd[TO_CGI].fd = toCgi_wr;
1143 if (hdr_cnt > 0) {
1144 pfd[TO_CGI].events = POLLOUT;
1145 } else if (post_len > 0) {
1146 pfd[0].events = POLLIN;
1147 } else {
1148 /* post_len <= 0 && hdr_cnt <= 0:
1149 * no more POST data to CGI,
1150 * let CGI see EOF on CGI's stdin */
1151 close(toCgi_wr);
1152 toCgi_wr = 0;
1153 }
1154 }
1155
1156 /* Now wait on the set of sockets */
Denis Vlasenko5d61e712007-09-27 10:09:59 +00001157 count = safe_poll(pfd, 3, -1);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001158 if (count <= 0) {
1159#if 0
Denis Vlasenkofb0eba72008-01-02 19:55:04 +00001160 if (safe_waitpid(pid, &status, WNOHANG) <= 0) {
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001161 /* Weird. CGI didn't exit and no fd's
1162 * are ready, yet poll returned?! */
1163 continue;
1164 }
1165 if (DEBUG && WIFEXITED(status))
1166 bb_error_msg("CGI exited, status=%d", WEXITSTATUS(status));
1167 if (DEBUG && WIFSIGNALED(status))
1168 bb_error_msg("CGI killed, signal=%d", WTERMSIG(status));
1169#endif
1170 break;
1171 }
1172
1173 if (pfd[TO_CGI].revents) {
1174 /* hdr_cnt > 0 here due to the way pfd[TO_CGI].events set */
1175 /* Have data from peer and can write to CGI */
1176 count = safe_write(toCgi_wr, hdr_ptr, hdr_cnt);
1177 /* Doesn't happen, we dont use nonblocking IO here
1178 *if (count < 0 && errno == EAGAIN) {
1179 * ...
1180 *} else */
1181 if (count > 0) {
1182 hdr_ptr += count;
1183 hdr_cnt -= count;
1184 } else {
1185 /* EOF/broken pipe to CGI, stop piping POST data */
1186 hdr_cnt = post_len = 0;
1187 }
1188 }
1189
1190 if (pfd[0].revents) {
1191 /* post_len > 0 && hdr_cnt == 0 here */
1192 /* We expect data, prev data portion is eaten by CGI
1193 * and there *is* data to read from the peer
1194 * (POSTDATA) */
1195 //count = post_len > (int)sizeof(hdr_buf) ? (int)sizeof(hdr_buf) : post_len;
1196 //count = safe_read(0, hdr_buf, count);
1197 count = safe_read(0, hdr_buf, sizeof(hdr_buf));
1198 if (count > 0) {
1199 hdr_cnt = count;
1200 hdr_ptr = hdr_buf;
1201 post_len -= count;
1202 } else {
1203 /* no more POST data can be read */
1204 post_len = 0;
1205 }
1206 }
1207
1208 if (pfd[FROM_CGI].revents) {
1209 /* There is something to read from CGI */
1210 char *rbuf = iobuf;
1211
1212 /* Are we still buffering CGI output? */
1213 if (out_cnt >= 0) {
1214 /* HTTP_200[] has single "\r\n" at the end.
1215 * According to http://hoohoo.ncsa.uiuc.edu/cgi/out.html,
1216 * CGI scripts MUST send their own header terminated by
1217 * empty line, then data. That's why we have only one
1218 * <cr><lf> pair here. We will output "200 OK" line
1219 * if needed, but CGI still has to provide blank line
1220 * between header and body */
1221
1222 /* Must use safe_read, not full_read, because
1223 * CGI may output a few first bytes and then wait
1224 * for POSTDATA without closing stdout.
1225 * With full_read we may wait here forever. */
1226 count = safe_read(fromCgi_rd, rbuf + out_cnt, PIPE_BUF - 8);
1227 if (count <= 0) {
1228 /* eof (or error) and there was no "HTTP",
1229 * so write it, then write received data */
1230 if (out_cnt) {
1231 full_write(1, HTTP_200, sizeof(HTTP_200)-1);
1232 full_write(1, rbuf, out_cnt);
1233 }
1234 break; /* CGI stdout is closed, exiting */
1235 }
1236 out_cnt += count;
1237 count = 0;
1238 /* "Status" header format is: "Status: 302 Redirected\r\n" */
1239 if (out_cnt >= 8 && memcmp(rbuf, "Status: ", 8) == 0) {
1240 /* send "HTTP/1.0 " */
1241 if (full_write(1, HTTP_200, 9) != 9)
1242 break;
1243 rbuf += 8; /* skip "Status: " */
1244 count = out_cnt - 8;
1245 out_cnt = -1; /* buffering off */
1246 } else if (out_cnt >= 4) {
1247 /* Did CGI add "HTTP"? */
1248 if (memcmp(rbuf, HTTP_200, 4) != 0) {
1249 /* there is no "HTTP", do it ourself */
1250 if (full_write(1, HTTP_200, sizeof(HTTP_200)-1) != sizeof(HTTP_200)-1)
1251 break;
1252 }
1253 /* Commented out:
1254 if (!strstr(rbuf, "ontent-")) {
1255 full_write(s, "Content-type: text/plain\r\n\r\n", 28);
1256 }
1257 * Counter-example of valid CGI without Content-type:
1258 * echo -en "HTTP/1.0 302 Found\r\n"
1259 * echo -en "Location: http://www.busybox.net\r\n"
1260 * echo -en "\r\n"
1261 */
1262 count = out_cnt;
1263 out_cnt = -1; /* buffering off */
1264 }
1265 } else {
1266 count = safe_read(fromCgi_rd, rbuf, PIPE_BUF);
1267 if (count <= 0)
1268 break; /* eof (or error) */
1269 }
1270 if (full_write(1, rbuf, count) != count)
1271 break;
1272 if (DEBUG)
1273 fprintf(stderr, "cgi read %d bytes: '%.*s'\n", count, count, rbuf);
1274 } /* if (pfd[FROM_CGI].revents) */
1275 } /* while (1) */
1276 log_and_exit();
1277}
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001278#endif
1279
1280#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001281
Denis Vlasenko921799d2007-08-19 19:28:09 +00001282static void setenv1(const char *name, const char *value)
1283{
1284 setenv(name, value ? value : "", 1);
1285}
1286
Denis Vlasenko241b1562007-08-17 19:18:47 +00001287/*
1288 * Spawn CGI script, forward CGI's stdin/out <=> network
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001289 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001290 * Environment variables are set up and the script is invoked with pipes
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001291 * for stdin/stdout. If a POST is being done the script is fed the POST
Denis Vlasenko241b1562007-08-17 19:18:47 +00001292 * data in addition to setting the QUERY_STRING variable (for GETs or POSTs).
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001293 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001294 * Parameters:
1295 * const char *url The requested URL (with leading /).
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001296 * int post_len Length of the POST body.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001297 * const char *cookie For set HTTP_COOKIE.
1298 * const char *content_type For set CONTENT_TYPE.
1299 */
1300static void send_cgi_and_exit(
1301 const char *url,
1302 const char *request,
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001303 int post_len,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001304 const char *cookie,
1305 const char *content_type) ATTRIBUTE_NORETURN;
1306static void send_cgi_and_exit(
1307 const char *url,
1308 const char *request,
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001309 int post_len,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001310 const char *cookie,
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001311 const char *content_type)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001312{
Denis Vlasenko37188322008-02-16 13:20:56 +00001313 struct fd_pair fromCgi; /* CGI -> httpd pipe */
1314 struct fd_pair toCgi; /* httpd -> CGI pipe */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001315 char *fullpath;
1316 char *script;
1317 char *purl;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001318 int pid;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001319
1320 /*
1321 * We are mucking with environment _first_ and then vfork/exec,
1322 * this allows us to use vfork safely. Parent don't care about
1323 * these environment changes anyway.
1324 */
1325
1326 /*
1327 * Find PATH_INFO.
1328 */
1329 purl = xstrdup(url);
1330 script = purl;
1331 while ((script = strchr(script + 1, '/')) != NULL) {
1332 /* have script.cgi/PATH_INFO or dirs/script.cgi[/PATH_INFO] */
1333 struct stat sb;
1334
1335 *script = '\0';
1336 if (!is_directory(purl + 1, 1, &sb)) {
1337 /* not directory, found script.cgi/PATH_INFO */
1338 *script = '/';
1339 break;
1340 }
1341 *script = '/'; /* is directory, find next '/' */
1342 }
1343 setenv1("PATH_INFO", script); /* set /PATH_INFO or "" */
1344 setenv1("REQUEST_METHOD", request);
1345 if (g_query) {
1346 putenv(xasprintf("%s=%s?%s", "REQUEST_URI", purl, g_query));
1347 } else {
1348 setenv1("REQUEST_URI", purl);
1349 }
1350 if (script != NULL)
1351 *script = '\0'; /* cut off /PATH_INFO */
1352
1353 /* SCRIPT_FILENAME required by PHP in CGI mode */
1354 fullpath = concat_path_file(home_httpd, purl);
1355 setenv1("SCRIPT_FILENAME", fullpath);
1356 /* set SCRIPT_NAME as full path: /cgi-bin/dirs/script.cgi */
1357 setenv1("SCRIPT_NAME", purl);
1358 /* http://hoohoo.ncsa.uiuc.edu/cgi/env.html:
1359 * QUERY_STRING: The information which follows the ? in the URL
1360 * which referenced this script. This is the query information.
1361 * It should not be decoded in any fashion. This variable
1362 * should always be set when there is query information,
1363 * regardless of command line decoding. */
1364 /* (Older versions of bbox seem to do some decoding) */
1365 setenv1("QUERY_STRING", g_query);
1366 putenv((char*)"SERVER_SOFTWARE=busybox httpd/"BB_VER);
1367 putenv((char*)"SERVER_PROTOCOL=HTTP/1.0");
1368 putenv((char*)"GATEWAY_INTERFACE=CGI/1.1");
1369 /* Having _separate_ variables for IP and port defeats
1370 * the purpose of having socket abstraction. Which "port"
1371 * are you using on Unix domain socket?
1372 * IOW - REMOTE_PEER="1.2.3.4:56" makes much more sense.
1373 * Oh well... */
1374 {
1375 char *p = rmt_ip_str ? rmt_ip_str : (char*)"";
1376 char *cp = strrchr(p, ':');
1377 if (ENABLE_FEATURE_IPV6 && cp && strchr(cp, ']'))
1378 cp = NULL;
1379 if (cp) *cp = '\0'; /* delete :PORT */
1380 setenv1("REMOTE_ADDR", p);
Denis Vlasenko37c33162007-08-19 18:54:22 +00001381 if (cp) {
1382 *cp = ':';
1383#if ENABLE_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
1384 setenv1("REMOTE_PORT", cp + 1);
1385#endif
1386 }
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001387 }
1388 setenv1("HTTP_USER_AGENT", user_agent);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001389 if (post_len)
1390 putenv(xasprintf("CONTENT_LENGTH=%d", post_len));
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001391 if (cookie)
1392 setenv1("HTTP_COOKIE", cookie);
1393 if (content_type)
1394 setenv1("CONTENT_TYPE", content_type);
1395#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1396 if (remoteuser) {
1397 setenv1("REMOTE_USER", remoteuser);
1398 putenv((char*)"AUTH_TYPE=Basic");
1399 }
1400#endif
1401 if (referer)
1402 setenv1("HTTP_REFERER", referer);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001403
Denis Vlasenko37188322008-02-16 13:20:56 +00001404 xpiped_pair(fromCgi);
1405 xpiped_pair(toCgi);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001406
Denis Vlasenko80281fe2007-03-07 22:16:38 +00001407 pid = vfork();
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001408 if (pid < 0) {
1409 /* TODO: log perror? */
1410 log_and_exit();
1411 }
Denis Vlasenkof7996f32007-01-11 17:20:00 +00001412
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001413 if (!pid) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001414 /* Child process */
Denis Vlasenko241b1562007-08-17 19:18:47 +00001415 xfunc_error_retval = 242;
1416
Denis Vlasenko284d0fa2008-02-16 13:18:17 +00001417 /* NB: close _first_, then move fds! */
1418 close(toCgi.wr);
1419 close(fromCgi.rd);
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001420 xmove_fd(toCgi.rd, 0); /* replace stdin with the pipe */
1421 xmove_fd(fromCgi.wr, 1); /* replace stdout with the pipe */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001422 /* User seeing stderr output can be a security problem.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001423 * If CGI really wants that, it can always do dup itself. */
Denis Vlasenko1ec15cd2007-08-11 20:20:43 +00001424 /* dup2(1, 2); */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001425
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001426 script = strrchr(fullpath, '/');
Denis Vlasenko7dbf1b42008-02-08 15:21:55 +00001427 //fullpath is a result of concat_path_file and always has '/'
1428 //if (!script)
1429 // goto error_execing_cgi;
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001430 *script = '\0';
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001431 /* chdiring to script's dir */
Denis Vlasenkofc213052008-02-11 16:26:22 +00001432 if (chdir(script == fullpath ? "/" : fullpath) == 0) {
1433 char *argv[3];
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001434
Denis Vlasenkofc213052008-02-11 16:26:22 +00001435 *script++ = '/'; /* repair fullpath */
1436 /* set argv[0] to name without path */
1437 argv[0] = script;
1438 argv[1] = NULL;
1439
1440#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
1441 {
1442 char *suffix = strrchr(script, '.');
1443
1444 if (suffix) {
1445 Htaccess *cur;
1446 for (cur = script_i; cur; cur = cur->next) {
1447 if (strcmp(cur->before_colon + 1, suffix) == 0) {
1448 /* found interpreter name */
1449 fullpath = cur->after_colon;
1450 argv[0] = cur->after_colon;
1451 argv[1] = script;
1452 argv[2] = NULL;
1453 break;
1454 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001455 }
1456 }
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001457 }
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001458#endif
Denis Vlasenko7dbf1b42008-02-08 15:21:55 +00001459 execv(fullpath, argv);
1460 if (verbose)
1461 bb_perror_msg("exec %s", fullpath);
1462 } else if (verbose) {
1463 bb_perror_msg("chdir %s", fullpath);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001464 }
Denis Vlasenko7dbf1b42008-02-08 15:21:55 +00001465 //error_execing_cgi:
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001466 /* send to stdout
1467 * (we are CGI here, our stdout is pumped to the net) */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001468 send_headers_and_exit(HTTP_NOT_FOUND);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001469 } /* end child */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001470
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001471 /* Parent process */
1472
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001473 /* Restore variables possibly changed by child */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001474 xfunc_error_retval = 0;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001475
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001476 /* Pump data */
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001477 close(fromCgi.wr);
1478 close(toCgi.rd);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001479 cgi_io_loop_and_exit(fromCgi.rd, toCgi.wr, post_len);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001480}
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001481
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001482#endif /* FEATURE_HTTPD_CGI */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001483
Denis Vlasenko241b1562007-08-17 19:18:47 +00001484/*
1485 * Send a file response to a HTTP request, and exit
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00001486 *
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001487 * Parameters:
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001488 * const char *url The requested URL (with leading /).
1489 * what What to send (headers/body/both).
Denis Vlasenko241b1562007-08-17 19:18:47 +00001490 */
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001491static void send_file_and_exit(const char *url, int what)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001492{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001493 static const char *const suffixTable[] = {
1494 /* Warning: shorter equivalent suffix in one line must be first */
1495 ".htm.html", "text/html",
1496 ".jpg.jpeg", "image/jpeg",
1497 ".gif", "image/gif",
1498 ".png", "image/png",
1499 ".txt.h.c.cc.cpp", "text/plain",
1500 ".css", "text/css",
1501 ".wav", "audio/wav",
1502 ".avi", "video/x-msvideo",
1503 ".qt.mov", "video/quicktime",
1504 ".mpe.mpeg", "video/mpeg",
1505 ".mid.midi", "audio/midi",
1506 ".mp3", "audio/mpeg",
1507#if 0 /* unpopular */
1508 ".au", "audio/basic",
1509 ".pac", "application/x-ns-proxy-autoconfig",
1510 ".vrml.wrl", "model/vrml",
1511#endif
1512 NULL
1513 };
1514
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001515 char *suffix;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001516 int f;
1517 const char *const *table;
1518 const char *try_suffix;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001519 ssize_t count;
1520#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
Denis Vlasenkof4310172007-09-21 22:35:18 +00001521 off_t offset;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001522#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001523
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001524 /* If you want to know about EPIPE below
1525 * (happens if you abort downloads from local httpd): */
1526 signal(SIGPIPE, SIG_IGN);
1527
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001528 suffix = strrchr(url, '.');
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001529
Denis Vlasenko073214f2007-08-17 19:20:07 +00001530 /* If not found, set default as "application/octet-stream"; */
1531 found_mime_type = "application/octet-stream";
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001532 if (suffix) {
Denis Vlasenko073214f2007-08-17 19:20:07 +00001533#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
1534 Htaccess *cur;
1535#endif
1536 for (table = suffixTable; *table; table += 2) {
1537 try_suffix = strstr(table[0], suffix);
1538 if (try_suffix) {
1539 try_suffix += strlen(suffix);
1540 if (*try_suffix == '\0' || *try_suffix == '.') {
1541 found_mime_type = table[1];
1542 break;
1543 }
1544 }
1545 }
1546#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001547 for (cur = mime_a; cur; cur = cur->next) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001548 if (strcmp(cur->before_colon, suffix) == 0) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001549 found_mime_type = cur->after_colon;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001550 break;
1551 }
1552 }
Denis Vlasenko073214f2007-08-17 19:20:07 +00001553#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001554 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001555
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001556 if (DEBUG)
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001557 bb_error_msg("sending file '%s' content-type: %s",
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001558 url, found_mime_type);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001559
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001560 f = open(url, O_RDONLY);
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001561 if (f < 0) {
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001562 if (DEBUG)
1563 bb_perror_msg("cannot open '%s'", url);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001564 /* Error pages are sent by using send_file_and_exit(SEND_BODY).
1565 * IOW: it is unsafe to call send_headers_and_exit
1566 * if what is SEND_BODY! Can recurse! */
1567 if (what != SEND_BODY)
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001568 send_headers_and_exit(HTTP_NOT_FOUND);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001569 log_and_exit();
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001570 }
Denis Vlasenkof4310172007-09-21 22:35:18 +00001571#if ENABLE_FEATURE_HTTPD_RANGES
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001572 if (what == SEND_BODY)
Denis Vlasenkof4310172007-09-21 22:35:18 +00001573 range_start = 0; /* err pages and ranges don't mix */
1574 range_len = MAXINT(off_t);
1575 if (range_start) {
1576 if (!range_end) {
1577 range_end = file_size - 1;
1578 }
1579 if (range_end < range_start
1580 || lseek(f, range_start, SEEK_SET) != range_start
1581 ) {
1582 lseek(f, 0, SEEK_SET);
1583 range_start = 0;
1584 } else {
1585 range_len = range_end - range_start + 1;
1586 send_headers(HTTP_PARTIAL_CONTENT);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001587 what = SEND_BODY;
Denis Vlasenkof4310172007-09-21 22:35:18 +00001588 }
1589 }
1590#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001591
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001592 if (what & SEND_HEADERS)
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001593 send_headers(HTTP_OK);
Denis Vlasenko241b1562007-08-17 19:18:47 +00001594
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001595#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
Denis Vlasenkof4310172007-09-21 22:35:18 +00001596 offset = range_start;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001597 do {
Denis Vlasenkof4310172007-09-21 22:35:18 +00001598 /* sz is rounded down to 64k */
1599 ssize_t sz = MAXINT(ssize_t) - 0xffff;
1600 USE_FEATURE_HTTPD_RANGES(if (sz > range_len) sz = range_len;)
1601 count = sendfile(1, f, &offset, sz);
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001602 if (count < 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00001603 if (offset == range_start)
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001604 goto fallback;
Denis Vlasenko241b1562007-08-17 19:18:47 +00001605 goto fin;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001606 }
Denis Vlasenkof4310172007-09-21 22:35:18 +00001607 USE_FEATURE_HTTPD_RANGES(range_len -= sz;)
1608 } while (count > 0 && range_len);
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001609 log_and_exit();
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001610
1611 fallback:
1612#endif
Denis Vlasenko921799d2007-08-19 19:28:09 +00001613 while ((count = safe_read(f, iobuf, IOBUF_SIZE)) > 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00001614 ssize_t n;
1615 USE_FEATURE_HTTPD_RANGES(if (count > range_len) count = range_len;)
1616 n = full_write(1, iobuf, count);
Denis Vlasenko241b1562007-08-17 19:18:47 +00001617 if (count != n)
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001618 break;
Denis Vlasenkof4310172007-09-21 22:35:18 +00001619 USE_FEATURE_HTTPD_RANGES(range_len -= count;)
1620 if (!range_len)
1621 break;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001622 }
Denis Vlasenko241b1562007-08-17 19:18:47 +00001623#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
1624 fin:
1625#endif
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001626 if (count < 0 && verbose > 1)
1627 bb_perror_msg("error");
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001628 log_and_exit();
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001629}
1630
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001631static int checkPermIP(void)
1632{
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001633 Htaccess_IP *cur;
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001634
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001635 /* This could stand some work */
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001636 for (cur = ip_a_d; cur; cur = cur->next) {
Denis Vlasenkob64eed62007-01-14 17:06:11 +00001637#if DEBUG
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001638 fprintf(stderr,
1639 "checkPermIP: '%s' ? '%u.%u.%u.%u/%u.%u.%u.%u'\n",
1640 rmt_ip_str,
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00001641 (unsigned char)(cur->ip >> 24),
1642 (unsigned char)(cur->ip >> 16),
1643 (unsigned char)(cur->ip >> 8),
1644 (unsigned char)(cur->ip),
1645 (unsigned char)(cur->mask >> 24),
1646 (unsigned char)(cur->mask >> 16),
1647 (unsigned char)(cur->mask >> 8),
1648 (unsigned char)(cur->mask)
1649 );
Denis Vlasenko3bba5452006-12-30 17:57:03 +00001650#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001651 if ((rmt_ip & cur->mask) == cur->ip)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001652 return cur->allow_deny == 'A'; /* Allow/Deny */
1653 }
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001654
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001655 /* if unconfigured, return 1 - access from all */
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001656 return !flg_deny_all;
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001657}
1658
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001659#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko073214f2007-08-17 19:20:07 +00001660/*
1661 * Check the permission file for access password protected.
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001662 *
Denis Vlasenko073214f2007-08-17 19:20:07 +00001663 * If config file isn't present, everything is allowed.
1664 * Entries are of the form you can see example from header source
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001665 *
Denis Vlasenko073214f2007-08-17 19:20:07 +00001666 * path The file path.
1667 * request User information to validate.
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001668 *
Denis Vlasenko073214f2007-08-17 19:20:07 +00001669 * Returns 1 if request is OK.
1670 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001671static int checkPerm(const char *path, const char *request)
1672{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001673 Htaccess *cur;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001674 const char *p;
1675 const char *p0;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001676
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001677 const char *prev = NULL;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001678
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001679 /* This could stand some work */
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001680 for (cur = g_auth; cur; cur = cur->next) {
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001681 size_t l;
1682
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001683 p0 = cur->before_colon;
1684 if (prev != NULL && strcmp(prev, p0) != 0)
1685 continue; /* find next identical */
1686 p = cur->after_colon;
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001687 if (DEBUG)
1688 fprintf(stderr, "checkPerm: '%s' ? '%s'\n", p0, request);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001689
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001690 l = strlen(p0);
1691 if (strncmp(p0, path, l) == 0
1692 && (l == 1 || path[l] == '/' || path[l] == '\0')
1693 ) {
1694 char *u;
1695 /* path match found. Check request */
1696 /* for check next /path:user:password */
1697 prev = p0;
1698 u = strchr(request, ':');
1699 if (u == NULL) {
1700 /* bad request, ':' required */
1701 break;
1702 }
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001703
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001704 if (ENABLE_FEATURE_HTTPD_AUTH_MD5) {
1705 char *cipher;
1706 char *pp;
Eric Andersen35e643b2003-07-28 07:40:39 +00001707
Denis Vlasenko073214f2007-08-17 19:20:07 +00001708 if (strncmp(p, request, u - request) != 0) {
Denis Vlasenko921799d2007-08-19 19:28:09 +00001709 /* user doesn't match */
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001710 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001711 }
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001712 pp = strchr(p, ':');
Denis Vlasenko921799d2007-08-19 19:28:09 +00001713 if (pp && pp[1] == '$' && pp[2] == '1'
1714 && pp[3] == '$' && pp[4]
1715 ) {
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001716 pp++;
1717 cipher = pw_encrypt(u+1, pp);
1718 if (strcmp(cipher, pp) == 0)
1719 goto set_remoteuser_var; /* Ok */
1720 /* unauthorized */
1721 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001722 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001723 }
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001724
1725 if (strcmp(p, request) == 0) {
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001726 set_remoteuser_var:
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001727 remoteuser = strdup(request);
1728 if (remoteuser)
Denis Vlasenko921799d2007-08-19 19:28:09 +00001729 remoteuser[u - request] = '\0';
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001730 return 1; /* Ok */
1731 }
1732 /* unauthorized */
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001733 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001734 } /* for */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001735
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001736 return prev == NULL;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001737}
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001738#endif /* FEATURE_HTTPD_BASIC_AUTH */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001739
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001740#if ENABLE_FEATURE_HTTPD_PROXY
1741static Htaccess_Proxy *find_proxy_entry(const char *url)
1742{
1743 Htaccess_Proxy *p;
1744 for (p = proxy; p; p = p->next) {
1745 if (strncmp(url, p->url_from, strlen(p->url_from)) == 0)
1746 return p;
1747 }
1748 return NULL;
1749}
1750#endif
1751
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001752/*
1753 * Handle timeouts
1754 */
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001755static void exit_on_signal(int sig) ATTRIBUTE_NORETURN;
1756static void exit_on_signal(int sig)
Eric Andersen07f2fea2004-10-08 08:03:29 +00001757{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001758 send_headers_and_exit(HTTP_REQUEST_TIMEOUT);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001759}
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001760
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001761/*
1762 * Handle an incoming http request and exit.
1763 */
Denis Vlasenko367960b2007-08-18 14:20:21 +00001764static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr) ATTRIBUTE_NORETURN;
1765static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001766{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001767 static const char request_GET[] ALIGN1 = "GET";
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001768 struct stat sb;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001769 char *urlcopy;
1770 char *urlp;
1771 char *tptr;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001772 int ip_allowed;
Denis Vlasenko55a99402006-09-30 20:41:44 +00001773#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001774 static const char request_HEAD[] ALIGN1 = "HEAD";
Denis Vlasenko073214f2007-08-17 19:20:07 +00001775 const char *prequest;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001776 char *cookie = NULL;
1777 char *content_type = NULL;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001778 unsigned long length = 0;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001779#elif ENABLE_FEATURE_HTTPD_PROXY
1780#define prequest request_GET
1781 unsigned long length = 0;
1782#endif
1783 char http_major_version;
1784#if ENABLE_FEATURE_HTTPD_PROXY
1785 char http_minor_version;
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001786 char *header_buf = header_buf; /* for gcc */
1787 char *header_ptr = header_ptr;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001788 Htaccess_Proxy *proxy_entry;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001789#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001790 struct sigaction sa;
Denis Vlasenko55a99402006-09-30 20:41:44 +00001791#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001792 int credentials = -1; /* if not required this is Ok */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001793#endif
1794
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001795 /* Allocation of iobuf is postponed until now
1796 * (IOW, server process doesn't need to waste 8k) */
Denis Vlasenko921799d2007-08-19 19:28:09 +00001797 iobuf = xmalloc(IOBUF_SIZE);
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001798
Denis Vlasenko367960b2007-08-18 14:20:21 +00001799 rmt_ip = 0;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001800 if (fromAddr->u.sa.sa_family == AF_INET) {
1801 rmt_ip = ntohl(fromAddr->u.sin.sin_addr.s_addr);
Denis Vlasenko367960b2007-08-18 14:20:21 +00001802 }
Denis Vlasenko35465a32007-09-25 11:58:33 +00001803#if ENABLE_FEATURE_IPV6
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001804 if (fromAddr->u.sa.sa_family == AF_INET6
1805 && fromAddr->u.sin6.sin6_addr.s6_addr32[0] == 0
1806 && fromAddr->u.sin6.sin6_addr.s6_addr32[1] == 0
1807 && ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[2]) == 0xffff)
1808 rmt_ip = ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[3]);
Denis Vlasenko35465a32007-09-25 11:58:33 +00001809#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00001810 if (ENABLE_FEATURE_HTTPD_CGI || DEBUG || verbose) {
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001811 rmt_ip_str = xmalloc_sockaddr2dotted(&fromAddr->u.sa);
Denis Vlasenko367960b2007-08-18 14:20:21 +00001812 }
1813 if (verbose) {
1814 /* this trick makes -v logging much simpler */
1815 applet_name = rmt_ip_str;
1816 if (verbose > 2)
1817 bb_error_msg("connected");
1818 }
1819
Denis Vlasenko073214f2007-08-17 19:20:07 +00001820 /* Install timeout handler */
Denis Vlasenko9611cb12007-08-18 14:18:43 +00001821 memset(&sa, 0, sizeof(sa));
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001822 sa.sa_handler = exit_on_signal;
Denis Vlasenko9611cb12007-08-18 14:18:43 +00001823 /* sigemptyset(&sa.sa_mask); - memset should be enough */
1824 /*sa.sa_flags = 0; - no SA_RESTART */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001825 sigaction(SIGALRM, &sa, NULL);
Denis Vlasenko073214f2007-08-17 19:20:07 +00001826 alarm(HEADER_READ_TIMEOUT);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001827
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001828 if (!get_line()) /* EOF or error or empty line */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001829 send_headers_and_exit(HTTP_BAD_REQUEST);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001830
Denis Vlasenko073214f2007-08-17 19:20:07 +00001831 /* Determine type of request (GET/POST) */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001832 urlp = strpbrk(iobuf, " \t");
1833 if (urlp == NULL)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001834 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001835 *urlp++ = '\0';
Denis Vlasenko55a99402006-09-30 20:41:44 +00001836#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko073214f2007-08-17 19:20:07 +00001837 prequest = request_GET;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001838 if (strcasecmp(iobuf, prequest) != 0) {
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001839 prequest = request_HEAD;
1840 if (strcasecmp(iobuf, prequest) != 0) {
1841 prequest = "POST";
1842 if (strcasecmp(iobuf, prequest) != 0)
1843 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
1844 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001845 }
1846#else
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001847 if (strcasecmp(iobuf, request_GET) != 0)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001848 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001849#endif
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001850 urlp = skip_whitespace(urlp);
1851 if (urlp[0] != '/')
1852 send_headers_and_exit(HTTP_BAD_REQUEST);
1853
1854 /* Find end of URL and parse HTTP version, if any */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001855 http_major_version = '0';
1856 USE_FEATURE_HTTPD_PROXY(http_minor_version = '0';)
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001857 tptr = strchrnul(urlp, ' ');
1858 /* Is it " HTTP/"? */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001859 if (tptr[0] && strncmp(tptr + 1, HTTP_200, 5) == 0) {
1860 http_major_version = tptr[6];
1861 USE_FEATURE_HTTPD_PROXY(http_minor_version = tptr[8];)
1862 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001863 *tptr = '\0';
Glenn L McGrath06e95652003-02-09 06:51:14 +00001864
Denis Vlasenko073214f2007-08-17 19:20:07 +00001865 /* Copy URL from after "GET "/"POST " to stack-allocated char[] */
Denis Vlasenkofcd878e2007-12-29 02:16:23 +00001866 urlcopy = alloca((tptr - urlp) + 2 + strlen(index_page));
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001867 /*if (urlcopy == NULL)
1868 * send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);*/
1869 strcpy(urlcopy, urlp);
1870 /* NB: urlcopy ptr is never changed after this */
Denis Vlasenko073214f2007-08-17 19:20:07 +00001871
1872 /* Extract url args if present */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001873 g_query = NULL;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001874 tptr = strchr(urlcopy, '?');
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001875 if (tptr) {
1876 *tptr++ = '\0';
1877 g_query = tptr;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001878 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001879
Denis Vlasenko073214f2007-08-17 19:20:07 +00001880 /* Decode URL escape sequences */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001881 tptr = decodeString(urlcopy, 0);
1882 if (tptr == NULL)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001883 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001884 if (tptr == urlcopy + 1) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001885 /* '/' or NUL is encoded */
1886 send_headers_and_exit(HTTP_NOT_FOUND);
1887 }
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001888
Denis Vlasenko073214f2007-08-17 19:20:07 +00001889 /* Canonicalize path */
1890 /* Algorithm stolen from libbb bb_simplify_path(),
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001891 * but don't strdup and reducing trailing slash and protect out root */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001892 urlp = tptr = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001893 do {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001894 if (*urlp == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001895 /* skip duplicate (or initial) slash */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001896 if (*tptr == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001897 continue;
1898 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001899 if (*tptr == '.') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001900 /* skip extra '.' */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001901 if (tptr[1] == '/' || !tptr[1]) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001902 continue;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001903 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001904 /* '..': be careful */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001905 if (tptr[1] == '.' && (tptr[2] == '/' || !tptr[2])) {
1906 ++tptr;
1907 if (urlp == urlcopy) /* protect root */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001908 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001909 while (*--urlp != '/') /* omit previous dir */;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001910 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001911 }
1912 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001913 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001914 *++urlp = *tptr;
1915 } while (*++tptr);
1916 *++urlp = '\0'; /* so keep last character */
1917 tptr = urlp; /* end ptr */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001918
Denis Vlasenko073214f2007-08-17 19:20:07 +00001919 /* If URL is a directory, add '/' */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001920 if (tptr[-1] != '/') {
1921 if (is_directory(urlcopy + 1, 1, &sb)) {
1922 found_moved_temporarily = urlcopy;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001923 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001924 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001925
Denis Vlasenko073214f2007-08-17 19:20:07 +00001926 /* Log it */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001927 if (verbose > 1)
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001928 bb_error_msg("url:%s", urlcopy);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001929
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001930 tptr = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001931 ip_allowed = checkPermIP();
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001932 while (ip_allowed && (tptr = strchr(tptr + 1, '/')) != NULL) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001933 /* have path1/path2 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001934 *tptr = '\0';
1935 if (is_directory(urlcopy + 1, 1, &sb)) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001936 /* may be having subdir config */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001937 parse_conf(urlcopy + 1, SUBDIR_PARSE);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001938 ip_allowed = checkPermIP();
1939 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001940 *tptr = '/';
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001941 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001942
1943#if ENABLE_FEATURE_HTTPD_PROXY
1944 proxy_entry = find_proxy_entry(urlcopy);
1945 if (proxy_entry)
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001946 header_buf = header_ptr = xmalloc(IOBUF_SIZE);
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001947#endif
1948
1949 if (http_major_version >= '0') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001950 /* Request was with "... HTTP/nXXX", and n >= 0 */
Denis Vlasenko073214f2007-08-17 19:20:07 +00001951
1952 /* Read until blank line for HTTP version specified, else parse immediate */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001953 while (1) {
Denis Vlasenko073214f2007-08-17 19:20:07 +00001954 alarm(HEADER_READ_TIMEOUT);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001955 if (!get_line())
1956 break; /* EOF or error or empty line */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001957 if (DEBUG)
1958 bb_error_msg("header: '%s'", iobuf);
Denis Vlasenko073214f2007-08-17 19:20:07 +00001959
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001960#if ENABLE_FEATURE_HTTPD_PROXY
1961 /* We need 2 more bytes for yet another "\r\n" -
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001962 * see near fdprintf(proxy_fd...) further below */
1963 if (proxy_entry && (header_ptr - header_buf) < IOBUF_SIZE - 2) {
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001964 int len = strlen(iobuf);
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001965 if (len > IOBUF_SIZE - (header_ptr - header_buf) - 4)
1966 len = IOBUF_SIZE - (header_ptr - header_buf) - 4;
1967 memcpy(header_ptr, iobuf, len);
1968 header_ptr += len;
1969 header_ptr[0] = '\r';
1970 header_ptr[1] = '\n';
1971 header_ptr += 2;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001972 }
1973#endif
1974
1975#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
1976 /* Try and do our best to parse more lines */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001977 if ((STRNCASECMP(iobuf, "Content-length:") == 0)) {
1978 /* extra read only for POST */
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001979 if (prequest != request_GET && prequest != request_HEAD) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001980 tptr = iobuf + sizeof("Content-length:") - 1;
1981 if (!tptr[0])
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001982 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001983 /* not using strtoul: it ignores leading minus! */
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001984 length = bb_strtou(tptr, NULL, 10);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001985 /* length is "ulong", but we need to pass it to int later */
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001986 if (errno || length > INT_MAX)
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001987 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001988 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001989 }
1990#endif
1991#if ENABLE_FEATURE_HTTPD_CGI
1992 else if (STRNCASECMP(iobuf, "Cookie:") == 0) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001993 cookie = strdup(skip_whitespace(iobuf + sizeof("Cookie:")-1));
1994 } else if (STRNCASECMP(iobuf, "Content-Type:") == 0) {
1995 content_type = strdup(skip_whitespace(iobuf + sizeof("Content-Type:")-1));
1996 } else if (STRNCASECMP(iobuf, "Referer:") == 0) {
1997 referer = strdup(skip_whitespace(iobuf + sizeof("Referer:")-1));
1998 } else if (STRNCASECMP(iobuf, "User-Agent:") == 0) {
1999 user_agent = strdup(skip_whitespace(iobuf + sizeof("User-Agent:")-1));
2000 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002001#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002002#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002003 if (STRNCASECMP(iobuf, "Authorization:") == 0) {
2004 /* We only allow Basic credentials.
2005 * It shows up as "Authorization: Basic <userid:password>" where
2006 * the userid:password is base64 encoded.
2007 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002008 tptr = skip_whitespace(iobuf + sizeof("Authorization:")-1);
2009 if (STRNCASECMP(tptr, "Basic") != 0)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002010 continue;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002011 tptr += sizeof("Basic")-1;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002012 /* decodeBase64() skips whitespace itself */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002013 decodeBase64(tptr);
2014 credentials = checkPerm(urlcopy, tptr);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002015 }
Denis Vlasenkob3a07152006-11-16 18:04:43 +00002016#endif /* FEATURE_HTTPD_BASIC_AUTH */
Denis Vlasenkof4310172007-09-21 22:35:18 +00002017#if ENABLE_FEATURE_HTTPD_RANGES
2018 if (STRNCASECMP(iobuf, "Range:") == 0) {
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002019 /* We know only bytes=NNN-[MMM] */
Denis Vlasenkof4310172007-09-21 22:35:18 +00002020 char *s = skip_whitespace(iobuf + sizeof("Range:")-1);
2021 if (strncmp(s, "bytes=", 6) == 0) {
2022 s += sizeof("bytes=")-1;
2023 range_start = BB_STRTOOFF(s, &s, 10);
2024 if (s[0] != '-' || range_start < 0) {
2025 range_start = 0;
2026 } else if (s[1]) {
2027 range_end = BB_STRTOOFF(s+1, NULL, 10);
2028 if (errno || range_end < range_start)
2029 range_start = 0;
2030 }
2031 }
2032 }
2033#endif
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002034 } /* while extra header reading */
2035 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002036
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002037 /* We are done reading headers, disable peer timeout */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002038 alarm(0);
2039
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002040 if (strcmp(bb_basename(urlcopy), httpd_conf) == 0 || ip_allowed == 0) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002041 /* protect listing [/path]/httpd_conf or IP deny */
2042 send_headers_and_exit(HTTP_FORBIDDEN);
2043 }
2044
2045#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002046 if (credentials <= 0 && checkPerm(urlcopy, ":") == 0) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002047 send_headers_and_exit(HTTP_UNAUTHORIZED);
2048 }
2049#endif
2050
2051 if (found_moved_temporarily) {
2052 send_headers_and_exit(HTTP_MOVED_TEMPORARILY);
2053 }
2054
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002055#if ENABLE_FEATURE_HTTPD_PROXY
2056 if (proxy_entry != NULL) {
2057 int proxy_fd;
2058 len_and_sockaddr *lsa;
2059
2060 proxy_fd = socket(AF_INET, SOCK_STREAM, 0);
2061 if (proxy_fd < 0)
2062 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2063 lsa = host2sockaddr(proxy_entry->host_port, 80);
2064 if (lsa == NULL)
2065 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002066 if (connect(proxy_fd, &lsa->u.sa, lsa->len) < 0)
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002067 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2068 fdprintf(proxy_fd, "%s %s%s%s%s HTTP/%c.%c\r\n",
2069 prequest, /* GET or POST */
2070 proxy_entry->url_to, /* url part 1 */
2071 urlcopy + strlen(proxy_entry->url_from), /* url part 2 */
2072 (g_query ? "?" : ""), /* "?" (maybe) */
2073 (g_query ? g_query : ""), /* query string (maybe) */
2074 http_major_version, http_minor_version);
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00002075 header_ptr[0] = '\r';
2076 header_ptr[1] = '\n';
2077 header_ptr += 2;
2078 write(proxy_fd, header_buf, header_ptr - header_buf);
2079 free(header_buf); /* on the order of 8k, free it */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002080 /* cgi_io_loop_and_exit needs to have two disctinct fds */
2081 cgi_io_loop_and_exit(proxy_fd, dup(proxy_fd), length);
2082 }
2083#endif
2084
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002085 tptr = urlcopy + 1; /* skip first '/' */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002086
2087#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002088 if (strncmp(tptr, "cgi-bin/", 8) == 0) {
2089 if (tptr[8] == '\0') {
Denis Vlasenko073214f2007-08-17 19:20:07 +00002090 /* protect listing "cgi-bin/" */
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002091 send_headers_and_exit(HTTP_FORBIDDEN);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002092 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002093 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002094 }
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002095#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002096 {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002097 char *suffix = strrchr(tptr, '.');
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002098 if (suffix) {
2099 Htaccess *cur;
2100 for (cur = script_i; cur; cur = cur->next) {
2101 if (strcmp(cur->before_colon + 1, suffix) == 0) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002102 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002103 }
2104 }
2105 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002106 }
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002107#endif
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002108 if (prequest != request_GET && prequest != request_HEAD) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002109 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
2110 }
Denis Vlasenko5d148e22006-11-21 00:12:09 +00002111#endif /* FEATURE_HTTPD_CGI */
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00002112
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002113 if (urlp[-1] == '/')
Denis Vlasenkofcd878e2007-12-29 02:16:23 +00002114 strcpy(urlp, index_page);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002115 if (stat(tptr, &sb) == 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00002116 file_size = sb.st_size;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002117 last_mod = sb.st_mtime;
2118 }
Denis Vlasenko5d148e22006-11-21 00:12:09 +00002119#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002120 else if (urlp[-1] == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002121 /* It's a dir URL and there is no index.html
2122 * Try cgi-bin/index.cgi */
2123 if (access("/cgi-bin/index.cgi"+1, X_OK) == 0) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002124 urlp[0] = '\0';
2125 g_query = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002126 send_cgi_and_exit("/cgi-bin/index.cgi", prequest, length, cookie, content_type);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002127 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002128 }
Denis Vlasenko073214f2007-08-17 19:20:07 +00002129#endif
2130 /* else {
2131 * fall through to send_file, it errors out if open fails
2132 * }
2133 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002134
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002135 send_file_and_exit(tptr,
2136 (prequest != request_HEAD ? SEND_HEADERS_AND_BODY : SEND_HEADERS));
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002137}
2138
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002139/*
2140 * The main http server function.
Denis Vlasenko367960b2007-08-18 14:20:21 +00002141 * Given a socket, listen for new connections and farm out
2142 * the processing as a [v]forked process.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002143 * Never returns.
2144 */
Denis Vlasenko367960b2007-08-18 14:20:21 +00002145#if BB_MMU
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002146static void mini_httpd(int server_socket) ATTRIBUTE_NORETURN;
2147static void mini_httpd(int server_socket)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002148{
Denis Vlasenko073214f2007-08-17 19:20:07 +00002149 /* NB: it's best to not use xfuncs in this loop before fork().
2150 * Otherwise server may die on transient errors (temporary
2151 * out-of-memory condition, etc), which is Bad(tm).
2152 * Try to do any dangerous calls after fork.
2153 */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002154 while (1) {
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002155 int n;
2156 len_and_sockaddr fromAddr;
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00002157
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002158 /* Wait for connections... */
2159 fromAddr.len = LSA_SIZEOF_SA;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002160 n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002161
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002162 if (n < 0)
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00002163 continue;
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002164 /* set the KEEPALIVE option to cull dead connections */
2165 setsockopt(n, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002166
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002167 if (fork() == 0) {
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002168 /* child */
Denis Vlasenko55a99402006-09-30 20:41:44 +00002169#if ENABLE_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002170 /* Do not reload config on HUP */
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00002171 signal(SIGHUP, SIG_IGN);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00002172#endif
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
2185static void mini_httpd_nommu(int server_socket, int argc, char **argv) ATTRIBUTE_NORETURN;
2186static 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 */
2214#if ENABLE_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
2215 /* Do not reload config on HUP */
2216 signal(SIGHUP, SIG_IGN);
2217#endif
2218 close(server_socket);
2219 xmove_fd(n, 0);
2220 xdup2(0, 1);
2221
2222 /* Run a copy of ourself in inetd mode */
2223 re_exec(argv_copy);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002224 }
Denis Vlasenko921799d2007-08-19 19:28:09 +00002225 /* parent, or vfork failed */
Denis Vlasenko073214f2007-08-17 19:20:07 +00002226 close(n);
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002227 } /* while (1) */
Denis Vlasenko241b1562007-08-17 19:18:47 +00002228 /* never reached */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002229}
Denis Vlasenko56258b62007-06-23 23:14:02 +00002230#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002231
Denis Vlasenko367960b2007-08-18 14:20:21 +00002232/*
2233 * Process a HTTP connection on stdin/out.
2234 * Never returns.
2235 */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002236static void mini_httpd_inetd(void) ATTRIBUTE_NORETURN;
2237static void mini_httpd_inetd(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002238{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002239 len_and_sockaddr fromAddr;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002240
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002241 fromAddr.len = LSA_SIZEOF_SA;
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 Vlasenko55a99402006-09-30 20:41:44 +00002246#if ENABLE_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
Glenn L McGrath06e95652003-02-09 06:51:14 +00002247static void sighup_handler(int sig)
2248{
Glenn L McGrath06e95652003-02-09 06:51:14 +00002249 struct sigaction sa;
2250
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002251 parse_conf(default_path_httpd_conf, sig == SIGHUP ? SIGNALED_PARSE : FIRST_PARSE);
Denis Vlasenko073214f2007-08-17 19:20:07 +00002252
2253 memset(&sa, 0, sizeof(sa));
Glenn L McGrath06e95652003-02-09 06:51:14 +00002254 sa.sa_handler = sighup_handler;
Denis Vlasenko073214f2007-08-17 19:20:07 +00002255 /*sigemptyset(&sa.sa_mask); - memset should be enough */
Glenn L McGrath06e95652003-02-09 06:51:14 +00002256 sa.sa_flags = SA_RESTART;
2257 sigaction(SIGHUP, &sa, NULL);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002258}
2259#endif
2260
Denis Vlasenko9f609292006-11-05 19:47:33 +00002261enum {
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002262 c_opt_config_file = 0,
2263 d_opt_decode_url,
2264 h_opt_home_httpd,
2265 USE_FEATURE_HTTPD_ENCODE_URL_STR(e_opt_encode_url,)
Denis Vlasenko9f609292006-11-05 19:47:33 +00002266 USE_FEATURE_HTTPD_BASIC_AUTH( r_opt_realm ,)
2267 USE_FEATURE_HTTPD_AUTH_MD5( m_opt_md5 ,)
2268 USE_FEATURE_HTTPD_SETUID( u_opt_setuid ,)
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002269 p_opt_port ,
2270 p_opt_inetd ,
2271 p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002272 p_opt_verbose ,
Denis Vlasenko9f609292006-11-05 19:47:33 +00002273 OPT_CONFIG_FILE = 1 << c_opt_config_file,
2274 OPT_DECODE_URL = 1 << d_opt_decode_url,
2275 OPT_HOME_HTTPD = 1 << h_opt_home_httpd,
2276 OPT_ENCODE_URL = USE_FEATURE_HTTPD_ENCODE_URL_STR((1 << e_opt_encode_url)) + 0,
2277 OPT_REALM = USE_FEATURE_HTTPD_BASIC_AUTH( (1 << r_opt_realm )) + 0,
2278 OPT_MD5 = USE_FEATURE_HTTPD_AUTH_MD5( (1 << m_opt_md5 )) + 0,
2279 OPT_SETUID = USE_FEATURE_HTTPD_SETUID( (1 << u_opt_setuid )) + 0,
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002280 OPT_PORT = 1 << p_opt_port,
2281 OPT_INETD = 1 << p_opt_inetd,
2282 OPT_FOREGROUND = 1 << p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002283 OPT_VERBOSE = 1 << p_opt_verbose,
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002284};
Eric Andersena3bb3e62003-06-26 09:05:32 +00002285
Eric Andersena3bb3e62003-06-26 09:05:32 +00002286
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00002287int httpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Bernhard Reutner-Fischerfebe3c42007-04-04 20:52:03 +00002288int httpd_main(int argc, char **argv)
Glenn L McGrath06e95652003-02-09 06:51:14 +00002289{
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002290 int server_socket = server_socket; /* for gcc */
Denis Vlasenko67b23e62006-10-03 21:00:06 +00002291 unsigned opt;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002292 char *url_for_decode;
2293 USE_FEATURE_HTTPD_ENCODE_URL_STR(const char *url_for_encode;)
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002294 USE_FEATURE_HTTPD_SETUID(const char *s_ugid = NULL;)
2295 USE_FEATURE_HTTPD_SETUID(struct bb_uidgid_t ugid;)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002296 USE_FEATURE_HTTPD_AUTH_MD5(const char *pass;)
Eric Andersen35e643b2003-07-28 07:40:39 +00002297
Denis Vlasenko073214f2007-08-17 19:20:07 +00002298 INIT_G();
2299
Denis Vlasenkofcdb00f2006-11-21 00:09:37 +00002300#if ENABLE_LOCALE_SUPPORT
2301 /* Undo busybox.c: we want to speak English in http (dates etc) */
2302 setlocale(LC_TIME, "C");
2303#endif
2304
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002305 home_httpd = xrealloc_getcwd_or_warn(NULL);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002306 /* -v counts, -i implies -f */
2307 opt_complementary = "vv:if";
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002308 /* We do not "absolutize" path given by -h (home) opt.
2309 * If user gives relative path in -h, $SCRIPT_FILENAME can end up
2310 * relative too. */
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00002311 opt = getopt32(argv, "c:d:h:"
Denis Vlasenko53091ec2007-03-26 13:35:09 +00002312 USE_FEATURE_HTTPD_ENCODE_URL_STR("e:")
2313 USE_FEATURE_HTTPD_BASIC_AUTH("r:")
2314 USE_FEATURE_HTTPD_AUTH_MD5("m:")
2315 USE_FEATURE_HTTPD_SETUID("u:")
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002316 "p:ifv",
2317 &configFile, &url_for_decode, &home_httpd
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002318 USE_FEATURE_HTTPD_ENCODE_URL_STR(, &url_for_encode)
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002319 USE_FEATURE_HTTPD_BASIC_AUTH(, &g_realm)
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002320 USE_FEATURE_HTTPD_AUTH_MD5(, &pass)
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002321 USE_FEATURE_HTTPD_SETUID(, &s_ugid)
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002322 , &bind_addr_or_port
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002323 , &verbose
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002324 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002325 if (opt & OPT_DECODE_URL) {
Denis Vlasenko367960b2007-08-18 14:20:21 +00002326 fputs(decodeString(url_for_decode, 1), stdout);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002327 return 0;
2328 }
Denis Vlasenko55a99402006-09-30 20:41:44 +00002329#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002330 if (opt & OPT_ENCODE_URL) {
Denis Vlasenko367960b2007-08-18 14:20:21 +00002331 fputs(encodeString(url_for_encode), stdout);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002332 return 0;
2333 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002334#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002335#if ENABLE_FEATURE_HTTPD_AUTH_MD5
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002336 if (opt & OPT_MD5) {
Denis Vlasenko55a99402006-09-30 20:41:44 +00002337 puts(pw_encrypt(pass, "$1$"));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002338 return 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002339 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002340#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002341#if ENABLE_FEATURE_HTTPD_SETUID
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002342 if (opt & OPT_SETUID) {
Denis Vlasenko3bba5452006-12-30 17:57:03 +00002343 if (!get_uidgid(&ugid, s_ugid, 1))
2344 bb_error_msg_and_die("unrecognized user[:group] "
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002345 "name '%s'", s_ugid);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002346 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002347#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002348
Denis Vlasenko367960b2007-08-18 14:20:21 +00002349#if !BB_MMU
2350 if (!(opt & OPT_FOREGROUND)) {
2351 bb_daemonize_or_rexec(0, argv); /* don't change current directory */
2352 }
2353#endif
2354
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002355 xchdir(home_httpd);
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002356 if (!(opt & OPT_INETD)) {
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00002357 signal(SIGCHLD, SIG_IGN);
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002358 server_socket = openServer();
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002359#if ENABLE_FEATURE_HTTPD_SETUID
2360 /* drop privileges */
2361 if (opt & OPT_SETUID) {
2362 if (ugid.gid != (gid_t)-1) {
2363 if (setgroups(1, &ugid.gid) == -1)
Denis Vlasenko8e858e22007-03-07 09:35:43 +00002364 bb_perror_msg_and_die("setgroups");
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002365 xsetgid(ugid.gid);
2366 }
2367 xsetuid(ugid.uid);
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002368 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002369#endif
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002370 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002371
Denis Vlasenko2535f122007-09-15 13:28:30 +00002372#if 0 /*was #if ENABLE_FEATURE_HTTPD_CGI*/
2373 /* User can do it himself: 'env - PATH="$PATH" httpd'
2374 * We don't do it because we don't want to screw users
2375 * which want to do
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002376 * 'env - VAR1=val1 VAR2=val2 httpd'
Denis Vlasenko2535f122007-09-15 13:28:30 +00002377 * and have VAR1 and VAR2 values visible in their CGIs.
2378 * Besides, it is also smaller. */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002379 {
2380 char *p = getenv("PATH");
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002381 /* env strings themself are not freed, no need to strdup(p): */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002382 clearenv();
2383 if (p)
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002384 putenv(p - 5);
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002385// if (!(opt & OPT_INETD))
2386// setenv_long("SERVER_PORT", ???);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002387 }
Glenn L McGrathfe538ba2003-09-10 23:35:45 +00002388#endif
2389
Denis Vlasenko55a99402006-09-30 20:41:44 +00002390#if ENABLE_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
Denis Vlasenko367960b2007-08-18 14:20:21 +00002391 if (!(opt & OPT_INETD))
2392 sighup_handler(0);
2393 else /* do not install HUP handler in inetd mode */
Glenn L McGrath06e95652003-02-09 06:51:14 +00002394#endif
Denis Vlasenkofcd878e2007-12-29 02:16:23 +00002395 index_page = "index.html";
Denis Vlasenko367960b2007-08-18 14:20:21 +00002396 parse_conf(default_path_httpd_conf, FIRST_PARSE);
2397
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00002398 xfunc_error_retval = 0;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002399 if (opt & OPT_INETD)
2400 mini_httpd_inetd();
Denis Vlasenko367960b2007-08-18 14:20:21 +00002401#if BB_MMU
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002402 if (!(opt & OPT_FOREGROUND))
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002403 bb_daemonize(0); /* don't change current directory */
2404 mini_httpd(server_socket); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002405#else
Denis Vlasenko367960b2007-08-18 14:20:21 +00002406 mini_httpd_nommu(server_socket, argc, argv); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002407#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00002408 /* return 0; */
Glenn L McGrath06e95652003-02-09 06:51:14 +00002409}