Bernhard Reutner-Fischer | 2c99851 | 2006-04-12 18:09:26 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 2 | /* |
| 3 | * httpd implementation for busybox |
| 4 | * |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 5 | * Copyright (C) 2002,2003 Glenn Engel <glenne@engel.org> |
"Vladimir N. Oleynik" | 79af7d5 | 2006-01-26 10:58:12 +0000 | [diff] [blame] | 6 | * Copyright (C) 2003-2006 Vladimir Oleynik <dzo@simtreas.ru> |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 7 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 8 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 9 | * |
| 10 | ***************************************************************************** |
| 11 | * |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 12 | * Typical usage: |
Denys Vlasenko | 535ce1d | 2010-07-25 03:20:25 +0200 | [diff] [blame] | 13 | * 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 McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 19 | * |
Denys Vlasenko | 535ce1d | 2010-07-25 03:20:25 +0200 | [diff] [blame] | 20 | * 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 McGrath | 1dc0cca | 2003-10-03 10:50:56 +0000 | [diff] [blame] | 22 | * after setting QUERY_STRING and other environment variables. |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 23 | * |
Denys Vlasenko | d277f55 | 2011-04-10 03:08:22 +0200 | [diff] [blame] | 24 | * 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 Vlasenko | 8b45837 | 2006-11-21 21:23:21 +0000 | [diff] [blame] | 28 | * Doc: |
| 29 | * "CGI Environment Variables": http://hoohoo.ncsa.uiuc.edu/cgi/env.html |
| 30 | * |
Denys Vlasenko | 33d8d08 | 2009-09-10 01:46:02 +0200 | [diff] [blame] | 31 | * The applet can also be invoked as an url arg decoder and html text encoder |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 32 | * as follows: |
Denys Vlasenko | 535ce1d | 2010-07-25 03:20:25 +0200 | [diff] [blame] | 33 | * foo=`httpd -d $foo` # decode "Hello%20World" as "Hello World" |
| 34 | * bar=`httpd -e "<Hello World>"` # encode as "<Hello World>" |
Glenn L McGrath | 4fe3ff8 | 2003-05-19 05:56:16 +0000 | [diff] [blame] | 35 | * Note that url encoding for arguments is not the same as html encoding for |
Bernhard Reutner-Fischer | 6285117 | 2009-05-03 18:53:22 +0200 | [diff] [blame] | 36 | * presentation. -d decodes an url-encoded argument while -e encodes in html |
Glenn L McGrath | 4fe3ff8 | 2003-05-19 05:56:16 +0000 | [diff] [blame] | 37 | * for page display. |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 38 | * |
| 39 | * httpd.conf has the following format: |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 40 | * |
Denis Vlasenko | 395410b | 2008-07-20 23:25:32 +0000 | [diff] [blame] | 41 | * H:/serverroot # define the server root. It will override -h |
Glenn L McGrath | b65422c | 2003-09-08 10:59:27 +0000 | [diff] [blame] | 42 | * 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 McGrath | 4fe3ff8 | 2003-05-19 05:56:16 +0000 | [diff] [blame] | 45 | * A:127.0.0.1 # Allow local loopback connections |
| 46 | * D:* # Deny from other IP connections |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 47 | * E404:/path/e404.html # /path/e404.html is the 404 (not found) error page |
Denis Vlasenko | fcd878e | 2007-12-29 02:16:23 +0000 | [diff] [blame] | 48 | * I:index.html # Show index.html when a directory is requested |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 49 | * |
| 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 McGrath | 4fe3ff8 | 2003-05-19 05:56:16 +0000 | [diff] [blame] | 54 | * /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 Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 57 | * /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 McGrath | 4fe3ff8 | 2003-05-19 05:56:16 +0000 | [diff] [blame] | 59 | * .au:audio/basic # additional mime type for audio.au files |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 60 | * *.php:/path/php # run xxx.php through an interpreter |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 61 | * |
Denis Vlasenko | 0eb406c | 2008-06-13 09:53:06 +0000 | [diff] [blame] | 62 | * 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 McGrath | 4fe3ff8 | 2003-05-19 05:56:16 +0000 | [diff] [blame] | 65 | * - Deny rules take precedence over allow rules. |
Denis Vlasenko | 0eb406c | 2008-06-13 09:53:06 +0000 | [diff] [blame] | 66 | * - "Deny all" rule (D:*) is applied last. |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 67 | * |
Glenn L McGrath | 4fe3ff8 | 2003-05-19 05:56:16 +0000 | [diff] [blame] | 68 | * Example: |
| 69 | * 1. Allow only specified addresses |
Glenn L McGrath | b65422c | 2003-09-08 10:59:27 +0000 | [diff] [blame] | 70 | * A:172.20 # Allow any address that begins with 172.20. |
Glenn L McGrath | 4fe3ff8 | 2003-05-19 05:56:16 +0000 | [diff] [blame] | 71 | * A:10.10. # Allow any address that begins with 10.10. |
Glenn L McGrath | 4fe3ff8 | 2003-05-19 05:56:16 +0000 | [diff] [blame] | 72 | * A:127.0.0.1 # Allow local loopback connections |
| 73 | * D:* # Deny from other IP connections |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 74 | * |
Glenn L McGrath | 4fe3ff8 | 2003-05-19 05:56:16 +0000 | [diff] [blame] | 75 | * 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 Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 79 | * |
Denys Vlasenko | d277f55 | 2011-04-10 03:08:22 +0200 | [diff] [blame] | 80 | * If a sub directory contains config file, it is parsed and merged with |
Glenn L McGrath | b65422c | 2003-09-08 10:59:27 +0000 | [diff] [blame] | 81 | * any existing settings as if it was appended to the original configuration. |
Glenn L McGrath | 4fe3ff8 | 2003-05-19 05:56:16 +0000 | [diff] [blame] | 82 | * |
| 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 Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 90 | * 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 Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 94 | * |
| 95 | * If -c is not set, an attempt will be made to open the default |
Glenn L McGrath | 4fe3ff8 | 2003-05-19 05:56:16 +0000 | [diff] [blame] | 96 | * root configuration file. If -c is set and the file is not found, the |
| 97 | * server exits with an error. |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 98 | * |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 99 | */ |
Bernhard Reutner-Fischer | 6285117 | 2009-05-03 18:53:22 +0200 | [diff] [blame] | 100 | /* TODO: use TCP_CORK, parse_config() */ |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 101 | //config:config HTTPD |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 102 | //config: bool "httpd (32 kb)" |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 103 | //config: default y |
| 104 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 105 | //config: HTTP server. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 106 | //config: |
| 107 | //config:config FEATURE_HTTPD_RANGES |
| 108 | //config: bool "Support 'Ranges:' header" |
| 109 | //config: default y |
| 110 | //config: depends on HTTPD |
| 111 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 112 | //config: Makes httpd emit "Accept-Ranges: bytes" header and understand |
| 113 | //config: "Range: bytes=NNN-[MMM]" header. Allows for resuming interrupted |
| 114 | //config: downloads, seeking in multimedia players etc. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 115 | //config: |
| 116 | //config:config FEATURE_HTTPD_SETUID |
| 117 | //config: bool "Enable -u <user> option" |
| 118 | //config: default y |
| 119 | //config: depends on HTTPD |
| 120 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 121 | //config: This option allows the server to run as a specific user |
| 122 | //config: rather than defaulting to the user that starts the server. |
| 123 | //config: Use of this option requires special privileges to change to a |
| 124 | //config: different user. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 125 | //config: |
| 126 | //config:config FEATURE_HTTPD_BASIC_AUTH |
Denys Vlasenko | 1d8df52 | 2017-07-27 13:34:51 +0200 | [diff] [blame] | 127 | //config: bool "Enable HTTP authentication" |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 128 | //config: default y |
| 129 | //config: depends on HTTPD |
| 130 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 131 | //config: Utilizes password settings from /etc/httpd.conf for basic |
| 132 | //config: authentication on a per url basis. |
| 133 | //config: Example for httpd.conf file: |
| 134 | //config: /adm:toor:PaSsWd |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 135 | //config: |
| 136 | //config:config FEATURE_HTTPD_AUTH_MD5 |
Denys Vlasenko | 1d8df52 | 2017-07-27 13:34:51 +0200 | [diff] [blame] | 137 | //config: bool "Support MD5-encrypted passwords in HTTP authentication" |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 138 | //config: default y |
| 139 | //config: depends on FEATURE_HTTPD_BASIC_AUTH |
| 140 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 141 | //config: Enables encrypted passwords, and wildcard user/passwords |
| 142 | //config: in httpd.conf file. |
| 143 | //config: User '*' means 'any system user name is ok', |
| 144 | //config: password of '*' means 'use system password for this user' |
| 145 | //config: Examples: |
| 146 | //config: /adm:toor:$1$P/eKnWXS$aI1aPGxT.dJD5SzqAKWrF0 |
| 147 | //config: /adm:root:* |
| 148 | //config: /wiki:*:* |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 149 | //config: |
| 150 | //config:config FEATURE_HTTPD_CGI |
| 151 | //config: bool "Support Common Gateway Interface (CGI)" |
| 152 | //config: default y |
| 153 | //config: depends on HTTPD |
| 154 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 155 | //config: This option allows scripts and executables to be invoked |
| 156 | //config: when specific URLs are requested. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 157 | //config: |
| 158 | //config:config FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 159 | //config: bool "Support running scripts through an interpreter" |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 160 | //config: default y |
| 161 | //config: depends on FEATURE_HTTPD_CGI |
| 162 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 163 | //config: This option enables support for running scripts through an |
| 164 | //config: interpreter. Turn this on if you want PHP scripts to work |
| 165 | //config: properly. You need to supply an additional line in your |
| 166 | //config: httpd.conf file: |
| 167 | //config: *.php:/path/to/your/php |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 168 | //config: |
| 169 | //config:config FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV |
| 170 | //config: bool "Set REMOTE_PORT environment variable for CGI" |
| 171 | //config: default y |
| 172 | //config: depends on FEATURE_HTTPD_CGI |
| 173 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 174 | //config: Use of this option can assist scripts in generating |
| 175 | //config: references that contain a unique port number. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 176 | //config: |
| 177 | //config:config FEATURE_HTTPD_ENCODE_URL_STR |
| 178 | //config: bool "Enable -e option (useful for CGIs written as shell scripts)" |
| 179 | //config: default y |
| 180 | //config: depends on HTTPD |
| 181 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 182 | //config: This option allows html encoding of arbitrary strings for display |
| 183 | //config: by the browser. Output goes to stdout. |
| 184 | //config: For example, httpd -e "<Hello World>" produces |
| 185 | //config: "<Hello World>". |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 186 | //config: |
| 187 | //config:config FEATURE_HTTPD_ERROR_PAGES |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 188 | //config: bool "Support custom error pages" |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 189 | //config: default y |
| 190 | //config: depends on HTTPD |
| 191 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 192 | //config: This option allows you to define custom error pages in |
| 193 | //config: the configuration file instead of the default HTTP status |
| 194 | //config: error pages. For instance, if you add the line: |
| 195 | //config: E404:/path/e404.html |
| 196 | //config: in the config file, the server will respond the specified |
| 197 | //config: '/path/e404.html' file instead of the terse '404 NOT FOUND' |
| 198 | //config: message. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 199 | //config: |
| 200 | //config:config FEATURE_HTTPD_PROXY |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 201 | //config: bool "Support reverse proxy" |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 202 | //config: default y |
| 203 | //config: depends on HTTPD |
| 204 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 205 | //config: This option allows you to define URLs that will be forwarded |
| 206 | //config: to another HTTP server. To setup add the following line to the |
| 207 | //config: configuration file |
| 208 | //config: P:/url/:http://hostname[:port]/new/path/ |
| 209 | //config: Then a request to /url/myfile will be forwarded to |
| 210 | //config: http://hostname[:port]/new/path/myfile. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 211 | //config: |
| 212 | //config:config FEATURE_HTTPD_GZIP |
Denys Vlasenko | f560422 | 2017-01-10 14:58:54 +0100 | [diff] [blame] | 213 | //config: bool "Support GZIP content encoding" |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 214 | //config: default y |
| 215 | //config: depends on HTTPD |
| 216 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 217 | //config: Makes httpd send files using GZIP content encoding if the |
| 218 | //config: client supports it and a pre-compressed <file>.gz exists. |
Denys Vlasenko | 47367e1 | 2016-11-23 09:05:14 +0100 | [diff] [blame] | 219 | |
| 220 | //applet:IF_HTTPD(APPLET(httpd, BB_DIR_USR_SBIN, BB_SUID_DROP)) |
| 221 | |
| 222 | //kbuild:lib-$(CONFIG_HTTPD) += httpd.o |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 223 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 224 | //usage:#define httpd_trivial_usage |
| 225 | //usage: "[-ifv[v]]" |
| 226 | //usage: " [-c CONFFILE]" |
| 227 | //usage: " [-p [IP:]PORT]" |
| 228 | //usage: IF_FEATURE_HTTPD_SETUID(" [-u USER[:GRP]]") |
| 229 | //usage: IF_FEATURE_HTTPD_BASIC_AUTH(" [-r REALM]") |
| 230 | //usage: " [-h HOME]\n" |
| 231 | //usage: "or httpd -d/-e" IF_FEATURE_HTTPD_AUTH_MD5("/-m") " STRING" |
| 232 | //usage:#define httpd_full_usage "\n\n" |
| 233 | //usage: "Listen for incoming HTTP requests\n" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 234 | //usage: "\n -i Inetd mode" |
| 235 | //usage: "\n -f Don't daemonize" |
| 236 | //usage: "\n -v[v] Verbose" |
| 237 | //usage: "\n -p [IP:]PORT Bind to IP:PORT (default *:80)" |
| 238 | //usage: IF_FEATURE_HTTPD_SETUID( |
| 239 | //usage: "\n -u USER[:GRP] Set uid/gid after binding to port") |
| 240 | //usage: IF_FEATURE_HTTPD_BASIC_AUTH( |
| 241 | //usage: "\n -r REALM Authentication Realm for Basic Authentication") |
| 242 | //usage: "\n -h HOME Home directory (default .)" |
| 243 | //usage: "\n -c FILE Configuration file (default {/etc,HOME}/httpd.conf)" |
| 244 | //usage: IF_FEATURE_HTTPD_AUTH_MD5( |
| 245 | //usage: "\n -m STRING MD5 crypt STRING") |
| 246 | //usage: "\n -e STRING HTML encode STRING" |
| 247 | //usage: "\n -d STRING URL decode STRING" |
| 248 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 249 | #include "libbb.h" |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 250 | #include "common_bufsiz.h" |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 251 | #if ENABLE_PAM |
| 252 | /* PAM may include <locale.h>. We may need to undefine bbox's stub define: */ |
| 253 | # undef setlocale |
| 254 | /* For some obscure reason, PAM is not in pam/xxx, but in security/xxx. |
| 255 | * Apparently they like to confuse people. */ |
| 256 | # include <security/pam_appl.h> |
| 257 | # include <security/pam_misc.h> |
| 258 | #endif |
Bartosz Golaszewski | 8d75d79 | 2014-11-27 13:20:24 +0100 | [diff] [blame] | 259 | #if ENABLE_FEATURE_USE_SENDFILE |
Denis Vlasenko | 1cbfd98 | 2009-02-04 23:43:44 +0000 | [diff] [blame] | 260 | # include <sys/sendfile.h> |
Denis Vlasenko | 1b9064d | 2007-08-12 21:05:49 +0000 | [diff] [blame] | 261 | #endif |
Denis Vlasenko | 6998142 | 2007-01-07 21:25:12 +0000 | [diff] [blame] | 262 | /* amount of buffering in a pipe */ |
| 263 | #ifndef PIPE_BUF |
| 264 | # define PIPE_BUF 4096 |
| 265 | #endif |
Denys Vlasenko | 535ce1d | 2010-07-25 03:20:25 +0200 | [diff] [blame] | 266 | |
| 267 | #define DEBUG 0 |
| 268 | |
| 269 | #define IOBUF_SIZE 8192 |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 270 | #if PIPE_BUF >= IOBUF_SIZE |
| 271 | # error "PIPE_BUF >= IOBUF_SIZE" |
| 272 | #endif |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 273 | |
| 274 | #define HEADER_READ_TIMEOUT 60 |
| 275 | |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 276 | static const char DEFAULT_PATH_HTTPD_CONF[] ALIGN1 = "/etc"; |
| 277 | static const char HTTPD_CONF[] ALIGN1 = "httpd.conf"; |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 278 | static const char HTTP_200[] ALIGN1 = "HTTP/1.0 200 OK\r\n"; |
Denys Vlasenko | 535ce1d | 2010-07-25 03:20:25 +0200 | [diff] [blame] | 279 | static const char index_html[] ALIGN1 = "index.html"; |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 280 | |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 281 | typedef struct has_next_ptr { |
| 282 | struct has_next_ptr *next; |
| 283 | } has_next_ptr; |
Eric Andersen | 07f2fea | 2004-10-08 08:03:29 +0000 | [diff] [blame] | 284 | |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 285 | /* Must have "next" as a first member */ |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 286 | typedef struct Htaccess { |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 287 | struct Htaccess *next; |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 288 | char *after_colon; |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 289 | char before_colon[1]; /* really bigger, must be last */ |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 290 | } Htaccess; |
| 291 | |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 292 | /* Must have "next" as a first member */ |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 293 | typedef struct Htaccess_IP { |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 294 | struct Htaccess_IP *next; |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 295 | unsigned ip; |
| 296 | unsigned mask; |
Glenn L McGrath | b65422c | 2003-09-08 10:59:27 +0000 | [diff] [blame] | 297 | int allow_deny; |
Glenn L McGrath | b65422c | 2003-09-08 10:59:27 +0000 | [diff] [blame] | 298 | } Htaccess_IP; |
| 299 | |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 300 | /* Must have "next" as a first member */ |
| 301 | typedef struct Htaccess_Proxy { |
| 302 | struct Htaccess_Proxy *next; |
| 303 | char *url_from; |
| 304 | char *host_port; |
| 305 | char *url_to; |
| 306 | } Htaccess_Proxy; |
| 307 | |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 308 | enum { |
| 309 | HTTP_OK = 200, |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 310 | HTTP_PARTIAL_CONTENT = 206, |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 311 | HTTP_MOVED_TEMPORARILY = 302, |
| 312 | HTTP_BAD_REQUEST = 400, /* malformed syntax */ |
| 313 | HTTP_UNAUTHORIZED = 401, /* authentication needed, respond with auth hdr */ |
| 314 | HTTP_NOT_FOUND = 404, |
| 315 | HTTP_FORBIDDEN = 403, |
| 316 | HTTP_REQUEST_TIMEOUT = 408, |
| 317 | HTTP_NOT_IMPLEMENTED = 501, /* used for unrecognized requests */ |
| 318 | HTTP_INTERNAL_SERVER_ERROR = 500, |
| 319 | HTTP_CONTINUE = 100, |
| 320 | #if 0 /* future use */ |
| 321 | HTTP_SWITCHING_PROTOCOLS = 101, |
| 322 | HTTP_CREATED = 201, |
| 323 | HTTP_ACCEPTED = 202, |
| 324 | HTTP_NON_AUTHORITATIVE_INFO = 203, |
| 325 | HTTP_NO_CONTENT = 204, |
| 326 | HTTP_MULTIPLE_CHOICES = 300, |
| 327 | HTTP_MOVED_PERMANENTLY = 301, |
| 328 | HTTP_NOT_MODIFIED = 304, |
| 329 | HTTP_PAYMENT_REQUIRED = 402, |
| 330 | HTTP_BAD_GATEWAY = 502, |
| 331 | HTTP_SERVICE_UNAVAILABLE = 503, /* overload, maintenance */ |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 332 | #endif |
| 333 | }; |
| 334 | |
Denis Vlasenko | 72b6a65 | 2007-08-21 11:18:25 +0000 | [diff] [blame] | 335 | static const uint16_t http_response_type[] ALIGN2 = { |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 336 | HTTP_OK, |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 337 | #if ENABLE_FEATURE_HTTPD_RANGES |
| 338 | HTTP_PARTIAL_CONTENT, |
| 339 | #endif |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 340 | HTTP_MOVED_TEMPORARILY, |
| 341 | HTTP_REQUEST_TIMEOUT, |
| 342 | HTTP_NOT_IMPLEMENTED, |
Denis Vlasenko | 3f5fdc7 | 2007-10-14 04:55:59 +0000 | [diff] [blame] | 343 | #if ENABLE_FEATURE_HTTPD_BASIC_AUTH |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 344 | HTTP_UNAUTHORIZED, |
| 345 | #endif |
| 346 | HTTP_NOT_FOUND, |
| 347 | HTTP_BAD_REQUEST, |
| 348 | HTTP_FORBIDDEN, |
| 349 | HTTP_INTERNAL_SERVER_ERROR, |
| 350 | #if 0 /* not implemented */ |
| 351 | HTTP_CREATED, |
| 352 | HTTP_ACCEPTED, |
| 353 | HTTP_NO_CONTENT, |
| 354 | HTTP_MULTIPLE_CHOICES, |
| 355 | HTTP_MOVED_PERMANENTLY, |
| 356 | HTTP_NOT_MODIFIED, |
| 357 | HTTP_BAD_GATEWAY, |
| 358 | HTTP_SERVICE_UNAVAILABLE, |
| 359 | #endif |
| 360 | }; |
| 361 | |
| 362 | static const struct { |
| 363 | const char *name; |
| 364 | const char *info; |
| 365 | } http_response[ARRAY_SIZE(http_response_type)] = { |
| 366 | { "OK", NULL }, |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 367 | #if ENABLE_FEATURE_HTTPD_RANGES |
| 368 | { "Partial Content", NULL }, |
| 369 | #endif |
| 370 | { "Found", NULL }, |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 371 | { "Request Timeout", "No request appeared within 60 seconds" }, |
| 372 | { "Not Implemented", "The requested method is not recognized" }, |
| 373 | #if ENABLE_FEATURE_HTTPD_BASIC_AUTH |
| 374 | { "Unauthorized", "" }, |
| 375 | #endif |
| 376 | { "Not Found", "The requested URL was not found" }, |
| 377 | { "Bad Request", "Unsupported method" }, |
| 378 | { "Forbidden", "" }, |
| 379 | { "Internal Server Error", "Internal Server Error" }, |
| 380 | #if 0 /* not implemented */ |
| 381 | { "Created" }, |
| 382 | { "Accepted" }, |
| 383 | { "No Content" }, |
| 384 | { "Multiple Choices" }, |
| 385 | { "Moved Permanently" }, |
| 386 | { "Not Modified" }, |
| 387 | { "Bad Gateway", "" }, |
| 388 | { "Service Unavailable", "" }, |
| 389 | #endif |
| 390 | }; |
| 391 | |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 392 | struct globals { |
Denis Vlasenko | d6cd9d7 | 2007-08-18 14:22:09 +0000 | [diff] [blame] | 393 | int verbose; /* must be int (used by getopt32) */ |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 394 | smallint flg_deny_all; |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 395 | |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 396 | unsigned rmt_ip; /* used for IP-based allow/deny rules */ |
Denis Vlasenko | 37c3316 | 2007-08-19 18:54:22 +0000 | [diff] [blame] | 397 | time_t last_mod; |
Denis Vlasenko | 37c3316 | 2007-08-19 18:54:22 +0000 | [diff] [blame] | 398 | char *rmt_ip_str; /* for $REMOTE_ADDR and $REMOTE_PORT */ |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 399 | const char *bind_addr_or_port; |
| 400 | |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 401 | const char *g_query; |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 402 | const char *opt_c_configFile; |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 403 | const char *home_httpd; |
Denis Vlasenko | fcd878e | 2007-12-29 02:16:23 +0000 | [diff] [blame] | 404 | const char *index_page; |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 405 | |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 406 | const char *found_mime_type; |
| 407 | const char *found_moved_temporarily; |
Denis Vlasenko | d6cd9d7 | 2007-08-18 14:22:09 +0000 | [diff] [blame] | 408 | Htaccess_IP *ip_a_d; /* config allow/deny lines */ |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 409 | |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 410 | IF_FEATURE_HTTPD_BASIC_AUTH(const char *g_realm;) |
| 411 | IF_FEATURE_HTTPD_BASIC_AUTH(char *remoteuser;) |
| 412 | IF_FEATURE_HTTPD_CGI(char *referer;) |
| 413 | IF_FEATURE_HTTPD_CGI(char *user_agent;) |
| 414 | IF_FEATURE_HTTPD_CGI(char *host;) |
| 415 | IF_FEATURE_HTTPD_CGI(char *http_accept;) |
| 416 | IF_FEATURE_HTTPD_CGI(char *http_accept_language;) |
Glenn L McGrath | 1dc0cca | 2003-10-03 10:50:56 +0000 | [diff] [blame] | 417 | |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 418 | off_t file_size; /* -1 - unknown */ |
| 419 | #if ENABLE_FEATURE_HTTPD_RANGES |
| 420 | off_t range_start; |
| 421 | off_t range_end; |
| 422 | off_t range_len; |
| 423 | #endif |
| 424 | |
Denis Vlasenko | 55a9940 | 2006-09-30 20:41:44 +0000 | [diff] [blame] | 425 | #if ENABLE_FEATURE_HTTPD_BASIC_AUTH |
Denis Vlasenko | d6cd9d7 | 2007-08-18 14:22:09 +0000 | [diff] [blame] | 426 | Htaccess *g_auth; /* config user:password lines */ |
Glenn L McGrath | c9163fe | 2003-05-13 16:20:11 +0000 | [diff] [blame] | 427 | #endif |
Denis Vlasenko | d6cd9d7 | 2007-08-18 14:22:09 +0000 | [diff] [blame] | 428 | Htaccess *mime_a; /* config mime types */ |
Denis Vlasenko | 55a9940 | 2006-09-30 20:41:44 +0000 | [diff] [blame] | 429 | #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR |
Denis Vlasenko | d6cd9d7 | 2007-08-18 14:22:09 +0000 | [diff] [blame] | 430 | Htaccess *script_i; /* config script interpreters */ |
"Vladimir N. Oleynik" | 4333a09 | 2006-01-31 13:53:30 +0000 | [diff] [blame] | 431 | #endif |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 432 | char *iobuf; /* [IOBUF_SIZE] */ |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 433 | #define hdr_buf bb_common_bufsiz1 |
| 434 | #define sizeof_hdr_buf COMMON_BUFSIZE |
Denis Vlasenko | d6cd9d7 | 2007-08-18 14:22:09 +0000 | [diff] [blame] | 435 | char *hdr_ptr; |
| 436 | int hdr_cnt; |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 437 | #if ENABLE_FEATURE_HTTPD_ERROR_PAGES |
| 438 | const char *http_error_page[ARRAY_SIZE(http_response_type)]; |
| 439 | #endif |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 440 | #if ENABLE_FEATURE_HTTPD_PROXY |
| 441 | Htaccess_Proxy *proxy; |
| 442 | #endif |
Peter Korsgaard | 7a2ba32 | 2010-07-25 03:20:53 +0200 | [diff] [blame] | 443 | #if ENABLE_FEATURE_HTTPD_GZIP |
| 444 | /* client can handle gzip / we are going to send gzip */ |
| 445 | smallint content_gzip; |
| 446 | #endif |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 447 | }; |
| 448 | #define G (*ptr_to_globals) |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 449 | #define verbose (G.verbose ) |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 450 | #define flg_deny_all (G.flg_deny_all ) |
| 451 | #define rmt_ip (G.rmt_ip ) |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 452 | #define bind_addr_or_port (G.bind_addr_or_port) |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 453 | #define g_query (G.g_query ) |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 454 | #define opt_c_configFile (G.opt_c_configFile ) |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 455 | #define home_httpd (G.home_httpd ) |
Denis Vlasenko | fcd878e | 2007-12-29 02:16:23 +0000 | [diff] [blame] | 456 | #define index_page (G.index_page ) |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 457 | #define found_mime_type (G.found_mime_type ) |
| 458 | #define found_moved_temporarily (G.found_moved_temporarily) |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 459 | #define last_mod (G.last_mod ) |
| 460 | #define ip_a_d (G.ip_a_d ) |
| 461 | #define g_realm (G.g_realm ) |
| 462 | #define remoteuser (G.remoteuser ) |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 463 | #define file_size (G.file_size ) |
| 464 | #if ENABLE_FEATURE_HTTPD_RANGES |
| 465 | #define range_start (G.range_start ) |
| 466 | #define range_end (G.range_end ) |
| 467 | #define range_len (G.range_len ) |
Denis Vlasenko | 1cbfd98 | 2009-02-04 23:43:44 +0000 | [diff] [blame] | 468 | #else |
| 469 | enum { |
Denys Vlasenko | 8cce1b3 | 2012-02-19 17:18:45 +0100 | [diff] [blame] | 470 | range_start = -1, |
Denis Vlasenko | 1cbfd98 | 2009-02-04 23:43:44 +0000 | [diff] [blame] | 471 | range_end = MAXINT(off_t) - 1, |
| 472 | range_len = MAXINT(off_t), |
| 473 | }; |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 474 | #endif |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 475 | #define rmt_ip_str (G.rmt_ip_str ) |
| 476 | #define g_auth (G.g_auth ) |
| 477 | #define mime_a (G.mime_a ) |
| 478 | #define script_i (G.script_i ) |
| 479 | #define iobuf (G.iobuf ) |
Denis Vlasenko | d6cd9d7 | 2007-08-18 14:22:09 +0000 | [diff] [blame] | 480 | #define hdr_ptr (G.hdr_ptr ) |
| 481 | #define hdr_cnt (G.hdr_cnt ) |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 482 | #define http_error_page (G.http_error_page ) |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 483 | #define proxy (G.proxy ) |
Peter Korsgaard | 7a2ba32 | 2010-07-25 03:20:53 +0200 | [diff] [blame] | 484 | #if ENABLE_FEATURE_HTTPD_GZIP |
| 485 | # define content_gzip (G.content_gzip ) |
| 486 | #else |
| 487 | # define content_gzip 0 |
| 488 | #endif |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 489 | #define INIT_G() do { \ |
Denys Vlasenko | 9de2e5a | 2016-04-21 18:38:51 +0200 | [diff] [blame] | 490 | setup_common_bufsiz(); \ |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 491 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 492 | IF_FEATURE_HTTPD_BASIC_AUTH(g_realm = "Web Server Authentication";) \ |
Denys Vlasenko | 8cce1b3 | 2012-02-19 17:18:45 +0100 | [diff] [blame] | 493 | IF_FEATURE_HTTPD_RANGES(range_start = -1;) \ |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 494 | bind_addr_or_port = "80"; \ |
Denys Vlasenko | 108b8c5 | 2009-09-08 21:17:49 +0200 | [diff] [blame] | 495 | index_page = index_html; \ |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 496 | file_size = -1; \ |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 497 | } while (0) |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 498 | |
Denis Vlasenko | d6cd9d7 | 2007-08-18 14:22:09 +0000 | [diff] [blame] | 499 | |
Denis Vlasenko | 0bb993f | 2006-11-21 00:06:28 +0000 | [diff] [blame] | 500 | #define STRNCASECMP(a, str) strncasecmp((a), (str), sizeof(str)-1) |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 501 | |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 502 | /* Prototypes */ |
Denis Vlasenko | 2f518b0 | 2008-02-21 00:12:07 +0000 | [diff] [blame] | 503 | enum { |
| 504 | SEND_HEADERS = (1 << 0), |
| 505 | SEND_BODY = (1 << 1), |
| 506 | SEND_HEADERS_AND_BODY = SEND_HEADERS + SEND_BODY, |
| 507 | }; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 508 | static void send_file_and_exit(const char *url, int what) NORETURN; |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 509 | |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 510 | static void free_llist(has_next_ptr **pptr) |
| 511 | { |
| 512 | has_next_ptr *cur = *pptr; |
| 513 | while (cur) { |
| 514 | has_next_ptr *t = cur; |
| 515 | cur = cur->next; |
| 516 | free(t); |
| 517 | } |
| 518 | *pptr = NULL; |
| 519 | } |
| 520 | |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 521 | static ALWAYS_INLINE void free_Htaccess_list(Htaccess **pptr) |
| 522 | { |
| 523 | free_llist((has_next_ptr**)pptr); |
| 524 | } |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 525 | |
| 526 | static ALWAYS_INLINE void free_Htaccess_IP_list(Htaccess_IP **pptr) |
| 527 | { |
| 528 | free_llist((has_next_ptr**)pptr); |
| 529 | } |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 530 | |
Denis Vlasenko | d867f32 | 2007-08-19 21:15:42 +0000 | [diff] [blame] | 531 | /* Returns presumed mask width in bits or < 0 on error. |
| 532 | * Updates strp, stores IP at provided pointer */ |
| 533 | static int scan_ip(const char **strp, unsigned *ipp, unsigned char endc) |
Glenn L McGrath | b65422c | 2003-09-08 10:59:27 +0000 | [diff] [blame] | 534 | { |
Denis Vlasenko | d867f32 | 2007-08-19 21:15:42 +0000 | [diff] [blame] | 535 | const char *p = *strp; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 536 | int auto_mask = 8; |
Denis Vlasenko | d867f32 | 2007-08-19 21:15:42 +0000 | [diff] [blame] | 537 | unsigned ip = 0; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 538 | int j; |
Glenn L McGrath | c9163fe | 2003-05-13 16:20:11 +0000 | [diff] [blame] | 539 | |
Denis Vlasenko | d867f32 | 2007-08-19 21:15:42 +0000 | [diff] [blame] | 540 | if (*p == '/') |
| 541 | return -auto_mask; |
| 542 | |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 543 | for (j = 0; j < 4; j++) { |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 544 | unsigned octet; |
Glenn L McGrath | b65422c | 2003-09-08 10:59:27 +0000 | [diff] [blame] | 545 | |
Denis Vlasenko | d867f32 | 2007-08-19 21:15:42 +0000 | [diff] [blame] | 546 | if ((*p < '0' || *p > '9') && *p != '/' && *p) |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 547 | return -auto_mask; |
| 548 | octet = 0; |
| 549 | while (*p >= '0' && *p <= '9') { |
| 550 | octet *= 10; |
| 551 | octet += *p - '0'; |
| 552 | if (octet > 255) |
| 553 | return -auto_mask; |
| 554 | p++; |
| 555 | } |
| 556 | if (*p == '.') |
| 557 | p++; |
Denis Vlasenko | d867f32 | 2007-08-19 21:15:42 +0000 | [diff] [blame] | 558 | if (*p != '/' && *p) |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 559 | auto_mask += 8; |
Denis Vlasenko | d867f32 | 2007-08-19 21:15:42 +0000 | [diff] [blame] | 560 | ip = (ip << 8) | octet; |
Glenn L McGrath | b65422c | 2003-09-08 10:59:27 +0000 | [diff] [blame] | 561 | } |
Denis Vlasenko | d867f32 | 2007-08-19 21:15:42 +0000 | [diff] [blame] | 562 | if (*p) { |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 563 | if (*p != endc) |
| 564 | return -auto_mask; |
| 565 | p++; |
Denis Vlasenko | feac3ce | 2007-08-17 19:20:39 +0000 | [diff] [blame] | 566 | if (*p == '\0') |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 567 | return -auto_mask; |
| 568 | } |
Denis Vlasenko | d867f32 | 2007-08-19 21:15:42 +0000 | [diff] [blame] | 569 | *ipp = ip; |
| 570 | *strp = p; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 571 | return auto_mask; |
Glenn L McGrath | b65422c | 2003-09-08 10:59:27 +0000 | [diff] [blame] | 572 | } |
| 573 | |
Denis Vlasenko | d867f32 | 2007-08-19 21:15:42 +0000 | [diff] [blame] | 574 | /* Returns 0 on success. Stores IP and mask at provided pointers */ |
| 575 | static int scan_ip_mask(const char *str, unsigned *ipp, unsigned *maskp) |
Glenn L McGrath | b65422c | 2003-09-08 10:59:27 +0000 | [diff] [blame] | 576 | { |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 577 | int i; |
Denis Vlasenko | d867f32 | 2007-08-19 21:15:42 +0000 | [diff] [blame] | 578 | unsigned mask; |
| 579 | char *p; |
Glenn L McGrath | b65422c | 2003-09-08 10:59:27 +0000 | [diff] [blame] | 580 | |
Denis Vlasenko | d867f32 | 2007-08-19 21:15:42 +0000 | [diff] [blame] | 581 | i = scan_ip(&str, ipp, '/'); |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 582 | if (i < 0) |
| 583 | return i; |
Glenn L McGrath | b65422c | 2003-09-08 10:59:27 +0000 | [diff] [blame] | 584 | |
Denis Vlasenko | d867f32 | 2007-08-19 21:15:42 +0000 | [diff] [blame] | 585 | if (*str) { |
| 586 | /* there is /xxx after dotted-IP address */ |
| 587 | i = bb_strtou(str, &p, 10); |
| 588 | if (*p == '.') { |
| 589 | /* 'xxx' itself is dotted-IP mask, parse it */ |
| 590 | /* (return 0 (success) only if it has N.N.N.N form) */ |
| 591 | return scan_ip(&str, maskp, '\0') - 32; |
Glenn L McGrath | b65422c | 2003-09-08 10:59:27 +0000 | [diff] [blame] | 592 | } |
Denis Vlasenko | d867f32 | 2007-08-19 21:15:42 +0000 | [diff] [blame] | 593 | if (*p) |
| 594 | return -1; |
Glenn L McGrath | b65422c | 2003-09-08 10:59:27 +0000 | [diff] [blame] | 595 | } |
Denis Vlasenko | d867f32 | 2007-08-19 21:15:42 +0000 | [diff] [blame] | 596 | |
| 597 | if (i > 32) |
Denis Vlasenko | 9275814 | 2006-10-03 19:56:34 +0000 | [diff] [blame] | 598 | return -1; |
Denis Vlasenko | d867f32 | 2007-08-19 21:15:42 +0000 | [diff] [blame] | 599 | |
| 600 | if (sizeof(unsigned) == 4 && i == 32) { |
| 601 | /* mask >>= 32 below may not work */ |
| 602 | mask = 0; |
| 603 | } else { |
| 604 | mask = 0xffffffff; |
| 605 | mask >>= i; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 606 | } |
Denis Vlasenko | d867f32 | 2007-08-19 21:15:42 +0000 | [diff] [blame] | 607 | /* i == 0 -> *maskp = 0x00000000 |
| 608 | * i == 1 -> *maskp = 0x80000000 |
| 609 | * i == 4 -> *maskp = 0xf0000000 |
| 610 | * i == 31 -> *maskp = 0xfffffffe |
| 611 | * i == 32 -> *maskp = 0xffffffff */ |
| 612 | *maskp = (uint32_t)(~mask); |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 613 | return 0; |
Glenn L McGrath | b65422c | 2003-09-08 10:59:27 +0000 | [diff] [blame] | 614 | } |
| 615 | |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 616 | /* |
| 617 | * Parse configuration file into in-memory linked list. |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 618 | * |
Glenn L McGrath | 4fe3ff8 | 2003-05-19 05:56:16 +0000 | [diff] [blame] | 619 | * Any previous IP rules are discarded. |
| 620 | * If the flag argument is not SUBDIR_PARSE then all /path and mime rules |
| 621 | * are also discarded. That is, previous settings are retained if flag is |
| 622 | * SUBDIR_PARSE. |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 623 | * Error pages are only parsed on the main config file. |
Glenn L McGrath | 4fe3ff8 | 2003-05-19 05:56:16 +0000 | [diff] [blame] | 624 | * |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 625 | * path Path where to look for httpd.conf (without filename). |
| 626 | * flag Type of the parse request. |
| 627 | */ |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 628 | /* flag param: */ |
| 629 | enum { |
| 630 | FIRST_PARSE = 0, /* path will be "/etc" */ |
| 631 | SIGNALED_PARSE = 1, /* path will be "/etc" */ |
| 632 | SUBDIR_PARSE = 2, /* path will be derived from URL */ |
| 633 | }; |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 634 | static void parse_conf(const char *path, int flag) |
| 635 | { |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 636 | /* internally used extra flag state */ |
| 637 | enum { TRY_CURDIR_PARSE = 3 }; |
| 638 | |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 639 | FILE *f; |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 640 | const char *filename; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 641 | char buf[160]; |
Glenn L McGrath | c9163fe | 2003-05-13 16:20:11 +0000 | [diff] [blame] | 642 | |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 643 | /* discard old rules */ |
| 644 | free_Htaccess_IP_list(&ip_a_d); |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 645 | flg_deny_all = 0; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 646 | /* retain previous auth and mime config only for subdir parse */ |
| 647 | if (flag != SUBDIR_PARSE) { |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 648 | free_Htaccess_list(&mime_a); |
Denis Vlasenko | 55a9940 | 2006-09-30 20:41:44 +0000 | [diff] [blame] | 649 | #if ENABLE_FEATURE_HTTPD_BASIC_AUTH |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 650 | free_Htaccess_list(&g_auth); |
Glenn L McGrath | c9163fe | 2003-05-13 16:20:11 +0000 | [diff] [blame] | 651 | #endif |
Denis Vlasenko | 55a9940 | 2006-09-30 20:41:44 +0000 | [diff] [blame] | 652 | #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 653 | free_Htaccess_list(&script_i); |
"Vladimir N. Oleynik" | 4333a09 | 2006-01-31 13:53:30 +0000 | [diff] [blame] | 654 | #endif |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 655 | } |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 656 | |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 657 | filename = opt_c_configFile; |
Denis Vlasenko | 0eb406c | 2008-06-13 09:53:06 +0000 | [diff] [blame] | 658 | if (flag == SUBDIR_PARSE || filename == NULL) { |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 659 | filename = alloca(strlen(path) + sizeof(HTTPD_CONF) + 2); |
| 660 | sprintf((char *)filename, "%s/%s", path, HTTPD_CONF); |
Glenn L McGrath | 393183d | 2003-05-26 14:07:50 +0000 | [diff] [blame] | 661 | } |
| 662 | |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 663 | while ((f = fopen_for_read(filename)) == NULL) { |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 664 | if (flag >= SUBDIR_PARSE) { /* SUBDIR or TRY_CURDIR */ |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 665 | /* config file not found, no changes to config */ |
| 666 | return; |
| 667 | } |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 668 | if (flag == FIRST_PARSE) { |
| 669 | /* -c CONFFILE given, but CONFFILE doesn't exist? */ |
| 670 | if (opt_c_configFile) |
| 671 | bb_simple_perror_msg_and_die(opt_c_configFile); |
| 672 | /* else: no -c, thus we looked at /etc/httpd.conf, |
| 673 | * and it's not there. try ./httpd.conf: */ |
| 674 | } |
| 675 | flag = TRY_CURDIR_PARSE; |
| 676 | filename = HTTPD_CONF; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 677 | } |
| 678 | |
Denis Vlasenko | 55a9940 | 2006-09-30 20:41:44 +0000 | [diff] [blame] | 679 | #if ENABLE_FEATURE_HTTPD_BASIC_AUTH |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 680 | /* in "/file:user:pass" lines, we prepend path in subdirs */ |
| 681 | if (flag != SUBDIR_PARSE) |
| 682 | path = ""; |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 683 | #endif |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 684 | /* The lines can be: |
| 685 | * |
| 686 | * I:default_index_file |
| 687 | * H:http_home |
| 688 | * [AD]:IP[/mask] # allow/deny, * for wildcard |
| 689 | * Ennn:error.html # error page for status nnn |
| 690 | * P:/url:[http://]hostname[:port]/new/path # reverse proxy |
| 691 | * .ext:mime/type # mime type |
| 692 | * *.php:/path/php # run xxx.php through an interpreter |
| 693 | * /file:user:pass # username and password |
| 694 | */ |
| 695 | while (fgets(buf, sizeof(buf), f) != NULL) { |
| 696 | unsigned strlen_buf; |
| 697 | unsigned char ch; |
Denys Vlasenko | 48a29de | 2009-05-02 00:50:38 +0200 | [diff] [blame] | 698 | char *after_colon; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 699 | |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 700 | { /* remove all whitespace, and # comments */ |
| 701 | char *p, *p0; |
| 702 | |
Denys Vlasenko | 48a29de | 2009-05-02 00:50:38 +0200 | [diff] [blame] | 703 | p0 = buf; |
| 704 | /* skip non-whitespace beginning. Often the whole line |
| 705 | * is non-whitespace. We want this case to work fast, |
| 706 | * without needless copying, therefore we don't merge |
| 707 | * this operation into next while loop. */ |
| 708 | while ((ch = *p0) != '\0' && ch != '\n' && ch != '#' |
| 709 | && ch != ' ' && ch != '\t' |
| 710 | ) { |
| 711 | p0++; |
| 712 | } |
| 713 | p = p0; |
| 714 | /* if we enter this loop, we have some whitespace. |
| 715 | * discard it */ |
| 716 | while (ch != '\0' && ch != '\n' && ch != '#') { |
| 717 | if (ch != ' ' && ch != '\t') { |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 718 | *p++ = ch; |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 719 | } |
Denys Vlasenko | 48a29de | 2009-05-02 00:50:38 +0200 | [diff] [blame] | 720 | ch = *++p0; |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 721 | } |
| 722 | *p = '\0'; |
| 723 | strlen_buf = p - buf; |
Denis Vlasenko | 00643ca | 2009-04-22 13:52:22 +0000 | [diff] [blame] | 724 | if (strlen_buf == 0) |
Denys Vlasenko | 48a29de | 2009-05-02 00:50:38 +0200 | [diff] [blame] | 725 | continue; /* empty line */ |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 726 | } |
| 727 | |
Denys Vlasenko | 48a29de | 2009-05-02 00:50:38 +0200 | [diff] [blame] | 728 | after_colon = strchr(buf, ':'); |
Denis Vlasenko | 00643ca | 2009-04-22 13:52:22 +0000 | [diff] [blame] | 729 | /* strange line? */ |
Denys Vlasenko | 48a29de | 2009-05-02 00:50:38 +0200 | [diff] [blame] | 730 | if (after_colon == NULL || *++after_colon == '\0') |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 731 | goto config_error; |
| 732 | |
| 733 | ch = (buf[0] & ~0x20); /* toupper if it's a letter */ |
| 734 | |
| 735 | if (ch == 'I') { |
Denys Vlasenko | 108b8c5 | 2009-09-08 21:17:49 +0200 | [diff] [blame] | 736 | if (index_page != index_html) |
| 737 | free((char*)index_page); |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 738 | index_page = xstrdup(after_colon); |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 739 | continue; |
| 740 | } |
| 741 | |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 742 | /* do not allow jumping around using H in subdir's configs */ |
| 743 | if (flag == FIRST_PARSE && ch == 'H') { |
| 744 | home_httpd = xstrdup(after_colon); |
| 745 | xchdir(home_httpd); |
| 746 | continue; |
| 747 | } |
| 748 | |
| 749 | if (ch == 'A' || ch == 'D') { |
| 750 | Htaccess_IP *pip; |
| 751 | |
| 752 | if (*after_colon == '*') { |
| 753 | if (ch == 'D') { |
| 754 | /* memorize "deny all" */ |
| 755 | flg_deny_all = 1; |
| 756 | } |
| 757 | /* skip assumed "A:*", it is a default anyway */ |
| 758 | continue; |
| 759 | } |
| 760 | /* store "allow/deny IP/mask" line */ |
| 761 | pip = xzalloc(sizeof(*pip)); |
| 762 | if (scan_ip_mask(after_colon, &pip->ip, &pip->mask)) { |
Denis Vlasenko | 0eb406c | 2008-06-13 09:53:06 +0000 | [diff] [blame] | 763 | /* IP{/mask} syntax error detected, protect all */ |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 764 | ch = 'D'; |
Denis Vlasenko | 0eb406c | 2008-06-13 09:53:06 +0000 | [diff] [blame] | 765 | pip->mask = 0; |
| 766 | } |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 767 | pip->allow_deny = ch; |
| 768 | if (ch == 'D') { |
Denis Vlasenko | 0eb406c | 2008-06-13 09:53:06 +0000 | [diff] [blame] | 769 | /* Deny:from_IP - prepend */ |
| 770 | pip->next = ip_a_d; |
| 771 | ip_a_d = pip; |
| 772 | } else { |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 773 | /* A:from_IP - append (thus all D's precedes A's) */ |
Denis Vlasenko | 0eb406c | 2008-06-13 09:53:06 +0000 | [diff] [blame] | 774 | Htaccess_IP *prev_IP = ip_a_d; |
| 775 | if (prev_IP == NULL) { |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 776 | ip_a_d = pip; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 777 | } else { |
Denis Vlasenko | 0eb406c | 2008-06-13 09:53:06 +0000 | [diff] [blame] | 778 | while (prev_IP->next) |
| 779 | prev_IP = prev_IP->next; |
| 780 | prev_IP->next = pip; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 781 | } |
| 782 | } |
| 783 | continue; |
| 784 | } |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 785 | |
| 786 | #if ENABLE_FEATURE_HTTPD_ERROR_PAGES |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 787 | if (flag == FIRST_PARSE && ch == 'E') { |
Denis Vlasenko | 6b06cb8 | 2008-05-15 21:30:45 +0000 | [diff] [blame] | 788 | unsigned i; |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 789 | int status = atoi(buf + 1); /* error status code */ |
| 790 | |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 791 | if (status < HTTP_CONTINUE) { |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 792 | goto config_error; |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 793 | } |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 794 | /* then error page; find matching status */ |
| 795 | for (i = 0; i < ARRAY_SIZE(http_response_type); i++) { |
| 796 | if (http_response_type[i] == status) { |
Denis Vlasenko | 0eb406c | 2008-06-13 09:53:06 +0000 | [diff] [blame] | 797 | /* We chdir to home_httpd, thus no need to |
| 798 | * concat_path_file(home_httpd, after_colon) |
| 799 | * here */ |
| 800 | http_error_page[i] = xstrdup(after_colon); |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 801 | break; |
| 802 | } |
| 803 | } |
| 804 | continue; |
| 805 | } |
| 806 | #endif |
| 807 | |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 808 | #if ENABLE_FEATURE_HTTPD_PROXY |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 809 | if (flag == FIRST_PARSE && ch == 'P') { |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 810 | /* P:/url:[http://]hostname[:port]/new/path */ |
| 811 | char *url_from, *host_port, *url_to; |
| 812 | Htaccess_Proxy *proxy_entry; |
| 813 | |
Denis Vlasenko | 0eb406c | 2008-06-13 09:53:06 +0000 | [diff] [blame] | 814 | url_from = after_colon; |
| 815 | host_port = strchr(after_colon, ':'); |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 816 | if (host_port == NULL) { |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 817 | goto config_error; |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 818 | } |
| 819 | *host_port++ = '\0'; |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 820 | if (is_prefixed_with(host_port, "http://")) |
Denis Vlasenko | 78ee7c8 | 2007-10-21 23:24:42 +0000 | [diff] [blame] | 821 | host_port += 7; |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 822 | if (*host_port == '\0') { |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 823 | goto config_error; |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 824 | } |
| 825 | url_to = strchr(host_port, '/'); |
| 826 | if (url_to == NULL) { |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 827 | goto config_error; |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 828 | } |
| 829 | *url_to = '\0'; |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 830 | proxy_entry = xzalloc(sizeof(*proxy_entry)); |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 831 | proxy_entry->url_from = xstrdup(url_from); |
| 832 | proxy_entry->host_port = xstrdup(host_port); |
| 833 | *url_to = '/'; |
| 834 | proxy_entry->url_to = xstrdup(url_to); |
| 835 | proxy_entry->next = proxy; |
| 836 | proxy = proxy_entry; |
| 837 | continue; |
| 838 | } |
| 839 | #endif |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 840 | /* the rest of directives are non-alphabetic, |
| 841 | * must avoid using "toupper'ed" ch */ |
| 842 | ch = buf[0]; |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 843 | |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 844 | if (ch == '.' /* ".ext:mime/type" */ |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 845 | #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 846 | || (ch == '*' && buf[1] == '.') /* "*.php:/path/php" */ |
| 847 | #endif |
| 848 | ) { |
| 849 | char *p; |
| 850 | Htaccess *cur; |
| 851 | |
| 852 | cur = xzalloc(sizeof(*cur) /* includes space for NUL */ + strlen_buf); |
| 853 | strcpy(cur->before_colon, buf); |
| 854 | p = cur->before_colon + (after_colon - buf); |
| 855 | p[-1] = '\0'; |
| 856 | cur->after_colon = p; |
| 857 | if (ch == '.') { |
| 858 | /* .mime line: prepend to mime_a list */ |
| 859 | cur->next = mime_a; |
| 860 | mime_a = cur; |
| 861 | } |
| 862 | #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR |
| 863 | else { |
| 864 | /* script interpreter line: prepend to script_i list */ |
| 865 | cur->next = script_i; |
| 866 | script_i = cur; |
| 867 | } |
| 868 | #endif |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 869 | continue; |
| 870 | } |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 871 | |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 872 | #if ENABLE_FEATURE_HTTPD_BASIC_AUTH |
| 873 | if (ch == '/') { /* "/file:user:pass" */ |
| 874 | char *p; |
| 875 | Htaccess *cur; |
| 876 | unsigned file_len; |
| 877 | |
| 878 | /* note: path is "" unless we are in SUBDIR parse, |
Denis Vlasenko | c8d7109 | 2009-04-22 14:16:59 +0000 | [diff] [blame] | 879 | * otherwise it does NOT start with "/" */ |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 880 | cur = xzalloc(sizeof(*cur) /* includes space for NUL */ |
Denis Vlasenko | c8d7109 | 2009-04-22 14:16:59 +0000 | [diff] [blame] | 881 | + 1 + strlen(path) |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 882 | + strlen_buf |
| 883 | ); |
| 884 | /* form "/path/file" */ |
Denis Vlasenko | c8d7109 | 2009-04-22 14:16:59 +0000 | [diff] [blame] | 885 | sprintf(cur->before_colon, "/%s%.*s", |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 886 | path, |
Denys Vlasenko | a4bcbd0 | 2009-06-09 23:01:24 +0200 | [diff] [blame] | 887 | (int) (after_colon - buf - 1), /* includes "/", but not ":" */ |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 888 | buf); |
| 889 | /* canonicalize it */ |
| 890 | p = bb_simplify_abs_path_inplace(cur->before_colon); |
| 891 | file_len = p - cur->before_colon; |
| 892 | /* add "user:pass" after NUL */ |
| 893 | strcpy(++p, after_colon); |
| 894 | cur->after_colon = p; |
| 895 | |
| 896 | /* insert cur into g_auth */ |
| 897 | /* g_auth is sorted by decreased filename length */ |
| 898 | { |
| 899 | Htaccess *auth, **authp; |
| 900 | |
| 901 | authp = &g_auth; |
| 902 | while ((auth = *authp) != NULL) { |
| 903 | if (file_len >= strlen(auth->before_colon)) { |
| 904 | /* insert cur before auth */ |
| 905 | cur->next = auth; |
| 906 | break; |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 907 | } |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 908 | authp = &auth->next; |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 909 | } |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 910 | *authp = cur; |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 911 | } |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 912 | continue; |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 913 | } |
| 914 | #endif /* BASIC_AUTH */ |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 915 | |
| 916 | /* the line is not recognized */ |
| 917 | config_error: |
| 918 | bb_error_msg("config error '%s' in '%s'", buf, filename); |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 919 | } /* while (fgets) */ |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 920 | |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 921 | fclose(f); |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 922 | } |
| 923 | |
Denis Vlasenko | 55a9940 | 2006-09-30 20:41:44 +0000 | [diff] [blame] | 924 | #if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 925 | /* |
| 926 | * Given a string, html-encode special characters. |
| 927 | * This is used for the -e command line option to provide an easy way |
| 928 | * for scripts to encode result data without confusing browsers. The |
| 929 | * returned string pointer is memory allocated by malloc(). |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 930 | * |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 931 | * Returns a pointer to the encoded string (malloced). |
| 932 | */ |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 933 | static char *encodeString(const char *string) |
| 934 | { |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 935 | /* take the simple route and encode everything */ |
| 936 | /* could possibly scan once to get length. */ |
| 937 | int len = strlen(string); |
Denis Vlasenko | ab2aea4 | 2007-01-29 22:51:58 +0000 | [diff] [blame] | 938 | char *out = xmalloc(len * 6 + 1); |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 939 | char *p = out; |
| 940 | char ch; |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 941 | |
Denys Vlasenko | 535ce1d | 2010-07-25 03:20:25 +0200 | [diff] [blame] | 942 | while ((ch = *string++) != '\0') { |
Denis Vlasenko | 72b6a65 | 2007-08-21 11:18:25 +0000 | [diff] [blame] | 943 | /* very simple check for what to encode */ |
| 944 | if (isalnum(ch)) |
| 945 | *p++ = ch; |
| 946 | else |
| 947 | p += sprintf(p, "&#%d;", (unsigned char) ch); |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 948 | } |
Denis Vlasenko | ab2aea4 | 2007-01-29 22:51:58 +0000 | [diff] [blame] | 949 | *p = '\0'; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 950 | return out; |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 951 | } |
Denys Vlasenko | 535ce1d | 2010-07-25 03:20:25 +0200 | [diff] [blame] | 952 | #endif |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 953 | |
Denis Vlasenko | 55a9940 | 2006-09-30 20:41:44 +0000 | [diff] [blame] | 954 | #if ENABLE_FEATURE_HTTPD_BASIC_AUTH |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 955 | /* |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 956 | * Decode a base64 data stream as per rfc1521. |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 957 | * Note that the rfc states that non base64 chars are to be ignored. |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 958 | * Since the decode always results in a shorter size than the input, |
| 959 | * it is OK to pass the input arg as an output arg. |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 960 | * Parameter: a pointer to a base64 encoded string. |
| 961 | * Decoded data is stored in-place. |
| 962 | */ |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 963 | static void decodeBase64(char *Data) |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 964 | { |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 965 | const unsigned char *in = (const unsigned char *)Data; |
Denis Vlasenko | 37c3316 | 2007-08-19 18:54:22 +0000 | [diff] [blame] | 966 | /* The decoded size will be at most 3/4 the size of the encoded */ |
Denis Vlasenko | 088b959 | 2007-04-18 21:14:46 +0000 | [diff] [blame] | 967 | unsigned ch = 0; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 968 | int i = 0; |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 969 | |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 970 | while (*in) { |
| 971 | int t = *in++; |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 972 | |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 973 | if (t >= '0' && t <= '9') |
| 974 | t = t - '0' + 52; |
| 975 | else if (t >= 'A' && t <= 'Z') |
| 976 | t = t - 'A'; |
| 977 | else if (t >= 'a' && t <= 'z') |
| 978 | t = t - 'a' + 26; |
| 979 | else if (t == '+') |
| 980 | t = 62; |
| 981 | else if (t == '/') |
| 982 | t = 63; |
| 983 | else if (t == '=') |
| 984 | t = 0; |
| 985 | else |
| 986 | continue; |
Glenn L McGrath | 874e338 | 2003-05-14 12:11:36 +0000 | [diff] [blame] | 987 | |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 988 | ch = (ch << 6) | t; |
| 989 | i++; |
| 990 | if (i == 4) { |
| 991 | *Data++ = (char) (ch >> 16); |
| 992 | *Data++ = (char) (ch >> 8); |
| 993 | *Data++ = (char) ch; |
| 994 | i = 0; |
| 995 | } |
| 996 | } |
Denis Vlasenko | 088b959 | 2007-04-18 21:14:46 +0000 | [diff] [blame] | 997 | *Data = '\0'; |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 998 | } |
| 999 | #endif |
| 1000 | |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 1001 | /* |
| 1002 | * Create a listen server socket on the designated port. |
| 1003 | */ |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 1004 | static int openServer(void) |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 1005 | { |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 1006 | unsigned n = bb_strtou(bind_addr_or_port, NULL, 10); |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 1007 | if (!errno && n && n <= 0xffff) |
| 1008 | n = create_and_bind_stream_or_die(NULL, n); |
| 1009 | else |
| 1010 | n = create_and_bind_stream_or_die(bind_addr_or_port, 80); |
| 1011 | xlisten(n, 9); |
| 1012 | return n; |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 1013 | } |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 1014 | |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 1015 | /* |
Denis Vlasenko | feac3ce | 2007-08-17 19:20:39 +0000 | [diff] [blame] | 1016 | * Log the connection closure and exit. |
| 1017 | */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 1018 | static void log_and_exit(void) NORETURN; |
Denis Vlasenko | feac3ce | 2007-08-17 19:20:39 +0000 | [diff] [blame] | 1019 | static void log_and_exit(void) |
| 1020 | { |
Denis Vlasenko | 921799d | 2007-08-19 19:28:09 +0000 | [diff] [blame] | 1021 | /* Paranoia. IE said to be buggy. It may send some extra data |
| 1022 | * or be confused by us just exiting without SHUT_WR. Oh well. */ |
| 1023 | shutdown(1, SHUT_WR); |
Denis Vlasenko | faf334a | 2008-05-18 15:14:36 +0000 | [diff] [blame] | 1024 | /* Why?? |
| 1025 | (this also messes up stdin when user runs httpd -i from terminal) |
Denis Vlasenko | 921799d | 2007-08-19 19:28:09 +0000 | [diff] [blame] | 1026 | ndelay_on(0); |
Bernhard Reutner-Fischer | 5e25ddb | 2008-05-19 09:48:17 +0000 | [diff] [blame] | 1027 | while (read(STDIN_FILENO, iobuf, IOBUF_SIZE) > 0) |
Denis Vlasenko | 921799d | 2007-08-19 19:28:09 +0000 | [diff] [blame] | 1028 | continue; |
Denis Vlasenko | faf334a | 2008-05-18 15:14:36 +0000 | [diff] [blame] | 1029 | */ |
Denis Vlasenko | 921799d | 2007-08-19 19:28:09 +0000 | [diff] [blame] | 1030 | |
Denis Vlasenko | feac3ce | 2007-08-17 19:20:39 +0000 | [diff] [blame] | 1031 | if (verbose > 2) |
| 1032 | bb_error_msg("closed"); |
| 1033 | _exit(xfunc_error_retval); |
| 1034 | } |
| 1035 | |
| 1036 | /* |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 1037 | * Create and send HTTP response headers. |
| 1038 | * The arguments are combined and sent as one write operation. Note that |
| 1039 | * IE will puke big-time if the headers are not sent in one packet and the |
| 1040 | * second packet is delayed for any reason. |
| 1041 | * responseNum - the result code to send. |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 1042 | */ |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 1043 | static void send_headers(int responseNum) |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 1044 | { |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 1045 | static const char RFC1123FMT[] ALIGN1 = "%a, %d %b %Y %H:%M:%S GMT"; |
Denys Vlasenko | 9f8eb1e | 2016-11-22 02:23:35 +0100 | [diff] [blame] | 1046 | /* Fixed size 29-byte string. Example: Sun, 06 Nov 1994 08:49:37 GMT */ |
| 1047 | char date_str[40]; /* using a bit larger buffer to paranoia reasons */ |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 1048 | |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 1049 | const char *responseString = ""; |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 1050 | const char *infoString = NULL; |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 1051 | #if ENABLE_FEATURE_HTTPD_ERROR_PAGES |
Denis Vlasenko | 2f518b0 | 2008-02-21 00:12:07 +0000 | [diff] [blame] | 1052 | const char *error_page = NULL; |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 1053 | #endif |
Denis Vlasenko | b64eed6 | 2007-01-14 17:06:11 +0000 | [diff] [blame] | 1054 | unsigned i; |
Denis Vlasenko | 04158e0 | 2009-02-02 10:48:06 +0000 | [diff] [blame] | 1055 | time_t timer = time(NULL); |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 1056 | int len; |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 1057 | |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 1058 | for (i = 0; i < ARRAY_SIZE(http_response_type); i++) { |
| 1059 | if (http_response_type[i] == responseNum) { |
| 1060 | responseString = http_response[i].name; |
| 1061 | infoString = http_response[i].info; |
| 1062 | #if ENABLE_FEATURE_HTTPD_ERROR_PAGES |
| 1063 | error_page = http_error_page[i]; |
| 1064 | #endif |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 1065 | break; |
| 1066 | } |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 1067 | } |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 1068 | |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 1069 | if (verbose) |
Denis Vlasenko | 241b156 | 2007-08-17 19:18:47 +0000 | [diff] [blame] | 1070 | bb_error_msg("response:%u", responseNum); |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 1071 | |
Denys Vlasenko | 9f8eb1e | 2016-11-22 02:23:35 +0100 | [diff] [blame] | 1072 | /* We use sprintf, not snprintf (it's less code). |
| 1073 | * iobuf[] is several kbytes long and all headers we generate |
| 1074 | * always fit into those kbytes. |
| 1075 | */ |
| 1076 | |
| 1077 | strftime(date_str, sizeof(date_str), RFC1123FMT, gmtime(&timer)); |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 1078 | len = sprintf(iobuf, |
Denys Vlasenko | 9f8eb1e | 2016-11-22 02:23:35 +0100 | [diff] [blame] | 1079 | "HTTP/1.0 %d %s\r\n" |
| 1080 | "Content-type: %s\r\n" |
| 1081 | "Date: %s\r\n" |
| 1082 | "Connection: close\r\n", |
| 1083 | responseNum, responseString, |
| 1084 | /* if it's error message, then it's HTML */ |
| 1085 | (responseNum == HTTP_OK ? found_mime_type : "text/html"), |
| 1086 | date_str |
| 1087 | ); |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 1088 | |
Denis Vlasenko | 55a9940 | 2006-09-30 20:41:44 +0000 | [diff] [blame] | 1089 | #if ENABLE_FEATURE_HTTPD_BASIC_AUTH |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 1090 | if (responseNum == HTTP_UNAUTHORIZED) { |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 1091 | len += sprintf(iobuf + len, |
Denys Vlasenko | 9f8eb1e | 2016-11-22 02:23:35 +0100 | [diff] [blame] | 1092 | "WWW-Authenticate: Basic realm=\"%.999s\"\r\n", |
| 1093 | g_realm /* %.999s protects from overflowing iobuf[] */ |
| 1094 | ); |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 1095 | } |
Glenn L McGrath | 3d2405c | 2003-02-10 22:28:21 +0000 | [diff] [blame] | 1096 | #endif |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 1097 | if (responseNum == HTTP_MOVED_TEMPORARILY) { |
Denys Vlasenko | 59f8475 | 2015-10-23 11:49:04 +0200 | [diff] [blame] | 1098 | /* Responding to "GET /dir" with |
| 1099 | * "HTTP/1.0 302 Found" "Location: /dir/" |
| 1100 | * - IOW, asking them to repeat with a slash. |
| 1101 | * Here, overflow IS possible, can't use sprintf: |
| 1102 | * mkdir test |
| 1103 | * python -c 'print("get /test?" + ("x" * 8192))' | busybox httpd -i -h . |
| 1104 | */ |
| 1105 | len += snprintf(iobuf + len, IOBUF_SIZE-3 - len, |
| 1106 | "Location: %s/%s%s\r\n", |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 1107 | found_moved_temporarily, |
| 1108 | (g_query ? "?" : ""), |
Denys Vlasenko | 9f8eb1e | 2016-11-22 02:23:35 +0100 | [diff] [blame] | 1109 | (g_query ? g_query : "") |
| 1110 | ); |
Denys Vlasenko | 59f8475 | 2015-10-23 11:49:04 +0200 | [diff] [blame] | 1111 | if (len > IOBUF_SIZE-3) |
| 1112 | len = IOBUF_SIZE-3; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 1113 | } |
Eric Andersen | 07f2fea | 2004-10-08 08:03:29 +0000 | [diff] [blame] | 1114 | |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 1115 | #if ENABLE_FEATURE_HTTPD_ERROR_PAGES |
Denis Vlasenko | 6bf05cf | 2008-05-07 12:18:48 +0000 | [diff] [blame] | 1116 | if (error_page && access(error_page, R_OK) == 0) { |
Denys Vlasenko | 59f8475 | 2015-10-23 11:49:04 +0200 | [diff] [blame] | 1117 | iobuf[len++] = '\r'; |
| 1118 | iobuf[len++] = '\n'; |
| 1119 | if (DEBUG) { |
| 1120 | iobuf[len] = '\0'; |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 1121 | fprintf(stderr, "headers: '%s'\n", iobuf); |
Denys Vlasenko | 59f8475 | 2015-10-23 11:49:04 +0200 | [diff] [blame] | 1122 | } |
Bernhard Reutner-Fischer | 5e25ddb | 2008-05-19 09:48:17 +0000 | [diff] [blame] | 1123 | full_write(STDOUT_FILENO, iobuf, len); |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 1124 | if (DEBUG) |
| 1125 | fprintf(stderr, "writing error page: '%s'\n", error_page); |
Denis Vlasenko | 2f518b0 | 2008-02-21 00:12:07 +0000 | [diff] [blame] | 1126 | return send_file_and_exit(error_page, SEND_BODY); |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 1127 | } |
| 1128 | #endif |
| 1129 | |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 1130 | if (file_size != -1) { /* file */ |
Denys Vlasenko | 9f8eb1e | 2016-11-22 02:23:35 +0100 | [diff] [blame] | 1131 | strftime(date_str, sizeof(date_str), RFC1123FMT, gmtime(&last_mod)); |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 1132 | #if ENABLE_FEATURE_HTTPD_RANGES |
| 1133 | if (responseNum == HTTP_PARTIAL_CONTENT) { |
Denys Vlasenko | 9f8eb1e | 2016-11-22 02:23:35 +0100 | [diff] [blame] | 1134 | len += sprintf(iobuf + len, |
| 1135 | "Content-Range: bytes %"OFF_FMT"u-%"OFF_FMT"u/%"OFF_FMT"u\r\n", |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 1136 | range_start, |
| 1137 | range_end, |
Denys Vlasenko | 9f8eb1e | 2016-11-22 02:23:35 +0100 | [diff] [blame] | 1138 | file_size |
| 1139 | ); |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 1140 | file_size = range_end - range_start + 1; |
| 1141 | } |
| 1142 | #endif |
| 1143 | len += sprintf(iobuf + len, |
| 1144 | #if ENABLE_FEATURE_HTTPD_RANGES |
| 1145 | "Accept-Ranges: bytes\r\n" |
| 1146 | #endif |
Denys Vlasenko | 9f8eb1e | 2016-11-22 02:23:35 +0100 | [diff] [blame] | 1147 | "Last-Modified: %s\r\n" |
| 1148 | "%s %"OFF_FMT"u\r\n", |
| 1149 | date_str, |
Denys Vlasenko | 8cc1ab3 | 2017-02-04 23:19:30 +0100 | [diff] [blame] | 1150 | content_gzip ? "Transfer-Length:" : "Content-Length:", |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 1151 | file_size |
| 1152 | ); |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 1153 | } |
Peter Korsgaard | 7a2ba32 | 2010-07-25 03:20:53 +0200 | [diff] [blame] | 1154 | |
| 1155 | if (content_gzip) |
| 1156 | len += sprintf(iobuf + len, "Content-Encoding: gzip\r\n"); |
| 1157 | |
Denis Vlasenko | feac3ce | 2007-08-17 19:20:39 +0000 | [diff] [blame] | 1158 | iobuf[len++] = '\r'; |
| 1159 | iobuf[len++] = '\n'; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 1160 | if (infoString) { |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 1161 | len += sprintf(iobuf + len, |
Denis Vlasenko | 1b9064d | 2007-08-12 21:05:49 +0000 | [diff] [blame] | 1162 | "<HTML><HEAD><TITLE>%d %s</TITLE></HEAD>\n" |
Denys Vlasenko | 9f8eb1e | 2016-11-22 02:23:35 +0100 | [diff] [blame] | 1163 | "<BODY><H1>%d %s</H1>\n" |
| 1164 | "%s\n" |
| 1165 | "</BODY></HTML>\n", |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 1166 | responseNum, responseString, |
Denys Vlasenko | 9f8eb1e | 2016-11-22 02:23:35 +0100 | [diff] [blame] | 1167 | responseNum, responseString, |
| 1168 | infoString |
| 1169 | ); |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 1170 | } |
Denys Vlasenko | 59f8475 | 2015-10-23 11:49:04 +0200 | [diff] [blame] | 1171 | if (DEBUG) { |
| 1172 | iobuf[len] = '\0'; |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 1173 | fprintf(stderr, "headers: '%s'\n", iobuf); |
Denys Vlasenko | 59f8475 | 2015-10-23 11:49:04 +0200 | [diff] [blame] | 1174 | } |
Bernhard Reutner-Fischer | 5e25ddb | 2008-05-19 09:48:17 +0000 | [diff] [blame] | 1175 | if (full_write(STDOUT_FILENO, iobuf, len) != len) { |
Denis Vlasenko | feac3ce | 2007-08-17 19:20:39 +0000 | [diff] [blame] | 1176 | if (verbose > 1) |
| 1177 | bb_perror_msg("error"); |
| 1178 | log_and_exit(); |
| 1179 | } |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 1180 | } |
| 1181 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 1182 | static void send_headers_and_exit(int responseNum) NORETURN; |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 1183 | static void send_headers_and_exit(int responseNum) |
Denis Vlasenko | e45af73 | 2007-08-17 19:19:15 +0000 | [diff] [blame] | 1184 | { |
Peter Korsgaard | 9575518 | 2011-03-25 13:38:52 +0100 | [diff] [blame] | 1185 | IF_FEATURE_HTTPD_GZIP(content_gzip = 0;) |
Denis Vlasenko | feac3ce | 2007-08-17 19:20:39 +0000 | [diff] [blame] | 1186 | send_headers(responseNum); |
| 1187 | log_and_exit(); |
Denis Vlasenko | e45af73 | 2007-08-17 19:19:15 +0000 | [diff] [blame] | 1188 | } |
| 1189 | |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 1190 | /* |
| 1191 | * Read from the socket until '\n' or EOF. '\r' chars are removed. |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 1192 | * '\n' is replaced with NUL. |
| 1193 | * Return number of characters read or 0 if nothing is read |
| 1194 | * ('\r' and '\n' are not counted). |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 1195 | * Data is returned in iobuf. |
| 1196 | */ |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 1197 | static int get_line(void) |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 1198 | { |
Denis Vlasenko | 6c5e5a0 | 2006-11-10 23:28:57 +0000 | [diff] [blame] | 1199 | int count = 0; |
Denis Vlasenko | d6cd9d7 | 2007-08-18 14:22:09 +0000 | [diff] [blame] | 1200 | char c; |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 1201 | |
Denis Vlasenko | 2ca84f6 | 2009-02-05 12:38:21 +0000 | [diff] [blame] | 1202 | alarm(HEADER_READ_TIMEOUT); |
Denis Vlasenko | d6cd9d7 | 2007-08-18 14:22:09 +0000 | [diff] [blame] | 1203 | while (1) { |
| 1204 | if (hdr_cnt <= 0) { |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 1205 | hdr_cnt = safe_read(STDIN_FILENO, hdr_buf, sizeof_hdr_buf); |
Denis Vlasenko | d6cd9d7 | 2007-08-18 14:22:09 +0000 | [diff] [blame] | 1206 | if (hdr_cnt <= 0) |
| 1207 | break; |
| 1208 | hdr_ptr = hdr_buf; |
| 1209 | } |
| 1210 | iobuf[count] = c = *hdr_ptr++; |
| 1211 | hdr_cnt--; |
| 1212 | |
| 1213 | if (c == '\r') |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 1214 | continue; |
Denis Vlasenko | d6cd9d7 | 2007-08-18 14:22:09 +0000 | [diff] [blame] | 1215 | if (c == '\n') { |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 1216 | iobuf[count] = '\0'; |
Denis Vlasenko | 2ca84f6 | 2009-02-05 12:38:21 +0000 | [diff] [blame] | 1217 | break; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 1218 | } |
Denis Vlasenko | 921799d | 2007-08-19 19:28:09 +0000 | [diff] [blame] | 1219 | if (count < (IOBUF_SIZE - 1)) /* check overflow */ |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 1220 | count++; |
| 1221 | } |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 1222 | return count; |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 1223 | } |
| 1224 | |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 1225 | #if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1226 | |
| 1227 | /* gcc 4.2.1 fares better with NOINLINE */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 1228 | static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len) NORETURN; |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1229 | static NOINLINE void cgi_io_loop_and_exit(int fromCgi_rd, int toCgi_wr, int post_len) |
| 1230 | { |
| 1231 | enum { FROM_CGI = 1, TO_CGI = 2 }; /* indexes in pfd[] */ |
| 1232 | struct pollfd pfd[3]; |
| 1233 | int out_cnt; /* we buffer a bit of initial CGI output */ |
| 1234 | int count; |
| 1235 | |
| 1236 | /* iobuf is used for CGI -> network data, |
| 1237 | * hdr_buf is for network -> CGI data (POSTDATA) */ |
| 1238 | |
| 1239 | /* If CGI dies, we still want to correctly finish reading its output |
| 1240 | * and send it to the peer. So please no SIGPIPEs! */ |
| 1241 | signal(SIGPIPE, SIG_IGN); |
| 1242 | |
Denis Vlasenko | 4a45756 | 2007-10-14 02:34:20 +0000 | [diff] [blame] | 1243 | // We inconsistently handle a case when more POSTDATA from network |
| 1244 | // is coming than we expected. We may give *some part* of that |
| 1245 | // extra data to CGI. |
| 1246 | |
| 1247 | //if (hdr_cnt > post_len) { |
| 1248 | // /* We got more POSTDATA from network than we expected */ |
| 1249 | // hdr_cnt = post_len; |
| 1250 | //} |
| 1251 | post_len -= hdr_cnt; |
| 1252 | /* post_len - number of POST bytes not yet read from network */ |
| 1253 | |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1254 | /* NB: breaking out of this loop jumps to log_and_exit() */ |
| 1255 | out_cnt = 0; |
Denys Vlasenko | a6ed6a3 | 2013-09-18 12:08:41 +0200 | [diff] [blame] | 1256 | pfd[FROM_CGI].fd = fromCgi_rd; |
| 1257 | pfd[FROM_CGI].events = POLLIN; |
| 1258 | pfd[TO_CGI].fd = toCgi_wr; |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1259 | while (1) { |
Denys Vlasenko | fbe250d | 2013-09-11 14:59:21 +0200 | [diff] [blame] | 1260 | /* Note: even pfd[0].events == 0 won't prevent |
| 1261 | * revents == POLLHUP|POLLERR reports from closed stdin. |
Denys Vlasenko | a6ed6a3 | 2013-09-18 12:08:41 +0200 | [diff] [blame] | 1262 | * Setting fd to -1 works: */ |
Denys Vlasenko | fbe250d | 2013-09-11 14:59:21 +0200 | [diff] [blame] | 1263 | pfd[0].fd = -1; |
Denys Vlasenko | a6ed6a3 | 2013-09-18 12:08:41 +0200 | [diff] [blame] | 1264 | pfd[0].events = POLLIN; |
| 1265 | pfd[0].revents = 0; /* probably not needed, paranoia */ |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1266 | |
Denys Vlasenko | a6ed6a3 | 2013-09-18 12:08:41 +0200 | [diff] [blame] | 1267 | /* We always poll this fd, thus kernel always sets revents: */ |
| 1268 | /*pfd[FROM_CGI].events = POLLIN; - moved out of loop */ |
| 1269 | /*pfd[FROM_CGI].revents = 0; - not needed */ |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1270 | |
Denys Vlasenko | a6ed6a3 | 2013-09-18 12:08:41 +0200 | [diff] [blame] | 1271 | /* gcc-4.8.0 still doesnt fill two shorts with one insn :( */ |
| 1272 | /* http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47059 */ |
| 1273 | /* hopefully one day it will... */ |
Denys Vlasenko | fbe250d | 2013-09-11 14:59:21 +0200 | [diff] [blame] | 1274 | pfd[TO_CGI].events = POLLOUT; |
Denys Vlasenko | a6ed6a3 | 2013-09-18 12:08:41 +0200 | [diff] [blame] | 1275 | pfd[TO_CGI].revents = 0; /* needed! */ |
Denys Vlasenko | fbe250d | 2013-09-11 14:59:21 +0200 | [diff] [blame] | 1276 | |
| 1277 | if (toCgi_wr && hdr_cnt <= 0) { |
| 1278 | if (post_len > 0) { |
| 1279 | /* Expect more POST data from network */ |
| 1280 | pfd[0].fd = 0; |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1281 | } else { |
| 1282 | /* post_len <= 0 && hdr_cnt <= 0: |
| 1283 | * no more POST data to CGI, |
| 1284 | * let CGI see EOF on CGI's stdin */ |
Denys Vlasenko | 8fc9e6a | 2010-04-02 10:40:58 +0200 | [diff] [blame] | 1285 | if (toCgi_wr != fromCgi_rd) |
| 1286 | close(toCgi_wr); |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1287 | toCgi_wr = 0; |
| 1288 | } |
| 1289 | } |
| 1290 | |
| 1291 | /* Now wait on the set of sockets */ |
Denys Vlasenko | fbe250d | 2013-09-11 14:59:21 +0200 | [diff] [blame] | 1292 | count = safe_poll(pfd, hdr_cnt > 0 ? TO_CGI+1 : FROM_CGI+1, -1); |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1293 | if (count <= 0) { |
| 1294 | #if 0 |
Denis Vlasenko | fb0eba7 | 2008-01-02 19:55:04 +0000 | [diff] [blame] | 1295 | if (safe_waitpid(pid, &status, WNOHANG) <= 0) { |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1296 | /* Weird. CGI didn't exit and no fd's |
| 1297 | * are ready, yet poll returned?! */ |
| 1298 | continue; |
| 1299 | } |
| 1300 | if (DEBUG && WIFEXITED(status)) |
| 1301 | bb_error_msg("CGI exited, status=%d", WEXITSTATUS(status)); |
| 1302 | if (DEBUG && WIFSIGNALED(status)) |
| 1303 | bb_error_msg("CGI killed, signal=%d", WTERMSIG(status)); |
| 1304 | #endif |
| 1305 | break; |
| 1306 | } |
| 1307 | |
Denys Vlasenko | 88aa558 | 2010-03-02 15:02:45 +0100 | [diff] [blame] | 1308 | if (pfd[TO_CGI].revents) { |
Denys Vlasenko | fbe250d | 2013-09-11 14:59:21 +0200 | [diff] [blame] | 1309 | /* hdr_cnt > 0 here due to the way poll() called */ |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1310 | /* Have data from peer and can write to CGI */ |
| 1311 | count = safe_write(toCgi_wr, hdr_ptr, hdr_cnt); |
| 1312 | /* Doesn't happen, we dont use nonblocking IO here |
| 1313 | *if (count < 0 && errno == EAGAIN) { |
| 1314 | * ... |
| 1315 | *} else */ |
| 1316 | if (count > 0) { |
| 1317 | hdr_ptr += count; |
| 1318 | hdr_cnt -= count; |
| 1319 | } else { |
| 1320 | /* EOF/broken pipe to CGI, stop piping POST data */ |
| 1321 | hdr_cnt = post_len = 0; |
| 1322 | } |
| 1323 | } |
| 1324 | |
Denys Vlasenko | 88aa558 | 2010-03-02 15:02:45 +0100 | [diff] [blame] | 1325 | if (pfd[0].revents) { |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1326 | /* post_len > 0 && hdr_cnt == 0 here */ |
| 1327 | /* We expect data, prev data portion is eaten by CGI |
| 1328 | * and there *is* data to read from the peer |
| 1329 | * (POSTDATA) */ |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 1330 | //count = post_len > (int)sizeof_hdr_buf ? (int)sizeof_hdr_buf : post_len; |
Bernhard Reutner-Fischer | 5e25ddb | 2008-05-19 09:48:17 +0000 | [diff] [blame] | 1331 | //count = safe_read(STDIN_FILENO, hdr_buf, count); |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 1332 | count = safe_read(STDIN_FILENO, hdr_buf, sizeof_hdr_buf); |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1333 | if (count > 0) { |
| 1334 | hdr_cnt = count; |
| 1335 | hdr_ptr = hdr_buf; |
| 1336 | post_len -= count; |
| 1337 | } else { |
| 1338 | /* no more POST data can be read */ |
| 1339 | post_len = 0; |
| 1340 | } |
| 1341 | } |
| 1342 | |
Denys Vlasenko | 88aa558 | 2010-03-02 15:02:45 +0100 | [diff] [blame] | 1343 | if (pfd[FROM_CGI].revents) { |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1344 | /* There is something to read from CGI */ |
| 1345 | char *rbuf = iobuf; |
| 1346 | |
| 1347 | /* Are we still buffering CGI output? */ |
| 1348 | if (out_cnt >= 0) { |
| 1349 | /* HTTP_200[] has single "\r\n" at the end. |
| 1350 | * According to http://hoohoo.ncsa.uiuc.edu/cgi/out.html, |
| 1351 | * CGI scripts MUST send their own header terminated by |
| 1352 | * empty line, then data. That's why we have only one |
| 1353 | * <cr><lf> pair here. We will output "200 OK" line |
| 1354 | * if needed, but CGI still has to provide blank line |
| 1355 | * between header and body */ |
| 1356 | |
| 1357 | /* Must use safe_read, not full_read, because |
| 1358 | * CGI may output a few first bytes and then wait |
| 1359 | * for POSTDATA without closing stdout. |
| 1360 | * With full_read we may wait here forever. */ |
| 1361 | count = safe_read(fromCgi_rd, rbuf + out_cnt, PIPE_BUF - 8); |
| 1362 | if (count <= 0) { |
| 1363 | /* eof (or error) and there was no "HTTP", |
| 1364 | * so write it, then write received data */ |
| 1365 | if (out_cnt) { |
Bernhard Reutner-Fischer | 5e25ddb | 2008-05-19 09:48:17 +0000 | [diff] [blame] | 1366 | full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1); |
| 1367 | full_write(STDOUT_FILENO, rbuf, out_cnt); |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1368 | } |
| 1369 | break; /* CGI stdout is closed, exiting */ |
| 1370 | } |
| 1371 | out_cnt += count; |
| 1372 | count = 0; |
| 1373 | /* "Status" header format is: "Status: 302 Redirected\r\n" */ |
Denys Vlasenko | 94aaf4b | 2017-09-01 17:06:12 +0200 | [diff] [blame] | 1374 | if (out_cnt >= 8 && memcmp(rbuf, "Status: ", 8) == 0) { |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1375 | /* send "HTTP/1.0 " */ |
Bernhard Reutner-Fischer | 5e25ddb | 2008-05-19 09:48:17 +0000 | [diff] [blame] | 1376 | if (full_write(STDOUT_FILENO, HTTP_200, 9) != 9) |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1377 | break; |
Denys Vlasenko | 94aaf4b | 2017-09-01 17:06:12 +0200 | [diff] [blame] | 1378 | /* skip "Status: " (including space, sending "HTTP/1.0 NNN" is wrong) */ |
| 1379 | rbuf += 8; |
| 1380 | count = out_cnt - 8; |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1381 | out_cnt = -1; /* buffering off */ |
| 1382 | } else if (out_cnt >= 4) { |
| 1383 | /* Did CGI add "HTTP"? */ |
| 1384 | if (memcmp(rbuf, HTTP_200, 4) != 0) { |
| 1385 | /* there is no "HTTP", do it ourself */ |
Bernhard Reutner-Fischer | 5e25ddb | 2008-05-19 09:48:17 +0000 | [diff] [blame] | 1386 | if (full_write(STDOUT_FILENO, HTTP_200, sizeof(HTTP_200)-1) != sizeof(HTTP_200)-1) |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1387 | break; |
| 1388 | } |
| 1389 | /* Commented out: |
| 1390 | if (!strstr(rbuf, "ontent-")) { |
| 1391 | full_write(s, "Content-type: text/plain\r\n\r\n", 28); |
| 1392 | } |
| 1393 | * Counter-example of valid CGI without Content-type: |
| 1394 | * echo -en "HTTP/1.0 302 Found\r\n" |
| 1395 | * echo -en "Location: http://www.busybox.net\r\n" |
| 1396 | * echo -en "\r\n" |
| 1397 | */ |
| 1398 | count = out_cnt; |
| 1399 | out_cnt = -1; /* buffering off */ |
| 1400 | } |
| 1401 | } else { |
| 1402 | count = safe_read(fromCgi_rd, rbuf, PIPE_BUF); |
| 1403 | if (count <= 0) |
| 1404 | break; /* eof (or error) */ |
| 1405 | } |
Bernhard Reutner-Fischer | 5e25ddb | 2008-05-19 09:48:17 +0000 | [diff] [blame] | 1406 | if (full_write(STDOUT_FILENO, rbuf, count) != count) |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1407 | break; |
| 1408 | if (DEBUG) |
| 1409 | fprintf(stderr, "cgi read %d bytes: '%.*s'\n", count, count, rbuf); |
| 1410 | } /* if (pfd[FROM_CGI].revents) */ |
| 1411 | } /* while (1) */ |
| 1412 | log_and_exit(); |
| 1413 | } |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 1414 | #endif |
| 1415 | |
| 1416 | #if ENABLE_FEATURE_HTTPD_CGI |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1417 | |
Denis Vlasenko | 921799d | 2007-08-19 19:28:09 +0000 | [diff] [blame] | 1418 | static void setenv1(const char *name, const char *value) |
| 1419 | { |
| 1420 | setenv(name, value ? value : "", 1); |
| 1421 | } |
| 1422 | |
Denis Vlasenko | 241b156 | 2007-08-17 19:18:47 +0000 | [diff] [blame] | 1423 | /* |
| 1424 | * Spawn CGI script, forward CGI's stdin/out <=> network |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 1425 | * |
Denis Vlasenko | 241b156 | 2007-08-17 19:18:47 +0000 | [diff] [blame] | 1426 | * Environment variables are set up and the script is invoked with pipes |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1427 | * for stdin/stdout. If a POST is being done the script is fed the POST |
Denis Vlasenko | 241b156 | 2007-08-17 19:18:47 +0000 | [diff] [blame] | 1428 | * data in addition to setting the QUERY_STRING variable (for GETs or POSTs). |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 1429 | * |
Denis Vlasenko | 241b156 | 2007-08-17 19:18:47 +0000 | [diff] [blame] | 1430 | * Parameters: |
| 1431 | * const char *url The requested URL (with leading /). |
Denys Vlasenko | 03419aa | 2011-12-19 12:30:34 +0100 | [diff] [blame] | 1432 | * const char *orig_uri The original URI before rewriting (if any) |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1433 | * int post_len Length of the POST body. |
Denis Vlasenko | 241b156 | 2007-08-17 19:18:47 +0000 | [diff] [blame] | 1434 | * const char *cookie For set HTTP_COOKIE. |
| 1435 | * const char *content_type For set CONTENT_TYPE. |
| 1436 | */ |
| 1437 | static void send_cgi_and_exit( |
| 1438 | const char *url, |
Denys Vlasenko | 03419aa | 2011-12-19 12:30:34 +0100 | [diff] [blame] | 1439 | const char *orig_uri, |
Denis Vlasenko | 241b156 | 2007-08-17 19:18:47 +0000 | [diff] [blame] | 1440 | const char *request, |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1441 | int post_len, |
Denis Vlasenko | 241b156 | 2007-08-17 19:18:47 +0000 | [diff] [blame] | 1442 | const char *cookie, |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 1443 | const char *content_type) NORETURN; |
Denis Vlasenko | 241b156 | 2007-08-17 19:18:47 +0000 | [diff] [blame] | 1444 | static void send_cgi_and_exit( |
| 1445 | const char *url, |
Denys Vlasenko | 03419aa | 2011-12-19 12:30:34 +0100 | [diff] [blame] | 1446 | const char *orig_uri, |
Denis Vlasenko | 241b156 | 2007-08-17 19:18:47 +0000 | [diff] [blame] | 1447 | const char *request, |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1448 | int post_len, |
Denis Vlasenko | 241b156 | 2007-08-17 19:18:47 +0000 | [diff] [blame] | 1449 | const char *cookie, |
Denis Vlasenko | 6c5e5a0 | 2006-11-10 23:28:57 +0000 | [diff] [blame] | 1450 | const char *content_type) |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 1451 | { |
Denis Vlasenko | 3718832 | 2008-02-16 13:20:56 +0000 | [diff] [blame] | 1452 | struct fd_pair fromCgi; /* CGI -> httpd pipe */ |
| 1453 | struct fd_pair toCgi; /* httpd -> CGI pipe */ |
Denys Vlasenko | f85bd1a | 2011-12-18 03:22:36 +0100 | [diff] [blame] | 1454 | char *script, *last_slash; |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1455 | int pid; |
Denis Vlasenko | b98c26a | 2007-08-17 19:21:12 +0000 | [diff] [blame] | 1456 | |
Denis Vlasenko | 6bf05cf | 2008-05-07 12:18:48 +0000 | [diff] [blame] | 1457 | /* Make a copy. NB: caller guarantees: |
| 1458 | * url[0] == '/', url[1] != '/' */ |
| 1459 | url = xstrdup(url); |
| 1460 | |
Denis Vlasenko | b98c26a | 2007-08-17 19:21:12 +0000 | [diff] [blame] | 1461 | /* |
| 1462 | * We are mucking with environment _first_ and then vfork/exec, |
Denis Vlasenko | 6bf05cf | 2008-05-07 12:18:48 +0000 | [diff] [blame] | 1463 | * this allows us to use vfork safely. Parent doesn't care about |
Denis Vlasenko | b98c26a | 2007-08-17 19:21:12 +0000 | [diff] [blame] | 1464 | * these environment changes anyway. |
| 1465 | */ |
| 1466 | |
Denis Vlasenko | 6bf05cf | 2008-05-07 12:18:48 +0000 | [diff] [blame] | 1467 | /* Check for [dirs/]script.cgi/PATH_INFO */ |
Denys Vlasenko | f85bd1a | 2011-12-18 03:22:36 +0100 | [diff] [blame] | 1468 | last_slash = script = (char*)url; |
Denis Vlasenko | b98c26a | 2007-08-17 19:21:12 +0000 | [diff] [blame] | 1469 | while ((script = strchr(script + 1, '/')) != NULL) { |
Denys Vlasenko | f85bd1a | 2011-12-18 03:22:36 +0100 | [diff] [blame] | 1470 | int dir; |
Denis Vlasenko | b98c26a | 2007-08-17 19:21:12 +0000 | [diff] [blame] | 1471 | *script = '\0'; |
Denys Vlasenko | f282c6b | 2011-12-18 03:27:46 +0100 | [diff] [blame] | 1472 | dir = is_directory(url + 1, /*followlinks:*/ 1); |
Denys Vlasenko | f85bd1a | 2011-12-18 03:22:36 +0100 | [diff] [blame] | 1473 | *script = '/'; |
| 1474 | if (!dir) { |
Denis Vlasenko | b98c26a | 2007-08-17 19:21:12 +0000 | [diff] [blame] | 1475 | /* not directory, found script.cgi/PATH_INFO */ |
Denis Vlasenko | b98c26a | 2007-08-17 19:21:12 +0000 | [diff] [blame] | 1476 | break; |
| 1477 | } |
Denys Vlasenko | f85bd1a | 2011-12-18 03:22:36 +0100 | [diff] [blame] | 1478 | /* is directory, find next '/' */ |
| 1479 | last_slash = script; |
Denis Vlasenko | b98c26a | 2007-08-17 19:21:12 +0000 | [diff] [blame] | 1480 | } |
Denis Vlasenko | 6bf05cf | 2008-05-07 12:18:48 +0000 | [diff] [blame] | 1481 | setenv1("PATH_INFO", script); /* set to /PATH_INFO or "" */ |
Denis Vlasenko | b98c26a | 2007-08-17 19:21:12 +0000 | [diff] [blame] | 1482 | setenv1("REQUEST_METHOD", request); |
| 1483 | if (g_query) { |
Denys Vlasenko | 03419aa | 2011-12-19 12:30:34 +0100 | [diff] [blame] | 1484 | putenv(xasprintf("%s=%s?%s", "REQUEST_URI", orig_uri, g_query)); |
Denis Vlasenko | b98c26a | 2007-08-17 19:21:12 +0000 | [diff] [blame] | 1485 | } else { |
Denys Vlasenko | 03419aa | 2011-12-19 12:30:34 +0100 | [diff] [blame] | 1486 | setenv1("REQUEST_URI", orig_uri); |
Denis Vlasenko | b98c26a | 2007-08-17 19:21:12 +0000 | [diff] [blame] | 1487 | } |
| 1488 | if (script != NULL) |
| 1489 | *script = '\0'; /* cut off /PATH_INFO */ |
| 1490 | |
Denis Vlasenko | 6bf05cf | 2008-05-07 12:18:48 +0000 | [diff] [blame] | 1491 | /* SCRIPT_FILENAME is required by PHP in CGI mode */ |
| 1492 | if (home_httpd[0] == '/') { |
| 1493 | char *fullpath = concat_path_file(home_httpd, url); |
| 1494 | setenv1("SCRIPT_FILENAME", fullpath); |
| 1495 | } |
Denis Vlasenko | b98c26a | 2007-08-17 19:21:12 +0000 | [diff] [blame] | 1496 | /* set SCRIPT_NAME as full path: /cgi-bin/dirs/script.cgi */ |
Denis Vlasenko | 6bf05cf | 2008-05-07 12:18:48 +0000 | [diff] [blame] | 1497 | setenv1("SCRIPT_NAME", url); |
Denis Vlasenko | b98c26a | 2007-08-17 19:21:12 +0000 | [diff] [blame] | 1498 | /* http://hoohoo.ncsa.uiuc.edu/cgi/env.html: |
| 1499 | * QUERY_STRING: The information which follows the ? in the URL |
| 1500 | * which referenced this script. This is the query information. |
| 1501 | * It should not be decoded in any fashion. This variable |
| 1502 | * should always be set when there is query information, |
| 1503 | * regardless of command line decoding. */ |
| 1504 | /* (Older versions of bbox seem to do some decoding) */ |
| 1505 | setenv1("QUERY_STRING", g_query); |
| 1506 | putenv((char*)"SERVER_SOFTWARE=busybox httpd/"BB_VER); |
| 1507 | putenv((char*)"SERVER_PROTOCOL=HTTP/1.0"); |
| 1508 | putenv((char*)"GATEWAY_INTERFACE=CGI/1.1"); |
| 1509 | /* Having _separate_ variables for IP and port defeats |
| 1510 | * the purpose of having socket abstraction. Which "port" |
| 1511 | * are you using on Unix domain socket? |
| 1512 | * IOW - REMOTE_PEER="1.2.3.4:56" makes much more sense. |
| 1513 | * Oh well... */ |
| 1514 | { |
| 1515 | char *p = rmt_ip_str ? rmt_ip_str : (char*)""; |
| 1516 | char *cp = strrchr(p, ':'); |
| 1517 | if (ENABLE_FEATURE_IPV6 && cp && strchr(cp, ']')) |
| 1518 | cp = NULL; |
| 1519 | if (cp) *cp = '\0'; /* delete :PORT */ |
| 1520 | setenv1("REMOTE_ADDR", p); |
Denis Vlasenko | 37c3316 | 2007-08-19 18:54:22 +0000 | [diff] [blame] | 1521 | if (cp) { |
| 1522 | *cp = ':'; |
| 1523 | #if ENABLE_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV |
| 1524 | setenv1("REMOTE_PORT", cp + 1); |
| 1525 | #endif |
| 1526 | } |
Denis Vlasenko | b98c26a | 2007-08-17 19:21:12 +0000 | [diff] [blame] | 1527 | } |
Denys Vlasenko | b4b12bf | 2017-01-26 19:35:40 +0100 | [diff] [blame] | 1528 | setenv1("HTTP_USER_AGENT", G.user_agent); |
| 1529 | if (G.http_accept) |
| 1530 | setenv1("HTTP_ACCEPT", G.http_accept); |
| 1531 | if (G.http_accept_language) |
| 1532 | setenv1("HTTP_ACCEPT_LANGUAGE", G.http_accept_language); |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1533 | if (post_len) |
| 1534 | putenv(xasprintf("CONTENT_LENGTH=%d", post_len)); |
Denis Vlasenko | b98c26a | 2007-08-17 19:21:12 +0000 | [diff] [blame] | 1535 | if (cookie) |
| 1536 | setenv1("HTTP_COOKIE", cookie); |
| 1537 | if (content_type) |
| 1538 | setenv1("CONTENT_TYPE", content_type); |
| 1539 | #if ENABLE_FEATURE_HTTPD_BASIC_AUTH |
| 1540 | if (remoteuser) { |
| 1541 | setenv1("REMOTE_USER", remoteuser); |
| 1542 | putenv((char*)"AUTH_TYPE=Basic"); |
| 1543 | } |
| 1544 | #endif |
Denys Vlasenko | b4b12bf | 2017-01-26 19:35:40 +0100 | [diff] [blame] | 1545 | if (G.referer) |
| 1546 | setenv1("HTTP_REFERER", G.referer); |
| 1547 | setenv1("HTTP_HOST", G.host); /* set to "" if NULL */ |
Denis Vlasenko | cbb4e61 | 2009-03-18 20:00:46 +0000 | [diff] [blame] | 1548 | /* setenv1("SERVER_NAME", safe_gethostname()); - don't do this, |
| 1549 | * just run "env SERVER_NAME=xyz httpd ..." instead */ |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 1550 | |
Denis Vlasenko | 3718832 | 2008-02-16 13:20:56 +0000 | [diff] [blame] | 1551 | xpiped_pair(fromCgi); |
| 1552 | xpiped_pair(toCgi); |
Denis Vlasenko | a3ee69f | 2006-11-21 00:07:31 +0000 | [diff] [blame] | 1553 | |
Denis Vlasenko | 80281fe | 2007-03-07 22:16:38 +0000 | [diff] [blame] | 1554 | pid = vfork(); |
Denis Vlasenko | feac3ce | 2007-08-17 19:20:39 +0000 | [diff] [blame] | 1555 | if (pid < 0) { |
| 1556 | /* TODO: log perror? */ |
| 1557 | log_and_exit(); |
| 1558 | } |
Denis Vlasenko | f7996f3 | 2007-01-11 17:20:00 +0000 | [diff] [blame] | 1559 | |
Denys Vlasenko | f85bd1a | 2011-12-18 03:22:36 +0100 | [diff] [blame] | 1560 | if (pid == 0) { |
Denis Vlasenko | b98c26a | 2007-08-17 19:21:12 +0000 | [diff] [blame] | 1561 | /* Child process */ |
Denis Vlasenko | 6bf05cf | 2008-05-07 12:18:48 +0000 | [diff] [blame] | 1562 | char *argv[3]; |
| 1563 | |
Denis Vlasenko | 241b156 | 2007-08-17 19:18:47 +0000 | [diff] [blame] | 1564 | xfunc_error_retval = 242; |
| 1565 | |
Denis Vlasenko | 284d0fa | 2008-02-16 13:18:17 +0000 | [diff] [blame] | 1566 | /* NB: close _first_, then move fds! */ |
| 1567 | close(toCgi.wr); |
| 1568 | close(fromCgi.rd); |
Denis Vlasenko | e5d37cc | 2007-08-11 20:20:02 +0000 | [diff] [blame] | 1569 | xmove_fd(toCgi.rd, 0); /* replace stdin with the pipe */ |
| 1570 | xmove_fd(fromCgi.wr, 1); /* replace stdout with the pipe */ |
Denis Vlasenko | b98c26a | 2007-08-17 19:21:12 +0000 | [diff] [blame] | 1571 | /* User seeing stderr output can be a security problem. |
Denis Vlasenko | 241b156 | 2007-08-17 19:18:47 +0000 | [diff] [blame] | 1572 | * If CGI really wants that, it can always do dup itself. */ |
Denis Vlasenko | 1ec15cd | 2007-08-11 20:20:43 +0000 | [diff] [blame] | 1573 | /* dup2(1, 2); */ |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 1574 | |
Denis Vlasenko | 6bf05cf | 2008-05-07 12:18:48 +0000 | [diff] [blame] | 1575 | /* Chdiring to script's dir */ |
Denys Vlasenko | f85bd1a | 2011-12-18 03:22:36 +0100 | [diff] [blame] | 1576 | script = last_slash; |
Denis Vlasenko | 6bf05cf | 2008-05-07 12:18:48 +0000 | [diff] [blame] | 1577 | if (script != url) { /* paranoia */ |
| 1578 | *script = '\0'; |
| 1579 | if (chdir(url + 1) != 0) { |
Pascal Bellard | 70fc8c1 | 2012-06-12 13:21:02 +0200 | [diff] [blame] | 1580 | bb_perror_msg("can't change directory to '%s'", url + 1); |
Denis Vlasenko | 6bf05cf | 2008-05-07 12:18:48 +0000 | [diff] [blame] | 1581 | goto error_execing_cgi; |
| 1582 | } |
| 1583 | // not needed: *script = '/'; |
| 1584 | } |
| 1585 | script++; |
Denis Vlasenko | a3ee69f | 2006-11-21 00:07:31 +0000 | [diff] [blame] | 1586 | |
Denis Vlasenko | 6bf05cf | 2008-05-07 12:18:48 +0000 | [diff] [blame] | 1587 | /* set argv[0] to name without path */ |
| 1588 | argv[0] = script; |
| 1589 | argv[1] = NULL; |
Denis Vlasenko | fc21305 | 2008-02-11 16:26:22 +0000 | [diff] [blame] | 1590 | |
| 1591 | #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR |
Denis Vlasenko | 6bf05cf | 2008-05-07 12:18:48 +0000 | [diff] [blame] | 1592 | { |
| 1593 | char *suffix = strrchr(script, '.'); |
Denis Vlasenko | fc21305 | 2008-02-11 16:26:22 +0000 | [diff] [blame] | 1594 | |
Denis Vlasenko | 6bf05cf | 2008-05-07 12:18:48 +0000 | [diff] [blame] | 1595 | if (suffix) { |
| 1596 | Htaccess *cur; |
| 1597 | for (cur = script_i; cur; cur = cur->next) { |
| 1598 | if (strcmp(cur->before_colon + 1, suffix) == 0) { |
| 1599 | /* found interpreter name */ |
| 1600 | argv[0] = cur->after_colon; |
| 1601 | argv[1] = script; |
| 1602 | argv[2] = NULL; |
| 1603 | break; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 1604 | } |
| 1605 | } |
Denis Vlasenko | a3ee69f | 2006-11-21 00:07:31 +0000 | [diff] [blame] | 1606 | } |
Denis Vlasenko | a3ee69f | 2006-11-21 00:07:31 +0000 | [diff] [blame] | 1607 | } |
Denis Vlasenko | 6bf05cf | 2008-05-07 12:18:48 +0000 | [diff] [blame] | 1608 | #endif |
| 1609 | /* restore default signal dispositions for CGI process */ |
| 1610 | bb_signals(0 |
| 1611 | | (1 << SIGCHLD) |
| 1612 | | (1 << SIGPIPE) |
| 1613 | | (1 << SIGHUP) |
| 1614 | , SIG_DFL); |
| 1615 | |
| 1616 | /* _NOT_ execvp. We do not search PATH. argv[0] is a filename |
| 1617 | * without any dir components and will only match a file |
| 1618 | * in the current directory */ |
| 1619 | execv(argv[0], argv); |
| 1620 | if (verbose) |
Denys Vlasenko | 31c3dad | 2010-06-27 16:57:55 +0200 | [diff] [blame] | 1621 | bb_perror_msg("can't execute '%s'", argv[0]); |
Denis Vlasenko | 6bf05cf | 2008-05-07 12:18:48 +0000 | [diff] [blame] | 1622 | error_execing_cgi: |
Denis Vlasenko | e45af73 | 2007-08-17 19:19:15 +0000 | [diff] [blame] | 1623 | /* send to stdout |
| 1624 | * (we are CGI here, our stdout is pumped to the net) */ |
Denis Vlasenko | feac3ce | 2007-08-17 19:20:39 +0000 | [diff] [blame] | 1625 | send_headers_and_exit(HTTP_NOT_FOUND); |
Denis Vlasenko | a3ee69f | 2006-11-21 00:07:31 +0000 | [diff] [blame] | 1626 | } /* end child */ |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 1627 | |
Denis Vlasenko | b98c26a | 2007-08-17 19:21:12 +0000 | [diff] [blame] | 1628 | /* Parent process */ |
| 1629 | |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1630 | /* Restore variables possibly changed by child */ |
Denis Vlasenko | b98c26a | 2007-08-17 19:21:12 +0000 | [diff] [blame] | 1631 | xfunc_error_retval = 0; |
Denis Vlasenko | b98c26a | 2007-08-17 19:21:12 +0000 | [diff] [blame] | 1632 | |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1633 | /* Pump data */ |
Denis Vlasenko | e5d37cc | 2007-08-11 20:20:02 +0000 | [diff] [blame] | 1634 | close(fromCgi.wr); |
| 1635 | close(toCgi.rd); |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1636 | cgi_io_loop_and_exit(fromCgi.rd, toCgi.wr, post_len); |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 1637 | } |
Denis Vlasenko | 32a471e | 2007-09-23 13:56:57 +0000 | [diff] [blame] | 1638 | |
Denis Vlasenko | b3a0715 | 2006-11-16 18:04:43 +0000 | [diff] [blame] | 1639 | #endif /* FEATURE_HTTPD_CGI */ |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 1640 | |
Denis Vlasenko | 241b156 | 2007-08-17 19:18:47 +0000 | [diff] [blame] | 1641 | /* |
| 1642 | * Send a file response to a HTTP request, and exit |
Denis Vlasenko | 3f5fdc7 | 2007-10-14 04:55:59 +0000 | [diff] [blame] | 1643 | * |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 1644 | * Parameters: |
Denis Vlasenko | 2f518b0 | 2008-02-21 00:12:07 +0000 | [diff] [blame] | 1645 | * const char *url The requested URL (with leading /). |
| 1646 | * what What to send (headers/body/both). |
Denis Vlasenko | 241b156 | 2007-08-17 19:18:47 +0000 | [diff] [blame] | 1647 | */ |
Denis Vlasenko | 1cbfd98 | 2009-02-04 23:43:44 +0000 | [diff] [blame] | 1648 | static NOINLINE void send_file_and_exit(const char *url, int what) |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 1649 | { |
Denis Vlasenko | 1b9064d | 2007-08-12 21:05:49 +0000 | [diff] [blame] | 1650 | char *suffix; |
Denis Vlasenko | 1cbfd98 | 2009-02-04 23:43:44 +0000 | [diff] [blame] | 1651 | int fd; |
Denis Vlasenko | 1b9064d | 2007-08-12 21:05:49 +0000 | [diff] [blame] | 1652 | ssize_t count; |
Denis Vlasenko | 1cbfd98 | 2009-02-04 23:43:44 +0000 | [diff] [blame] | 1653 | |
Peter Korsgaard | 7a2ba32 | 2010-07-25 03:20:53 +0200 | [diff] [blame] | 1654 | if (content_gzip) { |
| 1655 | /* does <url>.gz exist? Then use it instead */ |
| 1656 | char *gzurl = xasprintf("%s.gz", url); |
| 1657 | fd = open(gzurl, O_RDONLY); |
| 1658 | free(gzurl); |
| 1659 | if (fd != -1) { |
| 1660 | struct stat sb; |
| 1661 | fstat(fd, &sb); |
| 1662 | file_size = sb.st_size; |
Denys Vlasenko | 8030a14 | 2011-01-11 17:59:45 +0100 | [diff] [blame] | 1663 | last_mod = sb.st_mtime; |
Peter Korsgaard | 7a2ba32 | 2010-07-25 03:20:53 +0200 | [diff] [blame] | 1664 | } else { |
| 1665 | IF_FEATURE_HTTPD_GZIP(content_gzip = 0;) |
| 1666 | fd = open(url, O_RDONLY); |
| 1667 | } |
| 1668 | } else { |
| 1669 | fd = open(url, O_RDONLY); |
| 1670 | } |
Denis Vlasenko | 1cbfd98 | 2009-02-04 23:43:44 +0000 | [diff] [blame] | 1671 | if (fd < 0) { |
| 1672 | if (DEBUG) |
| 1673 | bb_perror_msg("can't open '%s'", url); |
| 1674 | /* Error pages are sent by using send_file_and_exit(SEND_BODY). |
| 1675 | * IOW: it is unsafe to call send_headers_and_exit |
| 1676 | * if what is SEND_BODY! Can recurse! */ |
| 1677 | if (what != SEND_BODY) |
| 1678 | send_headers_and_exit(HTTP_NOT_FOUND); |
| 1679 | log_and_exit(); |
| 1680 | } |
Denis Vlasenko | 2f518b0 | 2008-02-21 00:12:07 +0000 | [diff] [blame] | 1681 | /* If you want to know about EPIPE below |
| 1682 | * (happens if you abort downloads from local httpd): */ |
| 1683 | signal(SIGPIPE, SIG_IGN); |
| 1684 | |
Denys Vlasenko | 33d8d08 | 2009-09-10 01:46:02 +0200 | [diff] [blame] | 1685 | /* If not found, default is "application/octet-stream" */ |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 1686 | found_mime_type = "application/octet-stream"; |
Denys Vlasenko | 33d8d08 | 2009-09-10 01:46:02 +0200 | [diff] [blame] | 1687 | suffix = strrchr(url, '.'); |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 1688 | if (suffix) { |
Denys Vlasenko | 33d8d08 | 2009-09-10 01:46:02 +0200 | [diff] [blame] | 1689 | static const char suffixTable[] ALIGN1 = |
| 1690 | /* Shorter suffix must be first: |
| 1691 | * ".html.htm" will fail for ".htm" |
| 1692 | */ |
| 1693 | ".txt.h.c.cc.cpp\0" "text/plain\0" |
| 1694 | /* .htm line must be after .h line */ |
| 1695 | ".htm.html\0" "text/html\0" |
| 1696 | ".jpg.jpeg\0" "image/jpeg\0" |
| 1697 | ".gif\0" "image/gif\0" |
| 1698 | ".png\0" "image/png\0" |
| 1699 | /* .css line must be after .c line */ |
| 1700 | ".css\0" "text/css\0" |
| 1701 | ".wav\0" "audio/wav\0" |
| 1702 | ".avi\0" "video/x-msvideo\0" |
| 1703 | ".qt.mov\0" "video/quicktime\0" |
| 1704 | ".mpe.mpeg\0" "video/mpeg\0" |
| 1705 | ".mid.midi\0" "audio/midi\0" |
| 1706 | ".mp3\0" "audio/mpeg\0" |
| 1707 | #if 0 /* unpopular */ |
| 1708 | ".au\0" "audio/basic\0" |
| 1709 | ".pac\0" "application/x-ns-proxy-autoconfig\0" |
| 1710 | ".vrml.wrl\0" "model/vrml\0" |
| 1711 | #endif |
| 1712 | /* compiler adds another "\0" here */ |
| 1713 | ; |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 1714 | Htaccess *cur; |
Denys Vlasenko | 33d8d08 | 2009-09-10 01:46:02 +0200 | [diff] [blame] | 1715 | |
| 1716 | /* Examine built-in table */ |
| 1717 | const char *table = suffixTable; |
| 1718 | const char *table_next; |
| 1719 | for (; *table; table = table_next) { |
| 1720 | const char *try_suffix; |
| 1721 | const char *mime_type; |
| 1722 | mime_type = table + strlen(table) + 1; |
| 1723 | table_next = mime_type + strlen(mime_type) + 1; |
| 1724 | try_suffix = strstr(table, suffix); |
| 1725 | if (!try_suffix) |
| 1726 | continue; |
| 1727 | try_suffix += strlen(suffix); |
| 1728 | if (*try_suffix == '\0' || *try_suffix == '.') { |
| 1729 | found_mime_type = mime_type; |
| 1730 | break; |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 1731 | } |
Denys Vlasenko | 33d8d08 | 2009-09-10 01:46:02 +0200 | [diff] [blame] | 1732 | /* Example: strstr(table, ".av") != NULL, but it |
| 1733 | * does not match ".avi" after all and we end up here. |
| 1734 | * The table is arranged so that in this case we know |
| 1735 | * that it can't match anything in the following lines, |
| 1736 | * and we stop the search: */ |
| 1737 | break; |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 1738 | } |
Denys Vlasenko | 33d8d08 | 2009-09-10 01:46:02 +0200 | [diff] [blame] | 1739 | /* ...then user's table */ |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 1740 | for (cur = mime_a; cur; cur = cur->next) { |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 1741 | if (strcmp(cur->before_colon, suffix) == 0) { |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 1742 | found_mime_type = cur->after_colon; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 1743 | break; |
| 1744 | } |
| 1745 | } |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 1746 | } |
Bernhard Reutner-Fischer | 6285117 | 2009-05-03 18:53:22 +0200 | [diff] [blame] | 1747 | |
| 1748 | if (DEBUG) |
| 1749 | bb_error_msg("sending file '%s' content-type: %s", |
| 1750 | url, found_mime_type); |
| 1751 | |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 1752 | #if ENABLE_FEATURE_HTTPD_RANGES |
Peter Korsgaard | 7a2ba32 | 2010-07-25 03:20:53 +0200 | [diff] [blame] | 1753 | if (what == SEND_BODY /* err pages and ranges don't mix */ |
| 1754 | || content_gzip /* we are sending compressed page: can't do ranges */ ///why? |
| 1755 | ) { |
Denys Vlasenko | 8cce1b3 | 2012-02-19 17:18:45 +0100 | [diff] [blame] | 1756 | range_start = -1; |
Peter Korsgaard | 7a2ba32 | 2010-07-25 03:20:53 +0200 | [diff] [blame] | 1757 | } |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 1758 | range_len = MAXINT(off_t); |
Denys Vlasenko | 8cce1b3 | 2012-02-19 17:18:45 +0100 | [diff] [blame] | 1759 | if (range_start >= 0) { |
Rob Walker | 7a42693 | 2012-04-03 08:09:28 +0200 | [diff] [blame] | 1760 | if (!range_end || range_end > file_size - 1) { |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 1761 | range_end = file_size - 1; |
| 1762 | } |
| 1763 | if (range_end < range_start |
Denis Vlasenko | 1cbfd98 | 2009-02-04 23:43:44 +0000 | [diff] [blame] | 1764 | || lseek(fd, range_start, SEEK_SET) != range_start |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 1765 | ) { |
Denis Vlasenko | 1cbfd98 | 2009-02-04 23:43:44 +0000 | [diff] [blame] | 1766 | lseek(fd, 0, SEEK_SET); |
Denys Vlasenko | 8cce1b3 | 2012-02-19 17:18:45 +0100 | [diff] [blame] | 1767 | range_start = -1; |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 1768 | } else { |
| 1769 | range_len = range_end - range_start + 1; |
| 1770 | send_headers(HTTP_PARTIAL_CONTENT); |
Denis Vlasenko | 2f518b0 | 2008-02-21 00:12:07 +0000 | [diff] [blame] | 1771 | what = SEND_BODY; |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 1772 | } |
| 1773 | } |
| 1774 | #endif |
Denis Vlasenko | 2f518b0 | 2008-02-21 00:12:07 +0000 | [diff] [blame] | 1775 | if (what & SEND_HEADERS) |
Denis Vlasenko | e58e8d9 | 2007-08-21 10:26:55 +0000 | [diff] [blame] | 1776 | send_headers(HTTP_OK); |
Bartosz Golaszewski | 8d75d79 | 2014-11-27 13:20:24 +0100 | [diff] [blame] | 1777 | #if ENABLE_FEATURE_USE_SENDFILE |
Denis Vlasenko | 1cbfd98 | 2009-02-04 23:43:44 +0000 | [diff] [blame] | 1778 | { |
| 1779 | off_t offset = range_start; |
| 1780 | while (1) { |
| 1781 | /* sz is rounded down to 64k */ |
| 1782 | ssize_t sz = MAXINT(ssize_t) - 0xffff; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 1783 | IF_FEATURE_HTTPD_RANGES(if (sz > range_len) sz = range_len;) |
Denis Vlasenko | 1cbfd98 | 2009-02-04 23:43:44 +0000 | [diff] [blame] | 1784 | count = sendfile(STDOUT_FILENO, fd, &offset, sz); |
| 1785 | if (count < 0) { |
| 1786 | if (offset == range_start) |
| 1787 | break; /* fall back to read/write loop */ |
| 1788 | goto fin; |
| 1789 | } |
Denys Vlasenko | ef43bea | 2012-02-04 21:37:17 +0100 | [diff] [blame] | 1790 | IF_FEATURE_HTTPD_RANGES(range_len -= count;) |
Denis Vlasenko | 1cbfd98 | 2009-02-04 23:43:44 +0000 | [diff] [blame] | 1791 | if (count == 0 || range_len == 0) |
| 1792 | log_and_exit(); |
Denis Vlasenko | 1b9064d | 2007-08-12 21:05:49 +0000 | [diff] [blame] | 1793 | } |
Denis Vlasenko | 1cbfd98 | 2009-02-04 23:43:44 +0000 | [diff] [blame] | 1794 | } |
Denis Vlasenko | 1b9064d | 2007-08-12 21:05:49 +0000 | [diff] [blame] | 1795 | #endif |
Denis Vlasenko | 1cbfd98 | 2009-02-04 23:43:44 +0000 | [diff] [blame] | 1796 | while ((count = safe_read(fd, iobuf, IOBUF_SIZE)) > 0) { |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 1797 | ssize_t n; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 1798 | IF_FEATURE_HTTPD_RANGES(if (count > range_len) count = range_len;) |
Bernhard Reutner-Fischer | 5e25ddb | 2008-05-19 09:48:17 +0000 | [diff] [blame] | 1799 | n = full_write(STDOUT_FILENO, iobuf, count); |
Denis Vlasenko | 241b156 | 2007-08-17 19:18:47 +0000 | [diff] [blame] | 1800 | if (count != n) |
Denis Vlasenko | 1b9064d | 2007-08-12 21:05:49 +0000 | [diff] [blame] | 1801 | break; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 1802 | IF_FEATURE_HTTPD_RANGES(range_len -= count;) |
Denis Vlasenko | 1cbfd98 | 2009-02-04 23:43:44 +0000 | [diff] [blame] | 1803 | if (range_len == 0) |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 1804 | break; |
Denis Vlasenko | 1b9064d | 2007-08-12 21:05:49 +0000 | [diff] [blame] | 1805 | } |
Denis Vlasenko | 1cbfd98 | 2009-02-04 23:43:44 +0000 | [diff] [blame] | 1806 | if (count < 0) { |
Bartosz Golaszewski | 8d75d79 | 2014-11-27 13:20:24 +0100 | [diff] [blame] | 1807 | IF_FEATURE_USE_SENDFILE(fin:) |
Denis Vlasenko | 1cbfd98 | 2009-02-04 23:43:44 +0000 | [diff] [blame] | 1808 | if (verbose > 1) |
| 1809 | bb_perror_msg("error"); |
| 1810 | } |
Denis Vlasenko | feac3ce | 2007-08-17 19:20:39 +0000 | [diff] [blame] | 1811 | log_and_exit(); |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 1812 | } |
| 1813 | |
Glenn L McGrath | b65422c | 2003-09-08 10:59:27 +0000 | [diff] [blame] | 1814 | static int checkPermIP(void) |
| 1815 | { |
Denis Vlasenko | feac3ce | 2007-08-17 19:20:39 +0000 | [diff] [blame] | 1816 | Htaccess_IP *cur; |
Glenn L McGrath | b65422c | 2003-09-08 10:59:27 +0000 | [diff] [blame] | 1817 | |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 1818 | for (cur = ip_a_d; cur; cur = cur->next) { |
Denis Vlasenko | b64eed6 | 2007-01-14 17:06:11 +0000 | [diff] [blame] | 1819 | #if DEBUG |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 1820 | fprintf(stderr, |
| 1821 | "checkPermIP: '%s' ? '%u.%u.%u.%u/%u.%u.%u.%u'\n", |
| 1822 | rmt_ip_str, |
Denis Vlasenko | 6536a9b | 2007-01-12 10:35:23 +0000 | [diff] [blame] | 1823 | (unsigned char)(cur->ip >> 24), |
| 1824 | (unsigned char)(cur->ip >> 16), |
| 1825 | (unsigned char)(cur->ip >> 8), |
| 1826 | (unsigned char)(cur->ip), |
| 1827 | (unsigned char)(cur->mask >> 24), |
| 1828 | (unsigned char)(cur->mask >> 16), |
| 1829 | (unsigned char)(cur->mask >> 8), |
| 1830 | (unsigned char)(cur->mask) |
| 1831 | ); |
Denis Vlasenko | 3bba545 | 2006-12-30 17:57:03 +0000 | [diff] [blame] | 1832 | #endif |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 1833 | if ((rmt_ip & cur->mask) == cur->ip) |
Denis Vlasenko | 0eb406c | 2008-06-13 09:53:06 +0000 | [diff] [blame] | 1834 | return (cur->allow_deny == 'A'); /* A -> 1 */ |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 1835 | } |
Glenn L McGrath | b65422c | 2003-09-08 10:59:27 +0000 | [diff] [blame] | 1836 | |
Denis Vlasenko | 0eb406c | 2008-06-13 09:53:06 +0000 | [diff] [blame] | 1837 | return !flg_deny_all; /* depends on whether we saw "D:*" */ |
Glenn L McGrath | b65422c | 2003-09-08 10:59:27 +0000 | [diff] [blame] | 1838 | } |
| 1839 | |
Denis Vlasenko | d6cd9d7 | 2007-08-18 14:22:09 +0000 | [diff] [blame] | 1840 | #if ENABLE_FEATURE_HTTPD_BASIC_AUTH |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 1841 | |
Denys Vlasenko | 8cab667 | 2012-04-20 14:48:00 +0200 | [diff] [blame] | 1842 | # if ENABLE_PAM |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 1843 | struct pam_userinfo { |
| 1844 | const char *name; |
| 1845 | const char *pw; |
| 1846 | }; |
| 1847 | |
| 1848 | static int pam_talker(int num_msg, |
| 1849 | const struct pam_message **msg, |
| 1850 | struct pam_response **resp, |
| 1851 | void *appdata_ptr) |
| 1852 | { |
| 1853 | int i; |
| 1854 | struct pam_userinfo *userinfo = (struct pam_userinfo *) appdata_ptr; |
| 1855 | struct pam_response *response; |
| 1856 | |
| 1857 | if (!resp || !msg || !userinfo) |
| 1858 | return PAM_CONV_ERR; |
| 1859 | |
| 1860 | /* allocate memory to store response */ |
| 1861 | response = xzalloc(num_msg * sizeof(*response)); |
| 1862 | |
| 1863 | /* copy values */ |
| 1864 | for (i = 0; i < num_msg; i++) { |
| 1865 | const char *s; |
| 1866 | |
| 1867 | switch (msg[i]->msg_style) { |
| 1868 | case PAM_PROMPT_ECHO_ON: |
| 1869 | s = userinfo->name; |
| 1870 | break; |
| 1871 | case PAM_PROMPT_ECHO_OFF: |
| 1872 | s = userinfo->pw; |
| 1873 | break; |
Denys Vlasenko | 6967578 | 2013-01-14 01:34:48 +0100 | [diff] [blame] | 1874 | case PAM_ERROR_MSG: |
Denys Vlasenko | 982e87f | 2013-07-30 11:52:58 +0200 | [diff] [blame] | 1875 | case PAM_TEXT_INFO: |
| 1876 | s = ""; |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 1877 | break; |
| 1878 | default: |
| 1879 | free(response); |
| 1880 | return PAM_CONV_ERR; |
| 1881 | } |
| 1882 | response[i].resp = xstrdup(s); |
| 1883 | if (PAM_SUCCESS != 0) |
| 1884 | response[i].resp_retcode = PAM_SUCCESS; |
| 1885 | } |
| 1886 | *resp = response; |
| 1887 | return PAM_SUCCESS; |
| 1888 | } |
| 1889 | # endif |
| 1890 | |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 1891 | /* |
Denis Vlasenko | 0eb406c | 2008-06-13 09:53:06 +0000 | [diff] [blame] | 1892 | * Config file entries are of the form "/<path>:<user>:<passwd>". |
| 1893 | * If config file has no prefix match for path, access is allowed. |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 1894 | * |
Denis Vlasenko | 0eb406c | 2008-06-13 09:53:06 +0000 | [diff] [blame] | 1895 | * path The file path |
| 1896 | * user_and_passwd "user:passwd" to validate |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 1897 | * |
Denis Vlasenko | 0eb406c | 2008-06-13 09:53:06 +0000 | [diff] [blame] | 1898 | * Returns 1 if user_and_passwd is OK. |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 1899 | */ |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 1900 | static int check_user_passwd(const char *path, char *user_and_passwd) |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 1901 | { |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 1902 | Htaccess *cur; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 1903 | const char *prev = NULL; |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 1904 | |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 1905 | for (cur = g_auth; cur; cur = cur->next) { |
Denis Vlasenko | 25b4630 | 2008-06-13 09:55:13 +0000 | [diff] [blame] | 1906 | const char *dir_prefix; |
| 1907 | size_t len; |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 1908 | int r; |
Denis Vlasenko | b3a0715 | 2006-11-16 18:04:43 +0000 | [diff] [blame] | 1909 | |
Denis Vlasenko | 25b4630 | 2008-06-13 09:55:13 +0000 | [diff] [blame] | 1910 | dir_prefix = cur->before_colon; |
| 1911 | |
| 1912 | /* WHY? */ |
| 1913 | /* If already saw a match, don't accept other different matches */ |
| 1914 | if (prev && strcmp(prev, dir_prefix) != 0) |
| 1915 | continue; |
| 1916 | |
Denis Vlasenko | b3a0715 | 2006-11-16 18:04:43 +0000 | [diff] [blame] | 1917 | if (DEBUG) |
Denis Vlasenko | 25b4630 | 2008-06-13 09:55:13 +0000 | [diff] [blame] | 1918 | fprintf(stderr, "checkPerm: '%s' ? '%s'\n", dir_prefix, user_and_passwd); |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 1919 | |
Denis Vlasenko | 25b4630 | 2008-06-13 09:55:13 +0000 | [diff] [blame] | 1920 | /* If it's not a prefix match, continue searching */ |
| 1921 | len = strlen(dir_prefix); |
| 1922 | if (len != 1 /* dir_prefix "/" matches all, don't need to check */ |
| 1923 | && (strncmp(dir_prefix, path, len) != 0 |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 1924 | || (path[len] != '/' && path[len] != '\0') |
| 1925 | ) |
Denis Vlasenko | b3a0715 | 2006-11-16 18:04:43 +0000 | [diff] [blame] | 1926 | ) { |
Denis Vlasenko | 25b4630 | 2008-06-13 09:55:13 +0000 | [diff] [blame] | 1927 | continue; |
| 1928 | } |
Glenn L McGrath | 1dc0cca | 2003-10-03 10:50:56 +0000 | [diff] [blame] | 1929 | |
Denis Vlasenko | 25b4630 | 2008-06-13 09:55:13 +0000 | [diff] [blame] | 1930 | /* Path match found */ |
| 1931 | prev = dir_prefix; |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 1932 | |
Denis Vlasenko | 25b4630 | 2008-06-13 09:55:13 +0000 | [diff] [blame] | 1933 | if (ENABLE_FEATURE_HTTPD_AUTH_MD5) { |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 1934 | char *colon_after_user; |
| 1935 | const char *passwd; |
Pascal Bellard | 0fa3e5f | 2011-11-29 20:54:30 +0100 | [diff] [blame] | 1936 | # if ENABLE_FEATURE_SHADOWPASSWDS && !ENABLE_PAM |
| 1937 | char sp_buf[256]; |
| 1938 | # endif |
Denis Vlasenko | 25b4630 | 2008-06-13 09:55:13 +0000 | [diff] [blame] | 1939 | |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 1940 | colon_after_user = strchr(user_and_passwd, ':'); |
| 1941 | if (!colon_after_user) |
| 1942 | goto bad_input; |
Denys Vlasenko | 35def51 | 2012-02-01 02:42:54 +0100 | [diff] [blame] | 1943 | |
| 1944 | /* compare "user:" */ |
| 1945 | if (cur->after_colon[0] != '*' |
| 1946 | && strncmp(cur->after_colon, user_and_passwd, |
| 1947 | colon_after_user - user_and_passwd + 1) != 0 |
| 1948 | ) { |
| 1949 | continue; |
| 1950 | } |
| 1951 | /* this cfg entry is '*' or matches username from peer */ |
| 1952 | |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 1953 | passwd = strchr(cur->after_colon, ':'); |
| 1954 | if (!passwd) |
| 1955 | goto bad_input; |
| 1956 | passwd++; |
| 1957 | if (passwd[0] == '*') { |
| 1958 | # if ENABLE_PAM |
| 1959 | struct pam_userinfo userinfo; |
| 1960 | struct pam_conv conv_info = { &pam_talker, (void *) &userinfo }; |
| 1961 | pam_handle_t *pamh; |
Denis Vlasenko | 25b4630 | 2008-06-13 09:55:13 +0000 | [diff] [blame] | 1962 | |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 1963 | *colon_after_user = '\0'; |
| 1964 | userinfo.name = user_and_passwd; |
| 1965 | userinfo.pw = colon_after_user + 1; |
Pascal Bellard | 0fa3e5f | 2011-11-29 20:54:30 +0100 | [diff] [blame] | 1966 | r = pam_start("httpd", user_and_passwd, &conv_info, &pamh) != PAM_SUCCESS; |
| 1967 | if (r == 0) { |
| 1968 | r = pam_authenticate(pamh, PAM_DISALLOW_NULL_AUTHTOK) != PAM_SUCCESS |
| 1969 | || pam_acct_mgmt(pamh, PAM_DISALLOW_NULL_AUTHTOK) != PAM_SUCCESS |
| 1970 | ; |
| 1971 | pam_end(pamh, PAM_SUCCESS); |
| 1972 | } |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 1973 | *colon_after_user = ':'; |
| 1974 | goto end_check_passwd; |
| 1975 | # else |
| 1976 | # if ENABLE_FEATURE_SHADOWPASSWDS |
| 1977 | /* Using _r function to avoid pulling in static buffers */ |
| 1978 | struct spwd spw; |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 1979 | # endif |
| 1980 | struct passwd *pw; |
Denis Vlasenko | b3a0715 | 2006-11-16 18:04:43 +0000 | [diff] [blame] | 1981 | |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 1982 | *colon_after_user = '\0'; |
| 1983 | pw = getpwnam(user_and_passwd); |
| 1984 | *colon_after_user = ':'; |
| 1985 | if (!pw || !pw->pw_passwd) |
| 1986 | continue; |
| 1987 | passwd = pw->pw_passwd; |
| 1988 | # if ENABLE_FEATURE_SHADOWPASSWDS |
| 1989 | if ((passwd[0] == 'x' || passwd[0] == '*') && !passwd[1]) { |
| 1990 | /* getspnam_r may return 0 yet set result to NULL. |
| 1991 | * At least glibc 2.4 does this. Be extra paranoid here. */ |
| 1992 | struct spwd *result = NULL; |
Pascal Bellard | 0fa3e5f | 2011-11-29 20:54:30 +0100 | [diff] [blame] | 1993 | r = getspnam_r(pw->pw_name, &spw, sp_buf, sizeof(sp_buf), &result); |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 1994 | if (r == 0 && result) |
| 1995 | passwd = result->sp_pwdp; |
| 1996 | } |
| 1997 | # endif |
Denys Vlasenko | 35def51 | 2012-02-01 02:42:54 +0100 | [diff] [blame] | 1998 | /* In this case, passwd is ALWAYS encrypted: |
| 1999 | * it came from /etc/passwd or /etc/shadow! |
| 2000 | */ |
| 2001 | goto check_encrypted; |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 2002 | # endif /* ENABLE_PAM */ |
| 2003 | } |
Denys Vlasenko | 35def51 | 2012-02-01 02:42:54 +0100 | [diff] [blame] | 2004 | /* Else: passwd is from httpd.conf, it is either plaintext or encrypted */ |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 2005 | |
Denys Vlasenko | 35def51 | 2012-02-01 02:42:54 +0100 | [diff] [blame] | 2006 | if (passwd[0] == '$' && isdigit(passwd[1])) { |
| 2007 | char *encrypted; |
Denys Vlasenko | 8cab667 | 2012-04-20 14:48:00 +0200 | [diff] [blame] | 2008 | # if !ENABLE_PAM |
Denys Vlasenko | 35def51 | 2012-02-01 02:42:54 +0100 | [diff] [blame] | 2009 | check_encrypted: |
Denys Vlasenko | 8cab667 | 2012-04-20 14:48:00 +0200 | [diff] [blame] | 2010 | # endif |
Denys Vlasenko | 35def51 | 2012-02-01 02:42:54 +0100 | [diff] [blame] | 2011 | /* encrypt pwd from peer and check match with local one */ |
| 2012 | encrypted = pw_encrypt( |
| 2013 | /* pwd (from peer): */ colon_after_user + 1, |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 2014 | /* salt: */ passwd, |
| 2015 | /* cleanup: */ 0 |
| 2016 | ); |
| 2017 | r = strcmp(encrypted, passwd); |
| 2018 | free(encrypted); |
Denys Vlasenko | 35def51 | 2012-02-01 02:42:54 +0100 | [diff] [blame] | 2019 | } else { |
| 2020 | /* local passwd is from httpd.conf and it's plaintext */ |
| 2021 | r = strcmp(colon_after_user + 1, passwd); |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 2022 | } |
Denys Vlasenko | 35def51 | 2012-02-01 02:42:54 +0100 | [diff] [blame] | 2023 | goto end_check_passwd; |
Denis Vlasenko | 25b4630 | 2008-06-13 09:55:13 +0000 | [diff] [blame] | 2024 | } |
Denys Vlasenko | 35def51 | 2012-02-01 02:42:54 +0100 | [diff] [blame] | 2025 | bad_input: |
Denis Vlasenko | 25b4630 | 2008-06-13 09:55:13 +0000 | [diff] [blame] | 2026 | /* Comparing plaintext "user:pass" in one go */ |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 2027 | r = strcmp(cur->after_colon, user_and_passwd); |
| 2028 | end_check_passwd: |
| 2029 | if (r == 0) { |
Denis Vlasenko | 25b4630 | 2008-06-13 09:55:13 +0000 | [diff] [blame] | 2030 | remoteuser = xstrndup(user_and_passwd, |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 2031 | strchrnul(user_and_passwd, ':') - user_and_passwd |
| 2032 | ); |
Denis Vlasenko | 25b4630 | 2008-06-13 09:55:13 +0000 | [diff] [blame] | 2033 | return 1; /* Ok */ |
Glenn L McGrath | 1dc0cca | 2003-10-03 10:50:56 +0000 | [diff] [blame] | 2034 | } |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2035 | } /* for */ |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2036 | |
Denis Vlasenko | 25b4630 | 2008-06-13 09:55:13 +0000 | [diff] [blame] | 2037 | /* 0(bad) if prev is set: matches were found but passwd was wrong */ |
| 2038 | return (prev == NULL); |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2039 | } |
Denis Vlasenko | b3a0715 | 2006-11-16 18:04:43 +0000 | [diff] [blame] | 2040 | #endif /* FEATURE_HTTPD_BASIC_AUTH */ |
Glenn L McGrath | c9163fe | 2003-05-13 16:20:11 +0000 | [diff] [blame] | 2041 | |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2042 | #if ENABLE_FEATURE_HTTPD_PROXY |
| 2043 | static Htaccess_Proxy *find_proxy_entry(const char *url) |
| 2044 | { |
| 2045 | Htaccess_Proxy *p; |
| 2046 | for (p = proxy; p; p = p->next) { |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 2047 | if (is_prefixed_with(url, p->url_from)) |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2048 | return p; |
| 2049 | } |
| 2050 | return NULL; |
| 2051 | } |
| 2052 | #endif |
| 2053 | |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 2054 | /* |
| 2055 | * Handle timeouts |
| 2056 | */ |
Denis Vlasenko | 2ca84f6 | 2009-02-05 12:38:21 +0000 | [diff] [blame] | 2057 | static void send_REQUEST_TIMEOUT_and_exit(int sig) NORETURN; |
| 2058 | static void send_REQUEST_TIMEOUT_and_exit(int sig UNUSED_PARAM) |
Eric Andersen | 07f2fea | 2004-10-08 08:03:29 +0000 | [diff] [blame] | 2059 | { |
Denis Vlasenko | e45af73 | 2007-08-17 19:19:15 +0000 | [diff] [blame] | 2060 | send_headers_and_exit(HTTP_REQUEST_TIMEOUT); |
Eric Andersen | 07f2fea | 2004-10-08 08:03:29 +0000 | [diff] [blame] | 2061 | } |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 2062 | |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 2063 | /* |
| 2064 | * Handle an incoming http request and exit. |
| 2065 | */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 2066 | static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr) NORETURN; |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2067 | static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr) |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 2068 | { |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 2069 | static const char request_GET[] ALIGN1 = "GET"; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2070 | struct stat sb; |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2071 | char *urlcopy; |
| 2072 | char *urlp; |
| 2073 | char *tptr; |
Denis Vlasenko | 55a9940 | 2006-09-30 20:41:44 +0000 | [diff] [blame] | 2074 | #if ENABLE_FEATURE_HTTPD_CGI |
Denis Vlasenko | 2f518b0 | 2008-02-21 00:12:07 +0000 | [diff] [blame] | 2075 | static const char request_HEAD[] ALIGN1 = "HEAD"; |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 2076 | const char *prequest; |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2077 | char *cookie = NULL; |
| 2078 | char *content_type = NULL; |
Denis Vlasenko | 0bb993f | 2006-11-21 00:06:28 +0000 | [diff] [blame] | 2079 | unsigned long length = 0; |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2080 | #elif ENABLE_FEATURE_HTTPD_PROXY |
| 2081 | #define prequest request_GET |
| 2082 | unsigned long length = 0; |
| 2083 | #endif |
Denis Vlasenko | 0eb406c | 2008-06-13 09:53:06 +0000 | [diff] [blame] | 2084 | #if ENABLE_FEATURE_HTTPD_BASIC_AUTH |
| 2085 | smallint authorized = -1; |
| 2086 | #endif |
| 2087 | smallint ip_allowed; |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2088 | char http_major_version; |
| 2089 | #if ENABLE_FEATURE_HTTPD_PROXY |
| 2090 | char http_minor_version; |
Denis Vlasenko | 34cd7af | 2007-10-18 13:01:22 +0000 | [diff] [blame] | 2091 | char *header_buf = header_buf; /* for gcc */ |
| 2092 | char *header_ptr = header_ptr; |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2093 | Htaccess_Proxy *proxy_entry; |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 2094 | #endif |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2095 | |
Denis Vlasenko | d6cd9d7 | 2007-08-18 14:22:09 +0000 | [diff] [blame] | 2096 | /* Allocation of iobuf is postponed until now |
| 2097 | * (IOW, server process doesn't need to waste 8k) */ |
Denis Vlasenko | 921799d | 2007-08-19 19:28:09 +0000 | [diff] [blame] | 2098 | iobuf = xmalloc(IOBUF_SIZE); |
Denis Vlasenko | d6cd9d7 | 2007-08-18 14:22:09 +0000 | [diff] [blame] | 2099 | |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2100 | rmt_ip = 0; |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 2101 | if (fromAddr->u.sa.sa_family == AF_INET) { |
| 2102 | rmt_ip = ntohl(fromAddr->u.sin.sin_addr.s_addr); |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2103 | } |
Denis Vlasenko | 35465a3 | 2007-09-25 11:58:33 +0000 | [diff] [blame] | 2104 | #if ENABLE_FEATURE_IPV6 |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 2105 | if (fromAddr->u.sa.sa_family == AF_INET6 |
| 2106 | && fromAddr->u.sin6.sin6_addr.s6_addr32[0] == 0 |
| 2107 | && fromAddr->u.sin6.sin6_addr.s6_addr32[1] == 0 |
| 2108 | && ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[2]) == 0xffff) |
| 2109 | rmt_ip = ntohl(fromAddr->u.sin6.sin6_addr.s6_addr32[3]); |
Denis Vlasenko | 35465a3 | 2007-09-25 11:58:33 +0000 | [diff] [blame] | 2110 | #endif |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2111 | if (ENABLE_FEATURE_HTTPD_CGI || DEBUG || verbose) { |
Denis Vlasenko | faf334a | 2008-05-18 15:14:36 +0000 | [diff] [blame] | 2112 | /* NB: can be NULL (user runs httpd -i by hand?) */ |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 2113 | rmt_ip_str = xmalloc_sockaddr2dotted(&fromAddr->u.sa); |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2114 | } |
| 2115 | if (verbose) { |
| 2116 | /* this trick makes -v logging much simpler */ |
Denis Vlasenko | faf334a | 2008-05-18 15:14:36 +0000 | [diff] [blame] | 2117 | if (rmt_ip_str) |
| 2118 | applet_name = rmt_ip_str; |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2119 | if (verbose > 2) |
| 2120 | bb_error_msg("connected"); |
| 2121 | } |
| 2122 | |
Denis Vlasenko | 2ca84f6 | 2009-02-05 12:38:21 +0000 | [diff] [blame] | 2123 | /* Install timeout handler. get_line() needs it. */ |
| 2124 | signal(SIGALRM, send_REQUEST_TIMEOUT_and_exit); |
Eric Andersen | 07f2fea | 2004-10-08 08:03:29 +0000 | [diff] [blame] | 2125 | |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2126 | if (!get_line()) /* EOF or error or empty line */ |
Denis Vlasenko | feac3ce | 2007-08-17 19:20:39 +0000 | [diff] [blame] | 2127 | send_headers_and_exit(HTTP_BAD_REQUEST); |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2128 | |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 2129 | /* Determine type of request (GET/POST) */ |
Denys Vlasenko | 85daa67 | 2013-03-25 23:27:00 +0100 | [diff] [blame] | 2130 | // rfc2616: method and URI is separated by exactly one space |
| 2131 | //urlp = strpbrk(iobuf, " \t"); - no, tab isn't allowed |
| 2132 | urlp = strchr(iobuf, ' '); |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2133 | if (urlp == NULL) |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2134 | send_headers_and_exit(HTTP_BAD_REQUEST); |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2135 | *urlp++ = '\0'; |
Denis Vlasenko | 55a9940 | 2006-09-30 20:41:44 +0000 | [diff] [blame] | 2136 | #if ENABLE_FEATURE_HTTPD_CGI |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 2137 | prequest = request_GET; |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2138 | if (strcasecmp(iobuf, prequest) != 0) { |
Denis Vlasenko | 2f518b0 | 2008-02-21 00:12:07 +0000 | [diff] [blame] | 2139 | prequest = request_HEAD; |
| 2140 | if (strcasecmp(iobuf, prequest) != 0) { |
| 2141 | prequest = "POST"; |
| 2142 | if (strcasecmp(iobuf, prequest) != 0) |
| 2143 | send_headers_and_exit(HTTP_NOT_IMPLEMENTED); |
| 2144 | } |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2145 | } |
| 2146 | #else |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2147 | if (strcasecmp(iobuf, request_GET) != 0) |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2148 | send_headers_and_exit(HTTP_NOT_IMPLEMENTED); |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2149 | #endif |
Denys Vlasenko | 85daa67 | 2013-03-25 23:27:00 +0100 | [diff] [blame] | 2150 | // rfc2616: method and URI is separated by exactly one space |
| 2151 | //urlp = skip_whitespace(urlp); - should not be necessary |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2152 | if (urlp[0] != '/') |
| 2153 | send_headers_and_exit(HTTP_BAD_REQUEST); |
| 2154 | |
| 2155 | /* Find end of URL and parse HTTP version, if any */ |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2156 | http_major_version = '0'; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 2157 | IF_FEATURE_HTTPD_PROXY(http_minor_version = '0';) |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2158 | tptr = strchrnul(urlp, ' '); |
| 2159 | /* Is it " HTTP/"? */ |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2160 | if (tptr[0] && strncmp(tptr + 1, HTTP_200, 5) == 0) { |
| 2161 | http_major_version = tptr[6]; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 2162 | IF_FEATURE_HTTPD_PROXY(http_minor_version = tptr[8];) |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2163 | } |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2164 | *tptr = '\0'; |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2165 | |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 2166 | /* Copy URL from after "GET "/"POST " to stack-allocated char[] */ |
Denis Vlasenko | fcd878e | 2007-12-29 02:16:23 +0000 | [diff] [blame] | 2167 | urlcopy = alloca((tptr - urlp) + 2 + strlen(index_page)); |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2168 | /*if (urlcopy == NULL) |
| 2169 | * send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR);*/ |
| 2170 | strcpy(urlcopy, urlp); |
| 2171 | /* NB: urlcopy ptr is never changed after this */ |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 2172 | |
| 2173 | /* Extract url args if present */ |
Denys Vlasenko | f85bd1a | 2011-12-18 03:22:36 +0100 | [diff] [blame] | 2174 | /* g_query = NULL; - already is */ |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2175 | tptr = strchr(urlcopy, '?'); |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2176 | if (tptr) { |
| 2177 | *tptr++ = '\0'; |
| 2178 | g_query = tptr; |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2179 | } |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2180 | |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 2181 | /* Decode URL escape sequences */ |
Denys Vlasenko | dd1061b | 2011-09-11 21:04:02 +0200 | [diff] [blame] | 2182 | tptr = percent_decode_in_place(urlcopy, /*strict:*/ 1); |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2183 | if (tptr == NULL) |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2184 | send_headers_and_exit(HTTP_BAD_REQUEST); |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2185 | if (tptr == urlcopy + 1) { |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2186 | /* '/' or NUL is encoded */ |
| 2187 | send_headers_and_exit(HTTP_NOT_FOUND); |
| 2188 | } |
Denis Vlasenko | 0bb993f | 2006-11-21 00:06:28 +0000 | [diff] [blame] | 2189 | |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 2190 | /* Canonicalize path */ |
| 2191 | /* Algorithm stolen from libbb bb_simplify_path(), |
Denis Vlasenko | 6bf05cf | 2008-05-07 12:18:48 +0000 | [diff] [blame] | 2192 | * but don't strdup, retain trailing slash, protect root */ |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2193 | urlp = tptr = urlcopy; |
Denys Vlasenko | b05cd6b | 2011-12-16 01:37:02 +0100 | [diff] [blame] | 2194 | for (;;) { |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2195 | if (*urlp == '/') { |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2196 | /* skip duplicate (or initial) slash */ |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2197 | if (*tptr == '/') { |
Denys Vlasenko | b05cd6b | 2011-12-16 01:37:02 +0100 | [diff] [blame] | 2198 | goto next_char; |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2199 | } |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2200 | if (*tptr == '.') { |
Denys Vlasenko | b05cd6b | 2011-12-16 01:37:02 +0100 | [diff] [blame] | 2201 | if (tptr[1] == '.' && (tptr[2] == '/' || tptr[2] == '\0')) { |
| 2202 | /* "..": be careful */ |
| 2203 | /* protect root */ |
| 2204 | if (urlp == urlcopy) |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2205 | send_headers_and_exit(HTTP_BAD_REQUEST); |
Denys Vlasenko | b05cd6b | 2011-12-16 01:37:02 +0100 | [diff] [blame] | 2206 | /* omit previous dir */ |
| 2207 | while (*--urlp != '/') |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2208 | continue; |
Denys Vlasenko | b05cd6b | 2011-12-16 01:37:02 +0100 | [diff] [blame] | 2209 | /* skip to "./" or ".<NUL>" */ |
| 2210 | tptr++; |
| 2211 | } |
| 2212 | if (tptr[1] == '/' || tptr[1] == '\0') { |
| 2213 | /* skip extra "/./" */ |
| 2214 | goto next_char; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2215 | } |
| 2216 | } |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2217 | } |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2218 | *++urlp = *tptr; |
Denys Vlasenko | b05cd6b | 2011-12-16 01:37:02 +0100 | [diff] [blame] | 2219 | if (*urlp == '\0') |
| 2220 | break; |
| 2221 | next_char: |
| 2222 | tptr++; |
| 2223 | } |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2224 | |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 2225 | /* If URL is a directory, add '/' */ |
Denis Vlasenko | 6bf05cf | 2008-05-07 12:18:48 +0000 | [diff] [blame] | 2226 | if (urlp[-1] != '/') { |
Denys Vlasenko | f282c6b | 2011-12-18 03:27:46 +0100 | [diff] [blame] | 2227 | if (is_directory(urlcopy + 1, /*followlinks:*/ 1)) { |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2228 | found_moved_temporarily = urlcopy; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2229 | } |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2230 | } |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2231 | |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 2232 | /* Log it */ |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2233 | if (verbose > 1) |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2234 | bb_error_msg("url:%s", urlcopy); |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2235 | |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2236 | tptr = urlcopy; |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2237 | ip_allowed = checkPermIP(); |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2238 | while (ip_allowed && (tptr = strchr(tptr + 1, '/')) != NULL) { |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2239 | /* have path1/path2 */ |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2240 | *tptr = '\0'; |
Denys Vlasenko | f282c6b | 2011-12-18 03:27:46 +0100 | [diff] [blame] | 2241 | if (is_directory(urlcopy + 1, /*followlinks:*/ 1)) { |
Denis Vlasenko | 0eb406c | 2008-06-13 09:53:06 +0000 | [diff] [blame] | 2242 | /* may have subdir config */ |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2243 | parse_conf(urlcopy + 1, SUBDIR_PARSE); |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2244 | ip_allowed = checkPermIP(); |
| 2245 | } |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2246 | *tptr = '/'; |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2247 | } |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2248 | |
| 2249 | #if ENABLE_FEATURE_HTTPD_PROXY |
| 2250 | proxy_entry = find_proxy_entry(urlcopy); |
| 2251 | if (proxy_entry) |
Denis Vlasenko | 34cd7af | 2007-10-18 13:01:22 +0000 | [diff] [blame] | 2252 | header_buf = header_ptr = xmalloc(IOBUF_SIZE); |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2253 | #endif |
| 2254 | |
| 2255 | if (http_major_version >= '0') { |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2256 | /* Request was with "... HTTP/nXXX", and n >= 0 */ |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 2257 | |
Denys Vlasenko | 535ce1d | 2010-07-25 03:20:25 +0200 | [diff] [blame] | 2258 | /* Read until blank line */ |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2259 | while (1) { |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2260 | if (!get_line()) |
| 2261 | break; /* EOF or error or empty line */ |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2262 | if (DEBUG) |
| 2263 | bb_error_msg("header: '%s'", iobuf); |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 2264 | |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2265 | #if ENABLE_FEATURE_HTTPD_PROXY |
| 2266 | /* We need 2 more bytes for yet another "\r\n" - |
Denis Vlasenko | 34cd7af | 2007-10-18 13:01:22 +0000 | [diff] [blame] | 2267 | * see near fdprintf(proxy_fd...) further below */ |
Denys Vlasenko | b4b12bf | 2017-01-26 19:35:40 +0100 | [diff] [blame] | 2268 | if (proxy_entry && (header_ptr - header_buf) < IOBUF_SIZE - 4) { |
| 2269 | int len = strnlen(iobuf, IOBUF_SIZE - (header_ptr - header_buf) - 4); |
Denis Vlasenko | 34cd7af | 2007-10-18 13:01:22 +0000 | [diff] [blame] | 2270 | memcpy(header_ptr, iobuf, len); |
| 2271 | header_ptr += len; |
| 2272 | header_ptr[0] = '\r'; |
| 2273 | header_ptr[1] = '\n'; |
| 2274 | header_ptr += 2; |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2275 | } |
| 2276 | #endif |
| 2277 | |
| 2278 | #if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY |
| 2279 | /* Try and do our best to parse more lines */ |
Denys Vlasenko | 8cc1ab3 | 2017-02-04 23:19:30 +0100 | [diff] [blame] | 2280 | if ((STRNCASECMP(iobuf, "Content-Length:") == 0)) { |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2281 | /* extra read only for POST */ |
Denis Vlasenko | 85c2471 | 2008-03-17 09:04:04 +0000 | [diff] [blame] | 2282 | if (prequest != request_GET |
Denys Vlasenko | 535ce1d | 2010-07-25 03:20:25 +0200 | [diff] [blame] | 2283 | # if ENABLE_FEATURE_HTTPD_CGI |
Denis Vlasenko | 85c2471 | 2008-03-17 09:04:04 +0000 | [diff] [blame] | 2284 | && prequest != request_HEAD |
Denys Vlasenko | 535ce1d | 2010-07-25 03:20:25 +0200 | [diff] [blame] | 2285 | # endif |
Denis Vlasenko | 85c2471 | 2008-03-17 09:04:04 +0000 | [diff] [blame] | 2286 | ) { |
Denys Vlasenko | 8cc1ab3 | 2017-02-04 23:19:30 +0100 | [diff] [blame] | 2287 | tptr = skip_whitespace(iobuf + sizeof("Content-Length:") - 1); |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2288 | if (!tptr[0]) |
Denis Vlasenko | feac3ce | 2007-08-17 19:20:39 +0000 | [diff] [blame] | 2289 | send_headers_and_exit(HTTP_BAD_REQUEST); |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2290 | /* not using strtoul: it ignores leading minus! */ |
Denis Vlasenko | 2f518b0 | 2008-02-21 00:12:07 +0000 | [diff] [blame] | 2291 | length = bb_strtou(tptr, NULL, 10); |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2292 | /* length is "ulong", but we need to pass it to int later */ |
Denis Vlasenko | 2f518b0 | 2008-02-21 00:12:07 +0000 | [diff] [blame] | 2293 | if (errno || length > INT_MAX) |
Denis Vlasenko | feac3ce | 2007-08-17 19:20:39 +0000 | [diff] [blame] | 2294 | send_headers_and_exit(HTTP_BAD_REQUEST); |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2295 | } |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2296 | } |
| 2297 | #endif |
| 2298 | #if ENABLE_FEATURE_HTTPD_CGI |
| 2299 | else if (STRNCASECMP(iobuf, "Cookie:") == 0) { |
Denys Vlasenko | b4b12bf | 2017-01-26 19:35:40 +0100 | [diff] [blame] | 2300 | if (!cookie) /* in case they send millions of these, do not OOM */ |
| 2301 | cookie = xstrdup(skip_whitespace(iobuf + sizeof("Cookie:")-1)); |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2302 | } else if (STRNCASECMP(iobuf, "Content-Type:") == 0) { |
Denys Vlasenko | b4b12bf | 2017-01-26 19:35:40 +0100 | [diff] [blame] | 2303 | if (!content_type) |
| 2304 | content_type = xstrdup(skip_whitespace(iobuf + sizeof("Content-Type:")-1)); |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2305 | } else if (STRNCASECMP(iobuf, "Referer:") == 0) { |
Denys Vlasenko | b4b12bf | 2017-01-26 19:35:40 +0100 | [diff] [blame] | 2306 | if (!G.referer) |
| 2307 | G.referer = xstrdup(skip_whitespace(iobuf + sizeof("Referer:")-1)); |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2308 | } else if (STRNCASECMP(iobuf, "User-Agent:") == 0) { |
Denys Vlasenko | b4b12bf | 2017-01-26 19:35:40 +0100 | [diff] [blame] | 2309 | if (!G.user_agent) |
| 2310 | G.user_agent = xstrdup(skip_whitespace(iobuf + sizeof("User-Agent:")-1)); |
Denis Vlasenko | 9d1d4c0 | 2008-11-22 20:29:35 +0000 | [diff] [blame] | 2311 | } else if (STRNCASECMP(iobuf, "Host:") == 0) { |
Denys Vlasenko | b4b12bf | 2017-01-26 19:35:40 +0100 | [diff] [blame] | 2312 | if (!G.host) |
| 2313 | G.host = xstrdup(skip_whitespace(iobuf + sizeof("Host:")-1)); |
Bernhard Reutner-Fischer | b424930 | 2008-09-01 15:30:49 +0000 | [diff] [blame] | 2314 | } else if (STRNCASECMP(iobuf, "Accept:") == 0) { |
Denys Vlasenko | b4b12bf | 2017-01-26 19:35:40 +0100 | [diff] [blame] | 2315 | if (!G.http_accept) |
| 2316 | G.http_accept = xstrdup(skip_whitespace(iobuf + sizeof("Accept:")-1)); |
Bernhard Reutner-Fischer | b424930 | 2008-09-01 15:30:49 +0000 | [diff] [blame] | 2317 | } else if (STRNCASECMP(iobuf, "Accept-Language:") == 0) { |
Denys Vlasenko | b4b12bf | 2017-01-26 19:35:40 +0100 | [diff] [blame] | 2318 | if (!G.http_accept_language) |
| 2319 | G.http_accept_language = xstrdup(skip_whitespace(iobuf + sizeof("Accept-Language:")-1)); |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2320 | } |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2321 | #endif |
Denis Vlasenko | 55a9940 | 2006-09-30 20:41:44 +0000 | [diff] [blame] | 2322 | #if ENABLE_FEATURE_HTTPD_BASIC_AUTH |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2323 | if (STRNCASECMP(iobuf, "Authorization:") == 0) { |
| 2324 | /* We only allow Basic credentials. |
Denis Vlasenko | 0eb406c | 2008-06-13 09:53:06 +0000 | [diff] [blame] | 2325 | * It shows up as "Authorization: Basic <user>:<passwd>" where |
| 2326 | * "<user>:<passwd>" is base64 encoded. |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2327 | */ |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2328 | tptr = skip_whitespace(iobuf + sizeof("Authorization:")-1); |
| 2329 | if (STRNCASECMP(tptr, "Basic") != 0) |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2330 | continue; |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2331 | tptr += sizeof("Basic")-1; |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2332 | /* decodeBase64() skips whitespace itself */ |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2333 | decodeBase64(tptr); |
Denis Vlasenko | 0eb406c | 2008-06-13 09:53:06 +0000 | [diff] [blame] | 2334 | authorized = check_user_passwd(urlcopy, tptr); |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2335 | } |
Denis Vlasenko | 0eb406c | 2008-06-13 09:53:06 +0000 | [diff] [blame] | 2336 | #endif |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 2337 | #if ENABLE_FEATURE_HTTPD_RANGES |
| 2338 | if (STRNCASECMP(iobuf, "Range:") == 0) { |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2339 | /* We know only bytes=NNN-[MMM] */ |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 2340 | char *s = skip_whitespace(iobuf + sizeof("Range:")-1); |
Denys Vlasenko | a6390ed | 2017-09-18 13:09:11 +0200 | [diff] [blame] | 2341 | if (is_prefixed_with(s, "bytes=")) { |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 2342 | s += sizeof("bytes=")-1; |
| 2343 | range_start = BB_STRTOOFF(s, &s, 10); |
| 2344 | if (s[0] != '-' || range_start < 0) { |
Denys Vlasenko | 8cce1b3 | 2012-02-19 17:18:45 +0100 | [diff] [blame] | 2345 | range_start = -1; |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 2346 | } else if (s[1]) { |
| 2347 | range_end = BB_STRTOOFF(s+1, NULL, 10); |
| 2348 | if (errno || range_end < range_start) |
Denys Vlasenko | 8cce1b3 | 2012-02-19 17:18:45 +0100 | [diff] [blame] | 2349 | range_start = -1; |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 2350 | } |
| 2351 | } |
| 2352 | } |
| 2353 | #endif |
Peter Korsgaard | 7a2ba32 | 2010-07-25 03:20:53 +0200 | [diff] [blame] | 2354 | #if ENABLE_FEATURE_HTTPD_GZIP |
| 2355 | if (STRNCASECMP(iobuf, "Accept-Encoding:") == 0) { |
Peter Korsgaard | e5dbd56 | 2010-07-26 02:08:35 +0200 | [diff] [blame] | 2356 | /* Note: we do not support "gzip;q=0" |
| 2357 | * method of _disabling_ gzip |
| 2358 | * delivery. No one uses that, though */ |
| 2359 | const char *s = strstr(iobuf, "gzip"); |
| 2360 | if (s) { |
| 2361 | // want more thorough checks? |
| 2362 | //if (s[-1] == ' ' |
| 2363 | // || s[-1] == ',' |
| 2364 | // || s[-1] == ':' |
| 2365 | //) { |
Peter Korsgaard | 7a2ba32 | 2010-07-25 03:20:53 +0200 | [diff] [blame] | 2366 | content_gzip = 1; |
Peter Korsgaard | e5dbd56 | 2010-07-26 02:08:35 +0200 | [diff] [blame] | 2367 | //} |
Peter Korsgaard | 7a2ba32 | 2010-07-25 03:20:53 +0200 | [diff] [blame] | 2368 | } |
| 2369 | } |
| 2370 | #endif |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2371 | } /* while extra header reading */ |
| 2372 | } |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2373 | |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2374 | /* We are done reading headers, disable peer timeout */ |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2375 | alarm(0); |
| 2376 | |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 2377 | if (strcmp(bb_basename(urlcopy), HTTPD_CONF) == 0 || !ip_allowed) { |
| 2378 | /* protect listing [/path]/httpd.conf or IP deny */ |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2379 | send_headers_and_exit(HTTP_FORBIDDEN); |
| 2380 | } |
| 2381 | |
| 2382 | #if ENABLE_FEATURE_HTTPD_BASIC_AUTH |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 2383 | /* Case: no "Authorization:" was seen, but page might require passwd. |
Denis Vlasenko | 0eb406c | 2008-06-13 09:53:06 +0000 | [diff] [blame] | 2384 | * Check that with dummy user:pass */ |
Denis Vlasenko | 7504f2f | 2008-06-13 13:20:38 +0000 | [diff] [blame] | 2385 | if (authorized < 0) |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 2386 | authorized = check_user_passwd(urlcopy, (char *) ""); |
Denis Vlasenko | 7504f2f | 2008-06-13 13:20:38 +0000 | [diff] [blame] | 2387 | if (!authorized) |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2388 | send_headers_and_exit(HTTP_UNAUTHORIZED); |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2389 | #endif |
| 2390 | |
| 2391 | if (found_moved_temporarily) { |
| 2392 | send_headers_and_exit(HTTP_MOVED_TEMPORARILY); |
| 2393 | } |
| 2394 | |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2395 | #if ENABLE_FEATURE_HTTPD_PROXY |
| 2396 | if (proxy_entry != NULL) { |
| 2397 | int proxy_fd; |
| 2398 | len_and_sockaddr *lsa; |
| 2399 | |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2400 | lsa = host2sockaddr(proxy_entry->host_port, 80); |
| 2401 | if (lsa == NULL) |
| 2402 | send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR); |
Laurent Bercot | 0ef478f | 2017-01-06 22:03:08 +0100 | [diff] [blame] | 2403 | proxy_fd = socket(lsa->u.sa.sa_family, SOCK_STREAM, 0); |
| 2404 | if (proxy_fd < 0) |
| 2405 | send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR); |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 2406 | if (connect(proxy_fd, &lsa->u.sa, lsa->len) < 0) |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2407 | send_headers_and_exit(HTTP_INTERNAL_SERVER_ERROR); |
| 2408 | fdprintf(proxy_fd, "%s %s%s%s%s HTTP/%c.%c\r\n", |
| 2409 | prequest, /* GET or POST */ |
| 2410 | proxy_entry->url_to, /* url part 1 */ |
| 2411 | urlcopy + strlen(proxy_entry->url_from), /* url part 2 */ |
| 2412 | (g_query ? "?" : ""), /* "?" (maybe) */ |
| 2413 | (g_query ? g_query : ""), /* query string (maybe) */ |
| 2414 | http_major_version, http_minor_version); |
Denis Vlasenko | 34cd7af | 2007-10-18 13:01:22 +0000 | [diff] [blame] | 2415 | header_ptr[0] = '\r'; |
| 2416 | header_ptr[1] = '\n'; |
| 2417 | header_ptr += 2; |
| 2418 | write(proxy_fd, header_buf, header_ptr - header_buf); |
| 2419 | free(header_buf); /* on the order of 8k, free it */ |
Denys Vlasenko | 8fc9e6a | 2010-04-02 10:40:58 +0200 | [diff] [blame] | 2420 | cgi_io_loop_and_exit(proxy_fd, proxy_fd, length); |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2421 | } |
| 2422 | #endif |
| 2423 | |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2424 | tptr = urlcopy + 1; /* skip first '/' */ |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2425 | |
| 2426 | #if ENABLE_FEATURE_HTTPD_CGI |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 2427 | if (is_prefixed_with(tptr, "cgi-bin/")) { |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2428 | if (tptr[8] == '\0') { |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 2429 | /* protect listing "cgi-bin/" */ |
Denis Vlasenko | e45af73 | 2007-08-17 19:19:15 +0000 | [diff] [blame] | 2430 | send_headers_and_exit(HTTP_FORBIDDEN); |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2431 | } |
Denys Vlasenko | 03419aa | 2011-12-19 12:30:34 +0100 | [diff] [blame] | 2432 | send_cgi_and_exit(urlcopy, urlcopy, prequest, length, cookie, content_type); |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2433 | } |
Denys Vlasenko | 108b8c5 | 2009-09-08 21:17:49 +0200 | [diff] [blame] | 2434 | #endif |
| 2435 | |
Denys Vlasenko | 03419aa | 2011-12-19 12:30:34 +0100 | [diff] [blame] | 2436 | if (urlp[-1] == '/') { |
| 2437 | /* When index_page string is appended to <dir>/ URL, it overwrites |
| 2438 | * the query string. If we fall back to call /cgi-bin/index.cgi, |
| 2439 | * query string would be lost and not available to the CGI. |
| 2440 | * Work around it by making a deep copy. |
| 2441 | */ |
| 2442 | if (ENABLE_FEATURE_HTTPD_CGI) |
| 2443 | g_query = xstrdup(g_query); /* ok for NULL too */ |
Denys Vlasenko | 108b8c5 | 2009-09-08 21:17:49 +0200 | [diff] [blame] | 2444 | strcpy(urlp, index_page); |
Denys Vlasenko | 03419aa | 2011-12-19 12:30:34 +0100 | [diff] [blame] | 2445 | } |
Denys Vlasenko | 108b8c5 | 2009-09-08 21:17:49 +0200 | [diff] [blame] | 2446 | if (stat(tptr, &sb) == 0) { |
Denis Vlasenko | 1ccd96f | 2007-03-05 19:24:33 +0000 | [diff] [blame] | 2447 | #if ENABLE_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2448 | char *suffix = strrchr(tptr, '.'); |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2449 | if (suffix) { |
| 2450 | Htaccess *cur; |
| 2451 | for (cur = script_i; cur; cur = cur->next) { |
| 2452 | if (strcmp(cur->before_colon + 1, suffix) == 0) { |
Denys Vlasenko | 03419aa | 2011-12-19 12:30:34 +0100 | [diff] [blame] | 2453 | send_cgi_and_exit(urlcopy, urlcopy, prequest, length, cookie, content_type); |
Denis Vlasenko | 1ccd96f | 2007-03-05 19:24:33 +0000 | [diff] [blame] | 2454 | } |
| 2455 | } |
| 2456 | } |
| 2457 | #endif |
Denis Vlasenko | f431017 | 2007-09-21 22:35:18 +0000 | [diff] [blame] | 2458 | file_size = sb.st_size; |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2459 | last_mod = sb.st_mtime; |
| 2460 | } |
Denis Vlasenko | 5d148e2 | 2006-11-21 00:12:09 +0000 | [diff] [blame] | 2461 | #if ENABLE_FEATURE_HTTPD_CGI |
Denis Vlasenko | 52e15dc | 2007-08-19 18:53:43 +0000 | [diff] [blame] | 2462 | else if (urlp[-1] == '/') { |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2463 | /* It's a dir URL and there is no index.html |
| 2464 | * Try cgi-bin/index.cgi */ |
| 2465 | if (access("/cgi-bin/index.cgi"+1, X_OK) == 0) { |
Denys Vlasenko | 03419aa | 2011-12-19 12:30:34 +0100 | [diff] [blame] | 2466 | urlp[0] = '\0'; /* remove index_page */ |
| 2467 | send_cgi_and_exit("/cgi-bin/index.cgi", urlcopy, prequest, length, cookie, content_type); |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2468 | } |
Denis Vlasenko | 91adf7d | 2007-08-17 19:19:42 +0000 | [diff] [blame] | 2469 | } |
Denys Vlasenko | 108b8c5 | 2009-09-08 21:17:49 +0200 | [diff] [blame] | 2470 | /* else fall through to send_file, it errors out if open fails: */ |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 2471 | |
Denys Vlasenko | 108b8c5 | 2009-09-08 21:17:49 +0200 | [diff] [blame] | 2472 | if (prequest != request_GET && prequest != request_HEAD) { |
| 2473 | /* POST for files does not make sense */ |
| 2474 | send_headers_and_exit(HTTP_NOT_IMPLEMENTED); |
| 2475 | } |
Denis Vlasenko | 2f518b0 | 2008-02-21 00:12:07 +0000 | [diff] [blame] | 2476 | send_file_and_exit(tptr, |
Denis Vlasenko | 85c2471 | 2008-03-17 09:04:04 +0000 | [diff] [blame] | 2477 | (prequest != request_HEAD ? SEND_HEADERS_AND_BODY : SEND_HEADERS) |
Denis Vlasenko | 85c2471 | 2008-03-17 09:04:04 +0000 | [diff] [blame] | 2478 | ); |
Denys Vlasenko | 108b8c5 | 2009-09-08 21:17:49 +0200 | [diff] [blame] | 2479 | #else |
| 2480 | send_file_and_exit(tptr, SEND_HEADERS_AND_BODY); |
| 2481 | #endif |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 2482 | } |
| 2483 | |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 2484 | /* |
| 2485 | * The main http server function. |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2486 | * Given a socket, listen for new connections and farm out |
| 2487 | * the processing as a [v]forked process. |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 2488 | * Never returns. |
| 2489 | */ |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2490 | #if BB_MMU |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 2491 | static void mini_httpd(int server_socket) NORETURN; |
Denis Vlasenko | 9611cb1 | 2007-08-18 14:18:43 +0000 | [diff] [blame] | 2492 | static void mini_httpd(int server_socket) |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 2493 | { |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 2494 | /* NB: it's best to not use xfuncs in this loop before fork(). |
| 2495 | * Otherwise server may die on transient errors (temporary |
| 2496 | * out-of-memory condition, etc), which is Bad(tm). |
| 2497 | * Try to do any dangerous calls after fork. |
| 2498 | */ |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2499 | while (1) { |
Denis Vlasenko | e45af73 | 2007-08-17 19:19:15 +0000 | [diff] [blame] | 2500 | int n; |
| 2501 | len_and_sockaddr fromAddr; |
Denis Vlasenko | 3f5fdc7 | 2007-10-14 04:55:59 +0000 | [diff] [blame] | 2502 | |
Denis Vlasenko | e45af73 | 2007-08-17 19:19:15 +0000 | [diff] [blame] | 2503 | /* Wait for connections... */ |
| 2504 | fromAddr.len = LSA_SIZEOF_SA; |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 2505 | n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len); |
Denis Vlasenko | e45af73 | 2007-08-17 19:19:15 +0000 | [diff] [blame] | 2506 | if (n < 0) |
Denis Vlasenko | 6c5e5a0 | 2006-11-10 23:28:57 +0000 | [diff] [blame] | 2507 | continue; |
Denys Vlasenko | 535ce1d | 2010-07-25 03:20:25 +0200 | [diff] [blame] | 2508 | |
Denis Vlasenko | e45af73 | 2007-08-17 19:19:15 +0000 | [diff] [blame] | 2509 | /* set the KEEPALIVE option to cull dead connections */ |
Denys Vlasenko | c52cbea | 2015-08-24 19:48:03 +0200 | [diff] [blame] | 2510 | setsockopt_keepalive(n); |
Denis Vlasenko | 04291bc | 2006-11-21 10:15:25 +0000 | [diff] [blame] | 2511 | |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 2512 | if (fork() == 0) { |
Denis Vlasenko | 04291bc | 2006-11-21 10:15:25 +0000 | [diff] [blame] | 2513 | /* child */ |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 2514 | /* Do not reload config on HUP */ |
Denis Vlasenko | 6c5e5a0 | 2006-11-10 23:28:57 +0000 | [diff] [blame] | 2515 | signal(SIGHUP, SIG_IGN); |
Denis Vlasenko | 9611cb1 | 2007-08-18 14:18:43 +0000 | [diff] [blame] | 2516 | close(server_socket); |
| 2517 | xmove_fd(n, 0); |
| 2518 | xdup2(0, 1); |
| 2519 | |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2520 | handle_incoming_and_exit(&fromAddr); |
| 2521 | } |
| 2522 | /* parent, or fork failed */ |
| 2523 | close(n); |
| 2524 | } /* while (1) */ |
| 2525 | /* never reached */ |
| 2526 | } |
| 2527 | #else |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 2528 | static void mini_httpd_nommu(int server_socket, int argc, char **argv) NORETURN; |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2529 | static void mini_httpd_nommu(int server_socket, int argc, char **argv) |
| 2530 | { |
| 2531 | char *argv_copy[argc + 2]; |
| 2532 | |
| 2533 | argv_copy[0] = argv[0]; |
| 2534 | argv_copy[1] = (char*)"-i"; |
| 2535 | memcpy(&argv_copy[2], &argv[1], argc * sizeof(argv[0])); |
| 2536 | |
| 2537 | /* NB: it's best to not use xfuncs in this loop before vfork(). |
| 2538 | * Otherwise server may die on transient errors (temporary |
| 2539 | * out-of-memory condition, etc), which is Bad(tm). |
| 2540 | * Try to do any dangerous calls after fork. |
| 2541 | */ |
| 2542 | while (1) { |
| 2543 | int n; |
| 2544 | len_and_sockaddr fromAddr; |
Denis Vlasenko | 3f5fdc7 | 2007-10-14 04:55:59 +0000 | [diff] [blame] | 2545 | |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2546 | /* Wait for connections... */ |
| 2547 | fromAddr.len = LSA_SIZEOF_SA; |
Denis Vlasenko | 671ca33 | 2008-02-19 14:13:20 +0000 | [diff] [blame] | 2548 | n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len); |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2549 | if (n < 0) |
| 2550 | continue; |
Denys Vlasenko | 535ce1d | 2010-07-25 03:20:25 +0200 | [diff] [blame] | 2551 | |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2552 | /* set the KEEPALIVE option to cull dead connections */ |
Denys Vlasenko | c52cbea | 2015-08-24 19:48:03 +0200 | [diff] [blame] | 2553 | setsockopt_keepalive(n); |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2554 | |
| 2555 | if (vfork() == 0) { |
| 2556 | /* child */ |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2557 | /* Do not reload config on HUP */ |
| 2558 | signal(SIGHUP, SIG_IGN); |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2559 | close(server_socket); |
| 2560 | xmove_fd(n, 0); |
| 2561 | xdup2(0, 1); |
| 2562 | |
| 2563 | /* Run a copy of ourself in inetd mode */ |
| 2564 | re_exec(argv_copy); |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2565 | } |
Denys Vlasenko | d2277e2 | 2011-11-22 17:19:26 +0100 | [diff] [blame] | 2566 | argv_copy[0][0] &= 0x7f; |
Denis Vlasenko | 921799d | 2007-08-19 19:28:09 +0000 | [diff] [blame] | 2567 | /* parent, or vfork failed */ |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 2568 | close(n); |
Denis Vlasenko | 04291bc | 2006-11-21 10:15:25 +0000 | [diff] [blame] | 2569 | } /* while (1) */ |
Denis Vlasenko | 241b156 | 2007-08-17 19:18:47 +0000 | [diff] [blame] | 2570 | /* never reached */ |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 2571 | } |
Denis Vlasenko | 56258b6 | 2007-06-23 23:14:02 +0000 | [diff] [blame] | 2572 | #endif |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 2573 | |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2574 | /* |
| 2575 | * Process a HTTP connection on stdin/out. |
| 2576 | * Never returns. |
| 2577 | */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 2578 | static void mini_httpd_inetd(void) NORETURN; |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 2579 | static void mini_httpd_inetd(void) |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 2580 | { |
Denis Vlasenko | e45af73 | 2007-08-17 19:19:15 +0000 | [diff] [blame] | 2581 | len_and_sockaddr fromAddr; |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2582 | |
Denis Vlasenko | faf334a | 2008-05-18 15:14:36 +0000 | [diff] [blame] | 2583 | memset(&fromAddr, 0, sizeof(fromAddr)); |
Denis Vlasenko | e45af73 | 2007-08-17 19:19:15 +0000 | [diff] [blame] | 2584 | fromAddr.len = LSA_SIZEOF_SA; |
Denis Vlasenko | faf334a | 2008-05-18 15:14:36 +0000 | [diff] [blame] | 2585 | /* NB: can fail if user runs it by hand and types in http cmds */ |
Bernhard Reutner-Fischer | 8c69afd | 2008-01-29 10:33:34 +0000 | [diff] [blame] | 2586 | getpeername(0, &fromAddr.u.sa, &fromAddr.len); |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2587 | handle_incoming_and_exit(&fromAddr); |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2588 | } |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2589 | |
Denis Vlasenko | 1cbfd98 | 2009-02-04 23:43:44 +0000 | [diff] [blame] | 2590 | static void sighup_handler(int sig UNUSED_PARAM) |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2591 | { |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 2592 | parse_conf(DEFAULT_PATH_HTTPD_CONF, SIGNALED_PARSE); |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2593 | } |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2594 | |
Denis Vlasenko | 9f60929 | 2006-11-05 19:47:33 +0000 | [diff] [blame] | 2595 | enum { |
"Vladimir N. Oleynik" | 9a51540 | 2006-02-15 13:27:18 +0000 | [diff] [blame] | 2596 | c_opt_config_file = 0, |
| 2597 | d_opt_decode_url, |
| 2598 | h_opt_home_httpd, |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 2599 | IF_FEATURE_HTTPD_ENCODE_URL_STR(e_opt_encode_url,) |
| 2600 | IF_FEATURE_HTTPD_BASIC_AUTH( r_opt_realm ,) |
| 2601 | IF_FEATURE_HTTPD_AUTH_MD5( m_opt_md5 ,) |
| 2602 | IF_FEATURE_HTTPD_SETUID( u_opt_setuid ,) |
Denis Vlasenko | 0871bc8 | 2006-11-16 16:17:02 +0000 | [diff] [blame] | 2603 | p_opt_port , |
| 2604 | p_opt_inetd , |
| 2605 | p_opt_foreground, |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 2606 | p_opt_verbose , |
Denis Vlasenko | 9f60929 | 2006-11-05 19:47:33 +0000 | [diff] [blame] | 2607 | OPT_CONFIG_FILE = 1 << c_opt_config_file, |
| 2608 | OPT_DECODE_URL = 1 << d_opt_decode_url, |
| 2609 | OPT_HOME_HTTPD = 1 << h_opt_home_httpd, |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 2610 | OPT_ENCODE_URL = IF_FEATURE_HTTPD_ENCODE_URL_STR((1 << e_opt_encode_url)) + 0, |
| 2611 | OPT_REALM = IF_FEATURE_HTTPD_BASIC_AUTH( (1 << r_opt_realm )) + 0, |
| 2612 | OPT_MD5 = IF_FEATURE_HTTPD_AUTH_MD5( (1 << m_opt_md5 )) + 0, |
| 2613 | OPT_SETUID = IF_FEATURE_HTTPD_SETUID( (1 << u_opt_setuid )) + 0, |
Denis Vlasenko | 0871bc8 | 2006-11-16 16:17:02 +0000 | [diff] [blame] | 2614 | OPT_PORT = 1 << p_opt_port, |
| 2615 | OPT_INETD = 1 << p_opt_inetd, |
| 2616 | OPT_FOREGROUND = 1 << p_opt_foreground, |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 2617 | OPT_VERBOSE = 1 << p_opt_verbose, |
"Vladimir N. Oleynik" | 9a51540 | 2006-02-15 13:27:18 +0000 | [diff] [blame] | 2618 | }; |
Eric Andersen | a3bb3e6 | 2003-06-26 09:05:32 +0000 | [diff] [blame] | 2619 | |
Eric Andersen | a3bb3e6 | 2003-06-26 09:05:32 +0000 | [diff] [blame] | 2620 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 2621 | int httpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 2622 | int httpd_main(int argc UNUSED_PARAM, char **argv) |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2623 | { |
Denis Vlasenko | 9611cb1 | 2007-08-18 14:18:43 +0000 | [diff] [blame] | 2624 | int server_socket = server_socket; /* for gcc */ |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 2625 | unsigned opt; |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2626 | char *url_for_decode; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 2627 | IF_FEATURE_HTTPD_ENCODE_URL_STR(const char *url_for_encode;) |
| 2628 | IF_FEATURE_HTTPD_SETUID(const char *s_ugid = NULL;) |
| 2629 | IF_FEATURE_HTTPD_SETUID(struct bb_uidgid_t ugid;) |
| 2630 | IF_FEATURE_HTTPD_AUTH_MD5(const char *pass;) |
Eric Andersen | 35e643b | 2003-07-28 07:40:39 +0000 | [diff] [blame] | 2631 | |
Denis Vlasenko | 073214f | 2007-08-17 19:20:07 +0000 | [diff] [blame] | 2632 | INIT_G(); |
| 2633 | |
Denis Vlasenko | fcdb00f | 2006-11-21 00:09:37 +0000 | [diff] [blame] | 2634 | #if ENABLE_LOCALE_SUPPORT |
| 2635 | /* Undo busybox.c: we want to speak English in http (dates etc) */ |
| 2636 | setlocale(LC_TIME, "C"); |
| 2637 | #endif |
| 2638 | |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 2639 | home_httpd = xrealloc_getcwd_or_warn(NULL); |
| 2640 | /* We do not "absolutize" path given by -h (home) opt. |
Denis Vlasenko | 6bf05cf | 2008-05-07 12:18:48 +0000 | [diff] [blame] | 2641 | * If user gives relative path in -h, |
| 2642 | * $SCRIPT_FILENAME will not be set. */ |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 2643 | opt = getopt32(argv, "^" |
| 2644 | "c:d:h:" |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 2645 | IF_FEATURE_HTTPD_ENCODE_URL_STR("e:") |
| 2646 | IF_FEATURE_HTTPD_BASIC_AUTH("r:") |
| 2647 | IF_FEATURE_HTTPD_AUTH_MD5("m:") |
| 2648 | IF_FEATURE_HTTPD_SETUID("u:") |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 2649 | "p:ifv" |
| 2650 | "\0" |
| 2651 | /* -v counts, -i implies -f */ |
| 2652 | "vv:if", |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 2653 | &opt_c_configFile, &url_for_decode, &home_httpd |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 2654 | IF_FEATURE_HTTPD_ENCODE_URL_STR(, &url_for_encode) |
| 2655 | IF_FEATURE_HTTPD_BASIC_AUTH(, &g_realm) |
| 2656 | IF_FEATURE_HTTPD_AUTH_MD5(, &pass) |
| 2657 | IF_FEATURE_HTTPD_SETUID(, &s_ugid) |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 2658 | , &bind_addr_or_port |
Denis Vlasenko | 384b1d1 | 2007-08-14 16:55:01 +0000 | [diff] [blame] | 2659 | , &verbose |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2660 | ); |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2661 | if (opt & OPT_DECODE_URL) { |
Denys Vlasenko | dd1061b | 2011-09-11 21:04:02 +0200 | [diff] [blame] | 2662 | fputs(percent_decode_in_place(url_for_decode, /*strict:*/ 0), stdout); |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2663 | return 0; |
| 2664 | } |
Denis Vlasenko | 55a9940 | 2006-09-30 20:41:44 +0000 | [diff] [blame] | 2665 | #if ENABLE_FEATURE_HTTPD_ENCODE_URL_STR |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2666 | if (opt & OPT_ENCODE_URL) { |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2667 | fputs(encodeString(url_for_encode), stdout); |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2668 | return 0; |
| 2669 | } |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2670 | #endif |
Denis Vlasenko | 55a9940 | 2006-09-30 20:41:44 +0000 | [diff] [blame] | 2671 | #if ENABLE_FEATURE_HTTPD_AUTH_MD5 |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2672 | if (opt & OPT_MD5) { |
Denys Vlasenko | dbc6a7a | 2009-12-16 02:28:50 +0100 | [diff] [blame] | 2673 | char salt[sizeof("$1$XXXXXXXX")]; |
| 2674 | salt[0] = '$'; |
| 2675 | salt[1] = '1'; |
| 2676 | salt[2] = '$'; |
Denys Vlasenko | 12a4327 | 2011-05-13 03:19:01 +0200 | [diff] [blame] | 2677 | crypt_make_salt(salt + 3, 4); |
Pascal Bellard | 7291755 | 2011-11-29 13:51:11 +0100 | [diff] [blame] | 2678 | puts(pw_encrypt(pass, salt, /*cleanup:*/ 0)); |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2679 | return 0; |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2680 | } |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2681 | #endif |
Denis Vlasenko | 55a9940 | 2006-09-30 20:41:44 +0000 | [diff] [blame] | 2682 | #if ENABLE_FEATURE_HTTPD_SETUID |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2683 | if (opt & OPT_SETUID) { |
Bernhard Reutner-Fischer | d73cbd3 | 2008-07-21 14:41:33 +0000 | [diff] [blame] | 2684 | xget_uidgid(&ugid, s_ugid); |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2685 | } |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2686 | #endif |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 2687 | |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2688 | #if !BB_MMU |
| 2689 | if (!(opt & OPT_FOREGROUND)) { |
| 2690 | bb_daemonize_or_rexec(0, argv); /* don't change current directory */ |
| 2691 | } |
| 2692 | #endif |
| 2693 | |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2694 | xchdir(home_httpd); |
Denis Vlasenko | 0871bc8 | 2006-11-16 16:17:02 +0000 | [diff] [blame] | 2695 | if (!(opt & OPT_INETD)) { |
Denis Vlasenko | 6536a9b | 2007-01-12 10:35:23 +0000 | [diff] [blame] | 2696 | signal(SIGCHLD, SIG_IGN); |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 2697 | server_socket = openServer(); |
Denis Vlasenko | 0871bc8 | 2006-11-16 16:17:02 +0000 | [diff] [blame] | 2698 | #if ENABLE_FEATURE_HTTPD_SETUID |
| 2699 | /* drop privileges */ |
| 2700 | if (opt & OPT_SETUID) { |
| 2701 | if (ugid.gid != (gid_t)-1) { |
| 2702 | if (setgroups(1, &ugid.gid) == -1) |
Denis Vlasenko | 8e858e2 | 2007-03-07 09:35:43 +0000 | [diff] [blame] | 2703 | bb_perror_msg_and_die("setgroups"); |
Denis Vlasenko | 0871bc8 | 2006-11-16 16:17:02 +0000 | [diff] [blame] | 2704 | xsetgid(ugid.gid); |
| 2705 | } |
| 2706 | xsetuid(ugid.uid); |
Denis Vlasenko | de59c0f | 2006-10-05 22:50:22 +0000 | [diff] [blame] | 2707 | } |
Glenn L McGrath | 58c708a | 2003-01-05 04:01:56 +0000 | [diff] [blame] | 2708 | #endif |
Denis Vlasenko | 0871bc8 | 2006-11-16 16:17:02 +0000 | [diff] [blame] | 2709 | } |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2710 | |
Denis Vlasenko | 1cbfd98 | 2009-02-04 23:43:44 +0000 | [diff] [blame] | 2711 | #if 0 |
Denis Vlasenko | 2535f12 | 2007-09-15 13:28:30 +0000 | [diff] [blame] | 2712 | /* User can do it himself: 'env - PATH="$PATH" httpd' |
| 2713 | * We don't do it because we don't want to screw users |
| 2714 | * which want to do |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 2715 | * 'env - VAR1=val1 VAR2=val2 httpd' |
Denis Vlasenko | 2535f12 | 2007-09-15 13:28:30 +0000 | [diff] [blame] | 2716 | * and have VAR1 and VAR2 values visible in their CGIs. |
| 2717 | * Besides, it is also smaller. */ |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2718 | { |
| 2719 | char *p = getenv("PATH"); |
Denis Vlasenko | c4523c2 | 2008-03-28 02:24:59 +0000 | [diff] [blame] | 2720 | /* env strings themself are not freed, no need to xstrdup(p): */ |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2721 | clearenv(); |
| 2722 | if (p) |
Denis Vlasenko | 77e44d6 | 2007-06-09 23:49:05 +0000 | [diff] [blame] | 2723 | putenv(p - 5); |
Denis Vlasenko | 9611cb1 | 2007-08-18 14:18:43 +0000 | [diff] [blame] | 2724 | // if (!(opt & OPT_INETD)) |
| 2725 | // setenv_long("SERVER_PORT", ???); |
Denis Vlasenko | 8b8c75e | 2006-09-26 10:07:41 +0000 | [diff] [blame] | 2726 | } |
Glenn L McGrath | fe538ba | 2003-09-10 23:35:45 +0000 | [diff] [blame] | 2727 | #endif |
| 2728 | |
Denis Vlasenko | 1cf4a0e | 2009-04-22 13:49:16 +0000 | [diff] [blame] | 2729 | parse_conf(DEFAULT_PATH_HTTPD_CONF, FIRST_PARSE); |
Denis Vlasenko | 1cbfd98 | 2009-02-04 23:43:44 +0000 | [diff] [blame] | 2730 | if (!(opt & OPT_INETD)) |
| 2731 | signal(SIGHUP, sighup_handler); |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2732 | |
Denis Vlasenko | feac3ce | 2007-08-17 19:20:39 +0000 | [diff] [blame] | 2733 | xfunc_error_retval = 0; |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 2734 | if (opt & OPT_INETD) |
| 2735 | mini_httpd_inetd(); |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2736 | #if BB_MMU |
Denis Vlasenko | 0871bc8 | 2006-11-16 16:17:02 +0000 | [diff] [blame] | 2737 | if (!(opt & OPT_FOREGROUND)) |
Denis Vlasenko | 0372f0f | 2007-08-14 16:50:01 +0000 | [diff] [blame] | 2738 | bb_daemonize(0); /* don't change current directory */ |
| 2739 | mini_httpd(server_socket); /* never returns */ |
Denis Vlasenko | 56258b6 | 2007-06-23 23:14:02 +0000 | [diff] [blame] | 2740 | #else |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2741 | mini_httpd_nommu(server_socket, argc, argv); /* never returns */ |
Denis Vlasenko | 56258b6 | 2007-06-23 23:14:02 +0000 | [diff] [blame] | 2742 | #endif |
Denis Vlasenko | 367960b | 2007-08-18 14:20:21 +0000 | [diff] [blame] | 2743 | /* return 0; */ |
Glenn L McGrath | 06e9565 | 2003-02-09 06:51:14 +0000 | [diff] [blame] | 2744 | } |