1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
|
/* $NetBSD: bozohttpd.c,v 1.15 2009/05/23 08:26:26 mrg Exp $ */
/* $eterna: main.c,v 1.6 2011/11/18 09:21:15 mrg Exp $ */
/* from: eterna: bozohttpd.c,v 1.159 2009/05/23 02:14:30 mrg Exp */
/*
* Copyright (c) 1997-2011 Matthew R. Green
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer and
* dedication in the documentation and/or other materials provided
* with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*/
/* this program is dedicated to the Great God of Processed Cheese */
/*
* main.c: C front end to bozohttpd
*/
#include <sys/types.h>
#include <sys/param.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
#include <time.h>
#include <unistd.h>
#include "bozohttpd.h"
/* variables and functions */
#ifndef LOG_FTP
#define LOG_FTP LOG_DAEMON
#endif
/* print a usage message, and then exit */
BOZO_DEAD static void
usage(bozohttpd_t *httpd, char *progname)
{
bozo_warn(httpd, "usage: %s [options] slashdir [virtualhostname]",
progname);
bozo_warn(httpd, "options:");
#ifndef NO_DEBUG
bozo_warn(httpd, " -d\t\t\tenable debug support");
#endif
bozo_warn(httpd, " -s\t\t\talways log to stderr");
#ifndef NO_USER_SUPPORT
bozo_warn(httpd, " -u\t\t\tenable ~user/public_html support");
bozo_warn(httpd, " -p dir\t\tchange `public_html' directory name]");
#endif
#ifndef NO_DYNAMIC_CONTENT
bozo_warn(httpd, " -M arg t c c11\tadd this mime extenstion");
#endif
#ifndef NO_CGIBIN_SUPPORT
#ifndef NO_DYNAMIC_CONTENT
bozo_warn(httpd, " -C arg prog\t\tadd this CGI handler");
#endif
bozo_warn(httpd,
" -c cgibin\t\tenable cgi-bin support in this directory");
#endif
bozo_warn(httpd, " -I port\t\tbind or use on this port");
#ifndef NO_DAEMON_MODE
bozo_warn(httpd, " -b\t\t\tbackground and go into daemon mode");
bozo_warn(httpd, " -f\t\t\tkeep daemon mode in the foreground");
bozo_warn(httpd,
" -i address\t\tbind on this address (daemon mode only)");
bozo_warn(httpd, " -P pidfile\t\tpath to the pid file to create");
#endif
bozo_warn(httpd, " -S version\t\tset server version string");
bozo_warn(httpd, " -t dir\t\tchroot to `dir'");
bozo_warn(httpd, " -U username\t\tchange user to `user'");
bozo_warn(httpd,
" -e\t\t\tdon't clean the environment (-t and -U only)");
bozo_warn(httpd,
" -v virtualroot\tenable virtual host support "
"in this directory");
bozo_warn(httpd,
" -r\t\t\tmake sure sub-pages come from "
"this host via referrer");
#ifndef NO_DIRINDEX_SUPPORT
bozo_warn(httpd,
" -X\t\t\tenable automatic directory index support");
bozo_warn(httpd,
" -H\t\t\thide files starting with a period (.)"
" in index mode");
#endif
bozo_warn(httpd,
" -x index\t\tchange default `index.html' file name");
#ifndef NO_SSL_SUPPORT
bozo_warn(httpd,
" -Z cert privkey\tspecify path to server certificate"
" and private key file\n"
"\t\t\tin pem format and enable bozohttpd in SSL mode");
#endif /* NO_SSL_SUPPORT */
bozo_err(httpd, 1, "%s failed to start", progname);
}
int
main(int argc, char **argv)
{
bozo_httpreq_t *request;
bozohttpd_t httpd;
bozoprefs_t prefs;
char *progname;
int c;
(void) memset(&httpd, 0x0, sizeof(httpd));
(void) memset(&prefs, 0x0, sizeof(prefs));
if ((progname = strrchr(argv[0], '/')) == NULL)
progname = argv[0];
else
progname++;
openlog(progname, LOG_PID|LOG_NDELAY, LOG_FTP);
bozo_set_defaults(&httpd, &prefs);
while ((c = getopt(argc, argv,
"C:HI:M:P:S:U:VXZ:bc:defhi:np:rst:uv:x:z:")) != -1) {
switch(c) {
case 'M':
#ifdef NO_DYNAMIC_CONTENT
bozo_err(&httpd, 1,
"dynamic mime content support is not enabled");
/* NOTREACHED */
#else
/* make sure there's four arguments */
if (argc - optind < 3)
usage(&httpd, progname);
bozo_add_content_map_mime(&httpd, optarg, argv[optind],
argv[optind+1], argv[optind+2]);
optind += 3;
break;
#endif /* NO_DYNAMIC_CONTENT */
case 'n':
bozo_set_pref(&prefs, "numeric", "true");
break;
case 'r':
bozo_set_pref(&prefs, "trusted referal", "true");
break;
case 's':
bozo_set_pref(&prefs, "log to stderr", "true");
break;
case 'S':
bozo_set_pref(&prefs, "server software", optarg);
break;
case 'Z':
#ifdef NO_SSL_SUPPORT
bozo_err(&httpd, 1, "ssl support is not enabled");
/* NOT REACHED */
#else
/* make sure there's two arguments */
if (argc - optind < 1)
usage(&httpd, progname);
bozo_ssl_set_opts(&httpd, optarg, argv[optind++]);
break;
#endif /* NO_SSL_SUPPORT */
case 'U':
bozo_set_pref(&prefs, "username", optarg);
break;
case 'V':
bozo_set_pref(&prefs, "unknown slash", "true");
break;
case 'v':
bozo_set_pref(&prefs, "virtual base", optarg);
break;
case 'x':
bozo_set_pref(&prefs, "index.html", optarg);
break;
case 'I':
bozo_set_pref(&prefs, "port number", optarg);
break;
#ifdef NO_DAEMON_MODE
case 'b':
case 'e':
case 'f':
case 'i':
case 'P':
bozo_err(&httpd, 1, "Daemon mode is not enabled");
/* NOTREACHED */
#else
case 'b':
/*
* test suite support - undocumented
* background == 2 (aka, -b -b) means to
* only process 1 per kid
*/
if (bozo_get_pref(&prefs, "background") == NULL) {
bozo_set_pref(&prefs, "background", "1");
} else {
bozo_set_pref(&prefs, "background", "2");
}
break;
case 'e':
bozo_set_pref(&prefs, "dirty environment", "true");
break;
case 'f':
bozo_set_pref(&prefs, "foreground", "true");
break;
case 'i':
bozo_set_pref(&prefs, "bind address", optarg);
break;
case 'P':
bozo_set_pref(&prefs, "pid file", optarg);
break;
#endif /* NO_DAEMON_MODE */
#ifdef NO_CGIBIN_SUPPORT
case 'c':
case 'C':
bozo_err(&httpd, 1, "CGI is not enabled");
/* NOTREACHED */
#else
case 'c':
bozo_cgi_setbin(&httpd, optarg);
break;
case 'C':
# ifdef NO_DYNAMIC_CONTENT
bozo_err(&httpd, 1,
"dynamic CGI handler support is not enabled");
/* NOTREACHED */
# else
/* make sure there's two arguments */
if (argc - optind < 1)
usage(&httpd, progname);
bozo_add_content_map_cgi(&httpd, optarg,
argv[optind++]);
break;
# endif /* NO_DYNAMIC_CONTENT */
#endif /* NO_CGIBIN_SUPPORT */
case 'd':
httpd.debug++;
#ifdef NO_DEBUG
if (httpd.debug == 1)
bozo_warn(&httpd, "Debugging is not enabled");
#endif /* NO_DEBUG */
break;
#ifdef NO_USER_SUPPORT
case 'p':
case 't':
case 'u':
bozo_err(&httpd, 1, "User support is not enabled");
/* NOTREACHED */
#else
case 'p':
bozo_set_pref(&prefs, "public_html", optarg);
break;
case 't':
bozo_set_pref(&prefs, "chroot dir", optarg);
break;
case 'u':
bozo_set_pref(&prefs, "enable users", "true");
break;
#endif /* NO_USER_SUPPORT */
#ifdef NO_DIRINDEX_SUPPORT
case 'H':
case 'X':
bozo_err(&httpd, 1,
"directory indexing is not enabled");
/* NOTREACHED */
#else
case 'H':
bozo_set_pref(&prefs, "hide dots", "true");
break;
case 'X':
bozo_set_pref(&prefs, "directory indexing", "true");
break;
#endif /* NO_DIRINDEX_SUPPORT */
default:
usage(&httpd, progname);
/* NOTREACHED */
}
}
argc -= optind;
argv += optind;
if (argc == 0 || argc > 2) {
usage(&httpd, progname);
}
/* virtual host, and root of tree to serve */
bozo_setup(&httpd, &prefs, argv[1], argv[0]);
/*
* read and process the HTTP request.
*/
do {
if ((request = bozo_read_request(&httpd)) != NULL) {
bozo_process_request(request);
bozo_clean_request(request);
}
} while (httpd.background);
return (0);
}
|