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