blob: c8fbefd5a3da72de9ff1cbf09ea99aefe700b82e [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
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000046 * /cgi-bin:foo:bar # Require user foo, pwd bar on urls starting with /cgi-bin/
47 * /adm:admin:setup # Require user admin, pwd setup on urls starting with /adm/
48 * /adm:toor:PaSsWd # or user toor, pwd PaSsWd on urls starting with /adm/
49 * .au:audio/basic # additional mime type for audio.au files
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +000050 * *.php:/path/php # running cgi.php scripts through an interpreter
Eric Andersenc7bda1c2004-03-15 08:29:22 +000051 *
Eric Andersenaff114c2004-04-14 17:51:38 +000052 * A/D may be as a/d or allow/deny - first char case insensitive
Glenn L McGrath393183d2003-05-26 14:07:50 +000053 * Deny IP rules take precedence over allow rules.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000054 *
55 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000056 * The Deny/Allow IP logic:
Eric Andersenc7bda1c2004-03-15 08:29:22 +000057 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000058 * - Default is to allow all. No addresses are denied unless
Eric Andersen97a1de12004-08-26 22:22:50 +000059 * denied with a D: rule.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000060 * - Order of Deny/Allow rules is significant
61 * - Deny rules take precedence over allow rules.
62 * - If a deny all rule (D:*) is used it acts as a catch-all for unmatched
Eric Andersen97a1de12004-08-26 22:22:50 +000063 * addresses.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000064 * - Specification of Allow all (A:*) is a no-op
Eric Andersenc7bda1c2004-03-15 08:29:22 +000065 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000066 * Example:
67 * 1. Allow only specified addresses
Glenn L McGrathb65422c2003-09-08 10:59:27 +000068 * A:172.20 # Allow any address that begins with 172.20.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000069 * A:10.10. # Allow any address that begins with 10.10.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000070 * A:127.0.0.1 # Allow local loopback connections
71 * D:* # Deny from other IP connections
Eric Andersenc7bda1c2004-03-15 08:29:22 +000072 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000073 * 2. Only deny specified addresses
74 * D:1.2.3. # deny from 1.2.3.0 - 1.2.3.255
75 * D:2.3.4. # deny from 2.3.4.0 - 2.3.4.255
76 * A:* # (optional line added for clarity)
Eric Andersenc7bda1c2004-03-15 08:29:22 +000077 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000078 * If a sub directory contains a config file it is parsed and merged with
Glenn L McGrathb65422c2003-09-08 10:59:27 +000079 * any existing settings as if it was appended to the original configuration.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000080 *
81 * subdir paths are relative to the containing subdir and thus cannot
82 * affect the parent rules.
83 *
84 * Note that since the sub dir is parsed in the forked thread servicing the
85 * subdir http request, any merge is discarded when the process exits. As a
86 * result, the subdir settings only have a lifetime of a single request.
87 *
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +000088 * Custom error pages can contain an absolute path or be relative to
89 * 'home_httpd'. Error pages are to be static files (no CGI or script). Error
90 * page can only be defined in the root configuration file and are not taken
91 * into account in local (directories) config files.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000092 *
93 * If -c is not set, an attempt will be made to open the default
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000094 * root configuration file. If -c is set and the file is not found, the
95 * server exits with an error.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000096 *
Denis Vlasenko073214f2007-08-17 19:20:07 +000097 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +000098
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000099#include "libbb.h"
Denis Vlasenko1b9064d2007-08-12 21:05:49 +0000100#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
101#include <sys/sendfile.h>
102#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000103
Denis Vlasenko073214f2007-08-17 19:20:07 +0000104//#define DEBUG 1
105#define DEBUG 0
106
Denis Vlasenko32a471e2007-09-23 13:56:57 +0000107#define IOBUF_SIZE 8192 /* IO buffer */
108
Denis Vlasenko69981422007-01-07 21:25:12 +0000109/* amount of buffering in a pipe */
110#ifndef PIPE_BUF
111# define PIPE_BUF 4096
112#endif
Denis Vlasenko32a471e2007-09-23 13:56:57 +0000113#if PIPE_BUF >= IOBUF_SIZE
114# error "PIPE_BUF >= IOBUF_SIZE"
115#endif
Denis Vlasenko073214f2007-08-17 19:20:07 +0000116
117#define HEADER_READ_TIMEOUT 60
118
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000119static const char default_path_httpd_conf[] ALIGN1 = "/etc";
120static const char httpd_conf[] ALIGN1 = "httpd.conf";
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000121static const char HTTP_200[] ALIGN1 = "HTTP/1.0 200 OK\r\n";
Glenn L McGrath06e95652003-02-09 06:51:14 +0000122
Denis Vlasenko073214f2007-08-17 19:20:07 +0000123typedef struct has_next_ptr {
124 struct has_next_ptr *next;
125} has_next_ptr;
Eric Andersen07f2fea2004-10-08 08:03:29 +0000126
Denis Vlasenko073214f2007-08-17 19:20:07 +0000127/* Must have "next" as a first member */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000128typedef struct Htaccess {
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000129 struct Htaccess *next;
Denis Vlasenko073214f2007-08-17 19:20:07 +0000130 char *after_colon;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000131 char before_colon[1]; /* really bigger, must be last */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000132} Htaccess;
133
Denis Vlasenko073214f2007-08-17 19:20:07 +0000134/* Must have "next" as a first member */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000135typedef struct Htaccess_IP {
Denis Vlasenko073214f2007-08-17 19:20:07 +0000136 struct Htaccess_IP *next;
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000137 unsigned ip;
138 unsigned mask;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000139 int allow_deny;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000140} Htaccess_IP;
141
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000142enum {
143 HTTP_OK = 200,
Denis Vlasenkof4310172007-09-21 22:35:18 +0000144 HTTP_PARTIAL_CONTENT = 206,
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000145 HTTP_MOVED_TEMPORARILY = 302,
146 HTTP_BAD_REQUEST = 400, /* malformed syntax */
147 HTTP_UNAUTHORIZED = 401, /* authentication needed, respond with auth hdr */
148 HTTP_NOT_FOUND = 404,
149 HTTP_FORBIDDEN = 403,
150 HTTP_REQUEST_TIMEOUT = 408,
151 HTTP_NOT_IMPLEMENTED = 501, /* used for unrecognized requests */
152 HTTP_INTERNAL_SERVER_ERROR = 500,
153 HTTP_CONTINUE = 100,
154#if 0 /* future use */
155 HTTP_SWITCHING_PROTOCOLS = 101,
156 HTTP_CREATED = 201,
157 HTTP_ACCEPTED = 202,
158 HTTP_NON_AUTHORITATIVE_INFO = 203,
159 HTTP_NO_CONTENT = 204,
160 HTTP_MULTIPLE_CHOICES = 300,
161 HTTP_MOVED_PERMANENTLY = 301,
162 HTTP_NOT_MODIFIED = 304,
163 HTTP_PAYMENT_REQUIRED = 402,
164 HTTP_BAD_GATEWAY = 502,
165 HTTP_SERVICE_UNAVAILABLE = 503, /* overload, maintenance */
166 HTTP_RESPONSE_SETSIZE = 0xffffffff
167#endif
168};
169
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000170static const uint16_t http_response_type[] ALIGN2 = {
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000171 HTTP_OK,
Denis Vlasenkof4310172007-09-21 22:35:18 +0000172#if ENABLE_FEATURE_HTTPD_RANGES
173 HTTP_PARTIAL_CONTENT,
174#endif
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000175 HTTP_MOVED_TEMPORARILY,
176 HTTP_REQUEST_TIMEOUT,
177 HTTP_NOT_IMPLEMENTED,
178#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
179 HTTP_UNAUTHORIZED,
180#endif
181 HTTP_NOT_FOUND,
182 HTTP_BAD_REQUEST,
183 HTTP_FORBIDDEN,
184 HTTP_INTERNAL_SERVER_ERROR,
185#if 0 /* not implemented */
186 HTTP_CREATED,
187 HTTP_ACCEPTED,
188 HTTP_NO_CONTENT,
189 HTTP_MULTIPLE_CHOICES,
190 HTTP_MOVED_PERMANENTLY,
191 HTTP_NOT_MODIFIED,
192 HTTP_BAD_GATEWAY,
193 HTTP_SERVICE_UNAVAILABLE,
194#endif
195};
196
197static const struct {
198 const char *name;
199 const char *info;
200} http_response[ARRAY_SIZE(http_response_type)] = {
201 { "OK", NULL },
Denis Vlasenkof4310172007-09-21 22:35:18 +0000202#if ENABLE_FEATURE_HTTPD_RANGES
203 { "Partial Content", NULL },
204#endif
205 { "Found", NULL },
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000206 { "Request Timeout", "No request appeared within 60 seconds" },
207 { "Not Implemented", "The requested method is not recognized" },
208#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
209 { "Unauthorized", "" },
210#endif
211 { "Not Found", "The requested URL was not found" },
212 { "Bad Request", "Unsupported method" },
213 { "Forbidden", "" },
214 { "Internal Server Error", "Internal Server Error" },
215#if 0 /* not implemented */
216 { "Created" },
217 { "Accepted" },
218 { "No Content" },
219 { "Multiple Choices" },
220 { "Moved Permanently" },
221 { "Not Modified" },
222 { "Bad Gateway", "" },
223 { "Service Unavailable", "" },
224#endif
225};
226
Denis Vlasenkof4310172007-09-21 22:35:18 +0000227
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000228struct globals {
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000229 int verbose; /* must be int (used by getopt32) */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000230 smallint flg_deny_all;
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000231
Denis Vlasenko37c33162007-08-19 18:54:22 +0000232 unsigned rmt_ip; /* used for IP-based allow/deny rules */
233 time_t last_mod;
Denis Vlasenko37c33162007-08-19 18:54:22 +0000234 char *rmt_ip_str; /* for $REMOTE_ADDR and $REMOTE_PORT */
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000235 const char *bind_addr_or_port;
236
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000237 const char *g_query;
238 const char *configFile;
239 const char *home_httpd;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000240
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000241 const char *found_mime_type;
242 const char *found_moved_temporarily;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000243 Htaccess_IP *ip_a_d; /* config allow/deny lines */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000244
245 USE_FEATURE_HTTPD_BASIC_AUTH(const char *g_realm;)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000246 USE_FEATURE_HTTPD_BASIC_AUTH(char *remoteuser;)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000247 USE_FEATURE_HTTPD_CGI(char *referer;)
Denis Vlasenko6cd84da2007-07-21 14:57:54 +0000248 USE_FEATURE_HTTPD_CGI(char *user_agent;)
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +0000249
Denis Vlasenkof4310172007-09-21 22:35:18 +0000250 off_t file_size; /* -1 - unknown */
251#if ENABLE_FEATURE_HTTPD_RANGES
252 off_t range_start;
253 off_t range_end;
254 off_t range_len;
255#endif
256
Denis Vlasenko55a99402006-09-30 20:41:44 +0000257#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000258 Htaccess *g_auth; /* config user:password lines */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000259#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000260#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000261 Htaccess *mime_a; /* config mime types */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000262#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000263#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000264 Htaccess *script_i; /* config script interpreters */
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000265#endif
Denis Vlasenko921799d2007-08-19 19:28:09 +0000266 char *iobuf; /* [IOBUF_SIZE] */
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000267#define hdr_buf bb_common_bufsiz1
268 char *hdr_ptr;
269 int hdr_cnt;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000270#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
271 const char *http_error_page[ARRAY_SIZE(http_response_type)];
272#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000273};
274#define G (*ptr_to_globals)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000275#define verbose (G.verbose )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000276#define flg_deny_all (G.flg_deny_all )
277#define rmt_ip (G.rmt_ip )
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000278#define bind_addr_or_port (G.bind_addr_or_port)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000279#define g_query (G.g_query )
280#define configFile (G.configFile )
281#define home_httpd (G.home_httpd )
282#define found_mime_type (G.found_mime_type )
283#define found_moved_temporarily (G.found_moved_temporarily)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000284#define last_mod (G.last_mod )
285#define ip_a_d (G.ip_a_d )
286#define g_realm (G.g_realm )
287#define remoteuser (G.remoteuser )
288#define referer (G.referer )
289#define user_agent (G.user_agent )
Denis Vlasenkof4310172007-09-21 22:35:18 +0000290#define file_size (G.file_size )
291#if ENABLE_FEATURE_HTTPD_RANGES
292#define range_start (G.range_start )
293#define range_end (G.range_end )
294#define range_len (G.range_len )
295#endif
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000296#define rmt_ip_str (G.rmt_ip_str )
297#define g_auth (G.g_auth )
298#define mime_a (G.mime_a )
299#define script_i (G.script_i )
300#define iobuf (G.iobuf )
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000301#define hdr_ptr (G.hdr_ptr )
302#define hdr_cnt (G.hdr_cnt )
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000303#define http_error_page (G.http_error_page )
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000304#define INIT_G() do { \
305 PTR_TO_GLOBALS = xzalloc(sizeof(G)); \
306 USE_FEATURE_HTTPD_BASIC_AUTH(g_realm = "Web Server Authentication";) \
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000307 bind_addr_or_port = "80"; \
Denis Vlasenkof4310172007-09-21 22:35:18 +0000308 file_size = -1; \
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000309} while (0)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000310
Denis Vlasenkof4310172007-09-21 22:35:18 +0000311#if !ENABLE_FEATURE_HTTPD_RANGES
312enum {
313 range_start = 0,
314 range_end = MAXINT(off_t) - 1,
315 range_len = MAXINT(off_t),
316};
317#endif
318
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000319
Denis Vlasenko0bb993f2006-11-21 00:06:28 +0000320#define STRNCASECMP(a, str) strncasecmp((a), (str), sizeof(str)-1)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000321
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000322/* Prototypes */
323static void send_file_and_exit(const char *url, int headers) ATTRIBUTE_NORETURN;
324
Denis Vlasenko073214f2007-08-17 19:20:07 +0000325static void free_llist(has_next_ptr **pptr)
326{
327 has_next_ptr *cur = *pptr;
328 while (cur) {
329 has_next_ptr *t = cur;
330 cur = cur->next;
331 free(t);
332 }
333 *pptr = NULL;
334}
335
336#if ENABLE_FEATURE_HTTPD_BASIC_AUTH \
337 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES \
338 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
339static ALWAYS_INLINE void free_Htaccess_list(Htaccess **pptr)
340{
341 free_llist((has_next_ptr**)pptr);
342}
343#endif
344
345static ALWAYS_INLINE void free_Htaccess_IP_list(Htaccess_IP **pptr)
346{
347 free_llist((has_next_ptr**)pptr);
348}
Glenn L McGrath06e95652003-02-09 06:51:14 +0000349
Denis Vlasenkod867f322007-08-19 21:15:42 +0000350/* Returns presumed mask width in bits or < 0 on error.
351 * Updates strp, stores IP at provided pointer */
352static int scan_ip(const char **strp, unsigned *ipp, unsigned char endc)
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000353{
Denis Vlasenkod867f322007-08-19 21:15:42 +0000354 const char *p = *strp;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000355 int auto_mask = 8;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000356 unsigned ip = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000357 int j;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000358
Denis Vlasenkod867f322007-08-19 21:15:42 +0000359 if (*p == '/')
360 return -auto_mask;
361
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000362 for (j = 0; j < 4; j++) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000363 unsigned octet;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000364
Denis Vlasenkod867f322007-08-19 21:15:42 +0000365 if ((*p < '0' || *p > '9') && *p != '/' && *p)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000366 return -auto_mask;
367 octet = 0;
368 while (*p >= '0' && *p <= '9') {
369 octet *= 10;
370 octet += *p - '0';
371 if (octet > 255)
372 return -auto_mask;
373 p++;
374 }
375 if (*p == '.')
376 p++;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000377 if (*p != '/' && *p)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000378 auto_mask += 8;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000379 ip = (ip << 8) | octet;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000380 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000381 if (*p) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000382 if (*p != endc)
383 return -auto_mask;
384 p++;
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000385 if (*p == '\0')
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000386 return -auto_mask;
387 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000388 *ipp = ip;
389 *strp = p;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000390 return auto_mask;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000391}
392
Denis Vlasenkod867f322007-08-19 21:15:42 +0000393/* Returns 0 on success. Stores IP and mask at provided pointers */
394static int scan_ip_mask(const char *str, unsigned *ipp, unsigned *maskp)
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000395{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000396 int i;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000397 unsigned mask;
398 char *p;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000399
Denis Vlasenkod867f322007-08-19 21:15:42 +0000400 i = scan_ip(&str, ipp, '/');
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000401 if (i < 0)
402 return i;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000403
Denis Vlasenkod867f322007-08-19 21:15:42 +0000404 if (*str) {
405 /* there is /xxx after dotted-IP address */
406 i = bb_strtou(str, &p, 10);
407 if (*p == '.') {
408 /* 'xxx' itself is dotted-IP mask, parse it */
409 /* (return 0 (success) only if it has N.N.N.N form) */
410 return scan_ip(&str, maskp, '\0') - 32;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000411 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000412 if (*p)
413 return -1;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000414 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000415
416 if (i > 32)
Denis Vlasenko92758142006-10-03 19:56:34 +0000417 return -1;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000418
419 if (sizeof(unsigned) == 4 && i == 32) {
420 /* mask >>= 32 below may not work */
421 mask = 0;
422 } else {
423 mask = 0xffffffff;
424 mask >>= i;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000425 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000426 /* i == 0 -> *maskp = 0x00000000
427 * i == 1 -> *maskp = 0x80000000
428 * i == 4 -> *maskp = 0xf0000000
429 * i == 31 -> *maskp = 0xfffffffe
430 * i == 32 -> *maskp = 0xffffffff */
431 *maskp = (uint32_t)(~mask);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000432 return 0;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000433}
434
Denis Vlasenko073214f2007-08-17 19:20:07 +0000435/*
436 * Parse configuration file into in-memory linked list.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000437 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000438 * The first non-white character is examined to determine if the config line
439 * is one of the following:
440 * .ext:mime/type # new mime type not compiled into httpd
441 * [adAD]:from # ip address allow/deny, * for wildcard
442 * /path:user:pass # username/password
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000443 * Ennn:error.html # error page for status nnn
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000444 *
445 * Any previous IP rules are discarded.
446 * If the flag argument is not SUBDIR_PARSE then all /path and mime rules
447 * are also discarded. That is, previous settings are retained if flag is
448 * SUBDIR_PARSE.
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000449 * Error pages are only parsed on the main config file.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000450 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000451 * path Path where to look for httpd.conf (without filename).
452 * flag Type of the parse request.
453 */
454/* flag */
455#define FIRST_PARSE 0
456#define SUBDIR_PARSE 1
457#define SIGNALED_PARSE 2
458#define FIND_FROM_HTTPD_ROOT 3
Glenn L McGrath06e95652003-02-09 06:51:14 +0000459static void parse_conf(const char *path, int flag)
460{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000461 FILE *f;
Denis Vlasenko55a99402006-09-30 20:41:44 +0000462#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000463 Htaccess *prev;
464#endif
465#if ENABLE_FEATURE_HTTPD_BASIC_AUTH \
466 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES \
467 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000468 Htaccess *cur;
Glenn L McGrathbaaa6e92003-09-15 15:00:43 +0000469#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000470 const char *cf = configFile;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000471 char buf[160];
472 char *p0 = NULL;
473 char *c, *p;
Denis Vlasenko073214f2007-08-17 19:20:07 +0000474 Htaccess_IP *pip;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000475
Denis Vlasenko073214f2007-08-17 19:20:07 +0000476 /* discard old rules */
477 free_Htaccess_IP_list(&ip_a_d);
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000478 flg_deny_all = 0;
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000479#if ENABLE_FEATURE_HTTPD_BASIC_AUTH \
480 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES \
481 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000482 /* retain previous auth and mime config only for subdir parse */
483 if (flag != SUBDIR_PARSE) {
Denis Vlasenko55a99402006-09-30 20:41:44 +0000484#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko073214f2007-08-17 19:20:07 +0000485 free_Htaccess_list(&g_auth);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000486#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000487#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
Denis Vlasenko073214f2007-08-17 19:20:07 +0000488 free_Htaccess_list(&mime_a);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000489#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000490#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000491 free_Htaccess_list(&script_i);
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000492#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000493 }
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000494#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000495
496 if (flag == SUBDIR_PARSE || cf == NULL) {
497 cf = alloca(strlen(path) + sizeof(httpd_conf) + 2);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000498 sprintf((char *)cf, "%s/%s", path, httpd_conf);
Glenn L McGrath393183d2003-05-26 14:07:50 +0000499 }
500
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000501 while ((f = fopen(cf, "r")) == NULL) {
502 if (flag == SUBDIR_PARSE || flag == FIND_FROM_HTTPD_ROOT) {
503 /* config file not found, no changes to config */
504 return;
505 }
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000506 if (configFile && flag == FIRST_PARSE) /* if -c option given */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000507 bb_perror_msg_and_die("%s", cf);
508 flag = FIND_FROM_HTTPD_ROOT;
509 cf = httpd_conf;
510 }
511
Denis Vlasenko55a99402006-09-30 20:41:44 +0000512#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000513 prev = g_auth;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000514#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000515 /* This could stand some work */
Denis Vlasenko55a99402006-09-30 20:41:44 +0000516 while ((p0 = fgets(buf, sizeof(buf), f)) != NULL) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000517 c = NULL;
Denis Vlasenko073214f2007-08-17 19:20:07 +0000518 for (p = p0; *p0 != '\0' && *p0 != '#'; p0++) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000519 if (!isspace(*p0)) {
520 *p++ = *p0;
521 if (*p0 == ':' && c == NULL)
Denis Vlasenko073214f2007-08-17 19:20:07 +0000522 c = p;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000523 }
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000524 }
Denis Vlasenko073214f2007-08-17 19:20:07 +0000525 *p = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000526
527 /* test for empty or strange line */
Denis Vlasenko073214f2007-08-17 19:20:07 +0000528 if (c == NULL || *c == '\0')
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000529 continue;
530 p0 = buf;
531 if (*p0 == 'd')
Denis Vlasenko073214f2007-08-17 19:20:07 +0000532 *p0 = 'D';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000533 if (*c == '*') {
534 if (*p0 == 'D') {
535 /* memorize deny all */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000536 flg_deny_all = 1;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000537 }
538 /* skip default other "word:*" config lines */
539 continue;
540 }
541
542 if (*p0 == 'a')
543 *p0 = 'A';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000544 if (*p0 == 'A' || *p0 == 'D') {
545 /* storing current config IP line */
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000546 pip = xzalloc(sizeof(Htaccess_IP));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000547 if (pip) {
Denis Vlasenko55a99402006-09-30 20:41:44 +0000548 if (scan_ip_mask(c, &(pip->ip), &(pip->mask))) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000549 /* syntax IP{/mask} error detected, protect all */
550 *p0 = 'D';
551 pip->mask = 0;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000552 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000553 pip->allow_deny = *p0;
554 if (*p0 == 'D') {
Denis Vlasenko073214f2007-08-17 19:20:07 +0000555 /* Deny:from_IP move top */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000556 pip->next = ip_a_d;
557 ip_a_d = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000558 } else {
559 /* add to bottom A:form_IP config line */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000560 Htaccess_IP *prev_IP = ip_a_d;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000561
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000562 if (prev_IP == NULL) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000563 ip_a_d = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000564 } else {
565 while (prev_IP->next)
566 prev_IP = prev_IP->next;
567 prev_IP->next = pip;
568 }
569 }
570 }
571 continue;
572 }
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000573
574#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
575 if (flag == FIRST_PARSE && *p0 == 'E') {
576 int i;
577 /* error status code */
578 int status = atoi(++p0);
579 /* c already points at the character following ':' in parse loop */
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000580 /* c = strchr(p0, ':'); c++; */
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000581 if (status < HTTP_CONTINUE) {
582 bb_error_msg("config error '%s' in '%s'", buf, cf);
583 continue;
584 }
585
586 /* then error page; find matching status */
587 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
588 if (http_response_type[i] == status) {
589 http_error_page[i] = concat_path_file((*c == '/') ? NULL : home_httpd, c);
590 break;
591 }
592 }
593 continue;
594 }
595#endif
596
Denis Vlasenko55a99402006-09-30 20:41:44 +0000597#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000598 if (*p0 == '/') {
Denis Vlasenko073214f2007-08-17 19:20:07 +0000599 /* make full path from httpd root / current_path / config_line_path */
600 cf = (flag == SUBDIR_PARSE ? path : "");
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000601 p0 = xmalloc(strlen(cf) + (c - buf) + 2 + strlen(c));
Denis Vlasenko073214f2007-08-17 19:20:07 +0000602 c[-1] = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000603 sprintf(p0, "/%s%s", cf, buf);
604
605 /* another call bb_simplify_path */
606 cf = p = p0;
607
608 do {
609 if (*p == '/') {
610 if (*cf == '/') { /* skip duplicate (or initial) slash */
611 continue;
Denis Vlasenko3d2a9212007-09-28 22:35:29 +0000612 }
613 if (*cf == '.') {
Denis Vlasenko073214f2007-08-17 19:20:07 +0000614 if (cf[1] == '/' || cf[1] == '\0') { /* remove extra '.' */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000615 continue;
Denis Vlasenko3d2a9212007-09-28 22:35:29 +0000616 }
617 if ((cf[1] == '.') && (cf[2] == '/' || cf[2] == '\0')) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000618 ++cf;
619 if (p > p0) {
Denis Vlasenko92758142006-10-03 19:56:34 +0000620 while (*--p != '/') /* omit previous dir */;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000621 }
622 continue;
623 }
624 }
625 }
626 *++p = *cf;
627 } while (*++cf);
628
629 if ((p == p0) || (*p != '/')) { /* not a trailing slash */
630 ++p; /* so keep last character */
631 }
Denis Vlasenko3d2a9212007-09-28 22:35:29 +0000632 *p = ':';
633 strcpy(p + 1, c);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000634 }
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000635#endif
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000636
Denis Vlasenko3bba5452006-12-30 17:57:03 +0000637#if ENABLE_FEATURE_HTTPD_BASIC_AUTH \
638 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES \
639 || ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000640 /* storing current config line */
Denis Vlasenko9b1381f2007-01-03 02:56:00 +0000641 cur = xzalloc(sizeof(Htaccess) + strlen(p0));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000642 if (cur) {
643 cf = strcpy(cur->before_colon, p0);
644 c = strchr(cf, ':');
645 *c++ = 0;
646 cur->after_colon = c;
Denis Vlasenko55a99402006-09-30 20:41:44 +0000647#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000648 if (*cf == '.') {
649 /* config .mime line move top for overwrite previous */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000650 cur->next = mime_a;
651 mime_a = cur;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000652 continue;
653 }
Glenn L McGrath06e95652003-02-09 06:51:14 +0000654#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000655#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000656 if (*cf == '*' && cf[1] == '.') {
657 /* config script interpreter line move top for overwrite previous */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000658 cur->next = script_i;
659 script_i = cur;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000660 continue;
661 }
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000662#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000663#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000664 free(p0);
665 if (prev == NULL) {
666 /* first line */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000667 g_auth = prev = cur;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000668 } else {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000669 /* sort path, if current lenght eq or bigger then move up */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000670 Htaccess *prev_hti = g_auth;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000671 size_t l = strlen(cf);
672 Htaccess *hti;
673
674 for (hti = prev_hti; hti; hti = hti->next) {
675 if (l >= strlen(hti->before_colon)) {
676 /* insert before hti */
677 cur->next = hti;
678 if (prev_hti != hti) {
679 prev_hti->next = cur;
680 } else {
681 /* insert as top */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000682 g_auth = cur;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000683 }
684 break;
685 }
686 if (prev_hti != hti)
687 prev_hti = prev_hti->next;
688 }
689 if (!hti) { /* not inserted, add to bottom */
690 prev->next = cur;
691 prev = cur;
692 }
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000693 }
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000694#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000695 }
Glenn L McGrathbaaa6e92003-09-15 15:00:43 +0000696#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000697 }
698 fclose(f);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000699}
700
Denis Vlasenko55a99402006-09-30 20:41:44 +0000701#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000702/*
703 * Given a string, html-encode special characters.
704 * This is used for the -e command line option to provide an easy way
705 * for scripts to encode result data without confusing browsers. The
706 * returned string pointer is memory allocated by malloc().
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000707 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000708 * Returns a pointer to the encoded string (malloced).
709 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000710static char *encodeString(const char *string)
711{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000712 /* take the simple route and encode everything */
713 /* could possibly scan once to get length. */
714 int len = strlen(string);
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000715 char *out = xmalloc(len * 6 + 1);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000716 char *p = out;
717 char ch;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000718
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000719 while ((ch = *string++)) {
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000720 /* very simple check for what to encode */
721 if (isalnum(ch))
722 *p++ = ch;
723 else
724 p += sprintf(p, "&#%d;", (unsigned char) ch);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000725 }
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000726 *p = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000727 return out;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000728}
Denis Vlasenkob3a07152006-11-16 18:04:43 +0000729#endif /* FEATURE_HTTPD_ENCODE_URL_STR */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000730
Denis Vlasenko073214f2007-08-17 19:20:07 +0000731/*
732 * Given a URL encoded string, convert it to plain ascii.
733 * Since decoding always makes strings smaller, the decode is done in-place.
734 * Thus, callers should strdup() the argument if they do not want the
735 * argument modified. The return is the original pointer, allowing this
736 * function to be easily used as arguments to other functions.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000737 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000738 * string The first string to decode.
739 * option_d 1 if called for httpd -d
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000740 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000741 * Returns a pointer to the decoded string (same as input).
742 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000743static unsigned hex_to_bin(unsigned char c)
744{
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000745 unsigned v;
746
747 v = c - '0';
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000748 if (v <= 9)
749 return v;
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000750 /* c | 0x20: letters to lower case, non-letters
751 * to (potentially different) non-letters */
752 v = (unsigned)(c | 0x20) - 'a';
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000753 if (v <= 5)
754 return v + 10;
755 return ~0;
756}
757/* For testing:
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000758void t(char c) { printf("'%c'(%u) %u\n", c, c, hex_to_bin(c)); }
759int main() { t(0x10); t(0x20); t('0'); t('9'); t('A'); t('F'); t('a'); t('f');
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000760t('0'-1); t('9'+1); t('A'-1); t('F'+1); t('a'-1); t('f'+1); return 0; }
761*/
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000762static char *decodeString(char *orig, int option_d)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000763{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000764 /* note that decoded string is always shorter than original */
765 char *string = orig;
766 char *ptr = string;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000767 char c;
Eric Andersena3bb3e62003-06-26 09:05:32 +0000768
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000769 while ((c = *ptr++) != '\0') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000770 unsigned v;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000771
772 if (option_d && c == '+') {
Denis Vlasenko601ae132006-11-28 23:37:46 +0000773 *string++ = ' ';
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000774 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000775 }
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000776 if (c != '%') {
777 *string++ = c;
778 continue;
779 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000780 v = hex_to_bin(ptr[0]);
781 if (v > 15) {
782 bad_hex:
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000783 if (!option_d)
784 return NULL;
785 *string++ = '%';
786 continue;
787 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000788 v = (v * 16) | hex_to_bin(ptr[1]);
789 if (v > 255)
790 goto bad_hex;
791 if (!option_d && (v == '/' || v == '\0')) {
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000792 /* caller takes it as indication of invalid
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000793 * (dangerous wrt exploits) chars */
794 return orig + 1;
795 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000796 *string++ = v;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000797 ptr += 2;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000798 }
799 *string = '\0';
800 return orig;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000801}
802
Denis Vlasenko55a99402006-09-30 20:41:44 +0000803#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000804/*
Denis Vlasenko073214f2007-08-17 19:20:07 +0000805 * Decode a base64 data stream as per rfc1521.
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000806 * Note that the rfc states that non base64 chars are to be ignored.
Denis Vlasenko073214f2007-08-17 19:20:07 +0000807 * Since the decode always results in a shorter size than the input,
808 * it is OK to pass the input arg as an output arg.
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000809 * Parameter: a pointer to a base64 encoded string.
810 * Decoded data is stored in-place.
811 */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000812static void decodeBase64(char *Data)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000813{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000814 const unsigned char *in = (const unsigned char *)Data;
Denis Vlasenko37c33162007-08-19 18:54:22 +0000815 /* The decoded size will be at most 3/4 the size of the encoded */
Denis Vlasenko088b9592007-04-18 21:14:46 +0000816 unsigned ch = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000817 int i = 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000818
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000819 while (*in) {
820 int t = *in++;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000821
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000822 if (t >= '0' && t <= '9')
823 t = t - '0' + 52;
824 else if (t >= 'A' && t <= 'Z')
825 t = t - 'A';
826 else if (t >= 'a' && t <= 'z')
827 t = t - 'a' + 26;
828 else if (t == '+')
829 t = 62;
830 else if (t == '/')
831 t = 63;
832 else if (t == '=')
833 t = 0;
834 else
835 continue;
Glenn L McGrath874e3382003-05-14 12:11:36 +0000836
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000837 ch = (ch << 6) | t;
838 i++;
839 if (i == 4) {
840 *Data++ = (char) (ch >> 16);
841 *Data++ = (char) (ch >> 8);
842 *Data++ = (char) ch;
843 i = 0;
844 }
845 }
Denis Vlasenko088b9592007-04-18 21:14:46 +0000846 *Data = '\0';
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000847}
848#endif
849
Denis Vlasenko073214f2007-08-17 19:20:07 +0000850/*
851 * Create a listen server socket on the designated port.
852 */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000853static int openServer(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000854{
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000855 int n = bb_strtou(bind_addr_or_port, NULL, 10);
856 if (!errno && n && n <= 0xffff)
857 n = create_and_bind_stream_or_die(NULL, n);
858 else
859 n = create_and_bind_stream_or_die(bind_addr_or_port, 80);
860 xlisten(n, 9);
861 return n;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000862}
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000863
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000864/*
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000865 * Log the connection closure and exit.
866 */
867static void log_and_exit(void) ATTRIBUTE_NORETURN;
868static void log_and_exit(void)
869{
Denis Vlasenko921799d2007-08-19 19:28:09 +0000870 /* Paranoia. IE said to be buggy. It may send some extra data
871 * or be confused by us just exiting without SHUT_WR. Oh well. */
872 shutdown(1, SHUT_WR);
873 ndelay_on(0);
874 while (read(0, iobuf, IOBUF_SIZE) > 0)
875 continue;
876
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000877 if (verbose > 2)
878 bb_error_msg("closed");
879 _exit(xfunc_error_retval);
880}
881
882/*
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000883 * Create and send HTTP response headers.
884 * The arguments are combined and sent as one write operation. Note that
885 * IE will puke big-time if the headers are not sent in one packet and the
886 * second packet is delayed for any reason.
887 * responseNum - the result code to send.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000888 */
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000889static void send_headers(int responseNum)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000890{
Denis Vlasenko073214f2007-08-17 19:20:07 +0000891 static const char RFC1123FMT[] ALIGN1 = "%a, %d %b %Y %H:%M:%S GMT";
892
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000893 const char *responseString = "";
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000894 const char *infoString = NULL;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000895 const char *mime_type;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000896#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
897 const char *error_page = 0;
898#endif
Denis Vlasenkob64eed62007-01-14 17:06:11 +0000899 unsigned i;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000900 time_t timer = time(0);
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000901 char tmp_str[80];
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000902 int len;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000903
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000904 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
905 if (http_response_type[i] == responseNum) {
906 responseString = http_response[i].name;
907 infoString = http_response[i].info;
908#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
909 error_page = http_error_page[i];
910#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000911 break;
912 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000913 }
914 /* error message is HTML */
915 mime_type = responseNum == HTTP_OK ?
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000916 found_mime_type : "text/html";
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000917
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000918 if (verbose)
Denis Vlasenko241b1562007-08-17 19:18:47 +0000919 bb_error_msg("response:%u", responseNum);
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000920
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000921 /* emit the current date */
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000922 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&timer));
923 len = sprintf(iobuf,
Denis Vlasenko69981422007-01-07 21:25:12 +0000924 "HTTP/1.0 %d %s\r\nContent-type: %s\r\n"
925 "Date: %s\r\nConnection: close\r\n",
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000926 responseNum, responseString, mime_type, tmp_str);
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000927
Denis Vlasenko55a99402006-09-30 20:41:44 +0000928#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000929 if (responseNum == HTTP_UNAUTHORIZED) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000930 len += sprintf(iobuf + len,
Denis Vlasenko8e858e22007-03-07 09:35:43 +0000931 "WWW-Authenticate: Basic realm=\"%s\"\r\n",
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000932 g_realm);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000933 }
Glenn L McGrath3d2405c2003-02-10 22:28:21 +0000934#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000935 if (responseNum == HTTP_MOVED_TEMPORARILY) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000936 len += sprintf(iobuf + len, "Location: %s/%s%s\r\n",
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000937 found_moved_temporarily,
938 (g_query ? "?" : ""),
939 (g_query ? g_query : ""));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000940 }
Eric Andersen07f2fea2004-10-08 08:03:29 +0000941
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000942#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
943 if (error_page && !access(error_page, R_OK)) {
944 strcat(iobuf, "\r\n");
945 len += 2;
946
947 if (DEBUG)
948 fprintf(stderr, "headers: '%s'\n", iobuf);
949 full_write(1, iobuf, len);
950 if (DEBUG)
951 fprintf(stderr, "writing error page: '%s'\n", error_page);
952 return send_file_and_exit(error_page, FALSE);
953 }
954#endif
955
Denis Vlasenkof4310172007-09-21 22:35:18 +0000956 if (file_size != -1) { /* file */
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000957 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&last_mod));
Denis Vlasenkof4310172007-09-21 22:35:18 +0000958#if ENABLE_FEATURE_HTTPD_RANGES
959 if (responseNum == HTTP_PARTIAL_CONTENT) {
960 len += sprintf(iobuf + len, "Content-Range: bytes %"OFF_FMT"d-%"OFF_FMT"d/%"OFF_FMT"d\r\n",
961 range_start,
962 range_end,
963 file_size);
964 file_size = range_end - range_start + 1;
965 }
966#endif
967 len += sprintf(iobuf + len,
968#if ENABLE_FEATURE_HTTPD_RANGES
969 "Accept-Ranges: bytes\r\n"
970#endif
971 "Last-Modified: %s\r\n%s %"OFF_FMT"d\r\n",
972 tmp_str,
973 "Content-length:",
974 file_size
975 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000976 }
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000977 iobuf[len++] = '\r';
978 iobuf[len++] = '\n';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000979 if (infoString) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000980 len += sprintf(iobuf + len,
Denis Vlasenko1b9064d2007-08-12 21:05:49 +0000981 "<HTML><HEAD><TITLE>%d %s</TITLE></HEAD>\n"
982 "<BODY><H1>%d %s</H1>\n%s\n</BODY></HTML>\n",
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000983 responseNum, responseString,
984 responseNum, responseString, infoString);
985 }
Denis Vlasenko6c85ddc2006-11-21 00:08:39 +0000986 if (DEBUG)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000987 fprintf(stderr, "headers: '%s'\n", iobuf);
Denis Vlasenko9611cb12007-08-18 14:18:43 +0000988 if (full_write(1, iobuf, len) != len) {
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000989 if (verbose > 1)
990 bb_perror_msg("error");
991 log_and_exit();
992 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000993}
994
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000995static void send_headers_and_exit(int responseNum) ATTRIBUTE_NORETURN;
996static void send_headers_and_exit(int responseNum)
Denis Vlasenkoe45af732007-08-17 19:19:15 +0000997{
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000998 send_headers(responseNum);
999 log_and_exit();
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001000}
1001
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001002/*
1003 * Read from the socket until '\n' or EOF. '\r' chars are removed.
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001004 * '\n' is replaced with NUL.
1005 * Return number of characters read or 0 if nothing is read
1006 * ('\r' and '\n' are not counted).
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001007 * Data is returned in iobuf.
1008 */
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001009static int get_line(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001010{
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001011 int count = 0;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001012 char c;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001013
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001014 while (1) {
1015 if (hdr_cnt <= 0) {
1016 hdr_cnt = safe_read(0, hdr_buf, sizeof(hdr_buf));
1017 if (hdr_cnt <= 0)
1018 break;
1019 hdr_ptr = hdr_buf;
1020 }
1021 iobuf[count] = c = *hdr_ptr++;
1022 hdr_cnt--;
1023
1024 if (c == '\r')
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001025 continue;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001026 if (c == '\n') {
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001027 iobuf[count] = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001028 return count;
1029 }
Denis Vlasenko921799d2007-08-19 19:28:09 +00001030 if (count < (IOBUF_SIZE - 1)) /* check overflow */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001031 count++;
1032 }
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001033 return count;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001034}
1035
Denis Vlasenko55a99402006-09-30 20:41:44 +00001036#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001037
1038/* gcc 4.2.1 fares better with NOINLINE */
1039static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len) ATTRIBUTE_NORETURN;
1040static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len)
1041{
1042 enum { FROM_CGI = 1, TO_CGI = 2 }; /* indexes in pfd[] */
1043 struct pollfd pfd[3];
1044 int out_cnt; /* we buffer a bit of initial CGI output */
1045 int count;
1046
1047 /* iobuf is used for CGI -> network data,
1048 * hdr_buf is for network -> CGI data (POSTDATA) */
1049
1050 /* If CGI dies, we still want to correctly finish reading its output
1051 * and send it to the peer. So please no SIGPIPEs! */
1052 signal(SIGPIPE, SIG_IGN);
1053
1054 /* NB: breaking out of this loop jumps to log_and_exit() */
1055 out_cnt = 0;
1056 while (1) {
1057 memset(pfd, 0, sizeof(pfd));
1058
1059 pfd[FROM_CGI].fd = fromCgi_rd;
1060 pfd[FROM_CGI].events = POLLIN;
1061
1062 if (toCgi_wr) {
1063 pfd[TO_CGI].fd = toCgi_wr;
1064 if (hdr_cnt > 0) {
1065 pfd[TO_CGI].events = POLLOUT;
1066 } else if (post_len > 0) {
1067 pfd[0].events = POLLIN;
1068 } else {
1069 /* post_len <= 0 && hdr_cnt <= 0:
1070 * no more POST data to CGI,
1071 * let CGI see EOF on CGI's stdin */
1072 close(toCgi_wr);
1073 toCgi_wr = 0;
1074 }
1075 }
1076
1077 /* Now wait on the set of sockets */
Denis Vlasenko5d61e712007-09-27 10:09:59 +00001078 count = safe_poll(pfd, 3, -1);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001079 if (count <= 0) {
1080#if 0
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001081 if (waitpid(pid, &status, WNOHANG) <= 0) {
1082 /* Weird. CGI didn't exit and no fd's
1083 * are ready, yet poll returned?! */
1084 continue;
1085 }
1086 if (DEBUG && WIFEXITED(status))
1087 bb_error_msg("CGI exited, status=%d", WEXITSTATUS(status));
1088 if (DEBUG && WIFSIGNALED(status))
1089 bb_error_msg("CGI killed, signal=%d", WTERMSIG(status));
1090#endif
1091 break;
1092 }
1093
1094 if (pfd[TO_CGI].revents) {
1095 /* hdr_cnt > 0 here due to the way pfd[TO_CGI].events set */
1096 /* Have data from peer and can write to CGI */
1097 count = safe_write(toCgi_wr, hdr_ptr, hdr_cnt);
1098 /* Doesn't happen, we dont use nonblocking IO here
1099 *if (count < 0 && errno == EAGAIN) {
1100 * ...
1101 *} else */
1102 if (count > 0) {
1103 hdr_ptr += count;
1104 hdr_cnt -= count;
1105 } else {
1106 /* EOF/broken pipe to CGI, stop piping POST data */
1107 hdr_cnt = post_len = 0;
1108 }
1109 }
1110
1111 if (pfd[0].revents) {
1112 /* post_len > 0 && hdr_cnt == 0 here */
1113 /* We expect data, prev data portion is eaten by CGI
1114 * and there *is* data to read from the peer
1115 * (POSTDATA) */
1116 //count = post_len > (int)sizeof(hdr_buf) ? (int)sizeof(hdr_buf) : post_len;
1117 //count = safe_read(0, hdr_buf, count);
1118 count = safe_read(0, hdr_buf, sizeof(hdr_buf));
1119 if (count > 0) {
1120 hdr_cnt = count;
1121 hdr_ptr = hdr_buf;
1122 post_len -= count;
1123 } else {
1124 /* no more POST data can be read */
1125 post_len = 0;
1126 }
1127 }
1128
1129 if (pfd[FROM_CGI].revents) {
1130 /* There is something to read from CGI */
1131 char *rbuf = iobuf;
1132
1133 /* Are we still buffering CGI output? */
1134 if (out_cnt >= 0) {
1135 /* HTTP_200[] has single "\r\n" at the end.
1136 * According to http://hoohoo.ncsa.uiuc.edu/cgi/out.html,
1137 * CGI scripts MUST send their own header terminated by
1138 * empty line, then data. That's why we have only one
1139 * <cr><lf> pair here. We will output "200 OK" line
1140 * if needed, but CGI still has to provide blank line
1141 * between header and body */
1142
1143 /* Must use safe_read, not full_read, because
1144 * CGI may output a few first bytes and then wait
1145 * for POSTDATA without closing stdout.
1146 * With full_read we may wait here forever. */
1147 count = safe_read(fromCgi_rd, rbuf + out_cnt, PIPE_BUF - 8);
1148 if (count <= 0) {
1149 /* eof (or error) and there was no "HTTP",
1150 * so write it, then write received data */
1151 if (out_cnt) {
1152 full_write(1, HTTP_200, sizeof(HTTP_200)-1);
1153 full_write(1, rbuf, out_cnt);
1154 }
1155 break; /* CGI stdout is closed, exiting */
1156 }
1157 out_cnt += count;
1158 count = 0;
1159 /* "Status" header format is: "Status: 302 Redirected\r\n" */
1160 if (out_cnt >= 8 && memcmp(rbuf, "Status: ", 8) == 0) {
1161 /* send "HTTP/1.0 " */
1162 if (full_write(1, HTTP_200, 9) != 9)
1163 break;
1164 rbuf += 8; /* skip "Status: " */
1165 count = out_cnt - 8;
1166 out_cnt = -1; /* buffering off */
1167 } else if (out_cnt >= 4) {
1168 /* Did CGI add "HTTP"? */
1169 if (memcmp(rbuf, HTTP_200, 4) != 0) {
1170 /* there is no "HTTP", do it ourself */
1171 if (full_write(1, HTTP_200, sizeof(HTTP_200)-1) != sizeof(HTTP_200)-1)
1172 break;
1173 }
1174 /* Commented out:
1175 if (!strstr(rbuf, "ontent-")) {
1176 full_write(s, "Content-type: text/plain\r\n\r\n", 28);
1177 }
1178 * Counter-example of valid CGI without Content-type:
1179 * echo -en "HTTP/1.0 302 Found\r\n"
1180 * echo -en "Location: http://www.busybox.net\r\n"
1181 * echo -en "\r\n"
1182 */
1183 count = out_cnt;
1184 out_cnt = -1; /* buffering off */
1185 }
1186 } else {
1187 count = safe_read(fromCgi_rd, rbuf, PIPE_BUF);
1188 if (count <= 0)
1189 break; /* eof (or error) */
1190 }
1191 if (full_write(1, rbuf, count) != count)
1192 break;
1193 if (DEBUG)
1194 fprintf(stderr, "cgi read %d bytes: '%.*s'\n", count, count, rbuf);
1195 } /* if (pfd[FROM_CGI].revents) */
1196 } /* while (1) */
1197 log_and_exit();
1198}
1199
Denis Vlasenko921799d2007-08-19 19:28:09 +00001200static void setenv1(const char *name, const char *value)
1201{
1202 setenv(name, value ? value : "", 1);
1203}
1204
Denis Vlasenko241b1562007-08-17 19:18:47 +00001205/*
1206 * Spawn CGI script, forward CGI's stdin/out <=> network
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001207 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001208 * Environment variables are set up and the script is invoked with pipes
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001209 * for stdin/stdout. If a POST is being done the script is fed the POST
Denis Vlasenko241b1562007-08-17 19:18:47 +00001210 * data in addition to setting the QUERY_STRING variable (for GETs or POSTs).
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001211 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001212 * Parameters:
1213 * const char *url The requested URL (with leading /).
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001214 * int post_len Length of the POST body.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001215 * const char *cookie For set HTTP_COOKIE.
1216 * const char *content_type For set CONTENT_TYPE.
1217 */
1218static void send_cgi_and_exit(
1219 const char *url,
1220 const char *request,
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001221 int post_len,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001222 const char *cookie,
1223 const char *content_type) ATTRIBUTE_NORETURN;
1224static void send_cgi_and_exit(
1225 const char *url,
1226 const char *request,
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001227 int post_len,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001228 const char *cookie,
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001229 const char *content_type)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001230{
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001231 struct { int rd; int wr; } fromCgi; /* CGI -> httpd pipe */
1232 struct { int rd; int wr; } toCgi; /* httpd -> CGI pipe */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001233 char *fullpath;
1234 char *script;
1235 char *purl;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001236 int pid;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001237
1238 /*
1239 * We are mucking with environment _first_ and then vfork/exec,
1240 * this allows us to use vfork safely. Parent don't care about
1241 * these environment changes anyway.
1242 */
1243
1244 /*
1245 * Find PATH_INFO.
1246 */
1247 purl = xstrdup(url);
1248 script = purl;
1249 while ((script = strchr(script + 1, '/')) != NULL) {
1250 /* have script.cgi/PATH_INFO or dirs/script.cgi[/PATH_INFO] */
1251 struct stat sb;
1252
1253 *script = '\0';
1254 if (!is_directory(purl + 1, 1, &sb)) {
1255 /* not directory, found script.cgi/PATH_INFO */
1256 *script = '/';
1257 break;
1258 }
1259 *script = '/'; /* is directory, find next '/' */
1260 }
1261 setenv1("PATH_INFO", script); /* set /PATH_INFO or "" */
1262 setenv1("REQUEST_METHOD", request);
1263 if (g_query) {
1264 putenv(xasprintf("%s=%s?%s", "REQUEST_URI", purl, g_query));
1265 } else {
1266 setenv1("REQUEST_URI", purl);
1267 }
1268 if (script != NULL)
1269 *script = '\0'; /* cut off /PATH_INFO */
1270
1271 /* SCRIPT_FILENAME required by PHP in CGI mode */
1272 fullpath = concat_path_file(home_httpd, purl);
1273 setenv1("SCRIPT_FILENAME", fullpath);
1274 /* set SCRIPT_NAME as full path: /cgi-bin/dirs/script.cgi */
1275 setenv1("SCRIPT_NAME", purl);
1276 /* http://hoohoo.ncsa.uiuc.edu/cgi/env.html:
1277 * QUERY_STRING: The information which follows the ? in the URL
1278 * which referenced this script. This is the query information.
1279 * It should not be decoded in any fashion. This variable
1280 * should always be set when there is query information,
1281 * regardless of command line decoding. */
1282 /* (Older versions of bbox seem to do some decoding) */
1283 setenv1("QUERY_STRING", g_query);
1284 putenv((char*)"SERVER_SOFTWARE=busybox httpd/"BB_VER);
1285 putenv((char*)"SERVER_PROTOCOL=HTTP/1.0");
1286 putenv((char*)"GATEWAY_INTERFACE=CGI/1.1");
1287 /* Having _separate_ variables for IP and port defeats
1288 * the purpose of having socket abstraction. Which "port"
1289 * are you using on Unix domain socket?
1290 * IOW - REMOTE_PEER="1.2.3.4:56" makes much more sense.
1291 * Oh well... */
1292 {
1293 char *p = rmt_ip_str ? rmt_ip_str : (char*)"";
1294 char *cp = strrchr(p, ':');
1295 if (ENABLE_FEATURE_IPV6 && cp && strchr(cp, ']'))
1296 cp = NULL;
1297 if (cp) *cp = '\0'; /* delete :PORT */
1298 setenv1("REMOTE_ADDR", p);
Denis Vlasenko37c33162007-08-19 18:54:22 +00001299 if (cp) {
1300 *cp = ':';
1301#if ENABLE_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
1302 setenv1("REMOTE_PORT", cp + 1);
1303#endif
1304 }
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001305 }
1306 setenv1("HTTP_USER_AGENT", user_agent);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001307 if (post_len)
1308 putenv(xasprintf("CONTENT_LENGTH=%d", post_len));
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001309 if (cookie)
1310 setenv1("HTTP_COOKIE", cookie);
1311 if (content_type)
1312 setenv1("CONTENT_TYPE", content_type);
1313#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1314 if (remoteuser) {
1315 setenv1("REMOTE_USER", remoteuser);
1316 putenv((char*)"AUTH_TYPE=Basic");
1317 }
1318#endif
1319 if (referer)
1320 setenv1("HTTP_REFERER", referer);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001321
Denis Vlasenko241b1562007-08-17 19:18:47 +00001322 xpipe(&fromCgi.rd);
1323 xpipe(&toCgi.rd);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001324
Denis Vlasenko80281fe2007-03-07 22:16:38 +00001325 pid = vfork();
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001326 if (pid < 0) {
1327 /* TODO: log perror? */
1328 log_and_exit();
1329 }
Denis Vlasenkof7996f32007-01-11 17:20:00 +00001330
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001331 if (!pid) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001332 /* Child process */
Denis Vlasenko241b1562007-08-17 19:18:47 +00001333 xfunc_error_retval = 242;
1334
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001335 xmove_fd(toCgi.rd, 0); /* replace stdin with the pipe */
1336 xmove_fd(fromCgi.wr, 1); /* replace stdout with the pipe */
1337 close(fromCgi.rd);
1338 close(toCgi.wr);
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001339 /* User seeing stderr output can be a security problem.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001340 * If CGI really wants that, it can always do dup itself. */
Denis Vlasenko1ec15cd2007-08-11 20:20:43 +00001341 /* dup2(1, 2); */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001342
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001343 /* script must have absolute path */
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001344 script = strrchr(fullpath, '/');
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001345 if (!script)
1346 goto error_execing_cgi;
1347 *script = '\0';
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001348 /* chdiring to script's dir */
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001349 if (chdir(fullpath) == 0) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001350 char *argv[2];
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001351#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
1352 char *interpr = NULL;
1353 char *suffix = strrchr(purl, '.');
1354
1355 if (suffix) {
1356 Htaccess *cur;
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001357 for (cur = script_i; cur; cur = cur->next) {
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001358 if (strcmp(cur->before_colon + 1, suffix) == 0) {
1359 interpr = cur->after_colon;
1360 break;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001361 }
1362 }
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001363 }
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001364#endif
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001365 *script = '/';
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001366 /* set argv[0] to name without path */
1367 argv[0] = (char*)bb_basename(purl);
1368 argv[1] = NULL;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001369#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001370 if (interpr)
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001371 execv(interpr, argv);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001372 else
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001373#endif
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001374 execv(fullpath, argv);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001375 }
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001376 error_execing_cgi:
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001377 /* send to stdout
1378 * (we are CGI here, our stdout is pumped to the net) */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001379 send_headers_and_exit(HTTP_NOT_FOUND);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001380 } /* end child */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001381
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001382 /* Parent process */
1383
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001384 /* Restore variables possibly changed by child */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001385 xfunc_error_retval = 0;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001386
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001387 /* Pump data */
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001388 close(fromCgi.wr);
1389 close(toCgi.rd);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001390 cgi_io_loop_and_exit(fromCgi.rd, toCgi.wr, post_len);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001391}
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001392
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001393#endif /* FEATURE_HTTPD_CGI */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001394
Denis Vlasenko241b1562007-08-17 19:18:47 +00001395/*
1396 * Send a file response to a HTTP request, and exit
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001397 *
1398 * Parameters:
1399 * const char *url The requested URL (with leading /).
1400 * headers Don't send headers before if FALSE.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001401 */
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001402static void send_file_and_exit(const char *url, int headers)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001403{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001404 static const char *const suffixTable[] = {
1405 /* Warning: shorter equivalent suffix in one line must be first */
1406 ".htm.html", "text/html",
1407 ".jpg.jpeg", "image/jpeg",
1408 ".gif", "image/gif",
1409 ".png", "image/png",
1410 ".txt.h.c.cc.cpp", "text/plain",
1411 ".css", "text/css",
1412 ".wav", "audio/wav",
1413 ".avi", "video/x-msvideo",
1414 ".qt.mov", "video/quicktime",
1415 ".mpe.mpeg", "video/mpeg",
1416 ".mid.midi", "audio/midi",
1417 ".mp3", "audio/mpeg",
1418#if 0 /* unpopular */
1419 ".au", "audio/basic",
1420 ".pac", "application/x-ns-proxy-autoconfig",
1421 ".vrml.wrl", "model/vrml",
1422#endif
1423 NULL
1424 };
1425
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001426 char *suffix;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001427 int f;
1428 const char *const *table;
1429 const char *try_suffix;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001430 ssize_t count;
1431#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
Denis Vlasenkof4310172007-09-21 22:35:18 +00001432 off_t offset;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001433#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001434
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001435 suffix = strrchr(url, '.');
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001436
Denis Vlasenko073214f2007-08-17 19:20:07 +00001437 /* If not found, set default as "application/octet-stream"; */
1438 found_mime_type = "application/octet-stream";
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001439 if (suffix) {
Denis Vlasenko073214f2007-08-17 19:20:07 +00001440#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
1441 Htaccess *cur;
1442#endif
1443 for (table = suffixTable; *table; table += 2) {
1444 try_suffix = strstr(table[0], suffix);
1445 if (try_suffix) {
1446 try_suffix += strlen(suffix);
1447 if (*try_suffix == '\0' || *try_suffix == '.') {
1448 found_mime_type = table[1];
1449 break;
1450 }
1451 }
1452 }
1453#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001454 for (cur = mime_a; cur; cur = cur->next) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001455 if (strcmp(cur->before_colon, suffix) == 0) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001456 found_mime_type = cur->after_colon;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001457 break;
1458 }
1459 }
Denis Vlasenko073214f2007-08-17 19:20:07 +00001460#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001461 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001462
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001463 if (DEBUG)
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001464 bb_error_msg("sending file '%s' content-type: %s",
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001465 url, found_mime_type);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001466
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001467 f = open(url, O_RDONLY);
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001468 if (f < 0) {
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001469 if (DEBUG)
1470 bb_perror_msg("cannot open '%s'", url);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001471 if (headers)
1472 send_headers_and_exit(HTTP_NOT_FOUND);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001473 }
Denis Vlasenkof4310172007-09-21 22:35:18 +00001474#if ENABLE_FEATURE_HTTPD_RANGES
1475 if (!headers)
1476 range_start = 0; /* err pages and ranges don't mix */
1477 range_len = MAXINT(off_t);
1478 if (range_start) {
1479 if (!range_end) {
1480 range_end = file_size - 1;
1481 }
1482 if (range_end < range_start
1483 || lseek(f, range_start, SEEK_SET) != range_start
1484 ) {
1485 lseek(f, 0, SEEK_SET);
1486 range_start = 0;
1487 } else {
1488 range_len = range_end - range_start + 1;
1489 send_headers(HTTP_PARTIAL_CONTENT);
1490 headers = 0;
1491 }
1492 }
1493#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001494
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001495 if (headers)
1496 send_headers(HTTP_OK);
Denis Vlasenko241b1562007-08-17 19:18:47 +00001497
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001498 /* If you want to know about EPIPE below
1499 * (happens if you abort downloads from local httpd): */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001500 signal(SIGPIPE, SIG_IGN);
Denis Vlasenko241b1562007-08-17 19:18:47 +00001501
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001502#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
Denis Vlasenkof4310172007-09-21 22:35:18 +00001503 offset = range_start;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001504 do {
Denis Vlasenkof4310172007-09-21 22:35:18 +00001505 /* sz is rounded down to 64k */
1506 ssize_t sz = MAXINT(ssize_t) - 0xffff;
1507 USE_FEATURE_HTTPD_RANGES(if (sz > range_len) sz = range_len;)
1508 count = sendfile(1, f, &offset, sz);
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001509 if (count < 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00001510 if (offset == range_start)
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001511 goto fallback;
Denis Vlasenko241b1562007-08-17 19:18:47 +00001512 goto fin;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001513 }
Denis Vlasenkof4310172007-09-21 22:35:18 +00001514 USE_FEATURE_HTTPD_RANGES(range_len -= sz;)
1515 } while (count > 0 && range_len);
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001516 log_and_exit();
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001517
1518 fallback:
1519#endif
Denis Vlasenko921799d2007-08-19 19:28:09 +00001520 while ((count = safe_read(f, iobuf, IOBUF_SIZE)) > 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00001521 ssize_t n;
1522 USE_FEATURE_HTTPD_RANGES(if (count > range_len) count = range_len;)
1523 n = full_write(1, iobuf, count);
Denis Vlasenko241b1562007-08-17 19:18:47 +00001524 if (count != n)
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001525 break;
Denis Vlasenkof4310172007-09-21 22:35:18 +00001526 USE_FEATURE_HTTPD_RANGES(range_len -= count;)
1527 if (!range_len)
1528 break;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001529 }
Denis Vlasenko241b1562007-08-17 19:18:47 +00001530#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
1531 fin:
1532#endif
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001533 if (count < 0 && verbose > 1)
1534 bb_perror_msg("error");
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001535 log_and_exit();
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001536}
1537
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001538static int checkPermIP(void)
1539{
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001540 Htaccess_IP *cur;
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001541
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001542 /* This could stand some work */
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001543 for (cur = ip_a_d; cur; cur = cur->next) {
Denis Vlasenkob64eed62007-01-14 17:06:11 +00001544#if DEBUG
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001545 fprintf(stderr,
1546 "checkPermIP: '%s' ? '%u.%u.%u.%u/%u.%u.%u.%u'\n",
1547 rmt_ip_str,
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00001548 (unsigned char)(cur->ip >> 24),
1549 (unsigned char)(cur->ip >> 16),
1550 (unsigned char)(cur->ip >> 8),
1551 (unsigned char)(cur->ip),
1552 (unsigned char)(cur->mask >> 24),
1553 (unsigned char)(cur->mask >> 16),
1554 (unsigned char)(cur->mask >> 8),
1555 (unsigned char)(cur->mask)
1556 );
Denis Vlasenko3bba5452006-12-30 17:57:03 +00001557#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001558 if ((rmt_ip & cur->mask) == cur->ip)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001559 return cur->allow_deny == 'A'; /* Allow/Deny */
1560 }
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001561
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001562 /* if unconfigured, return 1 - access from all */
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001563 return !flg_deny_all;
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001564}
1565
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001566#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko073214f2007-08-17 19:20:07 +00001567/*
1568 * Check the permission file for access password protected.
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001569 *
Denis Vlasenko073214f2007-08-17 19:20:07 +00001570 * If config file isn't present, everything is allowed.
1571 * Entries are of the form you can see example from header source
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001572 *
Denis Vlasenko073214f2007-08-17 19:20:07 +00001573 * path The file path.
1574 * request User information to validate.
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001575 *
Denis Vlasenko073214f2007-08-17 19:20:07 +00001576 * Returns 1 if request is OK.
1577 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001578static int checkPerm(const char *path, const char *request)
1579{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001580 Htaccess *cur;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001581 const char *p;
1582 const char *p0;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001583
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001584 const char *prev = NULL;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001585
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001586 /* This could stand some work */
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001587 for (cur = g_auth; cur; cur = cur->next) {
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001588 size_t l;
1589
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001590 p0 = cur->before_colon;
1591 if (prev != NULL && strcmp(prev, p0) != 0)
1592 continue; /* find next identical */
1593 p = cur->after_colon;
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001594 if (DEBUG)
1595 fprintf(stderr, "checkPerm: '%s' ? '%s'\n", p0, request);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001596
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001597 l = strlen(p0);
1598 if (strncmp(p0, path, l) == 0
1599 && (l == 1 || path[l] == '/' || path[l] == '\0')
1600 ) {
1601 char *u;
1602 /* path match found. Check request */
1603 /* for check next /path:user:password */
1604 prev = p0;
1605 u = strchr(request, ':');
1606 if (u == NULL) {
1607 /* bad request, ':' required */
1608 break;
1609 }
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001610
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001611 if (ENABLE_FEATURE_HTTPD_AUTH_MD5) {
1612 char *cipher;
1613 char *pp;
Eric Andersen35e643b2003-07-28 07:40:39 +00001614
Denis Vlasenko073214f2007-08-17 19:20:07 +00001615 if (strncmp(p, request, u - request) != 0) {
Denis Vlasenko921799d2007-08-19 19:28:09 +00001616 /* user doesn't match */
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001617 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001618 }
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001619 pp = strchr(p, ':');
Denis Vlasenko921799d2007-08-19 19:28:09 +00001620 if (pp && pp[1] == '$' && pp[2] == '1'
1621 && pp[3] == '$' && pp[4]
1622 ) {
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001623 pp++;
1624 cipher = pw_encrypt(u+1, pp);
1625 if (strcmp(cipher, pp) == 0)
1626 goto set_remoteuser_var; /* Ok */
1627 /* unauthorized */
1628 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001629 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001630 }
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001631
1632 if (strcmp(p, request) == 0) {
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001633 set_remoteuser_var:
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001634 remoteuser = strdup(request);
1635 if (remoteuser)
Denis Vlasenko921799d2007-08-19 19:28:09 +00001636 remoteuser[u - request] = '\0';
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001637 return 1; /* Ok */
1638 }
1639 /* unauthorized */
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001640 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001641 } /* for */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001642
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001643 return prev == NULL;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001644}
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001645#endif /* FEATURE_HTTPD_BASIC_AUTH */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001646
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001647/*
1648 * Handle timeouts
1649 */
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001650static void exit_on_signal(int sig) ATTRIBUTE_NORETURN;
1651static void exit_on_signal(int sig)
Eric Andersen07f2fea2004-10-08 08:03:29 +00001652{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001653 send_headers_and_exit(HTTP_REQUEST_TIMEOUT);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001654}
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001655
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001656/*
1657 * Handle an incoming http request and exit.
1658 */
Denis Vlasenko367960b2007-08-18 14:20:21 +00001659static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr) ATTRIBUTE_NORETURN;
1660static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001661{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001662 static const char request_GET[] ALIGN1 = "GET";
1663
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001664 struct stat sb;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001665 char *urlcopy;
1666 char *urlp;
1667 char *tptr;
1668 int http_major_version;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001669 int ip_allowed;
Denis Vlasenko55a99402006-09-30 20:41:44 +00001670#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko073214f2007-08-17 19:20:07 +00001671 const char *prequest;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001672 unsigned long length = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001673 char *cookie = 0;
1674 char *content_type = 0;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001675#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001676 struct sigaction sa;
Denis Vlasenko55a99402006-09-30 20:41:44 +00001677#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001678 int credentials = -1; /* if not required this is Ok */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001679#endif
1680
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001681 /* Allocation of iobuf is postponed until now
1682 * (IOW, server process doesn't need to waste 8k) */
Denis Vlasenko921799d2007-08-19 19:28:09 +00001683 iobuf = xmalloc(IOBUF_SIZE);
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001684
Denis Vlasenko367960b2007-08-18 14:20:21 +00001685 rmt_ip = 0;
1686 if (fromAddr->sa.sa_family == AF_INET) {
1687 rmt_ip = ntohl(fromAddr->sin.sin_addr.s_addr);
1688 }
Denis Vlasenko35465a32007-09-25 11:58:33 +00001689#if ENABLE_FEATURE_IPV6
1690 if (fromAddr->sa.sa_family == AF_INET6
1691 && fromAddr->sin6.sin6_addr.s6_addr32[0] == 0
1692 && fromAddr->sin6.sin6_addr.s6_addr32[1] == 0
1693 && ntohl(fromAddr->sin6.sin6_addr.s6_addr32[2]) == 0xffff)
1694 rmt_ip = ntohl(fromAddr->sin6.sin6_addr.s6_addr32[3]);
1695#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00001696 if (ENABLE_FEATURE_HTTPD_CGI || DEBUG || verbose) {
1697 rmt_ip_str = xmalloc_sockaddr2dotted(&fromAddr->sa);
1698 }
1699 if (verbose) {
1700 /* this trick makes -v logging much simpler */
1701 applet_name = rmt_ip_str;
1702 if (verbose > 2)
1703 bb_error_msg("connected");
1704 }
1705
Denis Vlasenko073214f2007-08-17 19:20:07 +00001706 /* Install timeout handler */
Denis Vlasenko9611cb12007-08-18 14:18:43 +00001707 memset(&sa, 0, sizeof(sa));
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001708 sa.sa_handler = exit_on_signal;
Denis Vlasenko9611cb12007-08-18 14:18:43 +00001709 /* sigemptyset(&sa.sa_mask); - memset should be enough */
1710 /*sa.sa_flags = 0; - no SA_RESTART */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001711 sigaction(SIGALRM, &sa, NULL);
Denis Vlasenko073214f2007-08-17 19:20:07 +00001712 alarm(HEADER_READ_TIMEOUT);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001713
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001714 if (!get_line()) /* EOF or error or empty line */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001715 send_headers_and_exit(HTTP_BAD_REQUEST);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001716
Denis Vlasenko073214f2007-08-17 19:20:07 +00001717 /* Determine type of request (GET/POST) */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001718 urlp = strpbrk(iobuf, " \t");
1719 if (urlp == NULL)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001720 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001721 *urlp++ = '\0';
Denis Vlasenko55a99402006-09-30 20:41:44 +00001722#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko073214f2007-08-17 19:20:07 +00001723 prequest = request_GET;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001724 if (strcasecmp(iobuf, prequest) != 0) {
1725 prequest = "POST";
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001726 if (strcasecmp(iobuf, prequest) != 0)
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001727 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001728 }
1729#else
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001730 if (strcasecmp(iobuf, request_GET) != 0)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001731 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001732#endif
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001733 urlp = skip_whitespace(urlp);
1734 if (urlp[0] != '/')
1735 send_headers_and_exit(HTTP_BAD_REQUEST);
1736
1737 /* Find end of URL and parse HTTP version, if any */
1738 http_major_version = -1;
1739 tptr = strchrnul(urlp, ' ');
1740 /* Is it " HTTP/"? */
1741 if (tptr[0] && strncmp(tptr + 1, HTTP_200, 5) == 0)
1742 http_major_version = (tptr[6] - '0');
1743 *tptr = '\0';
Glenn L McGrath06e95652003-02-09 06:51:14 +00001744
Denis Vlasenko073214f2007-08-17 19:20:07 +00001745 /* Copy URL from after "GET "/"POST " to stack-allocated char[] */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001746 urlcopy = alloca((tptr - urlp) + sizeof("/index.html"));
1747 /*if (urlcopy == NULL)
1748 * send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);*/
1749 strcpy(urlcopy, urlp);
1750 /* NB: urlcopy ptr is never changed after this */
Denis Vlasenko073214f2007-08-17 19:20:07 +00001751
1752 /* Extract url args if present */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001753 tptr = strchr(urlcopy, '?');
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001754 g_query = NULL;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001755 if (tptr) {
1756 *tptr++ = '\0';
1757 g_query = tptr;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001758 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001759
Denis Vlasenko073214f2007-08-17 19:20:07 +00001760 /* Decode URL escape sequences */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001761 tptr = decodeString(urlcopy, 0);
1762 if (tptr == NULL)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001763 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001764 if (tptr == urlcopy + 1) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001765 /* '/' or NUL is encoded */
1766 send_headers_and_exit(HTTP_NOT_FOUND);
1767 }
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001768
Denis Vlasenko073214f2007-08-17 19:20:07 +00001769 /* Canonicalize path */
1770 /* Algorithm stolen from libbb bb_simplify_path(),
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001771 * but don't strdup and reducing trailing slash and protect out root */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001772 urlp = tptr = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001773 do {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001774 if (*urlp == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001775 /* skip duplicate (or initial) slash */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001776 if (*tptr == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001777 continue;
1778 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001779 if (*tptr == '.') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001780 /* skip extra '.' */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001781 if (tptr[1] == '/' || !tptr[1]) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001782 continue;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001783 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001784 /* '..': be careful */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001785 if (tptr[1] == '.' && (tptr[2] == '/' || !tptr[2])) {
1786 ++tptr;
1787 if (urlp == urlcopy) /* protect root */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001788 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001789 while (*--urlp != '/') /* omit previous dir */;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001790 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001791 }
1792 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001793 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001794 *++urlp = *tptr;
1795 } while (*++tptr);
1796 *++urlp = '\0'; /* so keep last character */
1797 tptr = urlp; /* end ptr */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001798
Denis Vlasenko073214f2007-08-17 19:20:07 +00001799 /* If URL is a directory, add '/' */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001800 if (tptr[-1] != '/') {
1801 if (is_directory(urlcopy + 1, 1, &sb)) {
1802 found_moved_temporarily = urlcopy;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001803 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001804 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001805
Denis Vlasenko073214f2007-08-17 19:20:07 +00001806 /* Log it */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001807 if (verbose > 1)
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001808 bb_error_msg("url:%s", urlcopy);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001809
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001810 tptr = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001811 ip_allowed = checkPermIP();
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001812 while (ip_allowed && (tptr = strchr(tptr + 1, '/')) != NULL) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001813 /* have path1/path2 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001814 *tptr = '\0';
1815 if (is_directory(urlcopy + 1, 1, &sb)) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001816 /* may be having subdir config */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001817 parse_conf(urlcopy + 1, SUBDIR_PARSE);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001818 ip_allowed = checkPermIP();
1819 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001820 *tptr = '/';
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001821 }
Denis Vlasenko073214f2007-08-17 19:20:07 +00001822 if (http_major_version >= 0) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001823 /* Request was with "... HTTP/nXXX", and n >= 0 */
Denis Vlasenko073214f2007-08-17 19:20:07 +00001824
1825 /* Read until blank line for HTTP version specified, else parse immediate */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001826 while (1) {
Denis Vlasenko073214f2007-08-17 19:20:07 +00001827 alarm(HEADER_READ_TIMEOUT);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001828 if (!get_line())
1829 break; /* EOF or error or empty line */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001830 if (DEBUG)
1831 bb_error_msg("header: '%s'", iobuf);
Denis Vlasenko073214f2007-08-17 19:20:07 +00001832
Denis Vlasenko55a99402006-09-30 20:41:44 +00001833#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001834 /* try and do our best to parse more lines */
1835 if ((STRNCASECMP(iobuf, "Content-length:") == 0)) {
1836 /* extra read only for POST */
1837 if (prequest != request_GET) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001838 tptr = iobuf + sizeof("Content-length:") - 1;
1839 if (!tptr[0])
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001840 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001841 errno = 0;
1842 /* not using strtoul: it ignores leading minus! */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001843 length = strtol(tptr, &tptr, 10);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001844 /* length is "ulong", but we need to pass it to int later */
1845 /* so we check for negative or too large values in one go: */
1846 /* (long -> ulong conv caused negatives to be seen as > INT_MAX) */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001847 if (tptr[0] || errno || length > INT_MAX)
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001848 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001849 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001850 } else if (STRNCASECMP(iobuf, "Cookie:") == 0) {
1851 cookie = strdup(skip_whitespace(iobuf + sizeof("Cookie:")-1));
1852 } else if (STRNCASECMP(iobuf, "Content-Type:") == 0) {
1853 content_type = strdup(skip_whitespace(iobuf + sizeof("Content-Type:")-1));
1854 } else if (STRNCASECMP(iobuf, "Referer:") == 0) {
1855 referer = strdup(skip_whitespace(iobuf + sizeof("Referer:")-1));
1856 } else if (STRNCASECMP(iobuf, "User-Agent:") == 0) {
1857 user_agent = strdup(skip_whitespace(iobuf + sizeof("User-Agent:")-1));
1858 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001859#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00001860#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001861 if (STRNCASECMP(iobuf, "Authorization:") == 0) {
1862 /* We only allow Basic credentials.
1863 * It shows up as "Authorization: Basic <userid:password>" where
1864 * the userid:password is base64 encoded.
1865 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001866 tptr = skip_whitespace(iobuf + sizeof("Authorization:")-1);
1867 if (STRNCASECMP(tptr, "Basic") != 0)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001868 continue;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001869 tptr += sizeof("Basic")-1;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001870 /* decodeBase64() skips whitespace itself */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001871 decodeBase64(tptr);
1872 credentials = checkPerm(urlcopy, tptr);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001873 }
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001874#endif /* FEATURE_HTTPD_BASIC_AUTH */
Denis Vlasenkof4310172007-09-21 22:35:18 +00001875#if ENABLE_FEATURE_HTTPD_RANGES
1876 if (STRNCASECMP(iobuf, "Range:") == 0) {
1877 // We know only bytes=NNN-[MMM]
1878 char *s = skip_whitespace(iobuf + sizeof("Range:")-1);
1879 if (strncmp(s, "bytes=", 6) == 0) {
1880 s += sizeof("bytes=")-1;
1881 range_start = BB_STRTOOFF(s, &s, 10);
1882 if (s[0] != '-' || range_start < 0) {
1883 range_start = 0;
1884 } else if (s[1]) {
1885 range_end = BB_STRTOOFF(s+1, NULL, 10);
1886 if (errno || range_end < range_start)
1887 range_start = 0;
1888 }
1889 }
1890 }
1891#endif
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001892 } /* while extra header reading */
1893 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001894
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001895 /* We read headers, disable peer timeout */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001896 alarm(0);
1897
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001898 if (strcmp(bb_basename(urlcopy), httpd_conf) == 0 || ip_allowed == 0) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001899 /* protect listing [/path]/httpd_conf or IP deny */
1900 send_headers_and_exit(HTTP_FORBIDDEN);
1901 }
1902
1903#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001904 if (credentials <= 0 && checkPerm(urlcopy, ":") == 0) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001905 send_headers_and_exit(HTTP_UNAUTHORIZED);
1906 }
1907#endif
1908
1909 if (found_moved_temporarily) {
1910 send_headers_and_exit(HTTP_MOVED_TEMPORARILY);
1911 }
1912
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001913 tptr = urlcopy + 1; /* skip first '/' */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001914
1915#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001916 if (strncmp(tptr, "cgi-bin/", 8) == 0) {
1917 if (tptr[8] == '\0') {
Denis Vlasenko073214f2007-08-17 19:20:07 +00001918 /* protect listing "cgi-bin/" */
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001919 send_headers_and_exit(HTTP_FORBIDDEN);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001920 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001921 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001922 }
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00001923#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001924 {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001925 char *suffix = strrchr(tptr, '.');
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001926 if (suffix) {
1927 Htaccess *cur;
1928 for (cur = script_i; cur; cur = cur->next) {
1929 if (strcmp(cur->before_colon + 1, suffix) == 0) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001930 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00001931 }
1932 }
1933 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001934 }
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00001935#endif
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001936 if (prequest != request_GET) {
1937 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
1938 }
Denis Vlasenko5d148e22006-11-21 00:12:09 +00001939#endif /* FEATURE_HTTPD_CGI */
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001940
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001941 if (urlp[-1] == '/')
1942 strcpy(urlp, "index.html");
1943 if (stat(tptr, &sb) == 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00001944 file_size = sb.st_size;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001945 last_mod = sb.st_mtime;
1946 }
Denis Vlasenko5d148e22006-11-21 00:12:09 +00001947#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001948 else if (urlp[-1] == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001949 /* It's a dir URL and there is no index.html
1950 * Try cgi-bin/index.cgi */
1951 if (access("/cgi-bin/index.cgi"+1, X_OK) == 0) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001952 urlp[0] = '\0';
1953 g_query = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001954 send_cgi_and_exit("/cgi-bin/index.cgi", prequest, length, cookie, content_type);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001955 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001956 }
Denis Vlasenko073214f2007-08-17 19:20:07 +00001957#endif
1958 /* else {
1959 * fall through to send_file, it errors out if open fails
1960 * }
1961 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001962
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001963 send_file_and_exit(tptr, TRUE);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001964}
1965
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001966/*
1967 * The main http server function.
Denis Vlasenko367960b2007-08-18 14:20:21 +00001968 * Given a socket, listen for new connections and farm out
1969 * the processing as a [v]forked process.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001970 * Never returns.
1971 */
Denis Vlasenko367960b2007-08-18 14:20:21 +00001972#if BB_MMU
Denis Vlasenko9611cb12007-08-18 14:18:43 +00001973static void mini_httpd(int server_socket) ATTRIBUTE_NORETURN;
1974static void mini_httpd(int server_socket)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001975{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001976 /* NB: it's best to not use xfuncs in this loop before fork().
1977 * Otherwise server may die on transient errors (temporary
1978 * out-of-memory condition, etc), which is Bad(tm).
1979 * Try to do any dangerous calls after fork.
1980 */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001981 while (1) {
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001982 int n;
1983 len_and_sockaddr fromAddr;
1984
1985 /* Wait for connections... */
1986 fromAddr.len = LSA_SIZEOF_SA;
Denis Vlasenko9611cb12007-08-18 14:18:43 +00001987 n = accept(server_socket, &fromAddr.sa, &fromAddr.len);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001988
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001989 if (n < 0)
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001990 continue;
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001991 /* set the KEEPALIVE option to cull dead connections */
1992 setsockopt(n, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
Denis Vlasenko04291bc2006-11-21 10:15:25 +00001993
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001994 if (fork() == 0) {
Denis Vlasenko04291bc2006-11-21 10:15:25 +00001995 /* child */
Denis Vlasenko55a99402006-09-30 20:41:44 +00001996#if ENABLE_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001997 /* Do not reload config on HUP */
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001998 signal(SIGHUP, SIG_IGN);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001999#endif
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002000 close(server_socket);
2001 xmove_fd(n, 0);
2002 xdup2(0, 1);
2003
Denis Vlasenko367960b2007-08-18 14:20:21 +00002004 handle_incoming_and_exit(&fromAddr);
2005 }
2006 /* parent, or fork failed */
2007 close(n);
2008 } /* while (1) */
2009 /* never reached */
2010}
2011#else
2012static void mini_httpd_nommu(int server_socket, int argc, char **argv) ATTRIBUTE_NORETURN;
2013static void mini_httpd_nommu(int server_socket, int argc, char **argv)
2014{
2015 char *argv_copy[argc + 2];
2016
2017 argv_copy[0] = argv[0];
2018 argv_copy[1] = (char*)"-i";
2019 memcpy(&argv_copy[2], &argv[1], argc * sizeof(argv[0]));
2020
2021 /* NB: it's best to not use xfuncs in this loop before vfork().
2022 * Otherwise server may die on transient errors (temporary
2023 * out-of-memory condition, etc), which is Bad(tm).
2024 * Try to do any dangerous calls after fork.
2025 */
2026 while (1) {
2027 int n;
2028 len_and_sockaddr fromAddr;
2029
2030 /* Wait for connections... */
2031 fromAddr.len = LSA_SIZEOF_SA;
2032 n = accept(server_socket, &fromAddr.sa, &fromAddr.len);
2033
2034 if (n < 0)
2035 continue;
2036 /* set the KEEPALIVE option to cull dead connections */
2037 setsockopt(n, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
2038
2039 if (vfork() == 0) {
2040 /* child */
2041#if ENABLE_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
2042 /* Do not reload config on HUP */
2043 signal(SIGHUP, SIG_IGN);
2044#endif
2045 close(server_socket);
2046 xmove_fd(n, 0);
2047 xdup2(0, 1);
2048
2049 /* Run a copy of ourself in inetd mode */
2050 re_exec(argv_copy);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002051 }
Denis Vlasenko921799d2007-08-19 19:28:09 +00002052 /* parent, or vfork failed */
Denis Vlasenko073214f2007-08-17 19:20:07 +00002053 close(n);
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002054 } /* while (1) */
Denis Vlasenko241b1562007-08-17 19:18:47 +00002055 /* never reached */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002056}
Denis Vlasenko56258b62007-06-23 23:14:02 +00002057#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002058
Denis Vlasenko367960b2007-08-18 14:20:21 +00002059/*
2060 * Process a HTTP connection on stdin/out.
2061 * Never returns.
2062 */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002063static void mini_httpd_inetd(void) ATTRIBUTE_NORETURN;
2064static void mini_httpd_inetd(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002065{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002066 len_and_sockaddr fromAddr;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002067
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002068 fromAddr.len = LSA_SIZEOF_SA;
2069 getpeername(0, &fromAddr.sa, &fromAddr.len);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002070 handle_incoming_and_exit(&fromAddr);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002071}
Glenn L McGrath06e95652003-02-09 06:51:14 +00002072
Denis Vlasenko55a99402006-09-30 20:41:44 +00002073#if ENABLE_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
Glenn L McGrath06e95652003-02-09 06:51:14 +00002074static void sighup_handler(int sig)
2075{
Glenn L McGrath06e95652003-02-09 06:51:14 +00002076 struct sigaction sa;
2077
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002078 parse_conf(default_path_httpd_conf, sig == SIGHUP ? SIGNALED_PARSE : FIRST_PARSE);
Denis Vlasenko073214f2007-08-17 19:20:07 +00002079
2080 memset(&sa, 0, sizeof(sa));
Glenn L McGrath06e95652003-02-09 06:51:14 +00002081 sa.sa_handler = sighup_handler;
Denis Vlasenko073214f2007-08-17 19:20:07 +00002082 /*sigemptyset(&sa.sa_mask); - memset should be enough */
Glenn L McGrath06e95652003-02-09 06:51:14 +00002083 sa.sa_flags = SA_RESTART;
2084 sigaction(SIGHUP, &sa, NULL);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002085}
2086#endif
2087
Denis Vlasenko9f609292006-11-05 19:47:33 +00002088enum {
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002089 c_opt_config_file = 0,
2090 d_opt_decode_url,
2091 h_opt_home_httpd,
2092 USE_FEATURE_HTTPD_ENCODE_URL_STR(e_opt_encode_url,)
Denis Vlasenko9f609292006-11-05 19:47:33 +00002093 USE_FEATURE_HTTPD_BASIC_AUTH( r_opt_realm ,)
2094 USE_FEATURE_HTTPD_AUTH_MD5( m_opt_md5 ,)
2095 USE_FEATURE_HTTPD_SETUID( u_opt_setuid ,)
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002096 p_opt_port ,
2097 p_opt_inetd ,
2098 p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002099 p_opt_verbose ,
Denis Vlasenko9f609292006-11-05 19:47:33 +00002100 OPT_CONFIG_FILE = 1 << c_opt_config_file,
2101 OPT_DECODE_URL = 1 << d_opt_decode_url,
2102 OPT_HOME_HTTPD = 1 << h_opt_home_httpd,
2103 OPT_ENCODE_URL = USE_FEATURE_HTTPD_ENCODE_URL_STR((1 << e_opt_encode_url)) + 0,
2104 OPT_REALM = USE_FEATURE_HTTPD_BASIC_AUTH( (1 << r_opt_realm )) + 0,
2105 OPT_MD5 = USE_FEATURE_HTTPD_AUTH_MD5( (1 << m_opt_md5 )) + 0,
2106 OPT_SETUID = USE_FEATURE_HTTPD_SETUID( (1 << u_opt_setuid )) + 0,
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002107 OPT_PORT = 1 << p_opt_port,
2108 OPT_INETD = 1 << p_opt_inetd,
2109 OPT_FOREGROUND = 1 << p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002110 OPT_VERBOSE = 1 << p_opt_verbose,
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002111};
Eric Andersena3bb3e62003-06-26 09:05:32 +00002112
Eric Andersena3bb3e62003-06-26 09:05:32 +00002113
Bernhard Reutner-Fischerfebe3c42007-04-04 20:52:03 +00002114int httpd_main(int argc, char **argv);
2115int httpd_main(int argc, char **argv)
Glenn L McGrath06e95652003-02-09 06:51:14 +00002116{
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002117 int server_socket = server_socket; /* for gcc */
Denis Vlasenko67b23e62006-10-03 21:00:06 +00002118 unsigned opt;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002119 char *url_for_decode;
2120 USE_FEATURE_HTTPD_ENCODE_URL_STR(const char *url_for_encode;)
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002121 USE_FEATURE_HTTPD_SETUID(const char *s_ugid = NULL;)
2122 USE_FEATURE_HTTPD_SETUID(struct bb_uidgid_t ugid;)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002123 USE_FEATURE_HTTPD_AUTH_MD5(const char *pass;)
Eric Andersen35e643b2003-07-28 07:40:39 +00002124
Denis Vlasenko073214f2007-08-17 19:20:07 +00002125 INIT_G();
2126
Denis Vlasenkofcdb00f2006-11-21 00:09:37 +00002127#if ENABLE_LOCALE_SUPPORT
2128 /* Undo busybox.c: we want to speak English in http (dates etc) */
2129 setlocale(LC_TIME, "C");
2130#endif
2131
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002132 home_httpd = xrealloc_getcwd_or_warn(NULL);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002133 /* -v counts, -i implies -f */
2134 opt_complementary = "vv:if";
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002135 /* We do not "absolutize" path given by -h (home) opt.
2136 * If user gives relative path in -h, $SCRIPT_FILENAME can end up
2137 * relative too. */
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00002138 opt = getopt32(argv, "c:d:h:"
Denis Vlasenko53091ec2007-03-26 13:35:09 +00002139 USE_FEATURE_HTTPD_ENCODE_URL_STR("e:")
2140 USE_FEATURE_HTTPD_BASIC_AUTH("r:")
2141 USE_FEATURE_HTTPD_AUTH_MD5("m:")
2142 USE_FEATURE_HTTPD_SETUID("u:")
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002143 "p:ifv",
2144 &configFile, &url_for_decode, &home_httpd
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002145 USE_FEATURE_HTTPD_ENCODE_URL_STR(, &url_for_encode)
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002146 USE_FEATURE_HTTPD_BASIC_AUTH(, &g_realm)
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002147 USE_FEATURE_HTTPD_AUTH_MD5(, &pass)
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002148 USE_FEATURE_HTTPD_SETUID(, &s_ugid)
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002149 , &bind_addr_or_port
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002150 , &verbose
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002151 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002152 if (opt & OPT_DECODE_URL) {
Denis Vlasenko367960b2007-08-18 14:20:21 +00002153 fputs(decodeString(url_for_decode, 1), stdout);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002154 return 0;
2155 }
Denis Vlasenko55a99402006-09-30 20:41:44 +00002156#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002157 if (opt & OPT_ENCODE_URL) {
Denis Vlasenko367960b2007-08-18 14:20:21 +00002158 fputs(encodeString(url_for_encode), stdout);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002159 return 0;
2160 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002161#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002162#if ENABLE_FEATURE_HTTPD_AUTH_MD5
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002163 if (opt & OPT_MD5) {
Denis Vlasenko55a99402006-09-30 20:41:44 +00002164 puts(pw_encrypt(pass, "$1$"));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002165 return 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002166 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002167#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002168#if ENABLE_FEATURE_HTTPD_SETUID
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002169 if (opt & OPT_SETUID) {
Denis Vlasenko3bba5452006-12-30 17:57:03 +00002170 if (!get_uidgid(&ugid, s_ugid, 1))
2171 bb_error_msg_and_die("unrecognized user[:group] "
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002172 "name '%s'", s_ugid);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002173 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002174#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002175
Denis Vlasenko367960b2007-08-18 14:20:21 +00002176#if !BB_MMU
2177 if (!(opt & OPT_FOREGROUND)) {
2178 bb_daemonize_or_rexec(0, argv); /* don't change current directory */
2179 }
2180#endif
2181
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002182 xchdir(home_httpd);
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002183 if (!(opt & OPT_INETD)) {
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00002184 signal(SIGCHLD, SIG_IGN);
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002185 server_socket = openServer();
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002186#if ENABLE_FEATURE_HTTPD_SETUID
2187 /* drop privileges */
2188 if (opt & OPT_SETUID) {
2189 if (ugid.gid != (gid_t)-1) {
2190 if (setgroups(1, &ugid.gid) == -1)
Denis Vlasenko8e858e22007-03-07 09:35:43 +00002191 bb_perror_msg_and_die("setgroups");
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002192 xsetgid(ugid.gid);
2193 }
2194 xsetuid(ugid.uid);
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002195 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002196#endif
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002197 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002198
Denis Vlasenko2535f122007-09-15 13:28:30 +00002199#if 0 /*was #if ENABLE_FEATURE_HTTPD_CGI*/
2200 /* User can do it himself: 'env - PATH="$PATH" httpd'
2201 * We don't do it because we don't want to screw users
2202 * which want to do
2203 * 'env - VAR1=val1 VAR2=val2 https'
2204 * and have VAR1 and VAR2 values visible in their CGIs.
2205 * Besides, it is also smaller. */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002206 {
2207 char *p = getenv("PATH");
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002208 /* env strings themself are not freed, no need to strdup(p): */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002209 clearenv();
2210 if (p)
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002211 putenv(p - 5);
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002212// if (!(opt & OPT_INETD))
2213// setenv_long("SERVER_PORT", ???);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002214 }
Glenn L McGrathfe538ba2003-09-10 23:35:45 +00002215#endif
2216
Denis Vlasenko55a99402006-09-30 20:41:44 +00002217#if ENABLE_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
Denis Vlasenko367960b2007-08-18 14:20:21 +00002218 if (!(opt & OPT_INETD))
2219 sighup_handler(0);
2220 else /* do not install HUP handler in inetd mode */
Glenn L McGrath06e95652003-02-09 06:51:14 +00002221#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00002222 parse_conf(default_path_httpd_conf, FIRST_PARSE);
2223
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00002224 xfunc_error_retval = 0;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002225 if (opt & OPT_INETD)
2226 mini_httpd_inetd();
Denis Vlasenko367960b2007-08-18 14:20:21 +00002227#if BB_MMU
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002228 if (!(opt & OPT_FOREGROUND))
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002229 bb_daemonize(0); /* don't change current directory */
2230 mini_httpd(server_socket); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002231#else
Denis Vlasenko367960b2007-08-18 14:20:21 +00002232 mini_httpd_nommu(server_socket, argc, argv); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002233#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00002234 /* return 0; */
Glenn L McGrath06e95652003-02-09 06:51:14 +00002235}