blob: 779f070d94200ff6c9687fff5f16385d541a619c [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 */
343static void send_file_and_exit(const char *url, int headers) ATTRIBUTE_NORETURN;
344
Denis Vlasenko073214f2007-08-17 19:20:07 +0000345static void free_llist(has_next_ptr **pptr)
346{
347 has_next_ptr *cur = *pptr;
348 while (cur) {
349 has_next_ptr *t = cur;
350 cur = cur->next;
351 free(t);
352 }
353 *pptr = NULL;
354}
355
356#if ENABLE_FEATURE_HTTPD_BASIC_AUTH \
357 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES \
358 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
359static ALWAYS_INLINE void free_Htaccess_list(Htaccess **pptr)
360{
361 free_llist((has_next_ptr**)pptr);
362}
363#endif
364
365static ALWAYS_INLINE void free_Htaccess_IP_list(Htaccess_IP **pptr)
366{
367 free_llist((has_next_ptr**)pptr);
368}
Glenn L McGrath06e95652003-02-09 06:51:14 +0000369
Denis Vlasenkod867f322007-08-19 21:15:42 +0000370/* Returns presumed mask width in bits or < 0 on error.
371 * Updates strp, stores IP at provided pointer */
372static int scan_ip(const char **strp, unsigned *ipp, unsigned char endc)
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000373{
Denis Vlasenkod867f322007-08-19 21:15:42 +0000374 const char *p = *strp;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000375 int auto_mask = 8;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000376 unsigned ip = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000377 int j;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000378
Denis Vlasenkod867f322007-08-19 21:15:42 +0000379 if (*p == '/')
380 return -auto_mask;
381
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000382 for (j = 0; j < 4; j++) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000383 unsigned octet;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000384
Denis Vlasenkod867f322007-08-19 21:15:42 +0000385 if ((*p < '0' || *p > '9') && *p != '/' && *p)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000386 return -auto_mask;
387 octet = 0;
388 while (*p >= '0' && *p <= '9') {
389 octet *= 10;
390 octet += *p - '0';
391 if (octet > 255)
392 return -auto_mask;
393 p++;
394 }
395 if (*p == '.')
396 p++;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000397 if (*p != '/' && *p)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000398 auto_mask += 8;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000399 ip = (ip << 8) | octet;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000400 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000401 if (*p) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000402 if (*p != endc)
403 return -auto_mask;
404 p++;
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000405 if (*p == '\0')
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000406 return -auto_mask;
407 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000408 *ipp = ip;
409 *strp = p;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000410 return auto_mask;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000411}
412
Denis Vlasenkod867f322007-08-19 21:15:42 +0000413/* Returns 0 on success. Stores IP and mask at provided pointers */
414static int scan_ip_mask(const char *str, unsigned *ipp, unsigned *maskp)
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000415{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000416 int i;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000417 unsigned mask;
418 char *p;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000419
Denis Vlasenkod867f322007-08-19 21:15:42 +0000420 i = scan_ip(&str, ipp, '/');
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000421 if (i < 0)
422 return i;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000423
Denis Vlasenkod867f322007-08-19 21:15:42 +0000424 if (*str) {
425 /* there is /xxx after dotted-IP address */
426 i = bb_strtou(str, &p, 10);
427 if (*p == '.') {
428 /* 'xxx' itself is dotted-IP mask, parse it */
429 /* (return 0 (success) only if it has N.N.N.N form) */
430 return scan_ip(&str, maskp, '\0') - 32;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000431 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000432 if (*p)
433 return -1;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000434 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000435
436 if (i > 32)
Denis Vlasenko92758142006-10-03 19:56:34 +0000437 return -1;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000438
439 if (sizeof(unsigned) == 4 && i == 32) {
440 /* mask >>= 32 below may not work */
441 mask = 0;
442 } else {
443 mask = 0xffffffff;
444 mask >>= i;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000445 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000446 /* i == 0 -> *maskp = 0x00000000
447 * i == 1 -> *maskp = 0x80000000
448 * i == 4 -> *maskp = 0xf0000000
449 * i == 31 -> *maskp = 0xfffffffe
450 * i == 32 -> *maskp = 0xffffffff */
451 *maskp = (uint32_t)(~mask);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000452 return 0;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000453}
454
Denis Vlasenko073214f2007-08-17 19:20:07 +0000455/*
456 * Parse configuration file into in-memory linked list.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000457 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000458 * The first non-white character is examined to determine if the config line
459 * is one of the following:
460 * .ext:mime/type # new mime type not compiled into httpd
461 * [adAD]:from # ip address allow/deny, * for wildcard
462 * /path:user:pass # username/password
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000463 * Ennn:error.html # error page for status nnn
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000464 * P:/url:[http://]hostname[:port]/new/path # reverse proxy
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000465 *
466 * Any previous IP rules are discarded.
467 * If the flag argument is not SUBDIR_PARSE then all /path and mime rules
468 * are also discarded. That is, previous settings are retained if flag is
469 * SUBDIR_PARSE.
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000470 * Error pages are only parsed on the main config file.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000471 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000472 * path Path where to look for httpd.conf (without filename).
473 * flag Type of the parse request.
474 */
475/* flag */
476#define FIRST_PARSE 0
477#define SUBDIR_PARSE 1
478#define SIGNALED_PARSE 2
479#define FIND_FROM_HTTPD_ROOT 3
Glenn L McGrath06e95652003-02-09 06:51:14 +0000480static void parse_conf(const char *path, int flag)
481{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000482 FILE *f;
Denis Vlasenko55a99402006-09-30 20:41:44 +0000483#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000484 Htaccess *prev;
485#endif
486#if ENABLE_FEATURE_HTTPD_BASIC_AUTH \
487 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES \
488 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000489 Htaccess *cur;
Glenn L McGrathbaaa6e92003-09-15 15:00:43 +0000490#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000491 const char *cf = configFile;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000492 char buf[160];
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000493 char *p0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000494 char *c, *p;
Denis Vlasenko073214f2007-08-17 19:20:07 +0000495 Htaccess_IP *pip;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000496
Denis Vlasenko073214f2007-08-17 19:20:07 +0000497 /* discard old rules */
498 free_Htaccess_IP_list(&ip_a_d);
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000499 flg_deny_all = 0;
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000500#if ENABLE_FEATURE_HTTPD_BASIC_AUTH \
501 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES \
502 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000503 /* retain previous auth and mime config only for subdir parse */
504 if (flag != SUBDIR_PARSE) {
Denis Vlasenko55a99402006-09-30 20:41:44 +0000505#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko073214f2007-08-17 19:20:07 +0000506 free_Htaccess_list(&g_auth);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000507#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000508#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
Denis Vlasenko073214f2007-08-17 19:20:07 +0000509 free_Htaccess_list(&mime_a);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000510#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000511#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000512 free_Htaccess_list(&script_i);
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000513#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000514 }
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000515#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000516
517 if (flag == SUBDIR_PARSE || cf == NULL) {
518 cf = alloca(strlen(path) + sizeof(httpd_conf) + 2);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000519 sprintf((char *)cf, "%s/%s", path, httpd_conf);
Glenn L McGrath393183d2003-05-26 14:07:50 +0000520 }
521
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000522 while ((f = fopen(cf, "r")) == NULL) {
523 if (flag == SUBDIR_PARSE || flag == FIND_FROM_HTTPD_ROOT) {
524 /* config file not found, no changes to config */
525 return;
526 }
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000527 if (configFile && flag == FIRST_PARSE) /* if -c option given */
Denis Vlasenko0c97c9d2007-10-01 11:58:38 +0000528 bb_simple_perror_msg_and_die(cf);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000529 flag = FIND_FROM_HTTPD_ROOT;
530 cf = httpd_conf;
531 }
532
Denis Vlasenko55a99402006-09-30 20:41:44 +0000533#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000534 prev = g_auth;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000535#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000536 /* This could stand some work */
Denis Vlasenko55a99402006-09-30 20:41:44 +0000537 while ((p0 = fgets(buf, sizeof(buf), f)) != NULL) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000538 c = NULL;
Denis Vlasenko073214f2007-08-17 19:20:07 +0000539 for (p = p0; *p0 != '\0' && *p0 != '#'; p0++) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000540 if (!isspace(*p0)) {
541 *p++ = *p0;
542 if (*p0 == ':' && c == NULL)
Denis Vlasenko073214f2007-08-17 19:20:07 +0000543 c = p;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000544 }
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000545 }
Denis Vlasenko073214f2007-08-17 19:20:07 +0000546 *p = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000547
548 /* test for empty or strange line */
Denis Vlasenko073214f2007-08-17 19:20:07 +0000549 if (c == NULL || *c == '\0')
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000550 continue;
551 p0 = buf;
552 if (*p0 == 'd')
Denis Vlasenko073214f2007-08-17 19:20:07 +0000553 *p0 = 'D';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000554 if (*c == '*') {
555 if (*p0 == 'D') {
556 /* memorize deny all */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000557 flg_deny_all = 1;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000558 }
559 /* skip default other "word:*" config lines */
560 continue;
561 }
562
563 if (*p0 == 'a')
564 *p0 = 'A';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000565 if (*p0 == 'A' || *p0 == 'D') {
566 /* storing current config IP line */
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000567 pip = xzalloc(sizeof(Htaccess_IP));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000568 if (pip) {
Denis Vlasenko55a99402006-09-30 20:41:44 +0000569 if (scan_ip_mask(c, &(pip->ip), &(pip->mask))) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000570 /* syntax IP{/mask} error detected, protect all */
571 *p0 = 'D';
572 pip->mask = 0;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000573 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000574 pip->allow_deny = *p0;
575 if (*p0 == 'D') {
Denis Vlasenko073214f2007-08-17 19:20:07 +0000576 /* Deny:from_IP move top */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000577 pip->next = ip_a_d;
578 ip_a_d = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000579 } else {
580 /* add to bottom A:form_IP config line */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000581 Htaccess_IP *prev_IP = ip_a_d;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000582
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000583 if (prev_IP == NULL) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000584 ip_a_d = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000585 } else {
586 while (prev_IP->next)
587 prev_IP = prev_IP->next;
588 prev_IP->next = pip;
589 }
590 }
591 }
592 continue;
593 }
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000594
595#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
596 if (flag == FIRST_PARSE && *p0 == 'E') {
597 int i;
598 /* error status code */
599 int status = atoi(++p0);
600 /* c already points at the character following ':' in parse loop */
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000601 /* c = strchr(p0, ':'); c++; */
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000602 if (status < HTTP_CONTINUE) {
603 bb_error_msg("config error '%s' in '%s'", buf, cf);
604 continue;
605 }
606
607 /* then error page; find matching status */
608 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
609 if (http_response_type[i] == status) {
610 http_error_page[i] = concat_path_file((*c == '/') ? NULL : home_httpd, c);
611 break;
612 }
613 }
614 continue;
615 }
616#endif
617
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000618#if ENABLE_FEATURE_HTTPD_PROXY
619 if (flag == FIRST_PARSE && *p0 == 'P') {
620 /* P:/url:[http://]hostname[:port]/new/path */
621 char *url_from, *host_port, *url_to;
622 Htaccess_Proxy *proxy_entry;
623
624 url_from = c;
625 host_port = strchr(c, ':');
626 if (host_port == NULL) {
627 bb_error_msg("config error '%s' in '%s'", buf, cf);
628 continue;
629 }
630 *host_port++ = '\0';
631 if (strncmp(host_port, "http://", 7) == 0)
Denis Vlasenko78ee7c82007-10-21 23:24:42 +0000632 host_port += 7;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000633 if (*host_port == '\0') {
634 bb_error_msg("config error '%s' in '%s'", buf, cf);
635 continue;
636 }
637 url_to = strchr(host_port, '/');
638 if (url_to == NULL) {
639 bb_error_msg("config error '%s' in '%s'", buf, cf);
640 continue;
641 }
642 *url_to = '\0';
643 proxy_entry = xzalloc(sizeof(Htaccess_Proxy));
644 proxy_entry->url_from = xstrdup(url_from);
645 proxy_entry->host_port = xstrdup(host_port);
646 *url_to = '/';
647 proxy_entry->url_to = xstrdup(url_to);
648 proxy_entry->next = proxy;
649 proxy = proxy_entry;
650 continue;
651 }
652#endif
653
Denis Vlasenko55a99402006-09-30 20:41:44 +0000654#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000655 if (*p0 == '/') {
Denis Vlasenko073214f2007-08-17 19:20:07 +0000656 /* make full path from httpd root / current_path / config_line_path */
657 cf = (flag == SUBDIR_PARSE ? path : "");
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000658 p0 = xmalloc(strlen(cf) + (c - buf) + 2 + strlen(c));
Denis Vlasenko073214f2007-08-17 19:20:07 +0000659 c[-1] = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000660 sprintf(p0, "/%s%s", cf, buf);
661
662 /* another call bb_simplify_path */
663 cf = p = p0;
664
665 do {
666 if (*p == '/') {
667 if (*cf == '/') { /* skip duplicate (or initial) slash */
668 continue;
Denis Vlasenko3d2a9212007-09-28 22:35:29 +0000669 }
670 if (*cf == '.') {
Denis Vlasenko073214f2007-08-17 19:20:07 +0000671 if (cf[1] == '/' || cf[1] == '\0') { /* remove extra '.' */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000672 continue;
Denis Vlasenko3d2a9212007-09-28 22:35:29 +0000673 }
674 if ((cf[1] == '.') && (cf[2] == '/' || cf[2] == '\0')) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000675 ++cf;
676 if (p > p0) {
Denis Vlasenko92758142006-10-03 19:56:34 +0000677 while (*--p != '/') /* omit previous dir */;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000678 }
679 continue;
680 }
681 }
682 }
683 *++p = *cf;
684 } while (*++cf);
685
686 if ((p == p0) || (*p != '/')) { /* not a trailing slash */
687 ++p; /* so keep last character */
688 }
Denis Vlasenko3d2a9212007-09-28 22:35:29 +0000689 *p = ':';
690 strcpy(p + 1, c);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000691 }
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000692#endif
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000693
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000694 if (*p0 == 'I') {
695 index_page = xstrdup(c);
696 continue;
697 }
698
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000699#if ENABLE_FEATURE_HTTPD_BASIC_AUTH \
700 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES \
701 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000702 /* storing current config line */
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000703 cur = xzalloc(sizeof(Htaccess) + strlen(p0));
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000704 cf = strcpy(cur->before_colon, p0);
Denis Vlasenko55a99402006-09-30 20:41:44 +0000705#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000706 if (*p0 == '/')
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000707 free(p0);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000708#endif
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000709 c = strchr(cf, ':');
710 *c++ = '\0';
711 cur->after_colon = c;
712#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
713 if (*cf == '.') {
714 /* config .mime line move top for overwrite previous */
715 cur->next = mime_a;
716 mime_a = cur;
717 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000718 }
Glenn L McGrathbaaa6e92003-09-15 15:00:43 +0000719#endif
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000720#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
721 if (*cf == '*' && cf[1] == '.') {
722 /* config script interpreter line move top for overwrite previous */
723 cur->next = script_i;
724 script_i = cur;
725 continue;
726 }
727#endif
728#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
729 if (prev == NULL) {
730 /* first line */
731 g_auth = prev = cur;
732 } else {
733 /* sort path, if current length eq or bigger then move up */
734 Htaccess *prev_hti = g_auth;
735 size_t l = strlen(cf);
736 Htaccess *hti;
737
738 for (hti = prev_hti; hti; hti = hti->next) {
739 if (l >= strlen(hti->before_colon)) {
740 /* insert before hti */
741 cur->next = hti;
742 if (prev_hti != hti) {
743 prev_hti->next = cur;
744 } else {
745 /* insert as top */
746 g_auth = cur;
747 }
748 break;
749 }
750 if (prev_hti != hti)
751 prev_hti = prev_hti->next;
752 }
753 if (!hti) { /* not inserted, add to bottom */
754 prev->next = cur;
755 prev = cur;
756 }
757 }
758#endif /* BASIC_AUTH */
759#endif /* BASIC_AUTH || MIME_TYPES || SCRIPT_INTERPR */
760 } /* while (fgets) */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000761 fclose(f);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000762}
763
Denis Vlasenko55a99402006-09-30 20:41:44 +0000764#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000765/*
766 * Given a string, html-encode special characters.
767 * This is used for the -e command line option to provide an easy way
768 * for scripts to encode result data without confusing browsers. The
769 * returned string pointer is memory allocated by malloc().
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000770 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000771 * Returns a pointer to the encoded string (malloced).
772 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000773static char *encodeString(const char *string)
774{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000775 /* take the simple route and encode everything */
776 /* could possibly scan once to get length. */
777 int len = strlen(string);
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000778 char *out = xmalloc(len * 6 + 1);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000779 char *p = out;
780 char ch;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000781
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000782 while ((ch = *string++)) {
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000783 /* very simple check for what to encode */
784 if (isalnum(ch))
785 *p++ = ch;
786 else
787 p += sprintf(p, "&#%d;", (unsigned char) ch);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000788 }
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000789 *p = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000790 return out;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000791}
Denis Vlasenkob3a07152006-11-16 18:04:43 +0000792#endif /* FEATURE_HTTPD_ENCODE_URL_STR */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000793
Denis Vlasenko073214f2007-08-17 19:20:07 +0000794/*
795 * Given a URL encoded string, convert it to plain ascii.
796 * Since decoding always makes strings smaller, the decode is done in-place.
797 * Thus, callers should strdup() the argument if they do not want the
798 * argument modified. The return is the original pointer, allowing this
799 * function to be easily used as arguments to other functions.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000800 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000801 * string The first string to decode.
802 * option_d 1 if called for httpd -d
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000803 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000804 * Returns a pointer to the decoded string (same as input).
805 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000806static unsigned hex_to_bin(unsigned char c)
807{
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000808 unsigned v;
809
810 v = c - '0';
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000811 if (v <= 9)
812 return v;
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000813 /* c | 0x20: letters to lower case, non-letters
814 * to (potentially different) non-letters */
815 v = (unsigned)(c | 0x20) - 'a';
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000816 if (v <= 5)
817 return v + 10;
818 return ~0;
819}
820/* For testing:
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000821void t(char c) { printf("'%c'(%u) %u\n", c, c, hex_to_bin(c)); }
822int main() { t(0x10); t(0x20); t('0'); t('9'); t('A'); t('F'); t('a'); t('f');
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000823t('0'-1); t('9'+1); t('A'-1); t('F'+1); t('a'-1); t('f'+1); return 0; }
824*/
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000825static char *decodeString(char *orig, int option_d)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000826{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000827 /* note that decoded string is always shorter than original */
828 char *string = orig;
829 char *ptr = string;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000830 char c;
Eric Andersena3bb3e62003-06-26 09:05:32 +0000831
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000832 while ((c = *ptr++) != '\0') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000833 unsigned v;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000834
835 if (option_d && c == '+') {
Denis Vlasenko601ae132006-11-28 23:37:46 +0000836 *string++ = ' ';
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000837 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000838 }
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000839 if (c != '%') {
840 *string++ = c;
841 continue;
842 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000843 v = hex_to_bin(ptr[0]);
844 if (v > 15) {
845 bad_hex:
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000846 if (!option_d)
847 return NULL;
848 *string++ = '%';
849 continue;
850 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000851 v = (v * 16) | hex_to_bin(ptr[1]);
852 if (v > 255)
853 goto bad_hex;
854 if (!option_d && (v == '/' || v == '\0')) {
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000855 /* caller takes it as indication of invalid
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000856 * (dangerous wrt exploits) chars */
857 return orig + 1;
858 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000859 *string++ = v;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000860 ptr += 2;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000861 }
862 *string = '\0';
863 return orig;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000864}
865
Denis Vlasenko55a99402006-09-30 20:41:44 +0000866#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000867/*
Denis Vlasenko073214f2007-08-17 19:20:07 +0000868 * Decode a base64 data stream as per rfc1521.
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000869 * Note that the rfc states that non base64 chars are to be ignored.
Denis Vlasenko073214f2007-08-17 19:20:07 +0000870 * Since the decode always results in a shorter size than the input,
871 * it is OK to pass the input arg as an output arg.
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000872 * Parameter: a pointer to a base64 encoded string.
873 * Decoded data is stored in-place.
874 */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000875static void decodeBase64(char *Data)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000876{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000877 const unsigned char *in = (const unsigned char *)Data;
Denis Vlasenko37c33162007-08-19 18:54:22 +0000878 /* The decoded size will be at most 3/4 the size of the encoded */
Denis Vlasenko088b9592007-04-18 21:14:46 +0000879 unsigned ch = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000880 int i = 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000881
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000882 while (*in) {
883 int t = *in++;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000884
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000885 if (t >= '0' && t <= '9')
886 t = t - '0' + 52;
887 else if (t >= 'A' && t <= 'Z')
888 t = t - 'A';
889 else if (t >= 'a' && t <= 'z')
890 t = t - 'a' + 26;
891 else if (t == '+')
892 t = 62;
893 else if (t == '/')
894 t = 63;
895 else if (t == '=')
896 t = 0;
897 else
898 continue;
Glenn L McGrath874e3382003-05-14 12:11:36 +0000899
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000900 ch = (ch << 6) | t;
901 i++;
902 if (i == 4) {
903 *Data++ = (char) (ch >> 16);
904 *Data++ = (char) (ch >> 8);
905 *Data++ = (char) ch;
906 i = 0;
907 }
908 }
Denis Vlasenko088b9592007-04-18 21:14:46 +0000909 *Data = '\0';
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000910}
911#endif
912
Denis Vlasenko073214f2007-08-17 19:20:07 +0000913/*
914 * Create a listen server socket on the designated port.
915 */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000916static int openServer(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000917{
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000918 unsigned n = bb_strtou(bind_addr_or_port, NULL, 10);
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000919 if (!errno && n && n <= 0xffff)
920 n = create_and_bind_stream_or_die(NULL, n);
921 else
922 n = create_and_bind_stream_or_die(bind_addr_or_port, 80);
923 xlisten(n, 9);
924 return n;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000925}
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000926
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000927/*
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000928 * Log the connection closure and exit.
929 */
930static void log_and_exit(void) ATTRIBUTE_NORETURN;
931static void log_and_exit(void)
932{
Denis Vlasenko921799d2007-08-19 19:28:09 +0000933 /* Paranoia. IE said to be buggy. It may send some extra data
934 * or be confused by us just exiting without SHUT_WR. Oh well. */
935 shutdown(1, SHUT_WR);
936 ndelay_on(0);
937 while (read(0, iobuf, IOBUF_SIZE) > 0)
938 continue;
939
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000940 if (verbose > 2)
941 bb_error_msg("closed");
942 _exit(xfunc_error_retval);
943}
944
945/*
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000946 * Create and send HTTP response headers.
947 * The arguments are combined and sent as one write operation. Note that
948 * IE will puke big-time if the headers are not sent in one packet and the
949 * second packet is delayed for any reason.
950 * responseNum - the result code to send.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000951 */
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000952static void send_headers(int responseNum)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000953{
Denis Vlasenko073214f2007-08-17 19:20:07 +0000954 static const char RFC1123FMT[] ALIGN1 = "%a, %d %b %Y %H:%M:%S GMT";
955
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000956 const char *responseString = "";
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000957 const char *infoString = NULL;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000958 const char *mime_type;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000959#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
960 const char *error_page = 0;
961#endif
Denis Vlasenkob64eed62007-01-14 17:06:11 +0000962 unsigned i;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000963 time_t timer = time(0);
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000964 char tmp_str[80];
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000965 int len;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000966
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000967 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
968 if (http_response_type[i] == responseNum) {
969 responseString = http_response[i].name;
970 infoString = http_response[i].info;
971#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
972 error_page = http_error_page[i];
973#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000974 break;
975 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000976 }
977 /* error message is HTML */
978 mime_type = responseNum == HTTP_OK ?
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000979 found_mime_type : "text/html";
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000980
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000981 if (verbose)
Denis Vlasenko241b1562007-08-17 19:18:47 +0000982 bb_error_msg("response:%u", responseNum);
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000983
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000984 /* emit the current date */
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000985 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&timer));
986 len = sprintf(iobuf,
Denis Vlasenko69981422007-01-07 21:25:12 +0000987 "HTTP/1.0 %d %s\r\nContent-type: %s\r\n"
988 "Date: %s\r\nConnection: close\r\n",
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000989 responseNum, responseString, mime_type, tmp_str);
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000990
Denis Vlasenko55a99402006-09-30 20:41:44 +0000991#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000992 if (responseNum == HTTP_UNAUTHORIZED) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000993 len += sprintf(iobuf + len,
Denis Vlasenko8e858e22007-03-07 09:35:43 +0000994 "WWW-Authenticate: Basic realm=\"%s\"\r\n",
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000995 g_realm);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000996 }
Glenn L McGrath3d2405c2003-02-10 22:28:21 +0000997#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000998 if (responseNum == HTTP_MOVED_TEMPORARILY) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000999 len += sprintf(iobuf + len, "Location: %s/%s%s\r\n",
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001000 found_moved_temporarily,
1001 (g_query ? "?" : ""),
1002 (g_query ? g_query : ""));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001003 }
Eric Andersen07f2fea2004-10-08 08:03:29 +00001004
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001005#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
1006 if (error_page && !access(error_page, R_OK)) {
1007 strcat(iobuf, "\r\n");
1008 len += 2;
1009
1010 if (DEBUG)
1011 fprintf(stderr, "headers: '%s'\n", iobuf);
1012 full_write(1, iobuf, len);
1013 if (DEBUG)
1014 fprintf(stderr, "writing error page: '%s'\n", error_page);
1015 return send_file_and_exit(error_page, FALSE);
1016 }
1017#endif
1018
Denis Vlasenkof4310172007-09-21 22:35:18 +00001019 if (file_size != -1) { /* file */
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001020 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&last_mod));
Denis Vlasenkof4310172007-09-21 22:35:18 +00001021#if ENABLE_FEATURE_HTTPD_RANGES
1022 if (responseNum == HTTP_PARTIAL_CONTENT) {
1023 len += sprintf(iobuf + len, "Content-Range: bytes %"OFF_FMT"d-%"OFF_FMT"d/%"OFF_FMT"d\r\n",
1024 range_start,
1025 range_end,
1026 file_size);
1027 file_size = range_end - range_start + 1;
1028 }
1029#endif
1030 len += sprintf(iobuf + len,
1031#if ENABLE_FEATURE_HTTPD_RANGES
1032 "Accept-Ranges: bytes\r\n"
1033#endif
1034 "Last-Modified: %s\r\n%s %"OFF_FMT"d\r\n",
1035 tmp_str,
1036 "Content-length:",
1037 file_size
1038 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001039 }
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001040 iobuf[len++] = '\r';
1041 iobuf[len++] = '\n';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001042 if (infoString) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001043 len += sprintf(iobuf + len,
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001044 "<HTML><HEAD><TITLE>%d %s</TITLE></HEAD>\n"
1045 "<BODY><H1>%d %s</H1>\n%s\n</BODY></HTML>\n",
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001046 responseNum, responseString,
1047 responseNum, responseString, infoString);
1048 }
Denis Vlasenko6c85ddc2006-11-21 00:08:39 +00001049 if (DEBUG)
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001050 fprintf(stderr, "headers: '%s'\n", iobuf);
Denis Vlasenko9611cb12007-08-18 14:18:43 +00001051 if (full_write(1, iobuf, len) != len) {
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001052 if (verbose > 1)
1053 bb_perror_msg("error");
1054 log_and_exit();
1055 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001056}
1057
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001058static void send_headers_and_exit(int responseNum) ATTRIBUTE_NORETURN;
1059static void send_headers_and_exit(int responseNum)
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001060{
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001061 send_headers(responseNum);
1062 log_and_exit();
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001063}
1064
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001065/*
1066 * Read from the socket until '\n' or EOF. '\r' chars are removed.
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001067 * '\n' is replaced with NUL.
1068 * Return number of characters read or 0 if nothing is read
1069 * ('\r' and '\n' are not counted).
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001070 * Data is returned in iobuf.
1071 */
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001072static int get_line(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001073{
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001074 int count = 0;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001075 char c;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001076
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001077 while (1) {
1078 if (hdr_cnt <= 0) {
1079 hdr_cnt = safe_read(0, hdr_buf, sizeof(hdr_buf));
1080 if (hdr_cnt <= 0)
1081 break;
1082 hdr_ptr = hdr_buf;
1083 }
1084 iobuf[count] = c = *hdr_ptr++;
1085 hdr_cnt--;
1086
1087 if (c == '\r')
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001088 continue;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001089 if (c == '\n') {
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001090 iobuf[count] = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001091 return count;
1092 }
Denis Vlasenko921799d2007-08-19 19:28:09 +00001093 if (count < (IOBUF_SIZE - 1)) /* check overflow */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001094 count++;
1095 }
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001096 return count;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001097}
1098
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001099#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001100
1101/* gcc 4.2.1 fares better with NOINLINE */
1102static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len) ATTRIBUTE_NORETURN;
1103static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len)
1104{
1105 enum { FROM_CGI = 1, TO_CGI = 2 }; /* indexes in pfd[] */
1106 struct pollfd pfd[3];
1107 int out_cnt; /* we buffer a bit of initial CGI output */
1108 int count;
1109
1110 /* iobuf is used for CGI -> network data,
1111 * hdr_buf is for network -> CGI data (POSTDATA) */
1112
1113 /* If CGI dies, we still want to correctly finish reading its output
1114 * and send it to the peer. So please no SIGPIPEs! */
1115 signal(SIGPIPE, SIG_IGN);
1116
Denis Vlasenko4a457562007-10-14 02:34:20 +00001117 // We inconsistently handle a case when more POSTDATA from network
1118 // is coming than we expected. We may give *some part* of that
1119 // extra data to CGI.
1120
1121 //if (hdr_cnt > post_len) {
1122 // /* We got more POSTDATA from network than we expected */
1123 // hdr_cnt = post_len;
1124 //}
1125 post_len -= hdr_cnt;
1126 /* post_len - number of POST bytes not yet read from network */
1127
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001128 /* NB: breaking out of this loop jumps to log_and_exit() */
1129 out_cnt = 0;
1130 while (1) {
1131 memset(pfd, 0, sizeof(pfd));
1132
1133 pfd[FROM_CGI].fd = fromCgi_rd;
1134 pfd[FROM_CGI].events = POLLIN;
1135
1136 if (toCgi_wr) {
1137 pfd[TO_CGI].fd = toCgi_wr;
1138 if (hdr_cnt > 0) {
1139 pfd[TO_CGI].events = POLLOUT;
1140 } else if (post_len > 0) {
1141 pfd[0].events = POLLIN;
1142 } else {
1143 /* post_len <= 0 && hdr_cnt <= 0:
1144 * no more POST data to CGI,
1145 * let CGI see EOF on CGI's stdin */
1146 close(toCgi_wr);
1147 toCgi_wr = 0;
1148 }
1149 }
1150
1151 /* Now wait on the set of sockets */
Denis Vlasenko5d61e712007-09-27 10:09:59 +00001152 count = safe_poll(pfd, 3, -1);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001153 if (count <= 0) {
1154#if 0
Denis Vlasenkofb0eba72008-01-02 19:55:04 +00001155 if (safe_waitpid(pid, &status, WNOHANG) <= 0) {
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001156 /* Weird. CGI didn't exit and no fd's
1157 * are ready, yet poll returned?! */
1158 continue;
1159 }
1160 if (DEBUG && WIFEXITED(status))
1161 bb_error_msg("CGI exited, status=%d", WEXITSTATUS(status));
1162 if (DEBUG && WIFSIGNALED(status))
1163 bb_error_msg("CGI killed, signal=%d", WTERMSIG(status));
1164#endif
1165 break;
1166 }
1167
1168 if (pfd[TO_CGI].revents) {
1169 /* hdr_cnt > 0 here due to the way pfd[TO_CGI].events set */
1170 /* Have data from peer and can write to CGI */
1171 count = safe_write(toCgi_wr, hdr_ptr, hdr_cnt);
1172 /* Doesn't happen, we dont use nonblocking IO here
1173 *if (count < 0 && errno == EAGAIN) {
1174 * ...
1175 *} else */
1176 if (count > 0) {
1177 hdr_ptr += count;
1178 hdr_cnt -= count;
1179 } else {
1180 /* EOF/broken pipe to CGI, stop piping POST data */
1181 hdr_cnt = post_len = 0;
1182 }
1183 }
1184
1185 if (pfd[0].revents) {
1186 /* post_len > 0 && hdr_cnt == 0 here */
1187 /* We expect data, prev data portion is eaten by CGI
1188 * and there *is* data to read from the peer
1189 * (POSTDATA) */
1190 //count = post_len > (int)sizeof(hdr_buf) ? (int)sizeof(hdr_buf) : post_len;
1191 //count = safe_read(0, hdr_buf, count);
1192 count = safe_read(0, hdr_buf, sizeof(hdr_buf));
1193 if (count > 0) {
1194 hdr_cnt = count;
1195 hdr_ptr = hdr_buf;
1196 post_len -= count;
1197 } else {
1198 /* no more POST data can be read */
1199 post_len = 0;
1200 }
1201 }
1202
1203 if (pfd[FROM_CGI].revents) {
1204 /* There is something to read from CGI */
1205 char *rbuf = iobuf;
1206
1207 /* Are we still buffering CGI output? */
1208 if (out_cnt >= 0) {
1209 /* HTTP_200[] has single "\r\n" at the end.
1210 * According to http://hoohoo.ncsa.uiuc.edu/cgi/out.html,
1211 * CGI scripts MUST send their own header terminated by
1212 * empty line, then data. That's why we have only one
1213 * <cr><lf> pair here. We will output "200 OK" line
1214 * if needed, but CGI still has to provide blank line
1215 * between header and body */
1216
1217 /* Must use safe_read, not full_read, because
1218 * CGI may output a few first bytes and then wait
1219 * for POSTDATA without closing stdout.
1220 * With full_read we may wait here forever. */
1221 count = safe_read(fromCgi_rd, rbuf + out_cnt, PIPE_BUF - 8);
1222 if (count <= 0) {
1223 /* eof (or error) and there was no "HTTP",
1224 * so write it, then write received data */
1225 if (out_cnt) {
1226 full_write(1, HTTP_200, sizeof(HTTP_200)-1);
1227 full_write(1, rbuf, out_cnt);
1228 }
1229 break; /* CGI stdout is closed, exiting */
1230 }
1231 out_cnt += count;
1232 count = 0;
1233 /* "Status" header format is: "Status: 302 Redirected\r\n" */
1234 if (out_cnt >= 8 && memcmp(rbuf, "Status: ", 8) == 0) {
1235 /* send "HTTP/1.0 " */
1236 if (full_write(1, HTTP_200, 9) != 9)
1237 break;
1238 rbuf += 8; /* skip "Status: " */
1239 count = out_cnt - 8;
1240 out_cnt = -1; /* buffering off */
1241 } else if (out_cnt >= 4) {
1242 /* Did CGI add "HTTP"? */
1243 if (memcmp(rbuf, HTTP_200, 4) != 0) {
1244 /* there is no "HTTP", do it ourself */
1245 if (full_write(1, HTTP_200, sizeof(HTTP_200)-1) != sizeof(HTTP_200)-1)
1246 break;
1247 }
1248 /* Commented out:
1249 if (!strstr(rbuf, "ontent-")) {
1250 full_write(s, "Content-type: text/plain\r\n\r\n", 28);
1251 }
1252 * Counter-example of valid CGI without Content-type:
1253 * echo -en "HTTP/1.0 302 Found\r\n"
1254 * echo -en "Location: http://www.busybox.net\r\n"
1255 * echo -en "\r\n"
1256 */
1257 count = out_cnt;
1258 out_cnt = -1; /* buffering off */
1259 }
1260 } else {
1261 count = safe_read(fromCgi_rd, rbuf, PIPE_BUF);
1262 if (count <= 0)
1263 break; /* eof (or error) */
1264 }
1265 if (full_write(1, rbuf, count) != count)
1266 break;
1267 if (DEBUG)
1268 fprintf(stderr, "cgi read %d bytes: '%.*s'\n", count, count, rbuf);
1269 } /* if (pfd[FROM_CGI].revents) */
1270 } /* while (1) */
1271 log_and_exit();
1272}
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001273#endif
1274
1275#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001276
Denis Vlasenko921799d2007-08-19 19:28:09 +00001277static void setenv1(const char *name, const char *value)
1278{
1279 setenv(name, value ? value : "", 1);
1280}
1281
Denis Vlasenko241b1562007-08-17 19:18:47 +00001282/*
1283 * Spawn CGI script, forward CGI's stdin/out <=> network
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001284 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001285 * Environment variables are set up and the script is invoked with pipes
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001286 * for stdin/stdout. If a POST is being done the script is fed the POST
Denis Vlasenko241b1562007-08-17 19:18:47 +00001287 * data in addition to setting the QUERY_STRING variable (for GETs or POSTs).
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001288 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001289 * Parameters:
1290 * const char *url The requested URL (with leading /).
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001291 * int post_len Length of the POST body.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001292 * const char *cookie For set HTTP_COOKIE.
1293 * const char *content_type For set CONTENT_TYPE.
1294 */
1295static void send_cgi_and_exit(
1296 const char *url,
1297 const char *request,
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001298 int post_len,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001299 const char *cookie,
1300 const char *content_type) ATTRIBUTE_NORETURN;
1301static void send_cgi_and_exit(
1302 const char *url,
1303 const char *request,
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001304 int post_len,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001305 const char *cookie,
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001306 const char *content_type)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001307{
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001308 struct { int rd; int wr; } fromCgi; /* CGI -> httpd pipe */
1309 struct { int rd; int wr; } toCgi; /* httpd -> CGI pipe */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001310 char *fullpath;
1311 char *script;
1312 char *purl;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001313 int pid;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001314
1315 /*
1316 * We are mucking with environment _first_ and then vfork/exec,
1317 * this allows us to use vfork safely. Parent don't care about
1318 * these environment changes anyway.
1319 */
1320
1321 /*
1322 * Find PATH_INFO.
1323 */
1324 purl = xstrdup(url);
1325 script = purl;
1326 while ((script = strchr(script + 1, '/')) != NULL) {
1327 /* have script.cgi/PATH_INFO or dirs/script.cgi[/PATH_INFO] */
1328 struct stat sb;
1329
1330 *script = '\0';
1331 if (!is_directory(purl + 1, 1, &sb)) {
1332 /* not directory, found script.cgi/PATH_INFO */
1333 *script = '/';
1334 break;
1335 }
1336 *script = '/'; /* is directory, find next '/' */
1337 }
1338 setenv1("PATH_INFO", script); /* set /PATH_INFO or "" */
1339 setenv1("REQUEST_METHOD", request);
1340 if (g_query) {
1341 putenv(xasprintf("%s=%s?%s", "REQUEST_URI", purl, g_query));
1342 } else {
1343 setenv1("REQUEST_URI", purl);
1344 }
1345 if (script != NULL)
1346 *script = '\0'; /* cut off /PATH_INFO */
1347
1348 /* SCRIPT_FILENAME required by PHP in CGI mode */
1349 fullpath = concat_path_file(home_httpd, purl);
1350 setenv1("SCRIPT_FILENAME", fullpath);
1351 /* set SCRIPT_NAME as full path: /cgi-bin/dirs/script.cgi */
1352 setenv1("SCRIPT_NAME", purl);
1353 /* http://hoohoo.ncsa.uiuc.edu/cgi/env.html:
1354 * QUERY_STRING: The information which follows the ? in the URL
1355 * which referenced this script. This is the query information.
1356 * It should not be decoded in any fashion. This variable
1357 * should always be set when there is query information,
1358 * regardless of command line decoding. */
1359 /* (Older versions of bbox seem to do some decoding) */
1360 setenv1("QUERY_STRING", g_query);
1361 putenv((char*)"SERVER_SOFTWARE=busybox httpd/"BB_VER);
1362 putenv((char*)"SERVER_PROTOCOL=HTTP/1.0");
1363 putenv((char*)"GATEWAY_INTERFACE=CGI/1.1");
1364 /* Having _separate_ variables for IP and port defeats
1365 * the purpose of having socket abstraction. Which "port"
1366 * are you using on Unix domain socket?
1367 * IOW - REMOTE_PEER="1.2.3.4:56" makes much more sense.
1368 * Oh well... */
1369 {
1370 char *p = rmt_ip_str ? rmt_ip_str : (char*)"";
1371 char *cp = strrchr(p, ':');
1372 if (ENABLE_FEATURE_IPV6 && cp && strchr(cp, ']'))
1373 cp = NULL;
1374 if (cp) *cp = '\0'; /* delete :PORT */
1375 setenv1("REMOTE_ADDR", p);
Denis Vlasenko37c33162007-08-19 18:54:22 +00001376 if (cp) {
1377 *cp = ':';
1378#if ENABLE_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
1379 setenv1("REMOTE_PORT", cp + 1);
1380#endif
1381 }
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001382 }
1383 setenv1("HTTP_USER_AGENT", user_agent);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001384 if (post_len)
1385 putenv(xasprintf("CONTENT_LENGTH=%d", post_len));
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001386 if (cookie)
1387 setenv1("HTTP_COOKIE", cookie);
1388 if (content_type)
1389 setenv1("CONTENT_TYPE", content_type);
1390#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1391 if (remoteuser) {
1392 setenv1("REMOTE_USER", remoteuser);
1393 putenv((char*)"AUTH_TYPE=Basic");
1394 }
1395#endif
1396 if (referer)
1397 setenv1("HTTP_REFERER", referer);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001398
Denis Vlasenko241b1562007-08-17 19:18:47 +00001399 xpipe(&fromCgi.rd);
1400 xpipe(&toCgi.rd);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001401
Denis Vlasenko80281fe2007-03-07 22:16:38 +00001402 pid = vfork();
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001403 if (pid < 0) {
1404 /* TODO: log perror? */
1405 log_and_exit();
1406 }
Denis Vlasenkof7996f32007-01-11 17:20:00 +00001407
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001408 if (!pid) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001409 /* Child process */
Denis Vlasenko241b1562007-08-17 19:18:47 +00001410 xfunc_error_retval = 242;
1411
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001412 xmove_fd(toCgi.rd, 0); /* replace stdin with the pipe */
1413 xmove_fd(fromCgi.wr, 1); /* replace stdout with the pipe */
1414 close(fromCgi.rd);
1415 close(toCgi.wr);
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001416 /* User seeing stderr output can be a security problem.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001417 * If CGI really wants that, it can always do dup itself. */
Denis Vlasenko1ec15cd2007-08-11 20:20:43 +00001418 /* dup2(1, 2); */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001419
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001420 script = strrchr(fullpath, '/');
Denis Vlasenko7dbf1b42008-02-08 15:21:55 +00001421 //fullpath is a result of concat_path_file and always has '/'
1422 //if (!script)
1423 // goto error_execing_cgi;
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001424 *script = '\0';
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001425 /* chdiring to script's dir */
Denis Vlasenkofc213052008-02-11 16:26:22 +00001426 if (chdir(script == fullpath ? "/" : fullpath) == 0) {
1427 char *argv[3];
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001428
Denis Vlasenkofc213052008-02-11 16:26:22 +00001429 *script++ = '/'; /* repair fullpath */
1430 /* set argv[0] to name without path */
1431 argv[0] = script;
1432 argv[1] = NULL;
1433
1434#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
1435 {
1436 char *suffix = strrchr(script, '.');
1437
1438 if (suffix) {
1439 Htaccess *cur;
1440 for (cur = script_i; cur; cur = cur->next) {
1441 if (strcmp(cur->before_colon + 1, suffix) == 0) {
1442 /* found interpreter name */
1443 fullpath = cur->after_colon;
1444 argv[0] = cur->after_colon;
1445 argv[1] = script;
1446 argv[2] = NULL;
1447 break;
1448 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001449 }
1450 }
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001451 }
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001452#endif
Denis Vlasenko7dbf1b42008-02-08 15:21:55 +00001453 execv(fullpath, argv);
1454 if (verbose)
1455 bb_perror_msg("exec %s", fullpath);
1456 } else if (verbose) {
1457 bb_perror_msg("chdir %s", fullpath);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001458 }
Denis Vlasenko7dbf1b42008-02-08 15:21:55 +00001459 //error_execing_cgi:
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001460 /* send to stdout
1461 * (we are CGI here, our stdout is pumped to the net) */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001462 send_headers_and_exit(HTTP_NOT_FOUND);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001463 } /* end child */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001464
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001465 /* Parent process */
1466
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001467 /* Restore variables possibly changed by child */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001468 xfunc_error_retval = 0;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001469
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001470 /* Pump data */
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001471 close(fromCgi.wr);
1472 close(toCgi.rd);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001473 cgi_io_loop_and_exit(fromCgi.rd, toCgi.wr, post_len);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001474}
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001475
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001476#endif /* FEATURE_HTTPD_CGI */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001477
Denis Vlasenko241b1562007-08-17 19:18:47 +00001478/*
1479 * Send a file response to a HTTP request, and exit
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00001480 *
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001481 * Parameters:
1482 * const char *url The requested URL (with leading /).
1483 * headers Don't send headers before if FALSE.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001484 */
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001485static void send_file_and_exit(const char *url, int headers)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001486{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001487 static const char *const suffixTable[] = {
1488 /* Warning: shorter equivalent suffix in one line must be first */
1489 ".htm.html", "text/html",
1490 ".jpg.jpeg", "image/jpeg",
1491 ".gif", "image/gif",
1492 ".png", "image/png",
1493 ".txt.h.c.cc.cpp", "text/plain",
1494 ".css", "text/css",
1495 ".wav", "audio/wav",
1496 ".avi", "video/x-msvideo",
1497 ".qt.mov", "video/quicktime",
1498 ".mpe.mpeg", "video/mpeg",
1499 ".mid.midi", "audio/midi",
1500 ".mp3", "audio/mpeg",
1501#if 0 /* unpopular */
1502 ".au", "audio/basic",
1503 ".pac", "application/x-ns-proxy-autoconfig",
1504 ".vrml.wrl", "model/vrml",
1505#endif
1506 NULL
1507 };
1508
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001509 char *suffix;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001510 int f;
1511 const char *const *table;
1512 const char *try_suffix;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001513 ssize_t count;
1514#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
Denis Vlasenkof4310172007-09-21 22:35:18 +00001515 off_t offset;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001516#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001517
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001518 suffix = strrchr(url, '.');
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001519
Denis Vlasenko073214f2007-08-17 19:20:07 +00001520 /* If not found, set default as "application/octet-stream"; */
1521 found_mime_type = "application/octet-stream";
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001522 if (suffix) {
Denis Vlasenko073214f2007-08-17 19:20:07 +00001523#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
1524 Htaccess *cur;
1525#endif
1526 for (table = suffixTable; *table; table += 2) {
1527 try_suffix = strstr(table[0], suffix);
1528 if (try_suffix) {
1529 try_suffix += strlen(suffix);
1530 if (*try_suffix == '\0' || *try_suffix == '.') {
1531 found_mime_type = table[1];
1532 break;
1533 }
1534 }
1535 }
1536#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001537 for (cur = mime_a; cur; cur = cur->next) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001538 if (strcmp(cur->before_colon, suffix) == 0) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001539 found_mime_type = cur->after_colon;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001540 break;
1541 }
1542 }
Denis Vlasenko073214f2007-08-17 19:20:07 +00001543#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001544 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001545
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001546 if (DEBUG)
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001547 bb_error_msg("sending file '%s' content-type: %s",
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001548 url, found_mime_type);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001549
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001550 f = open(url, O_RDONLY);
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001551 if (f < 0) {
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001552 if (DEBUG)
1553 bb_perror_msg("cannot open '%s'", url);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001554 if (headers)
1555 send_headers_and_exit(HTTP_NOT_FOUND);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001556 }
Denis Vlasenkof4310172007-09-21 22:35:18 +00001557#if ENABLE_FEATURE_HTTPD_RANGES
1558 if (!headers)
1559 range_start = 0; /* err pages and ranges don't mix */
1560 range_len = MAXINT(off_t);
1561 if (range_start) {
1562 if (!range_end) {
1563 range_end = file_size - 1;
1564 }
1565 if (range_end < range_start
1566 || lseek(f, range_start, SEEK_SET) != range_start
1567 ) {
1568 lseek(f, 0, SEEK_SET);
1569 range_start = 0;
1570 } else {
1571 range_len = range_end - range_start + 1;
1572 send_headers(HTTP_PARTIAL_CONTENT);
1573 headers = 0;
1574 }
1575 }
1576#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001577
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001578 if (headers)
1579 send_headers(HTTP_OK);
Denis Vlasenko241b1562007-08-17 19:18:47 +00001580
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001581 /* If you want to know about EPIPE below
1582 * (happens if you abort downloads from local httpd): */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001583 signal(SIGPIPE, SIG_IGN);
Denis Vlasenko241b1562007-08-17 19:18:47 +00001584
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001585#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
Denis Vlasenkof4310172007-09-21 22:35:18 +00001586 offset = range_start;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001587 do {
Denis Vlasenkof4310172007-09-21 22:35:18 +00001588 /* sz is rounded down to 64k */
1589 ssize_t sz = MAXINT(ssize_t) - 0xffff;
1590 USE_FEATURE_HTTPD_RANGES(if (sz > range_len) sz = range_len;)
1591 count = sendfile(1, f, &offset, sz);
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001592 if (count < 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00001593 if (offset == range_start)
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001594 goto fallback;
Denis Vlasenko241b1562007-08-17 19:18:47 +00001595 goto fin;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001596 }
Denis Vlasenkof4310172007-09-21 22:35:18 +00001597 USE_FEATURE_HTTPD_RANGES(range_len -= sz;)
1598 } while (count > 0 && range_len);
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001599 log_and_exit();
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001600
1601 fallback:
1602#endif
Denis Vlasenko921799d2007-08-19 19:28:09 +00001603 while ((count = safe_read(f, iobuf, IOBUF_SIZE)) > 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00001604 ssize_t n;
1605 USE_FEATURE_HTTPD_RANGES(if (count > range_len) count = range_len;)
1606 n = full_write(1, iobuf, count);
Denis Vlasenko241b1562007-08-17 19:18:47 +00001607 if (count != n)
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001608 break;
Denis Vlasenkof4310172007-09-21 22:35:18 +00001609 USE_FEATURE_HTTPD_RANGES(range_len -= count;)
1610 if (!range_len)
1611 break;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001612 }
Denis Vlasenko241b1562007-08-17 19:18:47 +00001613#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
1614 fin:
1615#endif
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001616 if (count < 0 && verbose > 1)
1617 bb_perror_msg("error");
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001618 log_and_exit();
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001619}
1620
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001621static int checkPermIP(void)
1622{
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001623 Htaccess_IP *cur;
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001624
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001625 /* This could stand some work */
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001626 for (cur = ip_a_d; cur; cur = cur->next) {
Denis Vlasenkob64eed62007-01-14 17:06:11 +00001627#if DEBUG
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001628 fprintf(stderr,
1629 "checkPermIP: '%s' ? '%u.%u.%u.%u/%u.%u.%u.%u'\n",
1630 rmt_ip_str,
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00001631 (unsigned char)(cur->ip >> 24),
1632 (unsigned char)(cur->ip >> 16),
1633 (unsigned char)(cur->ip >> 8),
1634 (unsigned char)(cur->ip),
1635 (unsigned char)(cur->mask >> 24),
1636 (unsigned char)(cur->mask >> 16),
1637 (unsigned char)(cur->mask >> 8),
1638 (unsigned char)(cur->mask)
1639 );
Denis Vlasenko3bba5452006-12-30 17:57:03 +00001640#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001641 if ((rmt_ip & cur->mask) == cur->ip)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001642 return cur->allow_deny == 'A'; /* Allow/Deny */
1643 }
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001644
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001645 /* if unconfigured, return 1 - access from all */
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001646 return !flg_deny_all;
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001647}
1648
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001649#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko073214f2007-08-17 19:20:07 +00001650/*
1651 * Check the permission file for access password protected.
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001652 *
Denis Vlasenko073214f2007-08-17 19:20:07 +00001653 * If config file isn't present, everything is allowed.
1654 * Entries are of the form you can see example from header source
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001655 *
Denis Vlasenko073214f2007-08-17 19:20:07 +00001656 * path The file path.
1657 * request User information to validate.
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001658 *
Denis Vlasenko073214f2007-08-17 19:20:07 +00001659 * Returns 1 if request is OK.
1660 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001661static int checkPerm(const char *path, const char *request)
1662{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001663 Htaccess *cur;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001664 const char *p;
1665 const char *p0;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001666
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001667 const char *prev = NULL;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001668
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001669 /* This could stand some work */
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001670 for (cur = g_auth; cur; cur = cur->next) {
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001671 size_t l;
1672
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001673 p0 = cur->before_colon;
1674 if (prev != NULL && strcmp(prev, p0) != 0)
1675 continue; /* find next identical */
1676 p = cur->after_colon;
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001677 if (DEBUG)
1678 fprintf(stderr, "checkPerm: '%s' ? '%s'\n", p0, request);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001679
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001680 l = strlen(p0);
1681 if (strncmp(p0, path, l) == 0
1682 && (l == 1 || path[l] == '/' || path[l] == '\0')
1683 ) {
1684 char *u;
1685 /* path match found. Check request */
1686 /* for check next /path:user:password */
1687 prev = p0;
1688 u = strchr(request, ':');
1689 if (u == NULL) {
1690 /* bad request, ':' required */
1691 break;
1692 }
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001693
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001694 if (ENABLE_FEATURE_HTTPD_AUTH_MD5) {
1695 char *cipher;
1696 char *pp;
Eric Andersen35e643b2003-07-28 07:40:39 +00001697
Denis Vlasenko073214f2007-08-17 19:20:07 +00001698 if (strncmp(p, request, u - request) != 0) {
Denis Vlasenko921799d2007-08-19 19:28:09 +00001699 /* user doesn't match */
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001700 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001701 }
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001702 pp = strchr(p, ':');
Denis Vlasenko921799d2007-08-19 19:28:09 +00001703 if (pp && pp[1] == '$' && pp[2] == '1'
1704 && pp[3] == '$' && pp[4]
1705 ) {
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001706 pp++;
1707 cipher = pw_encrypt(u+1, pp);
1708 if (strcmp(cipher, pp) == 0)
1709 goto set_remoteuser_var; /* Ok */
1710 /* unauthorized */
1711 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001712 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001713 }
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001714
1715 if (strcmp(p, request) == 0) {
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001716 set_remoteuser_var:
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001717 remoteuser = strdup(request);
1718 if (remoteuser)
Denis Vlasenko921799d2007-08-19 19:28:09 +00001719 remoteuser[u - request] = '\0';
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001720 return 1; /* Ok */
1721 }
1722 /* unauthorized */
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001723 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001724 } /* for */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001725
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001726 return prev == NULL;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001727}
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001728#endif /* FEATURE_HTTPD_BASIC_AUTH */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001729
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001730#if ENABLE_FEATURE_HTTPD_PROXY
1731static Htaccess_Proxy *find_proxy_entry(const char *url)
1732{
1733 Htaccess_Proxy *p;
1734 for (p = proxy; p; p = p->next) {
1735 if (strncmp(url, p->url_from, strlen(p->url_from)) == 0)
1736 return p;
1737 }
1738 return NULL;
1739}
1740#endif
1741
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001742/*
1743 * Handle timeouts
1744 */
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001745static void exit_on_signal(int sig) ATTRIBUTE_NORETURN;
1746static void exit_on_signal(int sig)
Eric Andersen07f2fea2004-10-08 08:03:29 +00001747{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001748 send_headers_and_exit(HTTP_REQUEST_TIMEOUT);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001749}
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001750
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001751/*
1752 * Handle an incoming http request and exit.
1753 */
Denis Vlasenko367960b2007-08-18 14:20:21 +00001754static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr) ATTRIBUTE_NORETURN;
1755static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001756{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001757 static const char request_GET[] ALIGN1 = "GET";
1758
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001759 struct stat sb;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001760 char *urlcopy;
1761 char *urlp;
1762 char *tptr;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001763 int ip_allowed;
Denis Vlasenko55a99402006-09-30 20:41:44 +00001764#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko073214f2007-08-17 19:20:07 +00001765 const char *prequest;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001766 char *cookie = NULL;
1767 char *content_type = NULL;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001768 unsigned long length = 0;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001769#elif ENABLE_FEATURE_HTTPD_PROXY
1770#define prequest request_GET
1771 unsigned long length = 0;
1772#endif
1773 char http_major_version;
1774#if ENABLE_FEATURE_HTTPD_PROXY
1775 char http_minor_version;
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001776 char *header_buf = header_buf; /* for gcc */
1777 char *header_ptr = header_ptr;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001778 Htaccess_Proxy *proxy_entry;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001779#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001780 struct sigaction sa;
Denis Vlasenko55a99402006-09-30 20:41:44 +00001781#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001782 int credentials = -1; /* if not required this is Ok */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001783#endif
1784
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001785 /* Allocation of iobuf is postponed until now
1786 * (IOW, server process doesn't need to waste 8k) */
Denis Vlasenko921799d2007-08-19 19:28:09 +00001787 iobuf = xmalloc(IOBUF_SIZE);
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001788
Denis Vlasenko367960b2007-08-18 14:20:21 +00001789 rmt_ip = 0;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001790 if (fromAddr->u.sa.sa_family == AF_INET) {
1791 rmt_ip = ntohl(fromAddr->u.sin.sin_addr.s_addr);
Denis Vlasenko367960b2007-08-18 14:20:21 +00001792 }
Denis Vlasenko35465a32007-09-25 11:58:33 +00001793#if ENABLE_FEATURE_IPV6
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001794 if (fromAddr->u.sa.sa_family == AF_INET6
1795 && fromAddr->u.sin6.sin6_addr.s6_addr32[0] == 0
1796 && fromAddr->u.sin6.sin6_addr.s6_addr32[1] == 0
1797 && ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[2]) == 0xffff)
1798 rmt_ip = ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[3]);
Denis Vlasenko35465a32007-09-25 11:58:33 +00001799#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00001800 if (ENABLE_FEATURE_HTTPD_CGI || DEBUG || verbose) {
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001801 rmt_ip_str = xmalloc_sockaddr2dotted(&fromAddr->u.sa);
Denis Vlasenko367960b2007-08-18 14:20:21 +00001802 }
1803 if (verbose) {
1804 /* this trick makes -v logging much simpler */
1805 applet_name = rmt_ip_str;
1806 if (verbose > 2)
1807 bb_error_msg("connected");
1808 }
1809
Denis Vlasenko073214f2007-08-17 19:20:07 +00001810 /* Install timeout handler */
Denis Vlasenko9611cb12007-08-18 14:18:43 +00001811 memset(&sa, 0, sizeof(sa));
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001812 sa.sa_handler = exit_on_signal;
Denis Vlasenko9611cb12007-08-18 14:18:43 +00001813 /* sigemptyset(&sa.sa_mask); - memset should be enough */
1814 /*sa.sa_flags = 0; - no SA_RESTART */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001815 sigaction(SIGALRM, &sa, NULL);
Denis Vlasenko073214f2007-08-17 19:20:07 +00001816 alarm(HEADER_READ_TIMEOUT);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001817
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001818 if (!get_line()) /* EOF or error or empty line */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001819 send_headers_and_exit(HTTP_BAD_REQUEST);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001820
Denis Vlasenko073214f2007-08-17 19:20:07 +00001821 /* Determine type of request (GET/POST) */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001822 urlp = strpbrk(iobuf, " \t");
1823 if (urlp == NULL)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001824 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001825 *urlp++ = '\0';
Denis Vlasenko55a99402006-09-30 20:41:44 +00001826#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko073214f2007-08-17 19:20:07 +00001827 prequest = request_GET;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001828 if (strcasecmp(iobuf, prequest) != 0) {
1829 prequest = "POST";
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001830 if (strcasecmp(iobuf, prequest) != 0)
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001831 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001832 }
1833#else
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001834 if (strcasecmp(iobuf, request_GET) != 0)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001835 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001836#endif
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001837 urlp = skip_whitespace(urlp);
1838 if (urlp[0] != '/')
1839 send_headers_and_exit(HTTP_BAD_REQUEST);
1840
1841 /* Find end of URL and parse HTTP version, if any */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001842 http_major_version = '0';
1843 USE_FEATURE_HTTPD_PROXY(http_minor_version = '0';)
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001844 tptr = strchrnul(urlp, ' ');
1845 /* Is it " HTTP/"? */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001846 if (tptr[0] && strncmp(tptr + 1, HTTP_200, 5) == 0) {
1847 http_major_version = tptr[6];
1848 USE_FEATURE_HTTPD_PROXY(http_minor_version = tptr[8];)
1849 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001850 *tptr = '\0';
Glenn L McGrath06e95652003-02-09 06:51:14 +00001851
Denis Vlasenko073214f2007-08-17 19:20:07 +00001852 /* Copy URL from after "GET "/"POST " to stack-allocated char[] */
Denis Vlasenkofcd878e2007-12-29 02:16:23 +00001853 urlcopy = alloca((tptr - urlp) + 2 + strlen(index_page));
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001854 /*if (urlcopy == NULL)
1855 * send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);*/
1856 strcpy(urlcopy, urlp);
1857 /* NB: urlcopy ptr is never changed after this */
Denis Vlasenko073214f2007-08-17 19:20:07 +00001858
1859 /* Extract url args if present */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001860 g_query = NULL;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001861 tptr = strchr(urlcopy, '?');
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001862 if (tptr) {
1863 *tptr++ = '\0';
1864 g_query = tptr;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001865 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001866
Denis Vlasenko073214f2007-08-17 19:20:07 +00001867 /* Decode URL escape sequences */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001868 tptr = decodeString(urlcopy, 0);
1869 if (tptr == NULL)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001870 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001871 if (tptr == urlcopy + 1) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001872 /* '/' or NUL is encoded */
1873 send_headers_and_exit(HTTP_NOT_FOUND);
1874 }
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001875
Denis Vlasenko073214f2007-08-17 19:20:07 +00001876 /* Canonicalize path */
1877 /* Algorithm stolen from libbb bb_simplify_path(),
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001878 * but don't strdup and reducing trailing slash and protect out root */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001879 urlp = tptr = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001880 do {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001881 if (*urlp == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001882 /* skip duplicate (or initial) slash */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001883 if (*tptr == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001884 continue;
1885 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001886 if (*tptr == '.') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001887 /* skip extra '.' */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001888 if (tptr[1] == '/' || !tptr[1]) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001889 continue;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001890 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001891 /* '..': be careful */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001892 if (tptr[1] == '.' && (tptr[2] == '/' || !tptr[2])) {
1893 ++tptr;
1894 if (urlp == urlcopy) /* protect root */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001895 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001896 while (*--urlp != '/') /* omit previous dir */;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001897 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001898 }
1899 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001900 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001901 *++urlp = *tptr;
1902 } while (*++tptr);
1903 *++urlp = '\0'; /* so keep last character */
1904 tptr = urlp; /* end ptr */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001905
Denis Vlasenko073214f2007-08-17 19:20:07 +00001906 /* If URL is a directory, add '/' */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001907 if (tptr[-1] != '/') {
1908 if (is_directory(urlcopy + 1, 1, &sb)) {
1909 found_moved_temporarily = urlcopy;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001910 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001911 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001912
Denis Vlasenko073214f2007-08-17 19:20:07 +00001913 /* Log it */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001914 if (verbose > 1)
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001915 bb_error_msg("url:%s", urlcopy);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001916
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001917 tptr = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001918 ip_allowed = checkPermIP();
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001919 while (ip_allowed && (tptr = strchr(tptr + 1, '/')) != NULL) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001920 /* have path1/path2 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001921 *tptr = '\0';
1922 if (is_directory(urlcopy + 1, 1, &sb)) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001923 /* may be having subdir config */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001924 parse_conf(urlcopy + 1, SUBDIR_PARSE);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001925 ip_allowed = checkPermIP();
1926 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001927 *tptr = '/';
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001928 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001929
1930#if ENABLE_FEATURE_HTTPD_PROXY
1931 proxy_entry = find_proxy_entry(urlcopy);
1932 if (proxy_entry)
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001933 header_buf = header_ptr = xmalloc(IOBUF_SIZE);
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001934#endif
1935
1936 if (http_major_version >= '0') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001937 /* Request was with "... HTTP/nXXX", and n >= 0 */
Denis Vlasenko073214f2007-08-17 19:20:07 +00001938
1939 /* Read until blank line for HTTP version specified, else parse immediate */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001940 while (1) {
Denis Vlasenko073214f2007-08-17 19:20:07 +00001941 alarm(HEADER_READ_TIMEOUT);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001942 if (!get_line())
1943 break; /* EOF or error or empty line */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001944 if (DEBUG)
1945 bb_error_msg("header: '%s'", iobuf);
Denis Vlasenko073214f2007-08-17 19:20:07 +00001946
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001947#if ENABLE_FEATURE_HTTPD_PROXY
1948 /* We need 2 more bytes for yet another "\r\n" -
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001949 * see near fdprintf(proxy_fd...) further below */
1950 if (proxy_entry && (header_ptr - header_buf) < IOBUF_SIZE - 2) {
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001951 int len = strlen(iobuf);
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001952 if (len > IOBUF_SIZE - (header_ptr - header_buf) - 4)
1953 len = IOBUF_SIZE - (header_ptr - header_buf) - 4;
1954 memcpy(header_ptr, iobuf, len);
1955 header_ptr += len;
1956 header_ptr[0] = '\r';
1957 header_ptr[1] = '\n';
1958 header_ptr += 2;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001959 }
1960#endif
1961
1962#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
1963 /* Try and do our best to parse more lines */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001964 if ((STRNCASECMP(iobuf, "Content-length:") == 0)) {
1965 /* extra read only for POST */
1966 if (prequest != request_GET) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001967 tptr = iobuf + sizeof("Content-length:") - 1;
1968 if (!tptr[0])
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001969 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001970 errno = 0;
1971 /* not using strtoul: it ignores leading minus! */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001972 length = strtol(tptr, &tptr, 10);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001973 /* length is "ulong", but we need to pass it to int later */
1974 /* so we check for negative or too large values in one go: */
1975 /* (long -> ulong conv caused negatives to be seen as > INT_MAX) */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001976 if (tptr[0] || errno || length > INT_MAX)
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001977 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001978 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001979 }
1980#endif
1981#if ENABLE_FEATURE_HTTPD_CGI
1982 else if (STRNCASECMP(iobuf, "Cookie:") == 0) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001983 cookie = strdup(skip_whitespace(iobuf + sizeof("Cookie:")-1));
1984 } else if (STRNCASECMP(iobuf, "Content-Type:") == 0) {
1985 content_type = strdup(skip_whitespace(iobuf + sizeof("Content-Type:")-1));
1986 } else if (STRNCASECMP(iobuf, "Referer:") == 0) {
1987 referer = strdup(skip_whitespace(iobuf + sizeof("Referer:")-1));
1988 } else if (STRNCASECMP(iobuf, "User-Agent:") == 0) {
1989 user_agent = strdup(skip_whitespace(iobuf + sizeof("User-Agent:")-1));
1990 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001991#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00001992#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001993 if (STRNCASECMP(iobuf, "Authorization:") == 0) {
1994 /* We only allow Basic credentials.
1995 * It shows up as "Authorization: Basic <userid:password>" where
1996 * the userid:password is base64 encoded.
1997 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001998 tptr = skip_whitespace(iobuf + sizeof("Authorization:")-1);
1999 if (STRNCASECMP(tptr, "Basic") != 0)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002000 continue;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002001 tptr += sizeof("Basic")-1;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002002 /* decodeBase64() skips whitespace itself */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002003 decodeBase64(tptr);
2004 credentials = checkPerm(urlcopy, tptr);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002005 }
Denis Vlasenkob3a07152006-11-16 18:04:43 +00002006#endif /* FEATURE_HTTPD_BASIC_AUTH */
Denis Vlasenkof4310172007-09-21 22:35:18 +00002007#if ENABLE_FEATURE_HTTPD_RANGES
2008 if (STRNCASECMP(iobuf, "Range:") == 0) {
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002009 /* We know only bytes=NNN-[MMM] */
Denis Vlasenkof4310172007-09-21 22:35:18 +00002010 char *s = skip_whitespace(iobuf + sizeof("Range:")-1);
2011 if (strncmp(s, "bytes=", 6) == 0) {
2012 s += sizeof("bytes=")-1;
2013 range_start = BB_STRTOOFF(s, &s, 10);
2014 if (s[0] != '-' || range_start < 0) {
2015 range_start = 0;
2016 } else if (s[1]) {
2017 range_end = BB_STRTOOFF(s+1, NULL, 10);
2018 if (errno || range_end < range_start)
2019 range_start = 0;
2020 }
2021 }
2022 }
2023#endif
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002024 } /* while extra header reading */
2025 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002026
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002027 /* We are done reading headers, disable peer timeout */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002028 alarm(0);
2029
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002030 if (strcmp(bb_basename(urlcopy), httpd_conf) == 0 || ip_allowed == 0) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002031 /* protect listing [/path]/httpd_conf or IP deny */
2032 send_headers_and_exit(HTTP_FORBIDDEN);
2033 }
2034
2035#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002036 if (credentials <= 0 && checkPerm(urlcopy, ":") == 0) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002037 send_headers_and_exit(HTTP_UNAUTHORIZED);
2038 }
2039#endif
2040
2041 if (found_moved_temporarily) {
2042 send_headers_and_exit(HTTP_MOVED_TEMPORARILY);
2043 }
2044
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002045#if ENABLE_FEATURE_HTTPD_PROXY
2046 if (proxy_entry != NULL) {
2047 int proxy_fd;
2048 len_and_sockaddr *lsa;
2049
2050 proxy_fd = socket(AF_INET, SOCK_STREAM, 0);
2051 if (proxy_fd < 0)
2052 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2053 lsa = host2sockaddr(proxy_entry->host_port, 80);
2054 if (lsa == NULL)
2055 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002056 if (connect(proxy_fd, &lsa->u.sa, lsa->len) < 0)
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002057 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2058 fdprintf(proxy_fd, "%s %s%s%s%s HTTP/%c.%c\r\n",
2059 prequest, /* GET or POST */
2060 proxy_entry->url_to, /* url part 1 */
2061 urlcopy + strlen(proxy_entry->url_from), /* url part 2 */
2062 (g_query ? "?" : ""), /* "?" (maybe) */
2063 (g_query ? g_query : ""), /* query string (maybe) */
2064 http_major_version, http_minor_version);
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00002065 header_ptr[0] = '\r';
2066 header_ptr[1] = '\n';
2067 header_ptr += 2;
2068 write(proxy_fd, header_buf, header_ptr - header_buf);
2069 free(header_buf); /* on the order of 8k, free it */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002070 /* cgi_io_loop_and_exit needs to have two disctinct fds */
2071 cgi_io_loop_and_exit(proxy_fd, dup(proxy_fd), length);
2072 }
2073#endif
2074
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002075 tptr = urlcopy + 1; /* skip first '/' */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002076
2077#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002078 if (strncmp(tptr, "cgi-bin/", 8) == 0) {
2079 if (tptr[8] == '\0') {
Denis Vlasenko073214f2007-08-17 19:20:07 +00002080 /* protect listing "cgi-bin/" */
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002081 send_headers_and_exit(HTTP_FORBIDDEN);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002082 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002083 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002084 }
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002085#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002086 {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002087 char *suffix = strrchr(tptr, '.');
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002088 if (suffix) {
2089 Htaccess *cur;
2090 for (cur = script_i; cur; cur = cur->next) {
2091 if (strcmp(cur->before_colon + 1, suffix) == 0) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002092 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002093 }
2094 }
2095 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002096 }
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002097#endif
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002098 if (prequest != request_GET) {
2099 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
2100 }
Denis Vlasenko5d148e22006-11-21 00:12:09 +00002101#endif /* FEATURE_HTTPD_CGI */
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00002102
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002103 if (urlp[-1] == '/')
Denis Vlasenkofcd878e2007-12-29 02:16:23 +00002104 strcpy(urlp, index_page);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002105 if (stat(tptr, &sb) == 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00002106 file_size = sb.st_size;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002107 last_mod = sb.st_mtime;
2108 }
Denis Vlasenko5d148e22006-11-21 00:12:09 +00002109#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002110 else if (urlp[-1] == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002111 /* It's a dir URL and there is no index.html
2112 * Try cgi-bin/index.cgi */
2113 if (access("/cgi-bin/index.cgi"+1, X_OK) == 0) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002114 urlp[0] = '\0';
2115 g_query = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002116 send_cgi_and_exit("/cgi-bin/index.cgi", prequest, length, cookie, content_type);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002117 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002118 }
Denis Vlasenko073214f2007-08-17 19:20:07 +00002119#endif
2120 /* else {
2121 * fall through to send_file, it errors out if open fails
2122 * }
2123 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002124
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00002125 send_file_and_exit(tptr, TRUE);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002126}
2127
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002128/*
2129 * The main http server function.
Denis Vlasenko367960b2007-08-18 14:20:21 +00002130 * Given a socket, listen for new connections and farm out
2131 * the processing as a [v]forked process.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002132 * Never returns.
2133 */
Denis Vlasenko367960b2007-08-18 14:20:21 +00002134#if BB_MMU
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002135static void mini_httpd(int server_socket) ATTRIBUTE_NORETURN;
2136static void mini_httpd(int server_socket)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002137{
Denis Vlasenko073214f2007-08-17 19:20:07 +00002138 /* NB: it's best to not use xfuncs in this loop before fork().
2139 * Otherwise server may die on transient errors (temporary
2140 * out-of-memory condition, etc), which is Bad(tm).
2141 * Try to do any dangerous calls after fork.
2142 */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002143 while (1) {
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002144 int n;
2145 len_and_sockaddr fromAddr;
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00002146
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002147 /* Wait for connections... */
2148 fromAddr.len = LSA_SIZEOF_SA;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002149 n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002150
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002151 if (n < 0)
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00002152 continue;
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002153 /* set the KEEPALIVE option to cull dead connections */
2154 setsockopt(n, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002155
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002156 if (fork() == 0) {
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002157 /* child */
Denis Vlasenko55a99402006-09-30 20:41:44 +00002158#if ENABLE_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002159 /* Do not reload config on HUP */
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00002160 signal(SIGHUP, SIG_IGN);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00002161#endif
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002162 close(server_socket);
2163 xmove_fd(n, 0);
2164 xdup2(0, 1);
2165
Denis Vlasenko367960b2007-08-18 14:20:21 +00002166 handle_incoming_and_exit(&fromAddr);
2167 }
2168 /* parent, or fork failed */
2169 close(n);
2170 } /* while (1) */
2171 /* never reached */
2172}
2173#else
2174static void mini_httpd_nommu(int server_socket, int argc, char **argv) ATTRIBUTE_NORETURN;
2175static void mini_httpd_nommu(int server_socket, int argc, char **argv)
2176{
2177 char *argv_copy[argc + 2];
2178
2179 argv_copy[0] = argv[0];
2180 argv_copy[1] = (char*)"-i";
2181 memcpy(&argv_copy[2], &argv[1], argc * sizeof(argv[0]));
2182
2183 /* NB: it's best to not use xfuncs in this loop before vfork().
2184 * Otherwise server may die on transient errors (temporary
2185 * out-of-memory condition, etc), which is Bad(tm).
2186 * Try to do any dangerous calls after fork.
2187 */
2188 while (1) {
2189 int n;
2190 len_and_sockaddr fromAddr;
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00002191
Denis Vlasenko367960b2007-08-18 14:20:21 +00002192 /* Wait for connections... */
2193 fromAddr.len = LSA_SIZEOF_SA;
2194 n = accept(server_socket, &fromAddr.sa, &fromAddr.len);
2195
2196 if (n < 0)
2197 continue;
2198 /* set the KEEPALIVE option to cull dead connections */
2199 setsockopt(n, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
2200
2201 if (vfork() == 0) {
2202 /* child */
2203#if ENABLE_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
2204 /* Do not reload config on HUP */
2205 signal(SIGHUP, SIG_IGN);
2206#endif
2207 close(server_socket);
2208 xmove_fd(n, 0);
2209 xdup2(0, 1);
2210
2211 /* Run a copy of ourself in inetd mode */
2212 re_exec(argv_copy);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002213 }
Denis Vlasenko921799d2007-08-19 19:28:09 +00002214 /* parent, or vfork failed */
Denis Vlasenko073214f2007-08-17 19:20:07 +00002215 close(n);
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002216 } /* while (1) */
Denis Vlasenko241b1562007-08-17 19:18:47 +00002217 /* never reached */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002218}
Denis Vlasenko56258b62007-06-23 23:14:02 +00002219#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002220
Denis Vlasenko367960b2007-08-18 14:20:21 +00002221/*
2222 * Process a HTTP connection on stdin/out.
2223 * Never returns.
2224 */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002225static void mini_httpd_inetd(void) ATTRIBUTE_NORETURN;
2226static void mini_httpd_inetd(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002227{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002228 len_and_sockaddr fromAddr;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002229
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002230 fromAddr.len = LSA_SIZEOF_SA;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002231 getpeername(0, &fromAddr.u.sa, &fromAddr.len);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002232 handle_incoming_and_exit(&fromAddr);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002233}
Glenn L McGrath06e95652003-02-09 06:51:14 +00002234
Denis Vlasenko55a99402006-09-30 20:41:44 +00002235#if ENABLE_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
Glenn L McGrath06e95652003-02-09 06:51:14 +00002236static void sighup_handler(int sig)
2237{
Glenn L McGrath06e95652003-02-09 06:51:14 +00002238 struct sigaction sa;
2239
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002240 parse_conf(default_path_httpd_conf, sig == SIGHUP ? SIGNALED_PARSE : FIRST_PARSE);
Denis Vlasenko073214f2007-08-17 19:20:07 +00002241
2242 memset(&sa, 0, sizeof(sa));
Glenn L McGrath06e95652003-02-09 06:51:14 +00002243 sa.sa_handler = sighup_handler;
Denis Vlasenko073214f2007-08-17 19:20:07 +00002244 /*sigemptyset(&sa.sa_mask); - memset should be enough */
Glenn L McGrath06e95652003-02-09 06:51:14 +00002245 sa.sa_flags = SA_RESTART;
2246 sigaction(SIGHUP, &sa, NULL);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002247}
2248#endif
2249
Denis Vlasenko9f609292006-11-05 19:47:33 +00002250enum {
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002251 c_opt_config_file = 0,
2252 d_opt_decode_url,
2253 h_opt_home_httpd,
2254 USE_FEATURE_HTTPD_ENCODE_URL_STR(e_opt_encode_url,)
Denis Vlasenko9f609292006-11-05 19:47:33 +00002255 USE_FEATURE_HTTPD_BASIC_AUTH( r_opt_realm ,)
2256 USE_FEATURE_HTTPD_AUTH_MD5( m_opt_md5 ,)
2257 USE_FEATURE_HTTPD_SETUID( u_opt_setuid ,)
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002258 p_opt_port ,
2259 p_opt_inetd ,
2260 p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002261 p_opt_verbose ,
Denis Vlasenko9f609292006-11-05 19:47:33 +00002262 OPT_CONFIG_FILE = 1 << c_opt_config_file,
2263 OPT_DECODE_URL = 1 << d_opt_decode_url,
2264 OPT_HOME_HTTPD = 1 << h_opt_home_httpd,
2265 OPT_ENCODE_URL = USE_FEATURE_HTTPD_ENCODE_URL_STR((1 << e_opt_encode_url)) + 0,
2266 OPT_REALM = USE_FEATURE_HTTPD_BASIC_AUTH( (1 << r_opt_realm )) + 0,
2267 OPT_MD5 = USE_FEATURE_HTTPD_AUTH_MD5( (1 << m_opt_md5 )) + 0,
2268 OPT_SETUID = USE_FEATURE_HTTPD_SETUID( (1 << u_opt_setuid )) + 0,
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002269 OPT_PORT = 1 << p_opt_port,
2270 OPT_INETD = 1 << p_opt_inetd,
2271 OPT_FOREGROUND = 1 << p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002272 OPT_VERBOSE = 1 << p_opt_verbose,
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002273};
Eric Andersena3bb3e62003-06-26 09:05:32 +00002274
Eric Andersena3bb3e62003-06-26 09:05:32 +00002275
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00002276int httpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Bernhard Reutner-Fischerfebe3c42007-04-04 20:52:03 +00002277int httpd_main(int argc, char **argv)
Glenn L McGrath06e95652003-02-09 06:51:14 +00002278{
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002279 int server_socket = server_socket; /* for gcc */
Denis Vlasenko67b23e62006-10-03 21:00:06 +00002280 unsigned opt;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002281 char *url_for_decode;
2282 USE_FEATURE_HTTPD_ENCODE_URL_STR(const char *url_for_encode;)
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002283 USE_FEATURE_HTTPD_SETUID(const char *s_ugid = NULL;)
2284 USE_FEATURE_HTTPD_SETUID(struct bb_uidgid_t ugid;)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002285 USE_FEATURE_HTTPD_AUTH_MD5(const char *pass;)
Eric Andersen35e643b2003-07-28 07:40:39 +00002286
Denis Vlasenko073214f2007-08-17 19:20:07 +00002287 INIT_G();
2288
Denis Vlasenkofcdb00f2006-11-21 00:09:37 +00002289#if ENABLE_LOCALE_SUPPORT
2290 /* Undo busybox.c: we want to speak English in http (dates etc) */
2291 setlocale(LC_TIME, "C");
2292#endif
2293
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002294 home_httpd = xrealloc_getcwd_or_warn(NULL);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002295 /* -v counts, -i implies -f */
2296 opt_complementary = "vv:if";
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002297 /* We do not "absolutize" path given by -h (home) opt.
2298 * If user gives relative path in -h, $SCRIPT_FILENAME can end up
2299 * relative too. */
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00002300 opt = getopt32(argv, "c:d:h:"
Denis Vlasenko53091ec2007-03-26 13:35:09 +00002301 USE_FEATURE_HTTPD_ENCODE_URL_STR("e:")
2302 USE_FEATURE_HTTPD_BASIC_AUTH("r:")
2303 USE_FEATURE_HTTPD_AUTH_MD5("m:")
2304 USE_FEATURE_HTTPD_SETUID("u:")
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002305 "p:ifv",
2306 &configFile, &url_for_decode, &home_httpd
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002307 USE_FEATURE_HTTPD_ENCODE_URL_STR(, &url_for_encode)
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002308 USE_FEATURE_HTTPD_BASIC_AUTH(, &g_realm)
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002309 USE_FEATURE_HTTPD_AUTH_MD5(, &pass)
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002310 USE_FEATURE_HTTPD_SETUID(, &s_ugid)
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002311 , &bind_addr_or_port
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002312 , &verbose
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002313 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002314 if (opt & OPT_DECODE_URL) {
Denis Vlasenko367960b2007-08-18 14:20:21 +00002315 fputs(decodeString(url_for_decode, 1), stdout);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002316 return 0;
2317 }
Denis Vlasenko55a99402006-09-30 20:41:44 +00002318#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002319 if (opt & OPT_ENCODE_URL) {
Denis Vlasenko367960b2007-08-18 14:20:21 +00002320 fputs(encodeString(url_for_encode), stdout);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002321 return 0;
2322 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002323#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002324#if ENABLE_FEATURE_HTTPD_AUTH_MD5
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002325 if (opt & OPT_MD5) {
Denis Vlasenko55a99402006-09-30 20:41:44 +00002326 puts(pw_encrypt(pass, "$1$"));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002327 return 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002328 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002329#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002330#if ENABLE_FEATURE_HTTPD_SETUID
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002331 if (opt & OPT_SETUID) {
Denis Vlasenko3bba5452006-12-30 17:57:03 +00002332 if (!get_uidgid(&ugid, s_ugid, 1))
2333 bb_error_msg_and_die("unrecognized user[:group] "
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002334 "name '%s'", s_ugid);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002335 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002336#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002337
Denis Vlasenko367960b2007-08-18 14:20:21 +00002338#if !BB_MMU
2339 if (!(opt & OPT_FOREGROUND)) {
2340 bb_daemonize_or_rexec(0, argv); /* don't change current directory */
2341 }
2342#endif
2343
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002344 xchdir(home_httpd);
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002345 if (!(opt & OPT_INETD)) {
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00002346 signal(SIGCHLD, SIG_IGN);
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002347 server_socket = openServer();
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002348#if ENABLE_FEATURE_HTTPD_SETUID
2349 /* drop privileges */
2350 if (opt & OPT_SETUID) {
2351 if (ugid.gid != (gid_t)-1) {
2352 if (setgroups(1, &ugid.gid) == -1)
Denis Vlasenko8e858e22007-03-07 09:35:43 +00002353 bb_perror_msg_and_die("setgroups");
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002354 xsetgid(ugid.gid);
2355 }
2356 xsetuid(ugid.uid);
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002357 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002358#endif
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002359 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002360
Denis Vlasenko2535f122007-09-15 13:28:30 +00002361#if 0 /*was #if ENABLE_FEATURE_HTTPD_CGI*/
2362 /* User can do it himself: 'env - PATH="$PATH" httpd'
2363 * We don't do it because we don't want to screw users
2364 * which want to do
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002365 * 'env - VAR1=val1 VAR2=val2 httpd'
Denis Vlasenko2535f122007-09-15 13:28:30 +00002366 * and have VAR1 and VAR2 values visible in their CGIs.
2367 * Besides, it is also smaller. */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002368 {
2369 char *p = getenv("PATH");
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002370 /* env strings themself are not freed, no need to strdup(p): */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002371 clearenv();
2372 if (p)
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002373 putenv(p - 5);
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002374// if (!(opt & OPT_INETD))
2375// setenv_long("SERVER_PORT", ???);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002376 }
Glenn L McGrathfe538ba2003-09-10 23:35:45 +00002377#endif
2378
Denis Vlasenko55a99402006-09-30 20:41:44 +00002379#if ENABLE_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
Denis Vlasenko367960b2007-08-18 14:20:21 +00002380 if (!(opt & OPT_INETD))
2381 sighup_handler(0);
2382 else /* do not install HUP handler in inetd mode */
Glenn L McGrath06e95652003-02-09 06:51:14 +00002383#endif
Denis Vlasenkofcd878e2007-12-29 02:16:23 +00002384 index_page = "index.html";
Denis Vlasenko367960b2007-08-18 14:20:21 +00002385 parse_conf(default_path_httpd_conf, FIRST_PARSE);
2386
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00002387 xfunc_error_retval = 0;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002388 if (opt & OPT_INETD)
2389 mini_httpd_inetd();
Denis Vlasenko367960b2007-08-18 14:20:21 +00002390#if BB_MMU
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002391 if (!(opt & OPT_FOREGROUND))
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002392 bb_daemonize(0); /* don't change current directory */
2393 mini_httpd(server_socket); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002394#else
Denis Vlasenko367960b2007-08-18 14:20:21 +00002395 mini_httpd_nommu(server_socket, argc, argv); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002396#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00002397 /* return 0; */
Glenn L McGrath06e95652003-02-09 06:51:14 +00002398}