blob: 4e0ab92d5300776a7849783ea29f4c075348be89 [file] [log] [blame]
Bernhard Reutner-Fischer2c998512006-04-12 18:09:26 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00002/*
3 * httpd implementation for busybox
4 *
Glenn L McGrath06e95652003-02-09 06:51:14 +00005 * Copyright (C) 2002,2003 Glenn Engel <glenne@engel.org>
"Vladimir N. Oleynik"79af7d52006-01-26 10:58:12 +00006 * Copyright (C) 2003-2006 Vladimir Oleynik <dzo@simtreas.ru>
Glenn L McGrath58c708a2003-01-05 04:01:56 +00007 *
Glenn L McGrath06e95652003-02-09 06:51:14 +00008 * simplify patch stolen from libbb without using strdup
Glenn L McGrath58c708a2003-01-05 04:01:56 +00009 *
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +000010 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Glenn L McGrath58c708a2003-01-05 04:01:56 +000011 *
12 *****************************************************************************
13 *
Glenn L McGrath06e95652003-02-09 06:51:14 +000014 * 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 McGrath58c708a2003-01-05 04:01:56 +000022 *
23 * When a url contains "cgi-bin" it is assumed to be a cgi script. The
24 * server changes directory to the location of the script and executes it
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +000025 * after setting QUERY_STRING and other environment variables.
Glenn L McGrath58c708a2003-01-05 04:01:56 +000026 *
27 * The server can also be invoked as a url arg decoder and html text encoder
28 * as follows:
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000029 * foo=`httpd -d $foo` # decode "Hello%20World" as "Hello World"
Glenn L McGrathc9163fe2003-05-13 16:20:11 +000030 * bar=`httpd -e "<Hello World>"` # encode as "&#60Hello&#32World&#62"
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000031 * Note that url encoding for arguments is not the same as html encoding for
Eric Andersenaff114c2004-04-14 17:51:38 +000032 * presentation. -d decodes a url-encoded argument while -e encodes in html
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000033 * for page display.
Glenn L McGrath58c708a2003-01-05 04:01:56 +000034 *
35 * httpd.conf has the following format:
Eric Andersenc7bda1c2004-03-15 08:29:22 +000036 *
Glenn L McGrathb65422c2003-09-08 10:59:27 +000037 * A:172.20. # Allow address from 172.20.0.0/16
38 * A:10.0.0.0/25 # Allow any address from 10.0.0.0-10.0.0.127
39 * A:10.0.0.0/255.255.255.128 # Allow any address that previous set
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000040 * A:127.0.0.1 # Allow local loopback connections
41 * D:* # Deny from other IP connections
42 * /cgi-bin:foo:bar # Require user foo, pwd bar on urls starting with /cgi-bin/
43 * /adm:admin:setup # Require user admin, pwd setup on urls starting with /adm/
44 * /adm:toor:PaSsWd # or user toor, pwd PaSsWd on urls starting with /adm/
45 * .au:audio/basic # additional mime type for audio.au files
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +000046 * *.php:/path/php # running cgi.php scripts through an interpreter
Eric Andersenc7bda1c2004-03-15 08:29:22 +000047 *
Eric Andersenaff114c2004-04-14 17:51:38 +000048 * A/D may be as a/d or allow/deny - first char case insensitive
Glenn L McGrath393183d2003-05-26 14:07:50 +000049 * Deny IP rules take precedence over allow rules.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000050 *
51 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000052 * The Deny/Allow IP logic:
Eric Andersenc7bda1c2004-03-15 08:29:22 +000053 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000054 * - Default is to allow all. No addresses are denied unless
Eric Andersen97a1de12004-08-26 22:22:50 +000055 * denied with a D: rule.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000056 * - Order of Deny/Allow rules is significant
57 * - Deny rules take precedence over allow rules.
58 * - If a deny all rule (D:*) is used it acts as a catch-all for unmatched
Eric Andersen97a1de12004-08-26 22:22:50 +000059 * addresses.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000060 * - Specification of Allow all (A:*) is a no-op
Eric Andersenc7bda1c2004-03-15 08:29:22 +000061 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000062 * Example:
63 * 1. Allow only specified addresses
Glenn L McGrathb65422c2003-09-08 10:59:27 +000064 * A:172.20 # Allow any address that begins with 172.20.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000065 * A:10.10. # Allow any address that begins with 10.10.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000066 * A:127.0.0.1 # Allow local loopback connections
67 * D:* # Deny from other IP connections
Eric Andersenc7bda1c2004-03-15 08:29:22 +000068 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000069 * 2. Only deny specified addresses
70 * D:1.2.3. # deny from 1.2.3.0 - 1.2.3.255
71 * D:2.3.4. # deny from 2.3.4.0 - 2.3.4.255
72 * A:* # (optional line added for clarity)
Eric Andersenc7bda1c2004-03-15 08:29:22 +000073 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000074 * If a sub directory contains a config file it is parsed and merged with
Glenn L McGrathb65422c2003-09-08 10:59:27 +000075 * any existing settings as if it was appended to the original configuration.
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000076 *
77 * subdir paths are relative to the containing subdir and thus cannot
78 * affect the parent rules.
79 *
80 * Note that since the sub dir is parsed in the forked thread servicing the
81 * subdir http request, any merge is discarded when the process exits. As a
82 * result, the subdir settings only have a lifetime of a single request.
83 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +000084 *
85 * If -c is not set, an attempt will be made to open the default
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000086 * root configuration file. If -c is set and the file is not found, the
87 * server exits with an error.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000088 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000089*/
Glenn L McGrath58c708a2003-01-05 04:01:56 +000090
Glenn L McGrath06e95652003-02-09 06:51:14 +000091
Glenn L McGrath06e95652003-02-09 06:51:14 +000092#include "busybox.h"
Glenn L McGrath58c708a2003-01-05 04:01:56 +000093
Glenn L McGrath58c708a2003-01-05 04:01:56 +000094
Eric Andersen07f2fea2004-10-08 08:03:29 +000095static const char httpdVersion[] = "busybox httpd/1.35 6-Oct-2004";
Glenn L McGrathc9163fe2003-05-13 16:20:11 +000096static const char default_path_httpd_conf[] = "/etc";
Glenn L McGrath06e95652003-02-09 06:51:14 +000097static const char httpd_conf[] = "httpd.conf";
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +000098static const char home[] = "./";
Glenn L McGrath06e95652003-02-09 06:51:14 +000099
Glenn L McGrath5cd64612003-08-29 15:53:23 +0000100#ifdef CONFIG_LFS
101# define cont_l_fmt "%lld"
Eric Andersen0cb6f352006-01-30 22:30:41 +0000102# define cont_l_type (long long)
Glenn L McGrath5cd64612003-08-29 15:53:23 +0000103#else
104# define cont_l_fmt "%ld"
Eric Andersen0cb6f352006-01-30 22:30:41 +0000105# define cont_l_type (long)
Glenn L McGrath5cd64612003-08-29 15:53:23 +0000106#endif
107
Eric Andersen07f2fea2004-10-08 08:03:29 +0000108#define TIMEOUT 60
109
Eric Andersenaff114c2004-04-14 17:51:38 +0000110// Note: busybox xfuncs are not used because we want the server to keep running
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000111// if something bad happens due to a malformed user request.
Glenn L McGrath06e95652003-02-09 06:51:14 +0000112// As a result, all memory allocation after daemonize
113// is checked rigorously
114
115//#define DEBUG 1
116
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +0000117#ifndef DEBUG
118# define DEBUG 0
119#endif
120
Glenn L McGrath06e95652003-02-09 06:51:14 +0000121#define MAX_MEMORY_BUFF 8192 /* IO buffer */
122
123typedef struct HT_ACCESS {
124 char *after_colon;
125 struct HT_ACCESS *next;
126 char before_colon[1]; /* really bigger, must last */
127} Htaccess;
128
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000129typedef struct HT_ACCESS_IP {
130 unsigned int ip;
131 unsigned int mask;
132 int allow_deny;
133 struct HT_ACCESS_IP *next;
134} Htaccess_IP;
135
Glenn L McGrath06e95652003-02-09 06:51:14 +0000136typedef struct
137{
Glenn L McGrath06e95652003-02-09 06:51:14 +0000138 char buf[MAX_MEMORY_BUFF];
139
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +0000140 USE_FEATURE_HTTPD_BASIC_AUTH(const char *realm;)
141 USE_FEATURE_HTTPD_BASIC_AUTH(char *remoteuser;)
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +0000142
Eric Andersen07f2fea2004-10-08 08:03:29 +0000143 const char *query;
144
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +0000145 USE_FEATURE_HTTPD_CGI(char *referer;)
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +0000146
Glenn L McGrath06e95652003-02-09 06:51:14 +0000147 const char *configFile;
148
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000149 unsigned int rmt_ip;
Rob Landleyd086b502006-04-14 02:32:29 +0000150#if defined(CONFIG_FEATURE_HTTPD_CGI) || DEBUG
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000151 char rmt_ip_str[16]; /* for set env REMOTE_ADDR */
152#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000153 unsigned port; /* server initial port and for
154 set env REMOTE_PORT */
Eric Andersen07f2fea2004-10-08 08:03:29 +0000155 union HTTPD_FOUND {
156 const char *found_mime_type;
157 const char *found_moved_temporarily;
158 } httpd_found;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000159
Glenn L McGrath06e95652003-02-09 06:51:14 +0000160 off_t ContentLength; /* -1 - unknown */
161 time_t last_mod;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000162
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000163 Htaccess_IP *ip_a_d; /* config allow/deny lines */
Glenn L McGrath393183d2003-05-26 14:07:50 +0000164 int flg_deny_all;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000165#ifdef CONFIG_FEATURE_HTTPD_BASIC_AUTH
166 Htaccess *auth; /* config user:password lines */
167#endif
168#ifdef CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
169 Htaccess *mime_a; /* config mime types */
170#endif
171
Rob Landleya2d9a172006-04-28 19:38:04 +0000172#ifdef CONFIG_FEATURE_HTTPD_WITHOUT_INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +0000173 int accepted_socket;
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +0000174# define a_c_r config->accepted_socket
175# define a_c_w config->accepted_socket
Glenn L McGrath06e95652003-02-09 06:51:14 +0000176#else
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +0000177# define a_c_r 0
178# define a_c_w 1
Glenn L McGrath06e95652003-02-09 06:51:14 +0000179#endif
Eric Andersen07f2fea2004-10-08 08:03:29 +0000180 volatile int alarm_signaled;
181
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000182#ifdef CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
183 Htaccess *script_i; /* config script interpreters */
184#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000185} HttpdConfig;
186
187static HttpdConfig *config;
188
Mike Frysingerfa6c4842006-05-26 01:48:17 +0000189static const char request_GET[] = "GET"; /* size algorithmic optimize */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000190
191static const char* const suffixTable [] = {
Eric Andersenaff114c2004-04-14 17:51:38 +0000192/* Warning: shorted equivalent suffix in one line must be first */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000193 ".htm.html", "text/html",
194 ".jpg.jpeg", "image/jpeg",
195 ".gif", "image/gif",
196 ".png", "image/png",
197 ".txt.h.c.cc.cpp", "text/plain",
Glenn L McGrath06e95652003-02-09 06:51:14 +0000198 ".css", "text/css",
199 ".wav", "audio/wav",
200 ".avi", "video/x-msvideo",
201 ".qt.mov", "video/quicktime",
202 ".mpe.mpeg", "video/mpeg",
203 ".mid.midi", "audio/midi",
204 ".mp3", "audio/mpeg",
205#if 0 /* unpopular */
206 ".au", "audio/basic",
207 ".pac", "application/x-ns-proxy-autoconfig",
208 ".vrml.wrl", "model/vrml",
209#endif
210 0, "application/octet-stream" /* default */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000211 };
212
213typedef enum
214{
215 HTTP_OK = 200,
Eric Andersen07f2fea2004-10-08 08:03:29 +0000216 HTTP_MOVED_TEMPORARILY = 302,
217 HTTP_BAD_REQUEST = 400, /* malformed syntax */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000218 HTTP_UNAUTHORIZED = 401, /* authentication needed, respond with auth hdr */
219 HTTP_NOT_FOUND = 404,
Glenn L McGrath06e95652003-02-09 06:51:14 +0000220 HTTP_FORBIDDEN = 403,
Eric Andersen07f2fea2004-10-08 08:03:29 +0000221 HTTP_REQUEST_TIMEOUT = 408,
222 HTTP_NOT_IMPLEMENTED = 501, /* used for unrecognized requests */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000223 HTTP_INTERNAL_SERVER_ERROR = 500,
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000224#if 0 /* future use */
225 HTTP_CONTINUE = 100,
226 HTTP_SWITCHING_PROTOCOLS = 101,
227 HTTP_CREATED = 201,
228 HTTP_ACCEPTED = 202,
229 HTTP_NON_AUTHORITATIVE_INFO = 203,
230 HTTP_NO_CONTENT = 204,
231 HTTP_MULTIPLE_CHOICES = 300,
232 HTTP_MOVED_PERMANENTLY = 301,
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000233 HTTP_NOT_MODIFIED = 304,
234 HTTP_PAYMENT_REQUIRED = 402,
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000235 HTTP_BAD_GATEWAY = 502,
236 HTTP_SERVICE_UNAVAILABLE = 503, /* overload, maintenance */
237 HTTP_RESPONSE_SETSIZE=0xffffffff
238#endif
239} HttpResponseNum;
240
241typedef struct
242{
243 HttpResponseNum type;
244 const char *name;
245 const char *info;
246} HttpEnumString;
247
248static const HttpEnumString httpResponseNames[] = {
"Vladimir N. Oleynik"27d42a02005-12-02 09:46:04 +0000249 { HTTP_OK, "OK", NULL },
Eric Andersen07f2fea2004-10-08 08:03:29 +0000250 { HTTP_MOVED_TEMPORARILY, "Found", "Directories must end with a slash." },
251 { HTTP_REQUEST_TIMEOUT, "Request Timeout",
252 "No request appeared within a reasonable time period." },
Glenn L McGrath06e95652003-02-09 06:51:14 +0000253 { HTTP_NOT_IMPLEMENTED, "Not Implemented",
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000254 "The requested method is not recognized by this server." },
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000255#ifdef CONFIG_FEATURE_HTTPD_BASIC_AUTH
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000256 { HTTP_UNAUTHORIZED, "Unauthorized", "" },
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000257#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000258 { HTTP_NOT_FOUND, "Not Found",
259 "The requested URL was not found on this server." },
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000260 { HTTP_BAD_REQUEST, "Bad Request", "Unsupported method." },
Glenn L McGrath06e95652003-02-09 06:51:14 +0000261 { HTTP_FORBIDDEN, "Forbidden", "" },
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000262 { HTTP_INTERNAL_SERVER_ERROR, "Internal Server Error",
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000263 "Internal Server Error" },
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000264#if 0 /* not implemented */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000265 { HTTP_CREATED, "Created" },
266 { HTTP_ACCEPTED, "Accepted" },
267 { HTTP_NO_CONTENT, "No Content" },
268 { HTTP_MULTIPLE_CHOICES, "Multiple Choices" },
269 { HTTP_MOVED_PERMANENTLY, "Moved Permanently" },
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000270 { HTTP_NOT_MODIFIED, "Not Modified" },
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000271 { HTTP_BAD_GATEWAY, "Bad Gateway", "" },
272 { HTTP_SERVICE_UNAVAILABLE, "Service Unavailable", "" },
273#endif
274};
275
Glenn L McGrath06e95652003-02-09 06:51:14 +0000276
277static const char RFC1123FMT[] = "%a, %d %b %Y %H:%M:%S GMT";
278static const char Content_length[] = "Content-length:";
279
280
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000281static int
282scan_ip (const char **ep, unsigned int *ip, unsigned char endc)
283{
284 const char *p = *ep;
285 int auto_mask = 8;
286 int j;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000287
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000288 *ip = 0;
289 for (j = 0; j < 4; j++) {
290 unsigned int octet;
291
292 if ((*p < '0' || *p > '9') && (*p != '/' || j == 0) && *p != 0)
293 return -auto_mask;
294 octet = 0;
295 while (*p >= '0' && *p <= '9') {
296 octet *= 10;
297 octet += *p - '0';
298 if (octet > 255)
299 return -auto_mask;
300 p++;
301 }
302 if (*p == '.')
303 p++;
304 if (*p != '/' && *p != 0)
305 auto_mask += 8;
306 *ip = ((*ip) << 8) | octet;
307 }
308 if (*p != 0) {
309 if (*p != endc)
310 return -auto_mask;
311 p++;
312 if(*p == 0)
313 return -auto_mask;
314 }
315 *ep = p;
316 return auto_mask;
317}
318
319static int
320scan_ip_mask (const char *ipm, unsigned int *ip, unsigned int *mask)
321{
322 int i;
323 unsigned int msk;
324
325 i = scan_ip(&ipm, ip, '/');
326 if(i < 0)
327 return i;
328 if(*ipm) {
329 const char *p = ipm;
330
331 i = 0;
332 while (*p) {
333 if (*p < '0' || *p > '9') {
334 if (*p == '.') {
335 i = scan_ip (&ipm, mask, 0);
336 return i != 32;
337 }
338 return -1;
339 }
340 i *= 10;
341 i += *p - '0';
342 p++;
343 }
344 }
345 if (i > 32 || i < 0)
346 return -1;
347 msk = 0x80000000;
348 *mask = 0;
349 while (i > 0) {
350 *mask |= msk;
351 msk >>= 1;
352 i--;
353 }
354 return 0;
355}
356
357#if defined(CONFIG_FEATURE_HTTPD_BASIC_AUTH) || defined(CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES)
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000358static void free_config_lines(Htaccess **pprev)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000359{
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000360 Htaccess *prev = *pprev;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000361
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000362 while( prev ) {
363 Htaccess *cur = prev;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000364
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000365 prev = cur->next;
366 free(cur);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000367 }
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000368 *pprev = NULL;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000369}
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000370#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000371
Glenn L McGrath06e95652003-02-09 06:51:14 +0000372/* flag */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000373#define FIRST_PARSE 0
374#define SUBDIR_PARSE 1
375#define SIGNALED_PARSE 2
376#define FIND_FROM_HTTPD_ROOT 3
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000377/****************************************************************************
378 *
379 > $Function: parse_conf()
380 *
381 * $Description: parse configuration file into in-memory linked list.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000382 *
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000383 * The first non-white character is examined to determine if the config line
384 * is one of the following:
385 * .ext:mime/type # new mime type not compiled into httpd
386 * [adAD]:from # ip address allow/deny, * for wildcard
387 * /path:user:pass # username/password
388 *
389 * Any previous IP rules are discarded.
390 * If the flag argument is not SUBDIR_PARSE then all /path and mime rules
391 * are also discarded. That is, previous settings are retained if flag is
392 * SUBDIR_PARSE.
393 *
394 * $Parameters:
395 * (const char *) path . . null for ip address checks, path for password
396 * checks.
397 * (int) flag . . . . . . the source of the parse request.
398 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000399 * $Return: (None)
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000400 *
401 ****************************************************************************/
Glenn L McGrath06e95652003-02-09 06:51:14 +0000402static void parse_conf(const char *path, int flag)
403{
Glenn L McGrath06e95652003-02-09 06:51:14 +0000404 FILE *f;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000405#ifdef CONFIG_FEATURE_HTTPD_BASIC_AUTH
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +0000406 Htaccess *prev, *cur;
407#elif CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
408 Htaccess *cur;
Glenn L McGrathbaaa6e92003-09-15 15:00:43 +0000409#endif
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000410
Glenn L McGrath06e95652003-02-09 06:51:14 +0000411 const char *cf = config->configFile;
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000412 char buf[160];
Glenn L McGrath06e95652003-02-09 06:51:14 +0000413 char *p0 = NULL;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000414 char *c, *p;
415
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000416 /* free previous ip setup if present */
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000417 Htaccess_IP *pip = config->ip_a_d;
418
419 while( pip ) {
420 Htaccess_IP *cur_ipl = pip;
421
422 pip = cur_ipl->next;
423 free(cur_ipl);
424 }
425 config->ip_a_d = NULL;
426
Glenn L McGrath24833432003-06-10 17:22:49 +0000427 config->flg_deny_all = 0;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000428
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000429#if defined(CONFIG_FEATURE_HTTPD_BASIC_AUTH) || defined(CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES) || defined(CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR)
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000430 /* retain previous auth and mime config only for subdir parse */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000431 if(flag != SUBDIR_PARSE) {
432#ifdef CONFIG_FEATURE_HTTPD_BASIC_AUTH
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000433 free_config_lines(&config->auth);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000434#endif
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000435#ifdef CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
436 free_config_lines(&config->mime_a);
437#endif
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000438#ifdef CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
439 free_config_lines(&config->script_i);
440#endif
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000441 }
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000442#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000443
444 if(flag == SUBDIR_PARSE || cf == NULL) {
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000445 cf = alloca(strlen(path) + sizeof(httpd_conf) + 2);
446 if(cf == NULL) {
Glenn L McGrath06e95652003-02-09 06:51:14 +0000447 if(flag == FIRST_PARSE)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000448 bb_error_msg_and_die(bb_msg_memory_exhausted);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000449 return;
450 }
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000451 sprintf((char *)cf, "%s/%s", path, httpd_conf);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000452 }
453
454 while((f = fopen(cf, "r")) == NULL) {
Eric Andersen35e643b2003-07-28 07:40:39 +0000455 if(flag == SUBDIR_PARSE || flag == FIND_FROM_HTTPD_ROOT) {
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000456 /* config file not found, no changes to config */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000457 return;
458 }
Eric Andersen35e643b2003-07-28 07:40:39 +0000459 if(config->configFile && flag == FIRST_PARSE) /* if -c option given */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000460 bb_perror_msg_and_die("%s", cf);
461 flag = FIND_FROM_HTTPD_ROOT;
462 cf = httpd_conf;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000463 }
464
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000465#ifdef CONFIG_FEATURE_HTTPD_BASIC_AUTH
466 prev = config->auth;
467#endif
468 /* This could stand some work */
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000469 while ( (p0 = fgets(buf, sizeof(buf), f)) != NULL) {
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000470 c = NULL;
471 for(p = p0; *p0 != 0 && *p0 != '#'; p0++) {
472 if(!isspace(*p0)) {
473 *p++ = *p0;
474 if(*p0 == ':' && c == NULL)
475 c = p;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000476 }
Glenn L McGrath06e95652003-02-09 06:51:14 +0000477 }
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000478 *p = 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000479
480 /* test for empty or strange line */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000481 if (c == NULL || *c == 0)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000482 continue;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000483 p0 = buf;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000484 if(*p0 == 'd')
485 *p0 = 'D';
Glenn L McGrath393183d2003-05-26 14:07:50 +0000486 if(*c == '*') {
487 if(*p0 == 'D') {
488 /* memorize deny all */
489 config->flg_deny_all++;
490 }
491 /* skip default other "word:*" config lines */
492 continue;
493 }
494
495 if(*p0 == 'a')
496 *p0 = 'A';
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000497 else if(*p0 != 'D' && *p0 != 'A'
Glenn L McGrath06e95652003-02-09 06:51:14 +0000498#ifdef CONFIG_FEATURE_HTTPD_BASIC_AUTH
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000499 && *p0 != '/'
Glenn L McGrath06e95652003-02-09 06:51:14 +0000500#endif
501#ifdef CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000502 && *p0 != '.'
Glenn L McGrath06e95652003-02-09 06:51:14 +0000503#endif
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000504#ifdef CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
505 && *p0 != '*'
506#endif
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +0000507 )
Glenn L McGrath06e95652003-02-09 06:51:14 +0000508 continue;
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000509 if(*p0 == 'A' || *p0 == 'D') {
510 /* storing current config IP line */
511 pip = calloc(1, sizeof(Htaccess_IP));
512 if(pip) {
513 if(scan_ip_mask (c, &(pip->ip), &(pip->mask))) {
514 /* syntax IP{/mask} error detected, protect all */
515 *p0 = 'D';
516 pip->mask = 0;
517 }
518 pip->allow_deny = *p0;
519 if(*p0 == 'D') {
520 /* Deny:form_IP move top */
521 pip->next = config->ip_a_d;
522 config->ip_a_d = pip;
523 } else {
524 /* add to bottom A:form_IP config line */
525 Htaccess_IP *prev_IP = config->ip_a_d;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000526
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000527 if(prev_IP == NULL) {
528 config->ip_a_d = pip;
529 } else {
530 while(prev_IP->next)
531 prev_IP = prev_IP->next;
532 prev_IP->next = pip;
533 }
534 }
535 }
536 continue;
537 }
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000538#ifdef CONFIG_FEATURE_HTTPD_BASIC_AUTH
539 if(*p0 == '/') {
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000540 /* make full path from httpd root / curent_path / config_line_path */
541 cf = flag == SUBDIR_PARSE ? path : "";
542 p0 = malloc(strlen(cf) + (c - buf) + 2 + strlen(c));
543 if(p0 == NULL)
544 continue;
545 c[-1] = 0;
546 sprintf(p0, "/%s%s", cf, buf);
547
548 /* another call bb_simplify_path */
549 cf = p = p0;
550
551 do {
552 if (*p == '/') {
553 if (*cf == '/') { /* skip duplicate (or initial) slash */
554 continue;
555 } else if (*cf == '.') {
556 if (cf[1] == '/' || cf[1] == 0) { /* remove extra '.' */
557 continue;
558 } else if ((cf[1] == '.') && (cf[2] == '/' || cf[2] == 0)) {
559 ++cf;
560 if (p > p0) {
561 while (*--p != '/'); /* omit previous dir */
562 }
563 continue;
564 }
565 }
566 }
567 *++p = *cf;
568 } while (*++cf);
569
570 if ((p == p0) || (*p != '/')) { /* not a trailing slash */
571 ++p; /* so keep last character */
572 }
573 *p = 0;
574 sprintf(p0, "%s:%s", p0, c);
575 }
576#endif
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000577
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000578#if defined(CONFIG_FEATURE_HTTPD_BASIC_AUTH) || defined(CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES) || defined(CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR)
Glenn L McGrathb65422c2003-09-08 10:59:27 +0000579 /* storing current config line */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000580 cur = calloc(1, sizeof(Htaccess) + strlen(p0));
581 if(cur) {
582 cf = strcpy(cur->before_colon, p0);
583 c = strchr(cf, ':');
584 *c++ = 0;
585 cur->after_colon = c;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000586#ifdef CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
Glenn L McGrath5875be42003-09-08 15:39:09 +0000587 if(*cf == '.') {
Glenn L McGrath874e3382003-05-14 12:11:36 +0000588 /* config .mime line move top for overwrite previous */
589 cur->next = config->mime_a;
590 config->mime_a = cur;
Glenn L McGrath5875be42003-09-08 15:39:09 +0000591 continue;
Glenn L McGrath874e3382003-05-14 12:11:36 +0000592 }
Glenn L McGrath06e95652003-02-09 06:51:14 +0000593#endif
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +0000594#ifdef CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
595 if(*cf == '*' && cf[1] == '.') {
596 /* config script interpreter line move top for overwrite previous */
597 cur->next = config->script_i;
598 config->script_i = cur;
599 continue;
600 }
601#endif
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000602#ifdef CONFIG_FEATURE_HTTPD_BASIC_AUTH
Glenn L McGrath5875be42003-09-08 15:39:09 +0000603 free(p0);
604 if(prev == NULL) {
Glenn L McGrath06e95652003-02-09 06:51:14 +0000605 /* first line */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000606 config->auth = prev = cur;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000607 } else {
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000608 /* sort path, if current lenght eq or bigger then move up */
609 Htaccess *prev_hti = config->auth;
"Vladimir N. Oleynik"27d42a02005-12-02 09:46:04 +0000610 size_t l = strlen(cf);
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000611 Htaccess *hti;
612
613 for(hti = prev_hti; hti; hti = hti->next) {
614 if(l >= strlen(hti->before_colon)) {
615 /* insert before hti */
616 cur->next = hti;
617 if(prev_hti != hti) {
618 prev_hti->next = cur;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000619 } else {
620 /* insert as top */
621 config->auth = cur;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000622 }
Glenn L McGrath393183d2003-05-26 14:07:50 +0000623 break;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000624 }
625 if(prev_hti != hti)
626 prev_hti = prev_hti->next;
627 }
628 if(!hti) { /* not inserted, add to bottom */
629 prev->next = cur;
630 prev = cur;
631 }
Glenn L McGrath06e95652003-02-09 06:51:14 +0000632 }
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000633#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000634 }
Glenn L McGrathbaaa6e92003-09-15 15:00:43 +0000635#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000636 }
637 fclose(f);
Glenn L McGrath06e95652003-02-09 06:51:14 +0000638}
639
640#ifdef CONFIG_FEATURE_HTTPD_ENCODE_URL_STR
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000641/****************************************************************************
642 *
643 > $Function: encodeString()
644 *
645 * $Description: Given a string, html encode special characters.
646 * This is used for the -e command line option to provide an easy way
647 * for scripts to encode result data without confusing browsers. The
648 * returned string pointer is memory allocated by malloc().
649 *
650 * $Parameters:
651 * (const char *) string . . The first string to encode.
652 *
653 * $Return: (char *) . . . .. . . A pointer to the encoded string.
654 *
655 * $Errors: Returns a null string ("") if memory is not available.
656 *
657 ****************************************************************************/
658static char *encodeString(const char *string)
659{
660 /* take the simple route and encode everything */
661 /* could possibly scan once to get length. */
662 int len = strlen(string);
"Vladimir N. Oleynik"0bf67e82005-12-26 17:26:59 +0000663 char *out = malloc(len * 6 + 1);
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000664 char *p=out;
665 char ch;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000666
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000667 if (!out) return "";
Glenn L McGrath06e95652003-02-09 06:51:14 +0000668 while ((ch = *string++)) {
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000669 // very simple check for what to encode
670 if (isalnum(ch)) *p++ = ch;
Eric Andersen3efa51d2005-06-23 05:51:48 +0000671 else p += sprintf(p, "&#%d;", (unsigned char) ch);
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000672 }
673 *p=0;
674 return out;
675}
Glenn L McGrath06e95652003-02-09 06:51:14 +0000676#endif /* CONFIG_FEATURE_HTTPD_ENCODE_URL_STR */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000677
678/****************************************************************************
679 *
680 > $Function: decodeString()
681 *
682 * $Description: Given a URL encoded string, convert it to plain ascii.
683 * Since decoding always makes strings smaller, the decode is done in-place.
684 * Thus, callers should strdup() the argument if they do not want the
685 * argument modified. The return is the original pointer, allowing this
686 * function to be easily used as arguments to other functions.
687 *
688 * $Parameters:
689 * (char *) string . . . The first string to decode.
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000690 * (int) flag . . . 1 if require decode '+' as ' ' for CGI
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000691 *
692 * $Return: (char *) . . . . A pointer to the decoded string (same as input).
693 *
694 * $Errors: None
695 *
696 ****************************************************************************/
Eric Andersena3bb3e62003-06-26 09:05:32 +0000697static char *decodeString(char *orig, int flag_plus_to_space)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000698{
699 /* note that decoded string is always shorter than original */
Eric Andersena3bb3e62003-06-26 09:05:32 +0000700 char *string = orig;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000701 char *ptr = string;
Eric Andersena3bb3e62003-06-26 09:05:32 +0000702
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000703 while (*ptr)
704 {
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000705 if (*ptr == '+' && flag_plus_to_space) { *string++ = ' '; ptr++; }
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000706 else if (*ptr != '%') *string++ = *ptr++;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000707 else {
"Vladimir N. Oleynik"0bf67e82005-12-26 17:26:59 +0000708 unsigned int value1, value2;
709
710 ptr++;
711 if(sscanf(ptr, "%1X", &value1) != 1 ||
712 sscanf(ptr+1, "%1X", &value2) != 1) {
713 if(!flag_plus_to_space)
714 return NULL;
715 *string++ = '%';
716 } else {
717 value1 = value1 * 16 + value2;
718 if(value1 == '/' || value1 == 0)
719 return orig+1;
720 *string++ = value1;
721 ptr += 2;
722 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000723 }
724 }
725 *string = '\0';
726 return orig;
727}
728
729
Glenn L McGrath06e95652003-02-09 06:51:14 +0000730#ifdef CONFIG_FEATURE_HTTPD_CGI
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000731/****************************************************************************
732 *
733 > $Function: addEnv()
734 *
Eric Andersenaff114c2004-04-14 17:51:38 +0000735 * $Description: Add an environment variable setting to the global list.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000736 * A NAME=VALUE string is allocated, filled, and added to the list of
737 * environment settings passed to the cgi execution script.
738 *
739 * $Parameters:
Glenn L McGrath06e95652003-02-09 06:51:14 +0000740 * (char *) name_before_underline - The first part environment variable name.
741 * (char *) name_after_underline - The second part environment variable name.
742 * (char *) value . . The value to which the env variable is set.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000743 *
Glenn L McGrath06e95652003-02-09 06:51:14 +0000744 * $Return: (void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000745 *
746 * $Errors: Silently returns if the env runs out of space to hold the new item
747 *
748 ****************************************************************************/
Glenn L McGrath06e95652003-02-09 06:51:14 +0000749static void addEnv(const char *name_before_underline,
750 const char *name_after_underline, const char *value)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000751{
Glenn L McGrath5875be42003-09-08 15:39:09 +0000752 char *s = NULL;
Glenn L McGrath393183d2003-05-26 14:07:50 +0000753 const char *underline;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000754
Glenn L McGrath06e95652003-02-09 06:51:14 +0000755 if (!value)
756 value = "";
Glenn L McGrath393183d2003-05-26 14:07:50 +0000757 underline = *name_after_underline ? "_" : "";
758 asprintf(&s, "%s%s%s=%s", name_before_underline, underline,
Glenn L McGrath06e95652003-02-09 06:51:14 +0000759 name_after_underline, value);
Glenn L McGrath393183d2003-05-26 14:07:50 +0000760 if(s) {
Glenn L McGrath5875be42003-09-08 15:39:09 +0000761 putenv(s);
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000762 }
763}
764
Rob Landleya2d9a172006-04-28 19:38:04 +0000765#if defined(CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV) || defined(CONFIG_FEATURE_HTTPD_WITHOUT_INETD)
Glenn L McGrath06e95652003-02-09 06:51:14 +0000766/* set environs SERVER_PORT and REMOTE_PORT */
767static void addEnvPort(const char *port_name)
768{
769 char buf[16];
770
771 sprintf(buf, "%u", config->port);
772 addEnv(port_name, "PORT", buf);
773}
Eric Andersena3bb3e62003-06-26 09:05:32 +0000774#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +0000775#endif /* CONFIG_FEATURE_HTTPD_CGI */
776
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000777
778#ifdef CONFIG_FEATURE_HTTPD_BASIC_AUTH
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000779/****************************************************************************
780 *
781 > $Function: decodeBase64()
782 *
783 > $Description: Decode a base 64 data stream as per rfc1521.
784 * Note that the rfc states that none base64 chars are to be ignored.
785 * Since the decode always results in a shorter size than the input, it is
786 * OK to pass the input arg as an output arg.
787 *
Glenn L McGrath06e95652003-02-09 06:51:14 +0000788 * $Parameter:
789 * (char *) Data . . . . A pointer to a base64 encoded string.
790 * Where to place the decoded data.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000791 *
Glenn L McGrath06e95652003-02-09 06:51:14 +0000792 * $Return: void
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000793 *
794 * $Errors: None
795 *
796 ****************************************************************************/
Glenn L McGrath06e95652003-02-09 06:51:14 +0000797static void decodeBase64(char *Data)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000798{
Glenn L McGrath06e95652003-02-09 06:51:14 +0000799
"Vladimir N. Oleynik"27d42a02005-12-02 09:46:04 +0000800 const unsigned char *in = (const unsigned char *)Data;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000801 // The decoded size will be at most 3/4 the size of the encoded
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000802 unsigned long ch = 0;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000803 int i = 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000804
805 while (*in) {
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000806 int t = *in++;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000807
Glenn L McGrath874e3382003-05-14 12:11:36 +0000808 if(t >= '0' && t <= '9')
809 t = t - '0' + 52;
810 else if(t >= 'A' && t <= 'Z')
811 t = t - 'A';
812 else if(t >= 'a' && t <= 'z')
813 t = t - 'a' + 26;
814 else if(t == '+')
815 t = 62;
816 else if(t == '/')
817 t = 63;
818 else if(t == '=')
819 t = 0;
820 else
821 continue;
822
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000823 ch = (ch << 6) | t;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000824 i++;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +0000825 if (i == 4) {
826 *Data++ = (char) (ch >> 16);
827 *Data++ = (char) (ch >> 8);
828 *Data++ = (char) ch;
829 i = 0;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000830 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000831 }
Glenn L McGrath06e95652003-02-09 06:51:14 +0000832 *Data = 0;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000833}
834#endif
835
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000836
Rob Landleya2d9a172006-04-28 19:38:04 +0000837#ifdef CONFIG_FEATURE_HTTPD_WITHOUT_INETD
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000838/****************************************************************************
839 *
840 > $Function: openServer()
841 *
842 * $Description: create a listen server socket on the designated port.
843 *
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000844 * $Return: (int) . . . A connection socket. -1 for errors.
845 *
846 * $Errors: None
847 *
848 ****************************************************************************/
Glenn L McGrath06e95652003-02-09 06:51:14 +0000849static int openServer(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000850{
851 struct sockaddr_in lsocket;
852 int fd;
"Robert P. J. Day"581d4f32006-08-03 10:50:39 +0000853 int on = 1;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000854
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000855 /* create the socket right now */
856 /* inet_addr() returns a value that is already in network order */
857 memset(&lsocket, 0, sizeof(lsocket));
858 lsocket.sin_family = AF_INET;
859 lsocket.sin_addr.s_addr = INADDR_ANY;
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +0000860 lsocket.sin_port = htons(config->port);
Rob Landley280a2642006-08-03 17:49:15 +0000861 fd = xsocket(AF_INET, SOCK_STREAM, 0);
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +0000862 /* tell the OS it's OK to reuse a previous address even though */
863 /* it may still be in a close down state. Allows bind to succeed. */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000864#ifdef SO_REUSEPORT
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +0000865 setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, (void *)&on, sizeof(on)) ;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000866#else
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +0000867 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (void *)&on, sizeof(on)) ;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000868#endif
Rob Landley280a2642006-08-03 17:49:15 +0000869 xbind(fd, (struct sockaddr *)&lsocket, sizeof(lsocket));
870 xlisten(fd, 9);
Bernhard Reutner-Fischer67f641e2006-04-12 18:24:37 +0000871 signal(SIGCHLD, SIG_IGN); /* prevent zombie (defunct) processes */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000872 return fd;
873}
Rob Landleya2d9a172006-04-28 19:38:04 +0000874#endif /* CONFIG_FEATURE_HTTPD_WITHOUT_INETD */
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000875
876/****************************************************************************
877 *
878 > $Function: sendHeaders()
879 *
880 * $Description: Create and send HTTP response headers.
881 * The arguments are combined and sent as one write operation. Note that
882 * IE will puke big-time if the headers are not sent in one packet and the
Glenn L McGrath06e95652003-02-09 06:51:14 +0000883 * second packet is delayed for any reason.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000884 *
Glenn L McGrath06e95652003-02-09 06:51:14 +0000885 * $Parameter:
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000886 * (HttpResponseNum) responseNum . . . The result code to send.
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000887 *
Glenn L McGrath06e95652003-02-09 06:51:14 +0000888 * $Return: (int) . . . . writing errors
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000889 *
890 ****************************************************************************/
Glenn L McGrath06e95652003-02-09 06:51:14 +0000891static int sendHeaders(HttpResponseNum responseNum)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000892{
Glenn L McGrath06e95652003-02-09 06:51:14 +0000893 char *buf = config->buf;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000894 const char *responseString = "";
895 const char *infoString = 0;
Eric Andersen07f2fea2004-10-08 08:03:29 +0000896 const char *mime_type;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000897 unsigned int i;
898 time_t timer = time(0);
899 char timeStr[80];
Glenn L McGrath06e95652003-02-09 06:51:14 +0000900 int len;
901
902 for (i = 0;
903 i < (sizeof(httpResponseNames)/sizeof(httpResponseNames[0])); i++) {
904 if (httpResponseNames[i].type == responseNum) {
905 responseString = httpResponseNames[i].name;
906 infoString = httpResponseNames[i].info;
907 break;
908 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000909 }
Eric Andersen07f2fea2004-10-08 08:03:29 +0000910 /* error message is HTML */
911 mime_type = responseNum == HTTP_OK ?
912 config->httpd_found.found_mime_type : "text/html";
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000913
914 /* emit the current date */
Glenn L McGrath06e95652003-02-09 06:51:14 +0000915 strftime(timeStr, sizeof(timeStr), RFC1123FMT, gmtime(&timer));
916 len = sprintf(buf,
"Vladimir N. Oleynik"2e33daa2006-01-26 10:46:14 +0000917 "HTTP/1.0 %d %s\r\nContent-type: %s\r\n"
Glenn L McGrath06e95652003-02-09 06:51:14 +0000918 "Date: %s\r\nConnection: close\r\n",
Eric Andersen07f2fea2004-10-08 08:03:29 +0000919 responseNum, responseString, mime_type, timeStr);
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000920
Glenn L McGrath3d2405c2003-02-10 22:28:21 +0000921#ifdef CONFIG_FEATURE_HTTPD_BASIC_AUTH
Glenn L McGrath06e95652003-02-09 06:51:14 +0000922 if (responseNum == HTTP_UNAUTHORIZED) {
923 len += sprintf(buf+len, "WWW-Authenticate: Basic realm=\"%s\"\r\n",
924 config->realm);
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000925 }
Glenn L McGrath3d2405c2003-02-10 22:28:21 +0000926#endif
Eric Andersen07f2fea2004-10-08 08:03:29 +0000927 if(responseNum == HTTP_MOVED_TEMPORARILY) {
928 len += sprintf(buf+len, "Location: %s/%s%s\r\n",
929 config->httpd_found.found_moved_temporarily,
930 (config->query ? "?" : ""),
931 (config->query ? config->query : ""));
932 }
933
Glenn L McGrath06e95652003-02-09 06:51:14 +0000934 if (config->ContentLength != -1) { /* file */
935 strftime(timeStr, sizeof(timeStr), RFC1123FMT, gmtime(&config->last_mod));
Glenn L McGrath5cd64612003-08-29 15:53:23 +0000936 len += sprintf(buf+len, "Last-Modified: %s\r\n%s " cont_l_fmt "\r\n",
Eric Andersen0cb6f352006-01-30 22:30:41 +0000937 timeStr, Content_length, cont_l_type config->ContentLength);
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000938 }
Glenn L McGrath06e95652003-02-09 06:51:14 +0000939 strcat(buf, "\r\n");
940 len += 2;
941 if (infoString) {
942 len += sprintf(buf+len,
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000943 "<HEAD><TITLE>%d %s</TITLE></HEAD>\n"
944 "<BODY><H1>%d %s</H1>\n%s\n</BODY>\n",
945 responseNum, responseString,
Glenn L McGrath06e95652003-02-09 06:51:14 +0000946 responseNum, responseString, infoString);
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000947 }
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +0000948#if DEBUG
949 fprintf(stderr, "Headers: '%s'", buf);
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000950#endif
Rob Landley53437472006-07-16 08:14:35 +0000951 return full_write(a_c_w, buf, len);
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000952}
953
954/****************************************************************************
955 *
956 > $Function: getLine()
957 *
958 * $Description: Read from the socket until an end of line char found.
959 *
960 * Characters are read one at a time until an eol sequence is found.
961 *
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000962 * $Return: (int) . . . . number of characters read. -1 if error.
963 *
964 ****************************************************************************/
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +0000965static int getLine(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000966{
967 int count = 0;
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +0000968 char *buf = config->buf;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000969
970 while (read(a_c_r, buf + count, 1) == 1) {
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000971 if (buf[count] == '\r') continue;
Glenn L McGrath06e95652003-02-09 06:51:14 +0000972 if (buf[count] == '\n') {
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000973 buf[count] = 0;
974 return count;
975 }
Glenn L McGrath06e95652003-02-09 06:51:14 +0000976 if(count < (MAX_MEMORY_BUFF-1)) /* check owerflow */
977 count++;
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000978 }
979 if (count) return count;
980 else return -1;
981}
982
Glenn L McGrath06e95652003-02-09 06:51:14 +0000983#ifdef CONFIG_FEATURE_HTTPD_CGI
Glenn L McGrath58c708a2003-01-05 04:01:56 +0000984/****************************************************************************
985 *
986 > $Function: sendCgi()
987 *
988 * $Description: Execute a CGI script and send it's stdout back
989 *
990 * Environment variables are set up and the script is invoked with pipes
991 * for stdin/stdout. If a post is being done the script is fed the POST
992 * data in addition to setting the QUERY_STRING variable (for GETs or POSTs).
993 *
994 * $Parameters:
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +0000995 * (const char *) url . . . . . . The requested URL (with leading /).
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +0000996 * (int bodyLen) . . . . . . . . Length of the post body.
997 * (const char *cookie) . . . . . For set HTTP_COOKIE.
998 * (const char *content_type) . . For set CONTENT_TYPE.
Glenn L McGrath06e95652003-02-09 06:51:14 +0000999
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001000 *
1001 * $Return: (char *) . . . . A pointer to the decoded string (same as input).
1002 *
1003 * $Errors: None
1004 *
1005 ****************************************************************************/
Glenn L McGrath06e95652003-02-09 06:51:14 +00001006static int sendCgi(const char *url,
Eric Andersen07f2fea2004-10-08 08:03:29 +00001007 const char *request, int bodyLen, const char *cookie,
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001008 const char *content_type)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001009{
1010 int fromCgi[2]; /* pipe for reading data from CGI */
1011 int toCgi[2]; /* pipe for sending data to CGI */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001012
Glenn L McGrath06e95652003-02-09 06:51:14 +00001013 static char * argp[] = { 0, 0 };
1014 int pid = 0;
1015 int inFd;
1016 int outFd;
1017 int firstLine = 1;
1018
1019 do {
1020 if (pipe(fromCgi) != 0) {
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001021 break;
1022 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001023 if (pipe(toCgi) != 0) {
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001024 break;
1025 }
1026
1027 pid = fork();
Glenn L McGrath06e95652003-02-09 06:51:14 +00001028 if (pid < 0) {
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001029 pid = 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001030 break;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001031 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001032
1033 if (!pid) {
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001034 /* child process */
1035 char *script;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001036 char *purl = strdup( url );
1037 char realpath_buff[MAXPATHLEN];
1038
1039 if(purl == NULL)
1040 _exit(242);
1041
1042 inFd = toCgi[0];
1043 outFd = fromCgi[1];
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001044
1045 dup2(inFd, 0); // replace stdin with the pipe
1046 dup2(outFd, 1); // replace stdout with the pipe
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +00001047 if(!DEBUG)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001048 dup2(outFd, 2); // replace stderr with the pipe
1049
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001050 close(toCgi[0]);
1051 close(toCgi[1]);
1052 close(fromCgi[0]);
1053 close(fromCgi[1]);
1054
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001055 /*
Glenn L McGrath06e95652003-02-09 06:51:14 +00001056 * Find PATH_INFO.
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001057 */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001058 script = purl;
1059 while((script = strchr( script + 1, '/' )) != NULL) {
1060 /* have script.cgi/PATH_INFO or dirs/script.cgi[/PATH_INFO] */
1061 struct stat sb;
1062
1063 *script = '\0';
1064 if(is_directory(purl + 1, 1, &sb) == 0) {
1065 /* not directory, found script.cgi/PATH_INFO */
1066 *script = '/';
1067 break;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001068 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001069 *script = '/'; /* is directory, find next '/' */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001070 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001071 addEnv("PATH", "INFO", script); /* set /PATH_INFO or NULL */
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001072 addEnv("PATH", "", getenv("PATH"));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001073 addEnv("REQUEST", "METHOD", request);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001074 if(config->query) {
1075 char *uri = alloca(strlen(purl) + 2 + strlen(config->query));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001076 if(uri)
Eric Andersen07f2fea2004-10-08 08:03:29 +00001077 sprintf(uri, "%s?%s", purl, config->query);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001078 addEnv("REQUEST", "URI", uri);
1079 } else {
1080 addEnv("REQUEST", "URI", purl);
1081 }
1082 if(script != NULL)
1083 *script = '\0'; /* reduce /PATH_INFO */
Rob Landley344ea472005-09-01 09:38:32 +00001084 /* SCRIPT_FILENAME required by PHP in CGI mode */
1085 if(realpath(purl + 1, realpath_buff))
"Vladimir N. Oleynik"54deebf2005-09-19 10:46:44 +00001086 addEnv("SCRIPT", "FILENAME", realpath_buff);
Rob Landley344ea472005-09-01 09:38:32 +00001087 else
"Vladimir N. Oleynik"54deebf2005-09-19 10:46:44 +00001088 *realpath_buff = 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001089 /* set SCRIPT_NAME as full path: /cgi-bin/dirs/script.cgi */
1090 addEnv("SCRIPT_NAME", "", purl);
Eric Andersen07f2fea2004-10-08 08:03:29 +00001091 addEnv("QUERY_STRING", "", config->query);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001092 addEnv("SERVER", "SOFTWARE", httpdVersion);
1093 addEnv("SERVER", "PROTOCOL", "HTTP/1.0");
1094 addEnv("GATEWAY_INTERFACE", "", "CGI/1.1");
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001095 addEnv("REMOTE", "ADDR", config->rmt_ip_str);
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001096#ifdef CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
Glenn L McGrath06e95652003-02-09 06:51:14 +00001097 addEnvPort("REMOTE");
Glenn L McGrath06e95652003-02-09 06:51:14 +00001098#endif
1099 if(bodyLen) {
1100 char sbl[32];
1101
1102 sprintf(sbl, "%d", bodyLen);
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001103 addEnv("CONTENT", "LENGTH", sbl);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001104 }
1105 if(cookie)
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001106 addEnv("HTTP", "COOKIE", cookie);
1107 if(content_type)
1108 addEnv("CONTENT", "TYPE", content_type);
Eric Andersen769a3ef2003-12-19 11:23:47 +00001109#ifdef CONFIG_FEATURE_HTTPD_BASIC_AUTH
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001110 if(config->remoteuser) {
1111 addEnv("REMOTE", "USER", config->remoteuser);
1112 addEnv("AUTH_TYPE", "", "Basic");
Glenn L McGrath06e95652003-02-09 06:51:14 +00001113 }
Eric Andersen769a3ef2003-12-19 11:23:47 +00001114#endif
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001115 if(config->referer)
1116 addEnv("HTTP", "REFERER", config->referer);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001117
1118 /* set execve argp[0] without path */
1119 argp[0] = strrchr( purl, '/' ) + 1;
1120 /* but script argp[0] must have absolute path and chdiring to this */
Rob Landley344ea472005-09-01 09:38:32 +00001121 if(*realpath_buff) {
Glenn L McGrath06e95652003-02-09 06:51:14 +00001122 script = strrchr(realpath_buff, '/');
1123 if(script) {
1124 *script = '\0';
1125 if(chdir(realpath_buff) == 0) {
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +00001126 // now run the program. If it fails,
1127 // use _exit() so no destructors
1128 // get called and make a mess.
"Vladimir N. Oleynik"4333a092006-01-31 13:53:30 +00001129#ifdef CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
1130 char *interpr = NULL;
1131 char *suffix = strrchr(purl, '.');
1132
1133 if(suffix) {
1134 Htaccess * cur;
1135 for (cur = config->script_i; cur; cur = cur->next)
1136 if(strcmp(cur->before_colon + 1, suffix) == 0) {
1137 interpr = cur->after_colon;
1138 break;
1139 }
1140 }
1141#endif
1142 *script = '/';
1143#ifdef CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR
1144 if (interpr)
1145 execv(interpr, argp);
1146 else
1147#endif
1148 execv(realpath_buff, argp);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001149 }
1150 }
1151 }
Rob Landleya2d9a172006-04-28 19:38:04 +00001152#ifdef CONFIG_FEATURE_HTTPD_WITHOUT_INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +00001153 config->accepted_socket = 1; /* send to stdout */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001154#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001155 sendHeaders(HTTP_NOT_FOUND);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001156 _exit(242);
1157 } /* end child */
1158
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001159 } while (0);
1160
Glenn L McGrath06e95652003-02-09 06:51:14 +00001161 if (pid) {
1162 /* parent process */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001163 int status;
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001164 size_t post_readed_size = 0, post_readed_idx = 0;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001165
1166 inFd = fromCgi[0];
1167 outFd = toCgi[1];
1168 close(fromCgi[1]);
1169 close(toCgi[0]);
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001170 signal(SIGPIPE, SIG_IGN);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001171
1172 while (1) {
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001173 fd_set readSet;
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001174 fd_set writeSet;
1175 char wbuf[128];
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001176 int nfound;
1177 int count;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001178
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001179 FD_ZERO(&readSet);
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001180 FD_ZERO(&writeSet);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001181 FD_SET(inFd, &readSet);
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001182 if(bodyLen > 0 || post_readed_size > 0) {
1183 FD_SET(outFd, &writeSet);
1184 nfound = outFd > inFd ? outFd : inFd;
1185 if(post_readed_size == 0) {
1186 FD_SET(a_c_r, &readSet);
1187 if(nfound < a_c_r)
1188 nfound = a_c_r;
1189 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001190 /* Now wait on the set of sockets! */
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001191 nfound = select(nfound + 1, &readSet, &writeSet, 0, NULL);
1192 } else {
1193 if(!bodyLen) {
1194 close(outFd);
1195 bodyLen = -1;
1196 }
1197 nfound = select(inFd + 1, &readSet, 0, 0, NULL);
1198 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001199
Glenn L McGrath06e95652003-02-09 06:51:14 +00001200 if (nfound <= 0) {
1201 if (waitpid(pid, &status, WNOHANG) > 0) {
1202 close(inFd);
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +00001203#if DEBUG
1204 if (WIFEXITED(status))
Manuel Novoa III cad53642003-03-19 09:13:01 +00001205 bb_error_msg("piped has exited with status=%d", WEXITSTATUS(status));
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +00001206 if (WIFSIGNALED(status))
Manuel Novoa III cad53642003-03-19 09:13:01 +00001207 bb_error_msg("piped has exited with signal=%d", WTERMSIG(status));
Glenn L McGrath06e95652003-02-09 06:51:14 +00001208#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001209 break;
1210 }
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001211 } else if(post_readed_size > 0 && FD_ISSET(outFd, &writeSet)) {
Rob Landley53437472006-07-16 08:14:35 +00001212 count = full_write(outFd, wbuf + post_readed_idx, post_readed_size);
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001213 if(count > 0) {
1214 post_readed_size -= count;
1215 post_readed_idx += count;
1216 if(post_readed_size == 0)
1217 post_readed_idx = 0;
Paul Fox77ee5232005-07-20 18:42:52 +00001218 } else {
1219 post_readed_size = post_readed_idx = bodyLen = 0; /* broken pipe to CGI */
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001220 }
1221 } else if(bodyLen > 0 && post_readed_size == 0 && FD_ISSET(a_c_r, &readSet)) {
"Vladimir N. Oleynik"27d42a02005-12-02 09:46:04 +00001222 count = bodyLen > (int)sizeof(wbuf) ? (int)sizeof(wbuf) : bodyLen;
Eric Andersen97a1de12004-08-26 22:22:50 +00001223 count = safe_read(a_c_r, wbuf, count);
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001224 if(count > 0) {
1225 post_readed_size += count;
1226 bodyLen -= count;
Paul Fox77ee5232005-07-20 18:42:52 +00001227 } else {
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001228 bodyLen = 0; /* closed */
1229 }
Eric Andersen97a1de12004-08-26 22:22:50 +00001230 }
1231 if(FD_ISSET(inFd, &readSet)) {
Glenn L McGrath06e95652003-02-09 06:51:14 +00001232 int s = a_c_w;
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001233 char *rbuf = config->buf;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001234
Eric Andersen97a1de12004-08-26 22:22:50 +00001235#ifndef PIPE_BUF
1236# define PIPESIZE 4096 /* amount of buffering in a pipe */
1237#else
1238# define PIPESIZE PIPE_BUF
1239#endif
1240#if PIPESIZE >= MAX_MEMORY_BUFF
1241# error "PIPESIZE >= MAX_MEMORY_BUFF"
1242#endif
1243
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001244 // There is something to read
Eric Andersen97a1de12004-08-26 22:22:50 +00001245 count = safe_read(inFd, rbuf, PIPESIZE);
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001246 if (count == 0)
1247 break; /* closed */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001248 if (count > 0) {
1249 if (firstLine) {
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001250 rbuf[count] = 0;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001251 /* check to see if the user script added headers */
"Vladimir N. Oleynik"2e33daa2006-01-26 10:46:14 +00001252 if(strncmp(rbuf, "HTTP/1.0 200 OK\r\n", 4) != 0) {
Rob Landley53437472006-07-16 08:14:35 +00001253 full_write(s, "HTTP/1.0 200 OK\r\n", 17);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001254 }
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001255 if (strstr(rbuf, "ontent-") == 0) {
Rob Landley53437472006-07-16 08:14:35 +00001256 full_write(s, "Content-type: text/plain\r\n\r\n", 28);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001257 }
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001258 firstLine = 0;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001259 }
Rob Landley53437472006-07-16 08:14:35 +00001260 if (full_write(s, rbuf, count) != count)
Eric Andersenef437492004-02-04 11:10:28 +00001261 break;
1262
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +00001263#if DEBUG
1264 fprintf(stderr, "cgi read %d bytes\n", count);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001265#endif
1266 }
1267 }
1268 }
1269 }
1270 return 0;
1271}
Glenn L McGrath06e95652003-02-09 06:51:14 +00001272#endif /* CONFIG_FEATURE_HTTPD_CGI */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001273
1274/****************************************************************************
1275 *
1276 > $Function: sendFile()
1277 *
1278 * $Description: Send a file response to an HTTP request
1279 *
Glenn L McGrath06e95652003-02-09 06:51:14 +00001280 * $Parameter:
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001281 * (const char *) url . . The URL requested.
1282 *
1283 * $Return: (int) . . . . . . Always 0.
1284 *
1285 ****************************************************************************/
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001286static int sendFile(const char *url)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001287{
Glenn L McGrath06e95652003-02-09 06:51:14 +00001288 char * suffix;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001289 int f;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001290 const char * const * table;
1291 const char * try_suffix;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001292
Glenn L McGrath06e95652003-02-09 06:51:14 +00001293 suffix = strrchr(url, '.');
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001294
Glenn L McGrath06e95652003-02-09 06:51:14 +00001295 for (table = suffixTable; *table; table += 2)
1296 if(suffix != NULL && (try_suffix = strstr(*table, suffix)) != 0) {
1297 try_suffix += strlen(suffix);
1298 if(*try_suffix == 0 || *try_suffix == '.')
1299 break;
1300 }
1301 /* also, if not found, set default as "application/octet-stream"; */
Eric Andersen07f2fea2004-10-08 08:03:29 +00001302 config->httpd_found.found_mime_type = *(table+1);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001303#ifdef CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
1304 if (suffix) {
1305 Htaccess * cur;
1306
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001307 for (cur = config->mime_a; cur; cur = cur->next) {
Glenn L McGrath06e95652003-02-09 06:51:14 +00001308 if(strcmp(cur->before_colon, suffix) == 0) {
Eric Andersen07f2fea2004-10-08 08:03:29 +00001309 config->httpd_found.found_mime_type = cur->after_colon;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001310 break;
1311 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001312 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001313 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001314#endif /* CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES */
1315
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +00001316#if DEBUG
1317 fprintf(stderr, "Sending file '%s' Content-type: %s\n",
1318 url, config->httpd_found.found_mime_type);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001319#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001320
1321 f = open(url, O_RDONLY);
1322 if (f >= 0) {
1323 int count;
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001324 char *buf = config->buf;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001325
1326 sendHeaders(HTTP_OK);
Rob Landley53437472006-07-16 08:14:35 +00001327 while ((count = full_read(f, buf, MAX_MEMORY_BUFF)) > 0) {
1328 if (full_write(a_c_w, buf, count) != count)
Glenn L McGrath9adcf732003-12-08 20:21:53 +00001329 break;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001330 }
1331 close(f);
1332 } else {
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +00001333#if DEBUG
1334 bb_perror_msg("Unable to open '%s'", url);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001335#endif
1336 sendHeaders(HTTP_NOT_FOUND);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001337 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001338
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001339 return 0;
1340}
1341
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001342static int checkPermIP(void)
1343{
1344 Htaccess_IP * cur;
1345
1346 /* This could stand some work */
1347 for (cur = config->ip_a_d; cur; cur = cur->next) {
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +00001348#if DEBUG
1349 fprintf(stderr, "checkPermIP: '%s' ? ", config->rmt_ip_str);
1350 fprintf(stderr, "'%u.%u.%u.%u/%u.%u.%u.%u'\n",
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001351 (unsigned char)(cur->ip >> 24),
1352 (unsigned char)(cur->ip >> 16),
1353 (unsigned char)(cur->ip >> 8),
1354 cur->ip & 0xff,
1355 (unsigned char)(cur->mask >> 24),
1356 (unsigned char)(cur->mask >> 16),
1357 (unsigned char)(cur->mask >> 8),
1358 cur->mask & 0xff);
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001359#endif
1360 if((config->rmt_ip & cur->mask) == cur->ip)
1361 return cur->allow_deny == 'A'; /* Allow/Deny */
1362 }
1363
Eric Andersenaff114c2004-04-14 17:51:38 +00001364 /* if unconfigured, return 1 - access from all */
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001365 return !config->flg_deny_all;
1366}
1367
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001368/****************************************************************************
1369 *
1370 > $Function: checkPerm()
1371 *
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001372 * $Description: Check the permission file for access password protected.
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001373 *
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001374 * If config file isn't present, everything is allowed.
Glenn L McGrath06e95652003-02-09 06:51:14 +00001375 * Entries are of the form you can see example from header source
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001376 *
1377 * $Parameters:
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001378 * (const char *) path . . . . The file path.
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001379 * (const char *) request . . . User information to validate.
1380 *
1381 * $Return: (int) . . . . . . . . . 1 if request OK, 0 otherwise.
1382 *
1383 ****************************************************************************/
Glenn L McGrath06e95652003-02-09 06:51:14 +00001384
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001385#ifdef CONFIG_FEATURE_HTTPD_BASIC_AUTH
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001386static int checkPerm(const char *path, const char *request)
1387{
Glenn L McGrath06e95652003-02-09 06:51:14 +00001388 Htaccess * cur;
1389 const char *p;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001390 const char *p0;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001391
Glenn L McGrath06e95652003-02-09 06:51:14 +00001392 const char *prev = NULL;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001393
1394 /* This could stand some work */
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001395 for (cur = config->auth; cur; cur = cur->next) {
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001396 p0 = cur->before_colon;
1397 if(prev != NULL && strcmp(prev, p0) != 0)
1398 continue; /* find next identical */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001399 p = cur->after_colon;
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +00001400#if DEBUG
1401 fprintf(stderr,"checkPerm: '%s' ? '%s'\n", p0, request);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001402#endif
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001403 {
"Vladimir N. Oleynik"27d42a02005-12-02 09:46:04 +00001404 size_t l = strlen(p0);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001405
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001406 if(strncmp(p0, path, l) == 0 &&
1407 (l == 1 || path[l] == '/' || path[l] == 0)) {
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001408 char *u;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001409 /* path match found. Check request */
Eric Andersen35e643b2003-07-28 07:40:39 +00001410 /* for check next /path:user:password */
1411 prev = p0;
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001412 u = strchr(request, ':');
1413 if(u == NULL) {
1414 /* bad request, ':' required */
1415 break;
1416 }
1417
Eric Andersen35e643b2003-07-28 07:40:39 +00001418#ifdef CONFIG_FEATURE_HTTPD_AUTH_MD5
1419 {
1420 char *cipher;
1421 char *pp;
Eric Andersen35e643b2003-07-28 07:40:39 +00001422
Eric Andersen35e643b2003-07-28 07:40:39 +00001423 if(strncmp(p, request, u-request) != 0) {
1424 /* user uncompared */
1425 continue;
1426 }
1427 pp = strchr(p, ':');
1428 if(pp && pp[1] == '$' && pp[2] == '1' &&
1429 pp[3] == '$' && pp[4]) {
1430 pp++;
1431 cipher = pw_encrypt(u+1, pp);
1432 if (strcmp(cipher, pp) == 0)
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001433 goto set_remoteuser_var; /* Ok */
Eric Andersen35e643b2003-07-28 07:40:39 +00001434 /* unauthorized */
1435 continue;
1436 }
1437 }
1438#endif
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001439 if (strcmp(p, request) == 0) {
Glenn L McGrath9d1a33c2003-10-06 13:23:06 +00001440#ifdef CONFIG_FEATURE_HTTPD_AUTH_MD5
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001441set_remoteuser_var:
Glenn L McGrath9d1a33c2003-10-06 13:23:06 +00001442#endif
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001443 config->remoteuser = strdup(request);
1444 if(config->remoteuser)
1445 config->remoteuser[(u - request)] = 0;
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001446 return 1; /* Ok */
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001447 }
Eric Andersen35e643b2003-07-28 07:40:39 +00001448 /* unauthorized */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001449 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001450 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001451 } /* for */
1452
Glenn L McGrath06e95652003-02-09 06:51:14 +00001453 return prev == NULL;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001454}
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001455
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001456#endif /* CONFIG_FEATURE_HTTPD_BASIC_AUTH */
1457
Eric Andersen07f2fea2004-10-08 08:03:29 +00001458/****************************************************************************
1459 *
Mike Frysingerbb12d6f2006-01-03 23:59:01 +00001460 > $Function: handle_sigalrm()
Eric Andersen07f2fea2004-10-08 08:03:29 +00001461 *
Mike Frysingerbb12d6f2006-01-03 23:59:01 +00001462 * $Description: Handle timeouts
Eric Andersen07f2fea2004-10-08 08:03:29 +00001463 *
1464 ****************************************************************************/
1465
1466static void
1467handle_sigalrm( int sig )
1468{
1469 sendHeaders(HTTP_REQUEST_TIMEOUT);
1470 config->alarm_signaled = sig;
1471}
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001472
1473/****************************************************************************
1474 *
1475 > $Function: handleIncoming()
1476 *
1477 * $Description: Handle an incoming http request.
1478 *
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001479 ****************************************************************************/
Glenn L McGrath06e95652003-02-09 06:51:14 +00001480static void handleIncoming(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001481{
Glenn L McGrath06e95652003-02-09 06:51:14 +00001482 char *buf = config->buf;
1483 char *url;
1484 char *purl;
1485 int blank = -1;
Glenn L McGrath3d752f72004-03-05 09:38:16 +00001486 char *test;
1487 struct stat sb;
1488 int ip_allowed;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001489#ifdef CONFIG_FEATURE_HTTPD_CGI
1490 const char *prequest = request_GET;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001491 long length=0;
1492 char *cookie = 0;
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001493 char *content_type = 0;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001494#endif
Glenn L McGrath3d752f72004-03-05 09:38:16 +00001495 fd_set s_fd;
1496 struct timeval tv;
Eric Andersend8746cd2004-02-24 07:28:38 +00001497 int retval;
Eric Andersen07f2fea2004-10-08 08:03:29 +00001498 struct sigaction sa;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001499
1500#ifdef CONFIG_FEATURE_HTTPD_BASIC_AUTH
1501 int credentials = -1; /* if not requred this is Ok */
1502#endif
1503
Eric Andersen07f2fea2004-10-08 08:03:29 +00001504 sa.sa_handler = handle_sigalrm;
1505 sigemptyset(&sa.sa_mask);
1506 sa.sa_flags = 0; /* no SA_RESTART */
1507 sigaction(SIGALRM, &sa, NULL);
1508
Glenn L McGrath06e95652003-02-09 06:51:14 +00001509 do {
1510 int count;
1511
Eric Andersen07f2fea2004-10-08 08:03:29 +00001512 (void) alarm( TIMEOUT );
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001513 if (getLine() <= 0)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001514 break; /* closed */
1515
1516 purl = strpbrk(buf, " \t");
1517 if(purl == NULL) {
1518BAD_REQUEST:
1519 sendHeaders(HTTP_BAD_REQUEST);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001520 break;
1521 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001522 *purl = 0;
1523#ifdef CONFIG_FEATURE_HTTPD_CGI
1524 if(strcasecmp(buf, prequest) != 0) {
1525 prequest = "POST";
1526 if(strcasecmp(buf, prequest) != 0) {
1527 sendHeaders(HTTP_NOT_IMPLEMENTED);
1528 break;
1529 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001530 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001531#else
1532 if(strcasecmp(buf, request_GET) != 0) {
1533 sendHeaders(HTTP_NOT_IMPLEMENTED);
1534 break;
1535 }
1536#endif
1537 *purl = ' ';
1538 count = sscanf(purl, " %[^ ] HTTP/%d.%*d", buf, &blank);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001539
Glenn L McGrath06e95652003-02-09 06:51:14 +00001540 if (count < 1 || buf[0] != '/') {
1541 /* Garbled request/URL */
1542 goto BAD_REQUEST;
1543 }
1544 url = alloca(strlen(buf) + 12); /* + sizeof("/index.html\0") */
1545 if(url == NULL) {
1546 sendHeaders(HTTP_INTERNAL_SERVER_ERROR);
1547 break;
1548 }
1549 strcpy(url, buf);
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001550 /* extract url args if present */
Eric Andersen07f2fea2004-10-08 08:03:29 +00001551 test = strchr(url, '?');
1552 if (test) {
1553 *test++ = 0;
1554 config->query = test;
1555 }
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001556
"Vladimir N. Oleynik"ab90b9f2006-01-24 12:02:27 +00001557 test = decodeString(url, 0);
1558 if(test == NULL)
1559 goto BAD_REQUEST;
1560 if(test == (buf+1)) {
1561 sendHeaders(HTTP_NOT_FOUND);
1562 break;
1563 }
Manuel Novoa III cad53642003-03-19 09:13:01 +00001564 /* algorithm stolen from libbb bb_simplify_path(),
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001565 but don`t strdup and reducing trailing slash and protect out root */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001566 purl = test = url;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001567
Glenn L McGrath06e95652003-02-09 06:51:14 +00001568 do {
1569 if (*purl == '/') {
1570 if (*test == '/') { /* skip duplicate (or initial) slash */
1571 continue;
1572 } else if (*test == '.') {
1573 if (test[1] == '/' || test[1] == 0) { /* skip extra '.' */
1574 continue;
1575 } else if ((test[1] == '.') && (test[2] == '/' || test[2] == 0)) {
1576 ++test;
1577 if (purl == url) {
1578 /* protect out root */
1579 goto BAD_REQUEST;
1580 }
1581 while (*--purl != '/'); /* omit previous dir */
1582 continue;
1583 }
1584 }
1585 }
1586 *++purl = *test;
1587 } while (*++test);
1588
1589 *++purl = 0; /* so keep last character */
1590 test = purl; /* end ptr */
1591
1592 /* If URL is directory, adding '/' */
1593 if(test[-1] != '/') {
1594 if ( is_directory(url + 1, 1, &sb) ) {
Eric Andersen07f2fea2004-10-08 08:03:29 +00001595 config->httpd_found.found_moved_temporarily = url;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001596 }
1597 }
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +00001598#if DEBUG
1599 fprintf(stderr, "url='%s', args=%s\n", url, config->query);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001600#endif
1601
1602 test = url;
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001603 ip_allowed = checkPermIP();
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001604 while(ip_allowed && (test = strchr( test + 1, '/' )) != NULL) {
Glenn L McGrath06e95652003-02-09 06:51:14 +00001605 /* have path1/path2 */
1606 *test = '\0';
1607 if( is_directory(url + 1, 1, &sb) ) {
1608 /* may be having subdir config */
1609 parse_conf(url + 1, SUBDIR_PARSE);
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001610 ip_allowed = checkPermIP();
Glenn L McGrath06e95652003-02-09 06:51:14 +00001611 }
1612 *test = '/';
1613 }
"Vladimir N. Oleynik"27d42a02005-12-02 09:46:04 +00001614 if(blank >= 0) {
1615 // read until blank line for HTTP version specified, else parse immediate
1616 while(1) {
1617 alarm(TIMEOUT);
1618 count = getLine();
1619 if(count <= 0)
1620 break;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001621
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +00001622#if DEBUG
1623 fprintf(stderr, "Header: '%s'\n", buf);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001624#endif
1625
1626#ifdef CONFIG_FEATURE_HTTPD_CGI
"Vladimir N. Oleynik"27d42a02005-12-02 09:46:04 +00001627 /* try and do our best to parse more lines */
1628 if ((strncasecmp(buf, Content_length, 15) == 0)) {
1629 if(prequest != request_GET)
1630 length = strtol(buf + 15, 0, 0); // extra read only for POST
1631 } else if ((strncasecmp(buf, "Cookie:", 7) == 0)) {
1632 for(test = buf + 7; isspace(*test); test++)
1633 ;
1634 cookie = strdup(test);
1635 } else if ((strncasecmp(buf, "Content-Type:", 13) == 0)) {
1636 for(test = buf + 13; isspace(*test); test++)
1637 ;
1638 content_type = strdup(test);
1639 } else if ((strncasecmp(buf, "Referer:", 8) == 0)) {
1640 for(test = buf + 8; isspace(*test); test++)
1641 ;
1642 config->referer = strdup(test);
1643 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001644#endif
1645
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001646#ifdef CONFIG_FEATURE_HTTPD_BASIC_AUTH
"Vladimir N. Oleynik"27d42a02005-12-02 09:46:04 +00001647 if (strncasecmp(buf, "Authorization:", 14) == 0) {
1648 /* We only allow Basic credentials.
1649 * It shows up as "Authorization: Basic <userid:password>" where
1650 * the userid:password is base64 encoded.
1651 */
1652 for(test = buf + 14; isspace(*test); test++)
1653 ;
1654 if (strncasecmp(test, "Basic", 5) != 0)
1655 continue;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001656
"Vladimir N. Oleynik"27d42a02005-12-02 09:46:04 +00001657 test += 5; /* decodeBase64() skiping space self */
1658 decodeBase64(test);
1659 credentials = checkPerm(url, test);
1660 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001661#endif /* CONFIG_FEATURE_HTTPD_BASIC_AUTH */
1662
"Vladimir N. Oleynik"27d42a02005-12-02 09:46:04 +00001663 } /* while extra header reading */
1664 }
Eric Andersen07f2fea2004-10-08 08:03:29 +00001665 (void) alarm( 0 );
1666 if(config->alarm_signaled)
1667 break;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001668
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001669 if (strcmp(strrchr(url, '/') + 1, httpd_conf) == 0 || ip_allowed == 0) {
Glenn L McGrath06e95652003-02-09 06:51:14 +00001670 /* protect listing [/path]/httpd_conf or IP deny */
1671#ifdef CONFIG_FEATURE_HTTPD_CGI
1672FORBIDDEN: /* protect listing /cgi-bin */
1673#endif
1674 sendHeaders(HTTP_FORBIDDEN);
1675 break;
1676 }
1677
1678#ifdef CONFIG_FEATURE_HTTPD_BASIC_AUTH
1679 if (credentials <= 0 && checkPerm(url, ":") == 0) {
1680 sendHeaders(HTTP_UNAUTHORIZED);
1681 break;
1682 }
1683#endif
1684
Eric Andersen07f2fea2004-10-08 08:03:29 +00001685 if(config->httpd_found.found_moved_temporarily) {
1686 sendHeaders(HTTP_MOVED_TEMPORARILY);
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +00001687#if DEBUG
Eric Andersen07f2fea2004-10-08 08:03:29 +00001688 /* clear unforked memory flag */
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +00001689 config->httpd_found.found_moved_temporarily = NULL;
Eric Andersen07f2fea2004-10-08 08:03:29 +00001690#endif
1691 break;
1692 }
1693
Glenn L McGrath06e95652003-02-09 06:51:14 +00001694 test = url + 1; /* skip first '/' */
1695
1696#ifdef CONFIG_FEATURE_HTTPD_CGI
1697 /* if strange Content-Length */
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001698 if (length < 0)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001699 break;
1700
Glenn L McGrath06e95652003-02-09 06:51:14 +00001701 if (strncmp(test, "cgi-bin", 7) == 0) {
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001702 if(test[7] == '/' && test[8] == 0)
1703 goto FORBIDDEN; // protect listing cgi-bin/
Eric Andersen07f2fea2004-10-08 08:03:29 +00001704 sendCgi(url, prequest, length, cookie, content_type);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001705 } else {
1706 if (prequest != request_GET)
1707 sendHeaders(HTTP_NOT_IMPLEMENTED);
1708 else {
1709#endif /* CONFIG_FEATURE_HTTPD_CGI */
1710 if(purl[-1] == '/')
1711 strcpy(purl, "index.html");
1712 if ( stat(test, &sb ) == 0 ) {
1713 config->ContentLength = sb.st_size;
1714 config->last_mod = sb.st_mtime;
1715 }
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001716 sendFile(test);
Rob Landleya2d9a172006-04-28 19:38:04 +00001717#ifdef CONFIG_FEATURE_HTTPD_WITHOUT_INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +00001718 /* unset if non inetd looped */
1719 config->ContentLength = -1;
1720#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001721
Glenn L McGrath06e95652003-02-09 06:51:14 +00001722#ifdef CONFIG_FEATURE_HTTPD_CGI
1723 }
1724 }
1725#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001726
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001727 } while (0);
1728
Glenn L McGrath06e95652003-02-09 06:51:14 +00001729
Rob Landleya2d9a172006-04-28 19:38:04 +00001730#ifdef CONFIG_FEATURE_HTTPD_WITHOUT_INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +00001731/* from inetd don`t looping: freeing, closing automatic from exit always */
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +00001732# if DEBUG
1733 fprintf(stderr, "closing socket\n");
Glenn L McGrath06e95652003-02-09 06:51:14 +00001734# endif
1735# ifdef CONFIG_FEATURE_HTTPD_CGI
Glenn L McGrath06e95652003-02-09 06:51:14 +00001736 free(cookie);
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001737 free(content_type);
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00001738 free(config->referer);
Eric Andersen769a3ef2003-12-19 11:23:47 +00001739#ifdef CONFIG_FEATURE_HTTPD_BASIC_AUTH
1740 free(config->remoteuser);
1741#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001742# endif
Rob Landleya2d9a172006-04-28 19:38:04 +00001743#endif /* CONFIG_FEATURE_HTTPD_WITHOUT_INETD */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001744 shutdown(a_c_w, SHUT_WR);
Eric Andersend8746cd2004-02-24 07:28:38 +00001745
1746 /* Properly wait for remote to closed */
1747 FD_ZERO (&s_fd) ;
Bernhard Reutner-Fischere7f8a322006-04-11 13:51:50 +00001748 FD_SET (a_c_r, &s_fd) ;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001749
Eric Andersend8746cd2004-02-24 07:28:38 +00001750 do {
1751 tv.tv_sec = 2 ;
1752 tv.tv_usec = 0 ;
Bernhard Reutner-Fischere7f8a322006-04-11 13:51:50 +00001753 retval = select (a_c_r + 1, &s_fd, NULL, NULL, &tv);
1754 } while (retval > 0 && (read (a_c_r, buf, sizeof (config->buf)) > 0));
Eric Andersend8746cd2004-02-24 07:28:38 +00001755
Glenn L McGrath06e95652003-02-09 06:51:14 +00001756 shutdown(a_c_r, SHUT_RD);
Rob Landleya2d9a172006-04-28 19:38:04 +00001757#ifdef CONFIG_FEATURE_HTTPD_WITHOUT_INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +00001758 close(config->accepted_socket);
Rob Landleya2d9a172006-04-28 19:38:04 +00001759#endif /* CONFIG_FEATURE_HTTPD_WITHOUT_INETD */
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001760}
1761
1762/****************************************************************************
1763 *
1764 > $Function: miniHttpd()
1765 *
1766 * $Description: The main http server function.
1767 *
1768 * Given an open socket fildes, listen for new connections and farm out
1769 * the processing as a forked process.
1770 *
1771 * $Parameters:
1772 * (int) server. . . The server socket fildes.
1773 *
1774 * $Return: (int) . . . . Always 0.
1775 *
1776 ****************************************************************************/
Rob Landleya2d9a172006-04-28 19:38:04 +00001777#ifdef CONFIG_FEATURE_HTTPD_WITHOUT_INETD
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001778static int miniHttpd(int server)
1779{
1780 fd_set readfd, portfd;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001781
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001782 FD_ZERO(&portfd);
1783 FD_SET(server, &portfd);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001784
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001785 /* copy the ports we are watching to the readfd set */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001786 while (1) {
1787 readfd = portfd;
1788
Eric Andersenaff114c2004-04-14 17:51:38 +00001789 /* Now wait INDEFINITELY on the set of sockets! */
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001790 if (select(server + 1, &readfd, 0, 0, 0) > 0) {
Glenn L McGrath06e95652003-02-09 06:51:14 +00001791 if (FD_ISSET(server, &readfd)) {
1792 int on;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001793 struct sockaddr_in fromAddr;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001794
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001795 socklen_t fromAddrLen = sizeof(fromAddr);
1796 int s = accept(server,
Glenn L McGrath06e95652003-02-09 06:51:14 +00001797 (struct sockaddr *)&fromAddr, &fromAddrLen);
1798
1799 if (s < 0) {
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001800 continue;
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001801 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001802 config->accepted_socket = s;
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001803 config->rmt_ip = ntohl(fromAddr.sin_addr.s_addr);
Rob Landleyd086b502006-04-14 02:32:29 +00001804#if defined(CONFIG_FEATURE_HTTPD_CGI) || DEBUG
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001805 sprintf(config->rmt_ip_str, "%u.%u.%u.%u",
1806 (unsigned char)(config->rmt_ip >> 24),
1807 (unsigned char)(config->rmt_ip >> 16),
1808 (unsigned char)(config->rmt_ip >> 8),
1809 config->rmt_ip & 0xff);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001810 config->port = ntohs(fromAddr.sin_port);
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +00001811#if DEBUG
1812 bb_error_msg("connection from IP=%s, port %u\n",
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001813 config->rmt_ip_str, config->port);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001814#endif
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001815#endif /* CONFIG_FEATURE_HTTPD_CGI */
1816
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001817 /* set the KEEPALIVE option to cull dead connections */
1818 on = 1;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001819 setsockopt(s, SOL_SOCKET, SO_KEEPALIVE, (void *)&on, sizeof (on));
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001820
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +00001821#if !DEBUG
1822 if (fork() == 0)
1823#endif
1824 {
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00001825 /* This is the spawned thread */
1826#ifdef CONFIG_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
1827 /* protect reload config, may be confuse checking */
1828 signal(SIGHUP, SIG_IGN);
1829#endif
1830 handleIncoming();
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +00001831#if !DEBUG
1832 exit(0);
1833#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001834 }
1835 close(s);
1836 }
1837 }
1838 } // while (1)
1839 return 0;
1840}
1841
Glenn L McGrath06e95652003-02-09 06:51:14 +00001842#else
1843 /* from inetd */
1844
1845static int miniHttpd(void)
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001846{
Glenn L McGrath06e95652003-02-09 06:51:14 +00001847 struct sockaddr_in fromAddrLen;
1848 socklen_t sinlen = sizeof (struct sockaddr_in);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001849
1850 getpeername (0, (struct sockaddr *)&fromAddrLen, &sinlen);
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001851 config->rmt_ip = ntohl(fromAddrLen.sin_addr.s_addr);
Rob Landleyd086b502006-04-14 02:32:29 +00001852#ifdef CONFIG_FEATURE_HTTPD_CGI
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001853 sprintf(config->rmt_ip_str, "%u.%u.%u.%u",
1854 (unsigned char)(config->rmt_ip >> 24),
1855 (unsigned char)(config->rmt_ip >> 16),
1856 (unsigned char)(config->rmt_ip >> 8),
1857 config->rmt_ip & 0xff);
1858#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001859 config->port = ntohs(fromAddrLen.sin_port);
1860 handleIncoming();
1861 return 0;
1862}
Rob Landleya2d9a172006-04-28 19:38:04 +00001863#endif /* CONFIG_FEATURE_HTTPD_WITHOUT_INETD */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001864
1865#ifdef CONFIG_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
1866static void sighup_handler(int sig)
1867{
1868 /* set and reset */
1869 struct sigaction sa;
1870
Glenn L McGrathb65422c2003-09-08 10:59:27 +00001871 parse_conf(default_path_httpd_conf,
1872 sig == SIGHUP ? SIGNALED_PARSE : FIRST_PARSE);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001873 sa.sa_handler = sighup_handler;
1874 sigemptyset(&sa.sa_mask);
1875 sa.sa_flags = SA_RESTART;
1876 sigaction(SIGHUP, &sa, NULL);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001877}
1878#endif
1879
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00001880enum httpd_opts_nums {
1881 c_opt_config_file = 0,
1882 d_opt_decode_url,
1883 h_opt_home_httpd,
1884 USE_FEATURE_HTTPD_ENCODE_URL_STR(e_opt_encode_url,)
1885 USE_FEATURE_HTTPD_BASIC_AUTH(r_opt_realm,)
1886 USE_FEATURE_HTTPD_AUTH_MD5(m_opt_md5,)
1887 USE_FEATURE_HTTPD_SETUID(u_opt_setuid,)
Rob Landleya2d9a172006-04-28 19:38:04 +00001888 USE_FEATURE_HTTPD_WITHOUT_INETD(p_opt_port,)
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00001889};
Eric Andersena3bb3e62003-06-26 09:05:32 +00001890
1891static const char httpd_opts[]="c:d:h:"
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00001892 USE_FEATURE_HTTPD_ENCODE_URL_STR("e:")
1893 USE_FEATURE_HTTPD_BASIC_AUTH("r:")
1894 USE_FEATURE_HTTPD_AUTH_MD5("m:")
1895 USE_FEATURE_HTTPD_SETUID("u:")
Rob Landleya2d9a172006-04-28 19:38:04 +00001896 USE_FEATURE_HTTPD_WITHOUT_INETD("p:");
"Vladimir N. Oleynik"27d42a02005-12-02 09:46:04 +00001897
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00001898#define OPT_CONFIG_FILE (1<<c_opt_config_file)
1899#define OPT_DECODE_URL (1<<d_opt_decode_url)
1900#define OPT_HOME_HTTPD (1<<h_opt_home_httpd)
"Vladimir N. Oleynik"27d42a02005-12-02 09:46:04 +00001901
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00001902#define OPT_ENCODE_URL USE_FEATURE_HTTPD_ENCODE_URL_STR((1<<e_opt_encode_url)) \
Rob Landley0d8766a2006-02-20 23:05:06 +00001903 SKIP_FEATURE_HTTPD_ENCODE_URL_STR(0)
"Vladimir N. Oleynik"27d42a02005-12-02 09:46:04 +00001904
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00001905#define OPT_REALM USE_FEATURE_HTTPD_BASIC_AUTH((1<<r_opt_realm)) \
Rob Landley0d8766a2006-02-20 23:05:06 +00001906 SKIP_FEATURE_HTTPD_BASIC_AUTH(0)
Eric Andersena3bb3e62003-06-26 09:05:32 +00001907
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00001908#define OPT_MD5 USE_FEATURE_HTTPD_AUTH_MD5((1<<m_opt_md5)) \
Rob Landley0d8766a2006-02-20 23:05:06 +00001909 SKIP_FEATURE_HTTPD_AUTH_MD5(0)
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00001910
1911#define OPT_SETUID USE_FEATURE_HTTPD_SETUID((1<<u_opt_setuid)) \
Rob Landley0d8766a2006-02-20 23:05:06 +00001912 SKIP_FEATURE_HTTPD_SETUID(0)
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00001913
Rob Landleya2d9a172006-04-28 19:38:04 +00001914#define OPT_PORT USE_FEATURE_HTTPD_WITHOUT_INETD((1<<p_opt_port)) \
1915 SKIP_FEATURE_HTTPD_WITHOUT_INETD(0)
Eric Andersena3bb3e62003-06-26 09:05:32 +00001916
1917
Glenn L McGrath06e95652003-02-09 06:51:14 +00001918int httpd_main(int argc, char *argv[])
Glenn L McGrath06e95652003-02-09 06:51:14 +00001919{
Eric Andersena3bb3e62003-06-26 09:05:32 +00001920 unsigned long opt;
Glenn L McGrath06e95652003-02-09 06:51:14 +00001921 const char *home_httpd = home;
Eric Andersena3bb3e62003-06-26 09:05:32 +00001922 char *url_for_decode;
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00001923 USE_FEATURE_HTTPD_ENCODE_URL_STR(const char *url_for_encode;)
Rob Landleya2d9a172006-04-28 19:38:04 +00001924 USE_FEATURE_HTTPD_WITHOUT_INETD(const char *s_port;)
1925 USE_FEATURE_HTTPD_WITHOUT_INETD(int server;)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001926
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00001927 USE_FEATURE_HTTPD_SETUID(const char *s_uid;)
1928 USE_FEATURE_HTTPD_SETUID(long uid = -1;)
Glenn L McGrath06e95652003-02-09 06:51:14 +00001929
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00001930 USE_FEATURE_HTTPD_AUTH_MD5(const char *pass;)
Eric Andersen35e643b2003-07-28 07:40:39 +00001931
Glenn L McGrath06e95652003-02-09 06:51:14 +00001932 config = xcalloc(1, sizeof(*config));
1933#ifdef CONFIG_FEATURE_HTTPD_BASIC_AUTH
1934 config->realm = "Web Server Authentication";
1935#endif
1936
Rob Landleya2d9a172006-04-28 19:38:04 +00001937#ifdef CONFIG_FEATURE_HTTPD_WITHOUT_INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +00001938 config->port = 80;
1939#endif
1940
1941 config->ContentLength = -1;
1942
Eric Andersena3bb3e62003-06-26 09:05:32 +00001943 opt = bb_getopt_ulflags(argc, argv, httpd_opts,
1944 &(config->configFile), &url_for_decode, &home_httpd
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00001945 USE_FEATURE_HTTPD_ENCODE_URL_STR(, &url_for_encode)
1946 USE_FEATURE_HTTPD_BASIC_AUTH(, &(config->realm))
1947 USE_FEATURE_HTTPD_AUTH_MD5(, &pass)
1948 USE_FEATURE_HTTPD_SETUID(, &s_uid)
Rob Landleya2d9a172006-04-28 19:38:04 +00001949 USE_FEATURE_HTTPD_WITHOUT_INETD(, &s_port)
"Vladimir N. Oleynik"9a515402006-02-15 13:27:18 +00001950 );
Eric Andersena3bb3e62003-06-26 09:05:32 +00001951
1952 if(opt & OPT_DECODE_URL) {
1953 printf("%s", decodeString(url_for_decode, 1));
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001954 return 0;
Eric Andersena3bb3e62003-06-26 09:05:32 +00001955 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001956#ifdef CONFIG_FEATURE_HTTPD_ENCODE_URL_STR
Eric Andersena3bb3e62003-06-26 09:05:32 +00001957 if(opt & OPT_ENCODE_URL) {
1958 printf("%s", encodeString(url_for_encode));
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001959 return 0;
Eric Andersena3bb3e62003-06-26 09:05:32 +00001960 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001961#endif
Eric Andersen35e643b2003-07-28 07:40:39 +00001962#ifdef CONFIG_FEATURE_HTTPD_AUTH_MD5
1963 if(opt & OPT_MD5) {
1964 printf("%s\n", pw_encrypt(pass, "$1$"));
1965 return 0;
1966 }
1967#endif
Rob Landleya2d9a172006-04-28 19:38:04 +00001968#ifdef CONFIG_FEATURE_HTTPD_WITHOUT_INETD
Eric Andersena3bb3e62003-06-26 09:05:32 +00001969 if(opt & OPT_PORT)
1970 config->port = bb_xgetlarg(s_port, 10, 1, 0xffff);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001971#ifdef CONFIG_FEATURE_HTTPD_SETUID
Eric Andersena3bb3e62003-06-26 09:05:32 +00001972 if(opt & OPT_SETUID) {
Glenn L McGrath06e95652003-02-09 06:51:14 +00001973 char *e;
1974
Eric Andersena3bb3e62003-06-26 09:05:32 +00001975 uid = strtol(s_uid, &e, 0);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001976 if(*e != '\0') {
1977 /* not integer */
Bernhard Reutner-Fischerd5bd1372005-09-20 21:06:17 +00001978 uid = bb_xgetpwnam(s_uid);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001979 }
1980 }
Glenn L McGrath06e95652003-02-09 06:51:14 +00001981#endif
Glenn L McGrath4fe3ff82003-05-19 05:56:16 +00001982#endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001983
Rob Landley280a2642006-08-03 17:49:15 +00001984 xchdir(home_httpd);
Rob Landleya2d9a172006-04-28 19:38:04 +00001985#ifdef CONFIG_FEATURE_HTTPD_WITHOUT_INETD
Glenn L McGrath06e95652003-02-09 06:51:14 +00001986 server = openServer();
1987# ifdef CONFIG_FEATURE_HTTPD_SETUID
Eric Andersenaff114c2004-04-14 17:51:38 +00001988 /* drop privileges */
Glenn L McGrath06e95652003-02-09 06:51:14 +00001989 if(uid > 0)
Rob Landley53437472006-07-16 08:14:35 +00001990 xsetuid(uid);
Glenn L McGrath06e95652003-02-09 06:51:14 +00001991# endif
Glenn L McGrath58c708a2003-01-05 04:01:56 +00001992#endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00001993
Glenn L McGrathfe538ba2003-09-10 23:35:45 +00001994#ifdef CONFIG_FEATURE_HTTPD_CGI
1995 {
1996 char *p = getenv("PATH");
Glenn L McGrathfe538ba2003-09-10 23:35:45 +00001997 if(p) {
Rob Landley280a2642006-08-03 17:49:15 +00001998 p = xstrdup(p);
Glenn L McGrathfe538ba2003-09-10 23:35:45 +00001999 }
Glenn L McGrath1dc0cca2003-10-03 10:50:56 +00002000 clearenv();
2001 if(p)
2002 setenv("PATH", p, 1);
Rob Landleya2d9a172006-04-28 19:38:04 +00002003# ifdef CONFIG_FEATURE_HTTPD_WITHOUT_INETD
Glenn L McGrath14092a12003-09-12 00:44:50 +00002004 addEnvPort("SERVER");
2005# endif
Glenn L McGrathfe538ba2003-09-10 23:35:45 +00002006 }
2007#endif
2008
Glenn L McGrath06e95652003-02-09 06:51:14 +00002009#ifdef CONFIG_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
2010 sighup_handler(0);
2011#else
Glenn L McGrathc9163fe2003-05-13 16:20:11 +00002012 parse_conf(default_path_httpd_conf, FIRST_PARSE);
Glenn L McGrath06e95652003-02-09 06:51:14 +00002013#endif
2014
Rob Landleya2d9a172006-04-28 19:38:04 +00002015#ifdef CONFIG_FEATURE_HTTPD_WITHOUT_INETD
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +00002016# if !DEBUG
Rob Landley280a2642006-08-03 17:49:15 +00002017 xdaemon(1, 0); /* don`t change curent directory */
"Vladimir N. Oleynik"6b903a22005-12-20 11:02:54 +00002018# endif
Glenn L McGrath06e95652003-02-09 06:51:14 +00002019 return miniHttpd(server);
2020#else
2021 return miniHttpd();
2022#endif
2023}