blob: ba5eebad58f240d94be05ff7b6fea30e14314f0f [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"
Pere Orga5bc8c002011-04-11 03:29:49 +0200110//usage: "\n -i Inetd mode"
111//usage: "\n -f Don't daemonize"
112//usage: "\n -v[v] Verbose"
113//usage: "\n -p [IP:]PORT Bind to IP:PORT (default *:80)"
114//usage: IF_FEATURE_HTTPD_SETUID(
115//usage: "\n -u USER[:GRP] Set uid/gid after binding to port")
116//usage: IF_FEATURE_HTTPD_BASIC_AUTH(
117//usage: "\n -r REALM Authentication Realm for Basic Authentication")
118//usage: "\n -h HOME Home directory (default .)"
119//usage: "\n -c FILE Configuration file (default {/etc,HOME}/httpd.conf)"
120//usage: IF_FEATURE_HTTPD_AUTH_MD5(
121//usage: "\n -m STRING MD5 crypt STRING")
122//usage: "\n -e STRING HTML encode STRING"
123//usage: "\n -d STRING URL decode STRING"
124
Denis Vlasenkob6adbf12007-05-26 19:00:18 +0000125#include "libbb.h"
Denis Vlasenko1b9064d2007-08-12 21:05:49 +0000126#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
Denis Vlasenko1cbfd982009-02-04 23:43:44 +0000127# include <sys/sendfile.h>
Denis Vlasenko1b9064d2007-08-12 21:05:49 +0000128#endif
Denis Vlasenko69981422007-01-07 21:25:12 +0000129/* amount of buffering in a pipe */
130#ifndef PIPE_BUF
131# define PIPE_BUF 4096
132#endif
Denys Vlasenko535ce1d2010-07-25 03:20:25 +0200133
134#define DEBUG 0
135
136#define IOBUF_SIZE 8192
Denis Vlasenko32a471e2007-09-23 13:56:57 +0000137#if PIPE_BUF >= IOBUF_SIZE
138# error "PIPE_BUF >= IOBUF_SIZE"
139#endif
Denis Vlasenko073214f2007-08-17 19:20:07 +0000140
141#define HEADER_READ_TIMEOUT 60
142
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000143static const char DEFAULT_PATH_HTTPD_CONF[] ALIGN1 = "/etc";
144static const char HTTPD_CONF[] ALIGN1 = "httpd.conf";
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000145static const char HTTP_200[] ALIGN1 = "HTTP/1.0 200 OK\r\n";
Denys Vlasenko535ce1d2010-07-25 03:20:25 +0200146static const char index_html[] ALIGN1 = "index.html";
Glenn L McGrath06e95652003-02-09 06:51:14 +0000147
Denis Vlasenko073214f2007-08-17 19:20:07 +0000148typedef struct has_next_ptr {
149 struct has_next_ptr *next;
150} has_next_ptr;
Eric Andersen07f2fea2004-10-08 08:03:29 +0000151
Denis Vlasenko073214f2007-08-17 19:20:07 +0000152/* Must have "next" as a first member */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000153typedef struct Htaccess {
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000154 struct Htaccess *next;
Denis Vlasenko073214f2007-08-17 19:20:07 +0000155 char *after_colon;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000156 char before_colon[1]; /* really bigger, must be last */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000157} Htaccess;
158
Denis Vlasenko073214f2007-08-17 19:20:07 +0000159/* Must have "next" as a first member */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000160typedef struct Htaccess_IP {
Denis Vlasenko073214f2007-08-17 19:20:07 +0000161 struct Htaccess_IP *next;
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000162 unsigned ip;
163 unsigned mask;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000164 int allow_deny;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000165} Htaccess_IP;
166
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000167/* Must have "next" as a first member */
168typedef struct Htaccess_Proxy {
169 struct Htaccess_Proxy *next;
170 char *url_from;
171 char *host_port;
172 char *url_to;
173} Htaccess_Proxy;
174
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000175enum {
176 HTTP_OK = 200,
Denis Vlasenkof4310172007-09-21 22:35:18 +0000177 HTTP_PARTIAL_CONTENT = 206,
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000178 HTTP_MOVED_TEMPORARILY = 302,
179 HTTP_BAD_REQUEST = 400, /* malformed syntax */
180 HTTP_UNAUTHORIZED = 401, /* authentication needed, respond with auth hdr */
181 HTTP_NOT_FOUND = 404,
182 HTTP_FORBIDDEN = 403,
183 HTTP_REQUEST_TIMEOUT = 408,
184 HTTP_NOT_IMPLEMENTED = 501, /* used for unrecognized requests */
185 HTTP_INTERNAL_SERVER_ERROR = 500,
186 HTTP_CONTINUE = 100,
187#if 0 /* future use */
188 HTTP_SWITCHING_PROTOCOLS = 101,
189 HTTP_CREATED = 201,
190 HTTP_ACCEPTED = 202,
191 HTTP_NON_AUTHORITATIVE_INFO = 203,
192 HTTP_NO_CONTENT = 204,
193 HTTP_MULTIPLE_CHOICES = 300,
194 HTTP_MOVED_PERMANENTLY = 301,
195 HTTP_NOT_MODIFIED = 304,
196 HTTP_PAYMENT_REQUIRED = 402,
197 HTTP_BAD_GATEWAY = 502,
198 HTTP_SERVICE_UNAVAILABLE = 503, /* overload, maintenance */
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000199#endif
200};
201
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000202static const uint16_t http_response_type[] ALIGN2 = {
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000203 HTTP_OK,
Denis Vlasenkof4310172007-09-21 22:35:18 +0000204#if ENABLE_FEATURE_HTTPD_RANGES
205 HTTP_PARTIAL_CONTENT,
206#endif
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000207 HTTP_MOVED_TEMPORARILY,
208 HTTP_REQUEST_TIMEOUT,
209 HTTP_NOT_IMPLEMENTED,
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +0000210#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000211 HTTP_UNAUTHORIZED,
212#endif
213 HTTP_NOT_FOUND,
214 HTTP_BAD_REQUEST,
215 HTTP_FORBIDDEN,
216 HTTP_INTERNAL_SERVER_ERROR,
217#if 0 /* not implemented */
218 HTTP_CREATED,
219 HTTP_ACCEPTED,
220 HTTP_NO_CONTENT,
221 HTTP_MULTIPLE_CHOICES,
222 HTTP_MOVED_PERMANENTLY,
223 HTTP_NOT_MODIFIED,
224 HTTP_BAD_GATEWAY,
225 HTTP_SERVICE_UNAVAILABLE,
226#endif
227};
228
229static const struct {
230 const char *name;
231 const char *info;
232} http_response[ARRAY_SIZE(http_response_type)] = {
233 { "OK", NULL },
Denis Vlasenkof4310172007-09-21 22:35:18 +0000234#if ENABLE_FEATURE_HTTPD_RANGES
235 { "Partial Content", NULL },
236#endif
237 { "Found", NULL },
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000238 { "Request Timeout", "No request appeared within 60 seconds" },
239 { "Not Implemented", "The requested method is not recognized" },
240#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
241 { "Unauthorized", "" },
242#endif
243 { "Not Found", "The requested URL was not found" },
244 { "Bad Request", "Unsupported method" },
245 { "Forbidden", "" },
246 { "Internal Server Error", "Internal Server Error" },
247#if 0 /* not implemented */
248 { "Created" },
249 { "Accepted" },
250 { "No Content" },
251 { "Multiple Choices" },
252 { "Moved Permanently" },
253 { "Not Modified" },
254 { "Bad Gateway", "" },
255 { "Service Unavailable", "" },
256#endif
257};
258
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000259struct globals {
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000260 int verbose; /* must be int (used by getopt32) */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000261 smallint flg_deny_all;
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000262
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200263 unsigned rmt_ip; /* used for IP-based allow/deny rules */
Denis Vlasenko37c33162007-08-19 18:54:22 +0000264 time_t last_mod;
Denis Vlasenko37c33162007-08-19 18:54:22 +0000265 char *rmt_ip_str; /* for $REMOTE_ADDR and $REMOTE_PORT */
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000266 const char *bind_addr_or_port;
267
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000268 const char *g_query;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000269 const char *opt_c_configFile;
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000270 const char *home_httpd;
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000271 const char *index_page;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000272
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000273 const char *found_mime_type;
274 const char *found_moved_temporarily;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000275 Htaccess_IP *ip_a_d; /* config allow/deny lines */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000276
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000277 IF_FEATURE_HTTPD_BASIC_AUTH(const char *g_realm;)
278 IF_FEATURE_HTTPD_BASIC_AUTH(char *remoteuser;)
279 IF_FEATURE_HTTPD_CGI(char *referer;)
280 IF_FEATURE_HTTPD_CGI(char *user_agent;)
281 IF_FEATURE_HTTPD_CGI(char *host;)
282 IF_FEATURE_HTTPD_CGI(char *http_accept;)
283 IF_FEATURE_HTTPD_CGI(char *http_accept_language;)
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +0000284
Denis Vlasenkof4310172007-09-21 22:35:18 +0000285 off_t file_size; /* -1 - unknown */
286#if ENABLE_FEATURE_HTTPD_RANGES
287 off_t range_start;
288 off_t range_end;
289 off_t range_len;
290#endif
291
Denis Vlasenko55a99402006-09-30 20:41:44 +0000292#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000293 Htaccess *g_auth; /* config user:password lines */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000294#endif
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000295 Htaccess *mime_a; /* config mime types */
Denis Vlasenko55a99402006-09-30 20:41:44 +0000296#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000297 Htaccess *script_i; /* config script interpreters */
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000298#endif
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200299 char *iobuf; /* [IOBUF_SIZE] */
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000300#define hdr_buf bb_common_bufsiz1
301 char *hdr_ptr;
302 int hdr_cnt;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000303#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
304 const char *http_error_page[ARRAY_SIZE(http_response_type)];
305#endif
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000306#if ENABLE_FEATURE_HTTPD_PROXY
307 Htaccess_Proxy *proxy;
308#endif
Peter Korsgaard7a2ba322010-07-25 03:20:53 +0200309#if ENABLE_FEATURE_HTTPD_GZIP
310 /* client can handle gzip / we are going to send gzip */
311 smallint content_gzip;
312#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000313};
314#define G (*ptr_to_globals)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000315#define verbose (G.verbose )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000316#define flg_deny_all (G.flg_deny_all )
317#define rmt_ip (G.rmt_ip )
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000318#define bind_addr_or_port (G.bind_addr_or_port)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000319#define g_query (G.g_query )
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000320#define opt_c_configFile (G.opt_c_configFile )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000321#define home_httpd (G.home_httpd )
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000322#define index_page (G.index_page )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000323#define found_mime_type (G.found_mime_type )
324#define found_moved_temporarily (G.found_moved_temporarily)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000325#define last_mod (G.last_mod )
326#define ip_a_d (G.ip_a_d )
327#define g_realm (G.g_realm )
328#define remoteuser (G.remoteuser )
329#define referer (G.referer )
330#define user_agent (G.user_agent )
Denis Vlasenko9d1d4c02008-11-22 20:29:35 +0000331#define host (G.host )
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +0000332#define http_accept (G.http_accept )
333#define http_accept_language (G.http_accept_language)
Denis Vlasenkof4310172007-09-21 22:35:18 +0000334#define file_size (G.file_size )
335#if ENABLE_FEATURE_HTTPD_RANGES
336#define range_start (G.range_start )
337#define range_end (G.range_end )
338#define range_len (G.range_len )
Denis Vlasenko1cbfd982009-02-04 23:43:44 +0000339#else
340enum {
341 range_start = 0,
342 range_end = MAXINT(off_t) - 1,
343 range_len = MAXINT(off_t),
344};
Denis Vlasenkof4310172007-09-21 22:35:18 +0000345#endif
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000346#define rmt_ip_str (G.rmt_ip_str )
347#define g_auth (G.g_auth )
348#define mime_a (G.mime_a )
349#define script_i (G.script_i )
350#define iobuf (G.iobuf )
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000351#define hdr_ptr (G.hdr_ptr )
352#define hdr_cnt (G.hdr_cnt )
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000353#define http_error_page (G.http_error_page )
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000354#define proxy (G.proxy )
Peter Korsgaard7a2ba322010-07-25 03:20:53 +0200355#if ENABLE_FEATURE_HTTPD_GZIP
356# define content_gzip (G.content_gzip )
357#else
358# define content_gzip 0
359#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000360#define INIT_G() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000361 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000362 IF_FEATURE_HTTPD_BASIC_AUTH(g_realm = "Web Server Authentication";) \
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000363 bind_addr_or_port = "80"; \
Denys Vlasenko108b8c52009-09-08 21:17:49 +0200364 index_page = index_html; \
Denis Vlasenkof4310172007-09-21 22:35:18 +0000365 file_size = -1; \
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000366} while (0)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000367
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000368
Denis Vlasenko0bb993f2006-11-21 00:06:28 +0000369#define STRNCASECMP(a, str) strncasecmp((a), (str), sizeof(str)-1)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000370
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000371/* Prototypes */
Denis Vlasenko2f518b02008-02-21 00:12:07 +0000372enum {
373 SEND_HEADERS = (1 << 0),
374 SEND_BODY = (1 << 1),
375 SEND_HEADERS_AND_BODY = SEND_HEADERS + SEND_BODY,
376};
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000377static void send_file_and_exit(const char *url, int what) NORETURN;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000378
Denis Vlasenko073214f2007-08-17 19:20:07 +0000379static void free_llist(has_next_ptr **pptr)
380{
381 has_next_ptr *cur = *pptr;
382 while (cur) {
383 has_next_ptr *t = cur;
384 cur = cur->next;
385 free(t);
386 }
387 *pptr = NULL;
388}
389
Denis Vlasenko073214f2007-08-17 19:20:07 +0000390static ALWAYS_INLINE void free_Htaccess_list(Htaccess **pptr)
391{
392 free_llist((has_next_ptr**)pptr);
393}
Denis Vlasenko073214f2007-08-17 19:20:07 +0000394
395static ALWAYS_INLINE void free_Htaccess_IP_list(Htaccess_IP **pptr)
396{
397 free_llist((has_next_ptr**)pptr);
398}
Glenn L McGrath06e95652003-02-09 06:51:14 +0000399
Denis Vlasenkod867f322007-08-19 21:15:42 +0000400/* Returns presumed mask width in bits or < 0 on error.
401 * Updates strp, stores IP at provided pointer */
402static int scan_ip(const char **strp, unsigned *ipp, unsigned char endc)
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000403{
Denis Vlasenkod867f322007-08-19 21:15:42 +0000404 const char *p = *strp;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000405 int auto_mask = 8;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000406 unsigned ip = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000407 int j;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000408
Denis Vlasenkod867f322007-08-19 21:15:42 +0000409 if (*p == '/')
410 return -auto_mask;
411
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000412 for (j = 0; j < 4; j++) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000413 unsigned octet;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000414
Denis Vlasenkod867f322007-08-19 21:15:42 +0000415 if ((*p < '0' || *p > '9') && *p != '/' && *p)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000416 return -auto_mask;
417 octet = 0;
418 while (*p >= '0' && *p <= '9') {
419 octet *= 10;
420 octet += *p - '0';
421 if (octet > 255)
422 return -auto_mask;
423 p++;
424 }
425 if (*p == '.')
426 p++;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000427 if (*p != '/' && *p)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000428 auto_mask += 8;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000429 ip = (ip << 8) | octet;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000430 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000431 if (*p) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000432 if (*p != endc)
433 return -auto_mask;
434 p++;
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000435 if (*p == '\0')
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000436 return -auto_mask;
437 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000438 *ipp = ip;
439 *strp = p;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000440 return auto_mask;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000441}
442
Denis Vlasenkod867f322007-08-19 21:15:42 +0000443/* Returns 0 on success. Stores IP and mask at provided pointers */
444static int scan_ip_mask(const char *str, unsigned *ipp, unsigned *maskp)
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000445{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000446 int i;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000447 unsigned mask;
448 char *p;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000449
Denis Vlasenkod867f322007-08-19 21:15:42 +0000450 i = scan_ip(&str, ipp, '/');
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000451 if (i < 0)
452 return i;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000453
Denis Vlasenkod867f322007-08-19 21:15:42 +0000454 if (*str) {
455 /* there is /xxx after dotted-IP address */
456 i = bb_strtou(str, &p, 10);
457 if (*p == '.') {
458 /* 'xxx' itself is dotted-IP mask, parse it */
459 /* (return 0 (success) only if it has N.N.N.N form) */
460 return scan_ip(&str, maskp, '\0') - 32;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000461 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000462 if (*p)
463 return -1;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000464 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000465
466 if (i > 32)
Denis Vlasenko92758142006-10-03 19:56:34 +0000467 return -1;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000468
469 if (sizeof(unsigned) == 4 && i == 32) {
470 /* mask >>= 32 below may not work */
471 mask = 0;
472 } else {
473 mask = 0xffffffff;
474 mask >>= i;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000475 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000476 /* i == 0 -> *maskp = 0x00000000
477 * i == 1 -> *maskp = 0x80000000
478 * i == 4 -> *maskp = 0xf0000000
479 * i == 31 -> *maskp = 0xfffffffe
480 * i == 32 -> *maskp = 0xffffffff */
481 *maskp = (uint32_t)(~mask);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000482 return 0;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000483}
484
Denis Vlasenko073214f2007-08-17 19:20:07 +0000485/*
486 * Parse configuration file into in-memory linked list.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000487 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000488 * Any previous IP rules are discarded.
489 * If the flag argument is not SUBDIR_PARSE then all /path and mime rules
490 * are also discarded. That is, previous settings are retained if flag is
491 * SUBDIR_PARSE.
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000492 * Error pages are only parsed on the main config file.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000493 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000494 * path Path where to look for httpd.conf (without filename).
495 * flag Type of the parse request.
496 */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000497/* flag param: */
498enum {
499 FIRST_PARSE = 0, /* path will be "/etc" */
500 SIGNALED_PARSE = 1, /* path will be "/etc" */
501 SUBDIR_PARSE = 2, /* path will be derived from URL */
502};
Glenn L McGrath06e95652003-02-09 06:51:14 +0000503static void parse_conf(const char *path, int flag)
504{
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000505 /* internally used extra flag state */
506 enum { TRY_CURDIR_PARSE = 3 };
507
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000508 FILE *f;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000509 const char *filename;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000510 char buf[160];
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000511
Denis Vlasenko073214f2007-08-17 19:20:07 +0000512 /* discard old rules */
513 free_Htaccess_IP_list(&ip_a_d);
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000514 flg_deny_all = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000515 /* retain previous auth and mime config only for subdir parse */
516 if (flag != SUBDIR_PARSE) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000517 free_Htaccess_list(&mime_a);
Denis Vlasenko55a99402006-09-30 20:41:44 +0000518#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko073214f2007-08-17 19:20:07 +0000519 free_Htaccess_list(&g_auth);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000520#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000521#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000522 free_Htaccess_list(&script_i);
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000523#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000524 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000525
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000526 filename = opt_c_configFile;
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000527 if (flag == SUBDIR_PARSE || filename == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000528 filename = alloca(strlen(path) + sizeof(HTTPD_CONF) + 2);
529 sprintf((char *)filename, "%s/%s", path, HTTPD_CONF);
Glenn L McGrath393183d2003-05-26 14:07:50 +0000530 }
531
Denis Vlasenko5415c852008-07-21 23:05:26 +0000532 while ((f = fopen_for_read(filename)) == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000533 if (flag >= SUBDIR_PARSE) { /* SUBDIR or TRY_CURDIR */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000534 /* config file not found, no changes to config */
535 return;
536 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000537 if (flag == FIRST_PARSE) {
538 /* -c CONFFILE given, but CONFFILE doesn't exist? */
539 if (opt_c_configFile)
540 bb_simple_perror_msg_and_die(opt_c_configFile);
541 /* else: no -c, thus we looked at /etc/httpd.conf,
542 * and it's not there. try ./httpd.conf: */
543 }
544 flag = TRY_CURDIR_PARSE;
545 filename = HTTPD_CONF;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000546 }
547
Denis Vlasenko55a99402006-09-30 20:41:44 +0000548#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000549 /* in "/file:user:pass" lines, we prepend path in subdirs */
550 if (flag != SUBDIR_PARSE)
551 path = "";
Glenn L McGrath06e95652003-02-09 06:51:14 +0000552#endif
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000553 /* The lines can be:
554 *
555 * I:default_index_file
556 * H:http_home
557 * [AD]:IP[/mask] # allow/deny, * for wildcard
558 * Ennn:error.html # error page for status nnn
559 * P:/url:[http://]hostname[:port]/new/path # reverse proxy
560 * .ext:mime/type # mime type
561 * *.php:/path/php # run xxx.php through an interpreter
562 * /file:user:pass # username and password
563 */
564 while (fgets(buf, sizeof(buf), f) != NULL) {
565 unsigned strlen_buf;
566 unsigned char ch;
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200567 char *after_colon;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000568
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000569 { /* remove all whitespace, and # comments */
570 char *p, *p0;
571
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200572 p0 = buf;
573 /* skip non-whitespace beginning. Often the whole line
574 * is non-whitespace. We want this case to work fast,
575 * without needless copying, therefore we don't merge
576 * this operation into next while loop. */
577 while ((ch = *p0) != '\0' && ch != '\n' && ch != '#'
578 && ch != ' ' && ch != '\t'
579 ) {
580 p0++;
581 }
582 p = p0;
583 /* if we enter this loop, we have some whitespace.
584 * discard it */
585 while (ch != '\0' && ch != '\n' && ch != '#') {
586 if (ch != ' ' && ch != '\t') {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000587 *p++ = ch;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000588 }
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200589 ch = *++p0;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000590 }
591 *p = '\0';
592 strlen_buf = p - buf;
Denis Vlasenko00643ca2009-04-22 13:52:22 +0000593 if (strlen_buf == 0)
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200594 continue; /* empty line */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000595 }
596
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200597 after_colon = strchr(buf, ':');
Denis Vlasenko00643ca2009-04-22 13:52:22 +0000598 /* strange line? */
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200599 if (after_colon == NULL || *++after_colon == '\0')
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000600 goto config_error;
601
602 ch = (buf[0] & ~0x20); /* toupper if it's a letter */
603
604 if (ch == 'I') {
Denys Vlasenko108b8c52009-09-08 21:17:49 +0200605 if (index_page != index_html)
606 free((char*)index_page);
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000607 index_page = xstrdup(after_colon);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000608 continue;
609 }
610
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000611 /* do not allow jumping around using H in subdir's configs */
612 if (flag == FIRST_PARSE && ch == 'H') {
613 home_httpd = xstrdup(after_colon);
614 xchdir(home_httpd);
615 continue;
616 }
617
618 if (ch == 'A' || ch == 'D') {
619 Htaccess_IP *pip;
620
621 if (*after_colon == '*') {
622 if (ch == 'D') {
623 /* memorize "deny all" */
624 flg_deny_all = 1;
625 }
626 /* skip assumed "A:*", it is a default anyway */
627 continue;
628 }
629 /* store "allow/deny IP/mask" line */
630 pip = xzalloc(sizeof(*pip));
631 if (scan_ip_mask(after_colon, &pip->ip, &pip->mask)) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000632 /* IP{/mask} syntax error detected, protect all */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000633 ch = 'D';
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000634 pip->mask = 0;
635 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000636 pip->allow_deny = ch;
637 if (ch == 'D') {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000638 /* Deny:from_IP - prepend */
639 pip->next = ip_a_d;
640 ip_a_d = pip;
641 } else {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000642 /* A:from_IP - append (thus all D's precedes A's) */
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000643 Htaccess_IP *prev_IP = ip_a_d;
644 if (prev_IP == NULL) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000645 ip_a_d = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000646 } else {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000647 while (prev_IP->next)
648 prev_IP = prev_IP->next;
649 prev_IP->next = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000650 }
651 }
652 continue;
653 }
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000654
655#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000656 if (flag == FIRST_PARSE && ch == 'E') {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000657 unsigned i;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000658 int status = atoi(buf + 1); /* error status code */
659
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000660 if (status < HTTP_CONTINUE) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000661 goto config_error;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000662 }
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000663 /* then error page; find matching status */
664 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
665 if (http_response_type[i] == status) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000666 /* We chdir to home_httpd, thus no need to
667 * concat_path_file(home_httpd, after_colon)
668 * here */
669 http_error_page[i] = xstrdup(after_colon);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000670 break;
671 }
672 }
673 continue;
674 }
675#endif
676
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000677#if ENABLE_FEATURE_HTTPD_PROXY
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000678 if (flag == FIRST_PARSE && ch == 'P') {
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000679 /* P:/url:[http://]hostname[:port]/new/path */
680 char *url_from, *host_port, *url_to;
681 Htaccess_Proxy *proxy_entry;
682
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000683 url_from = after_colon;
684 host_port = strchr(after_colon, ':');
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000685 if (host_port == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000686 goto config_error;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000687 }
688 *host_port++ = '\0';
689 if (strncmp(host_port, "http://", 7) == 0)
Denis Vlasenko78ee7c82007-10-21 23:24:42 +0000690 host_port += 7;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000691 if (*host_port == '\0') {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000692 goto config_error;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000693 }
694 url_to = strchr(host_port, '/');
695 if (url_to == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000696 goto config_error;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000697 }
698 *url_to = '\0';
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000699 proxy_entry = xzalloc(sizeof(*proxy_entry));
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000700 proxy_entry->url_from = xstrdup(url_from);
701 proxy_entry->host_port = xstrdup(host_port);
702 *url_to = '/';
703 proxy_entry->url_to = xstrdup(url_to);
704 proxy_entry->next = proxy;
705 proxy = proxy_entry;
706 continue;
707 }
708#endif
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000709 /* the rest of directives are non-alphabetic,
710 * must avoid using "toupper'ed" ch */
711 ch = buf[0];
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000712
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000713 if (ch == '.' /* ".ext:mime/type" */
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000714#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000715 || (ch == '*' && buf[1] == '.') /* "*.php:/path/php" */
716#endif
717 ) {
718 char *p;
719 Htaccess *cur;
720
721 cur = xzalloc(sizeof(*cur) /* includes space for NUL */ + strlen_buf);
722 strcpy(cur->before_colon, buf);
723 p = cur->before_colon + (after_colon - buf);
724 p[-1] = '\0';
725 cur->after_colon = p;
726 if (ch == '.') {
727 /* .mime line: prepend to mime_a list */
728 cur->next = mime_a;
729 mime_a = cur;
730 }
731#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
732 else {
733 /* script interpreter line: prepend to script_i list */
734 cur->next = script_i;
735 script_i = cur;
736 }
737#endif
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000738 continue;
739 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000740
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000741#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
742 if (ch == '/') { /* "/file:user:pass" */
743 char *p;
744 Htaccess *cur;
745 unsigned file_len;
746
747 /* note: path is "" unless we are in SUBDIR parse,
Denis Vlasenkoc8d71092009-04-22 14:16:59 +0000748 * otherwise it does NOT start with "/" */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000749 cur = xzalloc(sizeof(*cur) /* includes space for NUL */
Denis Vlasenkoc8d71092009-04-22 14:16:59 +0000750 + 1 + strlen(path)
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000751 + strlen_buf
752 );
753 /* form "/path/file" */
Denis Vlasenkoc8d71092009-04-22 14:16:59 +0000754 sprintf(cur->before_colon, "/%s%.*s",
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000755 path,
Denys Vlasenkoa4bcbd02009-06-09 23:01:24 +0200756 (int) (after_colon - buf - 1), /* includes "/", but not ":" */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000757 buf);
758 /* canonicalize it */
759 p = bb_simplify_abs_path_inplace(cur->before_colon);
760 file_len = p - cur->before_colon;
761 /* add "user:pass" after NUL */
762 strcpy(++p, after_colon);
763 cur->after_colon = p;
764
765 /* insert cur into g_auth */
766 /* g_auth is sorted by decreased filename length */
767 {
768 Htaccess *auth, **authp;
769
770 authp = &g_auth;
771 while ((auth = *authp) != NULL) {
772 if (file_len >= strlen(auth->before_colon)) {
773 /* insert cur before auth */
774 cur->next = auth;
775 break;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000776 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000777 authp = &auth->next;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000778 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000779 *authp = cur;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000780 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000781 continue;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000782 }
783#endif /* BASIC_AUTH */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000784
785 /* the line is not recognized */
786 config_error:
787 bb_error_msg("config error '%s' in '%s'", buf, filename);
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000788 } /* while (fgets) */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000789
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000790 fclose(f);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000791}
792
Denis Vlasenko55a99402006-09-30 20:41:44 +0000793#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000794/*
795 * Given a string, html-encode special characters.
796 * This is used for the -e command line option to provide an easy way
797 * for scripts to encode result data without confusing browsers. The
798 * returned string pointer is memory allocated by malloc().
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000799 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000800 * Returns a pointer to the encoded string (malloced).
801 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000802static char *encodeString(const char *string)
803{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000804 /* take the simple route and encode everything */
805 /* could possibly scan once to get length. */
806 int len = strlen(string);
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000807 char *out = xmalloc(len * 6 + 1);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000808 char *p = out;
809 char ch;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000810
Denys Vlasenko535ce1d2010-07-25 03:20:25 +0200811 while ((ch = *string++) != '\0') {
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000812 /* very simple check for what to encode */
813 if (isalnum(ch))
814 *p++ = ch;
815 else
816 p += sprintf(p, "&#%d;", (unsigned char) ch);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000817 }
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000818 *p = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000819 return out;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000820}
Denys Vlasenko535ce1d2010-07-25 03:20:25 +0200821#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000822
Denis Vlasenko073214f2007-08-17 19:20:07 +0000823/*
824 * Given a URL encoded string, convert it to plain ascii.
825 * Since decoding always makes strings smaller, the decode is done in-place.
Denis Vlasenkoc4523c22008-03-28 02:24:59 +0000826 * Thus, callers should xstrdup() the argument if they do not want the
Denis Vlasenko073214f2007-08-17 19:20:07 +0000827 * argument modified. The return is the original pointer, allowing this
828 * function to be easily used as arguments to other functions.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000829 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000830 * string The first string to decode.
831 * option_d 1 if called for httpd -d
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000832 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000833 * Returns a pointer to the decoded string (same as input).
834 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000835static unsigned hex_to_bin(unsigned char c)
836{
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000837 unsigned v;
838
839 v = c - '0';
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000840 if (v <= 9)
841 return v;
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000842 /* c | 0x20: letters to lower case, non-letters
843 * to (potentially different) non-letters */
844 v = (unsigned)(c | 0x20) - 'a';
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000845 if (v <= 5)
846 return v + 10;
847 return ~0;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000848/* For testing:
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000849void t(char c) { printf("'%c'(%u) %u\n", c, c, hex_to_bin(c)); }
850int main() { t(0x10); t(0x20); t('0'); t('9'); t('A'); t('F'); t('a'); t('f');
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000851t('0'-1); t('9'+1); t('A'-1); t('F'+1); t('a'-1); t('f'+1); return 0; }
852*/
Denys Vlasenko535ce1d2010-07-25 03:20:25 +0200853}
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000854static char *decodeString(char *orig, int option_d)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000855{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000856 /* note that decoded string is always shorter than original */
857 char *string = orig;
858 char *ptr = string;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000859 char c;
Eric Andersena3bb3e62003-06-26 09:05:32 +0000860
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000861 while ((c = *ptr++) != '\0') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000862 unsigned v;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000863
864 if (option_d && c == '+') {
Denis Vlasenko601ae132006-11-28 23:37:46 +0000865 *string++ = ' ';
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000866 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000867 }
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000868 if (c != '%') {
869 *string++ = c;
870 continue;
871 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000872 v = hex_to_bin(ptr[0]);
873 if (v > 15) {
874 bad_hex:
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000875 if (!option_d)
876 return NULL;
877 *string++ = '%';
878 continue;
879 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000880 v = (v * 16) | hex_to_bin(ptr[1]);
881 if (v > 255)
882 goto bad_hex;
883 if (!option_d && (v == '/' || v == '\0')) {
Denis Vlasenkof7996f32007-01-11 17:20:00 +0000884 /* caller takes it as indication of invalid
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000885 * (dangerous wrt exploits) chars */
886 return orig + 1;
887 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +0000888 *string++ = v;
Denis Vlasenkoa35c9e92006-11-29 15:58:50 +0000889 ptr += 2;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000890 }
891 *string = '\0';
892 return orig;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000893}
894
Denis Vlasenko55a99402006-09-30 20:41:44 +0000895#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000896/*
Denis Vlasenko073214f2007-08-17 19:20:07 +0000897 * Decode a base64 data stream as per rfc1521.
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000898 * Note that the rfc states that non base64 chars are to be ignored.
Denis Vlasenko073214f2007-08-17 19:20:07 +0000899 * Since the decode always results in a shorter size than the input,
900 * it is OK to pass the input arg as an output arg.
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000901 * Parameter: a pointer to a base64 encoded string.
902 * Decoded data is stored in-place.
903 */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000904static void decodeBase64(char *Data)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000905{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000906 const unsigned char *in = (const unsigned char *)Data;
Denis Vlasenko37c33162007-08-19 18:54:22 +0000907 /* The decoded size will be at most 3/4 the size of the encoded */
Denis Vlasenko088b9592007-04-18 21:14:46 +0000908 unsigned ch = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000909 int i = 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000910
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000911 while (*in) {
912 int t = *in++;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000913
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000914 if (t >= '0' && t <= '9')
915 t = t - '0' + 52;
916 else if (t >= 'A' && t <= 'Z')
917 t = t - 'A';
918 else if (t >= 'a' && t <= 'z')
919 t = t - 'a' + 26;
920 else if (t == '+')
921 t = 62;
922 else if (t == '/')
923 t = 63;
924 else if (t == '=')
925 t = 0;
926 else
927 continue;
Glenn L McGrath874e3382003-05-14 12:11:36 +0000928
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000929 ch = (ch << 6) | t;
930 i++;
931 if (i == 4) {
932 *Data++ = (char) (ch >> 16);
933 *Data++ = (char) (ch >> 8);
934 *Data++ = (char) ch;
935 i = 0;
936 }
937 }
Denis Vlasenko088b9592007-04-18 21:14:46 +0000938 *Data = '\0';
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000939}
940#endif
941
Denis Vlasenko073214f2007-08-17 19:20:07 +0000942/*
943 * Create a listen server socket on the designated port.
944 */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000945static int openServer(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000946{
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000947 unsigned n = bb_strtou(bind_addr_or_port, NULL, 10);
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000948 if (!errno && n && n <= 0xffff)
949 n = create_and_bind_stream_or_die(NULL, n);
950 else
951 n = create_and_bind_stream_or_die(bind_addr_or_port, 80);
952 xlisten(n, 9);
953 return n;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000954}
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000955
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000956/*
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000957 * Log the connection closure and exit.
958 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000959static void log_and_exit(void) NORETURN;
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000960static void log_and_exit(void)
961{
Denis Vlasenko921799d2007-08-19 19:28:09 +0000962 /* Paranoia. IE said to be buggy. It may send some extra data
963 * or be confused by us just exiting without SHUT_WR. Oh well. */
964 shutdown(1, SHUT_WR);
Denis Vlasenkofaf334a2008-05-18 15:14:36 +0000965 /* Why??
966 (this also messes up stdin when user runs httpd -i from terminal)
Denis Vlasenko921799d2007-08-19 19:28:09 +0000967 ndelay_on(0);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +0000968 while (read(STDIN_FILENO, iobuf, IOBUF_SIZE) > 0)
Denis Vlasenko921799d2007-08-19 19:28:09 +0000969 continue;
Denis Vlasenkofaf334a2008-05-18 15:14:36 +0000970 */
Denis Vlasenko921799d2007-08-19 19:28:09 +0000971
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000972 if (verbose > 2)
973 bb_error_msg("closed");
974 _exit(xfunc_error_retval);
975}
976
977/*
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000978 * Create and send HTTP response headers.
979 * The arguments are combined and sent as one write operation. Note that
980 * IE will puke big-time if the headers are not sent in one packet and the
981 * second packet is delayed for any reason.
982 * responseNum - the result code to send.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000983 */
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000984static void send_headers(int responseNum)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000985{
Denis Vlasenko073214f2007-08-17 19:20:07 +0000986 static const char RFC1123FMT[] ALIGN1 = "%a, %d %b %Y %H:%M:%S GMT";
987
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000988 const char *responseString = "";
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000989 const char *infoString = NULL;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000990 const char *mime_type;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000991#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko2f518b02008-02-21 00:12:07 +0000992 const char *error_page = NULL;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000993#endif
Denis Vlasenkob64eed62007-01-14 17:06:11 +0000994 unsigned i;
Denis Vlasenko04158e02009-02-02 10:48:06 +0000995 time_t timer = time(NULL);
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000996 char tmp_str[80];
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000997 int len;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000998
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000999 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
1000 if (http_response_type[i] == responseNum) {
1001 responseString = http_response[i].name;
1002 infoString = http_response[i].info;
1003#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
1004 error_page = http_error_page[i];
1005#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001006 break;
1007 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001008 }
1009 /* error message is HTML */
1010 mime_type = responseNum == HTTP_OK ?
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001011 found_mime_type : "text/html";
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001012
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001013 if (verbose)
Denis Vlasenko241b1562007-08-17 19:18:47 +00001014 bb_error_msg("response:%u", responseNum);
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001015
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001016 /* emit the current date */
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001017 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&timer));
1018 len = sprintf(iobuf,
Denis Vlasenko69981422007-01-07 21:25:12 +00001019 "HTTP/1.0 %d %s\r\nContent-type: %s\r\n"
1020 "Date: %s\r\nConnection: close\r\n",
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001021 responseNum, responseString, mime_type, tmp_str);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001022
Denis Vlasenko55a99402006-09-30 20:41:44 +00001023#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001024 if (responseNum == HTTP_UNAUTHORIZED) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001025 len += sprintf(iobuf + len,
Denis Vlasenko8e858e22007-03-07 09:35:43 +00001026 "WWW-Authenticate: Basic realm=\"%s\"\r\n",
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001027 g_realm);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001028 }
Glenn L McGrath3d2405c2003-02-10 22:28:21 +00001029#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001030 if (responseNum == HTTP_MOVED_TEMPORARILY) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001031 len += sprintf(iobuf + len, "Location: %s/%s%s\r\n",
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001032 found_moved_temporarily,
1033 (g_query ? "?" : ""),
1034 (g_query ? g_query : ""));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001035 }
Eric Andersen07f2fea2004-10-08 08:03:29 +00001036
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001037#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001038 if (error_page && access(error_page, R_OK) == 0) {
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001039 strcat(iobuf, "\r\n");
1040 len += 2;
1041
1042 if (DEBUG)
1043 fprintf(stderr, "headers: '%s'\n", iobuf);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001044 full_write(STDOUT_FILENO, iobuf, len);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001045 if (DEBUG)
1046 fprintf(stderr, "writing error page: '%s'\n", error_page);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001047 return send_file_and_exit(error_page, SEND_BODY);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001048 }
1049#endif
1050
Denis Vlasenkof4310172007-09-21 22:35:18 +00001051 if (file_size != -1) { /* file */
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001052 strftime(tmp_str, sizeof(tmp_str), RFC1123FMT, gmtime(&last_mod));
Denis Vlasenkof4310172007-09-21 22:35:18 +00001053#if ENABLE_FEATURE_HTTPD_RANGES
1054 if (responseNum == HTTP_PARTIAL_CONTENT) {
Denys Vlasenkoa3aa3e32009-12-11 12:36:10 +01001055 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 +00001056 range_start,
1057 range_end,
1058 file_size);
1059 file_size = range_end - range_start + 1;
1060 }
1061#endif
1062 len += sprintf(iobuf + len,
1063#if ENABLE_FEATURE_HTTPD_RANGES
1064 "Accept-Ranges: bytes\r\n"
1065#endif
Denys Vlasenkoa3aa3e32009-12-11 12:36:10 +01001066 "Last-Modified: %s\r\n%s %"OFF_FMT"u\r\n",
Denis Vlasenkof4310172007-09-21 22:35:18 +00001067 tmp_str,
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02001068 content_gzip ? "Transfer-length:" : "Content-length:",
Denis Vlasenkof4310172007-09-21 22:35:18 +00001069 file_size
1070 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001071 }
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02001072
1073 if (content_gzip)
1074 len += sprintf(iobuf + len, "Content-Encoding: gzip\r\n");
1075
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001076 iobuf[len++] = '\r';
1077 iobuf[len++] = '\n';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001078 if (infoString) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001079 len += sprintf(iobuf + len,
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001080 "<HTML><HEAD><TITLE>%d %s</TITLE></HEAD>\n"
1081 "<BODY><H1>%d %s</H1>\n%s\n</BODY></HTML>\n",
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001082 responseNum, responseString,
1083 responseNum, responseString, infoString);
1084 }
Denis Vlasenko6c85ddc2006-11-21 00:08:39 +00001085 if (DEBUG)
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001086 fprintf(stderr, "headers: '%s'\n", iobuf);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001087 if (full_write(STDOUT_FILENO, iobuf, len) != len) {
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001088 if (verbose > 1)
1089 bb_perror_msg("error");
1090 log_and_exit();
1091 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001092}
1093
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001094static void send_headers_and_exit(int responseNum) NORETURN;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001095static void send_headers_and_exit(int responseNum)
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001096{
Peter Korsgaard95755182011-03-25 13:38:52 +01001097 IF_FEATURE_HTTPD_GZIP(content_gzip = 0;)
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001098 send_headers(responseNum);
1099 log_and_exit();
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001100}
1101
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001102/*
1103 * Read from the socket until '\n' or EOF. '\r' chars are removed.
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001104 * '\n' is replaced with NUL.
1105 * Return number of characters read or 0 if nothing is read
1106 * ('\r' and '\n' are not counted).
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001107 * Data is returned in iobuf.
1108 */
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001109static int get_line(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001110{
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001111 int count = 0;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001112 char c;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001113
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001114 alarm(HEADER_READ_TIMEOUT);
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001115 while (1) {
1116 if (hdr_cnt <= 0) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001117 hdr_cnt = safe_read(STDIN_FILENO, hdr_buf, sizeof(hdr_buf));
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001118 if (hdr_cnt <= 0)
1119 break;
1120 hdr_ptr = hdr_buf;
1121 }
1122 iobuf[count] = c = *hdr_ptr++;
1123 hdr_cnt--;
1124
1125 if (c == '\r')
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001126 continue;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001127 if (c == '\n') {
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001128 iobuf[count] = '\0';
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001129 break;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001130 }
Denis Vlasenko921799d2007-08-19 19:28:09 +00001131 if (count < (IOBUF_SIZE - 1)) /* check overflow */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001132 count++;
1133 }
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001134 return count;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001135}
1136
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001137#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001138
1139/* gcc 4.2.1 fares better with NOINLINE */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001140static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len) NORETURN;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001141static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len)
1142{
1143 enum { FROM_CGI = 1, TO_CGI = 2 }; /* indexes in pfd[] */
1144 struct pollfd pfd[3];
1145 int out_cnt; /* we buffer a bit of initial CGI output */
1146 int count;
1147
1148 /* iobuf is used for CGI -> network data,
1149 * hdr_buf is for network -> CGI data (POSTDATA) */
1150
1151 /* If CGI dies, we still want to correctly finish reading its output
1152 * and send it to the peer. So please no SIGPIPEs! */
1153 signal(SIGPIPE, SIG_IGN);
1154
Denis Vlasenko4a457562007-10-14 02:34:20 +00001155 // We inconsistently handle a case when more POSTDATA from network
1156 // is coming than we expected. We may give *some part* of that
1157 // extra data to CGI.
1158
1159 //if (hdr_cnt > post_len) {
1160 // /* We got more POSTDATA from network than we expected */
1161 // hdr_cnt = post_len;
1162 //}
1163 post_len -= hdr_cnt;
1164 /* post_len - number of POST bytes not yet read from network */
1165
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001166 /* NB: breaking out of this loop jumps to log_and_exit() */
1167 out_cnt = 0;
1168 while (1) {
1169 memset(pfd, 0, sizeof(pfd));
1170
1171 pfd[FROM_CGI].fd = fromCgi_rd;
1172 pfd[FROM_CGI].events = POLLIN;
1173
1174 if (toCgi_wr) {
1175 pfd[TO_CGI].fd = toCgi_wr;
1176 if (hdr_cnt > 0) {
1177 pfd[TO_CGI].events = POLLOUT;
1178 } else if (post_len > 0) {
1179 pfd[0].events = POLLIN;
1180 } else {
1181 /* post_len <= 0 && hdr_cnt <= 0:
1182 * no more POST data to CGI,
1183 * let CGI see EOF on CGI's stdin */
Denys Vlasenko8fc9e6a2010-04-02 10:40:58 +02001184 if (toCgi_wr != fromCgi_rd)
1185 close(toCgi_wr);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001186 toCgi_wr = 0;
1187 }
1188 }
1189
1190 /* Now wait on the set of sockets */
Denys Vlasenko8fc9e6a2010-04-02 10:40:58 +02001191 count = safe_poll(pfd, toCgi_wr ? TO_CGI+1 : FROM_CGI+1, -1);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001192 if (count <= 0) {
1193#if 0
Denis Vlasenkofb0eba72008-01-02 19:55:04 +00001194 if (safe_waitpid(pid, &status, WNOHANG) <= 0) {
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001195 /* Weird. CGI didn't exit and no fd's
1196 * are ready, yet poll returned?! */
1197 continue;
1198 }
1199 if (DEBUG && WIFEXITED(status))
1200 bb_error_msg("CGI exited, status=%d", WEXITSTATUS(status));
1201 if (DEBUG && WIFSIGNALED(status))
1202 bb_error_msg("CGI killed, signal=%d", WTERMSIG(status));
1203#endif
1204 break;
1205 }
1206
Denys Vlasenko88aa5582010-03-02 15:02:45 +01001207 if (pfd[TO_CGI].revents) {
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001208 /* hdr_cnt > 0 here due to the way pfd[TO_CGI].events set */
1209 /* Have data from peer and can write to CGI */
1210 count = safe_write(toCgi_wr, hdr_ptr, hdr_cnt);
1211 /* Doesn't happen, we dont use nonblocking IO here
1212 *if (count < 0 && errno == EAGAIN) {
1213 * ...
1214 *} else */
1215 if (count > 0) {
1216 hdr_ptr += count;
1217 hdr_cnt -= count;
1218 } else {
1219 /* EOF/broken pipe to CGI, stop piping POST data */
1220 hdr_cnt = post_len = 0;
1221 }
1222 }
1223
Denys Vlasenko88aa5582010-03-02 15:02:45 +01001224 if (pfd[0].revents) {
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001225 /* post_len > 0 && hdr_cnt == 0 here */
1226 /* We expect data, prev data portion is eaten by CGI
1227 * and there *is* data to read from the peer
1228 * (POSTDATA) */
1229 //count = post_len > (int)sizeof(hdr_buf) ? (int)sizeof(hdr_buf) : post_len;
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001230 //count = safe_read(STDIN_FILENO, hdr_buf, count);
1231 count = safe_read(STDIN_FILENO, hdr_buf, sizeof(hdr_buf));
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001232 if (count > 0) {
1233 hdr_cnt = count;
1234 hdr_ptr = hdr_buf;
1235 post_len -= count;
1236 } else {
1237 /* no more POST data can be read */
1238 post_len = 0;
1239 }
1240 }
1241
Denys Vlasenko88aa5582010-03-02 15:02:45 +01001242 if (pfd[FROM_CGI].revents) {
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001243 /* There is something to read from CGI */
1244 char *rbuf = iobuf;
1245
1246 /* Are we still buffering CGI output? */
1247 if (out_cnt >= 0) {
1248 /* HTTP_200[] has single "\r\n" at the end.
1249 * According to http://hoohoo.ncsa.uiuc.edu/cgi/out.html,
1250 * CGI scripts MUST send their own header terminated by
1251 * empty line, then data. That's why we have only one
1252 * <cr><lf> pair here. We will output "200 OK" line
1253 * if needed, but CGI still has to provide blank line
1254 * between header and body */
1255
1256 /* Must use safe_read, not full_read, because
1257 * CGI may output a few first bytes and then wait
1258 * for POSTDATA without closing stdout.
1259 * With full_read we may wait here forever. */
1260 count = safe_read(fromCgi_rd, rbuf + out_cnt, PIPE_BUF - 8);
1261 if (count <= 0) {
1262 /* eof (or error) and there was no "HTTP",
1263 * so write it, then write received data */
1264 if (out_cnt) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001265 full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1);
1266 full_write(STDOUT_FILENO, rbuf, out_cnt);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001267 }
1268 break; /* CGI stdout is closed, exiting */
1269 }
1270 out_cnt += count;
1271 count = 0;
1272 /* "Status" header format is: "Status: 302 Redirected\r\n" */
1273 if (out_cnt >= 8 && memcmp(rbuf, "Status: ", 8) == 0) {
1274 /* send "HTTP/1.0 " */
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001275 if (full_write(STDOUT_FILENO, HTTP_200, 9) != 9)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001276 break;
1277 rbuf += 8; /* skip "Status: " */
1278 count = out_cnt - 8;
1279 out_cnt = -1; /* buffering off */
1280 } else if (out_cnt >= 4) {
1281 /* Did CGI add "HTTP"? */
1282 if (memcmp(rbuf, HTTP_200, 4) != 0) {
1283 /* there is no "HTTP", do it ourself */
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001284 if (full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1) != sizeof(HTTP_200)-1)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001285 break;
1286 }
1287 /* Commented out:
1288 if (!strstr(rbuf, "ontent-")) {
1289 full_write(s, "Content-type: text/plain\r\n\r\n", 28);
1290 }
1291 * Counter-example of valid CGI without Content-type:
1292 * echo -en "HTTP/1.0 302 Found\r\n"
1293 * echo -en "Location: http://www.busybox.net\r\n"
1294 * echo -en "\r\n"
1295 */
1296 count = out_cnt;
1297 out_cnt = -1; /* buffering off */
1298 }
1299 } else {
1300 count = safe_read(fromCgi_rd, rbuf, PIPE_BUF);
1301 if (count <= 0)
1302 break; /* eof (or error) */
1303 }
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001304 if (full_write(STDOUT_FILENO, rbuf, count) != count)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001305 break;
1306 if (DEBUG)
1307 fprintf(stderr, "cgi read %d bytes: '%.*s'\n", count, count, rbuf);
1308 } /* if (pfd[FROM_CGI].revents) */
1309 } /* while (1) */
1310 log_and_exit();
1311}
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001312#endif
1313
1314#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001315
Denis Vlasenko921799d2007-08-19 19:28:09 +00001316static void setenv1(const char *name, const char *value)
1317{
1318 setenv(name, value ? value : "", 1);
1319}
1320
Denis Vlasenko241b1562007-08-17 19:18:47 +00001321/*
1322 * Spawn CGI script, forward CGI's stdin/out <=> network
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001323 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001324 * Environment variables are set up and the script is invoked with pipes
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001325 * for stdin/stdout. If a POST is being done the script is fed the POST
Denis Vlasenko241b1562007-08-17 19:18:47 +00001326 * data in addition to setting the QUERY_STRING variable (for GETs or POSTs).
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001327 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001328 * Parameters:
1329 * const char *url The requested URL (with leading /).
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001330 * int post_len Length of the POST body.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001331 * const char *cookie For set HTTP_COOKIE.
1332 * const char *content_type For set CONTENT_TYPE.
1333 */
1334static void send_cgi_and_exit(
1335 const char *url,
1336 const char *request,
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001337 int post_len,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001338 const char *cookie,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001339 const char *content_type) NORETURN;
Denis Vlasenko241b1562007-08-17 19:18:47 +00001340static void send_cgi_and_exit(
1341 const char *url,
1342 const char *request,
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001343 int post_len,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001344 const char *cookie,
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00001345 const char *content_type)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001346{
Denis Vlasenko37188322008-02-16 13:20:56 +00001347 struct fd_pair fromCgi; /* CGI -> httpd pipe */
1348 struct fd_pair toCgi; /* httpd -> CGI pipe */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001349 char *script;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001350 int pid;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001351
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001352 /* Make a copy. NB: caller guarantees:
1353 * url[0] == '/', url[1] != '/' */
1354 url = xstrdup(url);
1355
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001356 /*
1357 * We are mucking with environment _first_ and then vfork/exec,
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001358 * this allows us to use vfork safely. Parent doesn't care about
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001359 * these environment changes anyway.
1360 */
1361
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001362 /* Check for [dirs/]script.cgi/PATH_INFO */
1363 script = (char*)url;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001364 while ((script = strchr(script + 1, '/')) != NULL) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001365 *script = '\0';
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001366 if (!is_directory(url + 1, 1, NULL)) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001367 /* not directory, found script.cgi/PATH_INFO */
1368 *script = '/';
1369 break;
1370 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001371 *script = '/'; /* is directory, find next '/' */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001372 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001373 setenv1("PATH_INFO", script); /* set to /PATH_INFO or "" */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001374 setenv1("REQUEST_METHOD", request);
1375 if (g_query) {
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001376 putenv(xasprintf("%s=%s?%s", "REQUEST_URI", url, g_query));
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001377 } else {
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001378 setenv1("REQUEST_URI", url);
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001379 }
1380 if (script != NULL)
1381 *script = '\0'; /* cut off /PATH_INFO */
1382
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001383 /* SCRIPT_FILENAME is required by PHP in CGI mode */
1384 if (home_httpd[0] == '/') {
1385 char *fullpath = concat_path_file(home_httpd, url);
1386 setenv1("SCRIPT_FILENAME", fullpath);
1387 }
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001388 /* set SCRIPT_NAME as full path: /cgi-bin/dirs/script.cgi */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001389 setenv1("SCRIPT_NAME", url);
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001390 /* http://hoohoo.ncsa.uiuc.edu/cgi/env.html:
1391 * QUERY_STRING: The information which follows the ? in the URL
1392 * which referenced this script. This is the query information.
1393 * It should not be decoded in any fashion. This variable
1394 * should always be set when there is query information,
1395 * regardless of command line decoding. */
1396 /* (Older versions of bbox seem to do some decoding) */
1397 setenv1("QUERY_STRING", g_query);
1398 putenv((char*)"SERVER_SOFTWARE=busybox httpd/"BB_VER);
1399 putenv((char*)"SERVER_PROTOCOL=HTTP/1.0");
1400 putenv((char*)"GATEWAY_INTERFACE=CGI/1.1");
1401 /* Having _separate_ variables for IP and port defeats
1402 * the purpose of having socket abstraction. Which "port"
1403 * are you using on Unix domain socket?
1404 * IOW - REMOTE_PEER="1.2.3.4:56" makes much more sense.
1405 * Oh well... */
1406 {
1407 char *p = rmt_ip_str ? rmt_ip_str : (char*)"";
1408 char *cp = strrchr(p, ':');
1409 if (ENABLE_FEATURE_IPV6 && cp && strchr(cp, ']'))
1410 cp = NULL;
1411 if (cp) *cp = '\0'; /* delete :PORT */
1412 setenv1("REMOTE_ADDR", p);
Denis Vlasenko37c33162007-08-19 18:54:22 +00001413 if (cp) {
1414 *cp = ':';
1415#if ENABLE_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
1416 setenv1("REMOTE_PORT", cp + 1);
1417#endif
1418 }
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001419 }
1420 setenv1("HTTP_USER_AGENT", user_agent);
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +00001421 if (http_accept)
1422 setenv1("HTTP_ACCEPT", http_accept);
1423 if (http_accept_language)
1424 setenv1("HTTP_ACCEPT_LANGUAGE", http_accept_language);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001425 if (post_len)
1426 putenv(xasprintf("CONTENT_LENGTH=%d", post_len));
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001427 if (cookie)
1428 setenv1("HTTP_COOKIE", cookie);
1429 if (content_type)
1430 setenv1("CONTENT_TYPE", content_type);
1431#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1432 if (remoteuser) {
1433 setenv1("REMOTE_USER", remoteuser);
1434 putenv((char*)"AUTH_TYPE=Basic");
1435 }
1436#endif
1437 if (referer)
1438 setenv1("HTTP_REFERER", referer);
Denis Vlasenko9d1d4c02008-11-22 20:29:35 +00001439 setenv1("HTTP_HOST", host); /* set to "" if NULL */
Denis Vlasenkocbb4e612009-03-18 20:00:46 +00001440 /* setenv1("SERVER_NAME", safe_gethostname()); - don't do this,
1441 * just run "env SERVER_NAME=xyz httpd ..." instead */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001442
Denis Vlasenko37188322008-02-16 13:20:56 +00001443 xpiped_pair(fromCgi);
1444 xpiped_pair(toCgi);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001445
Denis Vlasenko80281fe2007-03-07 22:16:38 +00001446 pid = vfork();
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001447 if (pid < 0) {
1448 /* TODO: log perror? */
1449 log_and_exit();
1450 }
Denis Vlasenkof7996f32007-01-11 17:20:00 +00001451
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001452 if (!pid) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001453 /* Child process */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001454 char *argv[3];
1455
Denis Vlasenko241b1562007-08-17 19:18:47 +00001456 xfunc_error_retval = 242;
1457
Denis Vlasenko284d0fa2008-02-16 13:18:17 +00001458 /* NB: close _first_, then move fds! */
1459 close(toCgi.wr);
1460 close(fromCgi.rd);
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001461 xmove_fd(toCgi.rd, 0); /* replace stdin with the pipe */
1462 xmove_fd(fromCgi.wr, 1); /* replace stdout with the pipe */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001463 /* User seeing stderr output can be a security problem.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001464 * If CGI really wants that, it can always do dup itself. */
Denis Vlasenko1ec15cd2007-08-11 20:20:43 +00001465 /* dup2(1, 2); */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001466
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001467 /* Chdiring to script's dir */
1468 script = strrchr(url, '/');
1469 if (script != url) { /* paranoia */
1470 *script = '\0';
1471 if (chdir(url + 1) != 0) {
Bernhard Reutner-Fischerca228fb2010-02-26 10:09:31 +01001472 bb_perror_msg("chdir(%s)", url + 1);
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001473 goto error_execing_cgi;
1474 }
1475 // not needed: *script = '/';
1476 }
1477 script++;
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001478
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001479 /* set argv[0] to name without path */
1480 argv[0] = script;
1481 argv[1] = NULL;
Denis Vlasenkofc213052008-02-11 16:26:22 +00001482
1483#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001484 {
1485 char *suffix = strrchr(script, '.');
Denis Vlasenkofc213052008-02-11 16:26:22 +00001486
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001487 if (suffix) {
1488 Htaccess *cur;
1489 for (cur = script_i; cur; cur = cur->next) {
1490 if (strcmp(cur->before_colon + 1, suffix) == 0) {
1491 /* found interpreter name */
1492 argv[0] = cur->after_colon;
1493 argv[1] = script;
1494 argv[2] = NULL;
1495 break;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001496 }
1497 }
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001498 }
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001499 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001500#endif
1501 /* restore default signal dispositions for CGI process */
1502 bb_signals(0
1503 | (1 << SIGCHLD)
1504 | (1 << SIGPIPE)
1505 | (1 << SIGHUP)
1506 , SIG_DFL);
1507
1508 /* _NOT_ execvp. We do not search PATH. argv[0] is a filename
1509 * without any dir components and will only match a file
1510 * in the current directory */
1511 execv(argv[0], argv);
1512 if (verbose)
Denys Vlasenko31c3dad2010-06-27 16:57:55 +02001513 bb_perror_msg("can't execute '%s'", argv[0]);
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001514 error_execing_cgi:
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001515 /* send to stdout
1516 * (we are CGI here, our stdout is pumped to the net) */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001517 send_headers_and_exit(HTTP_NOT_FOUND);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001518 } /* end child */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001519
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001520 /* Parent process */
1521
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001522 /* Restore variables possibly changed by child */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001523 xfunc_error_retval = 0;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001524
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001525 /* Pump data */
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001526 close(fromCgi.wr);
1527 close(toCgi.rd);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001528 cgi_io_loop_and_exit(fromCgi.rd, toCgi.wr, post_len);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001529}
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001530
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001531#endif /* FEATURE_HTTPD_CGI */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001532
Denis Vlasenko241b1562007-08-17 19:18:47 +00001533/*
1534 * Send a file response to a HTTP request, and exit
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00001535 *
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001536 * Parameters:
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001537 * const char *url The requested URL (with leading /).
1538 * what What to send (headers/body/both).
Denis Vlasenko241b1562007-08-17 19:18:47 +00001539 */
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001540static NOINLINE void send_file_and_exit(const char *url, int what)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001541{
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001542 char *suffix;
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001543 int fd;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001544 ssize_t count;
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001545
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02001546 if (content_gzip) {
1547 /* does <url>.gz exist? Then use it instead */
1548 char *gzurl = xasprintf("%s.gz", url);
1549 fd = open(gzurl, O_RDONLY);
1550 free(gzurl);
1551 if (fd != -1) {
1552 struct stat sb;
1553 fstat(fd, &sb);
1554 file_size = sb.st_size;
Denys Vlasenko8030a142011-01-11 17:59:45 +01001555 last_mod = sb.st_mtime;
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02001556 } else {
1557 IF_FEATURE_HTTPD_GZIP(content_gzip = 0;)
1558 fd = open(url, O_RDONLY);
1559 }
1560 } else {
1561 fd = open(url, O_RDONLY);
1562 }
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001563 if (fd < 0) {
1564 if (DEBUG)
1565 bb_perror_msg("can't open '%s'", url);
1566 /* Error pages are sent by using send_file_and_exit(SEND_BODY).
1567 * IOW: it is unsafe to call send_headers_and_exit
1568 * if what is SEND_BODY! Can recurse! */
1569 if (what != SEND_BODY)
1570 send_headers_and_exit(HTTP_NOT_FOUND);
1571 log_and_exit();
1572 }
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001573 /* If you want to know about EPIPE below
1574 * (happens if you abort downloads from local httpd): */
1575 signal(SIGPIPE, SIG_IGN);
1576
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001577 /* If not found, default is "application/octet-stream" */
Denis Vlasenko073214f2007-08-17 19:20:07 +00001578 found_mime_type = "application/octet-stream";
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001579 suffix = strrchr(url, '.');
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001580 if (suffix) {
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001581 static const char suffixTable[] ALIGN1 =
1582 /* Shorter suffix must be first:
1583 * ".html.htm" will fail for ".htm"
1584 */
1585 ".txt.h.c.cc.cpp\0" "text/plain\0"
1586 /* .htm line must be after .h line */
1587 ".htm.html\0" "text/html\0"
1588 ".jpg.jpeg\0" "image/jpeg\0"
1589 ".gif\0" "image/gif\0"
1590 ".png\0" "image/png\0"
1591 /* .css line must be after .c line */
1592 ".css\0" "text/css\0"
1593 ".wav\0" "audio/wav\0"
1594 ".avi\0" "video/x-msvideo\0"
1595 ".qt.mov\0" "video/quicktime\0"
1596 ".mpe.mpeg\0" "video/mpeg\0"
1597 ".mid.midi\0" "audio/midi\0"
1598 ".mp3\0" "audio/mpeg\0"
1599#if 0 /* unpopular */
1600 ".au\0" "audio/basic\0"
1601 ".pac\0" "application/x-ns-proxy-autoconfig\0"
1602 ".vrml.wrl\0" "model/vrml\0"
1603#endif
1604 /* compiler adds another "\0" here */
1605 ;
Denis Vlasenko073214f2007-08-17 19:20:07 +00001606 Htaccess *cur;
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001607
1608 /* Examine built-in table */
1609 const char *table = suffixTable;
1610 const char *table_next;
1611 for (; *table; table = table_next) {
1612 const char *try_suffix;
1613 const char *mime_type;
1614 mime_type = table + strlen(table) + 1;
1615 table_next = mime_type + strlen(mime_type) + 1;
1616 try_suffix = strstr(table, suffix);
1617 if (!try_suffix)
1618 continue;
1619 try_suffix += strlen(suffix);
1620 if (*try_suffix == '\0' || *try_suffix == '.') {
1621 found_mime_type = mime_type;
1622 break;
Denis Vlasenko073214f2007-08-17 19:20:07 +00001623 }
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001624 /* Example: strstr(table, ".av") != NULL, but it
1625 * does not match ".avi" after all and we end up here.
1626 * The table is arranged so that in this case we know
1627 * that it can't match anything in the following lines,
1628 * and we stop the search: */
1629 break;
Denis Vlasenko073214f2007-08-17 19:20:07 +00001630 }
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001631 /* ...then user's table */
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001632 for (cur = mime_a; cur; cur = cur->next) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001633 if (strcmp(cur->before_colon, suffix) == 0) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001634 found_mime_type = cur->after_colon;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001635 break;
1636 }
1637 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001638 }
Bernhard Reutner-Fischer62851172009-05-03 18:53:22 +02001639
1640 if (DEBUG)
1641 bb_error_msg("sending file '%s' content-type: %s",
1642 url, found_mime_type);
1643
Denis Vlasenkof4310172007-09-21 22:35:18 +00001644#if ENABLE_FEATURE_HTTPD_RANGES
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02001645 if (what == SEND_BODY /* err pages and ranges don't mix */
1646 || content_gzip /* we are sending compressed page: can't do ranges */ ///why?
1647 ) {
1648 range_start = 0;
1649 }
Denis Vlasenkof4310172007-09-21 22:35:18 +00001650 range_len = MAXINT(off_t);
1651 if (range_start) {
1652 if (!range_end) {
1653 range_end = file_size - 1;
1654 }
1655 if (range_end < range_start
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001656 || lseek(fd, range_start, SEEK_SET) != range_start
Denis Vlasenkof4310172007-09-21 22:35:18 +00001657 ) {
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001658 lseek(fd, 0, SEEK_SET);
Denis Vlasenkof4310172007-09-21 22:35:18 +00001659 range_start = 0;
1660 } else {
1661 range_len = range_end - range_start + 1;
1662 send_headers(HTTP_PARTIAL_CONTENT);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001663 what = SEND_BODY;
Denis Vlasenkof4310172007-09-21 22:35:18 +00001664 }
1665 }
1666#endif
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001667 if (what & SEND_HEADERS)
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001668 send_headers(HTTP_OK);
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001669#if ENABLE_FEATURE_HTTPD_USE_SENDFILE
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001670 {
1671 off_t offset = range_start;
1672 while (1) {
1673 /* sz is rounded down to 64k */
1674 ssize_t sz = MAXINT(ssize_t) - 0xffff;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001675 IF_FEATURE_HTTPD_RANGES(if (sz > range_len) sz = range_len;)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001676 count = sendfile(STDOUT_FILENO, fd, &offset, sz);
1677 if (count < 0) {
1678 if (offset == range_start)
1679 break; /* fall back to read/write loop */
1680 goto fin;
1681 }
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001682 IF_FEATURE_HTTPD_RANGES(range_len -= sz;)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001683 if (count == 0 || range_len == 0)
1684 log_and_exit();
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001685 }
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001686 }
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001687#endif
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001688 while ((count = safe_read(fd, iobuf, IOBUF_SIZE)) > 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00001689 ssize_t n;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001690 IF_FEATURE_HTTPD_RANGES(if (count > range_len) count = range_len;)
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001691 n = full_write(STDOUT_FILENO, iobuf, count);
Denis Vlasenko241b1562007-08-17 19:18:47 +00001692 if (count != n)
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001693 break;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001694 IF_FEATURE_HTTPD_RANGES(range_len -= count;)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001695 if (range_len == 0)
Denis Vlasenkof4310172007-09-21 22:35:18 +00001696 break;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001697 }
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001698 if (count < 0) {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001699 IF_FEATURE_HTTPD_USE_SENDFILE(fin:)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001700 if (verbose > 1)
1701 bb_perror_msg("error");
1702 }
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001703 log_and_exit();
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001704}
1705
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001706static int checkPermIP(void)
1707{
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001708 Htaccess_IP *cur;
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001709
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001710 for (cur = ip_a_d; cur; cur = cur->next) {
Denis Vlasenkob64eed62007-01-14 17:06:11 +00001711#if DEBUG
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001712 fprintf(stderr,
1713 "checkPermIP: '%s' ? '%u.%u.%u.%u/%u.%u.%u.%u'\n",
1714 rmt_ip_str,
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00001715 (unsigned char)(cur->ip >> 24),
1716 (unsigned char)(cur->ip >> 16),
1717 (unsigned char)(cur->ip >> 8),
1718 (unsigned char)(cur->ip),
1719 (unsigned char)(cur->mask >> 24),
1720 (unsigned char)(cur->mask >> 16),
1721 (unsigned char)(cur->mask >> 8),
1722 (unsigned char)(cur->mask)
1723 );
Denis Vlasenko3bba5452006-12-30 17:57:03 +00001724#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001725 if ((rmt_ip & cur->mask) == cur->ip)
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001726 return (cur->allow_deny == 'A'); /* A -> 1 */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001727 }
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001728
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001729 return !flg_deny_all; /* depends on whether we saw "D:*" */
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001730}
1731
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001732#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko073214f2007-08-17 19:20:07 +00001733/*
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001734 * Config file entries are of the form "/<path>:<user>:<passwd>".
1735 * If config file has no prefix match for path, access is allowed.
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001736 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001737 * path The file path
1738 * user_and_passwd "user:passwd" to validate
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001739 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001740 * Returns 1 if user_and_passwd is OK.
Denis Vlasenko073214f2007-08-17 19:20:07 +00001741 */
Denis Vlasenko25b46302008-06-13 09:55:13 +00001742static int check_user_passwd(const char *path, const char *user_and_passwd)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001743{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001744 Htaccess *cur;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001745 const char *prev = NULL;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001746
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001747 for (cur = g_auth; cur; cur = cur->next) {
Denis Vlasenko25b46302008-06-13 09:55:13 +00001748 const char *dir_prefix;
1749 size_t len;
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001750
Denis Vlasenko25b46302008-06-13 09:55:13 +00001751 dir_prefix = cur->before_colon;
1752
1753 /* WHY? */
1754 /* If already saw a match, don't accept other different matches */
1755 if (prev && strcmp(prev, dir_prefix) != 0)
1756 continue;
1757
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001758 if (DEBUG)
Denis Vlasenko25b46302008-06-13 09:55:13 +00001759 fprintf(stderr, "checkPerm: '%s' ? '%s'\n", dir_prefix, user_and_passwd);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001760
Denis Vlasenko25b46302008-06-13 09:55:13 +00001761 /* If it's not a prefix match, continue searching */
1762 len = strlen(dir_prefix);
1763 if (len != 1 /* dir_prefix "/" matches all, don't need to check */
1764 && (strncmp(dir_prefix, path, len) != 0
1765 || (path[len] != '/' && path[len] != '\0'))
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001766 ) {
Denis Vlasenko25b46302008-06-13 09:55:13 +00001767 continue;
1768 }
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001769
Denis Vlasenko25b46302008-06-13 09:55:13 +00001770 /* Path match found */
1771 prev = dir_prefix;
Eric Andersen35e643b2003-07-28 07:40:39 +00001772
Denis Vlasenko25b46302008-06-13 09:55:13 +00001773 if (ENABLE_FEATURE_HTTPD_AUTH_MD5) {
1774 char *md5_passwd;
1775
1776 md5_passwd = strchr(cur->after_colon, ':');
1777 if (md5_passwd && md5_passwd[1] == '$' && md5_passwd[2] == '1'
1778 && md5_passwd[3] == '$' && md5_passwd[4]
1779 ) {
1780 char *encrypted;
1781 int r, user_len_p1;
1782
1783 md5_passwd++;
1784 user_len_p1 = md5_passwd - cur->after_colon;
1785 /* comparing "user:" */
1786 if (strncmp(cur->after_colon, user_and_passwd, user_len_p1) != 0) {
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001787 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001788 }
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001789
Denis Vlasenko25b46302008-06-13 09:55:13 +00001790 encrypted = pw_encrypt(
1791 user_and_passwd + user_len_p1 /* cleartext pwd from user */,
1792 md5_passwd /*salt */, 1 /* cleanup */);
1793 r = strcmp(encrypted, md5_passwd);
1794 free(encrypted);
1795 if (r == 0)
1796 goto set_remoteuser_var; /* Ok */
1797 continue;
1798 }
1799 }
1800
1801 /* Comparing plaintext "user:pass" in one go */
1802 if (strcmp(cur->after_colon, user_and_passwd) == 0) {
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001803 set_remoteuser_var:
Denis Vlasenko25b46302008-06-13 09:55:13 +00001804 remoteuser = xstrndup(user_and_passwd,
1805 strchrnul(user_and_passwd, ':') - user_and_passwd);
1806 return 1; /* Ok */
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001807 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001808 } /* for */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001809
Denis Vlasenko25b46302008-06-13 09:55:13 +00001810 /* 0(bad) if prev is set: matches were found but passwd was wrong */
1811 return (prev == NULL);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001812}
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001813#endif /* FEATURE_HTTPD_BASIC_AUTH */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001814
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001815#if ENABLE_FEATURE_HTTPD_PROXY
1816static Htaccess_Proxy *find_proxy_entry(const char *url)
1817{
1818 Htaccess_Proxy *p;
1819 for (p = proxy; p; p = p->next) {
1820 if (strncmp(url, p->url_from, strlen(p->url_from)) == 0)
1821 return p;
1822 }
1823 return NULL;
1824}
1825#endif
1826
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001827/*
1828 * Handle timeouts
1829 */
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001830static void send_REQUEST_TIMEOUT_and_exit(int sig) NORETURN;
1831static void send_REQUEST_TIMEOUT_and_exit(int sig UNUSED_PARAM)
Eric Andersen07f2fea2004-10-08 08:03:29 +00001832{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001833 send_headers_and_exit(HTTP_REQUEST_TIMEOUT);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001834}
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001835
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001836/*
1837 * Handle an incoming http request and exit.
1838 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001839static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr) NORETURN;
Denis Vlasenko367960b2007-08-18 14:20:21 +00001840static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001841{
Denis Vlasenko073214f2007-08-17 19:20:07 +00001842 static const char request_GET[] ALIGN1 = "GET";
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001843 struct stat sb;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001844 char *urlcopy;
1845 char *urlp;
1846 char *tptr;
Denis Vlasenko55a99402006-09-30 20:41:44 +00001847#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001848 static const char request_HEAD[] ALIGN1 = "HEAD";
Denis Vlasenko073214f2007-08-17 19:20:07 +00001849 const char *prequest;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001850 char *cookie = NULL;
1851 char *content_type = NULL;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001852 unsigned long length = 0;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001853#elif ENABLE_FEATURE_HTTPD_PROXY
1854#define prequest request_GET
1855 unsigned long length = 0;
1856#endif
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00001857#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1858 smallint authorized = -1;
1859#endif
1860 smallint ip_allowed;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001861 char http_major_version;
1862#if ENABLE_FEATURE_HTTPD_PROXY
1863 char http_minor_version;
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00001864 char *header_buf = header_buf; /* for gcc */
1865 char *header_ptr = header_ptr;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001866 Htaccess_Proxy *proxy_entry;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001867#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001868
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001869 /* Allocation of iobuf is postponed until now
1870 * (IOW, server process doesn't need to waste 8k) */
Denis Vlasenko921799d2007-08-19 19:28:09 +00001871 iobuf = xmalloc(IOBUF_SIZE);
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001872
Denis Vlasenko367960b2007-08-18 14:20:21 +00001873 rmt_ip = 0;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001874 if (fromAddr->u.sa.sa_family == AF_INET) {
1875 rmt_ip = ntohl(fromAddr->u.sin.sin_addr.s_addr);
Denis Vlasenko367960b2007-08-18 14:20:21 +00001876 }
Denis Vlasenko35465a32007-09-25 11:58:33 +00001877#if ENABLE_FEATURE_IPV6
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001878 if (fromAddr->u.sa.sa_family == AF_INET6
1879 && fromAddr->u.sin6.sin6_addr.s6_addr32[0] == 0
1880 && fromAddr->u.sin6.sin6_addr.s6_addr32[1] == 0
1881 && ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[2]) == 0xffff)
1882 rmt_ip = ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[3]);
Denis Vlasenko35465a32007-09-25 11:58:33 +00001883#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00001884 if (ENABLE_FEATURE_HTTPD_CGI || DEBUG || verbose) {
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00001885 /* NB: can be NULL (user runs httpd -i by hand?) */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00001886 rmt_ip_str = xmalloc_sockaddr2dotted(&fromAddr->u.sa);
Denis Vlasenko367960b2007-08-18 14:20:21 +00001887 }
1888 if (verbose) {
1889 /* this trick makes -v logging much simpler */
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00001890 if (rmt_ip_str)
1891 applet_name = rmt_ip_str;
Denis Vlasenko367960b2007-08-18 14:20:21 +00001892 if (verbose > 2)
1893 bb_error_msg("connected");
1894 }
1895
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001896 /* Install timeout handler. get_line() needs it. */
1897 signal(SIGALRM, send_REQUEST_TIMEOUT_and_exit);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001898
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001899 if (!get_line()) /* EOF or error or empty line */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001900 send_headers_and_exit(HTTP_BAD_REQUEST);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001901
Denis Vlasenko073214f2007-08-17 19:20:07 +00001902 /* Determine type of request (GET/POST) */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001903 urlp = strpbrk(iobuf, " \t");
1904 if (urlp == NULL)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001905 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001906 *urlp++ = '\0';
Denis Vlasenko55a99402006-09-30 20:41:44 +00001907#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko073214f2007-08-17 19:20:07 +00001908 prequest = request_GET;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001909 if (strcasecmp(iobuf, prequest) != 0) {
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001910 prequest = request_HEAD;
1911 if (strcasecmp(iobuf, prequest) != 0) {
1912 prequest = "POST";
1913 if (strcasecmp(iobuf, prequest) != 0)
1914 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
1915 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001916 }
1917#else
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001918 if (strcasecmp(iobuf, request_GET) != 0)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001919 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001920#endif
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001921 urlp = skip_whitespace(urlp);
1922 if (urlp[0] != '/')
1923 send_headers_and_exit(HTTP_BAD_REQUEST);
1924
1925 /* Find end of URL and parse HTTP version, if any */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001926 http_major_version = '0';
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001927 IF_FEATURE_HTTPD_PROXY(http_minor_version = '0';)
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001928 tptr = strchrnul(urlp, ' ');
1929 /* Is it " HTTP/"? */
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001930 if (tptr[0] && strncmp(tptr + 1, HTTP_200, 5) == 0) {
1931 http_major_version = tptr[6];
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001932 IF_FEATURE_HTTPD_PROXY(http_minor_version = tptr[8];)
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001933 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001934 *tptr = '\0';
Glenn L McGrath06e95652003-02-09 06:51:14 +00001935
Denis Vlasenko073214f2007-08-17 19:20:07 +00001936 /* Copy URL from after "GET "/"POST " to stack-allocated char[] */
Denis Vlasenkofcd878e2007-12-29 02:16:23 +00001937 urlcopy = alloca((tptr - urlp) + 2 + strlen(index_page));
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001938 /*if (urlcopy == NULL)
1939 * send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);*/
1940 strcpy(urlcopy, urlp);
1941 /* NB: urlcopy ptr is never changed after this */
Denis Vlasenko073214f2007-08-17 19:20:07 +00001942
1943 /* Extract url args if present */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001944 g_query = NULL;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001945 tptr = strchr(urlcopy, '?');
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001946 if (tptr) {
1947 *tptr++ = '\0';
1948 g_query = tptr;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001949 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001950
Denis Vlasenko073214f2007-08-17 19:20:07 +00001951 /* Decode URL escape sequences */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001952 tptr = decodeString(urlcopy, 0);
1953 if (tptr == NULL)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001954 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001955 if (tptr == urlcopy + 1) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001956 /* '/' or NUL is encoded */
1957 send_headers_and_exit(HTTP_NOT_FOUND);
1958 }
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001959
Denis Vlasenko073214f2007-08-17 19:20:07 +00001960 /* Canonicalize path */
1961 /* Algorithm stolen from libbb bb_simplify_path(),
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001962 * but don't strdup, retain trailing slash, protect root */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001963 urlp = tptr = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001964 do {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001965 if (*urlp == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001966 /* skip duplicate (or initial) slash */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001967 if (*tptr == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001968 continue;
1969 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001970 if (*tptr == '.') {
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001971 /* skip extra "/./" */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001972 if (tptr[1] == '/' || !tptr[1]) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001973 continue;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00001974 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001975 /* "..": be careful */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001976 if (tptr[1] == '.' && (tptr[2] == '/' || !tptr[2])) {
1977 ++tptr;
1978 if (urlp == urlcopy) /* protect root */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001979 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001980 while (*--urlp != '/') /* omit previous dir */;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001981 continue;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001982 }
1983 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001984 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001985 *++urlp = *tptr;
1986 } while (*++tptr);
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001987 *++urlp = '\0'; /* terminate after last character */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001988
Denis Vlasenko073214f2007-08-17 19:20:07 +00001989 /* If URL is a directory, add '/' */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001990 if (urlp[-1] != '/') {
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001991 if (is_directory(urlcopy + 1, 1, NULL)) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001992 found_moved_temporarily = urlcopy;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001993 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001994 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001995
Denis Vlasenko073214f2007-08-17 19:20:07 +00001996 /* Log it */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001997 if (verbose > 1)
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00001998 bb_error_msg("url:%s", urlcopy);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00001999
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002000 tptr = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002001 ip_allowed = checkPermIP();
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002002 while (ip_allowed && (tptr = strchr(tptr + 1, '/')) != NULL) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002003 /* have path1/path2 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002004 *tptr = '\0';
Denys Vlasenko33d8d082009-09-10 01:46:02 +02002005 if (is_directory(urlcopy + 1, 1, NULL)) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002006 /* may have subdir config */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002007 parse_conf(urlcopy + 1, SUBDIR_PARSE);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002008 ip_allowed = checkPermIP();
2009 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002010 *tptr = '/';
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002011 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002012
2013#if ENABLE_FEATURE_HTTPD_PROXY
2014 proxy_entry = find_proxy_entry(urlcopy);
2015 if (proxy_entry)
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00002016 header_buf = header_ptr = xmalloc(IOBUF_SIZE);
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002017#endif
2018
2019 if (http_major_version >= '0') {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002020 /* Request was with "... HTTP/nXXX", and n >= 0 */
Denis Vlasenko073214f2007-08-17 19:20:07 +00002021
Denys Vlasenko535ce1d2010-07-25 03:20:25 +02002022 /* Read until blank line */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002023 while (1) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002024 if (!get_line())
2025 break; /* EOF or error or empty line */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002026 if (DEBUG)
2027 bb_error_msg("header: '%s'", iobuf);
Denis Vlasenko073214f2007-08-17 19:20:07 +00002028
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002029#if ENABLE_FEATURE_HTTPD_PROXY
2030 /* We need 2 more bytes for yet another "\r\n" -
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00002031 * see near fdprintf(proxy_fd...) further below */
2032 if (proxy_entry && (header_ptr - header_buf) < IOBUF_SIZE - 2) {
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002033 int len = strlen(iobuf);
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00002034 if (len > IOBUF_SIZE - (header_ptr - header_buf) - 4)
2035 len = IOBUF_SIZE - (header_ptr - header_buf) - 4;
2036 memcpy(header_ptr, iobuf, len);
2037 header_ptr += len;
2038 header_ptr[0] = '\r';
2039 header_ptr[1] = '\n';
2040 header_ptr += 2;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002041 }
2042#endif
2043
2044#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
2045 /* Try and do our best to parse more lines */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002046 if ((STRNCASECMP(iobuf, "Content-length:") == 0)) {
2047 /* extra read only for POST */
Denis Vlasenko85c24712008-03-17 09:04:04 +00002048 if (prequest != request_GET
Denys Vlasenko535ce1d2010-07-25 03:20:25 +02002049# if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko85c24712008-03-17 09:04:04 +00002050 && prequest != request_HEAD
Denys Vlasenko535ce1d2010-07-25 03:20:25 +02002051# endif
Denis Vlasenko85c24712008-03-17 09:04:04 +00002052 ) {
Denis Vlasenko9c8c0382008-03-17 12:58:19 +00002053 tptr = skip_whitespace(iobuf + sizeof("Content-length:") - 1);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002054 if (!tptr[0])
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00002055 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002056 /* not using strtoul: it ignores leading minus! */
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002057 length = bb_strtou(tptr, NULL, 10);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002058 /* length is "ulong", but we need to pass it to int later */
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002059 if (errno || length > INT_MAX)
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00002060 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002061 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002062 }
2063#endif
2064#if ENABLE_FEATURE_HTTPD_CGI
2065 else if (STRNCASECMP(iobuf, "Cookie:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002066 cookie = xstrdup(skip_whitespace(iobuf + sizeof("Cookie:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002067 } else if (STRNCASECMP(iobuf, "Content-Type:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002068 content_type = xstrdup(skip_whitespace(iobuf + sizeof("Content-Type:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002069 } else if (STRNCASECMP(iobuf, "Referer:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002070 referer = xstrdup(skip_whitespace(iobuf + sizeof("Referer:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002071 } else if (STRNCASECMP(iobuf, "User-Agent:") == 0) {
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002072 user_agent = xstrdup(skip_whitespace(iobuf + sizeof("User-Agent:")-1));
Denis Vlasenko9d1d4c02008-11-22 20:29:35 +00002073 } else if (STRNCASECMP(iobuf, "Host:") == 0) {
2074 host = xstrdup(skip_whitespace(iobuf + sizeof("Host:")-1));
Bernhard Reutner-Fischerb4249302008-09-01 15:30:49 +00002075 } else if (STRNCASECMP(iobuf, "Accept:") == 0) {
2076 http_accept = xstrdup(skip_whitespace(iobuf + sizeof("Accept:")-1));
2077 } else if (STRNCASECMP(iobuf, "Accept-Language:") == 0) {
2078 http_accept_language = xstrdup(skip_whitespace(iobuf + sizeof("Accept-Language:")-1));
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002079 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002080#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002081#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002082 if (STRNCASECMP(iobuf, "Authorization:") == 0) {
2083 /* We only allow Basic credentials.
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002084 * It shows up as "Authorization: Basic <user>:<passwd>" where
2085 * "<user>:<passwd>" is base64 encoded.
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002086 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002087 tptr = skip_whitespace(iobuf + sizeof("Authorization:")-1);
2088 if (STRNCASECMP(tptr, "Basic") != 0)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002089 continue;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002090 tptr += sizeof("Basic")-1;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002091 /* decodeBase64() skips whitespace itself */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002092 decodeBase64(tptr);
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002093 authorized = check_user_passwd(urlcopy, tptr);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002094 }
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002095#endif
Denis Vlasenkof4310172007-09-21 22:35:18 +00002096#if ENABLE_FEATURE_HTTPD_RANGES
2097 if (STRNCASECMP(iobuf, "Range:") == 0) {
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002098 /* We know only bytes=NNN-[MMM] */
Denis Vlasenkof4310172007-09-21 22:35:18 +00002099 char *s = skip_whitespace(iobuf + sizeof("Range:")-1);
2100 if (strncmp(s, "bytes=", 6) == 0) {
2101 s += sizeof("bytes=")-1;
2102 range_start = BB_STRTOOFF(s, &s, 10);
2103 if (s[0] != '-' || range_start < 0) {
2104 range_start = 0;
2105 } else if (s[1]) {
2106 range_end = BB_STRTOOFF(s+1, NULL, 10);
2107 if (errno || range_end < range_start)
2108 range_start = 0;
2109 }
2110 }
2111 }
2112#endif
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02002113#if ENABLE_FEATURE_HTTPD_GZIP
2114 if (STRNCASECMP(iobuf, "Accept-Encoding:") == 0) {
Peter Korsgaarde5dbd562010-07-26 02:08:35 +02002115 /* Note: we do not support "gzip;q=0"
2116 * method of _disabling_ gzip
2117 * delivery. No one uses that, though */
2118 const char *s = strstr(iobuf, "gzip");
2119 if (s) {
2120 // want more thorough checks?
2121 //if (s[-1] == ' '
2122 // || s[-1] == ','
2123 // || s[-1] == ':'
2124 //) {
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02002125 content_gzip = 1;
Peter Korsgaarde5dbd562010-07-26 02:08:35 +02002126 //}
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02002127 }
2128 }
2129#endif
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002130 } /* while extra header reading */
2131 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002132
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002133 /* We are done reading headers, disable peer timeout */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002134 alarm(0);
2135
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002136 if (strcmp(bb_basename(urlcopy), HTTPD_CONF) == 0 || !ip_allowed) {
2137 /* protect listing [/path]/httpd.conf or IP deny */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002138 send_headers_and_exit(HTTP_FORBIDDEN);
2139 }
2140
2141#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002142 /* Case: no "Authorization:" was seen, but page does require passwd.
2143 * Check that with dummy user:pass */
Denis Vlasenko7504f2f2008-06-13 13:20:38 +00002144 if (authorized < 0)
2145 authorized = check_user_passwd(urlcopy, ":");
2146 if (!authorized)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002147 send_headers_and_exit(HTTP_UNAUTHORIZED);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002148#endif
2149
2150 if (found_moved_temporarily) {
2151 send_headers_and_exit(HTTP_MOVED_TEMPORARILY);
2152 }
2153
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002154#if ENABLE_FEATURE_HTTPD_PROXY
2155 if (proxy_entry != NULL) {
2156 int proxy_fd;
2157 len_and_sockaddr *lsa;
2158
2159 proxy_fd = socket(AF_INET, SOCK_STREAM, 0);
2160 if (proxy_fd < 0)
2161 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2162 lsa = host2sockaddr(proxy_entry->host_port, 80);
2163 if (lsa == NULL)
2164 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002165 if (connect(proxy_fd, &lsa->u.sa, lsa->len) < 0)
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002166 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2167 fdprintf(proxy_fd, "%s %s%s%s%s HTTP/%c.%c\r\n",
2168 prequest, /* GET or POST */
2169 proxy_entry->url_to, /* url part 1 */
2170 urlcopy + strlen(proxy_entry->url_from), /* url part 2 */
2171 (g_query ? "?" : ""), /* "?" (maybe) */
2172 (g_query ? g_query : ""), /* query string (maybe) */
2173 http_major_version, http_minor_version);
Denis Vlasenko34cd7af2007-10-18 13:01:22 +00002174 header_ptr[0] = '\r';
2175 header_ptr[1] = '\n';
2176 header_ptr += 2;
2177 write(proxy_fd, header_buf, header_ptr - header_buf);
2178 free(header_buf); /* on the order of 8k, free it */
Denys Vlasenko8fc9e6a2010-04-02 10:40:58 +02002179 cgi_io_loop_and_exit(proxy_fd, proxy_fd, length);
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002180 }
2181#endif
2182
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002183 tptr = urlcopy + 1; /* skip first '/' */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002184
2185#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002186 if (strncmp(tptr, "cgi-bin/", 8) == 0) {
2187 if (tptr[8] == '\0') {
Denis Vlasenko073214f2007-08-17 19:20:07 +00002188 /* protect listing "cgi-bin/" */
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002189 send_headers_and_exit(HTTP_FORBIDDEN);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002190 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002191 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002192 }
Denys Vlasenko108b8c52009-09-08 21:17:49 +02002193#endif
2194
2195 if (urlp[-1] == '/')
2196 strcpy(urlp, index_page);
2197 if (stat(tptr, &sb) == 0) {
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002198#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002199 char *suffix = strrchr(tptr, '.');
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002200 if (suffix) {
2201 Htaccess *cur;
2202 for (cur = script_i; cur; cur = cur->next) {
2203 if (strcmp(cur->before_colon + 1, suffix) == 0) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002204 send_cgi_and_exit(urlcopy, prequest, length, cookie, content_type);
Denis Vlasenko1ccd96f2007-03-05 19:24:33 +00002205 }
2206 }
2207 }
2208#endif
Denis Vlasenkof4310172007-09-21 22:35:18 +00002209 file_size = sb.st_size;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002210 last_mod = sb.st_mtime;
2211 }
Denis Vlasenko5d148e22006-11-21 00:12:09 +00002212#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002213 else if (urlp[-1] == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002214 /* It's a dir URL and there is no index.html
2215 * Try cgi-bin/index.cgi */
2216 if (access("/cgi-bin/index.cgi"+1, X_OK) == 0) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002217 urlp[0] = '\0';
2218 g_query = urlcopy;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002219 send_cgi_and_exit("/cgi-bin/index.cgi", prequest, length, cookie, content_type);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002220 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002221 }
Denys Vlasenko108b8c52009-09-08 21:17:49 +02002222 /* else fall through to send_file, it errors out if open fails: */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002223
Denys Vlasenko108b8c52009-09-08 21:17:49 +02002224 if (prequest != request_GET && prequest != request_HEAD) {
2225 /* POST for files does not make sense */
2226 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
2227 }
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002228 send_file_and_exit(tptr,
Denis Vlasenko85c24712008-03-17 09:04:04 +00002229 (prequest != request_HEAD ? SEND_HEADERS_AND_BODY : SEND_HEADERS)
Denis Vlasenko85c24712008-03-17 09:04:04 +00002230 );
Denys Vlasenko108b8c52009-09-08 21:17:49 +02002231#else
2232 send_file_and_exit(tptr, SEND_HEADERS_AND_BODY);
2233#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002234}
2235
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002236/*
2237 * The main http server function.
Denis Vlasenko367960b2007-08-18 14:20:21 +00002238 * Given a socket, listen for new connections and farm out
2239 * the processing as a [v]forked process.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002240 * Never returns.
2241 */
Denis Vlasenko367960b2007-08-18 14:20:21 +00002242#if BB_MMU
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002243static void mini_httpd(int server_socket) NORETURN;
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002244static void mini_httpd(int server_socket)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002245{
Denis Vlasenko073214f2007-08-17 19:20:07 +00002246 /* NB: it's best to not use xfuncs in this loop before fork().
2247 * Otherwise server may die on transient errors (temporary
2248 * out-of-memory condition, etc), which is Bad(tm).
2249 * Try to do any dangerous calls after fork.
2250 */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002251 while (1) {
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002252 int n;
2253 len_and_sockaddr fromAddr;
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00002254
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002255 /* Wait for connections... */
2256 fromAddr.len = LSA_SIZEOF_SA;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002257 n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002258 if (n < 0)
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00002259 continue;
Denys Vlasenko535ce1d2010-07-25 03:20:25 +02002260
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002261 /* set the KEEPALIVE option to cull dead connections */
2262 setsockopt(n, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002263
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002264 if (fork() == 0) {
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002265 /* child */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002266 /* Do not reload config on HUP */
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00002267 signal(SIGHUP, SIG_IGN);
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002268 close(server_socket);
2269 xmove_fd(n, 0);
2270 xdup2(0, 1);
2271
Denis Vlasenko367960b2007-08-18 14:20:21 +00002272 handle_incoming_and_exit(&fromAddr);
2273 }
2274 /* parent, or fork failed */
2275 close(n);
2276 } /* while (1) */
2277 /* never reached */
2278}
2279#else
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002280static void mini_httpd_nommu(int server_socket, int argc, char **argv) NORETURN;
Denis Vlasenko367960b2007-08-18 14:20:21 +00002281static void mini_httpd_nommu(int server_socket, int argc, char **argv)
2282{
2283 char *argv_copy[argc + 2];
2284
2285 argv_copy[0] = argv[0];
2286 argv_copy[1] = (char*)"-i";
2287 memcpy(&argv_copy[2], &argv[1], argc * sizeof(argv[0]));
2288
2289 /* NB: it's best to not use xfuncs in this loop before vfork().
2290 * Otherwise server may die on transient errors (temporary
2291 * out-of-memory condition, etc), which is Bad(tm).
2292 * Try to do any dangerous calls after fork.
2293 */
2294 while (1) {
2295 int n;
2296 len_and_sockaddr fromAddr;
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00002297
Denis Vlasenko367960b2007-08-18 14:20:21 +00002298 /* Wait for connections... */
2299 fromAddr.len = LSA_SIZEOF_SA;
Denis Vlasenko671ca332008-02-19 14:13:20 +00002300 n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002301 if (n < 0)
2302 continue;
Denys Vlasenko535ce1d2010-07-25 03:20:25 +02002303
Denis Vlasenko367960b2007-08-18 14:20:21 +00002304 /* set the KEEPALIVE option to cull dead connections */
2305 setsockopt(n, SOL_SOCKET, SO_KEEPALIVE, &const_int_1, sizeof(const_int_1));
2306
2307 if (vfork() == 0) {
2308 /* child */
Denis Vlasenko367960b2007-08-18 14:20:21 +00002309 /* Do not reload config on HUP */
2310 signal(SIGHUP, SIG_IGN);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002311 close(server_socket);
2312 xmove_fd(n, 0);
2313 xdup2(0, 1);
2314
2315 /* Run a copy of ourself in inetd mode */
2316 re_exec(argv_copy);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002317 }
Denis Vlasenko921799d2007-08-19 19:28:09 +00002318 /* parent, or vfork failed */
Denis Vlasenko073214f2007-08-17 19:20:07 +00002319 close(n);
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002320 } /* while (1) */
Denis Vlasenko241b1562007-08-17 19:18:47 +00002321 /* never reached */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002322}
Denis Vlasenko56258b62007-06-23 23:14:02 +00002323#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002324
Denis Vlasenko367960b2007-08-18 14:20:21 +00002325/*
2326 * Process a HTTP connection on stdin/out.
2327 * Never returns.
2328 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002329static void mini_httpd_inetd(void) NORETURN;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002330static void mini_httpd_inetd(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002331{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002332 len_and_sockaddr fromAddr;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002333
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00002334 memset(&fromAddr, 0, sizeof(fromAddr));
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002335 fromAddr.len = LSA_SIZEOF_SA;
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00002336 /* NB: can fail if user runs it by hand and types in http cmds */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002337 getpeername(0, &fromAddr.u.sa, &fromAddr.len);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002338 handle_incoming_and_exit(&fromAddr);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002339}
Glenn L McGrath06e95652003-02-09 06:51:14 +00002340
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002341static void sighup_handler(int sig UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00002342{
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002343 parse_conf(DEFAULT_PATH_HTTPD_CONF, SIGNALED_PARSE);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002344}
Glenn L McGrath06e95652003-02-09 06:51:14 +00002345
Denis Vlasenko9f609292006-11-05 19:47:33 +00002346enum {
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002347 c_opt_config_file = 0,
2348 d_opt_decode_url,
2349 h_opt_home_httpd,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002350 IF_FEATURE_HTTPD_ENCODE_URL_STR(e_opt_encode_url,)
2351 IF_FEATURE_HTTPD_BASIC_AUTH( r_opt_realm ,)
2352 IF_FEATURE_HTTPD_AUTH_MD5( m_opt_md5 ,)
2353 IF_FEATURE_HTTPD_SETUID( u_opt_setuid ,)
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002354 p_opt_port ,
2355 p_opt_inetd ,
2356 p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002357 p_opt_verbose ,
Denis Vlasenko9f609292006-11-05 19:47:33 +00002358 OPT_CONFIG_FILE = 1 << c_opt_config_file,
2359 OPT_DECODE_URL = 1 << d_opt_decode_url,
2360 OPT_HOME_HTTPD = 1 << h_opt_home_httpd,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002361 OPT_ENCODE_URL = IF_FEATURE_HTTPD_ENCODE_URL_STR((1 << e_opt_encode_url)) + 0,
2362 OPT_REALM = IF_FEATURE_HTTPD_BASIC_AUTH( (1 << r_opt_realm )) + 0,
2363 OPT_MD5 = IF_FEATURE_HTTPD_AUTH_MD5( (1 << m_opt_md5 )) + 0,
2364 OPT_SETUID = IF_FEATURE_HTTPD_SETUID( (1 << u_opt_setuid )) + 0,
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002365 OPT_PORT = 1 << p_opt_port,
2366 OPT_INETD = 1 << p_opt_inetd,
2367 OPT_FOREGROUND = 1 << p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002368 OPT_VERBOSE = 1 << p_opt_verbose,
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002369};
Eric Andersena3bb3e62003-06-26 09:05:32 +00002370
Eric Andersena3bb3e62003-06-26 09:05:32 +00002371
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00002372int httpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002373int httpd_main(int argc UNUSED_PARAM, char **argv)
Glenn L McGrath06e95652003-02-09 06:51:14 +00002374{
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002375 int server_socket = server_socket; /* for gcc */
Denis Vlasenko67b23e62006-10-03 21:00:06 +00002376 unsigned opt;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002377 char *url_for_decode;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002378 IF_FEATURE_HTTPD_ENCODE_URL_STR(const char *url_for_encode;)
2379 IF_FEATURE_HTTPD_SETUID(const char *s_ugid = NULL;)
2380 IF_FEATURE_HTTPD_SETUID(struct bb_uidgid_t ugid;)
2381 IF_FEATURE_HTTPD_AUTH_MD5(const char *pass;)
Eric Andersen35e643b2003-07-28 07:40:39 +00002382
Denis Vlasenko073214f2007-08-17 19:20:07 +00002383 INIT_G();
2384
Denis Vlasenkofcdb00f2006-11-21 00:09:37 +00002385#if ENABLE_LOCALE_SUPPORT
2386 /* Undo busybox.c: we want to speak English in http (dates etc) */
2387 setlocale(LC_TIME, "C");
2388#endif
2389
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002390 home_httpd = xrealloc_getcwd_or_warn(NULL);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002391 /* -v counts, -i implies -f */
2392 opt_complementary = "vv:if";
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002393 /* We do not "absolutize" path given by -h (home) opt.
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00002394 * If user gives relative path in -h,
2395 * $SCRIPT_FILENAME will not be set. */
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00002396 opt = getopt32(argv, "c:d:h:"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002397 IF_FEATURE_HTTPD_ENCODE_URL_STR("e:")
2398 IF_FEATURE_HTTPD_BASIC_AUTH("r:")
2399 IF_FEATURE_HTTPD_AUTH_MD5("m:")
2400 IF_FEATURE_HTTPD_SETUID("u:")
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002401 "p:ifv",
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002402 &opt_c_configFile, &url_for_decode, &home_httpd
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002403 IF_FEATURE_HTTPD_ENCODE_URL_STR(, &url_for_encode)
2404 IF_FEATURE_HTTPD_BASIC_AUTH(, &g_realm)
2405 IF_FEATURE_HTTPD_AUTH_MD5(, &pass)
2406 IF_FEATURE_HTTPD_SETUID(, &s_ugid)
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002407 , &bind_addr_or_port
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002408 , &verbose
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002409 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002410 if (opt & OPT_DECODE_URL) {
Denis Vlasenko367960b2007-08-18 14:20:21 +00002411 fputs(decodeString(url_for_decode, 1), stdout);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002412 return 0;
2413 }
Denis Vlasenko55a99402006-09-30 20:41:44 +00002414#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002415 if (opt & OPT_ENCODE_URL) {
Denis Vlasenko367960b2007-08-18 14:20:21 +00002416 fputs(encodeString(url_for_encode), stdout);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002417 return 0;
2418 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002419#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002420#if ENABLE_FEATURE_HTTPD_AUTH_MD5
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002421 if (opt & OPT_MD5) {
Denys Vlasenkodbc6a7a2009-12-16 02:28:50 +01002422 char salt[sizeof("$1$XXXXXXXX")];
2423 salt[0] = '$';
2424 salt[1] = '1';
2425 salt[2] = '$';
Denys Vlasenko12a43272011-05-13 03:19:01 +02002426 crypt_make_salt(salt + 3, 4);
Denys Vlasenkodbc6a7a2009-12-16 02:28:50 +01002427 puts(pw_encrypt(pass, salt, 1));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002428 return 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002429 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002430#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002431#if ENABLE_FEATURE_HTTPD_SETUID
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002432 if (opt & OPT_SETUID) {
Bernhard Reutner-Fischerd73cbd32008-07-21 14:41:33 +00002433 xget_uidgid(&ugid, s_ugid);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002434 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002435#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002436
Denis Vlasenko367960b2007-08-18 14:20:21 +00002437#if !BB_MMU
2438 if (!(opt & OPT_FOREGROUND)) {
2439 bb_daemonize_or_rexec(0, argv); /* don't change current directory */
2440 }
2441#endif
2442
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002443 xchdir(home_httpd);
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002444 if (!(opt & OPT_INETD)) {
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00002445 signal(SIGCHLD, SIG_IGN);
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002446 server_socket = openServer();
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002447#if ENABLE_FEATURE_HTTPD_SETUID
2448 /* drop privileges */
2449 if (opt & OPT_SETUID) {
2450 if (ugid.gid != (gid_t)-1) {
2451 if (setgroups(1, &ugid.gid) == -1)
Denis Vlasenko8e858e22007-03-07 09:35:43 +00002452 bb_perror_msg_and_die("setgroups");
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002453 xsetgid(ugid.gid);
2454 }
2455 xsetuid(ugid.uid);
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002456 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002457#endif
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002458 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002459
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002460#if 0
Denis Vlasenko2535f122007-09-15 13:28:30 +00002461 /* User can do it himself: 'env - PATH="$PATH" httpd'
2462 * We don't do it because we don't want to screw users
2463 * which want to do
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002464 * 'env - VAR1=val1 VAR2=val2 httpd'
Denis Vlasenko2535f122007-09-15 13:28:30 +00002465 * and have VAR1 and VAR2 values visible in their CGIs.
2466 * Besides, it is also smaller. */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002467 {
2468 char *p = getenv("PATH");
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002469 /* env strings themself are not freed, no need to xstrdup(p): */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002470 clearenv();
2471 if (p)
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002472 putenv(p - 5);
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002473// if (!(opt & OPT_INETD))
2474// setenv_long("SERVER_PORT", ???);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002475 }
Glenn L McGrathfe538ba2003-09-10 23:35:45 +00002476#endif
2477
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002478 parse_conf(DEFAULT_PATH_HTTPD_CONF, FIRST_PARSE);
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002479 if (!(opt & OPT_INETD))
2480 signal(SIGHUP, sighup_handler);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002481
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00002482 xfunc_error_retval = 0;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002483 if (opt & OPT_INETD)
2484 mini_httpd_inetd();
Denis Vlasenko367960b2007-08-18 14:20:21 +00002485#if BB_MMU
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002486 if (!(opt & OPT_FOREGROUND))
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002487 bb_daemonize(0); /* don't change current directory */
2488 mini_httpd(server_socket); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002489#else
Denis Vlasenko367960b2007-08-18 14:20:21 +00002490 mini_httpd_nommu(server_socket, argc, argv); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002491#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00002492 /* return 0; */
Glenn L McGrath06e95652003-02-09 06:51:14 +00002493}