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