blob: e6757d9433c9a92dc201f5bedbc6fd0a1af99070 [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/
Pascal Bellard72917552011-11-29 13:51:11 +010057 * /adm:root:* # or user root, pwd from /etc/passwd on urls starting with /adm/
58 * /wiki:*:* # or any user from /etc/passwd with according pwd on urls starting with /wiki/
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000059 * .au:audio/basic # additional mime type for audio.au files
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +000060 * *.php:/path/php # run xxx.php through an interpreter
Eric Andersenc7bda1c2004-03-15 08:29:22 +000061 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +000062 * A/D may be as a/d or allow/deny - only first char matters.
63 * Deny/Allow IP logic:
64 * - Default is to allow all (Allow all (A:*) is a no-op).
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000065 * - Deny rules take precedence over allow rules.
Denis Vlasenko0eb406c2008-06-13 09:53:06 +000066 * - "Deny all" rule (D:*) is applied last.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000067 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000068 * Example:
69 * 1. Allow only specified addresses
Glenn L McGrathb65422c2003-09-08 10:59:27 +000070 * A:172.20 # Allow any address that begins with 172.20.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000071 * A:10.10. # Allow any address that begins with 10.10.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000072 * A:127.0.0.1 # Allow local loopback connections
73 * D:* # Deny from other IP connections
Eric Andersenc7bda1c2004-03-15 08:29:22 +000074 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000075 * 2. Only deny specified addresses
76 * D:1.2.3. # deny from 1.2.3.0 - 1.2.3.255
77 * D:2.3.4. # deny from 2.3.4.0 - 2.3.4.255
78 * A:* # (optional line added for clarity)
Eric Andersenc7bda1c2004-03-15 08:29:22 +000079 *
Denys Vlasenkod277f552011-04-10 03:08:22 +020080 * If a sub directory contains config file, it is parsed and merged with
Glenn L McGrathb65422c2003-09-08 10:59:27 +000081 * any existing settings as if it was appended to the original configuration.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000082 *
83 * subdir paths are relative to the containing subdir and thus cannot
84 * affect the parent rules.
85 *
86 * Note that since the sub dir is parsed in the forked thread servicing the
87 * subdir http request, any merge is discarded when the process exits. As a
88 * result, the subdir settings only have a lifetime of a single request.
89 *
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +000090 * Custom error pages can contain an absolute path or be relative to
91 * 'home_httpd'. Error pages are to be static files (no CGI or script). Error
92 * page can only be defined in the root configuration file and are not taken
93 * into account in local (directories) config files.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000094 *
95 * If -c is not set, an attempt will be made to open the default
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000096 * root configuration file. If -c is set and the file is not found, the
97 * server exits with an error.
Denis Vlasenko073214f2007-08-17 19:20:07 +000098 */
Denys Vlasenko47367e12016-11-23 09:05:14 +010099//config:config HTTPD
Denys Vlasenko4eed2c62017-07-18 22:01:24 +0200100//config: bool "httpd (32 kb)"
Denys Vlasenko47367e12016-11-23 09:05:14 +0100101//config: default y
102//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200103//config: HTTP server.
Denys Vlasenko47367e12016-11-23 09:05:14 +0100104//config:
105//config:config FEATURE_HTTPD_RANGES
106//config: bool "Support 'Ranges:' header"
107//config: default y
108//config: depends on HTTPD
109//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200110//config: Makes httpd emit "Accept-Ranges: bytes" header and understand
111//config: "Range: bytes=NNN-[MMM]" header. Allows for resuming interrupted
112//config: downloads, seeking in multimedia players etc.
Denys Vlasenko47367e12016-11-23 09:05:14 +0100113//config:
114//config:config FEATURE_HTTPD_SETUID
115//config: bool "Enable -u <user> option"
116//config: default y
117//config: depends on HTTPD
118//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200119//config: This option allows the server to run as a specific user
120//config: rather than defaulting to the user that starts the server.
121//config: Use of this option requires special privileges to change to a
122//config: different user.
Denys Vlasenko47367e12016-11-23 09:05:14 +0100123//config:
124//config:config FEATURE_HTTPD_BASIC_AUTH
Denys Vlasenko1d8df522017-07-27 13:34:51 +0200125//config: bool "Enable HTTP authentication"
Denys Vlasenko47367e12016-11-23 09:05:14 +0100126//config: default y
127//config: depends on HTTPD
128//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200129//config: Utilizes password settings from /etc/httpd.conf for basic
130//config: authentication on a per url basis.
131//config: Example for httpd.conf file:
132//config: /adm:toor:PaSsWd
Denys Vlasenko47367e12016-11-23 09:05:14 +0100133//config:
134//config:config FEATURE_HTTPD_AUTH_MD5
Denys Vlasenko1d8df522017-07-27 13:34:51 +0200135//config: bool "Support MD5-encrypted passwords in HTTP authentication"
Denys Vlasenko47367e12016-11-23 09:05:14 +0100136//config: default y
137//config: depends on FEATURE_HTTPD_BASIC_AUTH
138//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200139//config: Enables encrypted passwords, and wildcard user/passwords
140//config: in httpd.conf file.
141//config: User '*' means 'any system user name is ok',
142//config: password of '*' means 'use system password for this user'
143//config: Examples:
144//config: /adm:toor:$1$P/eKnWXS$aI1aPGxT.dJD5SzqAKWrF0
145//config: /adm:root:*
146//config: /wiki:*:*
Denys Vlasenko47367e12016-11-23 09:05:14 +0100147//config:
148//config:config FEATURE_HTTPD_CGI
149//config: bool "Support Common Gateway Interface (CGI)"
150//config: default y
151//config: depends on HTTPD
152//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200153//config: This option allows scripts and executables to be invoked
154//config: when specific URLs are requested.
Denys Vlasenko47367e12016-11-23 09:05:14 +0100155//config:
156//config:config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denys Vlasenkof5604222017-01-10 14:58:54 +0100157//config: bool "Support running scripts through an interpreter"
Denys Vlasenko47367e12016-11-23 09:05:14 +0100158//config: default y
159//config: depends on FEATURE_HTTPD_CGI
160//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200161//config: This option enables support for running scripts through an
162//config: interpreter. Turn this on if you want PHP scripts to work
163//config: properly. You need to supply an additional line in your
164//config: httpd.conf file:
165//config: *.php:/path/to/your/php
Denys Vlasenko47367e12016-11-23 09:05:14 +0100166//config:
167//config:config FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
168//config: bool "Set REMOTE_PORT environment variable for CGI"
169//config: default y
170//config: depends on FEATURE_HTTPD_CGI
171//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200172//config: Use of this option can assist scripts in generating
173//config: references that contain a unique port number.
Denys Vlasenko47367e12016-11-23 09:05:14 +0100174//config:
175//config:config FEATURE_HTTPD_ENCODE_URL_STR
176//config: bool "Enable -e option (useful for CGIs written as shell scripts)"
177//config: default y
178//config: depends on HTTPD
179//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200180//config: This option allows html encoding of arbitrary strings for display
181//config: by the browser. Output goes to stdout.
182//config: For example, httpd -e "<Hello World>" produces
183//config: "&#60Hello&#32World&#62".
Denys Vlasenko47367e12016-11-23 09:05:14 +0100184//config:
185//config:config FEATURE_HTTPD_ERROR_PAGES
Denys Vlasenkof5604222017-01-10 14:58:54 +0100186//config: bool "Support custom error pages"
Denys Vlasenko47367e12016-11-23 09:05:14 +0100187//config: default y
188//config: depends on HTTPD
189//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200190//config: This option allows you to define custom error pages in
191//config: the configuration file instead of the default HTTP status
192//config: error pages. For instance, if you add the line:
193//config: E404:/path/e404.html
194//config: in the config file, the server will respond the specified
195//config: '/path/e404.html' file instead of the terse '404 NOT FOUND'
196//config: message.
Denys Vlasenko47367e12016-11-23 09:05:14 +0100197//config:
198//config:config FEATURE_HTTPD_PROXY
Denys Vlasenkof5604222017-01-10 14:58:54 +0100199//config: bool "Support reverse proxy"
Denys Vlasenko47367e12016-11-23 09:05:14 +0100200//config: default y
201//config: depends on HTTPD
202//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200203//config: This option allows you to define URLs that will be forwarded
204//config: to another HTTP server. To setup add the following line to the
205//config: configuration file
206//config: P:/url/:http://hostname[:port]/new/path/
207//config: Then a request to /url/myfile will be forwarded to
208//config: http://hostname[:port]/new/path/myfile.
Denys Vlasenko47367e12016-11-23 09:05:14 +0100209//config:
210//config:config FEATURE_HTTPD_GZIP
Denys Vlasenkof5604222017-01-10 14:58:54 +0100211//config: bool "Support GZIP content encoding"
Denys Vlasenko47367e12016-11-23 09:05:14 +0100212//config: default y
213//config: depends on HTTPD
214//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +0200215//config: Makes httpd send files using GZIP content encoding if the
216//config: client supports it and a pre-compressed <file>.gz exists.
Sergey Ponomarev68f75bb2020-08-09 01:23:32 +0300217//config:
Sergey Ponomarev4864a682020-08-15 23:52:48 +0200218//config:config FEATURE_HTTPD_ETAG
219//config: bool "Support caching via ETag header"
220//config: default y
221//config: depends on HTTPD
222//config: help
223//config: If server responds with ETag then next time client (browser)
224//config: resend it via If-None-Match header.
225//config: Then httpd will check if file wasn't modified and if not,
226//config: return 304 Not Modified status code.
227//config: The ETag value is constructed from last modification date
228//config: in unix epoch, and size: "hex(last_mod)-hex(file_size)".
229//config: It's not completely reliable as hash functions but fair enough.
230//config:
Sergey Ponomarevb6efac32020-08-09 01:23:33 +0300231//config:config FEATURE_HTTPD_LAST_MODIFIED
232//config: bool "Add Last-Modified header to response"
233//config: default y
234//config: depends on HTTPD
235//config: help
236//config: The Last-Modified header is used for cache validation.
237//config: The client sends last seen mtime to server in If-Modified-Since.
238//config: Both headers MUST be an RFC 1123 formatted, which is hard to parse.
239//config: Use ETag header instead.
240//config:
Sergey Ponomarev68f75bb2020-08-09 01:23:32 +0300241//config:config FEATURE_HTTPD_DATE
242//config: bool "Add Date header to response"
243//config: default y
244//config: depends on HTTPD
245//config: help
246//config: RFC2616 says that server MUST add Date header to response.
247//config: But it is almost useless and can be omitted.
Sergey Ponomareva9493992020-08-16 14:58:31 +0200248//config:
249//config:config FEATURE_HTTPD_ACL_IP
250//config: bool "ACL IP"
251//config: default y
252//config: depends on HTTPD
253//config: help
254//config: Support IP deny/allow rules
Denys Vlasenko47367e12016-11-23 09:05:14 +0100255
256//applet:IF_HTTPD(APPLET(httpd, BB_DIR_USR_SBIN, BB_SUID_DROP))
257
258//kbuild:lib-$(CONFIG_HTTPD) += httpd.o
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000259
Pere Orga5bc8c002011-04-11 03:29:49 +0200260//usage:#define httpd_trivial_usage
261//usage: "[-ifv[v]]"
262//usage: " [-c CONFFILE]"
263//usage: " [-p [IP:]PORT]"
264//usage: IF_FEATURE_HTTPD_SETUID(" [-u USER[:GRP]]")
265//usage: IF_FEATURE_HTTPD_BASIC_AUTH(" [-r REALM]")
266//usage: " [-h HOME]\n"
267//usage: "or httpd -d/-e" IF_FEATURE_HTTPD_AUTH_MD5("/-m") " STRING"
268//usage:#define httpd_full_usage "\n\n"
269//usage: "Listen for incoming HTTP requests\n"
Pere Orga5bc8c002011-04-11 03:29:49 +0200270//usage: "\n -i Inetd mode"
271//usage: "\n -f Don't daemonize"
272//usage: "\n -v[v] Verbose"
273//usage: "\n -p [IP:]PORT Bind to IP:PORT (default *:80)"
274//usage: IF_FEATURE_HTTPD_SETUID(
275//usage: "\n -u USER[:GRP] Set uid/gid after binding to port")
276//usage: IF_FEATURE_HTTPD_BASIC_AUTH(
277//usage: "\n -r REALM Authentication Realm for Basic Authentication")
278//usage: "\n -h HOME Home directory (default .)"
279//usage: "\n -c FILE Configuration file (default {/etc,HOME}/httpd.conf)"
280//usage: IF_FEATURE_HTTPD_AUTH_MD5(
281//usage: "\n -m STRING MD5 crypt STRING")
282//usage: "\n -e STRING HTML encode STRING"
283//usage: "\n -d STRING URL decode STRING"
284
Denys Vlasenko51792e12019-04-14 19:57:13 +0200285/* TODO: use TCP_CORK, parse_config() */
286
Denis Vlasenkob6adbf12007-05-26 19:00:18 +0000287#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200288#include "common_bufsiz.h"
Pascal Bellard72917552011-11-29 13:51:11 +0100289#if ENABLE_PAM
290/* PAM may include <locale.h>. We may need to undefine bbox's stub define: */
291# undef setlocale
292/* For some obscure reason, PAM is not in pam/xxx, but in security/xxx.
293 * Apparently they like to confuse people. */
294# include <security/pam_appl.h>
295# include <security/pam_misc.h>
296#endif
Bartosz Golaszewski8d75d792014-11-27 13:20:24 +0100297#if ENABLE_FEATURE_USE_SENDFILE
Denis Vlasenko1cbfd982009-02-04 23:43:44 +0000298# include <sys/sendfile.h>
Denis Vlasenko1b9064d2007-08-12 21:05:49 +0000299#endif
Denys Vlasenko535ce1d2010-07-25 03:20:25 +0200300
Alex Samorukovdae90bb2021-01-04 01:16:28 +0100301/* see sys/netinet6/in6.h */
302#if defined(__FreeBSD__)
303# define s6_addr32 __u6_addr.__u6_addr32
304#endif
305
Denys Vlasenko535ce1d2010-07-25 03:20:25 +0200306#define DEBUG 0
307
308#define IOBUF_SIZE 8192
Denys Vlasenko1c356942019-04-19 14:19:41 +0200309#define MAX_HTTP_HEADERS_SIZE (32*1024)
Denis Vlasenko073214f2007-08-17 19:20:07 +0000310
311#define HEADER_READ_TIMEOUT 60
312
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000313static const char DEFAULT_PATH_HTTPD_CONF[] ALIGN1 = "/etc";
314static const char HTTPD_CONF[] ALIGN1 = "httpd.conf";
Sergey Ponomarevb414cdf2020-08-09 01:23:31 +0300315static const char HTTP_200[] ALIGN1 = "HTTP/1.1 200 OK\r\n";
Denys Vlasenko535ce1d2010-07-25 03:20:25 +0200316static const char index_html[] ALIGN1 = "index.html";
Glenn L McGrath06e95652003-02-09 06:51:14 +0000317
Denis Vlasenko073214f2007-08-17 19:20:07 +0000318typedef struct has_next_ptr {
319 struct has_next_ptr *next;
320} has_next_ptr;
Eric Andersen07f2fea2004-10-08 08:03:29 +0000321
Denis Vlasenko073214f2007-08-17 19:20:07 +0000322/* Must have "next" as a first member */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000323typedef struct Htaccess {
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000324 struct Htaccess *next;
Denis Vlasenko073214f2007-08-17 19:20:07 +0000325 char *after_colon;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000326 char before_colon[1]; /* really bigger, must be last */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000327} Htaccess;
328
Sergey Ponomareva9493992020-08-16 14:58:31 +0200329#if ENABLE_FEATURE_HTTPD_ACL_IP
Denis Vlasenko073214f2007-08-17 19:20:07 +0000330/* Must have "next" as a first member */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000331typedef struct Htaccess_IP {
Denis Vlasenko073214f2007-08-17 19:20:07 +0000332 struct Htaccess_IP *next;
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000333 unsigned ip;
334 unsigned mask;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000335 int allow_deny;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000336} Htaccess_IP;
Sergey Ponomareva9493992020-08-16 14:58:31 +0200337#endif
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000338
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000339/* Must have "next" as a first member */
340typedef struct Htaccess_Proxy {
341 struct Htaccess_Proxy *next;
342 char *url_from;
343 char *host_port;
344 char *url_to;
345} Htaccess_Proxy;
346
Denys Vlasenkofba665a2019-04-16 11:37:02 +0200347typedef enum CGI_type {
348 CGI_NONE = 0,
349 CGI_NORMAL,
350 CGI_INDEX,
351 CGI_INTERPRETER,
352} CGI_type;
353
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000354enum {
355 HTTP_OK = 200,
Denis Vlasenkof4310172007-09-21 22:35:18 +0000356 HTTP_PARTIAL_CONTENT = 206,
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000357 HTTP_MOVED_TEMPORARILY = 302,
Sergey Ponomarev4864a682020-08-15 23:52:48 +0200358 HTTP_NOT_MODIFIED = 304,
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000359 HTTP_BAD_REQUEST = 400, /* malformed syntax */
360 HTTP_UNAUTHORIZED = 401, /* authentication needed, respond with auth hdr */
361 HTTP_NOT_FOUND = 404,
362 HTTP_FORBIDDEN = 403,
363 HTTP_REQUEST_TIMEOUT = 408,
364 HTTP_NOT_IMPLEMENTED = 501, /* used for unrecognized requests */
365 HTTP_INTERNAL_SERVER_ERROR = 500,
Denys Vlasenkofba665a2019-04-16 11:37:02 +0200366 HTTP_ENTITY_TOO_LARGE = 413,
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000367 HTTP_CONTINUE = 100,
368#if 0 /* future use */
369 HTTP_SWITCHING_PROTOCOLS = 101,
370 HTTP_CREATED = 201,
371 HTTP_ACCEPTED = 202,
372 HTTP_NON_AUTHORITATIVE_INFO = 203,
373 HTTP_NO_CONTENT = 204,
374 HTTP_MULTIPLE_CHOICES = 300,
375 HTTP_MOVED_PERMANENTLY = 301,
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000376 HTTP_PAYMENT_REQUIRED = 402,
377 HTTP_BAD_GATEWAY = 502,
378 HTTP_SERVICE_UNAVAILABLE = 503, /* overload, maintenance */
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000379#endif
380};
381
Denis Vlasenko72b6a652007-08-21 11:18:25 +0000382static const uint16_t http_response_type[] ALIGN2 = {
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000383 HTTP_OK,
Denis Vlasenkof4310172007-09-21 22:35:18 +0000384#if ENABLE_FEATURE_HTTPD_RANGES
385 HTTP_PARTIAL_CONTENT,
386#endif
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000387 HTTP_MOVED_TEMPORARILY,
Sergey Ponomarev4864a682020-08-15 23:52:48 +0200388#if ENABLE_FEATURE_HTTPD_ETAG
389 HTTP_NOT_MODIFIED,
390#endif
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000391 HTTP_REQUEST_TIMEOUT,
392 HTTP_NOT_IMPLEMENTED,
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +0000393#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000394 HTTP_UNAUTHORIZED,
395#endif
396 HTTP_NOT_FOUND,
397 HTTP_BAD_REQUEST,
398 HTTP_FORBIDDEN,
399 HTTP_INTERNAL_SERVER_ERROR,
Denys Vlasenkofba665a2019-04-16 11:37:02 +0200400 HTTP_ENTITY_TOO_LARGE,
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000401#if 0 /* not implemented */
402 HTTP_CREATED,
403 HTTP_ACCEPTED,
404 HTTP_NO_CONTENT,
405 HTTP_MULTIPLE_CHOICES,
406 HTTP_MOVED_PERMANENTLY,
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000407 HTTP_BAD_GATEWAY,
408 HTTP_SERVICE_UNAVAILABLE,
409#endif
410};
411
412static const struct {
413 const char *name;
414 const char *info;
415} http_response[ARRAY_SIZE(http_response_type)] = {
416 { "OK", NULL },
Denis Vlasenkof4310172007-09-21 22:35:18 +0000417#if ENABLE_FEATURE_HTTPD_RANGES
418 { "Partial Content", NULL },
419#endif
420 { "Found", NULL },
Sergey Ponomarev4864a682020-08-15 23:52:48 +0200421#if ENABLE_FEATURE_HTTPD_ETAG
422 { "Not Modified" },
423#endif
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000424 { "Request Timeout", "No request appeared within 60 seconds" },
425 { "Not Implemented", "The requested method is not recognized" },
426#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
427 { "Unauthorized", "" },
428#endif
429 { "Not Found", "The requested URL was not found" },
430 { "Bad Request", "Unsupported method" },
431 { "Forbidden", "" },
432 { "Internal Server Error", "Internal Server Error" },
Denys Vlasenkofba665a2019-04-16 11:37:02 +0200433 { "Entity Too Large", "Entity Too Large" },
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000434#if 0 /* not implemented */
435 { "Created" },
436 { "Accepted" },
437 { "No Content" },
438 { "Multiple Choices" },
439 { "Moved Permanently" },
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000440 { "Bad Gateway", "" },
441 { "Service Unavailable", "" },
442#endif
443};
444
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000445struct globals {
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000446 int verbose; /* must be int (used by getopt32) */
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000447 smallint flg_deny_all;
Denys Vlasenko9fe8bd82018-04-07 01:13:30 +0200448#if ENABLE_FEATURE_HTTPD_GZIP
449 /* client can handle gzip / we are going to send gzip */
450 smallint content_gzip;
451#endif
Denis Vlasenko37c33162007-08-19 18:54:22 +0000452 time_t last_mod;
Sergey Ponomarev4864a682020-08-15 23:52:48 +0200453#if ENABLE_FEATURE_HTTPD_ETAG
454 char *if_none_match;
455#endif
Denis Vlasenko37c33162007-08-19 18:54:22 +0000456 char *rmt_ip_str; /* for $REMOTE_ADDR and $REMOTE_PORT */
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000457 const char *bind_addr_or_port;
458
Denys Vlasenko2efa7262019-04-16 13:35:56 +0200459 char *g_query;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000460 const char *opt_c_configFile;
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000461 const char *home_httpd;
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000462 const char *index_page;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000463
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000464 const char *found_mime_type;
465 const char *found_moved_temporarily;
Sergey Ponomareva9493992020-08-16 14:58:31 +0200466#if ENABLE_FEATURE_HTTPD_ACL_IP
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000467 Htaccess_IP *ip_a_d; /* config allow/deny lines */
Sergey Ponomareva9493992020-08-16 14:58:31 +0200468#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000469
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000470 IF_FEATURE_HTTPD_BASIC_AUTH(const char *g_realm;)
471 IF_FEATURE_HTTPD_BASIC_AUTH(char *remoteuser;)
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +0000472
Denis Vlasenkof4310172007-09-21 22:35:18 +0000473 off_t file_size; /* -1 - unknown */
474#if ENABLE_FEATURE_HTTPD_RANGES
475 off_t range_start;
476 off_t range_end;
477 off_t range_len;
478#endif
479
Denis Vlasenko55a99402006-09-30 20:41:44 +0000480#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000481 Htaccess *g_auth; /* config user:password lines */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000482#endif
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000483 Htaccess *mime_a; /* config mime types */
Denis Vlasenko55a99402006-09-30 20:41:44 +0000484#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000485 Htaccess *script_i; /* config script interpreters */
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000486#endif
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200487 char *iobuf; /* [IOBUF_SIZE] */
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200488#define hdr_buf bb_common_bufsiz1
489#define sizeof_hdr_buf COMMON_BUFSIZE
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000490 char *hdr_ptr;
491 int hdr_cnt;
Sergey Ponomarev4864a682020-08-15 23:52:48 +0200492#if ENABLE_FEATURE_HTTPD_ETAG
493 char etag[sizeof("'%llx-%llx'") + 2 * sizeof(long long)*3];
494#endif
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000495#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
496 const char *http_error_page[ARRAY_SIZE(http_response_type)];
497#endif
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000498#if ENABLE_FEATURE_HTTPD_PROXY
499 Htaccess_Proxy *proxy;
500#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000501};
502#define G (*ptr_to_globals)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000503#define verbose (G.verbose )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000504#define flg_deny_all (G.flg_deny_all )
Denys Vlasenko9fe8bd82018-04-07 01:13:30 +0200505#if ENABLE_FEATURE_HTTPD_GZIP
506# define content_gzip (G.content_gzip )
507#else
508# define content_gzip 0
509#endif
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000510#define bind_addr_or_port (G.bind_addr_or_port)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000511#define g_query (G.g_query )
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000512#define opt_c_configFile (G.opt_c_configFile )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000513#define home_httpd (G.home_httpd )
Denis Vlasenkofcd878e2007-12-29 02:16:23 +0000514#define index_page (G.index_page )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000515#define found_mime_type (G.found_mime_type )
516#define found_moved_temporarily (G.found_moved_temporarily)
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000517#define last_mod (G.last_mod )
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000518#define g_realm (G.g_realm )
519#define remoteuser (G.remoteuser )
Denis Vlasenkof4310172007-09-21 22:35:18 +0000520#define file_size (G.file_size )
521#if ENABLE_FEATURE_HTTPD_RANGES
522#define range_start (G.range_start )
523#define range_end (G.range_end )
524#define range_len (G.range_len )
Denis Vlasenko1cbfd982009-02-04 23:43:44 +0000525#else
526enum {
Denys Vlasenko8cce1b32012-02-19 17:18:45 +0100527 range_start = -1,
Denis Vlasenko1cbfd982009-02-04 23:43:44 +0000528 range_end = MAXINT(off_t) - 1,
529 range_len = MAXINT(off_t),
530};
Denis Vlasenkof4310172007-09-21 22:35:18 +0000531#endif
Denis Vlasenko384b1d12007-08-14 16:55:01 +0000532#define rmt_ip_str (G.rmt_ip_str )
533#define g_auth (G.g_auth )
534#define mime_a (G.mime_a )
535#define script_i (G.script_i )
536#define iobuf (G.iobuf )
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000537#define hdr_ptr (G.hdr_ptr )
538#define hdr_cnt (G.hdr_cnt )
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000539#define http_error_page (G.http_error_page )
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000540#define proxy (G.proxy )
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000541#define INIT_G() do { \
Denys Vlasenko9de2e5a2016-04-21 18:38:51 +0200542 setup_common_bufsiz(); \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000543 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000544 IF_FEATURE_HTTPD_BASIC_AUTH(g_realm = "Web Server Authentication";) \
Denys Vlasenko8cce1b32012-02-19 17:18:45 +0100545 IF_FEATURE_HTTPD_RANGES(range_start = -1;) \
Denis Vlasenko0372f0f2007-08-14 16:50:01 +0000546 bind_addr_or_port = "80"; \
Denys Vlasenko108b8c52009-09-08 21:17:49 +0200547 index_page = index_html; \
Denis Vlasenkof4310172007-09-21 22:35:18 +0000548 file_size = -1; \
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000549} while (0)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000550
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +0000551
Denis Vlasenko0bb993f2006-11-21 00:06:28 +0000552#define STRNCASECMP(a, str) strncasecmp((a), (str), sizeof(str)-1)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000553
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000554/* Prototypes */
Denis Vlasenko2f518b02008-02-21 00:12:07 +0000555enum {
556 SEND_HEADERS = (1 << 0),
557 SEND_BODY = (1 << 1),
558 SEND_HEADERS_AND_BODY = SEND_HEADERS + SEND_BODY,
559};
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000560static void send_file_and_exit(const char *url, int what) NORETURN;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000561
Denis Vlasenko073214f2007-08-17 19:20:07 +0000562static void free_llist(has_next_ptr **pptr)
563{
564 has_next_ptr *cur = *pptr;
565 while (cur) {
566 has_next_ptr *t = cur;
567 cur = cur->next;
568 free(t);
569 }
570 *pptr = NULL;
571}
572
Denis Vlasenko073214f2007-08-17 19:20:07 +0000573static ALWAYS_INLINE void free_Htaccess_list(Htaccess **pptr)
574{
575 free_llist((has_next_ptr**)pptr);
576}
Denis Vlasenko073214f2007-08-17 19:20:07 +0000577
Sergey Ponomareva9493992020-08-16 14:58:31 +0200578#if ENABLE_FEATURE_HTTPD_ACL_IP
Denis Vlasenko073214f2007-08-17 19:20:07 +0000579static ALWAYS_INLINE void free_Htaccess_IP_list(Htaccess_IP **pptr)
580{
581 free_llist((has_next_ptr**)pptr);
582}
Sergey Ponomareva9493992020-08-16 14:58:31 +0200583#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000584
Sergey Ponomareva9493992020-08-16 14:58:31 +0200585#if ENABLE_FEATURE_HTTPD_ACL_IP
Denis Vlasenkod867f322007-08-19 21:15:42 +0000586/* Returns presumed mask width in bits or < 0 on error.
587 * Updates strp, stores IP at provided pointer */
588static int scan_ip(const char **strp, unsigned *ipp, unsigned char endc)
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000589{
Denis Vlasenkod867f322007-08-19 21:15:42 +0000590 const char *p = *strp;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000591 int auto_mask = 8;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000592 unsigned ip = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000593 int j;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000594
Denis Vlasenkod867f322007-08-19 21:15:42 +0000595 if (*p == '/')
596 return -auto_mask;
597
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000598 for (j = 0; j < 4; j++) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000599 unsigned octet;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000600
Denis Vlasenkod867f322007-08-19 21:15:42 +0000601 if ((*p < '0' || *p > '9') && *p != '/' && *p)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000602 return -auto_mask;
603 octet = 0;
604 while (*p >= '0' && *p <= '9') {
605 octet *= 10;
606 octet += *p - '0';
607 if (octet > 255)
608 return -auto_mask;
609 p++;
610 }
611 if (*p == '.')
612 p++;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000613 if (*p != '/' && *p)
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000614 auto_mask += 8;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000615 ip = (ip << 8) | octet;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000616 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000617 if (*p) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000618 if (*p != endc)
619 return -auto_mask;
620 p++;
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +0000621 if (*p == '\0')
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000622 return -auto_mask;
623 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000624 *ipp = ip;
625 *strp = p;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000626 return auto_mask;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000627}
628
Denis Vlasenkod867f322007-08-19 21:15:42 +0000629/* Returns 0 on success. Stores IP and mask at provided pointers */
630static int scan_ip_mask(const char *str, unsigned *ipp, unsigned *maskp)
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000631{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000632 int i;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000633 unsigned mask;
634 char *p;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000635
Denis Vlasenkod867f322007-08-19 21:15:42 +0000636 i = scan_ip(&str, ipp, '/');
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000637 if (i < 0)
638 return i;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000639
Denis Vlasenkod867f322007-08-19 21:15:42 +0000640 if (*str) {
641 /* there is /xxx after dotted-IP address */
642 i = bb_strtou(str, &p, 10);
643 if (*p == '.') {
644 /* 'xxx' itself is dotted-IP mask, parse it */
645 /* (return 0 (success) only if it has N.N.N.N form) */
646 return scan_ip(&str, maskp, '\0') - 32;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000647 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000648 if (*p)
649 return -1;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000650 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000651
652 if (i > 32)
Denis Vlasenko92758142006-10-03 19:56:34 +0000653 return -1;
Denis Vlasenkod867f322007-08-19 21:15:42 +0000654
655 if (sizeof(unsigned) == 4 && i == 32) {
656 /* mask >>= 32 below may not work */
657 mask = 0;
658 } else {
659 mask = 0xffffffff;
660 mask >>= i;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000661 }
Denis Vlasenkod867f322007-08-19 21:15:42 +0000662 /* i == 0 -> *maskp = 0x00000000
663 * i == 1 -> *maskp = 0x80000000
664 * i == 4 -> *maskp = 0xf0000000
665 * i == 31 -> *maskp = 0xfffffffe
666 * i == 32 -> *maskp = 0xffffffff */
667 *maskp = (uint32_t)(~mask);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000668 return 0;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000669}
Sergey Ponomareva9493992020-08-16 14:58:31 +0200670#endif
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000671
Denis Vlasenko073214f2007-08-17 19:20:07 +0000672/*
673 * Parse configuration file into in-memory linked list.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000674 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000675 * Any previous IP rules are discarded.
676 * If the flag argument is not SUBDIR_PARSE then all /path and mime rules
677 * are also discarded. That is, previous settings are retained if flag is
678 * SUBDIR_PARSE.
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000679 * Error pages are only parsed on the main config file.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000680 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000681 * path Path where to look for httpd.conf (without filename).
682 * flag Type of the parse request.
683 */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000684/* flag param: */
685enum {
686 FIRST_PARSE = 0, /* path will be "/etc" */
687 SIGNALED_PARSE = 1, /* path will be "/etc" */
688 SUBDIR_PARSE = 2, /* path will be derived from URL */
689};
Glenn L McGrath06e95652003-02-09 06:51:14 +0000690static void parse_conf(const char *path, int flag)
691{
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000692 /* internally used extra flag state */
693 enum { TRY_CURDIR_PARSE = 3 };
694
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000695 FILE *f;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000696 const char *filename;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000697 char buf[160];
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000698
Denis Vlasenko073214f2007-08-17 19:20:07 +0000699 /* discard old rules */
Sergey Ponomareva9493992020-08-16 14:58:31 +0200700#if ENABLE_FEATURE_HTTPD_ACL_IP
701 free_Htaccess_IP_list(&G.ip_a_d);
702#endif
Denis Vlasenko77e44d62007-06-09 23:49:05 +0000703 flg_deny_all = 0;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000704 /* retain previous auth and mime config only for subdir parse */
705 if (flag != SUBDIR_PARSE) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000706 free_Htaccess_list(&mime_a);
Denis Vlasenko55a99402006-09-30 20:41:44 +0000707#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko073214f2007-08-17 19:20:07 +0000708 free_Htaccess_list(&g_auth);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000709#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +0000710#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000711 free_Htaccess_list(&script_i);
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000712#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000713 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000714
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000715 filename = opt_c_configFile;
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000716 if (flag == SUBDIR_PARSE || filename == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000717 filename = alloca(strlen(path) + sizeof(HTTPD_CONF) + 2);
718 sprintf((char *)filename, "%s/%s", path, HTTPD_CONF);
Glenn L McGrath393183d2003-05-26 14:07:50 +0000719 }
720
Denis Vlasenko5415c852008-07-21 23:05:26 +0000721 while ((f = fopen_for_read(filename)) == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000722 if (flag >= SUBDIR_PARSE) { /* SUBDIR or TRY_CURDIR */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000723 /* config file not found, no changes to config */
724 return;
725 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000726 if (flag == FIRST_PARSE) {
727 /* -c CONFFILE given, but CONFFILE doesn't exist? */
728 if (opt_c_configFile)
729 bb_simple_perror_msg_and_die(opt_c_configFile);
730 /* else: no -c, thus we looked at /etc/httpd.conf,
731 * and it's not there. try ./httpd.conf: */
732 }
733 flag = TRY_CURDIR_PARSE;
734 filename = HTTPD_CONF;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000735 }
736
Denis Vlasenko55a99402006-09-30 20:41:44 +0000737#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000738 /* in "/file:user:pass" lines, we prepend path in subdirs */
739 if (flag != SUBDIR_PARSE)
740 path = "";
Glenn L McGrath06e95652003-02-09 06:51:14 +0000741#endif
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000742 /* The lines can be:
743 *
744 * I:default_index_file
745 * H:http_home
746 * [AD]:IP[/mask] # allow/deny, * for wildcard
747 * Ennn:error.html # error page for status nnn
748 * P:/url:[http://]hostname[:port]/new/path # reverse proxy
749 * .ext:mime/type # mime type
750 * *.php:/path/php # run xxx.php through an interpreter
751 * /file:user:pass # username and password
752 */
753 while (fgets(buf, sizeof(buf), f) != NULL) {
754 unsigned strlen_buf;
755 unsigned char ch;
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200756 char *after_colon;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000757
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000758 { /* remove all whitespace, and # comments */
759 char *p, *p0;
760
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200761 p0 = buf;
762 /* skip non-whitespace beginning. Often the whole line
763 * is non-whitespace. We want this case to work fast,
764 * without needless copying, therefore we don't merge
765 * this operation into next while loop. */
766 while ((ch = *p0) != '\0' && ch != '\n' && ch != '#'
767 && ch != ' ' && ch != '\t'
768 ) {
769 p0++;
770 }
771 p = p0;
772 /* if we enter this loop, we have some whitespace.
773 * discard it */
774 while (ch != '\0' && ch != '\n' && ch != '#') {
775 if (ch != ' ' && ch != '\t') {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000776 *p++ = ch;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000777 }
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200778 ch = *++p0;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000779 }
780 *p = '\0';
781 strlen_buf = p - buf;
Denis Vlasenko00643ca2009-04-22 13:52:22 +0000782 if (strlen_buf == 0)
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200783 continue; /* empty line */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000784 }
785
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200786 after_colon = strchr(buf, ':');
Denis Vlasenko00643ca2009-04-22 13:52:22 +0000787 /* strange line? */
Denys Vlasenko48a29de2009-05-02 00:50:38 +0200788 if (after_colon == NULL || *++after_colon == '\0')
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000789 goto config_error;
790
791 ch = (buf[0] & ~0x20); /* toupper if it's a letter */
792
793 if (ch == 'I') {
Denys Vlasenko108b8c52009-09-08 21:17:49 +0200794 if (index_page != index_html)
795 free((char*)index_page);
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000796 index_page = xstrdup(after_colon);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000797 continue;
798 }
799
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000800 /* do not allow jumping around using H in subdir's configs */
801 if (flag == FIRST_PARSE && ch == 'H') {
802 home_httpd = xstrdup(after_colon);
803 xchdir(home_httpd);
804 continue;
805 }
806
Sergey Ponomareva9493992020-08-16 14:58:31 +0200807#if ENABLE_FEATURE_HTTPD_ACL_IP
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000808 if (ch == 'A' || ch == 'D') {
809 Htaccess_IP *pip;
810
811 if (*after_colon == '*') {
812 if (ch == 'D') {
813 /* memorize "deny all" */
814 flg_deny_all = 1;
815 }
816 /* skip assumed "A:*", it is a default anyway */
817 continue;
818 }
819 /* store "allow/deny IP/mask" line */
820 pip = xzalloc(sizeof(*pip));
821 if (scan_ip_mask(after_colon, &pip->ip, &pip->mask)) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000822 /* IP{/mask} syntax error detected, protect all */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000823 ch = 'D';
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000824 pip->mask = 0;
825 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000826 pip->allow_deny = ch;
827 if (ch == 'D') {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000828 /* Deny:from_IP - prepend */
Sergey Ponomareva9493992020-08-16 14:58:31 +0200829 pip->next = G.ip_a_d;
830 G.ip_a_d = pip;
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000831 } else {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000832 /* A:from_IP - append (thus all D's precedes A's) */
Sergey Ponomareva9493992020-08-16 14:58:31 +0200833 Htaccess_IP *prev_IP = G.ip_a_d;
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000834 if (prev_IP == NULL) {
Sergey Ponomareva9493992020-08-16 14:58:31 +0200835 G.ip_a_d = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000836 } else {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000837 while (prev_IP->next)
838 prev_IP = prev_IP->next;
839 prev_IP->next = pip;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000840 }
841 }
842 continue;
843 }
Sergey Ponomareva9493992020-08-16 14:58:31 +0200844#endif
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000845
846#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000847 if (flag == FIRST_PARSE && ch == 'E') {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000848 unsigned i;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000849 int status = atoi(buf + 1); /* error status code */
850
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000851 if (status < HTTP_CONTINUE) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000852 goto config_error;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000853 }
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000854 /* then error page; find matching status */
855 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
856 if (http_response_type[i] == status) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000857 /* We chdir to home_httpd, thus no need to
858 * concat_path_file(home_httpd, after_colon)
859 * here */
860 http_error_page[i] = xstrdup(after_colon);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +0000861 break;
862 }
863 }
864 continue;
865 }
866#endif
867
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000868#if ENABLE_FEATURE_HTTPD_PROXY
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000869 if (flag == FIRST_PARSE && ch == 'P') {
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000870 /* P:/url:[http://]hostname[:port]/new/path */
871 char *url_from, *host_port, *url_to;
872 Htaccess_Proxy *proxy_entry;
873
Denis Vlasenko0eb406c2008-06-13 09:53:06 +0000874 url_from = after_colon;
875 host_port = strchr(after_colon, ':');
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000876 if (host_port == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000877 goto config_error;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000878 }
879 *host_port++ = '\0';
Denys Vlasenko8dff01d2015-03-12 17:48:34 +0100880 if (is_prefixed_with(host_port, "http://"))
Denis Vlasenko78ee7c82007-10-21 23:24:42 +0000881 host_port += 7;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000882 if (*host_port == '\0') {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000883 goto config_error;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000884 }
885 url_to = strchr(host_port, '/');
886 if (url_to == NULL) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000887 goto config_error;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000888 }
889 *url_to = '\0';
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000890 proxy_entry = xzalloc(sizeof(*proxy_entry));
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000891 proxy_entry->url_from = xstrdup(url_from);
892 proxy_entry->host_port = xstrdup(host_port);
893 *url_to = '/';
894 proxy_entry->url_to = xstrdup(url_to);
895 proxy_entry->next = proxy;
896 proxy = proxy_entry;
897 continue;
898 }
899#endif
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000900 /* the rest of directives are non-alphabetic,
901 * must avoid using "toupper'ed" ch */
902 ch = buf[0];
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000903
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000904 if (ch == '.' /* ".ext:mime/type" */
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000905#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000906 || (ch == '*' && buf[1] == '.') /* "*.php:/path/php" */
907#endif
908 ) {
909 char *p;
910 Htaccess *cur;
911
912 cur = xzalloc(sizeof(*cur) /* includes space for NUL */ + strlen_buf);
913 strcpy(cur->before_colon, buf);
914 p = cur->before_colon + (after_colon - buf);
915 p[-1] = '\0';
916 cur->after_colon = p;
917 if (ch == '.') {
918 /* .mime line: prepend to mime_a list */
919 cur->next = mime_a;
920 mime_a = cur;
921 }
922#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
923 else {
924 /* script interpreter line: prepend to script_i list */
925 cur->next = script_i;
926 script_i = cur;
927 }
928#endif
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000929 continue;
930 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000931
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000932#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
933 if (ch == '/') { /* "/file:user:pass" */
934 char *p;
935 Htaccess *cur;
936 unsigned file_len;
937
938 /* note: path is "" unless we are in SUBDIR parse,
Denis Vlasenkoc8d71092009-04-22 14:16:59 +0000939 * otherwise it does NOT start with "/" */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000940 cur = xzalloc(sizeof(*cur) /* includes space for NUL */
Denis Vlasenkoc8d71092009-04-22 14:16:59 +0000941 + 1 + strlen(path)
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000942 + strlen_buf
943 );
944 /* form "/path/file" */
Denis Vlasenkoc8d71092009-04-22 14:16:59 +0000945 sprintf(cur->before_colon, "/%s%.*s",
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000946 path,
Denys Vlasenkoa4bcbd02009-06-09 23:01:24 +0200947 (int) (after_colon - buf - 1), /* includes "/", but not ":" */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000948 buf);
949 /* canonicalize it */
950 p = bb_simplify_abs_path_inplace(cur->before_colon);
951 file_len = p - cur->before_colon;
952 /* add "user:pass" after NUL */
953 strcpy(++p, after_colon);
954 cur->after_colon = p;
955
956 /* insert cur into g_auth */
957 /* g_auth is sorted by decreased filename length */
958 {
959 Htaccess *auth, **authp;
960
961 authp = &g_auth;
962 while ((auth = *authp) != NULL) {
963 if (file_len >= strlen(auth->before_colon)) {
964 /* insert cur before auth */
965 cur->next = auth;
966 break;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000967 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000968 authp = &auth->next;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000969 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000970 *authp = cur;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000971 }
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000972 continue;
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000973 }
974#endif /* BASIC_AUTH */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000975
976 /* the line is not recognized */
977 config_error:
978 bb_error_msg("config error '%s' in '%s'", buf, filename);
Denys Vlasenko69675782013-01-14 01:34:48 +0100979 } /* while (fgets) */
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +0000980
Denys Vlasenko69675782013-01-14 01:34:48 +0100981 fclose(f);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000982}
983
Denis Vlasenko55a99402006-09-30 20:41:44 +0000984#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko073214f2007-08-17 19:20:07 +0000985/*
986 * Given a string, html-encode special characters.
987 * This is used for the -e command line option to provide an easy way
988 * for scripts to encode result data without confusing browsers. The
989 * returned string pointer is memory allocated by malloc().
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000990 *
Denis Vlasenko073214f2007-08-17 19:20:07 +0000991 * Returns a pointer to the encoded string (malloced).
992 */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000993static char *encodeString(const char *string)
994{
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000995 /* take the simple route and encode everything */
996 /* could possibly scan once to get length. */
997 int len = strlen(string);
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000998 char *out = xmalloc(len * 6 + 1);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +0000999 char *p = out;
1000 char ch;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001001
Denys Vlasenko535ce1d2010-07-25 03:20:25 +02001002 while ((ch = *string++) != '\0') {
Denis Vlasenko72b6a652007-08-21 11:18:25 +00001003 /* very simple check for what to encode */
1004 if (isalnum(ch))
1005 *p++ = ch;
1006 else
Denys Vlasenko9fe8bd82018-04-07 01:13:30 +02001007 p += sprintf(p, "&#%u;", (unsigned char) ch);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001008 }
Denis Vlasenkoab2aea42007-01-29 22:51:58 +00001009 *p = '\0';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001010 return out;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001011}
Denys Vlasenko535ce1d2010-07-25 03:20:25 +02001012#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001013
Denis Vlasenko55a99402006-09-30 20:41:44 +00001014#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001015/*
Denis Vlasenko073214f2007-08-17 19:20:07 +00001016 * Decode a base64 data stream as per rfc1521.
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001017 * Note that the rfc states that non base64 chars are to be ignored.
Denis Vlasenko073214f2007-08-17 19:20:07 +00001018 * Since the decode always results in a shorter size than the input,
1019 * it is OK to pass the input arg as an output arg.
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001020 * Parameter: a pointer to a base64 encoded string.
1021 * Decoded data is stored in-place.
1022 */
Denys Vlasenko885121e2020-11-28 13:26:44 +01001023static void decodeBase64(char *data)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001024{
Denys Vlasenko885121e2020-11-28 13:26:44 +01001025 decode_base64(data, NULL)[0] = '\0';
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001026}
1027#endif
1028
Denis Vlasenko073214f2007-08-17 19:20:07 +00001029/*
1030 * Create a listen server socket on the designated port.
1031 */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001032static int openServer(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001033{
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001034 unsigned n = bb_strtou(bind_addr_or_port, NULL, 10);
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001035 if (!errno && n && n <= 0xffff)
1036 n = create_and_bind_stream_or_die(NULL, n);
1037 else
1038 n = create_and_bind_stream_or_die(bind_addr_or_port, 80);
1039 xlisten(n, 9);
1040 return n;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001041}
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001042
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001043/*
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001044 * Log the connection closure and exit.
1045 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001046static void log_and_exit(void) NORETURN;
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001047static void log_and_exit(void)
1048{
Denis Vlasenko921799d2007-08-19 19:28:09 +00001049 /* Paranoia. IE said to be buggy. It may send some extra data
1050 * or be confused by us just exiting without SHUT_WR. Oh well. */
1051 shutdown(1, SHUT_WR);
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00001052 /* Why??
1053 (this also messes up stdin when user runs httpd -i from terminal)
Denis Vlasenko921799d2007-08-19 19:28:09 +00001054 ndelay_on(0);
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001055 while (read(STDIN_FILENO, iobuf, IOBUF_SIZE) > 0)
Denis Vlasenko921799d2007-08-19 19:28:09 +00001056 continue;
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00001057 */
Denis Vlasenko921799d2007-08-19 19:28:09 +00001058
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001059 if (verbose > 2)
James Byrne69374872019-07-02 11:35:03 +02001060 bb_simple_error_msg("closed");
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001061 _exit(xfunc_error_retval);
1062}
1063
1064/*
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001065 * Create and send HTTP response headers.
1066 * The arguments are combined and sent as one write operation. Note that
1067 * IE will puke big-time if the headers are not sent in one packet and the
1068 * second packet is delayed for any reason.
1069 * responseNum - the result code to send.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001070 */
Denys Vlasenko9fe8bd82018-04-07 01:13:30 +02001071static void send_headers(unsigned responseNum)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001072{
Sergey Ponomarevb6efac32020-08-09 01:23:33 +03001073#if ENABLE_FEATURE_HTTPD_DATE || ENABLE_FEATURE_HTTPD_LAST_MODIFIED
Denis Vlasenko073214f2007-08-17 19:20:07 +00001074 static const char RFC1123FMT[] ALIGN1 = "%a, %d %b %Y %H:%M:%S GMT";
Denys Vlasenko9f8eb1e2016-11-22 02:23:35 +01001075 /* Fixed size 29-byte string. Example: Sun, 06 Nov 1994 08:49:37 GMT */
1076 char date_str[40]; /* using a bit larger buffer to paranoia reasons */
Denys Vlasenkoe1b1b792018-03-06 18:11:47 +01001077 struct tm tm;
Sergey Ponomarevb6efac32020-08-09 01:23:33 +03001078#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001079 const char *responseString = "";
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001080 const char *infoString = NULL;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001081#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001082 const char *error_page = NULL;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001083#endif
Denys Vlasenko9fe8bd82018-04-07 01:13:30 +02001084 unsigned len;
Denis Vlasenkob64eed62007-01-14 17:06:11 +00001085 unsigned i;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001086
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001087 for (i = 0; i < ARRAY_SIZE(http_response_type); i++) {
1088 if (http_response_type[i] == responseNum) {
1089 responseString = http_response[i].name;
1090 infoString = http_response[i].info;
1091#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
1092 error_page = http_error_page[i];
1093#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001094 break;
1095 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001096 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001097
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001098 if (verbose)
Denis Vlasenko241b1562007-08-17 19:18:47 +00001099 bb_error_msg("response:%u", responseNum);
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001100
Denys Vlasenko9f8eb1e2016-11-22 02:23:35 +01001101 /* We use sprintf, not snprintf (it's less code).
1102 * iobuf[] is several kbytes long and all headers we generate
1103 * always fit into those kbytes.
1104 */
1105
Sergey Ponomarevb6efac32020-08-09 01:23:33 +03001106 {
Sergey Ponomarev68f75bb2020-08-09 01:23:32 +03001107#if ENABLE_FEATURE_HTTPD_DATE
Sergey Ponomarevb6efac32020-08-09 01:23:33 +03001108 time_t timer = time(NULL);
1109 strftime(date_str, sizeof(date_str), RFC1123FMT, gmtime_r(&timer, &tm));
1110 /* ^^^ using gmtime_r() instead of gmtime() to not use static data */
Sergey Ponomarev68f75bb2020-08-09 01:23:32 +03001111#endif
Sergey Ponomarevb6efac32020-08-09 01:23:33 +03001112 len = sprintf(iobuf,
Sergey Ponomarevb414cdf2020-08-09 01:23:31 +03001113 "HTTP/1.1 %u %s\r\n"
Sergey Ponomarev68f75bb2020-08-09 01:23:32 +03001114#if ENABLE_FEATURE_HTTPD_DATE
Denys Vlasenko9f8eb1e2016-11-22 02:23:35 +01001115 "Date: %s\r\n"
Sergey Ponomarev68f75bb2020-08-09 01:23:32 +03001116#endif
Denys Vlasenko9f8eb1e2016-11-22 02:23:35 +01001117 "Connection: close\r\n",
Sergey Ponomarev68f75bb2020-08-09 01:23:32 +03001118 responseNum, responseString
1119#if ENABLE_FEATURE_HTTPD_DATE
1120 ,date_str
1121#endif
Sergey Ponomarevb6efac32020-08-09 01:23:33 +03001122 );
1123 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001124
Denys Vlasenko9fe8bd82018-04-07 01:13:30 +02001125 if (responseNum != HTTP_OK || found_mime_type) {
1126 len += sprintf(iobuf + len,
1127 "Content-type: %s\r\n",
1128 /* if it's error message, then it's HTML */
1129 (responseNum != HTTP_OK ? "text/html" : found_mime_type)
1130 );
1131 }
1132
Denis Vlasenko55a99402006-09-30 20:41:44 +00001133#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001134 if (responseNum == HTTP_UNAUTHORIZED) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001135 len += sprintf(iobuf + len,
Denys Vlasenko9f8eb1e2016-11-22 02:23:35 +01001136 "WWW-Authenticate: Basic realm=\"%.999s\"\r\n",
1137 g_realm /* %.999s protects from overflowing iobuf[] */
1138 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001139 }
Glenn L McGrath3d2405c2003-02-10 22:28:21 +00001140#endif
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001141 if (responseNum == HTTP_MOVED_TEMPORARILY) {
Denys Vlasenko59f84752015-10-23 11:49:04 +02001142 /* Responding to "GET /dir" with
Sergey Ponomarevb414cdf2020-08-09 01:23:31 +03001143 * "HTTP/1.1 302 Found" "Location: /dir/"
Denys Vlasenko59f84752015-10-23 11:49:04 +02001144 * - IOW, asking them to repeat with a slash.
1145 * Here, overflow IS possible, can't use sprintf:
1146 * mkdir test
1147 * python -c 'print("get /test?" + ("x" * 8192))' | busybox httpd -i -h .
1148 */
1149 len += snprintf(iobuf + len, IOBUF_SIZE-3 - len,
1150 "Location: %s/%s%s\r\n",
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001151 found_moved_temporarily,
1152 (g_query ? "?" : ""),
Denys Vlasenko9f8eb1e2016-11-22 02:23:35 +01001153 (g_query ? g_query : "")
1154 );
Denys Vlasenko59f84752015-10-23 11:49:04 +02001155 if (len > IOBUF_SIZE-3)
1156 len = IOBUF_SIZE-3;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001157 }
Eric Andersen07f2fea2004-10-08 08:03:29 +00001158
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001159#if ENABLE_FEATURE_HTTPD_ERROR_PAGES
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001160 if (error_page && access(error_page, R_OK) == 0) {
Denys Vlasenko59f84752015-10-23 11:49:04 +02001161 iobuf[len++] = '\r';
1162 iobuf[len++] = '\n';
1163 if (DEBUG) {
1164 iobuf[len] = '\0';
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001165 fprintf(stderr, "headers: '%s'\n", iobuf);
Denys Vlasenko59f84752015-10-23 11:49:04 +02001166 }
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001167 full_write(STDOUT_FILENO, iobuf, len);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001168 if (DEBUG)
1169 fprintf(stderr, "writing error page: '%s'\n", error_page);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001170 return send_file_and_exit(error_page, SEND_BODY);
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001171 }
1172#endif
1173
Denis Vlasenkof4310172007-09-21 22:35:18 +00001174 if (file_size != -1) { /* file */
Sergey Ponomarevb6efac32020-08-09 01:23:33 +03001175#if ENABLE_FEATURE_HTTPD_LAST_MODIFIED
Denys Vlasenkoe1b1b792018-03-06 18:11:47 +01001176 strftime(date_str, sizeof(date_str), RFC1123FMT, gmtime_r(&last_mod, &tm));
Sergey Ponomarevb6efac32020-08-09 01:23:33 +03001177#endif
Denis Vlasenkof4310172007-09-21 22:35:18 +00001178#if ENABLE_FEATURE_HTTPD_RANGES
1179 if (responseNum == HTTP_PARTIAL_CONTENT) {
Denys Vlasenko9f8eb1e2016-11-22 02:23:35 +01001180 len += sprintf(iobuf + len,
1181 "Content-Range: bytes %"OFF_FMT"u-%"OFF_FMT"u/%"OFF_FMT"u\r\n",
Denis Vlasenkof4310172007-09-21 22:35:18 +00001182 range_start,
1183 range_end,
Denys Vlasenko9f8eb1e2016-11-22 02:23:35 +01001184 file_size
1185 );
Denis Vlasenkof4310172007-09-21 22:35:18 +00001186 file_size = range_end - range_start + 1;
1187 }
1188#endif
Alexander Vickberg210b5242019-04-17 11:34:21 +02001189
1190//RFC 2616 4.4 Message Length
1191// The transfer-length of a message is the length of the message-body as
1192// it appears in the message; that is, after any transfer-codings have
1193// been applied. When a message-body is included with a message, the
1194// transfer-length of that body is determined by one of the following
1195// (in order of precedence):
1196// 1.Any response message which "MUST NOT" include a message-body (such
1197// as the 1xx, 204, and 304 responses and any response to a HEAD
1198// request) is always terminated by the first empty line after the
1199// header fields, regardless of the entity-header fields present in
1200// the message.
1201// 2.If a Transfer-Encoding header field (section 14.41) is present and
1202// has any value other than "identity", then the transfer-length is
1203// defined by use of the "chunked" transfer-coding (section 3.6),
1204// unless the message is terminated by closing the connection.
1205// 3.If a Content-Length header field (section 14.13) is present, its
1206// decimal value in OCTETs represents both the entity-length and the
1207// transfer-length. The Content-Length header field MUST NOT be sent
1208// if these two lengths are different (i.e., if a Transfer-Encoding
1209// header field is present). If a message is received with both a
1210// Transfer-Encoding header field and a Content-Length header field,
1211// the latter MUST be ignored.
1212// 4.If the message uses the media type "multipart/byteranges" ...
1213// 5.By the server closing the connection.
1214//
1215// (NB: standards do not define "Transfer-Length:" _header_,
1216// transfer-length above is just a concept).
1217
Denis Vlasenkof4310172007-09-21 22:35:18 +00001218 len += sprintf(iobuf + len,
1219#if ENABLE_FEATURE_HTTPD_RANGES
1220 "Accept-Ranges: bytes\r\n"
1221#endif
Sergey Ponomarevb6efac32020-08-09 01:23:33 +03001222#if ENABLE_FEATURE_HTTPD_LAST_MODIFIED
Denys Vlasenko9f8eb1e2016-11-22 02:23:35 +01001223 "Last-Modified: %s\r\n"
Sergey Ponomarevb6efac32020-08-09 01:23:33 +03001224#endif
Sergey Ponomarev4864a682020-08-15 23:52:48 +02001225#if ENABLE_FEATURE_HTTPD_ETAG
1226 "ETag: %s\r\n"
1227#endif
1228
Alexander Vickberg210b5242019-04-17 11:34:21 +02001229 /* Because of 4.4 (5), we can forgo sending of "Content-Length"
1230 * since we close connection afterwards, but it helps clients
1231 * to e.g. estimate download times, show progress bars etc.
1232 * Theoretically we should not send it if page is compressed,
1233 * but de-facto standard is to send it (see comment below).
1234 */
1235 "Content-Length: %"OFF_FMT"u\r\n",
Sergey Ponomarevb6efac32020-08-09 01:23:33 +03001236#if ENABLE_FEATURE_HTTPD_LAST_MODIFIED
Denys Vlasenko9f8eb1e2016-11-22 02:23:35 +01001237 date_str,
Sergey Ponomarevb6efac32020-08-09 01:23:33 +03001238#endif
Sergey Ponomarev4864a682020-08-15 23:52:48 +02001239#if ENABLE_FEATURE_HTTPD_ETAG
1240 G.etag,
1241#endif
Denis Vlasenkof4310172007-09-21 22:35:18 +00001242 file_size
1243 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001244 }
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02001245
Alexander Vickberg210b5242019-04-17 11:34:21 +02001246 /* This should be "Transfer-Encoding", not "Content-Encoding":
1247 * "data is compressed for transfer", not "data is an archive".
1248 * But many clients were not handling "Transfer-Encoding" correctly
1249 * (they were not uncompressing gzipped pages, tried to show
1250 * raw compressed data), and servers worked around it by using
1251 * "Content-Encoding" instead... and this become de-facto standard.
1252 * https://bugzilla.mozilla.org/show_bug.cgi?id=68517
1253 * https://bugs.chromium.org/p/chromium/issues/detail?id=94730
1254 */
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02001255 if (content_gzip)
1256 len += sprintf(iobuf + len, "Content-Encoding: gzip\r\n");
1257
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001258 iobuf[len++] = '\r';
1259 iobuf[len++] = '\n';
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001260 if (infoString) {
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001261 len += sprintf(iobuf + len,
Denys Vlasenko9fe8bd82018-04-07 01:13:30 +02001262 "<HTML><HEAD><TITLE>%u %s</TITLE></HEAD>\n"
1263 "<BODY><H1>%u %s</H1>\n"
Denys Vlasenko9f8eb1e2016-11-22 02:23:35 +01001264 "%s\n"
1265 "</BODY></HTML>\n",
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001266 responseNum, responseString,
Denys Vlasenko9f8eb1e2016-11-22 02:23:35 +01001267 responseNum, responseString,
1268 infoString
1269 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001270 }
Denys Vlasenko59f84752015-10-23 11:49:04 +02001271 if (DEBUG) {
1272 iobuf[len] = '\0';
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001273 fprintf(stderr, "headers: '%s'\n", iobuf);
Denys Vlasenko59f84752015-10-23 11:49:04 +02001274 }
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001275 if (full_write(STDOUT_FILENO, iobuf, len) != len) {
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001276 if (verbose > 1)
James Byrne69374872019-07-02 11:35:03 +02001277 bb_simple_perror_msg("error");
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001278 log_and_exit();
1279 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001280}
1281
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001282static void send_headers_and_exit(int responseNum) NORETURN;
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001283static void send_headers_and_exit(int responseNum)
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001284{
Peter Korsgaard95755182011-03-25 13:38:52 +01001285 IF_FEATURE_HTTPD_GZIP(content_gzip = 0;)
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001286 send_headers(responseNum);
1287 log_and_exit();
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001288}
1289
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001290/*
Denys Vlasenkod0ae4102019-04-16 11:07:37 +02001291 * Read from the socket until '\n' or EOF.
1292 * '\r' chars are removed.
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001293 * '\n' is replaced with NUL.
1294 * Return number of characters read or 0 if nothing is read
1295 * ('\r' and '\n' are not counted).
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001296 * Data is returned in iobuf.
1297 */
Denys Vlasenko62ba9e52019-04-16 13:18:12 +02001298static unsigned get_line(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001299{
Denys Vlasenko62ba9e52019-04-16 13:18:12 +02001300 unsigned count;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001301 char c;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001302
Denys Vlasenkod0ae4102019-04-16 11:07:37 +02001303 count = 0;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001304 while (1) {
1305 if (hdr_cnt <= 0) {
Denys Vlasenkoaf6012a2019-04-19 14:03:37 +02001306 alarm(HEADER_READ_TIMEOUT);
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +02001307 hdr_cnt = safe_read(STDIN_FILENO, hdr_buf, sizeof_hdr_buf);
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001308 if (hdr_cnt <= 0)
Denys Vlasenkod0ae4102019-04-16 11:07:37 +02001309 goto ret;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001310 hdr_ptr = hdr_buf;
1311 }
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001312 hdr_cnt--;
Denys Vlasenkod0ae4102019-04-16 11:07:37 +02001313 c = *hdr_ptr++;
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001314 if (c == '\r')
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00001315 continue;
Denys Vlasenkod0ae4102019-04-16 11:07:37 +02001316 if (c == '\n')
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00001317 break;
Denys Vlasenkod0ae4102019-04-16 11:07:37 +02001318 iobuf[count] = c;
Denis Vlasenko921799d2007-08-19 19:28:09 +00001319 if (count < (IOBUF_SIZE - 1)) /* check overflow */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001320 count++;
1321 }
Denys Vlasenkod0ae4102019-04-16 11:07:37 +02001322 ret:
1323 iobuf[count] = '\0';
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001324 return count;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001325}
1326
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001327#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001328
1329/* gcc 4.2.1 fares better with NOINLINE */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001330static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len) NORETURN;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001331static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len)
1332{
1333 enum { FROM_CGI = 1, TO_CGI = 2 }; /* indexes in pfd[] */
1334 struct pollfd pfd[3];
1335 int out_cnt; /* we buffer a bit of initial CGI output */
1336 int count;
1337
1338 /* iobuf is used for CGI -> network data,
1339 * hdr_buf is for network -> CGI data (POSTDATA) */
1340
1341 /* If CGI dies, we still want to correctly finish reading its output
1342 * and send it to the peer. So please no SIGPIPEs! */
1343 signal(SIGPIPE, SIG_IGN);
1344
Denis Vlasenko4a457562007-10-14 02:34:20 +00001345 // We inconsistently handle a case when more POSTDATA from network
1346 // is coming than we expected. We may give *some part* of that
1347 // extra data to CGI.
1348
1349 //if (hdr_cnt > post_len) {
1350 // /* We got more POSTDATA from network than we expected */
1351 // hdr_cnt = post_len;
1352 //}
1353 post_len -= hdr_cnt;
1354 /* post_len - number of POST bytes not yet read from network */
1355
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001356 /* NB: breaking out of this loop jumps to log_and_exit() */
1357 out_cnt = 0;
Denys Vlasenkoa6ed6a32013-09-18 12:08:41 +02001358 pfd[FROM_CGI].fd = fromCgi_rd;
1359 pfd[FROM_CGI].events = POLLIN;
1360 pfd[TO_CGI].fd = toCgi_wr;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001361 while (1) {
Denys Vlasenkofbe250d2013-09-11 14:59:21 +02001362 /* Note: even pfd[0].events == 0 won't prevent
1363 * revents == POLLHUP|POLLERR reports from closed stdin.
Denys Vlasenkoa6ed6a32013-09-18 12:08:41 +02001364 * Setting fd to -1 works: */
Denys Vlasenkofbe250d2013-09-11 14:59:21 +02001365 pfd[0].fd = -1;
Denys Vlasenkoa6ed6a32013-09-18 12:08:41 +02001366 pfd[0].events = POLLIN;
1367 pfd[0].revents = 0; /* probably not needed, paranoia */
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001368
Denys Vlasenkoa6ed6a32013-09-18 12:08:41 +02001369 /* We always poll this fd, thus kernel always sets revents: */
1370 /*pfd[FROM_CGI].events = POLLIN; - moved out of loop */
1371 /*pfd[FROM_CGI].revents = 0; - not needed */
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001372
Denys Vlasenkoa6ed6a32013-09-18 12:08:41 +02001373 /* gcc-4.8.0 still doesnt fill two shorts with one insn :( */
1374 /* http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47059 */
1375 /* hopefully one day it will... */
Denys Vlasenkofbe250d2013-09-11 14:59:21 +02001376 pfd[TO_CGI].events = POLLOUT;
Denys Vlasenkoa6ed6a32013-09-18 12:08:41 +02001377 pfd[TO_CGI].revents = 0; /* needed! */
Denys Vlasenkofbe250d2013-09-11 14:59:21 +02001378
1379 if (toCgi_wr && hdr_cnt <= 0) {
1380 if (post_len > 0) {
1381 /* Expect more POST data from network */
1382 pfd[0].fd = 0;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001383 } else {
1384 /* post_len <= 0 && hdr_cnt <= 0:
1385 * no more POST data to CGI,
1386 * let CGI see EOF on CGI's stdin */
Denys Vlasenko8fc9e6a2010-04-02 10:40:58 +02001387 if (toCgi_wr != fromCgi_rd)
1388 close(toCgi_wr);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001389 toCgi_wr = 0;
1390 }
1391 }
1392
1393 /* Now wait on the set of sockets */
Denys Vlasenkofbe250d2013-09-11 14:59:21 +02001394 count = safe_poll(pfd, hdr_cnt > 0 ? TO_CGI+1 : FROM_CGI+1, -1);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001395 if (count <= 0) {
1396#if 0
Denis Vlasenkofb0eba72008-01-02 19:55:04 +00001397 if (safe_waitpid(pid, &status, WNOHANG) <= 0) {
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001398 /* Weird. CGI didn't exit and no fd's
1399 * are ready, yet poll returned?! */
1400 continue;
1401 }
1402 if (DEBUG && WIFEXITED(status))
Denys Vlasenko9fe8bd82018-04-07 01:13:30 +02001403 bb_error_msg("CGI exited, status=%u", WEXITSTATUS(status));
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001404 if (DEBUG && WIFSIGNALED(status))
Denys Vlasenko9fe8bd82018-04-07 01:13:30 +02001405 bb_error_msg("CGI killed, signal=%u", WTERMSIG(status));
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001406#endif
1407 break;
1408 }
1409
Denys Vlasenko88aa5582010-03-02 15:02:45 +01001410 if (pfd[TO_CGI].revents) {
Denys Vlasenkofbe250d2013-09-11 14:59:21 +02001411 /* hdr_cnt > 0 here due to the way poll() called */
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001412 /* Have data from peer and can write to CGI */
1413 count = safe_write(toCgi_wr, hdr_ptr, hdr_cnt);
1414 /* Doesn't happen, we dont use nonblocking IO here
1415 *if (count < 0 && errno == EAGAIN) {
1416 * ...
1417 *} else */
1418 if (count > 0) {
1419 hdr_ptr += count;
1420 hdr_cnt -= count;
1421 } else {
1422 /* EOF/broken pipe to CGI, stop piping POST data */
1423 hdr_cnt = post_len = 0;
1424 }
1425 }
1426
Denys Vlasenko88aa5582010-03-02 15:02:45 +01001427 if (pfd[0].revents) {
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001428 /* post_len > 0 && hdr_cnt == 0 here */
1429 /* We expect data, prev data portion is eaten by CGI
1430 * and there *is* data to read from the peer
1431 * (POSTDATA) */
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +02001432 //count = post_len > (int)sizeof_hdr_buf ? (int)sizeof_hdr_buf : post_len;
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001433 //count = safe_read(STDIN_FILENO, hdr_buf, count);
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +02001434 count = safe_read(STDIN_FILENO, hdr_buf, sizeof_hdr_buf);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001435 if (count > 0) {
1436 hdr_cnt = count;
1437 hdr_ptr = hdr_buf;
1438 post_len -= count;
1439 } else {
1440 /* no more POST data can be read */
1441 post_len = 0;
1442 }
1443 }
1444
Denys Vlasenko88aa5582010-03-02 15:02:45 +01001445 if (pfd[FROM_CGI].revents) {
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001446 /* There is something to read from CGI */
1447 char *rbuf = iobuf;
1448
1449 /* Are we still buffering CGI output? */
1450 if (out_cnt >= 0) {
1451 /* HTTP_200[] has single "\r\n" at the end.
1452 * According to http://hoohoo.ncsa.uiuc.edu/cgi/out.html,
1453 * CGI scripts MUST send their own header terminated by
1454 * empty line, then data. That's why we have only one
1455 * <cr><lf> pair here. We will output "200 OK" line
1456 * if needed, but CGI still has to provide blank line
1457 * between header and body */
1458
1459 /* Must use safe_read, not full_read, because
1460 * CGI may output a few first bytes and then wait
1461 * for POSTDATA without closing stdout.
1462 * With full_read we may wait here forever. */
Denys Vlasenko1c356942019-04-19 14:19:41 +02001463 count = safe_read(fromCgi_rd, rbuf + out_cnt, IOBUF_SIZE - 8);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001464 if (count <= 0) {
1465 /* eof (or error) and there was no "HTTP",
Sergey Ponomarevb414cdf2020-08-09 01:23:31 +03001466 * send "HTTP/1.1 200 OK\r\n", then send received data */
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001467 if (out_cnt) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001468 full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1);
1469 full_write(STDOUT_FILENO, rbuf, out_cnt);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001470 }
1471 break; /* CGI stdout is closed, exiting */
1472 }
1473 out_cnt += count;
1474 count = 0;
1475 /* "Status" header format is: "Status: 302 Redirected\r\n" */
Denys Vlasenko94aaf4b2017-09-01 17:06:12 +02001476 if (out_cnt >= 8 && memcmp(rbuf, "Status: ", 8) == 0) {
Sergey Ponomarevb414cdf2020-08-09 01:23:31 +03001477 /* send "HTTP/1.1 " */
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001478 if (full_write(STDOUT_FILENO, HTTP_200, 9) != 9)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001479 break;
Sergey Ponomarevb414cdf2020-08-09 01:23:31 +03001480 /* skip "Status: " (including space, sending "HTTP/1.1 NNN" is wrong) */
Denys Vlasenko94aaf4b2017-09-01 17:06:12 +02001481 rbuf += 8;
1482 count = out_cnt - 8;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001483 out_cnt = -1; /* buffering off */
1484 } else if (out_cnt >= 4) {
1485 /* Did CGI add "HTTP"? */
1486 if (memcmp(rbuf, HTTP_200, 4) != 0) {
1487 /* there is no "HTTP", do it ourself */
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001488 if (full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1) != sizeof(HTTP_200)-1)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001489 break;
1490 }
1491 /* Commented out:
1492 if (!strstr(rbuf, "ontent-")) {
1493 full_write(s, "Content-type: text/plain\r\n\r\n", 28);
1494 }
1495 * Counter-example of valid CGI without Content-type:
Sergey Ponomarevb414cdf2020-08-09 01:23:31 +03001496 * echo -en "HTTP/1.1 302 Found\r\n"
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001497 * echo -en "Location: http://www.busybox.net\r\n"
1498 * echo -en "\r\n"
1499 */
1500 count = out_cnt;
1501 out_cnt = -1; /* buffering off */
1502 }
1503 } else {
Denys Vlasenko1c356942019-04-19 14:19:41 +02001504 count = safe_read(fromCgi_rd, rbuf, IOBUF_SIZE);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001505 if (count <= 0)
1506 break; /* eof (or error) */
1507 }
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001508 if (full_write(STDOUT_FILENO, rbuf, count) != count)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001509 break;
1510 if (DEBUG)
1511 fprintf(stderr, "cgi read %d bytes: '%.*s'\n", count, count, rbuf);
1512 } /* if (pfd[FROM_CGI].revents) */
1513 } /* while (1) */
1514 log_and_exit();
1515}
Denis Vlasenkof74194e2007-10-18 12:54:39 +00001516#endif
1517
1518#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001519
Denis Vlasenko921799d2007-08-19 19:28:09 +00001520static void setenv1(const char *name, const char *value)
1521{
1522 setenv(name, value ? value : "", 1);
1523}
1524
Denis Vlasenko241b1562007-08-17 19:18:47 +00001525/*
1526 * Spawn CGI script, forward CGI's stdin/out <=> network
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001527 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001528 * Environment variables are set up and the script is invoked with pipes
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001529 * for stdin/stdout. If a POST is being done the script is fed the POST
Denis Vlasenko241b1562007-08-17 19:18:47 +00001530 * data in addition to setting the QUERY_STRING variable (for GETs or POSTs).
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001531 *
Denis Vlasenko241b1562007-08-17 19:18:47 +00001532 * Parameters:
1533 * const char *url The requested URL (with leading /).
Denys Vlasenko03419aa2011-12-19 12:30:34 +01001534 * const char *orig_uri The original URI before rewriting (if any)
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001535 * int post_len Length of the POST body.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001536 */
1537static void send_cgi_and_exit(
1538 const char *url,
Denys Vlasenko03419aa2011-12-19 12:30:34 +01001539 const char *orig_uri,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001540 const char *request,
Denys Vlasenkofba665a2019-04-16 11:37:02 +02001541 int post_len) NORETURN;
Denis Vlasenko241b1562007-08-17 19:18:47 +00001542static void send_cgi_and_exit(
1543 const char *url,
Denys Vlasenko03419aa2011-12-19 12:30:34 +01001544 const char *orig_uri,
Denis Vlasenko241b1562007-08-17 19:18:47 +00001545 const char *request,
Denys Vlasenkofba665a2019-04-16 11:37:02 +02001546 int post_len)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001547{
Denis Vlasenko37188322008-02-16 13:20:56 +00001548 struct fd_pair fromCgi; /* CGI -> httpd pipe */
1549 struct fd_pair toCgi; /* httpd -> CGI pipe */
Denys Vlasenkof85bd1a2011-12-18 03:22:36 +01001550 char *script, *last_slash;
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001551 int pid;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001552
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001553 /* Make a copy. NB: caller guarantees:
1554 * url[0] == '/', url[1] != '/' */
1555 url = xstrdup(url);
1556
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001557 /*
1558 * We are mucking with environment _first_ and then vfork/exec,
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001559 * this allows us to use vfork safely. Parent doesn't care about
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001560 * these environment changes anyway.
1561 */
1562
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001563 /* Check for [dirs/]script.cgi/PATH_INFO */
Denys Vlasenkof85bd1a2011-12-18 03:22:36 +01001564 last_slash = script = (char*)url;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001565 while ((script = strchr(script + 1, '/')) != NULL) {
Denys Vlasenkof85bd1a2011-12-18 03:22:36 +01001566 int dir;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001567 *script = '\0';
Denys Vlasenkof282c6b2011-12-18 03:27:46 +01001568 dir = is_directory(url + 1, /*followlinks:*/ 1);
Denys Vlasenkof85bd1a2011-12-18 03:22:36 +01001569 *script = '/';
1570 if (!dir) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001571 /* not directory, found script.cgi/PATH_INFO */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001572 break;
1573 }
Denys Vlasenkof85bd1a2011-12-18 03:22:36 +01001574 /* is directory, find next '/' */
1575 last_slash = script;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001576 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001577 setenv1("PATH_INFO", script); /* set to /PATH_INFO or "" */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001578 setenv1("REQUEST_METHOD", request);
1579 if (g_query) {
Denys Vlasenko03419aa2011-12-19 12:30:34 +01001580 putenv(xasprintf("%s=%s?%s", "REQUEST_URI", orig_uri, g_query));
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001581 } else {
Denys Vlasenko03419aa2011-12-19 12:30:34 +01001582 setenv1("REQUEST_URI", orig_uri);
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001583 }
1584 if (script != NULL)
1585 *script = '\0'; /* cut off /PATH_INFO */
1586
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001587 /* SCRIPT_FILENAME is required by PHP in CGI mode */
1588 if (home_httpd[0] == '/') {
1589 char *fullpath = concat_path_file(home_httpd, url);
1590 setenv1("SCRIPT_FILENAME", fullpath);
1591 }
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001592 /* set SCRIPT_NAME as full path: /cgi-bin/dirs/script.cgi */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001593 setenv1("SCRIPT_NAME", url);
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001594 /* http://hoohoo.ncsa.uiuc.edu/cgi/env.html:
1595 * QUERY_STRING: The information which follows the ? in the URL
1596 * which referenced this script. This is the query information.
1597 * It should not be decoded in any fashion. This variable
1598 * should always be set when there is query information,
1599 * regardless of command line decoding. */
1600 /* (Older versions of bbox seem to do some decoding) */
1601 setenv1("QUERY_STRING", g_query);
1602 putenv((char*)"SERVER_SOFTWARE=busybox httpd/"BB_VER);
Sergey Ponomarevb414cdf2020-08-09 01:23:31 +03001603 putenv((char*)"SERVER_PROTOCOL=HTTP/1.1");
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001604 putenv((char*)"GATEWAY_INTERFACE=CGI/1.1");
1605 /* Having _separate_ variables for IP and port defeats
1606 * the purpose of having socket abstraction. Which "port"
1607 * are you using on Unix domain socket?
1608 * IOW - REMOTE_PEER="1.2.3.4:56" makes much more sense.
1609 * Oh well... */
1610 {
1611 char *p = rmt_ip_str ? rmt_ip_str : (char*)"";
1612 char *cp = strrchr(p, ':');
1613 if (ENABLE_FEATURE_IPV6 && cp && strchr(cp, ']'))
1614 cp = NULL;
1615 if (cp) *cp = '\0'; /* delete :PORT */
1616 setenv1("REMOTE_ADDR", p);
Denis Vlasenko37c33162007-08-19 18:54:22 +00001617 if (cp) {
1618 *cp = ':';
1619#if ENABLE_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
1620 setenv1("REMOTE_PORT", cp + 1);
1621#endif
1622 }
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001623 }
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001624 if (post_len)
Denys Vlasenko9fe8bd82018-04-07 01:13:30 +02001625 putenv(xasprintf("CONTENT_LENGTH=%u", post_len));
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001626#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
1627 if (remoteuser) {
1628 setenv1("REMOTE_USER", remoteuser);
1629 putenv((char*)"AUTH_TYPE=Basic");
1630 }
1631#endif
Denis Vlasenkocbb4e612009-03-18 20:00:46 +00001632 /* setenv1("SERVER_NAME", safe_gethostname()); - don't do this,
1633 * just run "env SERVER_NAME=xyz httpd ..." instead */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001634
Denis Vlasenko37188322008-02-16 13:20:56 +00001635 xpiped_pair(fromCgi);
1636 xpiped_pair(toCgi);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001637
Denis Vlasenko80281fe2007-03-07 22:16:38 +00001638 pid = vfork();
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001639 if (pid < 0) {
1640 /* TODO: log perror? */
1641 log_and_exit();
1642 }
Denis Vlasenkof7996f32007-01-11 17:20:00 +00001643
Denys Vlasenkof85bd1a2011-12-18 03:22:36 +01001644 if (pid == 0) {
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001645 /* Child process */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001646 char *argv[3];
1647
Denis Vlasenko241b1562007-08-17 19:18:47 +00001648 xfunc_error_retval = 242;
1649
Denis Vlasenko284d0fa2008-02-16 13:18:17 +00001650 /* NB: close _first_, then move fds! */
1651 close(toCgi.wr);
1652 close(fromCgi.rd);
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001653 xmove_fd(toCgi.rd, 0); /* replace stdin with the pipe */
1654 xmove_fd(fromCgi.wr, 1); /* replace stdout with the pipe */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001655 /* User seeing stderr output can be a security problem.
Denis Vlasenko241b1562007-08-17 19:18:47 +00001656 * If CGI really wants that, it can always do dup itself. */
Denis Vlasenko1ec15cd2007-08-11 20:20:43 +00001657 /* dup2(1, 2); */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001658
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001659 /* Chdiring to script's dir */
Denys Vlasenkof85bd1a2011-12-18 03:22:36 +01001660 script = last_slash;
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001661 if (script != url) { /* paranoia */
1662 *script = '\0';
1663 if (chdir(url + 1) != 0) {
Pascal Bellard70fc8c12012-06-12 13:21:02 +02001664 bb_perror_msg("can't change directory to '%s'", url + 1);
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001665 goto error_execing_cgi;
1666 }
1667 // not needed: *script = '/';
1668 }
1669 script++;
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001670
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001671 /* set argv[0] to name without path */
1672 argv[0] = script;
1673 argv[1] = NULL;
Denis Vlasenkofc213052008-02-11 16:26:22 +00001674
1675#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001676 {
1677 char *suffix = strrchr(script, '.');
Denis Vlasenkofc213052008-02-11 16:26:22 +00001678
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001679 if (suffix) {
1680 Htaccess *cur;
1681 for (cur = script_i; cur; cur = cur->next) {
1682 if (strcmp(cur->before_colon + 1, suffix) == 0) {
1683 /* found interpreter name */
1684 argv[0] = cur->after_colon;
1685 argv[1] = script;
1686 argv[2] = NULL;
1687 break;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001688 }
1689 }
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001690 }
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001691 }
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001692#endif
1693 /* restore default signal dispositions for CGI process */
1694 bb_signals(0
1695 | (1 << SIGCHLD)
1696 | (1 << SIGPIPE)
1697 | (1 << SIGHUP)
1698 , SIG_DFL);
1699
1700 /* _NOT_ execvp. We do not search PATH. argv[0] is a filename
1701 * without any dir components and will only match a file
1702 * in the current directory */
1703 execv(argv[0], argv);
1704 if (verbose)
Denys Vlasenko31c3dad2010-06-27 16:57:55 +02001705 bb_perror_msg("can't execute '%s'", argv[0]);
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00001706 error_execing_cgi:
Denis Vlasenkoe45af732007-08-17 19:19:15 +00001707 /* send to stdout
1708 * (we are CGI here, our stdout is pumped to the net) */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001709 send_headers_and_exit(HTTP_NOT_FOUND);
Denis Vlasenkoa3ee69f2006-11-21 00:07:31 +00001710 } /* end child */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001711
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001712 /* Parent process */
1713
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001714 /* Restore variables possibly changed by child */
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001715 xfunc_error_retval = 0;
Denis Vlasenkob98c26a2007-08-17 19:21:12 +00001716
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001717 /* Pump data */
Denis Vlasenkoe5d37cc2007-08-11 20:20:02 +00001718 close(fromCgi.wr);
1719 close(toCgi.rd);
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001720 cgi_io_loop_and_exit(fromCgi.rd, toCgi.wr, post_len);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001721}
Denis Vlasenko32a471e2007-09-23 13:56:57 +00001722
Denis Vlasenkob3a07152006-11-16 18:04:43 +00001723#endif /* FEATURE_HTTPD_CGI */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001724
Denis Vlasenko241b1562007-08-17 19:18:47 +00001725/*
1726 * Send a file response to a HTTP request, and exit
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00001727 *
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001728 * Parameters:
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001729 * const char *url The requested URL (with leading /).
1730 * what What to send (headers/body/both).
Denis Vlasenko241b1562007-08-17 19:18:47 +00001731 */
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001732static NOINLINE void send_file_and_exit(const char *url, int what)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001733{
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001734 char *suffix;
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001735 int fd;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001736 ssize_t count;
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001737
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02001738 if (content_gzip) {
1739 /* does <url>.gz exist? Then use it instead */
1740 char *gzurl = xasprintf("%s.gz", url);
1741 fd = open(gzurl, O_RDONLY);
1742 free(gzurl);
1743 if (fd != -1) {
1744 struct stat sb;
1745 fstat(fd, &sb);
1746 file_size = sb.st_size;
Denys Vlasenko8030a142011-01-11 17:59:45 +01001747 last_mod = sb.st_mtime;
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02001748 } else {
1749 IF_FEATURE_HTTPD_GZIP(content_gzip = 0;)
1750 fd = open(url, O_RDONLY);
1751 }
1752 } else {
1753 fd = open(url, O_RDONLY);
Sergey Ponomarev4864a682020-08-15 23:52:48 +02001754 /* file_size and last_mod are already populated */
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02001755 }
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001756 if (fd < 0) {
1757 if (DEBUG)
1758 bb_perror_msg("can't open '%s'", url);
1759 /* Error pages are sent by using send_file_and_exit(SEND_BODY).
1760 * IOW: it is unsafe to call send_headers_and_exit
1761 * if what is SEND_BODY! Can recurse! */
1762 if (what != SEND_BODY)
1763 send_headers_and_exit(HTTP_NOT_FOUND);
1764 log_and_exit();
1765 }
Sergey Ponomarev4864a682020-08-15 23:52:48 +02001766#if ENABLE_FEATURE_HTTPD_ETAG
1767 /* ETag is "hex(last_mod)-hex(file_size)" e.g. "5e132e20-417" */
1768 sprintf(G.etag, "\"%llx-%llx\"", (unsigned long long)last_mod, (unsigned long long)file_size);
1769
1770 if (G.if_none_match) {
1771 if (DEBUG)
1772 bb_perror_msg("If-None-Match and file's ETag are: '%s' '%s'\n", G.if_none_match, G.etag);
1773 /* Weak ETag comparision.
1774 * If-None-Match may have many ETags but they are quoted so we can use simple substring search */
1775 if (strstr(G.if_none_match, G.etag))
1776 send_headers_and_exit(HTTP_NOT_MODIFIED);
1777 }
1778#endif
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001779 /* If you want to know about EPIPE below
1780 * (happens if you abort downloads from local httpd): */
1781 signal(SIGPIPE, SIG_IGN);
1782
Denys Vlasenko9fe8bd82018-04-07 01:13:30 +02001783 /* If not found, default is to not send "Content-type:" */
1784 /*found_mime_type = NULL; - already is */
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001785 suffix = strrchr(url, '.');
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001786 if (suffix) {
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001787 static const char suffixTable[] ALIGN1 =
1788 /* Shorter suffix must be first:
1789 * ".html.htm" will fail for ".htm"
1790 */
1791 ".txt.h.c.cc.cpp\0" "text/plain\0"
1792 /* .htm line must be after .h line */
1793 ".htm.html\0" "text/html\0"
1794 ".jpg.jpeg\0" "image/jpeg\0"
1795 ".gif\0" "image/gif\0"
1796 ".png\0" "image/png\0"
Vicente Jimenez Aguilar09b25ec2019-06-06 17:12:55 +02001797 ".svg\0" "image/svg+xml\0"
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001798 /* .css line must be after .c line */
1799 ".css\0" "text/css\0"
Denys Vlasenko1230aec2019-06-07 12:32:30 +02001800 ".js\0" "application/javascript\0"
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001801 ".wav\0" "audio/wav\0"
1802 ".avi\0" "video/x-msvideo\0"
1803 ".qt.mov\0" "video/quicktime\0"
1804 ".mpe.mpeg\0" "video/mpeg\0"
1805 ".mid.midi\0" "audio/midi\0"
1806 ".mp3\0" "audio/mpeg\0"
1807#if 0 /* unpopular */
1808 ".au\0" "audio/basic\0"
1809 ".pac\0" "application/x-ns-proxy-autoconfig\0"
1810 ".vrml.wrl\0" "model/vrml\0"
1811#endif
1812 /* compiler adds another "\0" here */
1813 ;
Denis Vlasenko073214f2007-08-17 19:20:07 +00001814 Htaccess *cur;
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001815
1816 /* Examine built-in table */
1817 const char *table = suffixTable;
1818 const char *table_next;
1819 for (; *table; table = table_next) {
1820 const char *try_suffix;
1821 const char *mime_type;
1822 mime_type = table + strlen(table) + 1;
1823 table_next = mime_type + strlen(mime_type) + 1;
1824 try_suffix = strstr(table, suffix);
1825 if (!try_suffix)
1826 continue;
1827 try_suffix += strlen(suffix);
1828 if (*try_suffix == '\0' || *try_suffix == '.') {
1829 found_mime_type = mime_type;
1830 break;
Denis Vlasenko073214f2007-08-17 19:20:07 +00001831 }
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001832 /* Example: strstr(table, ".av") != NULL, but it
1833 * does not match ".avi" after all and we end up here.
1834 * The table is arranged so that in this case we know
1835 * that it can't match anything in the following lines,
1836 * and we stop the search: */
1837 break;
Denis Vlasenko073214f2007-08-17 19:20:07 +00001838 }
Denys Vlasenko33d8d082009-09-10 01:46:02 +02001839 /* ...then user's table */
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001840 for (cur = mime_a; cur; cur = cur->next) {
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001841 if (strcmp(cur->before_colon, suffix) == 0) {
Denis Vlasenko77e44d62007-06-09 23:49:05 +00001842 found_mime_type = cur->after_colon;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001843 break;
1844 }
1845 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001846 }
Bernhard Reutner-Fischer62851172009-05-03 18:53:22 +02001847
1848 if (DEBUG)
1849 bb_error_msg("sending file '%s' content-type: %s",
1850 url, found_mime_type);
1851
Denis Vlasenkof4310172007-09-21 22:35:18 +00001852#if ENABLE_FEATURE_HTTPD_RANGES
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02001853 if (what == SEND_BODY /* err pages and ranges don't mix */
1854 || content_gzip /* we are sending compressed page: can't do ranges */ ///why?
1855 ) {
Denys Vlasenko8cce1b32012-02-19 17:18:45 +01001856 range_start = -1;
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02001857 }
Denis Vlasenkof4310172007-09-21 22:35:18 +00001858 range_len = MAXINT(off_t);
Denys Vlasenko8cce1b32012-02-19 17:18:45 +01001859 if (range_start >= 0) {
Rob Walker7a426932012-04-03 08:09:28 +02001860 if (!range_end || range_end > file_size - 1) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00001861 range_end = file_size - 1;
1862 }
1863 if (range_end < range_start
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001864 || lseek(fd, range_start, SEEK_SET) != range_start
Denis Vlasenkof4310172007-09-21 22:35:18 +00001865 ) {
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001866 lseek(fd, 0, SEEK_SET);
Denys Vlasenko8cce1b32012-02-19 17:18:45 +01001867 range_start = -1;
Denis Vlasenkof4310172007-09-21 22:35:18 +00001868 } else {
1869 range_len = range_end - range_start + 1;
1870 send_headers(HTTP_PARTIAL_CONTENT);
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001871 what = SEND_BODY;
Denis Vlasenkof4310172007-09-21 22:35:18 +00001872 }
1873 }
1874#endif
Denis Vlasenko2f518b02008-02-21 00:12:07 +00001875 if (what & SEND_HEADERS)
Denis Vlasenkoe58e8d92007-08-21 10:26:55 +00001876 send_headers(HTTP_OK);
Bartosz Golaszewski8d75d792014-11-27 13:20:24 +01001877#if ENABLE_FEATURE_USE_SENDFILE
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001878 {
Maxim Storchak04e0d8e2020-12-29 17:29:05 +02001879 off_t offset = (range_start < 0) ? 0 : range_start;
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001880 while (1) {
1881 /* sz is rounded down to 64k */
1882 ssize_t sz = MAXINT(ssize_t) - 0xffff;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001883 IF_FEATURE_HTTPD_RANGES(if (sz > range_len) sz = range_len;)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001884 count = sendfile(STDOUT_FILENO, fd, &offset, sz);
1885 if (count < 0) {
1886 if (offset == range_start)
1887 break; /* fall back to read/write loop */
1888 goto fin;
1889 }
Denys Vlasenkoef43bea2012-02-04 21:37:17 +01001890 IF_FEATURE_HTTPD_RANGES(range_len -= count;)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001891 if (count == 0 || range_len == 0)
1892 log_and_exit();
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001893 }
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001894 }
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001895#endif
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001896 while ((count = safe_read(fd, iobuf, IOBUF_SIZE)) > 0) {
Denis Vlasenkof4310172007-09-21 22:35:18 +00001897 ssize_t n;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001898 IF_FEATURE_HTTPD_RANGES(if (count > range_len) count = range_len;)
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001899 n = full_write(STDOUT_FILENO, iobuf, count);
Denis Vlasenko241b1562007-08-17 19:18:47 +00001900 if (count != n)
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001901 break;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001902 IF_FEATURE_HTTPD_RANGES(range_len -= count;)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001903 if (range_len == 0)
Denis Vlasenkof4310172007-09-21 22:35:18 +00001904 break;
Denis Vlasenko1b9064d2007-08-12 21:05:49 +00001905 }
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001906 if (count < 0) {
Bartosz Golaszewski8d75d792014-11-27 13:20:24 +01001907 IF_FEATURE_USE_SENDFILE(fin:)
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001908 if (verbose > 1)
James Byrne69374872019-07-02 11:35:03 +02001909 bb_simple_perror_msg("error");
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00001910 }
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001911 log_and_exit();
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001912}
1913
Sergey Ponomareva9493992020-08-16 14:58:31 +02001914#if ENABLE_FEATURE_HTTPD_ACL_IP
Denys Vlasenko62ba9e52019-04-16 13:18:12 +02001915static void if_ip_denied_send_HTTP_FORBIDDEN_and_exit(unsigned remote_ip)
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001916{
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00001917 Htaccess_IP *cur;
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001918
Sergey Ponomareva9493992020-08-16 14:58:31 +02001919 for (cur = G.ip_a_d; cur; cur = cur->next) {
Denis Vlasenkob64eed62007-01-14 17:06:11 +00001920#if DEBUG
Denis Vlasenko384b1d12007-08-14 16:55:01 +00001921 fprintf(stderr,
1922 "checkPermIP: '%s' ? '%u.%u.%u.%u/%u.%u.%u.%u'\n",
1923 rmt_ip_str,
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00001924 (unsigned char)(cur->ip >> 24),
1925 (unsigned char)(cur->ip >> 16),
1926 (unsigned char)(cur->ip >> 8),
1927 (unsigned char)(cur->ip),
1928 (unsigned char)(cur->mask >> 24),
1929 (unsigned char)(cur->mask >> 16),
1930 (unsigned char)(cur->mask >> 8),
1931 (unsigned char)(cur->mask)
1932 );
Denis Vlasenko3bba5452006-12-30 17:57:03 +00001933#endif
Denys Vlasenko62ba9e52019-04-16 13:18:12 +02001934 if ((remote_ip & cur->mask) == cur->ip) {
Denys Vlasenko51792e12019-04-14 19:57:13 +02001935 if (cur->allow_deny == 'A')
1936 return;
1937 send_headers_and_exit(HTTP_FORBIDDEN);
Denys Vlasenkoff36bec2019-04-16 10:14:50 +02001938 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00001939 }
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001940
Denys Vlasenko51792e12019-04-14 19:57:13 +02001941 if (flg_deny_all) /* depends on whether we saw "D:*" */
1942 send_headers_and_exit(HTTP_FORBIDDEN);
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001943}
Sergey Ponomareva9493992020-08-16 14:58:31 +02001944#else
1945# define if_ip_denied_send_HTTP_FORBIDDEN_and_exit(arg) ((void)0)
1946#endif
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001947
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00001948#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Pascal Bellard72917552011-11-29 13:51:11 +01001949
Denys Vlasenko8cab6672012-04-20 14:48:00 +02001950# if ENABLE_PAM
Pascal Bellard72917552011-11-29 13:51:11 +01001951struct pam_userinfo {
1952 const char *name;
1953 const char *pw;
1954};
1955
1956static int pam_talker(int num_msg,
1957 const struct pam_message **msg,
1958 struct pam_response **resp,
1959 void *appdata_ptr)
1960{
1961 int i;
1962 struct pam_userinfo *userinfo = (struct pam_userinfo *) appdata_ptr;
1963 struct pam_response *response;
1964
1965 if (!resp || !msg || !userinfo)
1966 return PAM_CONV_ERR;
1967
1968 /* allocate memory to store response */
1969 response = xzalloc(num_msg * sizeof(*response));
1970
1971 /* copy values */
1972 for (i = 0; i < num_msg; i++) {
1973 const char *s;
1974
1975 switch (msg[i]->msg_style) {
1976 case PAM_PROMPT_ECHO_ON:
1977 s = userinfo->name;
1978 break;
1979 case PAM_PROMPT_ECHO_OFF:
1980 s = userinfo->pw;
1981 break;
Denys Vlasenko69675782013-01-14 01:34:48 +01001982 case PAM_ERROR_MSG:
Denys Vlasenko982e87f2013-07-30 11:52:58 +02001983 case PAM_TEXT_INFO:
1984 s = "";
Pascal Bellard72917552011-11-29 13:51:11 +01001985 break;
1986 default:
1987 free(response);
1988 return PAM_CONV_ERR;
1989 }
1990 response[i].resp = xstrdup(s);
1991 if (PAM_SUCCESS != 0)
1992 response[i].resp_retcode = PAM_SUCCESS;
1993 }
1994 *resp = response;
1995 return PAM_SUCCESS;
1996}
1997# endif
1998
Denis Vlasenko073214f2007-08-17 19:20:07 +00001999/*
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002000 * Config file entries are of the form "/<path>:<user>:<passwd>".
2001 * If config file has no prefix match for path, access is allowed.
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002002 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002003 * path The file path
2004 * user_and_passwd "user:passwd" to validate
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002005 *
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002006 * Returns 1 if user_and_passwd is OK.
Denis Vlasenko073214f2007-08-17 19:20:07 +00002007 */
Pascal Bellard72917552011-11-29 13:51:11 +01002008static int check_user_passwd(const char *path, char *user_and_passwd)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002009{
Denis Vlasenko073214f2007-08-17 19:20:07 +00002010 Htaccess *cur;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002011 const char *prev = NULL;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002012
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002013 for (cur = g_auth; cur; cur = cur->next) {
Denis Vlasenko25b46302008-06-13 09:55:13 +00002014 const char *dir_prefix;
2015 size_t len;
Pascal Bellard72917552011-11-29 13:51:11 +01002016 int r;
Denis Vlasenkob3a07152006-11-16 18:04:43 +00002017
Denis Vlasenko25b46302008-06-13 09:55:13 +00002018 dir_prefix = cur->before_colon;
2019
2020 /* WHY? */
2021 /* If already saw a match, don't accept other different matches */
2022 if (prev && strcmp(prev, dir_prefix) != 0)
2023 continue;
2024
Denis Vlasenkob3a07152006-11-16 18:04:43 +00002025 if (DEBUG)
Denis Vlasenko25b46302008-06-13 09:55:13 +00002026 fprintf(stderr, "checkPerm: '%s' ? '%s'\n", dir_prefix, user_and_passwd);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002027
Denis Vlasenko25b46302008-06-13 09:55:13 +00002028 /* If it's not a prefix match, continue searching */
2029 len = strlen(dir_prefix);
2030 if (len != 1 /* dir_prefix "/" matches all, don't need to check */
2031 && (strncmp(dir_prefix, path, len) != 0
Pascal Bellard72917552011-11-29 13:51:11 +01002032 || (path[len] != '/' && path[len] != '\0')
2033 )
Denis Vlasenkob3a07152006-11-16 18:04:43 +00002034 ) {
Denis Vlasenko25b46302008-06-13 09:55:13 +00002035 continue;
2036 }
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00002037
Denis Vlasenko25b46302008-06-13 09:55:13 +00002038 /* Path match found */
2039 prev = dir_prefix;
Eric Andersen35e643b2003-07-28 07:40:39 +00002040
Denis Vlasenko25b46302008-06-13 09:55:13 +00002041 if (ENABLE_FEATURE_HTTPD_AUTH_MD5) {
Pascal Bellard72917552011-11-29 13:51:11 +01002042 char *colon_after_user;
2043 const char *passwd;
Pascal Bellard0fa3e5f2011-11-29 20:54:30 +01002044# if ENABLE_FEATURE_SHADOWPASSWDS && !ENABLE_PAM
2045 char sp_buf[256];
2046# endif
Denis Vlasenko25b46302008-06-13 09:55:13 +00002047
Pascal Bellard72917552011-11-29 13:51:11 +01002048 colon_after_user = strchr(user_and_passwd, ':');
2049 if (!colon_after_user)
2050 goto bad_input;
Denys Vlasenko35def512012-02-01 02:42:54 +01002051
2052 /* compare "user:" */
2053 if (cur->after_colon[0] != '*'
2054 && strncmp(cur->after_colon, user_and_passwd,
2055 colon_after_user - user_and_passwd + 1) != 0
2056 ) {
2057 continue;
2058 }
2059 /* this cfg entry is '*' or matches username from peer */
2060
Pascal Bellard72917552011-11-29 13:51:11 +01002061 passwd = strchr(cur->after_colon, ':');
2062 if (!passwd)
2063 goto bad_input;
2064 passwd++;
2065 if (passwd[0] == '*') {
2066# if ENABLE_PAM
2067 struct pam_userinfo userinfo;
2068 struct pam_conv conv_info = { &pam_talker, (void *) &userinfo };
2069 pam_handle_t *pamh;
Denis Vlasenko25b46302008-06-13 09:55:13 +00002070
Pascal Bellard72917552011-11-29 13:51:11 +01002071 *colon_after_user = '\0';
2072 userinfo.name = user_and_passwd;
2073 userinfo.pw = colon_after_user + 1;
Pascal Bellard0fa3e5f2011-11-29 20:54:30 +01002074 r = pam_start("httpd", user_and_passwd, &conv_info, &pamh) != PAM_SUCCESS;
2075 if (r == 0) {
2076 r = pam_authenticate(pamh, PAM_DISALLOW_NULL_AUTHTOK) != PAM_SUCCESS
2077 || pam_acct_mgmt(pamh, PAM_DISALLOW_NULL_AUTHTOK) != PAM_SUCCESS
2078 ;
2079 pam_end(pamh, PAM_SUCCESS);
2080 }
Pascal Bellard72917552011-11-29 13:51:11 +01002081 *colon_after_user = ':';
2082 goto end_check_passwd;
2083# else
2084# if ENABLE_FEATURE_SHADOWPASSWDS
2085 /* Using _r function to avoid pulling in static buffers */
2086 struct spwd spw;
Pascal Bellard72917552011-11-29 13:51:11 +01002087# endif
2088 struct passwd *pw;
Denis Vlasenkob3a07152006-11-16 18:04:43 +00002089
Pascal Bellard72917552011-11-29 13:51:11 +01002090 *colon_after_user = '\0';
2091 pw = getpwnam(user_and_passwd);
2092 *colon_after_user = ':';
2093 if (!pw || !pw->pw_passwd)
2094 continue;
2095 passwd = pw->pw_passwd;
2096# if ENABLE_FEATURE_SHADOWPASSWDS
2097 if ((passwd[0] == 'x' || passwd[0] == '*') && !passwd[1]) {
2098 /* getspnam_r may return 0 yet set result to NULL.
2099 * At least glibc 2.4 does this. Be extra paranoid here. */
2100 struct spwd *result = NULL;
Pascal Bellard0fa3e5f2011-11-29 20:54:30 +01002101 r = getspnam_r(pw->pw_name, &spw, sp_buf, sizeof(sp_buf), &result);
Pascal Bellard72917552011-11-29 13:51:11 +01002102 if (r == 0 && result)
2103 passwd = result->sp_pwdp;
2104 }
2105# endif
Denys Vlasenko35def512012-02-01 02:42:54 +01002106 /* In this case, passwd is ALWAYS encrypted:
2107 * it came from /etc/passwd or /etc/shadow!
2108 */
2109 goto check_encrypted;
Pascal Bellard72917552011-11-29 13:51:11 +01002110# endif /* ENABLE_PAM */
2111 }
Denys Vlasenko35def512012-02-01 02:42:54 +01002112 /* Else: passwd is from httpd.conf, it is either plaintext or encrypted */
Pascal Bellard72917552011-11-29 13:51:11 +01002113
Denys Vlasenko35def512012-02-01 02:42:54 +01002114 if (passwd[0] == '$' && isdigit(passwd[1])) {
2115 char *encrypted;
Denys Vlasenko8cab6672012-04-20 14:48:00 +02002116# if !ENABLE_PAM
Denys Vlasenko35def512012-02-01 02:42:54 +01002117 check_encrypted:
Denys Vlasenko8cab6672012-04-20 14:48:00 +02002118# endif
Denys Vlasenko35def512012-02-01 02:42:54 +01002119 /* encrypt pwd from peer and check match with local one */
2120 encrypted = pw_encrypt(
2121 /* pwd (from peer): */ colon_after_user + 1,
Pascal Bellard72917552011-11-29 13:51:11 +01002122 /* salt: */ passwd,
2123 /* cleanup: */ 0
2124 );
2125 r = strcmp(encrypted, passwd);
2126 free(encrypted);
Denys Vlasenko35def512012-02-01 02:42:54 +01002127 } else {
2128 /* local passwd is from httpd.conf and it's plaintext */
2129 r = strcmp(colon_after_user + 1, passwd);
Pascal Bellard72917552011-11-29 13:51:11 +01002130 }
Denys Vlasenko35def512012-02-01 02:42:54 +01002131 goto end_check_passwd;
Denis Vlasenko25b46302008-06-13 09:55:13 +00002132 }
Denys Vlasenko35def512012-02-01 02:42:54 +01002133 bad_input:
Denis Vlasenko25b46302008-06-13 09:55:13 +00002134 /* Comparing plaintext "user:pass" in one go */
Pascal Bellard72917552011-11-29 13:51:11 +01002135 r = strcmp(cur->after_colon, user_and_passwd);
2136 end_check_passwd:
2137 if (r == 0) {
Denis Vlasenko25b46302008-06-13 09:55:13 +00002138 remoteuser = xstrndup(user_and_passwd,
Pascal Bellard72917552011-11-29 13:51:11 +01002139 strchrnul(user_and_passwd, ':') - user_and_passwd
2140 );
Denis Vlasenko25b46302008-06-13 09:55:13 +00002141 return 1; /* Ok */
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00002142 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002143 } /* for */
Glenn L McGrath06e95652003-02-09 06:51:14 +00002144
Denis Vlasenko25b46302008-06-13 09:55:13 +00002145 /* 0(bad) if prev is set: matches were found but passwd was wrong */
2146 return (prev == NULL);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002147}
Denis Vlasenkob3a07152006-11-16 18:04:43 +00002148#endif /* FEATURE_HTTPD_BASIC_AUTH */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00002149
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002150#if ENABLE_FEATURE_HTTPD_PROXY
2151static Htaccess_Proxy *find_proxy_entry(const char *url)
2152{
2153 Htaccess_Proxy *p;
2154 for (p = proxy; p; p = p->next) {
Denys Vlasenko8dff01d2015-03-12 17:48:34 +01002155 if (is_prefixed_with(url, p->url_from))
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002156 return p;
2157 }
2158 return NULL;
2159}
2160#endif
2161
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002162/*
2163 * Handle timeouts
2164 */
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00002165static void send_REQUEST_TIMEOUT_and_exit(int sig) NORETURN;
2166static void send_REQUEST_TIMEOUT_and_exit(int sig UNUSED_PARAM)
Eric Andersen07f2fea2004-10-08 08:03:29 +00002167{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002168 send_headers_and_exit(HTTP_REQUEST_TIMEOUT);
Eric Andersen07f2fea2004-10-08 08:03:29 +00002169}
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002170
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002171/*
2172 * Handle an incoming http request and exit.
2173 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002174static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr) NORETURN;
Denis Vlasenko367960b2007-08-18 14:20:21 +00002175static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002176{
Denis Vlasenko073214f2007-08-17 19:20:07 +00002177 static const char request_GET[] ALIGN1 = "GET";
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002178 struct stat sb;
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002179 char *urlcopy;
2180 char *urlp;
2181 char *tptr;
Sergey Ponomareva9493992020-08-16 14:58:31 +02002182#if ENABLE_FEATURE_HTTPD_ACL_IP
Denys Vlasenko62ba9e52019-04-16 13:18:12 +02002183 unsigned remote_ip;
Sergey Ponomareva9493992020-08-16 14:58:31 +02002184#endif
Denys Vlasenko62ba9e52019-04-16 13:18:12 +02002185#if ENABLE_FEATURE_HTTPD_CGI
2186 unsigned total_headers_len;
2187#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002188#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002189 static const char request_HEAD[] ALIGN1 = "HEAD";
Denis Vlasenko073214f2007-08-17 19:20:07 +00002190 const char *prequest;
Denis Vlasenko0bb993f2006-11-21 00:06:28 +00002191 unsigned long length = 0;
Denys Vlasenkofba665a2019-04-16 11:37:02 +02002192 enum CGI_type cgi_type = CGI_NONE;
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002193#elif ENABLE_FEATURE_HTTPD_PROXY
2194#define prequest request_GET
2195 unsigned long length = 0;
2196#endif
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002197#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
2198 smallint authorized = -1;
2199#endif
Denys Vlasenkoc69f6482019-04-16 12:45:26 +02002200 char *HTTP_slash;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002201
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00002202 /* Allocation of iobuf is postponed until now
2203 * (IOW, server process doesn't need to waste 8k) */
Denis Vlasenko921799d2007-08-19 19:28:09 +00002204 iobuf = xmalloc(IOBUF_SIZE);
Denis Vlasenkod6cd9d72007-08-18 14:22:09 +00002205
Denis Vlasenko367960b2007-08-18 14:20:21 +00002206 if (ENABLE_FEATURE_HTTPD_CGI || DEBUG || verbose) {
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00002207 /* NB: can be NULL (user runs httpd -i by hand?) */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002208 rmt_ip_str = xmalloc_sockaddr2dotted(&fromAddr->u.sa);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002209 }
2210 if (verbose) {
2211 /* this trick makes -v logging much simpler */
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00002212 if (rmt_ip_str)
2213 applet_name = rmt_ip_str;
Denis Vlasenko367960b2007-08-18 14:20:21 +00002214 if (verbose > 2)
James Byrne69374872019-07-02 11:35:03 +02002215 bb_simple_error_msg("connected");
Denis Vlasenko367960b2007-08-18 14:20:21 +00002216 }
Sergey Ponomareva9493992020-08-16 14:58:31 +02002217#if ENABLE_FEATURE_HTTPD_ACL_IP
2218 remote_ip = 0;
2219 if (fromAddr->u.sa.sa_family == AF_INET) {
2220 remote_ip = ntohl(fromAddr->u.sin.sin_addr.s_addr);
2221 }
2222# if ENABLE_FEATURE_IPV6
2223 if (fromAddr->u.sa.sa_family == AF_INET6
2224 && fromAddr->u.sin6.sin6_addr.s6_addr32[0] == 0
2225 && fromAddr->u.sin6.sin6_addr.s6_addr32[1] == 0
2226 && ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[2]) == 0xffff)
2227 remote_ip = ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[3]);
2228# endif
Denys Vlasenko62ba9e52019-04-16 13:18:12 +02002229 if_ip_denied_send_HTTP_FORBIDDEN_and_exit(remote_ip);
Sergey Ponomareva9493992020-08-16 14:58:31 +02002230#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00002231
Denis Vlasenko2ca84f62009-02-05 12:38:21 +00002232 /* Install timeout handler. get_line() needs it. */
2233 signal(SIGALRM, send_REQUEST_TIMEOUT_and_exit);
Eric Andersen07f2fea2004-10-08 08:03:29 +00002234
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002235 if (!get_line()) /* EOF or error or empty line */
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00002236 send_headers_and_exit(HTTP_BAD_REQUEST);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002237
Denis Vlasenko073214f2007-08-17 19:20:07 +00002238 /* Determine type of request (GET/POST) */
Denys Vlasenko85daa672013-03-25 23:27:00 +01002239 // rfc2616: method and URI is separated by exactly one space
2240 //urlp = strpbrk(iobuf, " \t"); - no, tab isn't allowed
2241 urlp = strchr(iobuf, ' ');
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002242 if (urlp == NULL)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002243 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002244 *urlp++ = '\0';
Denis Vlasenko55a99402006-09-30 20:41:44 +00002245#if ENABLE_FEATURE_HTTPD_CGI
Denis Vlasenko073214f2007-08-17 19:20:07 +00002246 prequest = request_GET;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002247 if (strcasecmp(iobuf, prequest) != 0) {
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002248 prequest = request_HEAD;
2249 if (strcasecmp(iobuf, prequest) != 0) {
2250 prequest = "POST";
2251 if (strcasecmp(iobuf, prequest) != 0)
2252 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
2253 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002254 }
2255#else
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002256 if (strcasecmp(iobuf, request_GET) != 0)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002257 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002258#endif
Denys Vlasenko85daa672013-03-25 23:27:00 +01002259 // rfc2616: method and URI is separated by exactly one space
2260 //urlp = skip_whitespace(urlp); - should not be necessary
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002261 if (urlp[0] != '/')
2262 send_headers_and_exit(HTTP_BAD_REQUEST);
2263
Denys Vlasenkoad29ba72019-04-19 13:59:58 +02002264 /* Find end of URL */
2265 HTTP_slash = strchr(urlp, ' ');
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002266 /* Is it " HTTP/"? */
Denys Vlasenkoad29ba72019-04-19 13:59:58 +02002267 if (!HTTP_slash || strncmp(HTTP_slash + 1, HTTP_200, 5) != 0)
2268 send_headers_and_exit(HTTP_BAD_REQUEST);
2269 *HTTP_slash++ = '\0';
Glenn L McGrath06e95652003-02-09 06:51:14 +00002270
Denis Vlasenko073214f2007-08-17 19:20:07 +00002271 /* Copy URL from after "GET "/"POST " to stack-allocated char[] */
Denys Vlasenkoc69f6482019-04-16 12:45:26 +02002272 urlcopy = alloca((HTTP_slash - urlp) + 2 + strlen(index_page));
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002273 /*if (urlcopy == NULL)
2274 * send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);*/
2275 strcpy(urlcopy, urlp);
2276 /* NB: urlcopy ptr is never changed after this */
Denis Vlasenko073214f2007-08-17 19:20:07 +00002277
Denys Vlasenkobae8f7e2019-04-16 10:00:06 +02002278#if ENABLE_FEATURE_HTTPD_PROXY
Denys Vlasenkobae8f7e2019-04-16 10:00:06 +02002279 {
Denys Vlasenkoc69f6482019-04-16 12:45:26 +02002280 int proxy_fd;
2281 len_and_sockaddr *lsa;
2282 Htaccess_Proxy *proxy_entry = find_proxy_entry(urlcopy);
2283
2284 if (proxy_entry) {
Denys Vlasenkoad29ba72019-04-19 13:59:58 +02002285 if (verbose > 1)
2286 bb_error_msg("proxy:%s", urlcopy);
Denys Vlasenkoc69f6482019-04-16 12:45:26 +02002287 lsa = host2sockaddr(proxy_entry->host_port, 80);
2288 if (!lsa)
2289 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2290 proxy_fd = socket(lsa->u.sa.sa_family, SOCK_STREAM, 0);
2291 if (proxy_fd < 0)
2292 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
2293 if (connect(proxy_fd, &lsa->u.sa, lsa->len) < 0)
2294 send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);
Denys Vlasenkoe49a5722019-04-19 14:24:57 +02002295 /* Disable peer header reading timeout */
2296 alarm(0);
Denys Vlasenkoc69f6482019-04-16 12:45:26 +02002297 /* Config directive was of the form:
2298 * P:/url:[http://]hostname[:port]/new/path
2299 * When /urlSFX is requested, reverse proxy it
2300 * to http://hostname[:port]/new/pathSFX
2301 */
Denys Vlasenko2efa7262019-04-16 13:35:56 +02002302 fdprintf(proxy_fd, "%s %s%s %s\r\n",
Denys Vlasenkoc69f6482019-04-16 12:45:26 +02002303 prequest, /* "GET" or "POST" */
2304 proxy_entry->url_to, /* "/new/path" */
2305 urlcopy + strlen(proxy_entry->url_from), /* "SFX" */
Denys Vlasenkoad29ba72019-04-19 13:59:58 +02002306 HTTP_slash /* "HTTP/xyz" */
Denys Vlasenkoc69f6482019-04-16 12:45:26 +02002307 );
2308 cgi_io_loop_and_exit(proxy_fd, proxy_fd, /*max POST length:*/ INT_MAX);
Denys Vlasenkobae8f7e2019-04-16 10:00:06 +02002309 }
Denys Vlasenkoc69f6482019-04-16 12:45:26 +02002310 }
2311#endif
2312
Denys Vlasenko2efa7262019-04-16 13:35:56 +02002313 /* Extract url args if present */
2314 g_query = strchr(urlcopy, '?');
2315 if (g_query)
2316 *g_query++ = '\0';
2317
Denys Vlasenkoc69f6482019-04-16 12:45:26 +02002318 /* Decode URL escape sequences */
2319 tptr = percent_decode_in_place(urlcopy, /*strict:*/ 1);
2320 if (tptr == NULL)
2321 send_headers_and_exit(HTTP_BAD_REQUEST);
2322 if (tptr == urlcopy + 1) {
2323 /* '/' or NUL is encoded */
2324 send_headers_and_exit(HTTP_NOT_FOUND);
Denys Vlasenkobae8f7e2019-04-16 10:00:06 +02002325 }
2326
Denis Vlasenko073214f2007-08-17 19:20:07 +00002327 /* Canonicalize path */
2328 /* Algorithm stolen from libbb bb_simplify_path(),
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00002329 * but don't strdup, retain trailing slash, protect root */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002330 urlp = tptr = urlcopy;
Denys Vlasenkob05cd6b2011-12-16 01:37:02 +01002331 for (;;) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002332 if (*urlp == '/') {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002333 /* skip duplicate (or initial) slash */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002334 if (*tptr == '/') {
Denys Vlasenkob05cd6b2011-12-16 01:37:02 +01002335 goto next_char;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002336 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002337 if (*tptr == '.') {
Denys Vlasenkob05cd6b2011-12-16 01:37:02 +01002338 if (tptr[1] == '.' && (tptr[2] == '/' || tptr[2] == '\0')) {
2339 /* "..": be careful */
2340 /* protect root */
2341 if (urlp == urlcopy)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002342 send_headers_and_exit(HTTP_BAD_REQUEST);
Denys Vlasenkob05cd6b2011-12-16 01:37:02 +01002343 /* omit previous dir */
2344 while (*--urlp != '/')
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002345 continue;
Denys Vlasenkob05cd6b2011-12-16 01:37:02 +01002346 /* skip to "./" or ".<NUL>" */
2347 tptr++;
2348 }
2349 if (tptr[1] == '/' || tptr[1] == '\0') {
2350 /* skip extra "/./" */
2351 goto next_char;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002352 }
2353 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002354 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002355 *++urlp = *tptr;
Denys Vlasenkobae8f7e2019-04-16 10:00:06 +02002356 if (*tptr == '\0')
Denys Vlasenkob05cd6b2011-12-16 01:37:02 +01002357 break;
2358 next_char:
2359 tptr++;
2360 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002361
Denis Vlasenko073214f2007-08-17 19:20:07 +00002362 /* If URL is a directory, add '/' */
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00002363 if (urlp[-1] != '/') {
Denys Vlasenkof282c6b2011-12-18 03:27:46 +01002364 if (is_directory(urlcopy + 1, /*followlinks:*/ 1)) {
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002365 found_moved_temporarily = urlcopy;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002366 }
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002367 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002368
Denis Vlasenko073214f2007-08-17 19:20:07 +00002369 /* Log it */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002370 if (verbose > 1)
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002371 bb_error_msg("url:%s", urlcopy);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002372
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002373 tptr = urlcopy;
Denys Vlasenko51792e12019-04-14 19:57:13 +02002374 while ((tptr = strchr(tptr + 1, '/')) != NULL) {
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002375 /* have path1/path2 */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002376 *tptr = '\0';
Denys Vlasenkof282c6b2011-12-18 03:27:46 +01002377 if (is_directory(urlcopy + 1, /*followlinks:*/ 1)) {
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002378 /* may have subdir config */
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002379 parse_conf(urlcopy + 1, SUBDIR_PARSE);
Denys Vlasenko62ba9e52019-04-16 13:18:12 +02002380 if_ip_denied_send_HTTP_FORBIDDEN_and_exit(remote_ip);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002381 }
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002382 *tptr = '/';
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002383 }
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002384
Denys Vlasenkofba665a2019-04-16 11:37:02 +02002385 tptr = urlcopy + 1; /* skip first '/' */
2386
2387#if ENABLE_FEATURE_HTTPD_CGI
2388 if (is_prefixed_with(tptr, "cgi-bin/")) {
2389 if (tptr[8] == '\0') {
2390 /* protect listing "cgi-bin/" */
2391 send_headers_and_exit(HTTP_FORBIDDEN);
2392 }
2393 cgi_type = CGI_NORMAL;
2394 }
2395#endif
2396
2397 if (urlp[-1] == '/') {
2398 /* When index_page string is appended to <dir>/ URL, it overwrites
2399 * the query string. If we fall back to call /cgi-bin/index.cgi,
2400 * query string would be lost and not available to the CGI.
2401 * Work around it by making a deep copy.
2402 */
2403 if (ENABLE_FEATURE_HTTPD_CGI)
2404 g_query = xstrdup(g_query); /* ok for NULL too */
2405 strcpy(urlp, index_page);
2406 }
2407 if (stat(tptr, &sb) == 0) {
2408#if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
2409 char *suffix = strrchr(tptr, '.');
2410 if (suffix) {
2411 Htaccess *cur;
2412 for (cur = script_i; cur; cur = cur->next) {
2413 if (strcmp(cur->before_colon + 1, suffix) == 0) {
2414 cgi_type = CGI_INTERPRETER;
2415 break;
2416 }
2417 }
2418 }
2419#endif
2420 if (!found_moved_temporarily) {
2421 file_size = sb.st_size;
2422 last_mod = sb.st_mtime;
2423 }
2424 }
2425#if ENABLE_FEATURE_HTTPD_CGI
2426 else if (urlp[-1] == '/') {
2427 /* It's a dir URL and there is no index.html
2428 * Try cgi-bin/index.cgi */
2429 if (access("/cgi-bin/index.cgi"+1, X_OK) == 0) {
2430 cgi_type = CGI_INDEX;
2431 }
2432 }
2433#endif
2434 urlp[0] = '\0';
2435
Denys Vlasenko62ba9e52019-04-16 13:18:12 +02002436#if ENABLE_FEATURE_HTTPD_CGI
2437 total_headers_len = 0;
2438#endif
Denis Vlasenko073214f2007-08-17 19:20:07 +00002439
Denys Vlasenkobca888a2019-04-19 14:02:51 +02002440 /* Read until blank line */
2441 while (1) {
2442 unsigned iobuf_len = get_line();
2443 if (!iobuf_len)
2444 break; /* EOF or error or empty line */
Denys Vlasenko62ba9e52019-04-16 13:18:12 +02002445#if ENABLE_FEATURE_HTTPD_CGI
Denys Vlasenkobca888a2019-04-19 14:02:51 +02002446 /* Prevent unlimited growth of HTTP_xyz envvars */
2447 total_headers_len += iobuf_len;
2448 if (total_headers_len >= MAX_HTTP_HEADERS_SIZE)
2449 send_headers_and_exit(HTTP_ENTITY_TOO_LARGE);
Denys Vlasenko62ba9e52019-04-16 13:18:12 +02002450#endif
Denys Vlasenkobca888a2019-04-19 14:02:51 +02002451 if (DEBUG)
2452 bb_error_msg("header: '%s'", iobuf);
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002453#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
Denys Vlasenkobca888a2019-04-19 14:02:51 +02002454 /* Try and do our best to parse more lines */
2455 if (STRNCASECMP(iobuf, "Content-Length:") == 0) {
2456 /* extra read only for POST */
2457 if (prequest != request_GET
Denys Vlasenko535ce1d2010-07-25 03:20:25 +02002458# if ENABLE_FEATURE_HTTPD_CGI
Denys Vlasenkobca888a2019-04-19 14:02:51 +02002459 && prequest != request_HEAD
Denys Vlasenko535ce1d2010-07-25 03:20:25 +02002460# endif
Denys Vlasenkobca888a2019-04-19 14:02:51 +02002461 ) {
2462 tptr = skip_whitespace(iobuf + sizeof("Content-Length:") - 1);
2463 if (!tptr[0])
2464 send_headers_and_exit(HTTP_BAD_REQUEST);
2465 /* not using strtoul: it ignores leading minus! */
2466 length = bb_strtou(tptr, NULL, 10);
2467 /* length is "ulong", but we need to pass it to int later */
2468 if (errno || length > INT_MAX)
2469 send_headers_and_exit(HTTP_BAD_REQUEST);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002470 }
Denys Vlasenkobca888a2019-04-19 14:02:51 +02002471 continue;
2472 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002473#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002474#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Denys Vlasenkobca888a2019-04-19 14:02:51 +02002475 if (STRNCASECMP(iobuf, "Authorization:") == 0) {
2476 /* We only allow Basic credentials.
2477 * It shows up as "Authorization: Basic <user>:<passwd>" where
2478 * "<user>:<passwd>" is base64 encoded.
2479 */
2480 tptr = skip_whitespace(iobuf + sizeof("Authorization:")-1);
2481 if (STRNCASECMP(tptr, "Basic") == 0) {
2482 tptr += sizeof("Basic")-1;
2483 /* decodeBase64() skips whitespace itself */
2484 decodeBase64(tptr);
2485 authorized = check_user_passwd(urlcopy, tptr);
2486 continue;
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002487 }
Denys Vlasenkobca888a2019-04-19 14:02:51 +02002488 }
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002489#endif
Denis Vlasenkof4310172007-09-21 22:35:18 +00002490#if ENABLE_FEATURE_HTTPD_RANGES
Denys Vlasenkobca888a2019-04-19 14:02:51 +02002491 if (STRNCASECMP(iobuf, "Range:") == 0) {
2492 /* We know only bytes=NNN-[MMM] */
2493 char *s = skip_whitespace(iobuf + sizeof("Range:")-1);
Maxim Storchak04e0d8e2020-12-29 17:29:05 +02002494 s = is_prefixed_with(s, "bytes=");
2495 if (s) {
Denys Vlasenkobca888a2019-04-19 14:02:51 +02002496 range_start = BB_STRTOOFF(s, &s, 10);
2497 if (s[0] != '-' || range_start < 0) {
2498 range_start = -1;
2499 } else if (s[1]) {
2500 range_end = BB_STRTOOFF(s+1, NULL, 10);
2501 if (errno || range_end < range_start)
Denys Vlasenko8cce1b32012-02-19 17:18:45 +01002502 range_start = -1;
Denis Vlasenkof4310172007-09-21 22:35:18 +00002503 }
2504 }
Denys Vlasenkobca888a2019-04-19 14:02:51 +02002505 continue;
2506 }
Denis Vlasenkof4310172007-09-21 22:35:18 +00002507#endif
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02002508#if ENABLE_FEATURE_HTTPD_GZIP
Denys Vlasenkobca888a2019-04-19 14:02:51 +02002509 if (STRNCASECMP(iobuf, "Accept-Encoding:") == 0) {
2510 /* Note: we do not support "gzip;q=0"
2511 * method of _disabling_ gzip
2512 * delivery. No one uses that, though */
2513 const char *s = strstr(iobuf, "gzip");
2514 if (s) {
2515 // want more thorough checks?
2516 //if (s[-1] == ' '
2517 // || s[-1] == ','
2518 // || s[-1] == ':'
2519 //) {
2520 content_gzip = 1;
2521 //}
Denys Vlasenkofba665a2019-04-16 11:37:02 +02002522 }
Denys Vlasenkobca888a2019-04-19 14:02:51 +02002523 continue;
2524 }
Denys Vlasenkofba665a2019-04-16 11:37:02 +02002525#endif
Sergey Ponomarev4864a682020-08-15 23:52:48 +02002526#if ENABLE_FEATURE_HTTPD_ETAG
2527 if (STRNCASECMP(iobuf, "If-None-Match:") == 0) {
2528 free(G.if_none_match);
2529 G.if_none_match = xstrdup(skip_whitespace(iobuf + sizeof("If-None-Match:") - 1));
2530 continue;
2531 }
2532#endif
Denys Vlasenkofba665a2019-04-16 11:37:02 +02002533#if ENABLE_FEATURE_HTTPD_CGI
Denys Vlasenkobca888a2019-04-19 14:02:51 +02002534 if (cgi_type != CGI_NONE) {
2535 bool ct = (STRNCASECMP(iobuf, "Content-Type:") == 0);
2536 char *cp;
2537 char *colon = strchr(iobuf, ':');
Denys Vlasenkofba665a2019-04-16 11:37:02 +02002538
Denys Vlasenkobca888a2019-04-19 14:02:51 +02002539 if (!colon)
2540 continue;
2541 cp = iobuf;
2542 while (cp < colon) {
2543 /* a-z => A-Z, not-alnum => _ */
2544 char c = (*cp & ~0x20); /* toupper for A-Za-z, undef for others */
2545 if ((unsigned)(c - 'A') <= ('Z' - 'A')) {
2546 *cp++ = c;
Denys Vlasenkofba665a2019-04-16 11:37:02 +02002547 continue;
Denys Vlasenkofba665a2019-04-16 11:37:02 +02002548 }
Denys Vlasenkobca888a2019-04-19 14:02:51 +02002549 if (!isdigit(*cp))
2550 *cp = '_';
2551 cp++;
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02002552 }
Denys Vlasenkobca888a2019-04-19 14:02:51 +02002553 /* "Content-Type:" gets no HTTP_ prefix, all others do */
2554 cp = xasprintf(ct ? "HTTP_%.*s=%s" + 5 : "HTTP_%.*s=%s",
2555 (int)(colon - iobuf), iobuf,
2556 skip_whitespace(colon + 1)
2557 );
2558 putenv(cp);
2559 }
Peter Korsgaard7a2ba322010-07-25 03:20:53 +02002560#endif
Denys Vlasenkobca888a2019-04-19 14:02:51 +02002561 } /* while extra header reading */
Glenn L McGrath06e95652003-02-09 06:51:14 +00002562
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002563 /* We are done reading headers, disable peer timeout */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002564 alarm(0);
2565
Denys Vlasenko51792e12019-04-14 19:57:13 +02002566 if (strcmp(bb_basename(urlcopy), HTTPD_CONF) == 0) {
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002567 /* protect listing [/path]/httpd.conf or IP deny */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002568 send_headers_and_exit(HTTP_FORBIDDEN);
2569 }
2570
2571#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
Pascal Bellard72917552011-11-29 13:51:11 +01002572 /* Case: no "Authorization:" was seen, but page might require passwd.
Denis Vlasenko0eb406c2008-06-13 09:53:06 +00002573 * Check that with dummy user:pass */
Denis Vlasenko7504f2f2008-06-13 13:20:38 +00002574 if (authorized < 0)
Pascal Bellard72917552011-11-29 13:51:11 +01002575 authorized = check_user_passwd(urlcopy, (char *) "");
Denis Vlasenko7504f2f2008-06-13 13:20:38 +00002576 if (!authorized)
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002577 send_headers_and_exit(HTTP_UNAUTHORIZED);
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002578#endif
2579
2580 if (found_moved_temporarily) {
2581 send_headers_and_exit(HTTP_MOVED_TEMPORARILY);
2582 }
2583
Denis Vlasenko52e15dc2007-08-19 18:53:43 +00002584 tptr = urlcopy + 1; /* skip first '/' */
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002585
2586#if ENABLE_FEATURE_HTTPD_CGI
Denys Vlasenkofba665a2019-04-16 11:37:02 +02002587 if (cgi_type != CGI_NONE) {
2588 send_cgi_and_exit(
2589 (cgi_type == CGI_INDEX) ? "/cgi-bin/index.cgi"
2590 /*CGI_NORMAL or CGI_INTERPRETER*/ : urlcopy,
2591 urlcopy, prequest, length
2592 );
Denis Vlasenko91adf7d2007-08-17 19:19:42 +00002593 }
Denys Vlasenko108b8c52009-09-08 21:17:49 +02002594#endif
2595
Denys Vlasenko03419aa2011-12-19 12:30:34 +01002596 if (urlp[-1] == '/') {
Denys Vlasenko108b8c52009-09-08 21:17:49 +02002597 strcpy(urlp, index_page);
Denys Vlasenko03419aa2011-12-19 12:30:34 +01002598 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002599
Denys Vlasenkofba665a2019-04-16 11:37:02 +02002600#if ENABLE_FEATURE_HTTPD_CGI
Denys Vlasenko108b8c52009-09-08 21:17:49 +02002601 if (prequest != request_GET && prequest != request_HEAD) {
2602 /* POST for files does not make sense */
2603 send_headers_and_exit(HTTP_NOT_IMPLEMENTED);
2604 }
Denis Vlasenko2f518b02008-02-21 00:12:07 +00002605 send_file_and_exit(tptr,
Denis Vlasenko85c24712008-03-17 09:04:04 +00002606 (prequest != request_HEAD ? SEND_HEADERS_AND_BODY : SEND_HEADERS)
Denis Vlasenko85c24712008-03-17 09:04:04 +00002607 );
Denys Vlasenko108b8c52009-09-08 21:17:49 +02002608#else
2609 send_file_and_exit(tptr, SEND_HEADERS_AND_BODY);
2610#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002611}
2612
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002613/*
2614 * The main http server function.
Denis Vlasenko367960b2007-08-18 14:20:21 +00002615 * Given a socket, listen for new connections and farm out
2616 * the processing as a [v]forked process.
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002617 * Never returns.
2618 */
Denis Vlasenko367960b2007-08-18 14:20:21 +00002619#if BB_MMU
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002620static void mini_httpd(int server_socket) NORETURN;
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002621static void mini_httpd(int server_socket)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002622{
Denis Vlasenko073214f2007-08-17 19:20:07 +00002623 /* NB: it's best to not use xfuncs in this loop before fork().
2624 * Otherwise server may die on transient errors (temporary
2625 * out-of-memory condition, etc), which is Bad(tm).
2626 * Try to do any dangerous calls after fork.
2627 */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002628 while (1) {
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002629 int n;
2630 len_and_sockaddr fromAddr;
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00002631
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002632 /* Wait for connections... */
2633 fromAddr.len = LSA_SIZEOF_SA;
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002634 n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len);
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002635 if (n < 0)
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00002636 continue;
Denys Vlasenko535ce1d2010-07-25 03:20:25 +02002637
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002638 /* set the KEEPALIVE option to cull dead connections */
Denys Vlasenkoc52cbea2015-08-24 19:48:03 +02002639 setsockopt_keepalive(n);
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002640
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002641 if (fork() == 0) {
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002642 /* child */
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002643 /* Do not reload config on HUP */
Denis Vlasenko6c5e5a02006-11-10 23:28:57 +00002644 signal(SIGHUP, SIG_IGN);
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002645 close(server_socket);
2646 xmove_fd(n, 0);
2647 xdup2(0, 1);
2648
Denis Vlasenko367960b2007-08-18 14:20:21 +00002649 handle_incoming_and_exit(&fromAddr);
2650 }
2651 /* parent, or fork failed */
2652 close(n);
2653 } /* while (1) */
2654 /* never reached */
2655}
2656#else
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002657static void mini_httpd_nommu(int server_socket, int argc, char **argv) NORETURN;
Denis Vlasenko367960b2007-08-18 14:20:21 +00002658static void mini_httpd_nommu(int server_socket, int argc, char **argv)
2659{
2660 char *argv_copy[argc + 2];
2661
2662 argv_copy[0] = argv[0];
2663 argv_copy[1] = (char*)"-i";
2664 memcpy(&argv_copy[2], &argv[1], argc * sizeof(argv[0]));
2665
2666 /* NB: it's best to not use xfuncs in this loop before vfork().
2667 * Otherwise server may die on transient errors (temporary
2668 * out-of-memory condition, etc), which is Bad(tm).
2669 * Try to do any dangerous calls after fork.
2670 */
2671 while (1) {
2672 int n;
Denis Vlasenko3f5fdc72007-10-14 04:55:59 +00002673
Denis Vlasenko367960b2007-08-18 14:20:21 +00002674 /* Wait for connections... */
Denys Vlasenko9fe8bd82018-04-07 01:13:30 +02002675 n = accept(server_socket, NULL, NULL);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002676 if (n < 0)
2677 continue;
Denys Vlasenko535ce1d2010-07-25 03:20:25 +02002678
Denis Vlasenko367960b2007-08-18 14:20:21 +00002679 /* set the KEEPALIVE option to cull dead connections */
Denys Vlasenkoc52cbea2015-08-24 19:48:03 +02002680 setsockopt_keepalive(n);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002681
2682 if (vfork() == 0) {
2683 /* child */
Denis Vlasenko367960b2007-08-18 14:20:21 +00002684 /* Do not reload config on HUP */
2685 signal(SIGHUP, SIG_IGN);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002686 close(server_socket);
2687 xmove_fd(n, 0);
2688 xdup2(0, 1);
2689
2690 /* Run a copy of ourself in inetd mode */
2691 re_exec(argv_copy);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002692 }
Denys Vlasenkod2277e22011-11-22 17:19:26 +01002693 argv_copy[0][0] &= 0x7f;
Denis Vlasenko921799d2007-08-19 19:28:09 +00002694 /* parent, or vfork failed */
Denis Vlasenko073214f2007-08-17 19:20:07 +00002695 close(n);
Denis Vlasenko04291bc2006-11-21 10:15:25 +00002696 } /* while (1) */
Denis Vlasenko241b1562007-08-17 19:18:47 +00002697 /* never reached */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002698}
Denis Vlasenko56258b62007-06-23 23:14:02 +00002699#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002700
Denis Vlasenko367960b2007-08-18 14:20:21 +00002701/*
2702 * Process a HTTP connection on stdin/out.
2703 * Never returns.
2704 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002705static void mini_httpd_inetd(void) NORETURN;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002706static void mini_httpd_inetd(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002707{
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002708 len_and_sockaddr fromAddr;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002709
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00002710 memset(&fromAddr, 0, sizeof(fromAddr));
Denis Vlasenkoe45af732007-08-17 19:19:15 +00002711 fromAddr.len = LSA_SIZEOF_SA;
Denis Vlasenkofaf334a2008-05-18 15:14:36 +00002712 /* NB: can fail if user runs it by hand and types in http cmds */
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +00002713 getpeername(0, &fromAddr.u.sa, &fromAddr.len);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002714 handle_incoming_and_exit(&fromAddr);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002715}
Glenn L McGrath06e95652003-02-09 06:51:14 +00002716
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002717static void sighup_handler(int sig UNUSED_PARAM)
Glenn L McGrath06e95652003-02-09 06:51:14 +00002718{
Denys Vlasenko51792e12019-04-14 19:57:13 +02002719 int sv = errno;
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002720 parse_conf(DEFAULT_PATH_HTTPD_CONF, SIGNALED_PARSE);
Denys Vlasenko51792e12019-04-14 19:57:13 +02002721 errno = sv;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002722}
Glenn L McGrath06e95652003-02-09 06:51:14 +00002723
Denis Vlasenko9f609292006-11-05 19:47:33 +00002724enum {
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002725 c_opt_config_file = 0,
2726 d_opt_decode_url,
2727 h_opt_home_httpd,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002728 IF_FEATURE_HTTPD_ENCODE_URL_STR(e_opt_encode_url,)
2729 IF_FEATURE_HTTPD_BASIC_AUTH( r_opt_realm ,)
2730 IF_FEATURE_HTTPD_AUTH_MD5( m_opt_md5 ,)
2731 IF_FEATURE_HTTPD_SETUID( u_opt_setuid ,)
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002732 p_opt_port ,
2733 p_opt_inetd ,
2734 p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002735 p_opt_verbose ,
Denis Vlasenko9f609292006-11-05 19:47:33 +00002736 OPT_CONFIG_FILE = 1 << c_opt_config_file,
2737 OPT_DECODE_URL = 1 << d_opt_decode_url,
2738 OPT_HOME_HTTPD = 1 << h_opt_home_httpd,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002739 OPT_ENCODE_URL = IF_FEATURE_HTTPD_ENCODE_URL_STR((1 << e_opt_encode_url)) + 0,
2740 OPT_REALM = IF_FEATURE_HTTPD_BASIC_AUTH( (1 << r_opt_realm )) + 0,
2741 OPT_MD5 = IF_FEATURE_HTTPD_AUTH_MD5( (1 << m_opt_md5 )) + 0,
2742 OPT_SETUID = IF_FEATURE_HTTPD_SETUID( (1 << u_opt_setuid )) + 0,
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002743 OPT_PORT = 1 << p_opt_port,
2744 OPT_INETD = 1 << p_opt_inetd,
2745 OPT_FOREGROUND = 1 << p_opt_foreground,
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002746 OPT_VERBOSE = 1 << p_opt_verbose,
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00002747};
Eric Andersena3bb3e62003-06-26 09:05:32 +00002748
Eric Andersena3bb3e62003-06-26 09:05:32 +00002749
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00002750int httpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002751int httpd_main(int argc UNUSED_PARAM, char **argv)
Glenn L McGrath06e95652003-02-09 06:51:14 +00002752{
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002753 int server_socket = server_socket; /* for gcc */
Denis Vlasenko67b23e62006-10-03 21:00:06 +00002754 unsigned opt;
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002755 char *url_for_decode;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002756 IF_FEATURE_HTTPD_ENCODE_URL_STR(const char *url_for_encode;)
2757 IF_FEATURE_HTTPD_SETUID(const char *s_ugid = NULL;)
2758 IF_FEATURE_HTTPD_SETUID(struct bb_uidgid_t ugid;)
2759 IF_FEATURE_HTTPD_AUTH_MD5(const char *pass;)
Eric Andersen35e643b2003-07-28 07:40:39 +00002760
Denis Vlasenko073214f2007-08-17 19:20:07 +00002761 INIT_G();
2762
Denis Vlasenkofcdb00f2006-11-21 00:09:37 +00002763#if ENABLE_LOCALE_SUPPORT
2764 /* Undo busybox.c: we want to speak English in http (dates etc) */
2765 setlocale(LC_TIME, "C");
2766#endif
2767
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002768 home_httpd = xrealloc_getcwd_or_warn(NULL);
2769 /* We do not "absolutize" path given by -h (home) opt.
Denis Vlasenko6bf05cf2008-05-07 12:18:48 +00002770 * If user gives relative path in -h,
2771 * $SCRIPT_FILENAME will not be set. */
Denys Vlasenko22542ec2017-08-08 21:55:02 +02002772 opt = getopt32(argv, "^"
2773 "c:d:h:"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002774 IF_FEATURE_HTTPD_ENCODE_URL_STR("e:")
2775 IF_FEATURE_HTTPD_BASIC_AUTH("r:")
2776 IF_FEATURE_HTTPD_AUTH_MD5("m:")
2777 IF_FEATURE_HTTPD_SETUID("u:")
Denys Vlasenko22542ec2017-08-08 21:55:02 +02002778 "p:ifv"
2779 "\0"
2780 /* -v counts, -i implies -f */
2781 "vv:if",
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002782 &opt_c_configFile, &url_for_decode, &home_httpd
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002783 IF_FEATURE_HTTPD_ENCODE_URL_STR(, &url_for_encode)
2784 IF_FEATURE_HTTPD_BASIC_AUTH(, &g_realm)
2785 IF_FEATURE_HTTPD_AUTH_MD5(, &pass)
2786 IF_FEATURE_HTTPD_SETUID(, &s_ugid)
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002787 , &bind_addr_or_port
Denis Vlasenko384b1d12007-08-14 16:55:01 +00002788 , &verbose
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002789 );
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002790 if (opt & OPT_DECODE_URL) {
Ron Yorstoncad3fc72021-02-03 20:47:14 +01002791 fputs_stdout(percent_decode_in_place(url_for_decode, /*strict:*/ 0));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002792 return 0;
2793 }
Denis Vlasenko55a99402006-09-30 20:41:44 +00002794#if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002795 if (opt & OPT_ENCODE_URL) {
Ron Yorstoncad3fc72021-02-03 20:47:14 +01002796 fputs_stdout(encodeString(url_for_encode));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002797 return 0;
2798 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002799#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002800#if ENABLE_FEATURE_HTTPD_AUTH_MD5
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002801 if (opt & OPT_MD5) {
Denys Vlasenkodbc6a7a2009-12-16 02:28:50 +01002802 char salt[sizeof("$1$XXXXXXXX")];
2803 salt[0] = '$';
2804 salt[1] = '1';
2805 salt[2] = '$';
Denys Vlasenko12a43272011-05-13 03:19:01 +02002806 crypt_make_salt(salt + 3, 4);
Pascal Bellard72917552011-11-29 13:51:11 +01002807 puts(pw_encrypt(pass, salt, /*cleanup:*/ 0));
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002808 return 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +00002809 }
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002810#endif
Denis Vlasenko55a99402006-09-30 20:41:44 +00002811#if ENABLE_FEATURE_HTTPD_SETUID
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002812 if (opt & OPT_SETUID) {
Bernhard Reutner-Fischerd73cbd32008-07-21 14:41:33 +00002813 xget_uidgid(&ugid, s_ugid);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002814 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002815#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002816
Denis Vlasenko367960b2007-08-18 14:20:21 +00002817#if !BB_MMU
2818 if (!(opt & OPT_FOREGROUND)) {
2819 bb_daemonize_or_rexec(0, argv); /* don't change current directory */
Ron Yorston17764602020-06-09 17:38:21 +02002820 re_execed = 0; /* for the following chdir to work */
Denis Vlasenko367960b2007-08-18 14:20:21 +00002821 }
2822#endif
Ron Yorston17764602020-06-09 17:38:21 +02002823 /* Chdir to home (unless we were re_exec()ed for NOMMU case
2824 * in mini_httpd_nommu(): we are already in the home dir then).
Ron Yorstond1b75e12020-04-07 10:41:34 +01002825 */
2826 if (!re_execed)
2827 xchdir(home_httpd);
2828
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002829 if (!(opt & OPT_INETD)) {
Denis Vlasenko6536a9b2007-01-12 10:35:23 +00002830 signal(SIGCHLD, SIG_IGN);
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002831 server_socket = openServer();
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002832#if ENABLE_FEATURE_HTTPD_SETUID
2833 /* drop privileges */
2834 if (opt & OPT_SETUID) {
2835 if (ugid.gid != (gid_t)-1) {
2836 if (setgroups(1, &ugid.gid) == -1)
James Byrne69374872019-07-02 11:35:03 +02002837 bb_simple_perror_msg_and_die("setgroups");
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002838 xsetgid(ugid.gid);
2839 }
2840 xsetuid(ugid.uid);
Denis Vlasenkode59c0f2006-10-05 22:50:22 +00002841 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002842#endif
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002843 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00002844
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002845#if 0
Denis Vlasenko2535f122007-09-15 13:28:30 +00002846 /* User can do it himself: 'env - PATH="$PATH" httpd'
2847 * We don't do it because we don't want to screw users
2848 * which want to do
Denis Vlasenkof74194e2007-10-18 12:54:39 +00002849 * 'env - VAR1=val1 VAR2=val2 httpd'
Denis Vlasenko2535f122007-09-15 13:28:30 +00002850 * and have VAR1 and VAR2 values visible in their CGIs.
2851 * Besides, it is also smaller. */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002852 {
2853 char *p = getenv("PATH");
Denis Vlasenkoc4523c22008-03-28 02:24:59 +00002854 /* env strings themself are not freed, no need to xstrdup(p): */
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002855 clearenv();
2856 if (p)
Denis Vlasenko77e44d62007-06-09 23:49:05 +00002857 putenv(p - 5);
Denis Vlasenko9611cb12007-08-18 14:18:43 +00002858// if (!(opt & OPT_INETD))
2859// setenv_long("SERVER_PORT", ???);
Denis Vlasenko8b8c75e2006-09-26 10:07:41 +00002860 }
Glenn L McGrathfe538ba2003-09-10 23:35:45 +00002861#endif
2862
Denis Vlasenko1cf4a0e2009-04-22 13:49:16 +00002863 parse_conf(DEFAULT_PATH_HTTPD_CONF, FIRST_PARSE);
Denis Vlasenko1cbfd982009-02-04 23:43:44 +00002864 if (!(opt & OPT_INETD))
2865 signal(SIGHUP, sighup_handler);
Denis Vlasenko367960b2007-08-18 14:20:21 +00002866
Denis Vlasenkofeac3ce2007-08-17 19:20:39 +00002867 xfunc_error_retval = 0;
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002868 if (opt & OPT_INETD)
Denys Vlasenko9fe8bd82018-04-07 01:13:30 +02002869 mini_httpd_inetd(); /* never returns */
Denis Vlasenko367960b2007-08-18 14:20:21 +00002870#if BB_MMU
Denis Vlasenko0871bc82006-11-16 16:17:02 +00002871 if (!(opt & OPT_FOREGROUND))
Denis Vlasenko0372f0f2007-08-14 16:50:01 +00002872 bb_daemonize(0); /* don't change current directory */
2873 mini_httpd(server_socket); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002874#else
Denis Vlasenko367960b2007-08-18 14:20:21 +00002875 mini_httpd_nommu(server_socket, argc, argv); /* never returns */
Denis Vlasenko56258b62007-06-23 23:14:02 +00002876#endif
Denis Vlasenko367960b2007-08-18 14:20:21 +00002877 /* return 0; */
Glenn L McGrath06e95652003-02-09 06:51:14 +00002878}