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