]> granicus.if.org Git - apache/blob - server/main.c
non-static directive parsers should be AP_DECLARE_NONSTD()
[apache] / server / main.c
1 /* Licensed to the Apache Software Foundation (ASF) under one or more
2  * contributor license agreements.  See the NOTICE file distributed with
3  * this work for additional information regarding copyright ownership.
4  * The ASF licenses this file to You under the Apache License, Version 2.0
5  * (the "License"); you may not use this file except in compliance with
6  * the License.  You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "apr.h"
18 #include "apr_strings.h"
19 #include "apr_getopt.h"
20 #include "apr_general.h"
21 #include "apr_lib.h"
22 #include "apr_md5.h"
23 #include "apr_time.h"
24 #include "apr_version.h"
25 #include "apu_version.h"
26
27 #define APR_WANT_STDIO
28 #define APR_WANT_STRFUNC
29 #include "apr_want.h"
30
31 #include "ap_config.h"
32 #include "httpd.h"
33 #include "http_main.h"
34 #include "http_log.h"
35 #include "http_config.h"
36 #include "http_core.h"
37 #include "http_request.h"
38 #include "http_vhost.h"
39 #include "apr_uri.h"
40 #include "util_ebcdic.h"
41 #include "ap_mpm.h"
42 #include "ap_expr.h"
43
44 #if APR_HAVE_UNISTD_H
45 #include <unistd.h>
46 #endif
47
48 /* WARNING: Win32 binds http_main.c dynamically to the server. Please place
49  *          extern functions and global data in another appropriate module.
50  *
51  * Most significant main() global data can be found in http_config.c
52  */
53
54 static void show_mpm_settings(void)
55 {
56     int mpm_query_info;
57     apr_status_t retval;
58
59     printf("Server MPM:     %s\n", ap_show_mpm());
60
61     retval = ap_mpm_query(AP_MPMQ_IS_THREADED, &mpm_query_info);
62
63     if (retval == APR_SUCCESS) {
64         printf("  threaded:     ");
65
66         if (mpm_query_info == AP_MPMQ_DYNAMIC) {
67             printf("yes (variable thread count)\n");
68         }
69         else if (mpm_query_info == AP_MPMQ_STATIC) {
70             printf("yes (fixed thread count)\n");
71         }
72         else {
73             printf("no\n");
74         }
75     }
76
77     retval = ap_mpm_query(AP_MPMQ_IS_FORKED, &mpm_query_info);
78
79     if (retval == APR_SUCCESS) {
80         printf("    forked:     ");
81
82         if (mpm_query_info == AP_MPMQ_DYNAMIC) {
83             printf("yes (variable process count)\n");
84         }
85         else if (mpm_query_info == AP_MPMQ_STATIC) {
86             printf("yes (fixed process count)\n");
87         }
88         else {
89             printf("no\n");
90         }
91     }
92 }
93
94 static void show_compile_settings(void)
95 {
96     printf("Server version: %s\n", ap_get_server_description());
97     printf("Server built:   %s\n", ap_get_server_built());
98     printf("Server's Module Magic Number: %u:%u\n",
99            MODULE_MAGIC_NUMBER_MAJOR, MODULE_MAGIC_NUMBER_MINOR);
100     printf("Server loaded:  APR %s, APR-UTIL %s\n",
101            apr_version_string(), apu_version_string());
102     printf("Compiled using: APR %s, APR-UTIL %s\n",
103            APR_VERSION_STRING, APU_VERSION_STRING);
104     /* sizeof(foo) is long on some platforms so we might as well
105      * make it long everywhere to keep the printf format
106      * consistent
107      */
108     printf("Architecture:   %ld-bit\n", 8 * (long)sizeof(void *));
109
110     show_mpm_settings();
111
112     printf("Server compiled with....\n");
113 #ifdef BIG_SECURITY_HOLE
114     printf(" -D BIG_SECURITY_HOLE\n");
115 #endif
116
117 #ifdef SECURITY_HOLE_PASS_AUTHORIZATION
118     printf(" -D SECURITY_HOLE_PASS_AUTHORIZATION\n");
119 #endif
120
121 #ifdef OS
122     printf(" -D OS=\"" OS "\"\n");
123 #endif
124
125 #ifdef HAVE_SHMGET
126     printf(" -D HAVE_SHMGET\n");
127 #endif
128
129 #if APR_FILE_BASED_SHM
130     printf(" -D APR_FILE_BASED_SHM\n");
131 #endif
132
133 #if APR_HAS_SENDFILE
134     printf(" -D APR_HAS_SENDFILE\n");
135 #endif
136
137 #if APR_HAS_MMAP
138     printf(" -D APR_HAS_MMAP\n");
139 #endif
140
141 #ifdef NO_WRITEV
142     printf(" -D NO_WRITEV\n");
143 #endif
144
145 #ifdef NO_LINGCLOSE
146     printf(" -D NO_LINGCLOSE\n");
147 #endif
148
149 #if APR_HAVE_IPV6
150     printf(" -D APR_HAVE_IPV6 (IPv4-mapped addresses ");
151 #ifdef AP_ENABLE_V4_MAPPED
152     printf("enabled)\n");
153 #else
154     printf("disabled)\n");
155 #endif
156 #endif
157
158 #if APR_USE_FLOCK_SERIALIZE
159     printf(" -D APR_USE_FLOCK_SERIALIZE\n");
160 #endif
161
162 #if APR_USE_SYSVSEM_SERIALIZE
163     printf(" -D APR_USE_SYSVSEM_SERIALIZE\n");
164 #endif
165
166 #if APR_USE_POSIXSEM_SERIALIZE
167     printf(" -D APR_USE_POSIXSEM_SERIALIZE\n");
168 #endif
169
170 #if APR_USE_FCNTL_SERIALIZE
171     printf(" -D APR_USE_FCNTL_SERIALIZE\n");
172 #endif
173
174 #if APR_USE_PROC_PTHREAD_SERIALIZE
175     printf(" -D APR_USE_PROC_PTHREAD_SERIALIZE\n");
176 #endif
177
178 #if APR_USE_PTHREAD_SERIALIZE
179     printf(" -D APR_USE_PTHREAD_SERIALIZE\n");
180 #endif
181
182 #if APR_PROCESS_LOCK_IS_GLOBAL
183     printf(" -D APR_PROCESS_LOCK_IS_GLOBAL\n");
184 #endif
185
186 #ifdef SINGLE_LISTEN_UNSERIALIZED_ACCEPT
187     printf(" -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT\n");
188 #endif
189
190 #if APR_HAS_OTHER_CHILD
191     printf(" -D APR_HAS_OTHER_CHILD\n");
192 #endif
193
194 #ifdef AP_HAVE_RELIABLE_PIPED_LOGS
195     printf(" -D AP_HAVE_RELIABLE_PIPED_LOGS\n");
196 #endif
197
198 #ifdef BUFFERED_LOGS
199     printf(" -D BUFFERED_LOGS\n");
200 #ifdef PIPE_BUF
201     printf(" -D PIPE_BUF=%ld\n",(long)PIPE_BUF);
202 #endif
203 #endif
204
205     printf(" -D DYNAMIC_MODULE_LIMIT=%ld\n",(long)DYNAMIC_MODULE_LIMIT);
206
207 #if APR_CHARSET_EBCDIC
208     printf(" -D APR_CHARSET_EBCDIC\n");
209 #endif
210
211 #ifdef NEED_HASHBANG_EMUL
212     printf(" -D NEED_HASHBANG_EMUL\n");
213 #endif
214
215 #ifdef SHARED_CORE
216     printf(" -D SHARED_CORE\n");
217 #endif
218
219 /* This list displays the compiled in default paths: */
220 #ifdef HTTPD_ROOT
221     printf(" -D HTTPD_ROOT=\"" HTTPD_ROOT "\"\n");
222 #endif
223
224 #ifdef SUEXEC_BIN
225     printf(" -D SUEXEC_BIN=\"" SUEXEC_BIN "\"\n");
226 #endif
227
228 #if defined(SHARED_CORE) && defined(SHARED_CORE_DIR)
229     printf(" -D SHARED_CORE_DIR=\"" SHARED_CORE_DIR "\"\n");
230 #endif
231
232 #ifdef DEFAULT_PIDLOG
233     printf(" -D DEFAULT_PIDLOG=\"" DEFAULT_PIDLOG "\"\n");
234 #endif
235
236 #ifdef DEFAULT_SCOREBOARD
237     printf(" -D DEFAULT_SCOREBOARD=\"" DEFAULT_SCOREBOARD "\"\n");
238 #endif
239
240 #ifdef DEFAULT_ERRORLOG
241     printf(" -D DEFAULT_ERRORLOG=\"" DEFAULT_ERRORLOG "\"\n");
242 #endif
243
244 #ifdef AP_TYPES_CONFIG_FILE
245     printf(" -D AP_TYPES_CONFIG_FILE=\"" AP_TYPES_CONFIG_FILE "\"\n");
246 #endif
247
248 #ifdef SERVER_CONFIG_FILE
249     printf(" -D SERVER_CONFIG_FILE=\"" SERVER_CONFIG_FILE "\"\n");
250 #endif
251 }
252
253 #define TASK_SWITCH_SLEEP 10000
254
255 static void destroy_and_exit_process(process_rec *process,
256                                      int process_exit_value)
257 {
258     /*
259      * Sleep for TASK_SWITCH_SLEEP micro seconds to cause a task switch on
260      * OS layer and thus give possibly started piped loggers a chance to
261      * process their input. Otherwise it is possible that they get killed
262      * by us before they can do so. In this case maybe valueable log messages
263      * might get lost.
264      */
265     apr_sleep(TASK_SWITCH_SLEEP);
266     apr_pool_destroy(process->pool); /* and destroy all descendent pools */
267     apr_terminate();
268     exit(process_exit_value);
269 }
270
271 #define OOM_MESSAGE "[crit] Memory allocation failed, " \
272     "aborting process." APR_EOL_STR
273
274 /* APR callback invoked if allocation fails. */
275 static int abort_on_oom(int retcode)
276 {
277     write(STDERR_FILENO, OOM_MESSAGE, strlen(OOM_MESSAGE));
278     abort();
279     return retcode; /* unreachable, hopefully. */
280 }
281
282 static process_rec *init_process(int *argc, const char * const * *argv)
283 {
284     process_rec *process;
285     apr_pool_t *cntx;
286     apr_status_t stat;
287     const char *failed = "apr_app_initialize()";
288
289     stat = apr_app_initialize(argc, argv, NULL);
290     if (stat == APR_SUCCESS) {
291         failed = "apr_pool_create()";
292         stat = apr_pool_create(&cntx, NULL);
293     }
294
295     if (stat != APR_SUCCESS) {
296         /* For all intents and purposes, this is impossibly unlikely,
297          * but APR doesn't exist yet, we can't use it for reporting
298          * these earliest two failures;
299          *
300          * XXX: Note the apr_ctime() and apr_time_now() calls.  These
301          * work, today, against an uninitialized APR, but in the future
302          * (if they relied on global pools or mutexes, for example) then
303          * the datestamp logic will need to be replaced.
304          */
305         char ctimebuff[APR_CTIME_LEN];
306         apr_ctime(ctimebuff, apr_time_now());
307         fprintf(stderr, "[%s] [crit] (%d) %s: %s failed "
308                         "to initial context, exiting\n", 
309                         ctimebuff, stat, (*argv)[0], failed);
310         apr_terminate();
311         exit(1);
312     }
313
314     apr_pool_abort_set(abort_on_oom, cntx);
315     apr_pool_tag(cntx, "process");
316     ap_open_stderr_log(cntx);
317
318     /* Now we have initialized apr and our logger, no more
319      * exceptional error reporting required for the lifetime
320      * of this server process.
321      */
322
323     process = apr_palloc(cntx, sizeof(process_rec));
324     process->pool = cntx;
325
326     apr_pool_create(&process->pconf, process->pool);
327     apr_pool_tag(process->pconf, "pconf");
328     process->argc = *argc;
329     process->argv = *argv;
330     process->short_name = apr_filepath_name_get((*argv)[0]);
331     return process;
332 }
333
334 static void usage(process_rec *process)
335 {
336     const char *bin = process->argv[0];
337     char pad[MAX_STRING_LEN];
338     unsigned i;
339
340     for (i = 0; i < strlen(bin); i++) {
341         pad[i] = ' ';
342     }
343
344     pad[i] = '\0';
345
346 #ifdef SHARED_CORE
347     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL ,
348                  "Usage: %s [-R directory] [-D name] [-d directory] [-f file]",
349                  bin);
350 #else
351     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
352                  "Usage: %s [-D name] [-d directory] [-f file]", bin);
353 #endif
354
355     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
356                  "       %s [-C \"directive\"] [-c \"directive\"]", pad);
357
358 #ifdef WIN32
359     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
360                  "       %s [-w] [-k start|restart|stop|shutdown] [-n service_name]", pad);
361     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
362                  "       %s [-k install|config|uninstall] [-n service_name]",
363                  pad);
364 #else
365 /* XXX not all MPMs support signalling the server in general or graceful-stop
366  * in particular
367  */
368     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
369                  "       %s [-k start|restart|graceful|graceful-stop|stop]",
370                  pad);
371 #endif
372     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
373                  "       %s [-v] [-V] [-h] [-l] [-L] [-t] [-S]", pad);
374     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
375                  "Options:");
376
377 #ifdef SHARED_CORE
378     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
379                  "  -R directory       : specify an alternate location for "
380                  "shared object files");
381 #endif
382
383     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
384                  "  -D name            : define a name for use in "
385                  "<IfDefine name> directives");
386     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
387                  "  -d directory       : specify an alternate initial "
388                  "ServerRoot");
389     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
390                  "  -f file            : specify an alternate ServerConfigFile");
391     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
392                  "  -C \"directive\"     : process directive before reading "
393                  "config files");
394     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
395                  "  -c \"directive\"     : process directive after reading "
396                  "config files");
397
398 #ifdef NETWARE
399     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
400                  "  -n name            : set screen name");
401 #endif
402 #ifdef WIN32
403     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
404                  "  -n name            : set service name and use its "
405                  "ServerConfigFile and ServerRoot");
406     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
407                  "  -k start           : tell Apache to start");
408     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
409                  "  -k restart         : tell running Apache to do a graceful "
410                  "restart");
411     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
412                  "  -k stop|shutdown   : tell running Apache to shutdown");
413     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
414                  "  -k install         : install an Apache service");
415     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
416                  "  -k config          : change startup Options of an Apache "
417                  "service");
418     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
419                  "  -k uninstall       : uninstall an Apache service");
420     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
421                  "  -w                 : hold open the console window on error");
422 #endif
423
424     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
425                  "  -e level           : show startup errors of level "
426                  "(see LogLevel)");
427     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
428                  "  -E file            : log startup errors to file");
429     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
430                  "  -v                 : show version number");
431     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
432                  "  -V                 : show compile settings");
433     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
434                  "  -h                 : list available command line options "
435                  "(this page)");
436     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
437                  "  -l                 : list compiled in modules");
438     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
439                  "  -L                 : list available configuration "
440                  "directives");
441     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
442                  "  -t -D DUMP_VHOSTS  : show parsed settings (currently only "
443                  "vhost settings)");
444     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
445                  "  -S                 : a synonym for -t -D DUMP_VHOSTS");
446     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
447                  "  -t -D DUMP_MODULES : show all loaded modules ");
448     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
449                  "  -M                 : a synonym for -t -D DUMP_MODULES");
450     ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
451                  "  -t                 : run syntax check for config files");
452
453     destroy_and_exit_process(process, 1);
454 }
455
456 int main(int argc, const char * const argv[])
457 {
458     char c;
459     int configtestonly = 0, showcompile = 0;
460     const char *confname = SERVER_CONFIG_FILE;
461     const char *def_server_root = HTTPD_ROOT;
462     const char *temp_error_log = NULL;
463     const char *error;
464     process_rec *process;
465     apr_pool_t *pconf;
466     apr_pool_t *plog; /* Pool of log streams, reset _after_ each read of conf */
467     apr_pool_t *ptemp; /* Pool for temporary config stuff, reset often */
468     apr_pool_t *pcommands; /* Pool for -D, -C and -c switches */
469     apr_getopt_t *opt;
470     apr_status_t rv;
471     module **mod;
472     const char *optarg;
473     APR_OPTIONAL_FN_TYPE(ap_signal_server) *signal_server;
474
475     AP_MONCONTROL(0); /* turn off profiling of startup */
476
477     process = init_process(&argc, &argv);
478     ap_pglobal = process->pool;
479     pconf = process->pconf;
480     ap_server_argv0 = process->short_name;
481
482     /* Set up the OOM callback in the global pool, so all pools should
483      * by default inherit it. */
484     apr_pool_abort_set(abort_on_oom, apr_pool_parent_get(process->pool));
485
486 #if APR_CHARSET_EBCDIC
487     if (ap_init_ebcdic(ap_pglobal) != APR_SUCCESS) {
488         destroy_and_exit_process(process, 1);
489     }
490 #endif
491     if (ap_expr_init(ap_pglobal) != APR_SUCCESS) {
492         destroy_and_exit_process(process, 1);
493     }
494
495     apr_pool_create(&pcommands, ap_pglobal);
496     apr_pool_tag(pcommands, "pcommands");
497     ap_server_pre_read_config  = apr_array_make(pcommands, 1, sizeof(char *));
498     ap_server_post_read_config = apr_array_make(pcommands, 1, sizeof(char *));
499     ap_server_config_defines   = apr_array_make(pcommands, 1, sizeof(char *));
500
501     error = ap_setup_prelinked_modules(process);
502     if (error) {
503         ap_log_error(APLOG_MARK, APLOG_STARTUP|APLOG_EMERG, 0, NULL, "%s: %s",
504                      ap_server_argv0, error);
505         destroy_and_exit_process(process, 1);
506     }
507
508     ap_run_rewrite_args(process);
509
510     /* Maintain AP_SERVER_BASEARGS list in http_main.h to allow the MPM
511      * to safely pass on our args from its rewrite_args() handler.
512      */
513     apr_getopt_init(&opt, pcommands, process->argc, process->argv);
514
515     while ((rv = apr_getopt(opt, AP_SERVER_BASEARGS, &c, &optarg))
516             == APR_SUCCESS) {
517         char **new;
518
519         switch (c) {
520         case 'c':
521             new = (char **)apr_array_push(ap_server_post_read_config);
522             *new = apr_pstrdup(pcommands, optarg);
523             break;
524
525         case 'C':
526             new = (char **)apr_array_push(ap_server_pre_read_config);
527             *new = apr_pstrdup(pcommands, optarg);
528             break;
529
530         case 'd':
531             def_server_root = optarg;
532             break;
533
534         case 'D':
535             new = (char **)apr_array_push(ap_server_config_defines);
536             *new = apr_pstrdup(pcommands, optarg);
537             /* Setting -D DUMP_VHOSTS is equivalent to setting -S */
538             if (strcmp(optarg, "DUMP_VHOSTS") == 0)
539                 configtestonly = 1;
540             /* Setting -D DUMP_MODULES is equivalent to setting -M */
541             if (strcmp(optarg, "DUMP_MODULES") == 0)
542                 configtestonly = 1;
543             break;
544
545         case 'e':
546             if (strcasecmp(optarg, "emerg") == 0) {
547                 ap_default_loglevel = APLOG_EMERG;
548             }
549             else if (strcasecmp(optarg, "alert") == 0) {
550                 ap_default_loglevel = APLOG_ALERT;
551             }
552             else if (strcasecmp(optarg, "crit") == 0) {
553                 ap_default_loglevel = APLOG_CRIT;
554             }
555             else if (strncasecmp(optarg, "err", 3) == 0) {
556                 ap_default_loglevel = APLOG_ERR;
557             }
558             else if (strncasecmp(optarg, "warn", 4) == 0) {
559                 ap_default_loglevel = APLOG_WARNING;
560             }
561             else if (strcasecmp(optarg, "notice") == 0) {
562                 ap_default_loglevel = APLOG_NOTICE;
563             }
564             else if (strcasecmp(optarg, "info") == 0) {
565                 ap_default_loglevel = APLOG_INFO;
566             }
567             else if (strcasecmp(optarg, "debug") == 0) {
568                 ap_default_loglevel = APLOG_DEBUG;
569             }
570             else {
571                 usage(process);
572             }
573             break;
574
575         case 'E':
576             temp_error_log = apr_pstrdup(process->pool, optarg);
577             break;
578
579         case 'X':
580             new = (char **)apr_array_push(ap_server_config_defines);
581             *new = "DEBUG";
582             break;
583
584         case 'f':
585             confname = optarg;
586             break;
587
588         case 'v':
589             printf("Server version: %s\n", ap_get_server_description());
590             printf("Server built:   %s\n", ap_get_server_built());
591             destroy_and_exit_process(process, 0);
592
593         case 'V':
594             if (strcmp(ap_show_mpm(), "")) { /* MPM built-in? */
595                 show_compile_settings();
596                 destroy_and_exit_process(process, 0);
597             }
598             else {
599                 showcompile = 1;
600             }
601             break;
602
603         case 'l':
604             ap_show_modules();
605             destroy_and_exit_process(process, 0);
606
607         case 'L':
608             ap_show_directives();
609             destroy_and_exit_process(process, 0);
610
611         case 't':
612             configtestonly = 1;
613             break;
614
615         case 'S':
616             configtestonly = 1;
617             new = (char **)apr_array_push(ap_server_config_defines);
618             *new = "DUMP_VHOSTS";
619             break;
620
621         case 'M':
622             configtestonly = 1;
623             new = (char **)apr_array_push(ap_server_config_defines);
624             *new = "DUMP_MODULES";
625             break;
626
627         case 'h':
628         case '?':
629             usage(process);
630         }
631     }
632
633     /* bad cmdline option?  then we die */
634     if (rv != APR_EOF || opt->ind < opt->argc) {
635         usage(process);
636     }
637
638     apr_pool_create(&plog, ap_pglobal);
639     apr_pool_tag(plog, "plog");
640     apr_pool_create(&ptemp, pconf);
641     apr_pool_tag(ptemp, "ptemp");
642
643     /* Note that we preflight the config file once
644      * before reading it _again_ in the main loop.
645      * This allows things, log files configuration
646      * for example, to settle down.
647      */
648
649     ap_server_root = def_server_root;
650     if (temp_error_log) {
651         ap_replace_stderr_log(process->pool, temp_error_log);
652     }
653     ap_server_conf = ap_read_config(process, ptemp, confname, &ap_conftree);
654     if (!ap_server_conf) {
655         destroy_and_exit_process(process, 1);
656     }
657
658     if (ap_run_pre_config(pconf, plog, ptemp) != OK) {
659         ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR, 0,
660                      NULL, "Pre-configuration failed");
661         destroy_and_exit_process(process, 1);
662     }
663
664     rv = ap_process_config_tree(ap_server_conf, ap_conftree,
665                                 process->pconf, ptemp);
666     if (rv == OK) {
667         ap_fixup_virtual_hosts(pconf, ap_server_conf);
668         ap_fini_vhost_config(pconf, ap_server_conf);
669         apr_hook_sort_all();
670
671         if (ap_run_check_config(pconf, plog, ptemp, ap_server_conf) != OK) {
672             ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR, 0,
673                          NULL, "Configuration check failed");
674             destroy_and_exit_process(process, 1);
675         }
676
677         if (configtestonly) {
678             ap_run_test_config(pconf, ap_server_conf);
679             ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL, "Syntax OK");
680             destroy_and_exit_process(process, 0);
681         }
682         else if (showcompile) { /* deferred due to dynamically loaded MPM */
683             show_compile_settings();
684             destroy_and_exit_process(process, 0);
685         }
686     }
687
688     signal_server = APR_RETRIEVE_OPTIONAL_FN(ap_signal_server);
689     if (signal_server) {
690         int exit_status;
691
692         if (signal_server(&exit_status, pconf) != 0) {
693             destroy_and_exit_process(process, exit_status);
694         }
695     }
696
697     /* If our config failed, deal with that here. */
698     if (rv != OK) {
699         destroy_and_exit_process(process, 1);
700     }
701
702     apr_pool_clear(plog);
703
704     if ( ap_run_open_logs(pconf, plog, ptemp, ap_server_conf) != OK) {
705         ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR,
706                      0, NULL, "Unable to open logs");
707         destroy_and_exit_process(process, 1);
708     }
709
710     if ( ap_run_post_config(pconf, plog, ptemp, ap_server_conf) != OK) {
711         ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR, 0,
712                      NULL, "Configuration Failed");
713         destroy_and_exit_process(process, 1);
714     }
715
716     apr_pool_destroy(ptemp);
717
718     for (;;) {
719         apr_hook_deregister_all();
720         apr_pool_clear(pconf);
721         ap_clear_auth_internal();
722
723         for (mod = ap_prelinked_modules; *mod != NULL; mod++) {
724             ap_register_hooks(*mod, pconf);
725         }
726
727         /* This is a hack until we finish the code so that it only reads
728          * the config file once and just operates on the tree already in
729          * memory.  rbb
730          */
731         ap_conftree = NULL;
732         apr_pool_create(&ptemp, pconf);
733         apr_pool_tag(ptemp, "ptemp");
734         ap_server_root = def_server_root;
735         ap_server_conf = ap_read_config(process, ptemp, confname, &ap_conftree);
736         if (!ap_server_conf) {
737             destroy_and_exit_process(process, 1);
738         }
739
740         if (ap_run_pre_config(pconf, plog, ptemp) != OK) {
741             ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR,
742                          0, NULL, "Pre-configuration failed");
743             destroy_and_exit_process(process, 1);
744         }
745
746         if (ap_process_config_tree(ap_server_conf, ap_conftree, process->pconf,
747                                    ptemp) != OK) {
748             destroy_and_exit_process(process, 1);
749         }
750         ap_fixup_virtual_hosts(pconf, ap_server_conf);
751         ap_fini_vhost_config(pconf, ap_server_conf);
752         apr_hook_sort_all();
753
754         if (ap_run_check_config(pconf, plog, ptemp, ap_server_conf) != OK) {
755             ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR, 0,
756                          NULL, "Configuration check failed");
757             destroy_and_exit_process(process, 1);
758         }
759
760         apr_pool_clear(plog);
761         if (ap_run_open_logs(pconf, plog, ptemp, ap_server_conf) != OK) {
762             ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR,
763                          0, NULL, "Unable to open logs");
764             destroy_and_exit_process(process, 1);
765         }
766
767         if (ap_run_post_config(pconf, plog, ptemp, ap_server_conf) != OK) {
768             ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR,
769                          0, NULL, "Configuration Failed");
770             destroy_and_exit_process(process, 1);
771         }
772
773         apr_pool_destroy(ptemp);
774         apr_pool_lock(pconf, 1);
775
776         ap_run_optional_fn_retrieve();
777
778         if (ap_run_mpm(pconf, plog, ap_server_conf) != OK)
779             break;
780
781         apr_pool_lock(pconf, 0);
782     }
783
784     apr_pool_lock(pconf, 0);
785     destroy_and_exit_process(process, 0);
786
787     return 0; /* Termination 'ok' */
788 }
789
790 #ifdef AP_USING_AUTOCONF
791 /* This ugly little hack pulls any function referenced in exports.c into
792  * the web server.  exports.c is generated during the build, and it
793  * has all of the APR functions specified by the apr/apr.exports and
794  * apr-util/aprutil.exports files.
795  */
796 const void *ap_suck_in_APR(void);
797 const void *ap_suck_in_APR(void)
798 {
799     extern const void *ap_ugly_hack;
800
801     return ap_ugly_hack;
802 }
803 #endif