main.c revision 1fbf6ba0f5207e6637b49f9a9dfcc779bbe952a9
/* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000-2003 The Apache Software Foundation. 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 in
* distribution.
*
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Apache" and "Apache Software Foundation" must
* not be used to endorse or promote products derived from this
* software without prior written permission. For written
* permission, please contact apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache",
* nor may "Apache" appear in their name, without prior written
* permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS 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 software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
*
* Portions of this software are based upon public domain software
* originally written at the National Center for Supercomputing Applications,
* University of Illinois, Urbana-Champaign.
*/
#include "apr.h"
#include "apr_strings.h"
#include "apr_getopt.h"
#include "apr_general.h"
#include "apr_lib.h"
#include "apr_md5.h"
#define APR_WANT_STDIO
#define APR_WANT_STRFUNC
#include "apr_want.h"
#define CORE_PRIVATE
#include "ap_config.h"
#include "httpd.h"
#include "http_main.h"
#include "http_log.h"
#include "http_config.h"
#include "http_vhost.h"
#include "apr_uri.h"
#include "util_ebcdic.h"
#include "ap_mpm.h"
#include "mpm_common.h"
/* WARNING: Win32 binds http_main.c dynamically to the server. Please place
* extern functions and global data in another appropriate module.
*
* Most significant main() global data can be found in http_config.c
*/
/* XXX - We should be able to grab the per-MPM settings here too */
static void show_compile_settings(void)
{
printf("Server's Module Magic Number: %u:%u\n",
/* sizeof(foo) is long on some platforms so we might as well
* make it long everywhere to keep the printf format
* consistent
*/
printf("Server compiled with....\n");
#ifdef BIG_SECURITY_HOLE
printf(" -D BIG_SECURITY_HOLE\n");
#endif
printf(" -D SECURITY_HOLE_PASS_AUTHORIZATION\n");
#endif
#ifdef APACHE_MPM_DIR
#endif
#ifdef HAVE_SHMGET
printf(" -D HAVE_SHMGET\n");
#endif
printf(" -D APR_FILE_BASED_SHM\n");
#endif
#if APR_HAS_SENDFILE
printf(" -D APR_HAS_SENDFILE\n");
#endif
#if APR_HAS_MMAP
printf(" -D APR_HAS_MMAP\n");
#endif
#ifdef NO_WRITEV
printf(" -D NO_WRITEV\n");
#endif
#ifdef NO_LINGCLOSE
printf(" -D NO_LINGCLOSE\n");
#endif
#if APR_HAVE_IPV6
printf(" -D APR_HAVE_IPV6 (IPv4-mapped addresses ");
#ifdef AP_ENABLE_V4_MAPPED
printf("enabled)\n");
#else
printf("disabled)\n");
#endif
#endif
printf(" -D APR_USE_FLOCK_SERIALIZE\n");
#endif
printf(" -D APR_USE_SYSVSEM_SERIALIZE\n");
#endif
printf(" -D APR_USE_POSIXSEM_SERIALIZE\n");
#endif
printf(" -D APR_USE_FCNTL_SERIALIZE\n");
#endif
printf(" -D APR_USE_PROC_PTHREAD_SERIALIZE\n");
#endif
printf(" -D APR_USE_PTHREAD_SERIALIZE\n");
#endif
printf(" -D APR_PROCESS_LOCK_IS_GLOBAL\n");
#endif
printf(" -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT\n");
#endif
printf(" -D APR_HAS_OTHER_CHILD\n");
#endif
#ifdef AP_HAVE_RELIABLE_PIPED_LOGS
printf(" -D AP_HAVE_RELIABLE_PIPED_LOGS\n");
#endif
#ifdef BUFFERED_LOGS
printf(" -D BUFFERED_LOGS\n");
#ifdef PIPE_BUF
#endif
#endif
printf(" -D APR_CHARSET_EBCDIC\n");
#endif
#ifdef APACHE_XLATE
printf(" -D APACHE_XLATE\n");
#endif
#ifdef NEED_HASHBANG_EMUL
printf(" -D NEED_HASHBANG_EMUL\n");
#endif
#ifdef SHARED_CORE
printf(" -D SHARED_CORE\n");
#endif
/* This list displays the compiled in default paths: */
#ifdef HTTPD_ROOT
#endif
#ifdef SUEXEC_BIN
#endif
#if defined(SHARED_CORE) && defined(SHARED_CORE_DIR)
#endif
#ifdef DEFAULT_PIDLOG
#endif
#ifdef DEFAULT_SCOREBOARD
#endif
#ifdef DEFAULT_LOCKFILE
#endif
#ifdef DEFAULT_ERRORLOG
#endif
#ifdef AP_TYPES_CONFIG_FILE
#endif
#ifdef SERVER_CONFIG_FILE
#endif
}
int process_exit_value)
{
}
{
if (stat != APR_SUCCESS) {
/* XXX From the time that we took away the NULL pool->malloc mapping
* we have been unable to log here without segfaulting.
*/
"apr_pool_create() failed to create "
"initial context");
exit(1);
}
return process;
}
{
char pad[MAX_STRING_LEN];
unsigned i;
pad[i] = ' ';
}
pad[i] = '\0';
#ifdef SHARED_CORE
"Usage: %s [-R directory] [-D name] [-d directory] [-f file]",
bin);
#else
"Usage: %s [-D name] [-d directory] [-f file]", bin);
#endif
" %s [-C \"directive\"] [-c \"directive\"]", pad);
#ifdef WIN32
" %s [-w] [-k start|restart|stop|shutdown]", pad);
" %s [-k install|config|uninstall] [-n service_name]",
pad);
#endif
#ifdef AP_MPM_WANT_SIGNAL_SERVER
" %s [-k start|restart|graceful|stop]",
pad);
#endif
" %s [-v] [-V] [-h] [-l] [-L] [-t] [-S]", pad);
"Options:");
#ifdef SHARED_CORE
" -R directory : specify an alternate location for "
"shared object files");
#endif
" -D name : define a name for use in "
"<IfDefine name> directives");
" -d directory : specify an alternate initial "
"ServerRoot");
" -f file : specify an alternate ServerConfigFile");
" -C \"directive\" : process directive before reading "
"config files");
" -c \"directive\" : process directive after reading "
"config files");
#ifdef NETWARE
" -n name : set screen name");
#endif
#ifdef WIN32
" -n name : set service name and use its "
"ServerConfigFile");
" -k start : tell Apache to start");
" -k restart : tell running Apache to do a graceful "
"restart");
" -k stop|shutdown : tell running Apache to shutdown");
" -k install : install an Apache service");
" -k config : change startup Options of an Apache "
"service");
" -k uninstall : uninstall an Apache service");
" -w : hold open the console window on error");
#endif
" -e level : show startup errors of level "
"(see LogLevel)");
" -E file : log startup errors to file");
" -v : show version number");
" -V : show compile settings");
" -h : list available command line options "
"(this page)");
" -l : list compiled in modules");
" -L : list available configuration "
"directives");
" -t -D DUMP_VHOSTS : show parsed settings (currently only "
"vhost settings)");
" -S : a synonym for -t -D DUMP_VHOSTS");
" -t : run syntax check for config files");
}
{
char c;
int configtestonly = 0;
const char *confname = SERVER_CONFIG_FILE;
const char *def_server_root = HTTPD_ROOT;
const char *temp_error_log = NULL;
const char *optarg;
AP_MONCONTROL(0); /* turn off profiling of startup */
}
#endif
/* Maintain AP_SERVER_BASEARGS list in http_main.h to allow the MPM
* to safely pass on our args from its rewrite_args() handler.
*/
== APR_SUCCESS) {
char **new;
switch (c) {
case 'c':
break;
case 'C':
break;
case 'd':
break;
case 'D':
break;
case 'e':
}
}
}
}
}
}
}
}
else {
}
break;
case 'E':
break;
case 'X':
*new = "DEBUG";
break;
case 'f':
break;
case 'v':
case 'V':
case 'l':
case 'L':
case 't':
configtestonly = 1;
break;
case 'S':
configtestonly = 1;
*new = "DUMP_VHOSTS";
break;
case 'h':
case '?':
}
}
/* bad cmdline option? then we die */
}
/* Note that we preflight the config file once
* before reading it _again_ in the main loop.
* This allows things, log files configuration
* for example, to settle down.
*/
if (temp_error_log) {
}
NULL, "Pre-configuration failed\n");
}
if (configtestonly) {
}
}
if (signal_server) {
int exit_status;
}
}
/* If our config failed, deal with that here. */
}
0, NULL, "Unable to open logs\n");
}
NULL, "Configuration Failed\n");
}
for (;;) {
}
/* This is a hack until we finish the code so that it only reads
* the config file once and just operates on the tree already in
* memory. rbb
*/
ap_conftree = NULL;
0, NULL, "Pre-configuration failed\n");
}
}
0, NULL, "Unable to open logs\n");
}
0, NULL, "Configuration Failed\n");
}
break;
apr_pool_lock(pconf, 0);
}
apr_pool_lock(pconf, 0);
return 0; /* Termination 'ok' */
}
/* force Expat to be linked into the server executable */
#if defined(USE_EXPAT) && !defined(SHARED_CORE_BOOTSTRAP)
#include "xmlparse.h"
const XML_LChar *suck_in_expat(void);
const XML_LChar *suck_in_expat(void)
{
return XML_ErrorString(XML_ERROR_NONE);
}
#endif /* USE_EXPAT */
#ifndef SHARED_CORE_BOOTSTRAP
/*
* Force apr_password_validate() into the image so that modules like
* mod_auth can use it even if they're dynamically loaded.
*/
void suck_in_apr_password_validate(void);
void suck_in_apr_password_validate(void)
{
}
#endif
#ifdef AP_USING_AUTOCONF
/* This ugly little hack pulls any function referenced in exports.c into
* the web server. exports.c is generated during the build, and it
* has all of the APR functions specified by the apr/apr.exports and
* apr-util/aprutil.exports files.
*/
const void *suck_in_APR(void);
const void *suck_in_APR(void)
{
extern const void *ap_ugly_hack;
return ap_ugly_hack;
}
#endif