blob: d6157aca22b6acc81b8f273e928eba8e2b116bec [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 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02008 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Glenn L McGrath58c708a2003-01-05 04:01:56 +00009 *
10 *****************************************************************************
11 *
Glenn L McGrath06e95652003-02-09 06:51:14 +000012 * Typical usage:
Denys Vlasenko535ce1d2010-07-25 03:20:25 +020013 * For non root user:
14 * httpd -p 8080 -h $HOME/public_html
15 * For daemon start from rc script with uid=0:
16 * httpd -u www
17 * which is equivalent to (assuming user www has uid 80):
18 * httpd -p 80 -u 80 -h $PWD -c /etc/httpd.conf -r "Web Server Authentication"
Glenn L McGrath06e95652003-02-09 06:51:14 +000019 *
Denys Vlasenko535ce1d2010-07-25 03:20:25 +020020 * When an url starts with "/cgi-bin/" it is assumed to be a cgi script.
21 * The server changes directory to the location of the script and executes it
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +000022 * after setting QUERY_STRING and other environment variables.
Glenn L McGrath58c708a2003-01-05 04:01:56 +000023 *
Denys Vlasenkod277f552011-04-10 03:08:22 +020024 * If directory URL is given, no index.html is found and CGI support is enabled,
25 * cgi-bin/index.cgi will be run. Directory to list is ../$QUERY_STRING.
26 * See httpd_indexcgi.c for an example GCI code.
27 *
Denis Vlasenko8b458372006-11-21 21:23:21 +000028 * Doc:
29 * "CGI Environment Variables": http://hoohoo.ncsa.uiuc.edu/cgi/env.html
30 *
Denys Vlasenko33d8d082009-09-10 01:46:02 +020031 * The applet can also be invoked as an url arg decoder and html text encoder
Glenn L McGrath58c708a2003-01-05 04:01:56 +000032 * as follows:
Denys Vlasenko535ce1d2010-07-25 03:20:25 +020033 * foo=`httpd -d $foo` # decode "Hello%20World" as "Hello World"
34 * bar=`httpd -e "<Hello World>"` # encode as "&#60Hello&#32World&#62"
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000035 * Note that url encoding for arguments is not the same as html encoding for
Bernhard Reutner-Fischer62851172009-05-03 18:53:22 +020036 * presentation. -d decodes an url-encoded argument while -e encodes in html
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000037 * for page display.
Glenn L McGrath58c708a2003-01-05 04:01:56 +000038 *
39 * httpd.conf has the following format:
Eric Andersenc7bda1c2004-03-15 08:29:22 +000040 *
Denis Vlasenko395410b2008-07-20 23:25:32 +000041 * H:/serverroot # define the server root. It will override -h
Glenn L McGrathb65422c2003-09-08 10:59:27 +000042 * A:172.20. # Allow address from 172.20.0.0/16
43 * A:10.0.0.0/25 # Allow any address from 10.0.0.0-10.0.0.127
44 * A:10.0.0.0/255.255.255.128 # Allow any address that previous set
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000045 * A:127.0.0.1 # Allow local loopback connections
46 * D:* # Deny from other IP connections
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +000047 * E404:/path/e404.html # /path/e404.html is the 404 (not found) error page
Denis Vlasenkofcd878e2007-12-29 02:16:23 +000048 * I:index.html # Show index.html when a directory is requested
Denis Vlasenkof74194e2007-10-18 12:54:39 +000049 *
50 * P:/url:[http://]hostname[:port]/new/path
51 * # When /urlXXXXXX is requested, reverse proxy
52 * # it to http://hostname[:port]/new/pathXXXXXX
53 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000054 * /cgi-bin:foo:bar # Require user foo, pwd bar on urls starting with /cgi-bin/
55 * /adm:admin:setup # Require user admin, pwd setup on urls starting with /adm/
56 * /adm:toor:PaSsWd # or user toor, pwd PaSsWd on urls starting with /adm/
57 * .au:audio/basic # additional mime type for audio.au files
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +000058 * *.php:/path/php # run xxx.php through an interpreter
Eric Andersenc7bda1c2004-03-15 08:29:22 +000059 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +000060 * A/D may be as a/d or allow/deny - only first char matters.
61 * Deny/Allow IP logic:
62 * - Default is to allow all (Allow all (A:*) is a no-op).
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000063 * - Deny rules take precedence over allow rules.
Denis Vlasenko0eb406c2008-06-13 09:53:06 +000064 * - "Deny all" rule (D:*) is applied last.
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 *
Denys Vlasenkod277f552011-04-10 03:08:22 +020078 * If a sub directory contains 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 */
Bernhard Reutner-Fischer62851172009-05-03 18:53:22 +020098 /* TODO: use TCP_CORK, parse_config() */
Glenn L McGrath58c708a2003-01-05 04:01:56 +000099
Pere Orga5bc8c002011-04-11 03:29:49 +0200100//usage:#define httpd_trivial_usage
101//usage: "[-ifv[v]]"
102//usage: " [-c CONFFILE]"
103//usage: " [-p [IP:]PORT]"
104//usage: IF_FEATURE_HTTPD_SETUID(" [-u USER[:GRP]]")
105//usage: IF_FEATURE_HTTPD_BASIC_AUTH(" [-r REALM]")
106//usage: " [-h HOME]\n"
107//usage: "or httpd -d/-e" IF_FEATURE_HTTPD_AUTH_MD5("/-m") " STRING"
108//usage:#define httpd_full_usage "\n\n"
109//usage: "Listen for incoming HTTP requests\n"
110//usage: "\nOptions:"
111//usage: "\n -i Inetd mode"
112//usage: "\n -f Don't daemonize"
113//usage: "\n -v[v] Verbose"
114//usage: "\n -p [IP:]PORT Bind to IP:PORT (default *:80)"
115//usage: IF_FEATURE_HTTPD_SETUID(
116//usage: "\n -u USER[:GRP] Set uid/gid after binding to port")
117//usage: IF_FEATURE_HTTPD_BASIC_AUTH(
118//usage: "\n -r REALM Authentication Realm for Basic Authentication")
119//usage: "\n -h HOME Home directory (default .)"
120//usage: "\n -c FILE Configuration file (default {/etc,HOME}/httpd.conf)"
121//usage: IF_FEATURE_HTTPD_AUTH_MD5(
122//usage: "\n -m STRING MD5 crypt STRING")
123//usage: "\n -e STRING HTML encode STRING"
124//usage: "\n -d STRING URL decode STRING"
125
Denis Vlasenkob6adbf12007-05-26 19:00:18 +0000126#include "libbb.h"
Denis Vlasenko1b9064d2007-08-12 21:05:49 +0000127#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
Denis Vlasenko1cbfd982009-02-04 23:43:44 +0000128# include <sys/sendfile.h>
Denis Vlasenko1b9064d2007-08-12 21:05:49 +0000129#endif
Denis Vlasenko69981422007-01-07 21:25:12 +0000130/* amount of buffering in a pipe */
131#ifndef PIPE_BUF
132# define PIPE_BUF 4096
133#endif
Denys Vlasenko535ce1d2010-07-25 03:20:25 +0200134
135#define DEBUG 0
136
137#define IOBUF_SIZE 8192
Denis Vlasenko32a471e2007-09-23 13:56:57 +0000138#if PIPE_BUF >= IOBUF_SIZE
139# error "PIPE_BUF >= IOBUF_SIZE"
140#endif
Denis Vlasenko073214f2007-08-17 19:20:07 +0000141
142#define HEADER_READ_TIMEOUT 60
143
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000144static const char DEFAULT_PATH_HTTPD_CONF[] ALIGN1 = "/etc";
145static const char HTTPD_CONF[] ALIGN1 = "httpd.conf";
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000146static const char HTTP_200[] ALIGN1 = "HTTP/1.0 200 OK\r\n";
Denys Vlasenko535ce1d2010-07-25 03:20:25 +0200147static const char index_html[] ALIGN1 = "index.html";
Glenn L McGrath06e95652003-02-09 06:51:14 +0000148
Denis Vlasenko073214f2007-08-17 19:20:07 +0000149typedef struct has_next_ptr {
150 struct has_next_ptr *next;
151} has_next_ptr;
Eric Andersen07f2fea2004-10-08 08:03:29 +0000152
Denis Vlasenko073214f2007-08-17 19:20:07 +0000153/* Must have "next" as a first member */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000154typedef struct Htaccess {
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000155 struct Htaccess *next;
Denis Vlasenko073214f2007-08-17 19:20:07 +0000156 char *after_colon;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000157 char before_colon[1]; /* really bigger, must be last */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000158} Htaccess;
159
Denis Vlasenko073214f2007-08-17 19:20:07 +0000160/* Must have "next" as a first member */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000161typedef struct Htaccess_IP {
Denis Vlasenko073214f2007-08-17 19:20:07 +0000162 struct Htaccess_IP *next;
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000163 unsigned ip;
164 unsigned mask;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000165 int allow_deny;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000166} Htaccess_IP;
167
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000168/* Must have "next" as a first member */
169typedef struct Htaccess_Proxy {
170 struct Htaccess_Proxy *next;
171 char *url_from;
172 char *host_port;
173 char *url_to;
174} Htaccess_Proxy;
175
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000176enum {
177 HTTP_OK = 200,
Denis Vlasenkof4310172007-09-21 22:35:18 +0000178 HTTP_PARTIAL_CONTENT = 206,
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000179 HTTP_MOVED_TEMPORARILY = 302,
180 HTTP_BAD_REQUEST = 400, /* malformed syntax */
181 HTTP_UNAUTHORIZED = 401, /* authentication needed, respond with auth hdr */
182 HTTP_NOT_FOUND = 404,
183 HTTP_FORBIDDEN = 403,
184 HTTP_REQUEST_TIMEOUT = 408,
185 HTTP_NOT_IMPLEMENTED = 501, /* used for unrecognized requests */
186 HTTP_INTERNAL_SERVER_ERROR = 500,
187 HTTP_CONTINUE = 100,
188#if 0 /* future use */
189 HTTP_SWITCHING_PROTOCOLS = 101,
190 HTTP_CREATED = 201,
191 HTTP_ACCEPTED = 202,
192 HTTP_NON_AUTHORITATIVE_INFO = 203,
193 HTTP_NO_CONTENT = 204,
194 HTTP_MULTIPLE_CHOICES = 300,
195 HTTP_MOVED_PERMANENTLY = 301,
196 HTTP_NOT_MODIFIED = 304,
197 HTTP_PAYMENT_REQUIRED = 402,
198 HTTP_BAD_GATEWAY = 502,
199 HTTP_SERVICE_UNAVAILABLE = 503, /* overload, maintenance */
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000200#endif
201};
202
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000203static const uint16_t http_response_type[] ALIGN2 = {
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000204 HTTP_OK,
Denis Vlasenkof4310172007-09-21 22:35:18 +0000205#if ENABLE_FEATURE_HTTPD_RANGES
206 HTTP_PARTIAL_CONTENT,
207#endif
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000208 HTTP_MOVED_TEMPORARILY,
209 HTTP_REQUEST_TIMEOUT,
210 HTTP_NOT_IMPLEMENTED,
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +0000211#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000212 HTTP_UNAUTHORIZED,
213#endif
214 HTTP_NOT_FOUND,
215 HTTP_BAD_REQUEST,
216 HTTP_FORBIDDEN,
217 HTTP_INTERNAL_SERVER_ERROR,
218#if 0 /* not implemented */
219 HTTP_CREATED,
220 HTTP_ACCEPTED,
221 HTTP_NO_CONTENT,
222 HTTP_MULTIPLE_CHOICES,
223 HTTP_MOVED_PERMANENTLY,
224 HTTP_NOT_MODIFIED,
225 HTTP_BAD_GATEWAY,
226 HTTP_SERVICE_UNAVAILABLE,
227#endif
228};
229
230static const struct {
231 const char *name;
232 const char *info;
233} http_response[ARRAY_SIZE(http_response_type)] = {
234 { "OK", NULL },
Denis Vlasenkof4310172007-09-21 22:35:18 +0000235#if ENABLE_FEATURE_HTTPD_RANGES
236 { "Partial Content", NULL },
237#endif
238 { "Found", NULL },
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000239 { "Request Timeout", "No request appeared within 60 seconds" },
240 { "Not Implemented", "The requested method is not recognized" },
241#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
242 { "Unauthorized", "" },
243#endif
244 { "Not Found", "The requested URL was not found" },
245 { "Bad Request", "Unsupported method" },
246 { "Forbidden", "" },
247 { "Internal Server Error", "Internal Server Error" },
248#if 0 /* not implemented */
249 { "Created" },
250 { "Accepted" },
251 { "No Content" },
252 { "Multiple Choices" },
253 { "Moved Permanently" },
254 { "Not Modified" },
255 { "Bad Gateway", "" },
256 { "Service Unavailable", "" },
257#endif
258};
259
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000260struct globals {
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000261 int verbose; /* must be int (used by getopt32) */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000262 smallint flg_deny_all;
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000263
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200264 unsigned rmt_ip; /* used for IP-based allow/deny rules */
Denis Vlasenko37c33162007-08-19 18:54:22 +0000265 time_t last_mod;
Denis Vlasenko37c33162007-08-19 18:54:22 +0000266 char *rmt_ip_str; /* for $REMOTE_ADDR and $REMOTE_PORT */
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000267 const char *bind_addr_or_port;
268
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000269 const char *g_query;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000270 const char *opt_c_configFile;
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000271 const char *home_httpd;
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000272 const char *index_page;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000273
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000274 const char *found_mime_type;
275 const char *found_moved_temporarily;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000276 Htaccess_IP *ip_a_d; /* config allow/deny lines */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000277
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000278 IF_FEATURE_HTTPD_BASIC_AUTH(const char *g_realm;)
279 IF_FEATURE_HTTPD_BASIC_AUTH(char *remoteuser;)
280 IF_FEATURE_HTTPD_CGI(char *referer;)
281 IF_FEATURE_HTTPD_CGI(char *user_agent;)
282 IF_FEATURE_HTTPD_CGI(char *host;)
283 IF_FEATURE_HTTPD_CGI(char *http_accept;)
284 IF_FEATURE_HTTPD_CGI(char *http_accept_language;)
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +0000285
Denis Vlasenkof4310172007-09-21 22:35:18 +0000286 off_t file_size; /* -1 - unknown */
287#if ENABLE_FEATURE_HTTPD_RANGES
288 off_t range_start;
289 off_t range_end;
290 off_t range_len;
291#endif
292
Denis Vlasenko55a99402006-09-30 20:41:44 +0000293#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000294 Htaccess *g_auth; /* config user:password lines */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000295#endif
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000296 Htaccess *mime_a; /* config mime types */
Denis Vlasenko55a99402006-09-30 20:41:44 +0000297#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000298 Htaccess *script_i; /* config script interpreters */
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000299#endif
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200300 char *iobuf; /* [IOBUF_SIZE] */
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000301#define hdr_buf bb_common_bufsiz1
302 char *hdr_ptr;
303 int hdr_cnt;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000304#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
305 const char *http_error_page[ARRAY_SIZE(http_response_type)];
306#endif
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000307#if ENABLE_FEATURE_HTTPD_PROXY
308 Htaccess_Proxy *proxy;
309#endif
Peter Korsgaard7a2ba322010-07-25 03:20:53 +0200310#if ENABLE_FEATURE_HTTPD_GZIP
311 /* client can handle gzip / we are going to send gzip */
312 smallint content_gzip;
313#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000314};
315#define G (*ptr_to_globals)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000316#define verbose (G.verbose )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000317#define flg_deny_all (G.flg_deny_all )
318#define rmt_ip (G.rmt_ip )
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000319#define bind_addr_or_port (G.bind_addr_or_port)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000320#define g_query (G.g_query )
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000321#define opt_c_configFile (G.opt_c_configFile )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000322#define home_httpd (G.home_httpd )
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000323#define index_page (G.index_page )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000324#define found_mime_type (G.found_mime_type )
325#define found_moved_temporarily (G.found_moved_temporarily)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000326#define last_mod (G.last_mod )
327#define ip_a_d (G.ip_a_d )
328#define g_realm (G.g_realm )
329#define remoteuser (G.remoteuser )
330#define referer (G.referer )
331#define user_agent (G.user_agent )
Denis Vlasenko9d1d4c02008-11-22 20:29:35 +0000332#define host (G.host )
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +0000333#define http_accept (G.http_accept )
334#define http_accept_language (G.http_accept_language)
Denis Vlasenkof4310172007-09-21 22:35:18 +0000335#define file_size (G.file_size )
336#if ENABLE_FEATURE_HTTPD_RANGES
337#define range_start (G.range_start )
338#define range_end (G.range_end )
339#define range_len (G.range_len )
Denis Vlasenko1cbfd982009-02-04 23:43:44 +0000340#else
341enum {
342 range_start = 0,
343 range_end = MAXINT(off_t) - 1,
344 range_len = MAXINT(off_t),
345};
Denis Vlasenkof4310172007-09-21 22:35:18 +0000346#endif
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000347#define rmt_ip_str (G.rmt_ip_str )
348#define g_auth (G.g_auth )
349#define mime_a (G.mime_a )
350#define script_i (G.script_i )
351#define iobuf (G.iobuf )
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000352#define hdr_ptr (G.hdr_ptr )
353#define hdr_cnt (G.hdr_cnt )
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000354#define http_error_page (G.http_error_page )
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000355#define proxy (G.proxy )
Peter Korsgaard7a2ba322010-07-25 03:20:53 +0200356#if ENABLE_FEATURE_HTTPD_GZIP
357# define content_gzip (G.content_gzip )
358#else
359# define content_gzip 0
360#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000361#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000362 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000363 IF_FEATURE_HTTPD_BASIC_AUTH(g_realm = "Web Server Authentication";) \
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000364 bind_addr_or_port = "80"; \
Denys Vlasenko108b8c52009-09-08 21:17:49 +0200365 index_page = index_html; \
Denis Vlasenkof4310172007-09-21 22:35:18 +0000366 file_size = -1; \
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000367} while (0)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000368
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000369
Denis Vlasenko0bb993f2006-11-21 00:06:28 +0000370#define STRNCASECMP(a, str) strncasecmp((a), (str), sizeof(str)-1)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000371
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000372/* Prototypes */
Denis Vlasenko2f518b02008-02-21 00:12:07 +0000373enum {
374 SEND_HEADERS = (1 << 0),
375 SEND_BODY = (1 << 1),
376 SEND_HEADERS_AND_BODY = SEND_HEADERS + SEND_BODY,
377};
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000378static void send_file_and_exit(const char *url, int what) NORETURN;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000379
Denis Vlasenko073214f2007-08-17 19:20:07 +0000380static void free_llist(has_next_ptr **pptr)
381{
382 has_next_ptr *cur = *pptr;
383 while (cur) {
384 has_next_ptr *t = cur;
385 cur = cur->next;
386 free(t);
387 }
388 *pptr = NULL;
389}
390
Denis Vlasenko073214f2007-08-17 19:20:07 +0000391static ALWAYS_INLINE void free_Htaccess_list(Htaccess **pptr)
392{
393 free_llist((has_next_ptr**)pptr);
394}
Denis Vlasenko073214f2007-08-17 19:20:07 +0000395
396static ALWAYS_INLINE void free_Htaccess_IP_list(Htaccess_IP **pptr)
397{
398 free_llist((has_next_ptr**)pptr);
399}
Glenn L McGrath06e95652003-02-09 06:51:14 +0000400
Denis Vlasenkod867f322007-08-19 21:15:42 +0000401/* Returns presumed mask width in bits or < 0 on error.
402 * Updates strp, stores IP at provided pointer */
403static int scan_ip(const char **strp, unsigned *ipp, unsigned char endc)
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000404{
Denis Vlasenkod867f322007-08-19 21:15:42 +0000405 const char *p = *strp;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000406 int auto_mask = 8;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000407 unsigned ip = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000408 int j;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000409
Denis Vlasenkod867f322007-08-19 21:15:42 +0000410 if (*p == '/')
411 return -auto_mask;
412
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000413 for (j = 0; j < 4; j++) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000414 unsigned octet;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000415
Denis Vlasenkod867f322007-08-19 21:15:42 +0000416 if ((*p < '0' || *p > '9') && *p != '/' && *p)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000417 return -auto_mask;
418 octet = 0;
419 while (*p >= '0' && *p <= '9') {
420 octet *= 10;
421 octet += *p - '0';
422 if (octet > 255)
423 return -auto_mask;
424 p++;
425 }
426 if (*p == '.')
427 p++;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000428 if (*p != '/' && *p)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000429 auto_mask += 8;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000430 ip = (ip << 8) | octet;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000431 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000432 if (*p) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000433 if (*p != endc)
434 return -auto_mask;
435 p++;
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000436 if (*p == '\0')
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000437 return -auto_mask;
438 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000439 *ipp = ip;
440 *strp = p;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000441 return auto_mask;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000442}
443
Denis Vlasenkod867f322007-08-19 21:15:42 +0000444/* Returns 0 on success. Stores IP and mask at provided pointers */
445static int scan_ip_mask(const char *str, unsigned *ipp, unsigned *maskp)
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000446{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000447 int i;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000448 unsigned mask;
449 char *p;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000450
Denis Vlasenkod867f322007-08-19 21:15:42 +0000451 i = scan_ip(&str, ipp, '/');
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000452 if (i < 0)
453 return i;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000454
Denis Vlasenkod867f322007-08-19 21:15:42 +0000455 if (*str) {
456 /* there is /xxx after dotted-IP address */
457 i = bb_strtou(str, &p, 10);
458 if (*p == '.') {
459 /* 'xxx' itself is dotted-IP mask, parse it */
460 /* (return 0 (success) only if it has N.N.N.N form) */
461 return scan_ip(&str, maskp, '\0') - 32;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000462 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000463 if (*p)
464 return -1;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000465 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000466
467 if (i > 32)
Denis Vlasenko92758142006-10-03 19:56:34 +0000468 return -1;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000469
470 if (sizeof(unsigned) == 4 && i == 32) {
471 /* mask >>= 32 below may not work */
472 mask = 0;
473 } else {
474 mask = 0xffffffff;
475 mask >>= i;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000476 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000477 /* i == 0 -> *maskp = 0x00000000
478 * i == 1 -> *maskp = 0x80000000
479 * i == 4 -> *maskp = 0xf0000000
480 * i == 31 -> *maskp = 0xfffffffe
481 * i == 32 -> *maskp = 0xffffffff */
482 *maskp = (uint32_t)(~mask);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000483 return 0;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000484}
485
Denis Vlasenko073214f2007-08-17 19:20:07 +0000486/*
487 * Parse configuration file into in-memory linked list.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000488 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000489 * Any previous IP rules are discarded.
490 * If the flag argument is not SUBDIR_PARSE then all /path and mime rules
491 * are also discarded. That is, previous settings are retained if flag is
492 * SUBDIR_PARSE.
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000493 * Error pages are only parsed on the main config file.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000494 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000495 * path Path where to look for httpd.conf (without filename).
496 * flag Type of the parse request.
497 */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000498/* flag param: */
499enum {
500 FIRST_PARSE = 0, /* path will be "/etc" */
501 SIGNALED_PARSE = 1, /* path will be "/etc" */
502 SUBDIR_PARSE = 2, /* path will be derived from URL */
503};
Glenn L McGrath06e95652003-02-09 06:51:14 +0000504static void parse_conf(const char *path, int flag)
505{
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000506 /* internally used extra flag state */
507 enum { TRY_CURDIR_PARSE = 3 };
508
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000509 FILE *f;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000510 const char *filename;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000511 char buf[160];
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000512
Denis Vlasenko073214f2007-08-17 19:20:07 +0000513 /* discard old rules */
514 free_Htaccess_IP_list(&ip_a_d);
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000515 flg_deny_all = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000516 /* retain previous auth and mime config only for subdir parse */
517 if (flag != SUBDIR_PARSE) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000518 free_Htaccess_list(&mime_a);
Denis Vlasenko55a99402006-09-30 20:41:44 +0000519#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko073214f2007-08-17 19:20:07 +0000520 free_Htaccess_list(&g_auth);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000521#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000522#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000523 free_Htaccess_list(&script_i);
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000524#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000525 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000526
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000527 filename = opt_c_configFile;
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000528 if (flag == SUBDIR_PARSE || filename == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000529 filename = alloca(strlen(path) + sizeof(HTTPD_CONF) + 2);
530 sprintf((char *)filename, "%s/%s", path, HTTPD_CONF);
Glenn L McGrath393183d2003-05-26 14:07:50 +0000531 }
532
Denis Vlasenko5415c852008-07-21 23:05:26 +0000533 while ((f = fopen_for_read(filename)) == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000534 if (flag >= SUBDIR_PARSE) { /* SUBDIR or TRY_CURDIR */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000535 /* config file not found, no changes to config */
536 return;
537 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000538 if (flag == FIRST_PARSE) {
539 /* -c CONFFILE given, but CONFFILE doesn't exist? */
540 if (opt_c_configFile)
541 bb_simple_perror_msg_and_die(opt_c_configFile);
542 /* else: no -c, thus we looked at /etc/httpd.conf,
543 * and it's not there. try ./httpd.conf: */
544 }
545 flag = TRY_CURDIR_PARSE;
546 filename = HTTPD_CONF;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000547 }
548
Denis Vlasenko55a99402006-09-30 20:41:44 +0000549#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000550 /* in "/file:user:pass" lines, we prepend path in subdirs */
551 if (flag != SUBDIR_PARSE)
552 path = "";
Glenn L McGrath06e95652003-02-09 06:51:14 +0000553#endif
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000554 /* The lines can be:
555 *
556 * I:default_index_file
557 * H:http_home
558 * [AD]:IP[/mask] # allow/deny, * for wildcard
559 * Ennn:error.html # error page for status nnn
560 * P:/url:[http://]hostname[:port]/new/path # reverse proxy
561 * .ext:mime/type # mime type
562 * *.php:/path/php # run xxx.php through an interpreter
563 * /file:user:pass # username and password
564 */
565 while (fgets(buf, sizeof(buf), f) != NULL) {
566 unsigned strlen_buf;
567 unsigned char ch;
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200568 char *after_colon;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000569
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000570 { /* remove all whitespace, and # comments */
571 char *p, *p0;
572
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200573 p0 = buf;
574 /* skip non-whitespace beginning. Often the whole line
575 * is non-whitespace. We want this case to work fast,
576 * without needless copying, therefore we don't merge
577 * this operation into next while loop. */
578 while ((ch = *p0) != '\0' && ch != '\n' && ch != '#'
579 && ch != ' ' && ch != '\t'
580 ) {
581 p0++;
582 }
583 p = p0;
584 /* if we enter this loop, we have some whitespace.
585 * discard it */
586 while (ch != '\0' && ch != '\n' && ch != '#') {
587 if (ch != ' ' && ch != '\t') {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000588 *p++ = ch;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000589 }
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200590 ch = *++p0;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000591 }
592 *p = '\0';
593 strlen_buf = p - buf;
Denis Vlasenko00643ca2009-04-22 13:52:22 +0000594 if (strlen_buf == 0)
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200595 continue; /* empty line */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000596 }
597
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200598 after_colon = strchr(buf, ':');
Denis Vlasenko00643ca2009-04-22 13:52:22 +0000599 /* strange line? */
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200600 if (after_colon == NULL || *++after_colon == '\0')
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000601 goto config_error;
602
603 ch = (buf[0] & ~0x20); /* toupper if it's a letter */
604
605 if (ch == 'I') {
Denys Vlasenko108b8c52009-09-08 21:17:49 +0200606 if (index_page != index_html)
607 free((char*)index_page);
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000608 index_page = xstrdup(after_colon);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000609 continue;
610 }
611
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000612 /* do not allow jumping around using H in subdir's configs */
613 if (flag == FIRST_PARSE && ch == 'H') {
614 home_httpd = xstrdup(after_colon);
615 xchdir(home_httpd);
616 continue;
617 }
618
619 if (ch == 'A' || ch == 'D') {
620 Htaccess_IP *pip;
621
622 if (*after_colon == '*') {
623 if (ch == 'D') {
624 /* memorize "deny all" */
625 flg_deny_all = 1;
626 }
627 /* skip assumed "A:*", it is a default anyway */
628 continue;
629 }
630 /* store "allow/deny IP/mask" line */
631 pip = xzalloc(sizeof(*pip));
632 if (scan_ip_mask(after_colon, &pip->ip, &pip->mask)) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000633 /* IP{/mask} syntax error detected, protect all */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000634 ch = 'D';
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000635 pip->mask = 0;
636 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000637 pip->allow_deny = ch;
638 if (ch == 'D') {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000639 /* Deny:from_IP - prepend */
640 pip->next = ip_a_d;
641 ip_a_d = pip;
642 } else {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000643 /* A:from_IP - append (thus all D's precedes A's) */
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000644 Htaccess_IP *prev_IP = ip_a_d;
645 if (prev_IP == NULL) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000646 ip_a_d = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000647 } else {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000648 while (prev_IP->next)
649 prev_IP = prev_IP->next;
650 prev_IP->next = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000651 }
652 }
653 continue;
654 }
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000655
656#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000657 if (flag == FIRST_PARSE && ch == 'E') {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000658 unsigned i;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000659 int status = atoi(buf + 1); /* error status code */
660
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000661 if (status < HTTP_CONTINUE) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000662 goto config_error;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000663 }
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000664 /* then error page; find matching status */
665 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
666 if (http_response_type[i] == status) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000667 /* We chdir to home_httpd, thus no need to
668 * concat_path_file(home_httpd, after_colon)
669 * here */
670 http_error_page[i] = xstrdup(after_colon);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000671 break;
672 }
673 }
674 continue;
675 }
676#endif
677
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000678#if ENABLE_FEATURE_HTTPD_PROXY
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000679 if (flag == FIRST_PARSE && ch == 'P') {
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000680 /* P:/url:[http://]hostname[:port]/new/path */
681 char *url_from, *host_port, *url_to;
682 Htaccess_Proxy *proxy_entry;
683
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000684 url_from = after_colon;
685 host_port = strchr(after_colon, ':');
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000686 if (host_port == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000687 goto config_error;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000688 }
689 *host_port++ = '\0';
690 if (strncmp(host_port, "http://", 7) == 0)
Denis Vlasenko78ee7c82007-10-21 23:24:42 +0000691 host_port += 7;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000692 if (*host_port == '\0') {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000693 goto config_error;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000694 }
695 url_to = strchr(host_port, '/');
696 if (url_to == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000697 goto config_error;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000698 }
699 *url_to = '\0';
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000700 proxy_entry = xzalloc(sizeof(*proxy_entry));
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000701 proxy_entry->url_from = xstrdup(url_from);
702 proxy_entry->host_port = xstrdup(host_port);
703 *url_to = '/';
704 proxy_entry->url_to = xstrdup(url_to);
705 proxy_entry->next = proxy;
706 proxy = proxy_entry;
707 continue;
708 }
709#endif
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000710 /* the rest of directives are non-alphabetic,
711 * must avoid using "toupper'ed" ch */
712 ch = buf[0];
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000713
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000714 if (ch == '.' /* ".ext:mime/type" */
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000715#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000716 || (ch == '*' && buf[1] == '.') /* "*.php:/path/php" */
717#endif
718 ) {
719 char *p;
720 Htaccess *cur;
721
722 cur = xzalloc(sizeof(*cur) /* includes space for NUL */ + strlen_buf);
723 strcpy(cur->before_colon, buf);
724 p = cur->before_colon + (after_colon - buf);
725 p[-1] = '\0';
726 cur->after_colon = p;
727 if (ch == '.') {
728 /* .mime line: prepend to mime_a list */
729 cur->next = mime_a;
730 mime_a = cur;
731 }
732#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
733 else {
734 /* script interpreter line: prepend to script_i list */
735 cur->next = script_i;
736 script_i = cur;
737 }
738#endif
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000739 continue;
740 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000741
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000742#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
743 if (ch == '/') { /* "/file:user:pass" */
744 char *p;
745 Htaccess *cur;
746 unsigned file_len;
747
748 /* note: path is "" unless we are in SUBDIR parse,
Denis Vlasenkoc8d71092009-04-22 14:16:59 +0000749 * otherwise it does NOT start with "/" */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000750 cur = xzalloc(sizeof(*cur) /* includes space for NUL */
Denis Vlasenkoc8d71092009-04-22 14:16:59 +0000751 + 1 + strlen(path)
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000752 + strlen_buf
753 );
754 /* form "/path/file" */
Denis Vlasenkoc8d71092009-04-22 14:16:59 +0000755 sprintf(cur->before_colon, "/%s%.*s",
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000756 path,
Denys Vlasenkoa4bcbd02009-06-09 23:01:24 +0200757 (int) (after_colon - buf - 1), /* includes "/", but not ":" */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000758 buf);
759 /* canonicalize it */
760 p = bb_simplify_abs_path_inplace(cur->before_colon);
761 file_len = p - cur->before_colon;
762 /* add "user:pass" after NUL */
763 strcpy(++p, after_colon);
764 cur->after_colon = p;
765
766 /* insert cur into g_auth */
767 /* g_auth is sorted by decreased filename length */
768 {
769 Htaccess *auth, **authp;
770
771 authp = &g_auth;
772 while ((auth = *authp) != NULL) {
773 if (file_len >= strlen(auth->before_colon)) {
774 /* insert cur before auth */
775 cur->next = auth;
776 break;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000777 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000778 authp = &auth->next;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000779 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000780 *authp = cur;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000781 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000782 continue;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000783 }
784#endif /* BASIC_AUTH */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000785
786 /* the line is not recognized */
787 config_error:
788 bb_error_msg("config error '%s' in '%s'", buf, filename);
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000789 } /* while (fgets) */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000790
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000791 fclose(f);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000792}
793
Denis Vlasenko55a99402006-09-30 20:41:44 +0000794#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000795/*
796 * Given a string, html-encode special characters.
797 * This is used for the -e command line option to provide an easy way
798 * for scripts to encode result data without confusing browsers. The
799 * returned string pointer is memory allocated by malloc().
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000800 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000801 * Returns a pointer to the encoded string (malloced).
802 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000803static char *encodeString(const char *string)
804{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000805 /* take the simple route and encode everything */
806 /* could possibly scan once to get length. */
807 int len = strlen(string);
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000808 char *out = xmalloc(len * 6 + 1);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000809 char *p = out;
810 char ch;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000811
Denys Vlasenko535ce1d2010-07-25 03:20:25 +0200812 while ((ch = *string++) != '\0') {
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000813 /* very simple check for what to encode */
814 if (isalnum(ch))
815 *p++ = ch;
816 else
817 p += sprintf(p, "&#%d;", (unsigned char) ch);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000818 }
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000819 *p = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000820 return out;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000821}
Denys Vlasenko535ce1d2010-07-25 03:20:25 +0200822#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000823
Denis Vlasenko073214f2007-08-17 19:20:07 +0000824/*
825 * Given a URL encoded string, convert it to plain ascii.
826 * Since decoding always makes strings smaller, the decode is done in-place.
Denis Vlasenkoc4523c22008-03-28 02:24:59 +0000827 * Thus, callers should xstrdup() the argument if they do not want the
Denis Vlasenko073214f2007-08-17 19:20:07 +0000828 * argument modified. The return is the original pointer, allowing this
829 * function to be easily used as arguments to other functions.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000830 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000831 * string The first string to decode.
832 * option_d 1 if called for httpd -d
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000833 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000834 * Returns a pointer to the decoded string (same as input).
835 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000836static unsigned hex_to_bin(unsigned char c)
837{
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000838 unsigned v;
839
840 v = c - '0';
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000841 if (v <= 9)
842 return v;
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000843 /* c | 0x20: letters to lower case, non-letters
844 * to (potentially different) non-letters */
845 v = (unsigned)(c | 0x20) - 'a';
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000846 if (v <= 5)
847 return v + 10;
848 return ~0;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000849/* For testing:
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000850void t(char c) { printf("'%c'(%u) %u\n", c, c, hex_to_bin(c)); }
851int main() { t(0x10); t(0x20); t('0'); t('9'); t('A'); t('F'); t('a'); t('f');
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000852t('0'-1); t('9'+1); t('A'-1); t('F'+1); t('a'-1); t('f'+1); return 0; }
853*/
Denys Vlasenko535ce1d2010-07-25 03:20:25 +0200854}
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000855static char *decodeString(char *orig, int option_d)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000856{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000857 /* note that decoded string is always shorter than original */
858 char *string = orig;
859 char *ptr = string;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000860 char c;
Eric Andersena3bb3e62003-06-26 09:05:32 +0000861
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000862 while ((c = *ptr++) != '\0') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000863 unsigned v;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000864
865 if (option_d && c == '+') {
Denis Vlasenko601ae132006-11-28 23:37:46 +0000866 *string++ = ' ';
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000867 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000868 }
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000869 if (c != '%') {
870 *string++ = c;
871 continue;
872 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000873 v = hex_to_bin(ptr[0]);
874 if (v > 15) {
875 bad_hex:
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000876 if (!option_d)
877 return NULL;
878 *string++ = '%';
879 continue;
880 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000881 v = (v * 16) | hex_to_bin(ptr[1]);
882 if (v > 255)
883 goto bad_hex;
884 if (!option_d && (v == '/' || v == '\0')) {
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000885 /* caller takes it as indication of invalid
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000886 * (dangerous wrt exploits) chars */
887 return orig + 1;
888 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000889 *string++ = v;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000890 ptr += 2;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000891 }
892 *string = '\0';
893 return orig;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000894}
895
Denis Vlasenko55a99402006-09-30 20:41:44 +0000896#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000897/*
Denis Vlasenko073214f2007-08-17 19:20:07 +0000898 * Decode a base64 data stream as per rfc1521.
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000899 * Note that the rfc states that non base64 chars are to be ignored.
Denis Vlasenko073214f2007-08-17 19:20:07 +0000900 * Since the decode always results in a shorter size than the input,
901 * it is OK to pass the input arg as an output arg.
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000902 * Parameter: a pointer to a base64 encoded string.
903 * Decoded data is stored in-place.
904 */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000905static void decodeBase64(char *Data)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000906{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000907 const unsigned char *in = (const unsigned char *)Data;
Denis Vlasenko37c33162007-08-19 18:54:22 +0000908 /* The decoded size will be at most 3/4 the size of the encoded */
Denis Vlasenko088b9592007-04-18 21:14:46 +0000909 unsigned ch = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000910 int i = 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000911
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000912 while (*in) {
913 int t = *in++;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000914
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000915 if (t >= '0' && t <= '9')
916 t = t - '0' + 52;
917 else if (t >= 'A' && t <= 'Z')
918 t = t - 'A';
919 else if (t >= 'a' && t <= 'z')
920 t = t - 'a' + 26;
921 else if (t == '+')
922 t = 62;
923 else if (t == '/')
924 t = 63;
925 else if (t == '=')
926 t = 0;
927 else
928 continue;
Glenn L McGrath874e3382003-05-14 12:11:36 +0000929
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000930 ch = (ch << 6) | t;
931 i++;
932 if (i == 4) {
933 *Data++ = (char) (ch >> 16);
934 *Data++ = (char) (ch >> 8);
935 *Data++ = (char) ch;
936 i = 0;
937 }
938 }
Denis Vlasenko088b9592007-04-18 21:14:46 +0000939 *Data = '\0';
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000940}
941#endif
942
Denis Vlasenko073214f2007-08-17 19:20:07 +0000943/*
944 * Create a listen server socket on the designated port.
945 */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000946static int openServer(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000947{
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000948 unsigned n = bb_strtou(bind_addr_or_port, NULL, 10);
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000949 if (!errno && n && n <= 0xffff)
950 n = create_and_bind_stream_or_die(NULL, n);
951 else
952 n = create_and_bind_stream_or_die(bind_addr_or_port, 80);
953 xlisten(n, 9);
954 return n;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000955}
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000956
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000957/*
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000958 * Log the connection closure and exit.
959 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000960static void log_and_exit(void) NORETURN;
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000961static void log_and_exit(void)
962{
Denis Vlasenko921799d2007-08-19 19:28:09 +0000963 /* Paranoia. IE said to be buggy. It may send some extra data
964 * or be confused by us just exiting without SHUT_WR. Oh well. */
965 shutdown(1, SHUT_WR);
Denis Vlasenkofaf334a2008-05-18 15:14:36 +0000966 /* Why??
967 (this also messes up stdin when user runs httpd -i from terminal)
Denis Vlasenko921799d2007-08-19 19:28:09 +0000968 ndelay_on(0);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000969 while (read(STDIN_FILENO, iobuf, IOBUF_SIZE) > 0)
Denis Vlasenko921799d2007-08-19 19:28:09 +0000970 continue;
Denis Vlasenkofaf334a2008-05-18 15:14:36 +0000971 */
Denis Vlasenko921799d2007-08-19 19:28:09 +0000972
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000973 if (verbose > 2)
974 bb_error_msg("closed");
975 _exit(xfunc_error_retval);
976}
977
978/*
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000979 * Create and send HTTP response headers.
980 * The arguments are combined and sent as one write operation. Note that
981 * IE will puke big-time if the headers are not sent in one packet and the
982 * second packet is delayed for any reason.
983 * responseNum - the result code to send.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000984 */
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000985static void send_headers(int responseNum)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000986{
Denis Vlasenko073214f2007-08-17 19:20:07 +0000987 static const char RFC1123FMT[] ALIGN1 = "%a, %d %b %Y %H:%M:%S GMT";
988
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000989 const char *responseString = "";
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000990 const char *infoString = NULL;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000991 const char *mime_type;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000992#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko2f518b02008-02-21 00:12:07 +0000993 const char *error_page = NULL;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000994#endif
Denis Vlasenkob64eed62007-01-14 17:06:11 +0000995 unsigned i;
Denis Vlasenko04158e02009-02-02 10:48:06 +0000996 time_t timer = time(NULL);
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000997 char tmp_str[80];
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000998 int len;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000999
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001000 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
1001 if (http_response_type[i] == responseNum) {
1002 responseString = http_response[i].name;
1003 infoString = http_response[i].info;
1004#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
1005 error_page = http_error_page[i];
1006#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001007 break;
1008 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001009 }
1010 /* error message is HTML */
1011 mime_type = responseNum == HTTP_OK ?
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001012 found_mime_type : "text/html";
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001013
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001014 if (verbose)
Denis Vlasenko241b1562007-08-17 19:18:47 +00001015 bb_error_msg("response:%u", responseNum);
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001016
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001017 /* emit the current date */
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001018 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&timer));
1019 len = sprintf(iobuf,
Denis Vlasenko69981422007-01-07 21:25:12 +00001020 "HTTP/1.0 %d %s\r\nContent-type: %s\r\n"
1021 "Date: %s\r\nConnection: close\r\n",
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001022 responseNum, responseString, mime_type, tmp_str);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001023
Denis Vlasenko55a99402006-09-30 20:41:44 +00001024#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001025 if (responseNum == HTTP_UNAUTHORIZED) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001026 len += sprintf(iobuf + len,
Denis Vlasenko8e858e22007-03-07 09:35:43 +00001027 "WWW-Authenticate: Basic realm=\"%s\"\r\n",
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001028 g_realm);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001029 }
Glenn L McGrath3d2405c2003-02-10 22:28:21 +00001030#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001031 if (responseNum == HTTP_MOVED_TEMPORARILY) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001032 len += sprintf(iobuf + len, "Location: %s/%s%s\r\n",
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001033 found_moved_temporarily,
1034 (g_query ? "?" : ""),
1035 (g_query ? g_query : ""));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001036 }
Eric Andersen07f2fea2004-10-08 08:03:29 +00001037
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001038#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001039 if (error_page && access(error_page, R_OK) == 0) {
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001040 strcat(iobuf, "\r\n");
1041 len += 2;
1042
1043 if (DEBUG)
1044 fprintf(stderr, "headers: '%s'\n", iobuf);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001045 full_write(STDOUT_FILENO, iobuf, len);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001046 if (DEBUG)
1047 fprintf(stderr, "writing error page: '%s'\n", error_page);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001048 return send_file_and_exit(error_page, SEND_BODY);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001049 }
1050#endif
1051
Denis Vlasenkof4310172007-09-21 22:35:18 +00001052 if (file_size != -1) { /* file */
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001053 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&last_mod));
Denis Vlasenkof4310172007-09-21 22:35:18 +00001054#if ENABLE_FEATURE_HTTPD_RANGES
1055 if (responseNum == HTTP_PARTIAL_CONTENT) {
Denys Vlasenkoa3aa3e32009-12-11 12:36:10 +01001056 len += sprintf(iobuf + len, "Content-Range: bytes %"OFF_FMT"u-%"OFF_FMT"u/%"OFF_FMT"u\r\n",
Denis Vlasenkof4310172007-09-21 22:35:18 +00001057 range_start,
1058 range_end,
1059 file_size);
1060 file_size = range_end - range_start + 1;
1061 }
1062#endif
1063 len += sprintf(iobuf + len,
1064#if ENABLE_FEATURE_HTTPD_RANGES
1065 "Accept-Ranges: bytes\r\n"
1066#endif
Denys Vlasenkoa3aa3e32009-12-11 12:36:10 +01001067 "Last-Modified: %s\r\n%s %"OFF_FMT"u\r\n",
Denis Vlasenkof4310172007-09-21 22:35:18 +00001068 tmp_str,
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02001069 content_gzip ? "Transfer-length:" : "Content-length:",
Denis Vlasenkof4310172007-09-21 22:35:18 +00001070 file_size
1071 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001072 }
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02001073
1074 if (content_gzip)
1075 len += sprintf(iobuf + len, "Content-Encoding: gzip\r\n");
1076
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001077 iobuf[len++] = '\r';
1078 iobuf[len++] = '\n';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001079 if (infoString) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001080 len += sprintf(iobuf + len,
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001081 "<HTML><HEAD><TITLE>%d %s</TITLE></HEAD>\n"
1082 "<BODY><H1>%d %s</H1>\n%s\n</BODY></HTML>\n",
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001083 responseNum, responseString,
1084 responseNum, responseString, infoString);
1085 }
Denis Vlasenko6c85ddc2006-11-21 00:08:39 +00001086 if (DEBUG)
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001087 fprintf(stderr, "headers: '%s'\n", iobuf);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001088 if (full_write(STDOUT_FILENO, iobuf, len) != len) {
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001089 if (verbose > 1)
1090 bb_perror_msg("error");
1091 log_and_exit();
1092 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001093}
1094
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001095static void send_headers_and_exit(int responseNum) NORETURN;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001096static void send_headers_and_exit(int responseNum)
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001097{
Peter Korsgaard95755182011-03-25 13:38:52 +01001098 IF_FEATURE_HTTPD_GZIP(content_gzip = 0;)
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001099 send_headers(responseNum);
1100 log_and_exit();
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001101}
1102
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001103/*
1104 * Read from the socket until '\n' or EOF. '\r' chars are removed.
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001105 * '\n' is replaced with NUL.
1106 * Return number of characters read or 0 if nothing is read
1107 * ('\r' and '\n' are not counted).
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001108 * Data is returned in iobuf.
1109 */
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001110static int get_line(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001111{
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001112 int count = 0;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001113 char c;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001114
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001115 alarm(HEADER_READ_TIMEOUT);
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001116 while (1) {
1117 if (hdr_cnt <= 0) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001118 hdr_cnt = safe_read(STDIN_FILENO, hdr_buf, sizeof(hdr_buf));
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001119 if (hdr_cnt <= 0)
1120 break;
1121 hdr_ptr = hdr_buf;
1122 }
1123 iobuf[count] = c = *hdr_ptr++;
1124 hdr_cnt--;
1125
1126 if (c == '\r')
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001127 continue;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001128 if (c == '\n') {
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001129 iobuf[count] = '\0';
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001130 break;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001131 }
Denis Vlasenko921799d2007-08-19 19:28:09 +00001132 if (count < (IOBUF_SIZE - 1)) /* check overflow */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001133 count++;
1134 }
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001135 return count;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001136}
1137
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001138#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001139
1140/* gcc 4.2.1 fares better with NOINLINE */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001141static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len) NORETURN;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001142static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len)
1143{
1144 enum { FROM_CGI = 1, TO_CGI = 2 }; /* indexes in pfd[] */
1145 struct pollfd pfd[3];
1146 int out_cnt; /* we buffer a bit of initial CGI output */
1147 int count;
1148
1149 /* iobuf is used for CGI -> network data,
1150 * hdr_buf is for network -> CGI data (POSTDATA) */
1151
1152 /* If CGI dies, we still want to correctly finish reading its output
1153 * and send it to the peer. So please no SIGPIPEs! */
1154 signal(SIGPIPE, SIG_IGN);
1155
Denis Vlasenko4a457562007-10-14 02:34:20 +00001156 // We inconsistently handle a case when more POSTDATA from network
1157 // is coming than we expected. We may give *some part* of that
1158 // extra data to CGI.
1159
1160 //if (hdr_cnt > post_len) {
1161 // /* We got more POSTDATA from network than we expected */
1162 // hdr_cnt = post_len;
1163 //}
1164 post_len -= hdr_cnt;
1165 /* post_len - number of POST bytes not yet read from network */
1166
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001167 /* NB: breaking out of this loop jumps to log_and_exit() */
1168 out_cnt = 0;
1169 while (1) {
1170 memset(pfd, 0, sizeof(pfd));
1171
1172 pfd[FROM_CGI].fd = fromCgi_rd;
1173 pfd[FROM_CGI].events = POLLIN;
1174
1175 if (toCgi_wr) {
1176 pfd[TO_CGI].fd = toCgi_wr;
1177 if (hdr_cnt > 0) {
1178 pfd[TO_CGI].events = POLLOUT;
1179 } else if (post_len > 0) {
1180 pfd[0].events = POLLIN;
1181 } else {
1182 /* post_len <= 0 && hdr_cnt <= 0:
1183 * no more POST data to CGI,
1184 * let CGI see EOF on CGI's stdin */
Denys Vlasenko8fc9e6a2010-04-02 10:40:58 +02001185 if (toCgi_wr != fromCgi_rd)
1186 close(toCgi_wr);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001187 toCgi_wr = 0;
1188 }
1189 }
1190
1191 /* Now wait on the set of sockets */
Denys Vlasenko8fc9e6a2010-04-02 10:40:58 +02001192 count = safe_poll(pfd, toCgi_wr ? TO_CGI+1 : FROM_CGI+1, -1);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001193 if (count <= 0) {
1194#if 0
Denis Vlasenkofb0eba72008-01-02 19:55:04 +00001195 if (safe_waitpid(pid, &status, WNOHANG) <= 0) {
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001196 /* Weird. CGI didn't exit and no fd's
1197 * are ready, yet poll returned?! */
1198 continue;
1199 }
1200 if (DEBUG && WIFEXITED(status))
1201 bb_error_msg("CGI exited, status=%d", WEXITSTATUS(status));
1202 if (DEBUG && WIFSIGNALED(status))
1203 bb_error_msg("CGI killed, signal=%d", WTERMSIG(status));
1204#endif
1205 break;
1206 }
1207
Denys Vlasenko88aa5582010-03-02 15:02:45 +01001208 if (pfd[TO_CGI].revents) {
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001209 /* hdr_cnt > 0 here due to the way pfd[TO_CGI].events set */
1210 /* Have data from peer and can write to CGI */
1211 count = safe_write(toCgi_wr, hdr_ptr, hdr_cnt);
1212 /* Doesn't happen, we dont use nonblocking IO here
1213 *if (count < 0 && errno == EAGAIN) {
1214 * ...
1215 *} else */
1216 if (count > 0) {
1217 hdr_ptr += count;
1218 hdr_cnt -= count;
1219 } else {
1220 /* EOF/broken pipe to CGI, stop piping POST data */
1221 hdr_cnt = post_len = 0;
1222 }
1223 }
1224
Denys Vlasenko88aa5582010-03-02 15:02:45 +01001225 if (pfd[0].revents) {
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001226 /* post_len > 0 && hdr_cnt == 0 here */
1227 /* We expect data, prev data portion is eaten by CGI
1228 * and there *is* data to read from the peer
1229 * (POSTDATA) */
1230 //count = post_len > (int)sizeof(hdr_buf) ? (int)sizeof(hdr_buf) : post_len;
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001231 //count = safe_read(STDIN_FILENO, hdr_buf, count);
1232 count = safe_read(STDIN_FILENO, hdr_buf, sizeof(hdr_buf));
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001233 if (count > 0) {
1234 hdr_cnt = count;
1235 hdr_ptr = hdr_buf;
1236 post_len -= count;
1237 } else {
1238 /* no more POST data can be read */
1239 post_len = 0;
1240 }
1241 }
1242
Denys Vlasenko88aa5582010-03-02 15:02:45 +01001243 if (pfd[FROM_CGI].revents) {
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001244 /* There is something to read from CGI */
1245 char *rbuf = iobuf;
1246
1247 /* Are we still buffering CGI output? */
1248 if (out_cnt >= 0) {
1249 /* HTTP_200[] has single "\r\n" at the end.
1250 * According to http://hoohoo.ncsa.uiuc.edu/cgi/out.html,
1251 * CGI scripts MUST send their own header terminated by
1252 * empty line, then data. That's why we have only one
1253 * <cr><lf> pair here. We will output "200 OK" line
1254 * if needed, but CGI still has to provide blank line
1255 * between header and body */
1256
1257 /* Must use safe_read, not full_read, because
1258 * CGI may output a few first bytes and then wait
1259 * for POSTDATA without closing stdout.
1260 * With full_read we may wait here forever. */
1261 count = safe_read(fromCgi_rd, rbuf + out_cnt, PIPE_BUF - 8);
1262 if (count <= 0) {
1263 /* eof (or error) and there was no "HTTP",
1264 * so write it, then write received data */
1265 if (out_cnt) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001266 full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1);
1267 full_write(STDOUT_FILENO, rbuf, out_cnt);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001268 }
1269 break; /* CGI stdout is closed, exiting */
1270 }
1271 out_cnt += count;
1272 count = 0;
1273 /* "Status" header format is: "Status: 302 Redirected\r\n" */
1274 if (out_cnt >= 8 && memcmp(rbuf, "Status: ", 8) == 0) {
1275 /* send "HTTP/1.0 " */
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001276 if (full_write(STDOUT_FILENO, HTTP_200, 9) != 9)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001277 break;
1278 rbuf += 8; /* skip "Status: " */
1279 count = out_cnt - 8;
1280 out_cnt = -1; /* buffering off */
1281 } else if (out_cnt >= 4) {
1282 /* Did CGI add "HTTP"? */
1283 if (memcmp(rbuf, HTTP_200, 4) != 0) {
1284 /* there is no "HTTP", do it ourself */
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001285 if (full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1) != sizeof(HTTP_200)-1)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001286 break;
1287 }
1288 /* Commented out:
1289 if (!strstr(rbuf, "ontent-")) {
1290 full_write(s, "Content-type: text/plain\r\n\r\n", 28);
1291 }
1292 * Counter-example of valid CGI without Content-type:
1293 * echo -en "HTTP/1.0 302 Found\r\n"
1294 * echo -en "Location: http://www.busybox.net\r\n"
1295 * echo -en "\r\n"
1296 */
1297 count = out_cnt;
1298 out_cnt = -1; /* buffering off */
1299 }
1300 } else {
1301 count = safe_read(fromCgi_rd, rbuf, PIPE_BUF);
1302 if (count <= 0)
1303 break; /* eof (or error) */
1304 }
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001305 if (full_write(STDOUT_FILENO, rbuf, count) != count)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001306 break;
1307 if (DEBUG)
1308 fprintf(stderr, "cgi read %d bytes: '%.*s'\n", count, count, rbuf);
1309 } /* if (pfd[FROM_CGI].revents) */
1310 } /* while (1) */
1311 log_and_exit();
1312}
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001313#endif
1314
1315#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001316
Denis Vlasenko921799d2007-08-19 19:28:09 +00001317static void setenv1(const char *name, const char *value)
1318{
1319 setenv(name, value ? value : "", 1);
1320}
1321
Denis Vlasenko241b1562007-08-17 19:18:47 +00001322/*
1323 * Spawn CGI script, forward CGI's stdin/out <=> network
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001324 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001325 * Environment variables are set up and the script is invoked with pipes
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001326 * for stdin/stdout. If a POST is being done the script is fed the POST
Denis Vlasenko241b1562007-08-17 19:18:47 +00001327 * data in addition to setting the QUERY_STRING variable (for GETs or POSTs).
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001328 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001329 * Parameters:
1330 * const char *url The requested URL (with leading /).
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001331 * int post_len Length of the POST body.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001332 * const char *cookie For set HTTP_COOKIE.
1333 * const char *content_type For set CONTENT_TYPE.
1334 */
1335static void send_cgi_and_exit(
1336 const char *url,
1337 const char *request,
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001338 int post_len,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001339 const char *cookie,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001340 const char *content_type) NORETURN;
Denis Vlasenko241b1562007-08-17 19:18:47 +00001341static void send_cgi_and_exit(
1342 const char *url,
1343 const char *request,
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001344 int post_len,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001345 const char *cookie,
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001346 const char *content_type)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001347{
Denis Vlasenko37188322008-02-16 13:20:56 +00001348 struct fd_pair fromCgi; /* CGI -> httpd pipe */
1349 struct fd_pair toCgi; /* httpd -> CGI pipe */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001350 char *script;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001351 int pid;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001352
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001353 /* Make a copy. NB: caller guarantees:
1354 * url[0] == '/', url[1] != '/' */
1355 url = xstrdup(url);
1356
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001357 /*
1358 * We are mucking with environment _first_ and then vfork/exec,
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001359 * this allows us to use vfork safely. Parent doesn't care about
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001360 * these environment changes anyway.
1361 */
1362
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001363 /* Check for [dirs/]script.cgi/PATH_INFO */
1364 script = (char*)url;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001365 while ((script = strchr(script + 1, '/')) != NULL) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001366 *script = '\0';
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001367 if (!is_directory(url + 1, 1, NULL)) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001368 /* not directory, found script.cgi/PATH_INFO */
1369 *script = '/';
1370 break;
1371 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001372 *script = '/'; /* is directory, find next '/' */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001373 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001374 setenv1("PATH_INFO", script); /* set to /PATH_INFO or "" */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001375 setenv1("REQUEST_METHOD", request);
1376 if (g_query) {
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001377 putenv(xasprintf("%s=%s?%s", "REQUEST_URI", url, g_query));
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001378 } else {
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001379 setenv1("REQUEST_URI", url);
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001380 }
1381 if (script != NULL)
1382 *script = '\0'; /* cut off /PATH_INFO */
1383
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001384 /* SCRIPT_FILENAME is required by PHP in CGI mode */
1385 if (home_httpd[0] == '/') {
1386 char *fullpath = concat_path_file(home_httpd, url);
1387 setenv1("SCRIPT_FILENAME", fullpath);
1388 }
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001389 /* set SCRIPT_NAME as full path: /cgi-bin/dirs/script.cgi */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001390 setenv1("SCRIPT_NAME", url);
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001391 /* http://hoohoo.ncsa.uiuc.edu/cgi/env.html:
1392 * QUERY_STRING: The information which follows the ? in the URL
1393 * which referenced this script. This is the query information.
1394 * It should not be decoded in any fashion. This variable
1395 * should always be set when there is query information,
1396 * regardless of command line decoding. */
1397 /* (Older versions of bbox seem to do some decoding) */
1398 setenv1("QUERY_STRING", g_query);
1399 putenv((char*)"SERVER_SOFTWARE=busybox httpd/"BB_VER);
1400 putenv((char*)"SERVER_PROTOCOL=HTTP/1.0");
1401 putenv((char*)"GATEWAY_INTERFACE=CGI/1.1");
1402 /* Having _separate_ variables for IP and port defeats
1403 * the purpose of having socket abstraction. Which "port"
1404 * are you using on Unix domain socket?
1405 * IOW - REMOTE_PEER="1.2.3.4:56" makes much more sense.
1406 * Oh well... */
1407 {
1408 char *p = rmt_ip_str ? rmt_ip_str : (char*)"";
1409 char *cp = strrchr(p, ':');
1410 if (ENABLE_FEATURE_IPV6 && cp && strchr(cp, ']'))
1411 cp = NULL;
1412 if (cp) *cp = '\0'; /* delete :PORT */
1413 setenv1("REMOTE_ADDR", p);
Denis Vlasenko37c33162007-08-19 18:54:22 +00001414 if (cp) {
1415 *cp = ':';
1416#if ENABLE_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
1417 setenv1("REMOTE_PORT", cp + 1);
1418#endif
1419 }
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001420 }
1421 setenv1("HTTP_USER_AGENT", user_agent);
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +00001422 if (http_accept)
1423 setenv1("HTTP_ACCEPT", http_accept);
1424 if (http_accept_language)
1425 setenv1("HTTP_ACCEPT_LANGUAGE", http_accept_language);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001426 if (post_len)
1427 putenv(xasprintf("CONTENT_LENGTH=%d", post_len));
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001428 if (cookie)
1429 setenv1("HTTP_COOKIE", cookie);
1430 if (content_type)
1431 setenv1("CONTENT_TYPE", content_type);
1432#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1433 if (remoteuser) {
1434 setenv1("REMOTE_USER", remoteuser);
1435 putenv((char*)"AUTH_TYPE=Basic");
1436 }
1437#endif
1438 if (referer)
1439 setenv1("HTTP_REFERER", referer);
Denis Vlasenko9d1d4c02008-11-22 20:29:35 +00001440 setenv1("HTTP_HOST", host); /* set to "" if NULL */
Denis Vlasenkocbb4e612009-03-18 20:00:46 +00001441 /* setenv1("SERVER_NAME", safe_gethostname()); - don't do this,
1442 * just run "env SERVER_NAME=xyz httpd ..." instead */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001443
Denis Vlasenko37188322008-02-16 13:20:56 +00001444 xpiped_pair(fromCgi);
1445 xpiped_pair(toCgi);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001446
Denis Vlasenko80281fe2007-03-07 22:16:38 +00001447 pid = vfork();
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001448 if (pid < 0) {
1449 /* TODO: log perror? */
1450 log_and_exit();
1451 }
Denis Vlasenkof7996f32007-01-11 17:20:00 +00001452
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001453 if (!pid) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001454 /* Child process */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001455 char *argv[3];
1456
Denis Vlasenko241b1562007-08-17 19:18:47 +00001457 xfunc_error_retval = 242;
1458
Denis Vlasenko284d0fa2008-02-16 13:18:17 +00001459 /* NB: close _first_, then move fds! */
1460 close(toCgi.wr);
1461 close(fromCgi.rd);
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001462 xmove_fd(toCgi.rd, 0); /* replace stdin with the pipe */
1463 xmove_fd(fromCgi.wr, 1); /* replace stdout with the pipe */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001464 /* User seeing stderr output can be a security problem.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001465 * If CGI really wants that, it can always do dup itself. */
Denis Vlasenko1ec15cd2007-08-11 20:20:43 +00001466 /* dup2(1, 2); */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001467
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001468 /* Chdiring to script's dir */
1469 script = strrchr(url, '/');
1470 if (script != url) { /* paranoia */
1471 *script = '\0';
1472 if (chdir(url + 1) != 0) {
Bernhard Reutner-Fischerca228fb2010-02-26 10:09:31 +01001473 bb_perror_msg("chdir(%s)", url + 1);
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001474 goto error_execing_cgi;
1475 }
1476 // not needed: *script = '/';
1477 }
1478 script++;
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001479
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001480 /* set argv[0] to name without path */
1481 argv[0] = script;
1482 argv[1] = NULL;
Denis Vlasenkofc213052008-02-11 16:26:22 +00001483
1484#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001485 {
1486 char *suffix = strrchr(script, '.');
Denis Vlasenkofc213052008-02-11 16:26:22 +00001487
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001488 if (suffix) {
1489 Htaccess *cur;
1490 for (cur = script_i; cur; cur = cur->next) {
1491 if (strcmp(cur->before_colon + 1, suffix) == 0) {
1492 /* found interpreter name */
1493 argv[0] = cur->after_colon;
1494 argv[1] = script;
1495 argv[2] = NULL;
1496 break;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001497 }
1498 }
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001499 }
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001500 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001501#endif
1502 /* restore default signal dispositions for CGI process */
1503 bb_signals(0
1504 | (1 << SIGCHLD)
1505 | (1 << SIGPIPE)
1506 | (1 << SIGHUP)
1507 , SIG_DFL);
1508
1509 /* _NOT_ execvp. We do not search PATH. argv[0] is a filename
1510 * without any dir components and will only match a file
1511 * in the current directory */
1512 execv(argv[0], argv);
1513 if (verbose)
Denys Vlasenko31c3dad2010-06-27 16:57:55 +02001514 bb_perror_msg("can't execute '%s'", argv[0]);
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001515 error_execing_cgi:
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001516 /* send to stdout
1517 * (we are CGI here, our stdout is pumped to the net) */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001518 send_headers_and_exit(HTTP_NOT_FOUND);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001519 } /* end child */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001520
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001521 /* Parent process */
1522
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001523 /* Restore variables possibly changed by child */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001524 xfunc_error_retval = 0;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001525
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001526 /* Pump data */
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001527 close(fromCgi.wr);
1528 close(toCgi.rd);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001529 cgi_io_loop_and_exit(fromCgi.rd, toCgi.wr, post_len);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001530}
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001531
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001532#endif /* FEATURE_HTTPD_CGI */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001533
Denis Vlasenko241b1562007-08-17 19:18:47 +00001534/*
1535 * Send a file response to a HTTP request, and exit
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00001536 *
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001537 * Parameters:
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001538 * const char *url The requested URL (with leading /).
1539 * what What to send (headers/body/both).
Denis Vlasenko241b1562007-08-17 19:18:47 +00001540 */
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001541static NOINLINE void send_file_and_exit(const char *url, int what)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001542{
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001543 char *suffix;
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001544 int fd;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001545 ssize_t count;
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001546
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02001547 if (content_gzip) {
1548 /* does <url>.gz exist? Then use it instead */
1549 char *gzurl = xasprintf("%s.gz", url);
1550 fd = open(gzurl, O_RDONLY);
1551 free(gzurl);
1552 if (fd != -1) {
1553 struct stat sb;
1554 fstat(fd, &sb);
1555 file_size = sb.st_size;
Denys Vlasenko8030a142011-01-11 17:59:45 +01001556 last_mod = sb.st_mtime;
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02001557 } else {
1558 IF_FEATURE_HTTPD_GZIP(content_gzip = 0;)
1559 fd = open(url, O_RDONLY);
1560 }
1561 } else {
1562 fd = open(url, O_RDONLY);
1563 }
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001564 if (fd < 0) {
1565 if (DEBUG)
1566 bb_perror_msg("can't open '%s'", url);
1567 /* Error pages are sent by using send_file_and_exit(SEND_BODY).
1568 * IOW: it is unsafe to call send_headers_and_exit
1569 * if what is SEND_BODY! Can recurse! */
1570 if (what != SEND_BODY)
1571 send_headers_and_exit(HTTP_NOT_FOUND);
1572 log_and_exit();
1573 }
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001574 /* If you want to know about EPIPE below
1575 * (happens if you abort downloads from local httpd): */
1576 signal(SIGPIPE, SIG_IGN);
1577
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001578 /* If not found, default is "application/octet-stream" */
Denis Vlasenko073214f2007-08-17 19:20:07 +00001579 found_mime_type = "application/octet-stream";
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001580 suffix = strrchr(url, '.');
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001581 if (suffix) {
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001582 static const char suffixTable[] ALIGN1 =
1583 /* Shorter suffix must be first:
1584 * ".html.htm" will fail for ".htm"
1585 */
1586 ".txt.h.c.cc.cpp\0" "text/plain\0"
1587 /* .htm line must be after .h line */
1588 ".htm.html\0" "text/html\0"
1589 ".jpg.jpeg\0" "image/jpeg\0"
1590 ".gif\0" "image/gif\0"
1591 ".png\0" "image/png\0"
1592 /* .css line must be after .c line */
1593 ".css\0" "text/css\0"
1594 ".wav\0" "audio/wav\0"
1595 ".avi\0" "video/x-msvideo\0"
1596 ".qt.mov\0" "video/quicktime\0"
1597 ".mpe.mpeg\0" "video/mpeg\0"
1598 ".mid.midi\0" "audio/midi\0"
1599 ".mp3\0" "audio/mpeg\0"
1600#if 0 /* unpopular */
1601 ".au\0" "audio/basic\0"
1602 ".pac\0" "application/x-ns-proxy-autoconfig\0"
1603 ".vrml.wrl\0" "model/vrml\0"
1604#endif
1605 /* compiler adds another "\0" here */
1606 ;
Denis Vlasenko073214f2007-08-17 19:20:07 +00001607 Htaccess *cur;
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001608
1609 /* Examine built-in table */
1610 const char *table = suffixTable;
1611 const char *table_next;
1612 for (; *table; table = table_next) {
1613 const char *try_suffix;
1614 const char *mime_type;
1615 mime_type = table + strlen(table) + 1;
1616 table_next = mime_type + strlen(mime_type) + 1;
1617 try_suffix = strstr(table, suffix);
1618 if (!try_suffix)
1619 continue;
1620 try_suffix += strlen(suffix);
1621 if (*try_suffix == '\0' || *try_suffix == '.') {
1622 found_mime_type = mime_type;
1623 break;
Denis Vlasenko073214f2007-08-17 19:20:07 +00001624 }
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001625 /* Example: strstr(table, ".av") != NULL, but it
1626 * does not match ".avi" after all and we end up here.
1627 * The table is arranged so that in this case we know
1628 * that it can't match anything in the following lines,
1629 * and we stop the search: */
1630 break;
Denis Vlasenko073214f2007-08-17 19:20:07 +00001631 }
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001632 /* ...then user's table */
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001633 for (cur = mime_a; cur; cur = cur->next) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001634 if (strcmp(cur->before_colon, suffix) == 0) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001635 found_mime_type = cur->after_colon;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001636 break;
1637 }
1638 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001639 }
Bernhard Reutner-Fischer62851172009-05-03 18:53:22 +02001640
1641 if (DEBUG)
1642 bb_error_msg("sending file '%s' content-type: %s",
1643 url, found_mime_type);
1644
Denis Vlasenkof4310172007-09-21 22:35:18 +00001645#if ENABLE_FEATURE_HTTPD_RANGES
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02001646 if (what == SEND_BODY /* err pages and ranges don't mix */
1647 || content_gzip /* we are sending compressed page: can't do ranges */ ///why?
1648 ) {
1649 range_start = 0;
1650 }
Denis Vlasenkof4310172007-09-21 22:35:18 +00001651 range_len = MAXINT(off_t);
1652 if (range_start) {
1653 if (!range_end) {
1654 range_end = file_size - 1;
1655 }
1656 if (range_end < range_start
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001657 || lseek(fd, range_start, SEEK_SET) != range_start
Denis Vlasenkof4310172007-09-21 22:35:18 +00001658 ) {
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001659 lseek(fd, 0, SEEK_SET);
Denis Vlasenkof4310172007-09-21 22:35:18 +00001660 range_start = 0;
1661 } else {
1662 range_len = range_end - range_start + 1;
1663 send_headers(HTTP_PARTIAL_CONTENT);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001664 what = SEND_BODY;
Denis Vlasenkof4310172007-09-21 22:35:18 +00001665 }
1666 }
1667#endif
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001668 if (what & SEND_HEADERS)
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001669 send_headers(HTTP_OK);
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001670#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001671 {
1672 off_t offset = range_start;
1673 while (1) {
1674 /* sz is rounded down to 64k */
1675 ssize_t sz = MAXINT(ssize_t) - 0xffff;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001676 IF_FEATURE_HTTPD_RANGES(if (sz > range_len) sz = range_len;)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001677 count = sendfile(STDOUT_FILENO, fd, &offset, sz);
1678 if (count < 0) {
1679 if (offset == range_start)
1680 break; /* fall back to read/write loop */
1681 goto fin;
1682 }
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001683 IF_FEATURE_HTTPD_RANGES(range_len -= sz;)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001684 if (count == 0 || range_len == 0)
1685 log_and_exit();
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001686 }
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001687 }
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001688#endif
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001689 while ((count = safe_read(fd, iobuf, IOBUF_SIZE)) > 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00001690 ssize_t n;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001691 IF_FEATURE_HTTPD_RANGES(if (count > range_len) count = range_len;)
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001692 n = full_write(STDOUT_FILENO, iobuf, count);
Denis Vlasenko241b1562007-08-17 19:18:47 +00001693 if (count != n)
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001694 break;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001695 IF_FEATURE_HTTPD_RANGES(range_len -= count;)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001696 if (range_len == 0)
Denis Vlasenkof4310172007-09-21 22:35:18 +00001697 break;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001698 }
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001699 if (count < 0) {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001700 IF_FEATURE_HTTPD_USE_SENDFILE(fin:)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001701 if (verbose > 1)
1702 bb_perror_msg("error");
1703 }
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001704 log_and_exit();
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001705}
1706
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001707static int checkPermIP(void)
1708{
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001709 Htaccess_IP *cur;
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001710
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001711 for (cur = ip_a_d; cur; cur = cur->next) {
Denis Vlasenkob64eed62007-01-14 17:06:11 +00001712#if DEBUG
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001713 fprintf(stderr,
1714 "checkPermIP: '%s' ? '%u.%u.%u.%u/%u.%u.%u.%u'\n",
1715 rmt_ip_str,
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00001716 (unsigned char)(cur->ip >> 24),
1717 (unsigned char)(cur->ip >> 16),
1718 (unsigned char)(cur->ip >> 8),
1719 (unsigned char)(cur->ip),
1720 (unsigned char)(cur->mask >> 24),
1721 (unsigned char)(cur->mask >> 16),
1722 (unsigned char)(cur->mask >> 8),
1723 (unsigned char)(cur->mask)
1724 );
Denis Vlasenko3bba5452006-12-30 17:57:03 +00001725#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001726 if ((rmt_ip & cur->mask) == cur->ip)
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001727 return (cur->allow_deny == 'A'); /* A -> 1 */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001728 }
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001729
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001730 return !flg_deny_all; /* depends on whether we saw "D:*" */
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001731}
1732
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001733#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko073214f2007-08-17 19:20:07 +00001734/*
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001735 * Config file entries are of the form "/<path>:<user>:<passwd>".
1736 * If config file has no prefix match for path, access is allowed.
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001737 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001738 * path The file path
1739 * user_and_passwd "user:passwd" to validate
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001740 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001741 * Returns 1 if user_and_passwd is OK.
Denis Vlasenko073214f2007-08-17 19:20:07 +00001742 */
Denis Vlasenko25b46302008-06-13 09:55:13 +00001743static int check_user_passwd(const char *path, const char *user_and_passwd)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001744{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001745 Htaccess *cur;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001746 const char *prev = NULL;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001747
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001748 for (cur = g_auth; cur; cur = cur->next) {
Denis Vlasenko25b46302008-06-13 09:55:13 +00001749 const char *dir_prefix;
1750 size_t len;
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001751
Denis Vlasenko25b46302008-06-13 09:55:13 +00001752 dir_prefix = cur->before_colon;
1753
1754 /* WHY? */
1755 /* If already saw a match, don't accept other different matches */
1756 if (prev && strcmp(prev, dir_prefix) != 0)
1757 continue;
1758
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001759 if (DEBUG)
Denis Vlasenko25b46302008-06-13 09:55:13 +00001760 fprintf(stderr, "checkPerm: '%s' ? '%s'\n", dir_prefix, user_and_passwd);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001761
Denis Vlasenko25b46302008-06-13 09:55:13 +00001762 /* If it's not a prefix match, continue searching */
1763 len = strlen(dir_prefix);
1764 if (len != 1 /* dir_prefix "/" matches all, don't need to check */
1765 && (strncmp(dir_prefix, path, len) != 0
1766 || (path[len] != '/' && path[len] != '\0'))
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001767 ) {
Denis Vlasenko25b46302008-06-13 09:55:13 +00001768 continue;
1769 }
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001770
Denis Vlasenko25b46302008-06-13 09:55:13 +00001771 /* Path match found */
1772 prev = dir_prefix;
Eric Andersen35e643b2003-07-28 07:40:39 +00001773
Denis Vlasenko25b46302008-06-13 09:55:13 +00001774 if (ENABLE_FEATURE_HTTPD_AUTH_MD5) {
1775 char *md5_passwd;
1776
1777 md5_passwd = strchr(cur->after_colon, ':');
1778 if (md5_passwd && md5_passwd[1] == '$' && md5_passwd[2] == '1'
1779 && md5_passwd[3] == '$' && md5_passwd[4]
1780 ) {
1781 char *encrypted;
1782 int r, user_len_p1;
1783
1784 md5_passwd++;
1785 user_len_p1 = md5_passwd - cur->after_colon;
1786 /* comparing "user:" */
1787 if (strncmp(cur->after_colon, user_and_passwd, user_len_p1) != 0) {
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001788 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001789 }
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001790
Denis Vlasenko25b46302008-06-13 09:55:13 +00001791 encrypted = pw_encrypt(
1792 user_and_passwd + user_len_p1 /* cleartext pwd from user */,
1793 md5_passwd /*salt */, 1 /* cleanup */);
1794 r = strcmp(encrypted, md5_passwd);
1795 free(encrypted);
1796 if (r == 0)
1797 goto set_remoteuser_var; /* Ok */
1798 continue;
1799 }
1800 }
1801
1802 /* Comparing plaintext "user:pass" in one go */
1803 if (strcmp(cur->after_colon, user_and_passwd) == 0) {
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001804 set_remoteuser_var:
Denis Vlasenko25b46302008-06-13 09:55:13 +00001805 remoteuser = xstrndup(user_and_passwd,
1806 strchrnul(user_and_passwd, ':') - user_and_passwd);
1807 return 1; /* Ok */
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001808 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001809 } /* for */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001810
Denis Vlasenko25b46302008-06-13 09:55:13 +00001811 /* 0(bad) if prev is set: matches were found but passwd was wrong */
1812 return (prev == NULL);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001813}
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001814#endif /* FEATURE_HTTPD_BASIC_AUTH */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001815
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001816#if ENABLE_FEATURE_HTTPD_PROXY
1817static Htaccess_Proxy *find_proxy_entry(const char *url)
1818{
1819 Htaccess_Proxy *p;
1820 for (p = proxy; p; p = p->next) {
1821 if (strncmp(url, p->url_from, strlen(p->url_from)) == 0)
1822 return p;
1823 }
1824 return NULL;
1825}
1826#endif
1827
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001828/*
1829 * Handle timeouts
1830 */
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001831static void send_REQUEST_TIMEOUT_and_exit(int sig) NORETURN;
1832static void send_REQUEST_TIMEOUT_and_exit(int sig UNUSED_PARAM)
Eric Andersen07f2fea2004-10-08 08:03:29 +00001833{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001834 send_headers_and_exit(HTTP_REQUEST_TIMEOUT);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001835}
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001836
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001837/*
1838 * Handle an incoming http request and exit.
1839 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001840static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr) NORETURN;
Denis Vlasenko367960b2007-08-18 14:20:21 +00001841static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001842{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001843 static const char request_GET[] ALIGN1 = "GET";
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001844 struct stat sb;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001845 char *urlcopy;
1846 char *urlp;
1847 char *tptr;
Denis Vlasenko55a99402006-09-30 20:41:44 +00001848#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001849 static const char request_HEAD[] ALIGN1 = "HEAD";
Denis Vlasenko073214f2007-08-17 19:20:07 +00001850 const char *prequest;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001851 char *cookie = NULL;
1852 char *content_type = NULL;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001853 unsigned long length = 0;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001854#elif ENABLE_FEATURE_HTTPD_PROXY
1855#define prequest request_GET
1856 unsigned long length = 0;
1857#endif
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001858#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1859 smallint authorized = -1;
1860#endif
1861 smallint ip_allowed;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001862 char http_major_version;
1863#if ENABLE_FEATURE_HTTPD_PROXY
1864 char http_minor_version;
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001865 char *header_buf = header_buf; /* for gcc */
1866 char *header_ptr = header_ptr;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001867 Htaccess_Proxy *proxy_entry;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001868#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001869
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001870 /* Allocation of iobuf is postponed until now
1871 * (IOW, server process doesn't need to waste 8k) */
Denis Vlasenko921799d2007-08-19 19:28:09 +00001872 iobuf = xmalloc(IOBUF_SIZE);
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001873
Denis Vlasenko367960b2007-08-18 14:20:21 +00001874 rmt_ip = 0;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001875 if (fromAddr->u.sa.sa_family == AF_INET) {
1876 rmt_ip = ntohl(fromAddr->u.sin.sin_addr.s_addr);
Denis Vlasenko367960b2007-08-18 14:20:21 +00001877 }
Denis Vlasenko35465a32007-09-25 11:58:33 +00001878#if ENABLE_FEATURE_IPV6
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001879 if (fromAddr->u.sa.sa_family == AF_INET6
1880 && fromAddr->u.sin6.sin6_addr.s6_addr32[0] == 0
1881 && fromAddr->u.sin6.sin6_addr.s6_addr32[1] == 0
1882 && ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[2]) == 0xffff)
1883 rmt_ip = ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[3]);
Denis Vlasenko35465a32007-09-25 11:58:33 +00001884#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00001885 if (ENABLE_FEATURE_HTTPD_CGI || DEBUG || verbose) {
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00001886 /* NB: can be NULL (user runs httpd -i by hand?) */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001887 rmt_ip_str = xmalloc_sockaddr2dotted(&fromAddr->u.sa);
Denis Vlasenko367960b2007-08-18 14:20:21 +00001888 }
1889 if (verbose) {
1890 /* this trick makes -v logging much simpler */
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00001891 if (rmt_ip_str)
1892 applet_name = rmt_ip_str;
Denis Vlasenko367960b2007-08-18 14:20:21 +00001893 if (verbose > 2)
1894 bb_error_msg("connected");
1895 }
1896
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001897 /* Install timeout handler. get_line() needs it. */
1898 signal(SIGALRM, send_REQUEST_TIMEOUT_and_exit);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001899
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001900 if (!get_line()) /* EOF or error or empty line */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001901 send_headers_and_exit(HTTP_BAD_REQUEST);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001902
Denis Vlasenko073214f2007-08-17 19:20:07 +00001903 /* Determine type of request (GET/POST) */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001904 urlp = strpbrk(iobuf, " \t");
1905 if (urlp == NULL)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001906 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001907 *urlp++ = '\0';
Denis Vlasenko55a99402006-09-30 20:41:44 +00001908#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko073214f2007-08-17 19:20:07 +00001909 prequest = request_GET;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001910 if (strcasecmp(iobuf, prequest) != 0) {
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001911 prequest = request_HEAD;
1912 if (strcasecmp(iobuf, prequest) != 0) {
1913 prequest = "POST";
1914 if (strcasecmp(iobuf, prequest) != 0)
1915 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
1916 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001917 }
1918#else
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001919 if (strcasecmp(iobuf, request_GET) != 0)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001920 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001921#endif
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001922 urlp = skip_whitespace(urlp);
1923 if (urlp[0] != '/')
1924 send_headers_and_exit(HTTP_BAD_REQUEST);
1925
1926 /* Find end of URL and parse HTTP version, if any */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001927 http_major_version = '0';
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001928 IF_FEATURE_HTTPD_PROXY(http_minor_version = '0';)
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001929 tptr = strchrnul(urlp, ' ');
1930 /* Is it " HTTP/"? */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001931 if (tptr[0] && strncmp(tptr + 1, HTTP_200, 5) == 0) {
1932 http_major_version = tptr[6];
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001933 IF_FEATURE_HTTPD_PROXY(http_minor_version = tptr[8];)
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001934 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001935 *tptr = '\0';
Glenn L McGrath06e95652003-02-09 06:51:14 +00001936
Denis Vlasenko073214f2007-08-17 19:20:07 +00001937 /* Copy URL from after "GET "/"POST " to stack-allocated char[] */
Denis Vlasenkofcd878e2007-12-29 02:16:23 +00001938 urlcopy = alloca((tptr - urlp) + 2 + strlen(index_page));
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001939 /*if (urlcopy == NULL)
1940 * send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);*/
1941 strcpy(urlcopy, urlp);
1942 /* NB: urlcopy ptr is never changed after this */
Denis Vlasenko073214f2007-08-17 19:20:07 +00001943
1944 /* Extract url args if present */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001945 g_query = NULL;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001946 tptr = strchr(urlcopy, '?');
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001947 if (tptr) {
1948 *tptr++ = '\0';
1949 g_query = tptr;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001950 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001951
Denis Vlasenko073214f2007-08-17 19:20:07 +00001952 /* Decode URL escape sequences */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001953 tptr = decodeString(urlcopy, 0);
1954 if (tptr == NULL)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001955 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001956 if (tptr == urlcopy + 1) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001957 /* '/' or NUL is encoded */
1958 send_headers_and_exit(HTTP_NOT_FOUND);
1959 }
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001960
Denis Vlasenko073214f2007-08-17 19:20:07 +00001961 /* Canonicalize path */
1962 /* Algorithm stolen from libbb bb_simplify_path(),
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001963 * but don't strdup, retain trailing slash, protect root */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001964 urlp = tptr = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001965 do {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001966 if (*urlp == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001967 /* skip duplicate (or initial) slash */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001968 if (*tptr == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001969 continue;
1970 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001971 if (*tptr == '.') {
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001972 /* skip extra "/./" */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001973 if (tptr[1] == '/' || !tptr[1]) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001974 continue;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001975 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001976 /* "..": be careful */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001977 if (tptr[1] == '.' && (tptr[2] == '/' || !tptr[2])) {
1978 ++tptr;
1979 if (urlp == urlcopy) /* protect root */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001980 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001981 while (*--urlp != '/') /* omit previous dir */;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001982 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001983 }
1984 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001985 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001986 *++urlp = *tptr;
1987 } while (*++tptr);
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001988 *++urlp = '\0'; /* terminate after last character */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001989
Denis Vlasenko073214f2007-08-17 19:20:07 +00001990 /* If URL is a directory, add '/' */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001991 if (urlp[-1] != '/') {
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001992 if (is_directory(urlcopy + 1, 1, NULL)) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001993 found_moved_temporarily = urlcopy;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001994 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001995 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001996
Denis Vlasenko073214f2007-08-17 19:20:07 +00001997 /* Log it */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001998 if (verbose > 1)
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001999 bb_error_msg("url:%s", urlcopy);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002000
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002001 tptr = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002002 ip_allowed = checkPermIP();
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002003 while (ip_allowed && (tptr = strchr(tptr + 1, '/')) != NULL) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002004 /* have path1/path2 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002005 *tptr = '\0';
Denys Vlasenko33d8d082009-09-10 01:46:02 +02002006 if (is_directory(urlcopy + 1, 1, NULL)) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002007 /* may have subdir config */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002008 parse_conf(urlcopy + 1, SUBDIR_PARSE);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002009 ip_allowed = checkPermIP();
2010 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002011 *tptr = '/';
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002012 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002013
2014#if ENABLE_FEATURE_HTTPD_PROXY
2015 proxy_entry = find_proxy_entry(urlcopy);
2016 if (proxy_entry)
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00002017 header_buf = header_ptr = xmalloc(IOBUF_SIZE);
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002018#endif
2019
2020 if (http_major_version >= '0') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002021 /* Request was with "... HTTP/nXXX", and n >= 0 */
Denis Vlasenko073214f2007-08-17 19:20:07 +00002022
Denys Vlasenko535ce1d2010-07-25 03:20:25 +02002023 /* Read until blank line */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002024 while (1) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002025 if (!get_line())
2026 break; /* EOF or error or empty line */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002027 if (DEBUG)
2028 bb_error_msg("header: '%s'", iobuf);
Denis Vlasenko073214f2007-08-17 19:20:07 +00002029
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002030#if ENABLE_FEATURE_HTTPD_PROXY
2031 /* We need 2 more bytes for yet another "\r\n" -
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00002032 * see near fdprintf(proxy_fd...) further below */
2033 if (proxy_entry && (header_ptr - header_buf) < IOBUF_SIZE - 2) {
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002034 int len = strlen(iobuf);
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00002035 if (len > IOBUF_SIZE - (header_ptr - header_buf) - 4)
2036 len = IOBUF_SIZE - (header_ptr - header_buf) - 4;
2037 memcpy(header_ptr, iobuf, len);
2038 header_ptr += len;
2039 header_ptr[0] = '\r';
2040 header_ptr[1] = '\n';
2041 header_ptr += 2;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002042 }
2043#endif
2044
2045#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
2046 /* Try and do our best to parse more lines */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002047 if ((STRNCASECMP(iobuf, "Content-length:") == 0)) {
2048 /* extra read only for POST */
Denis Vlasenko85c24712008-03-17 09:04:04 +00002049 if (prequest != request_GET
Denys Vlasenko535ce1d2010-07-25 03:20:25 +02002050# if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko85c24712008-03-17 09:04:04 +00002051 && prequest != request_HEAD
Denys Vlasenko535ce1d2010-07-25 03:20:25 +02002052# endif
Denis Vlasenko85c24712008-03-17 09:04:04 +00002053 ) {
Denis Vlasenko9c8c0382008-03-17 12:58:19 +00002054 tptr = skip_whitespace(iobuf + sizeof("Content-length:") - 1);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002055 if (!tptr[0])
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00002056 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002057 /* not using strtoul: it ignores leading minus! */
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002058 length = bb_strtou(tptr, NULL, 10);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002059 /* length is "ulong", but we need to pass it to int later */
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002060 if (errno || length > INT_MAX)
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00002061 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002062 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002063 }
2064#endif
2065#if ENABLE_FEATURE_HTTPD_CGI
2066 else if (STRNCASECMP(iobuf, "Cookie:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002067 cookie = xstrdup(skip_whitespace(iobuf + sizeof("Cookie:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002068 } else if (STRNCASECMP(iobuf, "Content-Type:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002069 content_type = xstrdup(skip_whitespace(iobuf + sizeof("Content-Type:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002070 } else if (STRNCASECMP(iobuf, "Referer:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002071 referer = xstrdup(skip_whitespace(iobuf + sizeof("Referer:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002072 } else if (STRNCASECMP(iobuf, "User-Agent:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002073 user_agent = xstrdup(skip_whitespace(iobuf + sizeof("User-Agent:")-1));
Denis Vlasenko9d1d4c02008-11-22 20:29:35 +00002074 } else if (STRNCASECMP(iobuf, "Host:") == 0) {
2075 host = xstrdup(skip_whitespace(iobuf + sizeof("Host:")-1));
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +00002076 } else if (STRNCASECMP(iobuf, "Accept:") == 0) {
2077 http_accept = xstrdup(skip_whitespace(iobuf + sizeof("Accept:")-1));
2078 } else if (STRNCASECMP(iobuf, "Accept-Language:") == 0) {
2079 http_accept_language = xstrdup(skip_whitespace(iobuf + sizeof("Accept-Language:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002080 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002081#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002082#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002083 if (STRNCASECMP(iobuf, "Authorization:") == 0) {
2084 /* We only allow Basic credentials.
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002085 * It shows up as "Authorization: Basic <user>:<passwd>" where
2086 * "<user>:<passwd>" is base64 encoded.
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002087 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002088 tptr = skip_whitespace(iobuf + sizeof("Authorization:")-1);
2089 if (STRNCASECMP(tptr, "Basic") != 0)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002090 continue;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002091 tptr += sizeof("Basic")-1;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002092 /* decodeBase64() skips whitespace itself */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002093 decodeBase64(tptr);
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002094 authorized = check_user_passwd(urlcopy, tptr);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002095 }
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002096#endif
Denis Vlasenkof4310172007-09-21 22:35:18 +00002097#if ENABLE_FEATURE_HTTPD_RANGES
2098 if (STRNCASECMP(iobuf, "Range:") == 0) {
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002099 /* We know only bytes=NNN-[MMM] */
Denis Vlasenkof4310172007-09-21 22:35:18 +00002100 char *s = skip_whitespace(iobuf + sizeof("Range:")-1);
2101 if (strncmp(s, "bytes=", 6) == 0) {
2102 s += sizeof("bytes=")-1;
2103 range_start = BB_STRTOOFF(s, &s, 10);
2104 if (s[0] != '-' || range_start < 0) {
2105 range_start = 0;
2106 } else if (s[1]) {
2107 range_end = BB_STRTOOFF(s+1, NULL, 10);
2108 if (errno || range_end < range_start)
2109 range_start = 0;
2110 }
2111 }
2112 }
2113#endif
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02002114#if ENABLE_FEATURE_HTTPD_GZIP
2115 if (STRNCASECMP(iobuf, "Accept-Encoding:") == 0) {
Peter Korsgaarde5dbd562010-07-26 02:08:35 +02002116 /* Note: we do not support "gzip;q=0"
2117 * method of _disabling_ gzip
2118 * delivery. No one uses that, though */
2119 const char *s = strstr(iobuf, "gzip");
2120 if (s) {
2121 // want more thorough checks?
2122 //if (s[-1] == ' '
2123 // || s[-1] == ','
2124 // || s[-1] == ':'
2125 //) {
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02002126 content_gzip = 1;
Peter Korsgaarde5dbd562010-07-26 02:08:35 +02002127 //}
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02002128 }
2129 }
2130#endif
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002131 } /* while extra header reading */
2132 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002133
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002134 /* We are done reading headers, disable peer timeout */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002135 alarm(0);
2136
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002137 if (strcmp(bb_basename(urlcopy), HTTPD_CONF) == 0 || !ip_allowed) {
2138 /* protect listing [/path]/httpd.conf or IP deny */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002139 send_headers_and_exit(HTTP_FORBIDDEN);
2140 }
2141
2142#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002143 /* Case: no "Authorization:" was seen, but page does require passwd.
2144 * Check that with dummy user:pass */
Denis Vlasenko7504f2f2008-06-13 13:20:38 +00002145 if (authorized < 0)
2146 authorized = check_user_passwd(urlcopy, ":");
2147 if (!authorized)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002148 send_headers_and_exit(HTTP_UNAUTHORIZED);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002149#endif
2150
2151 if (found_moved_temporarily) {
2152 send_headers_and_exit(HTTP_MOVED_TEMPORARILY);
2153 }
2154
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002155#if ENABLE_FEATURE_HTTPD_PROXY
2156 if (proxy_entry != NULL) {
2157 int proxy_fd;
2158 len_and_sockaddr *lsa;
2159
2160 proxy_fd = socket(AF_INET, SOCK_STREAM, 0);
2161 if (proxy_fd < 0)
2162 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2163 lsa = host2sockaddr(proxy_entry->host_port, 80);
2164 if (lsa == NULL)
2165 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002166 if (connect(proxy_fd, &lsa->u.sa, lsa->len) < 0)
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002167 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2168 fdprintf(proxy_fd, "%s %s%s%s%s HTTP/%c.%c\r\n",
2169 prequest, /* GET or POST */
2170 proxy_entry->url_to, /* url part 1 */
2171 urlcopy + strlen(proxy_entry->url_from), /* url part 2 */
2172 (g_query ? "?" : ""), /* "?" (maybe) */
2173 (g_query ? g_query : ""), /* query string (maybe) */
2174 http_major_version, http_minor_version);
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00002175 header_ptr[0] = '\r';
2176 header_ptr[1] = '\n';
2177 header_ptr += 2;
2178 write(proxy_fd, header_buf, header_ptr - header_buf);
2179 free(header_buf); /* on the order of 8k, free it */
Denys Vlasenko8fc9e6a2010-04-02 10:40:58 +02002180 cgi_io_loop_and_exit(proxy_fd, proxy_fd, length);
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002181 }
2182#endif
2183
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002184 tptr = urlcopy + 1; /* skip first '/' */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002185
2186#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002187 if (strncmp(tptr, "cgi-bin/", 8) == 0) {
2188 if (tptr[8] == '\0') {
Denis Vlasenko073214f2007-08-17 19:20:07 +00002189 /* protect listing "cgi-bin/" */
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002190 send_headers_and_exit(HTTP_FORBIDDEN);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002191 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002192 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002193 }
Denys Vlasenko108b8c52009-09-08 21:17:49 +02002194#endif
2195
2196 if (urlp[-1] == '/')
2197 strcpy(urlp, index_page);
2198 if (stat(tptr, &sb) == 0) {
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002199#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002200 char *suffix = strrchr(tptr, '.');
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002201 if (suffix) {
2202 Htaccess *cur;
2203 for (cur = script_i; cur; cur = cur->next) {
2204 if (strcmp(cur->before_colon + 1, suffix) == 0) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002205 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002206 }
2207 }
2208 }
2209#endif
Denis Vlasenkof4310172007-09-21 22:35:18 +00002210 file_size = sb.st_size;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002211 last_mod = sb.st_mtime;
2212 }
Denis Vlasenko5d148e22006-11-21 00:12:09 +00002213#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002214 else if (urlp[-1] == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002215 /* It's a dir URL and there is no index.html
2216 * Try cgi-bin/index.cgi */
2217 if (access("/cgi-bin/index.cgi"+1, X_OK) == 0) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002218 urlp[0] = '\0';
2219 g_query = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002220 send_cgi_and_exit("/cgi-bin/index.cgi", prequest, length, cookie, content_type);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002221 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002222 }
Denys Vlasenko108b8c52009-09-08 21:17:49 +02002223 /* else fall through to send_file, it errors out if open fails: */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002224
Denys Vlasenko108b8c52009-09-08 21:17:49 +02002225 if (prequest != request_GET && prequest != request_HEAD) {
2226 /* POST for files does not make sense */
2227 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
2228 }
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002229 send_file_and_exit(tptr,
Denis Vlasenko85c24712008-03-17 09:04:04 +00002230 (prequest != request_HEAD ? SEND_HEADERS_AND_BODY : SEND_HEADERS)
Denis Vlasenko85c24712008-03-17 09:04:04 +00002231 );
Denys Vlasenko108b8c52009-09-08 21:17:49 +02002232#else
2233 send_file_and_exit(tptr, SEND_HEADERS_AND_BODY);
2234#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002235}
2236
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002237/*
2238 * The main http server function.
Denis Vlasenko367960b2007-08-18 14:20:21 +00002239 * Given a socket, listen for new connections and farm out
2240 * the processing as a [v]forked process.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002241 * Never returns.
2242 */
Denis Vlasenko367960b2007-08-18 14:20:21 +00002243#if BB_MMU
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002244static void mini_httpd(int server_socket) NORETURN;
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002245static void mini_httpd(int server_socket)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002246{
Denis Vlasenko073214f2007-08-17 19:20:07 +00002247 /* NB: it's best to not use xfuncs in this loop before fork().
2248 * Otherwise server may die on transient errors (temporary
2249 * out-of-memory condition, etc), which is Bad(tm).
2250 * Try to do any dangerous calls after fork.
2251 */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002252 while (1) {
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002253 int n;
2254 len_and_sockaddr fromAddr;
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00002255
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002256 /* Wait for connections... */
2257 fromAddr.len = LSA_SIZEOF_SA;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002258 n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002259 if (n < 0)
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00002260 continue;
Denys Vlasenko535ce1d2010-07-25 03:20:25 +02002261
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002262 /* set the KEEPALIVE option to cull dead connections */
2263 setsockopt(n, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002264
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002265 if (fork() == 0) {
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002266 /* child */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002267 /* Do not reload config on HUP */
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00002268 signal(SIGHUP, SIG_IGN);
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002269 close(server_socket);
2270 xmove_fd(n, 0);
2271 xdup2(0, 1);
2272
Denis Vlasenko367960b2007-08-18 14:20:21 +00002273 handle_incoming_and_exit(&fromAddr);
2274 }
2275 /* parent, or fork failed */
2276 close(n);
2277 } /* while (1) */
2278 /* never reached */
2279}
2280#else
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002281static void mini_httpd_nommu(int server_socket, int argc, char **argv) NORETURN;
Denis Vlasenko367960b2007-08-18 14:20:21 +00002282static void mini_httpd_nommu(int server_socket, int argc, char **argv)
2283{
2284 char *argv_copy[argc + 2];
2285
2286 argv_copy[0] = argv[0];
2287 argv_copy[1] = (char*)"-i";
2288 memcpy(&argv_copy[2], &argv[1], argc * sizeof(argv[0]));
2289
2290 /* NB: it's best to not use xfuncs in this loop before vfork().
2291 * Otherwise server may die on transient errors (temporary
2292 * out-of-memory condition, etc), which is Bad(tm).
2293 * Try to do any dangerous calls after fork.
2294 */
2295 while (1) {
2296 int n;
2297 len_and_sockaddr fromAddr;
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00002298
Denis Vlasenko367960b2007-08-18 14:20:21 +00002299 /* Wait for connections... */
2300 fromAddr.len = LSA_SIZEOF_SA;
Denis Vlasenko671ca332008-02-19 14:13:20 +00002301 n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002302 if (n < 0)
2303 continue;
Denys Vlasenko535ce1d2010-07-25 03:20:25 +02002304
Denis Vlasenko367960b2007-08-18 14:20:21 +00002305 /* set the KEEPALIVE option to cull dead connections */
2306 setsockopt(n, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
2307
2308 if (vfork() == 0) {
2309 /* child */
Denis Vlasenko367960b2007-08-18 14:20:21 +00002310 /* Do not reload config on HUP */
2311 signal(SIGHUP, SIG_IGN);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002312 close(server_socket);
2313 xmove_fd(n, 0);
2314 xdup2(0, 1);
2315
2316 /* Run a copy of ourself in inetd mode */
2317 re_exec(argv_copy);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002318 }
Denis Vlasenko921799d2007-08-19 19:28:09 +00002319 /* parent, or vfork failed */
Denis Vlasenko073214f2007-08-17 19:20:07 +00002320 close(n);
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002321 } /* while (1) */
Denis Vlasenko241b1562007-08-17 19:18:47 +00002322 /* never reached */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002323}
Denis Vlasenko56258b62007-06-23 23:14:02 +00002324#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002325
Denis Vlasenko367960b2007-08-18 14:20:21 +00002326/*
2327 * Process a HTTP connection on stdin/out.
2328 * Never returns.
2329 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002330static void mini_httpd_inetd(void) NORETURN;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002331static void mini_httpd_inetd(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002332{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002333 len_and_sockaddr fromAddr;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002334
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00002335 memset(&fromAddr, 0, sizeof(fromAddr));
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002336 fromAddr.len = LSA_SIZEOF_SA;
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00002337 /* NB: can fail if user runs it by hand and types in http cmds */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002338 getpeername(0, &fromAddr.u.sa, &fromAddr.len);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002339 handle_incoming_and_exit(&fromAddr);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002340}
Glenn L McGrath06e95652003-02-09 06:51:14 +00002341
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002342static void sighup_handler(int sig UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00002343{
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002344 parse_conf(DEFAULT_PATH_HTTPD_CONF, SIGNALED_PARSE);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002345}
Glenn L McGrath06e95652003-02-09 06:51:14 +00002346
Denis Vlasenko9f609292006-11-05 19:47:33 +00002347enum {
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002348 c_opt_config_file = 0,
2349 d_opt_decode_url,
2350 h_opt_home_httpd,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002351 IF_FEATURE_HTTPD_ENCODE_URL_STR(e_opt_encode_url,)
2352 IF_FEATURE_HTTPD_BASIC_AUTH( r_opt_realm ,)
2353 IF_FEATURE_HTTPD_AUTH_MD5( m_opt_md5 ,)
2354 IF_FEATURE_HTTPD_SETUID( u_opt_setuid ,)
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002355 p_opt_port ,
2356 p_opt_inetd ,
2357 p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002358 p_opt_verbose ,
Denis Vlasenko9f609292006-11-05 19:47:33 +00002359 OPT_CONFIG_FILE = 1 << c_opt_config_file,
2360 OPT_DECODE_URL = 1 << d_opt_decode_url,
2361 OPT_HOME_HTTPD = 1 << h_opt_home_httpd,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002362 OPT_ENCODE_URL = IF_FEATURE_HTTPD_ENCODE_URL_STR((1 << e_opt_encode_url)) + 0,
2363 OPT_REALM = IF_FEATURE_HTTPD_BASIC_AUTH( (1 << r_opt_realm )) + 0,
2364 OPT_MD5 = IF_FEATURE_HTTPD_AUTH_MD5( (1 << m_opt_md5 )) + 0,
2365 OPT_SETUID = IF_FEATURE_HTTPD_SETUID( (1 << u_opt_setuid )) + 0,
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002366 OPT_PORT = 1 << p_opt_port,
2367 OPT_INETD = 1 << p_opt_inetd,
2368 OPT_FOREGROUND = 1 << p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002369 OPT_VERBOSE = 1 << p_opt_verbose,
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002370};
Eric Andersena3bb3e62003-06-26 09:05:32 +00002371
Eric Andersena3bb3e62003-06-26 09:05:32 +00002372
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00002373int httpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002374int httpd_main(int argc UNUSED_PARAM, char **argv)
Glenn L McGrath06e95652003-02-09 06:51:14 +00002375{
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002376 int server_socket = server_socket; /* for gcc */
Denis Vlasenko67b23e62006-10-03 21:00:06 +00002377 unsigned opt;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002378 char *url_for_decode;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002379 IF_FEATURE_HTTPD_ENCODE_URL_STR(const char *url_for_encode;)
2380 IF_FEATURE_HTTPD_SETUID(const char *s_ugid = NULL;)
2381 IF_FEATURE_HTTPD_SETUID(struct bb_uidgid_t ugid;)
2382 IF_FEATURE_HTTPD_AUTH_MD5(const char *pass;)
Eric Andersen35e643b2003-07-28 07:40:39 +00002383
Denis Vlasenko073214f2007-08-17 19:20:07 +00002384 INIT_G();
2385
Denis Vlasenkofcdb00f2006-11-21 00:09:37 +00002386#if ENABLE_LOCALE_SUPPORT
2387 /* Undo busybox.c: we want to speak English in http (dates etc) */
2388 setlocale(LC_TIME, "C");
2389#endif
2390
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002391 home_httpd = xrealloc_getcwd_or_warn(NULL);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002392 /* -v counts, -i implies -f */
2393 opt_complementary = "vv:if";
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002394 /* We do not "absolutize" path given by -h (home) opt.
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00002395 * If user gives relative path in -h,
2396 * $SCRIPT_FILENAME will not be set. */
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00002397 opt = getopt32(argv, "c:d:h:"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002398 IF_FEATURE_HTTPD_ENCODE_URL_STR("e:")
2399 IF_FEATURE_HTTPD_BASIC_AUTH("r:")
2400 IF_FEATURE_HTTPD_AUTH_MD5("m:")
2401 IF_FEATURE_HTTPD_SETUID("u:")
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002402 "p:ifv",
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002403 &opt_c_configFile, &url_for_decode, &home_httpd
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002404 IF_FEATURE_HTTPD_ENCODE_URL_STR(, &url_for_encode)
2405 IF_FEATURE_HTTPD_BASIC_AUTH(, &g_realm)
2406 IF_FEATURE_HTTPD_AUTH_MD5(, &pass)
2407 IF_FEATURE_HTTPD_SETUID(, &s_ugid)
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002408 , &bind_addr_or_port
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002409 , &verbose
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002410 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002411 if (opt & OPT_DECODE_URL) {
Denis Vlasenko367960b2007-08-18 14:20:21 +00002412 fputs(decodeString(url_for_decode, 1), stdout);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002413 return 0;
2414 }
Denis Vlasenko55a99402006-09-30 20:41:44 +00002415#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002416 if (opt & OPT_ENCODE_URL) {
Denis Vlasenko367960b2007-08-18 14:20:21 +00002417 fputs(encodeString(url_for_encode), stdout);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002418 return 0;
2419 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002420#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002421#if ENABLE_FEATURE_HTTPD_AUTH_MD5
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002422 if (opt & OPT_MD5) {
Denys Vlasenkodbc6a7a2009-12-16 02:28:50 +01002423 char salt[sizeof("$1$XXXXXXXX")];
2424 salt[0] = '$';
2425 salt[1] = '1';
2426 salt[2] = '$';
2427 crypt_make_salt(salt + 3, 4, 0);
2428 puts(pw_encrypt(pass, salt, 1));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002429 return 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002430 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002431#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002432#if ENABLE_FEATURE_HTTPD_SETUID
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002433 if (opt & OPT_SETUID) {
Bernhard Reutner-Fischerd73cbd32008-07-21 14:41:33 +00002434 xget_uidgid(&ugid, s_ugid);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002435 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002436#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002437
Denis Vlasenko367960b2007-08-18 14:20:21 +00002438#if !BB_MMU
2439 if (!(opt & OPT_FOREGROUND)) {
2440 bb_daemonize_or_rexec(0, argv); /* don't change current directory */
2441 }
2442#endif
2443
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002444 xchdir(home_httpd);
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002445 if (!(opt & OPT_INETD)) {
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00002446 signal(SIGCHLD, SIG_IGN);
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002447 server_socket = openServer();
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002448#if ENABLE_FEATURE_HTTPD_SETUID
2449 /* drop privileges */
2450 if (opt & OPT_SETUID) {
2451 if (ugid.gid != (gid_t)-1) {
2452 if (setgroups(1, &ugid.gid) == -1)
Denis Vlasenko8e858e22007-03-07 09:35:43 +00002453 bb_perror_msg_and_die("setgroups");
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002454 xsetgid(ugid.gid);
2455 }
2456 xsetuid(ugid.uid);
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002457 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002458#endif
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002459 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002460
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002461#if 0
Denis Vlasenko2535f122007-09-15 13:28:30 +00002462 /* User can do it himself: 'env - PATH="$PATH" httpd'
2463 * We don't do it because we don't want to screw users
2464 * which want to do
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002465 * 'env - VAR1=val1 VAR2=val2 httpd'
Denis Vlasenko2535f122007-09-15 13:28:30 +00002466 * and have VAR1 and VAR2 values visible in their CGIs.
2467 * Besides, it is also smaller. */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002468 {
2469 char *p = getenv("PATH");
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002470 /* env strings themself are not freed, no need to xstrdup(p): */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002471 clearenv();
2472 if (p)
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002473 putenv(p - 5);
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002474// if (!(opt & OPT_INETD))
2475// setenv_long("SERVER_PORT", ???);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002476 }
Glenn L McGrathfe538ba2003-09-10 23:35:45 +00002477#endif
2478
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002479 parse_conf(DEFAULT_PATH_HTTPD_CONF, FIRST_PARSE);
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002480 if (!(opt & OPT_INETD))
2481 signal(SIGHUP, sighup_handler);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002482
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00002483 xfunc_error_retval = 0;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002484 if (opt & OPT_INETD)
2485 mini_httpd_inetd();
Denis Vlasenko367960b2007-08-18 14:20:21 +00002486#if BB_MMU
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002487 if (!(opt & OPT_FOREGROUND))
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002488 bb_daemonize(0); /* don't change current directory */
2489 mini_httpd(server_socket); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002490#else
Denis Vlasenko367960b2007-08-18 14:20:21 +00002491 mini_httpd_nommu(server_socket, argc, argv); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002492#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00002493 /* return 0; */
Glenn L McGrath06e95652003-02-09 06:51:14 +00002494}