main.c revision 03a3ed87983471816561562f957390ed935d7b3b
/* Copyright 1999-2004 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#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
*/
static void show_mpm_settings(void)
{
int mpm_query_info;
if (retval == APR_SUCCESS) {
printf(" threaded: ");
if (mpm_query_info == AP_MPMQ_DYNAMIC) {
printf("yes (variable thread count)\n");
}
else if (mpm_query_info == AP_MPMQ_STATIC) {
printf("yes (fixed thread count)\n");
}
else {
printf("no\n");
}
}
if (retval == APR_SUCCESS) {
printf(" forked: ");
if (mpm_query_info == AP_MPMQ_DYNAMIC) {
printf("yes (variable process count)\n");
}
else if (mpm_query_info == AP_MPMQ_STATIC) {
printf("yes (fixed process count)\n");
}
else {
printf("no\n");
}
}
}
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 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 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 *error;
const char *optarg;
AP_MONCONTROL(0); /* turn off profiling of startup */
}
#endif
if (error) {
}
/* 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':
/* Setting -D DUMP_VHOSTS is equivalent to setting -S */
configtestonly = 1;
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) {
}
if (!server_conf) {
}
NULL, "Pre-configuration failed");
}
if (configtestonly) {
}
}
if (signal_server) {
int exit_status;
}
}
/* If our config failed, deal with that here. */
}
0, NULL, "Unable to open logs");
}
NULL, "Configuration Failed");
}
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;
if (!server_conf) {
}
0, NULL, "Pre-configuration failed");
}
}
0, NULL, "Unable to open logs");
}
0, NULL, "Configuration Failed");
}
break;
apr_pool_lock(pconf, 0);
}
apr_pool_lock(pconf, 0);
return 0; /* Termination 'ok' */
}
#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