]> granicus.if.org Git - apache/blob - server/config.c
31def823c3eed71f987fdd2af4e522cd084f50c4
[apache] / server / config.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 /*
18  * http_config.c: once was auxillary functions for reading httpd's config
19  * file and converting filenames into a namespace
20  *
21  * Rob McCool
22  *
23  * Wall-to-wall rewrite for Apache... commands which are part of the
24  * server core can now be found next door in "http_core.c".  Now contains
25  * general command loop, and functions which do bookkeeping for the new
26  * Apache config stuff (modules and configuration vectors).
27  *
28  * rst
29  *
30  */
31
32 #include "apr.h"
33 #include "apr_strings.h"
34 #include "apr_portable.h"
35 #include "apr_file_io.h"
36 #include "apr_fnmatch.h"
37
38 #define APR_WANT_STDIO
39 #define APR_WANT_STRFUNC
40 #include "apr_want.h"
41
42 #include "ap_config.h"
43 #include "httpd.h"
44 #include "http_config.h"
45 #include "http_protocol.h"
46 #include "http_core.h"
47 #include "http_log.h"      /* for errors in parse_htaccess */
48 #include "http_request.h"  /* for default_handler (see invoke_handler) */
49 #include "http_main.h"
50 #include "http_vhost.h"
51 #include "util_cfgtree.h"
52 #include "mpm_common.h"
53
54 #define APLOG_UNSET   (APLOG_NO_MODULE - 1)
55 APLOG_USE_MODULE(core);
56
57 AP_DECLARE_DATA const char *ap_server_argv0 = NULL;
58 AP_DECLARE_DATA const char *ap_server_root = NULL;
59 AP_DECLARE_DATA server_rec *ap_server_conf = NULL;
60 AP_DECLARE_DATA apr_pool_t *ap_pglobal = NULL;
61
62 AP_DECLARE_DATA apr_array_header_t *ap_server_pre_read_config = NULL;
63 AP_DECLARE_DATA apr_array_header_t *ap_server_post_read_config = NULL;
64 AP_DECLARE_DATA apr_array_header_t *ap_server_config_defines = NULL;
65
66 AP_DECLARE_DATA ap_directive_t *ap_conftree = NULL;
67
68 APR_HOOK_STRUCT(
69            APR_HOOK_LINK(header_parser)
70            APR_HOOK_LINK(pre_config)
71            APR_HOOK_LINK(check_config)
72            APR_HOOK_LINK(post_config)
73            APR_HOOK_LINK(open_logs)
74            APR_HOOK_LINK(child_init)
75            APR_HOOK_LINK(handler)
76            APR_HOOK_LINK(quick_handler)
77            APR_HOOK_LINK(optional_fn_retrieve)
78            APR_HOOK_LINK(test_config)
79 )
80
81 AP_IMPLEMENT_HOOK_RUN_ALL(int, header_parser,
82                           (request_rec *r), (r), OK, DECLINED)
83
84 AP_IMPLEMENT_HOOK_RUN_ALL(int, pre_config,
85                           (apr_pool_t *pconf, apr_pool_t *plog,
86                            apr_pool_t *ptemp),
87                           (pconf, plog, ptemp), OK, DECLINED)
88
89 AP_IMPLEMENT_HOOK_RUN_ALL(int, check_config,
90                           (apr_pool_t *pconf, apr_pool_t *plog,
91                            apr_pool_t *ptemp, server_rec *s),
92                           (pconf, plog, ptemp, s), OK, DECLINED)
93
94 AP_IMPLEMENT_HOOK_VOID(test_config,
95                        (apr_pool_t *pconf, server_rec *s),
96                        (pconf, s))
97
98 AP_IMPLEMENT_HOOK_RUN_ALL(int, post_config,
99                           (apr_pool_t *pconf, apr_pool_t *plog,
100                            apr_pool_t *ptemp, server_rec *s),
101                           (pconf, plog, ptemp, s), OK, DECLINED)
102
103 /* During the course of debugging I expanded this macro out, so
104  * rather than remove all the useful information there is in the
105  * following lines, I'm going to leave it here in case anyone
106  * else finds it useful.
107  *
108  * Ben has looked at it and thinks it correct :)
109  *
110 AP_DECLARE(int) ap_hook_post_config(ap_HOOK_post_config_t *pf,
111                                     const char * const *aszPre,
112                                     const char * const *aszSucc,
113                                     int nOrder)
114 {
115     ap_LINK_post_config_t *pHook;
116
117     if (!_hooks.link_post_config) {
118         _hooks.link_post_config = apr_array_make(apr_hook_global_pool, 1,
119                                                  sizeof(ap_LINK_post_config_t));
120         apr_hook_sort_register("post_config", &_hooks.link_post_config);
121     }
122
123     pHook = apr_array_push(_hooks.link_post_config);
124     pHook->pFunc = pf;
125     pHook->aszPredecessors = aszPre;
126     pHook->aszSuccessors = aszSucc;
127     pHook->nOrder = nOrder;
128     pHook->szName = apr_hook_debug_current;
129
130     if (apr_hook_debug_enabled)
131         apr_hook_debug_show("post_config", aszPre, aszSucc);
132 }
133
134 AP_DECLARE(apr_array_header_t *) ap_hook_get_post_config(void) {
135     return _hooks.link_post_config;
136 }
137
138 AP_DECLARE(int) ap_run_post_config(apr_pool_t *pconf,
139                                    apr_pool_t *plog,
140                                    apr_pool_t *ptemp,
141                                    server_rec *s)
142 {
143     ap_LINK_post_config_t *pHook;
144     int n;
145
146     if(!_hooks.link_post_config)
147         return;
148
149     pHook = (ap_LINK_post_config_t *)_hooks.link_post_config->elts;
150     for (n = 0; n < _hooks.link_post_config->nelts; ++n)
151         pHook[n].pFunc (pconf, plog, ptemp, s);
152 }
153  */
154
155 AP_IMPLEMENT_HOOK_RUN_ALL(int, open_logs,
156                           (apr_pool_t *pconf, apr_pool_t *plog,
157                            apr_pool_t *ptemp, server_rec *s),
158                           (pconf, plog, ptemp, s), OK, DECLINED)
159
160 AP_IMPLEMENT_HOOK_VOID(child_init,
161                        (apr_pool_t *pchild, server_rec *s),
162                        (pchild, s))
163
164 AP_IMPLEMENT_HOOK_RUN_FIRST(int, handler, (request_rec *r),
165                             (r), DECLINED)
166
167 AP_IMPLEMENT_HOOK_RUN_FIRST(int, quick_handler, (request_rec *r, int lookup),
168                             (r, lookup), DECLINED)
169
170 AP_IMPLEMENT_HOOK_VOID(optional_fn_retrieve, (void), ())
171
172 /****************************************************************
173  *
174  * We begin with the functions which deal with the linked list
175  * of modules which control just about all of the server operation.
176  */
177
178 /* total_modules is the number of modules that have been linked
179  * into the server.
180  */
181 static int total_modules = 0;
182
183 /* dynamic_modules is the number of modules that have been added
184  * after the pre-loaded ones have been set up. It shouldn't be larger
185  * than DYNAMIC_MODULE_LIMIT.
186  */
187 static int dynamic_modules = 0;
188
189 /* The maximum possible value for total_modules, i.e. number of static
190  * modules plus DYNAMIC_MODULE_LIMIT.
191  */
192 static int max_modules = 0;
193
194 /* The number of elements we need to alloc for config vectors. Before loading
195  * of dynamic modules, we must be liberal and set this to max_modules. After
196  * loading of dynamic modules, we can trim it down to total_modules. On
197  * restart, reset to max_modules.
198  */
199 static int conf_vector_length = 0;
200
201 AP_DECLARE_DATA module *ap_top_module = NULL;
202 AP_DECLARE_DATA module **ap_loaded_modules=NULL;
203
204 static apr_hash_t *ap_config_hash = NULL;
205
206 /* a list of the module symbol names with the trailing "_module"removed */
207 static char **ap_module_short_names = NULL;
208
209 typedef int (*handler_func)(request_rec *);
210 typedef void *(*dir_maker_func)(apr_pool_t *, char *);
211 typedef void *(*merger_func)(apr_pool_t *, void *, void *);
212
213 /* A list of the merge_dir_config functions of all loaded modules, sorted
214  * by module_index.
215  * Using this list in ap_merge_per_dir_configs() is faster than following
216  * the module->next linked list because of better memory locality (resulting
217  * in better cache usage).
218  */
219 static merger_func *merger_func_cache;
220
221 /* maximum nesting level for config directories */
222 #ifndef AP_MAX_INCLUDE_DIR_DEPTH
223 #define AP_MAX_INCLUDE_DIR_DEPTH (128)
224 #endif
225
226 /* Dealing with config vectors.  These are associated with per-directory,
227  * per-server, and per-request configuration, and have a void* pointer for
228  * each modules.  The nature of the structure pointed to is private to the
229  * module in question... the core doesn't (and can't) know.  However, there
230  * are defined interfaces which allow it to create instances of its private
231  * per-directory and per-server structures, and to merge the per-directory
232  * structures of a directory and its subdirectory (producing a new one in
233  * which the defaults applying to the base directory have been properly
234  * overridden).
235  */
236
237 static ap_conf_vector_t *create_empty_config(apr_pool_t *p)
238 {
239     void *conf_vector = apr_pcalloc(p, sizeof(void *) * conf_vector_length);
240     return conf_vector;
241 }
242
243 static ap_conf_vector_t *create_default_per_dir_config(apr_pool_t *p)
244 {
245     void **conf_vector = apr_pcalloc(p, sizeof(void *) * conf_vector_length);
246     module *modp;
247
248     for (modp = ap_top_module; modp; modp = modp->next) {
249         dir_maker_func df = modp->create_dir_config;
250
251         if (df)
252             conf_vector[modp->module_index] = (*df)(p, NULL);
253     }
254
255     return (ap_conf_vector_t *)conf_vector;
256 }
257
258 AP_CORE_DECLARE(ap_conf_vector_t *) ap_merge_per_dir_configs(apr_pool_t *p,
259                                            ap_conf_vector_t *base,
260                                            ap_conf_vector_t *new_conf)
261 {
262     void **conf_vector = apr_palloc(p, sizeof(void *) * conf_vector_length);
263     void **base_vector = (void **)base;
264     void **new_vector = (void **)new_conf;
265     int i;
266
267     for (i = 0; i < total_modules; i++) {
268         if (!new_vector[i]) {
269             conf_vector[i] = base_vector[i];
270         }
271         else {
272             const merger_func df = merger_func_cache[i];
273             if (df && base_vector[i]) {
274                 conf_vector[i] = (*df)(p, base_vector[i], new_vector[i]);
275             }
276             else
277                 conf_vector[i] = new_vector[i];
278         }
279     }
280
281     return (ap_conf_vector_t *)conf_vector;
282 }
283
284 static ap_conf_vector_t *create_server_config(apr_pool_t *p, server_rec *s)
285 {
286     void **conf_vector = apr_pcalloc(p, sizeof(void *) * conf_vector_length);
287     module *modp;
288
289     for (modp = ap_top_module; modp; modp = modp->next) {
290         if (modp->create_server_config)
291             conf_vector[modp->module_index] = (*modp->create_server_config)(p, s);
292     }
293
294     return (ap_conf_vector_t *)conf_vector;
295 }
296
297 static void merge_server_configs(apr_pool_t *p, ap_conf_vector_t *base,
298                                  ap_conf_vector_t *virt)
299 {
300     /* Can reuse the 'virt' vector for the spine of it, since we don't
301      * have to deal with the moral equivalent of .htaccess files here...
302      */
303
304     void **base_vector = (void **)base;
305     void **virt_vector = (void **)virt;
306     module *modp;
307
308     for (modp = ap_top_module; modp; modp = modp->next) {
309         merger_func df = modp->merge_server_config;
310         int i = modp->module_index;
311
312         if (!virt_vector[i])
313             virt_vector[i] = base_vector[i];
314         else if (df)
315             virt_vector[i] = (*df)(p, base_vector[i], virt_vector[i]);
316     }
317 }
318
319 AP_CORE_DECLARE(ap_conf_vector_t *) ap_create_request_config(apr_pool_t *p)
320 {
321     return create_empty_config(p);
322 }
323
324 AP_CORE_DECLARE(ap_conf_vector_t *) ap_create_conn_config(apr_pool_t *p)
325 {
326     return create_empty_config(p);
327 }
328
329 AP_CORE_DECLARE(ap_conf_vector_t *) ap_create_per_dir_config(apr_pool_t *p)
330 {
331     return create_empty_config(p);
332 }
333
334 /* Invoke the filter_init_func for all filters with FILTERS where f->r
335  * matches R.  Restricting to a matching R avoids re-running init
336  * functions for filters configured for r->main where r is a
337  * subrequest.  */
338 static int invoke_filter_init(request_rec *r, ap_filter_t *filters)
339 {
340     while (filters) {
341         if (filters->frec->filter_init_func && filters->r == r) {
342             int result = filters->frec->filter_init_func(filters);
343             if (result != OK) {
344                 return result;
345             }
346         }
347         filters = filters->next;
348     }
349     return OK;
350 }
351
352 /*
353  * TODO: Move this to an appropriate include file and possibly prefix it
354  * with AP_.
355  */
356 #define DEFAULT_HANDLER_NAME ""
357
358 AP_CORE_DECLARE(int) ap_invoke_handler(request_rec *r)
359 {
360     const char *handler;
361     const char *p;
362     int result;
363     const char *old_handler = r->handler;
364     const char *ignore;
365
366     /*
367      * The new insert_filter stage makes the most sense here.  We only use
368      * it when we are going to run the request, so we must insert filters
369      * if any are available.  Since the goal of this phase is to allow all
370      * modules to insert a filter if they want to, this filter returns
371      * void.  I just can't see any way that this filter can reasonably
372      * fail, either your modules inserts something or it doesn't.  rbb
373      */
374     ap_run_insert_filter(r);
375
376     /* Before continuing, allow each filter that is in the two chains to
377      * run their init function to let them do any magic before we could
378      * start generating data.
379      */
380     result = invoke_filter_init(r, r->input_filters);
381     if (result != OK) {
382         return result;
383     }
384     result = invoke_filter_init(r, r->output_filters);
385     if (result != OK) {
386         return result;
387     }
388
389     if (!r->handler) {
390         if (r->content_type) {
391             handler = r->content_type;
392             if ((p=ap_strchr_c(handler, ';')) != NULL) {
393                 char *new_handler = (char *)apr_pmemdup(r->pool, handler,
394                                                         p - handler + 1);
395                 char *p2 = new_handler + (p - handler);
396                 handler = new_handler;
397
398                 /* exclude media type arguments */
399                 while (p2 > handler && p2[-1] == ' ')
400                     --p2; /* strip trailing spaces */
401
402                 *p2='\0';
403             }
404         }
405         else {
406             handler = DEFAULT_HANDLER_NAME;
407         }
408
409         r->handler = handler;
410     }
411
412     result = ap_run_handler(r);
413
414     r->handler = old_handler;
415
416     if (result == DECLINED && r->handler && r->filename) {
417         ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r,
418             "handler \"%s\" not found for: %s", r->handler, r->filename);
419     }
420     if ((result != OK) && (result != DONE) && (result != DECLINED) && (result != SUSPENDED)
421         && (result != AP_FILTER_ERROR) /* ap_die() knows about this specifically */
422         && !ap_is_HTTP_VALID_RESPONSE(result)) {
423         /* If a module is deliberately returning something else
424          * (request_rec in non-HTTP or proprietary extension?)
425          * let it set a note to allow it explicitly.
426          * Otherwise, a return code that is neither reserved nor HTTP
427          * is a bug, as in PR#31759.
428          */
429         ignore = apr_table_get(r->notes, "HTTP_IGNORE_RANGE");
430         if (!ignore) {
431             ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
432                           "Handler for %s returned invalid result code %d",
433                           r->handler, result);
434             result = HTTP_INTERNAL_SERVER_ERROR;
435         }
436     }
437
438     return result == DECLINED ? HTTP_INTERNAL_SERVER_ERROR : result;
439 }
440
441 AP_DECLARE(int) ap_method_is_limited(cmd_parms *cmd, const char *method)
442 {
443     int methnum;
444
445     methnum = ap_method_number_of(method);
446
447     /*
448      * A method number either hardcoded into apache or
449      * added by a module and registered.
450      */
451     if (methnum != M_INVALID) {
452         return (cmd->limited & (AP_METHOD_BIT << methnum)) ? 1 : 0;
453     }
454
455     return 0; /* not found */
456 }
457
458 AP_DECLARE(void) ap_register_hooks(module *m, apr_pool_t *p)
459 {
460     if (m->register_hooks) {
461         if (getenv("SHOW_HOOKS")) {
462             printf("Registering hooks for %s\n", m->name);
463             apr_hook_debug_enabled = 1;
464         }
465
466         apr_hook_debug_current = m->name;
467         m->register_hooks(p);
468     }
469 }
470
471 static void ap_add_module_commands(module *m, apr_pool_t *p);
472
473 typedef struct ap_mod_list_struct ap_mod_list;
474 struct ap_mod_list_struct {
475     struct ap_mod_list_struct *next;
476     module *m;
477     const command_rec *cmd;
478 };
479
480 static void rebuild_conf_hash(apr_pool_t *p, int add_prelinked)
481 {
482     module **m;
483
484     ap_config_hash = apr_hash_make(p);
485
486     apr_pool_cleanup_register(p, &ap_config_hash, ap_pool_cleanup_set_null,
487                               apr_pool_cleanup_null);
488     if (add_prelinked) {
489         for (m = ap_prelinked_modules; *m != NULL; m++) {
490             ap_add_module_commands(*m, p);
491         }
492     }
493 }
494
495 static void ap_add_module_commands(module *m, apr_pool_t *p)
496 {
497     apr_pool_t *tpool;
498     ap_mod_list *mln;
499     const command_rec *cmd;
500     char *dir;
501
502     cmd = m->cmds;
503
504     if (ap_config_hash == NULL) {
505         rebuild_conf_hash(p, 0);
506     }
507
508     tpool = apr_hash_pool_get(ap_config_hash);
509
510     while (cmd && cmd->name) {
511         mln = apr_palloc(tpool, sizeof(ap_mod_list));
512         mln->cmd = cmd;
513         mln->m = m;
514         dir = apr_pstrdup(tpool, cmd->name);
515
516         ap_str_tolower(dir);
517
518         mln->next = apr_hash_get(ap_config_hash, dir, APR_HASH_KEY_STRING);
519         apr_hash_set(ap_config_hash, dir, APR_HASH_KEY_STRING, mln);
520         ++cmd;
521     }
522 }
523
524
525 /* One-time setup for precompiled modules --- NOT to be done on restart */
526
527 AP_DECLARE(const char *) ap_add_module(module *m, apr_pool_t *p,
528                                        const char *sym_name)
529 {
530     ap_module_symbol_t *sym = ap_prelinked_module_symbols;
531
532     /* This could be called from a LoadModule httpd.conf command,
533      * after the file has been linked and the module structure within it
534      * teased out...
535      */
536
537     if (m->version != MODULE_MAGIC_NUMBER_MAJOR) {
538         return apr_psprintf(p, "Module \"%s\" is not compatible with this "
539                             "version of Apache (found %d, need %d). Please "
540                             "contact the vendor for the correct version.",
541                             m->name, m->version, MODULE_MAGIC_NUMBER_MAJOR);
542     }
543
544     if (m->next == NULL) {
545         m->next = ap_top_module;
546         ap_top_module = m;
547     }
548
549     if (m->module_index == -1) {
550         m->module_index = total_modules++;
551         dynamic_modules++;
552
553         if (dynamic_modules > DYNAMIC_MODULE_LIMIT) {
554             return apr_psprintf(p, "Module \"%s\" could not be loaded, "
555                                 "because the dynamic module limit was "
556                                 "reached. Please increase "
557                                 "DYNAMIC_MODULE_LIMIT and recompile.", m->name);
558         }
559
560     }
561     else if (!sym_name) {
562         while (sym->modp != NULL) {
563             if (sym->modp == m) {
564                 sym_name = sym->name;
565                 break;
566             }
567             sym++;
568         }
569     }
570
571     if (sym_name) {
572         int len = strlen(sym_name);
573         int slen = strlen("_module");
574         if (len > slen && !strcmp(sym_name + len - slen, "_module")) {
575             len -= slen;
576         }
577
578         ap_module_short_names[m->module_index] = strdup(sym_name);
579         ap_module_short_names[m->module_index][len] = '\0';
580         merger_func_cache[m->module_index] = m->merge_dir_config;
581     }
582
583
584     /* Some C compilers put a complete path into __FILE__, but we want
585      * only the filename (e.g. mod_includes.c). So check for path
586      * components (Unix and DOS), and remove them.
587      */
588
589     if (ap_strrchr_c(m->name, '/'))
590         m->name = 1 + ap_strrchr_c(m->name, '/');
591
592     if (ap_strrchr_c(m->name, '\\'))
593         m->name = 1 + ap_strrchr_c(m->name, '\\');
594
595 #ifdef _OSD_POSIX
596     /* __FILE__ =
597      * "*POSIX(/home/martin/apache/src/modules/standard/mod_info.c)"
598      */
599
600     /* We cannot fix the string in-place, because it's const */
601     if (m->name[strlen(m->name)-1] == ')') {
602         char *tmp = strdup(m->name); /* FIXME: memory leak, albeit a small one */
603         tmp[strlen(tmp)-1] = '\0';
604         m->name = tmp;
605     }
606 #endif /*_OSD_POSIX*/
607
608     ap_add_module_commands(m, p);
609     /*  FIXME: is this the right place to call this?
610      *  It doesn't appear to be
611      */
612     ap_register_hooks(m, p);
613
614     return NULL;
615 }
616
617 /*
618  * remove_module undoes what add_module did. There are some caveats:
619  * when the module is removed, its slot is lost so all the current
620  * per-dir and per-server configurations are invalid. So we should
621  * only ever call this function when you are invalidating almost
622  * all our current data. I.e. when doing a restart.
623  */
624
625 AP_DECLARE(void) ap_remove_module(module *m)
626 {
627     module *modp;
628
629     modp = ap_top_module;
630     if (modp == m) {
631         /* We are the top module, special case */
632         ap_top_module = modp->next;
633         m->next = NULL;
634     }
635     else {
636         /* Not the top module, find use. When found modp will
637          * point to the module _before_ us in the list
638          */
639
640         while (modp && modp->next != m) {
641             modp = modp->next;
642         }
643
644         if (!modp) {
645             /* Uh-oh, this module doesn't exist */
646             ap_log_error(APLOG_MARK, APLOG_ERR, 0, NULL,
647                          "Cannot remove module %s: not found in module list",
648                          m->name);
649             return;
650         }
651
652         /* Eliminate us from the module list */
653         modp->next = modp->next->next;
654     }
655
656     free(ap_module_short_names[m->module_index]);
657     ap_module_short_names[m->module_index] = NULL;
658     merger_func_cache[m->module_index] = NULL;
659
660     m->module_index = -1; /* simulate being unloaded, should
661                            * be unnecessary */
662     dynamic_modules--;
663     total_modules--;
664 }
665
666 AP_DECLARE(const char *) ap_add_loaded_module(module *mod, apr_pool_t *p,
667                                               const char *short_name)
668 {
669     module **m;
670     const char *error;
671
672     /*
673      *  Add module pointer to top of chained module list
674      */
675     error = ap_add_module(mod, p, short_name);
676     if (error) {
677         return error;
678     }
679
680     /*
681      *  And module pointer to list of loaded modules
682      *
683      *  Notes: 1. ap_add_module() would already complain if no more space
684      *            exists for adding a dynamically loaded module
685      *         2. ap_add_module() accepts double inclusion, so we have
686      *            to accept this, too.
687      */
688     for (m = ap_loaded_modules; *m != NULL; m++)
689         ;
690     *m++ = mod;
691     *m = NULL;
692
693     return NULL;
694 }
695
696 AP_DECLARE(void) ap_remove_loaded_module(module *mod)
697 {
698     module **m;
699     module **m2;
700     int done;
701
702     /*
703      *  Remove module pointer from chained module list
704      */
705     ap_remove_module(mod);
706
707     /*
708      *  Remove module pointer from list of loaded modules
709      *
710      *  Note: 1. We cannot determine if the module was successfully
711      *           removed by ap_remove_module().
712      *        2. We have not to complain explicity when the module
713      *           is not found because ap_remove_module() did it
714      *           for us already.
715      */
716     for (m = m2 = ap_loaded_modules, done = 0; *m2 != NULL; m2++) {
717         if (*m2 == mod && done == 0)
718             done = 1;
719         else
720             *m++ = *m2;
721     }
722
723     *m = NULL;
724 }
725
726 AP_DECLARE(const char *) ap_setup_prelinked_modules(process_rec *process)
727 {
728     module **m;
729     module **m2;
730     const char *error;
731
732     apr_hook_global_pool=process->pconf;
733
734     rebuild_conf_hash(process->pconf, 0);
735
736     /*
737      *  Initialise total_modules variable and module indices
738      */
739     total_modules = 0;
740     for (m = ap_preloaded_modules; *m != NULL; m++)
741         (*m)->module_index = total_modules++;
742
743     max_modules = total_modules + DYNAMIC_MODULE_LIMIT + 1;
744     conf_vector_length = max_modules;
745
746     /*
747      *  Initialise list of loaded modules and short names
748      */
749     ap_loaded_modules = (module **)apr_palloc(process->pool,
750         sizeof(module *) * conf_vector_length);
751     if (!ap_module_short_names)
752         ap_module_short_names = calloc(sizeof(char *), conf_vector_length);
753
754     if (!merger_func_cache)
755         merger_func_cache = calloc(sizeof(merger_func), conf_vector_length);
756
757     if (ap_loaded_modules == NULL || ap_module_short_names == NULL
758         || merger_func_cache == NULL)
759         return "Ouch! Out of memory in ap_setup_prelinked_modules()!";
760
761     for (m = ap_preloaded_modules, m2 = ap_loaded_modules; *m != NULL; )
762         *m2++ = *m++;
763
764     *m2 = NULL;
765
766     /*
767      *   Initialize chain of linked (=activate) modules
768      */
769     for (m = ap_prelinked_modules; *m != NULL; m++) {
770         error = ap_add_module(*m, process->pconf, NULL);
771         if (error) {
772             return error;
773         }
774     }
775
776     apr_hook_sort_all();
777
778     return NULL;
779 }
780
781 AP_DECLARE(const char *) ap_find_module_name(module *m)
782 {
783     return m->name;
784 }
785
786 AP_DECLARE(const char *) ap_find_module_short_name(int module_index)
787 {
788         if (module_index < 0 || module_index >= conf_vector_length)
789                 return NULL;
790         return ap_module_short_names[module_index];
791 }
792
793 AP_DECLARE(module *) ap_find_linked_module(const char *name)
794 {
795     module *modp;
796
797     for (modp = ap_top_module; modp; modp = modp->next) {
798         if (strcmp(modp->name, name) == 0)
799             return modp;
800     }
801
802     return NULL;
803 }
804
805 /*****************************************************************
806  *
807  * Resource, access, and .htaccess config files now parsed by a common
808  * command loop.
809  *
810  * Let's begin with the basics; parsing the line and
811  * invoking the function...
812  */
813
814 #define AP_MAX_ARGC 64
815
816 static const char *invoke_cmd(const command_rec *cmd, cmd_parms *parms,
817                               void *mconfig, const char *args)
818 {
819     char *w, *w2, *w3;
820     const char *errmsg = NULL;
821
822     if ((parms->override & cmd->req_override) == 0)
823         return apr_pstrcat(parms->pool, cmd->name, " not allowed here", NULL);
824
825     parms->info = cmd->cmd_data;
826     parms->cmd = cmd;
827
828     switch (cmd->args_how) {
829     case RAW_ARGS:
830 #ifdef RESOLVE_ENV_PER_TOKEN
831         args = ap_resolve_env(parms->pool,args);
832 #endif
833         return cmd->AP_RAW_ARGS(parms, mconfig, args);
834
835     case TAKE_ARGV:
836         {
837             char *argv[AP_MAX_ARGC];
838             int argc = 0;
839
840             do {
841                 w = ap_getword_conf(parms->pool, &args);
842                 if (*w == '\0' && *args == '\0') {
843                     break;
844                 }
845                 argv[argc] = w;
846                 argc++;
847             } while (argc < AP_MAX_ARGC && *args != '\0');
848
849             return cmd->AP_TAKE_ARGV(parms, mconfig, argc, argv);
850         }
851
852     case NO_ARGS:
853         if (*args != 0)
854             return apr_pstrcat(parms->pool, cmd->name, " takes no arguments",
855                                NULL);
856
857         return cmd->AP_NO_ARGS(parms, mconfig);
858
859     case TAKE1:
860         w = ap_getword_conf(parms->pool, &args);
861
862         if (*w == '\0' || *args != 0)
863             return apr_pstrcat(parms->pool, cmd->name, " takes one argument",
864                                cmd->errmsg ? ", " : NULL, cmd->errmsg, NULL);
865
866         return cmd->AP_TAKE1(parms, mconfig, w);
867
868     case TAKE2:
869         w = ap_getword_conf(parms->pool, &args);
870         w2 = ap_getword_conf(parms->pool, &args);
871
872         if (*w == '\0' || *w2 == '\0' || *args != 0)
873             return apr_pstrcat(parms->pool, cmd->name, " takes two arguments",
874                                cmd->errmsg ? ", " : NULL, cmd->errmsg, NULL);
875
876         return cmd->AP_TAKE2(parms, mconfig, w, w2);
877
878     case TAKE12:
879         w = ap_getword_conf(parms->pool, &args);
880         w2 = ap_getword_conf(parms->pool, &args);
881
882         if (*w == '\0' || *args != 0)
883             return apr_pstrcat(parms->pool, cmd->name, " takes 1-2 arguments",
884                                cmd->errmsg ? ", " : NULL, cmd->errmsg, NULL);
885
886         return cmd->AP_TAKE2(parms, mconfig, w, *w2 ? w2 : NULL);
887
888     case TAKE3:
889         w = ap_getword_conf(parms->pool, &args);
890         w2 = ap_getword_conf(parms->pool, &args);
891         w3 = ap_getword_conf(parms->pool, &args);
892
893         if (*w == '\0' || *w2 == '\0' || *w3 == '\0' || *args != 0)
894             return apr_pstrcat(parms->pool, cmd->name, " takes three arguments",
895                                cmd->errmsg ? ", " : NULL, cmd->errmsg, NULL);
896
897         return cmd->AP_TAKE3(parms, mconfig, w, w2, w3);
898
899     case TAKE23:
900         w = ap_getword_conf(parms->pool, &args);
901         w2 = ap_getword_conf(parms->pool, &args);
902         w3 = *args ? ap_getword_conf(parms->pool, &args) : NULL;
903
904         if (*w == '\0' || *w2 == '\0' || *args != 0)
905             return apr_pstrcat(parms->pool, cmd->name,
906                                " takes two or three arguments",
907                                cmd->errmsg ? ", " : NULL, cmd->errmsg, NULL);
908
909         return cmd->AP_TAKE3(parms, mconfig, w, w2, w3);
910
911     case TAKE123:
912         w = ap_getword_conf(parms->pool, &args);
913         w2 = *args ? ap_getword_conf(parms->pool, &args) : NULL;
914         w3 = *args ? ap_getword_conf(parms->pool, &args) : NULL;
915
916         if (*w == '\0' || *args != 0)
917             return apr_pstrcat(parms->pool, cmd->name,
918                                " takes one, two or three arguments",
919                                cmd->errmsg ? ", " : NULL, cmd->errmsg, NULL);
920
921         return cmd->AP_TAKE3(parms, mconfig, w, w2, w3);
922
923     case TAKE13:
924         w = ap_getword_conf(parms->pool, &args);
925         w2 = *args ? ap_getword_conf(parms->pool, &args) : NULL;
926         w3 = *args ? ap_getword_conf(parms->pool, &args) : NULL;
927
928         if (*w == '\0' || (w2 && *w2 && !w3) || *args != 0)
929             return apr_pstrcat(parms->pool, cmd->name,
930                                " takes one or three arguments",
931                                cmd->errmsg ? ", " : NULL, cmd->errmsg, NULL);
932
933         return cmd->AP_TAKE3(parms, mconfig, w, w2, w3);
934
935     case ITERATE:
936         while (*(w = ap_getword_conf(parms->pool, &args)) != '\0') {
937
938             errmsg = cmd->AP_TAKE1(parms, mconfig, w);
939
940             if (errmsg && strcmp(errmsg, DECLINE_CMD) != 0)
941                 return errmsg;
942         }
943
944         return errmsg;
945
946     case ITERATE2:
947         w = ap_getword_conf(parms->pool, &args);
948
949         if (*w == '\0' || *args == 0)
950             return apr_pstrcat(parms->pool, cmd->name,
951                                " requires at least two arguments",
952                                cmd->errmsg ? ", " : NULL, cmd->errmsg, NULL);
953
954         while (*(w2 = ap_getword_conf(parms->pool, &args)) != '\0') {
955
956             errmsg = cmd->AP_TAKE2(parms, mconfig, w, w2);
957
958             if (errmsg && strcmp(errmsg, DECLINE_CMD) != 0)
959                 return errmsg;
960         }
961
962         return errmsg;
963
964     case FLAG:
965         w = ap_getword_conf(parms->pool, &args);
966
967         if (*w == '\0' || (strcasecmp(w, "on") && strcasecmp(w, "off")))
968             return apr_pstrcat(parms->pool, cmd->name, " must be On or Off",
969                                NULL);
970
971         return cmd->AP_FLAG(parms, mconfig, strcasecmp(w, "off") != 0);
972
973     default:
974         return apr_pstrcat(parms->pool, cmd->name,
975                            " is improperly configured internally (server bug)",
976                            NULL);
977     }
978 }
979
980 AP_CORE_DECLARE(const command_rec *) ap_find_command(const char *name,
981                                                      const command_rec *cmds)
982 {
983     while (cmds->name) {
984         if (!strcasecmp(name, cmds->name))
985             return cmds;
986
987         ++cmds;
988     }
989
990     return NULL;
991 }
992
993 AP_CORE_DECLARE(const command_rec *) ap_find_command_in_modules(
994                                           const char *cmd_name, module **mod)
995 {
996     const command_rec *cmdp;
997     module *modp;
998
999     for (modp = *mod; modp; modp = modp->next) {
1000         if (modp->cmds && (cmdp = ap_find_command(cmd_name, modp->cmds))) {
1001             *mod = modp;
1002             return cmdp;
1003         }
1004     }
1005
1006     return NULL;
1007 }
1008
1009 AP_CORE_DECLARE(void *) ap_set_config_vectors(server_rec *server,
1010                                               ap_conf_vector_t *section_vector,
1011                                               const char *section,
1012                                               module *mod, apr_pool_t *pconf)
1013 {
1014     void *section_config = ap_get_module_config(section_vector, mod);
1015     void *server_config = ap_get_module_config(server->module_config, mod);
1016
1017     if (!section_config && mod->create_dir_config) {
1018         /* ### need to fix the create_dir_config functions' prototype... */
1019         section_config = (*mod->create_dir_config)(pconf, (char *)section);
1020         ap_set_module_config(section_vector, mod, section_config);
1021     }
1022
1023     if (!server_config && mod->create_server_config) {
1024         server_config = (*mod->create_server_config)(pconf, server);
1025         ap_set_module_config(server->module_config, mod, server_config);
1026     }
1027
1028     return section_config;
1029 }
1030
1031 static const char *execute_now(char *cmd_line, const char *args,
1032                                cmd_parms *parms,
1033                                apr_pool_t *p, apr_pool_t *ptemp,
1034                                ap_directive_t **sub_tree,
1035                                ap_directive_t *parent);
1036
1037 static const char *ap_build_config_sub(apr_pool_t *p, apr_pool_t *temp_pool,
1038                                        const char *l, cmd_parms *parms,
1039                                        ap_directive_t **current,
1040                                        ap_directive_t **curr_parent,
1041                                        ap_directive_t **conftree)
1042 {
1043     const char *retval = NULL;
1044     const char *args;
1045     char *cmd_name;
1046     ap_directive_t *newdir;
1047     module *mod = ap_top_module;
1048     const command_rec *cmd;
1049
1050     if (*l == '#' || *l == '\0')
1051         return NULL;
1052
1053 #if RESOLVE_ENV_PER_TOKEN
1054     args = l;
1055 #else
1056     args = ap_resolve_env(temp_pool, l);
1057 #endif
1058
1059     cmd_name = ap_getword_conf(p, &args);
1060     if (*cmd_name == '\0') {
1061         /* Note: this branch should not occur. An empty line should have
1062          * triggered the exit further above.
1063          */
1064         return NULL;
1065     }
1066
1067     if (cmd_name[1] != '/') {
1068         char *lastc = cmd_name + strlen(cmd_name) - 1;
1069         if (*lastc == '>') {
1070             *lastc = '\0' ;
1071         }
1072         if (cmd_name[0] == '<' && *args == '\0') {
1073             args = ">";
1074         }
1075     }
1076
1077     newdir = apr_pcalloc(p, sizeof(ap_directive_t));
1078     newdir->filename = parms->config_file->name;
1079     newdir->line_num = parms->config_file->line_number;
1080     newdir->directive = cmd_name;
1081     newdir->args = apr_pstrdup(p, args);
1082
1083     if ((cmd = ap_find_command_in_modules(cmd_name, &mod)) != NULL) {
1084         if (cmd->req_override & EXEC_ON_READ) {
1085             ap_directive_t *sub_tree = NULL;
1086
1087             parms->err_directive = newdir;
1088             retval = execute_now(cmd_name, args, parms, p, temp_pool,
1089                                  &sub_tree, *curr_parent);
1090             if (*current) {
1091                 (*current)->next = sub_tree;
1092             }
1093             else {
1094                 *current = sub_tree;
1095                 if (*curr_parent) {
1096                     (*curr_parent)->first_child = (*current);
1097                 }
1098                 if (*current) {
1099                     (*current)->parent = (*curr_parent);
1100                 }
1101             }
1102             if (*current) {
1103                 if (!*conftree) {
1104                     /* Before walking *current to the end of the list,
1105                      * set the head to *current.
1106                      */
1107                     *conftree = *current;
1108                 }
1109                 while ((*current)->next != NULL) {
1110                     (*current) = (*current)->next;
1111                     (*current)->parent = (*curr_parent);
1112                 }
1113             }
1114             return retval;
1115         }
1116     }
1117
1118     if (cmd_name[0] == '<') {
1119         if (cmd_name[1] != '/') {
1120             (*current) = ap_add_node(curr_parent, *current, newdir, 1);
1121         }
1122         else if (*curr_parent == NULL) {
1123             parms->err_directive = newdir;
1124             return apr_pstrcat(p, cmd_name,
1125                                " without matching <", cmd_name + 2,
1126                                " section", NULL);
1127         }
1128         else {
1129             char *bracket = cmd_name + strlen(cmd_name) - 1;
1130
1131             if (*bracket != '>') {
1132                 parms->err_directive = newdir;
1133                 return apr_pstrcat(p, cmd_name,
1134                                    "> directive missing closing '>'", NULL);
1135             }
1136
1137             *bracket = '\0';
1138
1139             if (strcasecmp(cmd_name + 2,
1140                            (*curr_parent)->directive + 1) != 0) {
1141                 parms->err_directive = newdir;
1142                 return apr_pstrcat(p, "Expected </",
1143                                    (*curr_parent)->directive + 1, "> but saw ",
1144                                    cmd_name, ">", NULL);
1145             }
1146
1147             *bracket = '>';
1148
1149             /* done with this section; move up a level */
1150             *current = *curr_parent;
1151             *curr_parent = (*current)->parent;
1152         }
1153     }
1154     else {
1155         *current = ap_add_node(curr_parent, *current, newdir, 0);
1156     }
1157
1158     return retval;
1159 }
1160
1161 AP_DECLARE(const char *) ap_build_cont_config(apr_pool_t *p,
1162                                               apr_pool_t *temp_pool,
1163                                               cmd_parms *parms,
1164                                               ap_directive_t **current,
1165                                               ap_directive_t **curr_parent,
1166                                               char *orig_directive)
1167 {
1168     char *l;
1169     char *bracket;
1170     const char *retval;
1171     ap_directive_t *sub_tree = NULL;
1172
1173     /* Since this function can be called recursively, allocate
1174      * the temporary 8k string buffer from the temp_pool rather
1175      * than the stack to avoid over-running a fixed length stack.
1176      */
1177     l = apr_palloc(temp_pool, MAX_STRING_LEN);
1178
1179     bracket = apr_pstrcat(temp_pool, orig_directive + 1, ">", NULL);
1180     while (!(ap_cfg_getline(l, MAX_STRING_LEN, parms->config_file))) {
1181         if (!memcmp(l, "</", 2)
1182             && (strcasecmp(l + 2, bracket) == 0)
1183             && (*curr_parent == NULL)) {
1184             break;
1185         }
1186         retval = ap_build_config_sub(p, temp_pool, l, parms, current,
1187                                      curr_parent, &sub_tree);
1188         if (retval != NULL)
1189             return retval;
1190
1191         if (sub_tree == NULL) {
1192             sub_tree = *curr_parent;
1193         }
1194
1195         if (sub_tree == NULL) {
1196             sub_tree = *current;
1197         }
1198     }
1199
1200     *current = sub_tree;
1201     return NULL;
1202 }
1203
1204 static const char *ap_walk_config_sub(const ap_directive_t *current,
1205                                       cmd_parms *parms,
1206                                       ap_conf_vector_t *section_vector)
1207 {
1208     const command_rec *cmd;
1209     ap_mod_list *ml;
1210     char *dir = apr_pstrdup(parms->pool, current->directive);
1211
1212     ap_str_tolower(dir);
1213
1214     ml = apr_hash_get(ap_config_hash, dir, APR_HASH_KEY_STRING);
1215
1216     if (ml == NULL) {
1217         parms->err_directive = current;
1218         return apr_pstrcat(parms->pool, "Invalid command '",
1219                            current->directive,
1220                            "', perhaps misspelled or defined by a module "
1221                            "not included in the server configuration",
1222                            NULL);
1223     }
1224
1225     for ( ; ml != NULL; ml = ml->next) {
1226         void *dir_config = ap_set_config_vectors(parms->server,
1227                                                  section_vector,
1228                                                  parms->path,
1229                                                  ml->m,
1230                                                  parms->pool);
1231         const char *retval;
1232         cmd = ml->cmd;
1233
1234         /* Once was enough? */
1235         if (cmd->req_override & EXEC_ON_READ) {
1236             continue;
1237         }
1238
1239         retval = invoke_cmd(cmd, parms, dir_config, current->args);
1240
1241         if (retval != NULL && strcmp(retval, DECLINE_CMD) != 0) {
1242             /* If the directive in error has already been set, don't
1243              * replace it.  Otherwise, an error inside a container
1244              * will be reported as occuring on the first line of the
1245              * container.
1246              */
1247             if (!parms->err_directive) {
1248                 parms->err_directive = current;
1249             }
1250             return retval;
1251         }
1252     }
1253
1254     return NULL;
1255 }
1256
1257 AP_DECLARE(const char *) ap_walk_config(ap_directive_t *current,
1258                                         cmd_parms *parms,
1259                                         ap_conf_vector_t *section_vector)
1260 {
1261     ap_conf_vector_t *oldconfig = parms->context;
1262
1263     parms->context = section_vector;
1264
1265     /* scan through all directives, executing each one */
1266     for (; current != NULL; current = current->next) {
1267         const char *errmsg;
1268
1269         parms->directive = current;
1270
1271         /* actually parse the command and execute the correct function */
1272         errmsg = ap_walk_config_sub(current, parms, section_vector);
1273         if (errmsg != NULL) {
1274             /* restore the context (just in case) */
1275             parms->context = oldconfig;
1276             return errmsg;
1277         }
1278     }
1279
1280     parms->context = oldconfig;
1281     return NULL;
1282 }
1283
1284 AP_DECLARE(const char *) ap_build_config(cmd_parms *parms,
1285                                          apr_pool_t *p, apr_pool_t *temp_pool,
1286                                          ap_directive_t **conftree)
1287 {
1288     ap_directive_t *current = *conftree;
1289     ap_directive_t *curr_parent = NULL;
1290     char *l = apr_palloc (temp_pool, MAX_STRING_LEN);
1291     const char *errmsg;
1292     ap_directive_t **last_ptr = NULL;
1293
1294     if (current != NULL) {
1295         /* If we have to traverse the whole tree again for every included
1296          * config file, the required time grows as O(n^2) with the number of
1297          * files. This can be a significant delay for large configurations.
1298          * Therefore we cache a pointer to the last node.
1299          */
1300         last_ptr = &(current->last);
1301
1302         if(last_ptr && *last_ptr) {
1303             current = *last_ptr;
1304         }
1305
1306         while (current->next) {
1307             current = current->next;
1308         }
1309
1310         if(last_ptr) {
1311             /* update cached pointer to last node */
1312             *last_ptr = current;
1313         }
1314     }
1315
1316     while (!(ap_cfg_getline(l, MAX_STRING_LEN, parms->config_file))) {
1317         errmsg = ap_build_config_sub(p, temp_pool, l, parms,
1318                                      &current, &curr_parent, conftree);
1319         if (errmsg != NULL)
1320             return errmsg;
1321
1322         if (*conftree == NULL && curr_parent != NULL) {
1323             *conftree = curr_parent;
1324         }
1325
1326         if (*conftree == NULL && current != NULL) {
1327             *conftree = current;
1328         }
1329     }
1330
1331     if (curr_parent != NULL) {
1332         errmsg = "";
1333
1334         while (curr_parent != NULL) {
1335             errmsg = apr_psprintf(p, "%s%s%s:%u: %s> was not closed.",
1336                                   errmsg,
1337                                   *errmsg == '\0' ? "" : APR_EOL_STR,
1338                                   curr_parent->filename,
1339                                   curr_parent->line_num,
1340                                   curr_parent->directive);
1341
1342             parms->err_directive = curr_parent;
1343             curr_parent = curr_parent->parent;
1344         }
1345
1346         return errmsg;
1347     }
1348
1349     return NULL;
1350 }
1351
1352 /*
1353  * Generic command functions...
1354  */
1355
1356 AP_DECLARE_NONSTD(const char *) ap_set_string_slot(cmd_parms *cmd,
1357                                                    void *struct_ptr,
1358                                                    const char *arg)
1359 {
1360     int offset = (int)(long)cmd->info;
1361
1362     *(const char **)((char *)struct_ptr + offset) = arg;
1363
1364     return NULL;
1365 }
1366
1367 AP_DECLARE_NONSTD(const char *) ap_set_int_slot(cmd_parms *cmd,
1368                                                 void *struct_ptr,
1369                                                 const char *arg)
1370 {
1371     char *endptr;
1372     char *error_str = NULL;
1373     int offset = (int)(long)cmd->info;
1374
1375     *(int *)((char*)struct_ptr + offset) = strtol(arg, &endptr, 10);
1376
1377     if ((*arg == '\0') || (*endptr != '\0')) {
1378         error_str = apr_psprintf(cmd->pool,
1379                      "Invalid value for directive %s, expected integer",
1380                      cmd->directive->directive);
1381     }
1382
1383     return error_str;
1384 }
1385
1386 AP_DECLARE_NONSTD(const char *) ap_set_string_slot_lower(cmd_parms *cmd,
1387                                                          void *struct_ptr,
1388                                                          const char *arg_)
1389 {
1390     char *arg = apr_pstrdup(cmd->pool,arg_);
1391     int offset = (int)(long)cmd->info;
1392
1393     ap_str_tolower(arg);
1394     *(char **)((char *)struct_ptr + offset) = arg;
1395
1396     return NULL;
1397 }
1398
1399 AP_DECLARE_NONSTD(const char *) ap_set_flag_slot(cmd_parms *cmd,
1400                                                  void *struct_ptr_v, int arg)
1401 {
1402     int offset = (int)(long)cmd->info;
1403     char *struct_ptr = (char *)struct_ptr_v;
1404
1405     *(int *)(struct_ptr + offset) = arg ? 1 : 0;
1406
1407     return NULL;
1408 }
1409
1410 AP_DECLARE_NONSTD(const char *) ap_set_flag_slot_char(cmd_parms *cmd,
1411                                                       void *struct_ptr_v, int arg)
1412 {
1413     int offset = (int)(long)cmd->info;
1414     char *struct_ptr = (char *)struct_ptr_v;
1415
1416     *(struct_ptr + offset) = arg ? 1 : 0;
1417
1418     return NULL;
1419 }
1420
1421
1422 AP_DECLARE_NONSTD(const char *) ap_set_file_slot(cmd_parms *cmd, void *struct_ptr,
1423                                                  const char *arg)
1424 {
1425     /* Prepend server_root to relative arg.
1426      * This allows most args to be independent of server_root,
1427      * so the server can be moved or mirrored with less pain.
1428      */
1429     const char *path;
1430     int offset = (int)(long)cmd->info;
1431
1432     path = ap_server_root_relative(cmd->pool, arg);
1433
1434     if (!path) {
1435         return apr_pstrcat(cmd->pool, "Invalid file path ",
1436                            arg, NULL);
1437     }
1438
1439     *(const char **) ((char*)struct_ptr + offset) = path;
1440
1441     return NULL;
1442 }
1443
1444 AP_DECLARE_NONSTD(const char *) ap_set_deprecated(cmd_parms *cmd,
1445                                                   void *struct_ptr,
1446                                                   const char *arg)
1447 {
1448     return cmd->cmd->errmsg;
1449 }
1450
1451 AP_DECLARE(void) ap_reset_module_loglevels(struct ap_logconf *l, int val)
1452 {
1453     if (l->module_levels)
1454         memset(l->module_levels, val, conf_vector_length);
1455 }
1456
1457 AP_DECLARE(void) ap_set_module_loglevel(apr_pool_t *pool, struct ap_logconf *l,
1458                                         int index, int level)
1459 {
1460     if (!l->module_levels) {
1461         l->module_levels = apr_palloc(pool, conf_vector_length);
1462         if (l->level == APLOG_UNSET) {
1463                 ap_reset_module_loglevels(l, APLOG_UNSET);
1464         }
1465         else {
1466                 ap_reset_module_loglevels(l, APLOG_NO_MODULE);
1467         }
1468     }
1469
1470     l->module_levels[index] = level;
1471 }
1472
1473 /*****************************************************************
1474  *
1475  * Reading whole config files...
1476  */
1477
1478 static cmd_parms default_parms =
1479 {NULL, 0, 0, -1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL};
1480
1481 AP_DECLARE(char *) ap_server_root_relative(apr_pool_t *p, const char *file)
1482 {
1483     char *newpath = NULL;
1484     apr_status_t rv;
1485     rv = apr_filepath_merge(&newpath, ap_server_root, file,
1486                             APR_FILEPATH_TRUENAME, p);
1487     if (newpath && (rv == APR_SUCCESS || APR_STATUS_IS_EPATHWILD(rv)
1488                                       || APR_STATUS_IS_ENOENT(rv)
1489                                       || APR_STATUS_IS_ENOTDIR(rv))) {
1490         return newpath;
1491     }
1492     else {
1493         return NULL;
1494     }
1495 }
1496
1497 AP_DECLARE(const char *) ap_soak_end_container(cmd_parms *cmd, char *directive)
1498 {
1499     char l[MAX_STRING_LEN];
1500     const char *args;
1501     char *cmd_name;
1502
1503     while(!(ap_cfg_getline(l, MAX_STRING_LEN, cmd->config_file))) {
1504 #if RESOLVE_ENV_PER_TOKEN
1505         args = l;
1506 #else
1507         args = ap_resolve_env(cmd->temp_pool, l);
1508 #endif
1509
1510         cmd_name = ap_getword_conf(cmd->temp_pool, &args);
1511         if (cmd_name[0] == '<') {
1512             if (cmd_name[1] == '/') {
1513                 cmd_name[strlen(cmd_name) - 1] = '\0';
1514
1515                 if (strcasecmp(cmd_name + 2, directive + 1) != 0) {
1516                     return apr_pstrcat(cmd->pool, "Expected </",
1517                                        directive + 1, "> but saw ",
1518                                        cmd_name, ">", NULL);
1519                 }
1520
1521                 return NULL; /* found end of container */
1522             }
1523             else {
1524                 const char *msg;
1525
1526                 if (*args == '\0' && cmd_name[strlen(cmd_name) - 1] == '>') {
1527                     cmd_name[strlen(cmd_name) - 1] = '\0';
1528                 }
1529
1530                 if ((msg = ap_soak_end_container(cmd, cmd_name)) != NULL) {
1531                     return msg;
1532                 }
1533             }
1534         }
1535     }
1536
1537     return apr_pstrcat(cmd->pool, "Expected </",
1538                        directive + 1, "> before end of configuration",
1539                        NULL);
1540 }
1541
1542 static const char *execute_now(char *cmd_line, const char *args,
1543                                cmd_parms *parms,
1544                                apr_pool_t *p, apr_pool_t *ptemp,
1545                                ap_directive_t **sub_tree,
1546                                ap_directive_t *parent)
1547 {
1548     const command_rec *cmd;
1549     ap_mod_list *ml;
1550     char *dir = apr_pstrdup(parms->temp_pool, cmd_line);
1551
1552     ap_str_tolower(dir);
1553
1554     ml = apr_hash_get(ap_config_hash, dir, APR_HASH_KEY_STRING);
1555
1556     if (ml == NULL) {
1557         return apr_pstrcat(parms->pool, "Invalid command '",
1558                            cmd_line,
1559                            "', perhaps misspelled or defined by a module "
1560                            "not included in the server configuration",
1561                            NULL);
1562     }
1563
1564     for ( ; ml != NULL; ml = ml->next) {
1565         const char *retval;
1566         cmd = ml->cmd;
1567
1568         retval = invoke_cmd(cmd, parms, sub_tree, args);
1569
1570         if (retval != NULL) {
1571             return retval;
1572         }
1573     }
1574
1575     return NULL;
1576 }
1577
1578 /* This structure and the following functions are needed for the
1579  * table-based config file reading. They are passed to the
1580  * cfg_open_custom() routine.
1581  */
1582
1583 /* Structure to be passed to cfg_open_custom(): it contains an
1584  * index which is incremented from 0 to nelts on each call to
1585  * cfg_getline() (which in turn calls arr_elts_getstr())
1586  * and an apr_array_header_t pointer for the string array.
1587  */
1588 typedef struct {
1589     apr_array_header_t *array;
1590     int curr_idx;
1591 } arr_elts_param_t;
1592
1593
1594 /* arr_elts_getstr() returns the next line from the string array. */
1595 static void *arr_elts_getstr(void *buf, size_t bufsiz, void *param)
1596 {
1597     arr_elts_param_t *arr_param = (arr_elts_param_t *)param;
1598
1599     /* End of array reached? */
1600     if (++arr_param->curr_idx > arr_param->array->nelts)
1601         return NULL;
1602
1603     /* return the line */
1604     apr_cpystrn(buf,
1605                 ((char **)arr_param->array->elts)[arr_param->curr_idx - 1],
1606                 bufsiz);
1607
1608     return buf;
1609 }
1610
1611
1612 /* arr_elts_close(): dummy close routine (makes sure no more lines can be read) */
1613 static int arr_elts_close(void *param)
1614 {
1615     arr_elts_param_t *arr_param = (arr_elts_param_t *)param;
1616
1617     arr_param->curr_idx = arr_param->array->nelts;
1618
1619     return 0;
1620 }
1621
1622 static const char *process_command_config(server_rec *s,
1623                                           apr_array_header_t *arr,
1624                                           ap_directive_t **conftree,
1625                                           apr_pool_t *p,
1626                                           apr_pool_t *ptemp)
1627 {
1628     const char *errmsg;
1629     cmd_parms parms;
1630     arr_elts_param_t arr_parms;
1631
1632     arr_parms.curr_idx = 0;
1633     arr_parms.array = arr;
1634
1635     if (ap_config_hash == NULL) {
1636         rebuild_conf_hash(s->process->pconf, 1);
1637     }
1638
1639     parms = default_parms;
1640     parms.pool = p;
1641     parms.temp_pool = ptemp;
1642     parms.server = s;
1643     parms.override = (RSRC_CONF | OR_ALL) & ~(OR_AUTHCFG | OR_LIMIT);
1644     parms.override_opts = OPT_ALL | OPT_SYM_OWNER | OPT_MULTI;
1645
1646     parms.config_file = ap_pcfg_open_custom(p, "-c/-C directives",
1647                                             &arr_parms, NULL,
1648                                             arr_elts_getstr, arr_elts_close);
1649
1650     errmsg = ap_build_config(&parms, p, ptemp, conftree);
1651     ap_cfg_closefile(parms.config_file);
1652
1653     if (errmsg) {
1654         return apr_pstrcat(p, "Syntax error in -C/-c directive: ", errmsg,
1655                            NULL);
1656     }
1657
1658     return NULL;
1659 }
1660
1661 typedef struct {
1662     const char *fname;
1663 } fnames;
1664
1665 static int fname_alphasort(const void *fn1, const void *fn2)
1666 {
1667     const fnames *f1 = fn1;
1668     const fnames *f2 = fn2;
1669
1670     return strcmp(f1->fname,f2->fname);
1671 }
1672
1673 AP_DECLARE(const char *) ap_process_resource_config(server_rec *s,
1674                                                     const char *fname,
1675                                                     ap_directive_t **conftree,
1676                                                     apr_pool_t *p,
1677                                                     apr_pool_t *ptemp)
1678 {
1679     ap_configfile_t *cfp;
1680     cmd_parms parms;
1681     apr_status_t rv;
1682     const char *error;
1683
1684     parms = default_parms;
1685     parms.pool = p;
1686     parms.temp_pool = ptemp;
1687     parms.server = s;
1688     parms.override = (RSRC_CONF | OR_ALL) & ~(OR_AUTHCFG | OR_LIMIT);
1689     parms.override_opts = OPT_ALL | OPT_SYM_OWNER | OPT_MULTI;
1690
1691     rv = ap_pcfg_openfile(&cfp, p, fname);
1692     if (rv != APR_SUCCESS) {
1693         char errmsg[120];
1694         return apr_psprintf(p, "Could not open configuration file %s: %s",
1695                             fname, apr_strerror(rv, errmsg, sizeof errmsg));
1696     }
1697
1698     parms.config_file = cfp;
1699     error = ap_build_config(&parms, p, ptemp, conftree);
1700     ap_cfg_closefile(cfp);
1701
1702     if (error) {
1703         return apr_psprintf(p, "Syntax error on line %d of %s: %s",
1704                             parms.err_directive->line_num,
1705                             parms.err_directive->filename, error);
1706     }
1707
1708     return NULL;
1709 }
1710
1711 static const char *process_resource_config_nofnmatch(server_rec *s,
1712                                                      const char *fname,
1713                                                      ap_directive_t **conftree,
1714                                                      apr_pool_t *p,
1715                                                      apr_pool_t *ptemp,
1716                                                      unsigned depth,
1717                                                      int optional)
1718 {
1719     const char *error;
1720     apr_status_t rv;
1721
1722     if (ap_is_directory(ptemp, fname)) {
1723         apr_dir_t *dirp;
1724         apr_finfo_t dirent;
1725         int current;
1726         apr_array_header_t *candidates = NULL;
1727         fnames *fnew;
1728         char *path = apr_pstrdup(ptemp, fname);
1729
1730         if (++depth > AP_MAX_INCLUDE_DIR_DEPTH) {
1731             return apr_psprintf(p, "Directory %s exceeds the maximum include "
1732                                 "directory nesting level of %u. You have "
1733                                 "probably a recursion somewhere.", path,
1734                                 AP_MAX_INCLUDE_DIR_DEPTH);
1735         }
1736
1737         /*
1738          * first course of business is to grok all the directory
1739          * entries here and store 'em away. Recall we need full pathnames
1740          * for this.
1741          */
1742         rv = apr_dir_open(&dirp, path, ptemp);
1743         if (rv != APR_SUCCESS) {
1744             char errmsg[120];
1745             return apr_psprintf(p, "Could not open config directory %s: %s",
1746                                 path, apr_strerror(rv, errmsg, sizeof errmsg));
1747         }
1748
1749         candidates = apr_array_make(ptemp, 1, sizeof(fnames));
1750         while (apr_dir_read(&dirent, APR_FINFO_DIRENT, dirp) == APR_SUCCESS) {
1751             /* strip out '.' and '..' */
1752             if (strcmp(dirent.name, ".")
1753                 && strcmp(dirent.name, "..")) {
1754                 fnew = (fnames *) apr_array_push(candidates);
1755                 fnew->fname = ap_make_full_path(ptemp, path, dirent.name);
1756             }
1757         }
1758
1759         apr_dir_close(dirp);
1760         if (candidates->nelts != 0) {
1761             qsort((void *) candidates->elts, candidates->nelts,
1762                   sizeof(fnames), fname_alphasort);
1763
1764             /*
1765              * Now recurse these... we handle errors and subdirectories
1766              * via the recursion, which is nice
1767              */
1768             for (current = 0; current < candidates->nelts; ++current) {
1769                 fnew = &((fnames *) candidates->elts)[current];
1770                 error = process_resource_config_nofnmatch(s, fnew->fname,
1771                                                           conftree, p, ptemp,
1772                                                           depth, optional);
1773                 if (error) {
1774                     return error;
1775                 }
1776             }
1777         }
1778
1779         return NULL;
1780     }
1781
1782     return ap_process_resource_config(s, fname, conftree, p, ptemp);
1783 }
1784
1785 static const char *process_resource_config_fnmatch(server_rec *s,
1786                                                    const char *path,
1787                                                    const char *fname,
1788                                                    ap_directive_t **conftree,
1789                                                    apr_pool_t *p,
1790                                                    apr_pool_t *ptemp,
1791                                                    unsigned depth,
1792                                                    int optional)
1793 {
1794     const char *rest;
1795     apr_status_t rv;
1796     apr_dir_t *dirp;
1797     apr_finfo_t dirent;
1798     apr_array_header_t *candidates = NULL;
1799     fnames *fnew;
1800     int current;
1801
1802     /* find the first part of the filename */
1803     rest = ap_strchr_c(fname, '/');
1804     if (rest) {
1805         fname = apr_pstrndup(ptemp, fname, rest - fname);
1806         rest++;
1807     }
1808
1809     /* optimisation - if the filename isn't a wildcard, process it directly */
1810     if (!apr_fnmatch_test(fname)) {
1811         path = ap_make_full_path(ptemp, path, fname);
1812         if (!rest) {
1813             return process_resource_config_nofnmatch(s, path,
1814                                                      conftree, p,
1815                                                      ptemp, 0, optional);
1816         }
1817         else {
1818             return process_resource_config_fnmatch(s, path, rest,
1819                                                    conftree, p,
1820                                                    ptemp, 0, optional);
1821         }
1822     }
1823
1824     /*
1825      * first course of business is to grok all the directory
1826      * entries here and store 'em away. Recall we need full pathnames
1827      * for this.
1828      */
1829     rv = apr_dir_open(&dirp, path, ptemp);
1830     if (rv != APR_SUCCESS) {
1831         char errmsg[120];
1832         return apr_psprintf(p, "Could not open config directory %s: %s",
1833                             path, apr_strerror(rv, errmsg, sizeof errmsg));
1834     }
1835
1836     candidates = apr_array_make(ptemp, 1, sizeof(fnames));
1837     while (apr_dir_read(&dirent, APR_FINFO_DIRENT | APR_FINFO_TYPE, dirp) == APR_SUCCESS) {
1838         /* strip out '.' and '..' */
1839         if (strcmp(dirent.name, ".")
1840             && strcmp(dirent.name, "..")
1841             && (apr_fnmatch(fname, dirent.name,
1842                             APR_FNM_PERIOD) == APR_SUCCESS)) {
1843             const char *full_path = ap_make_full_path(ptemp, path, dirent.name);
1844             /* If matching internal to path, and we happen to match something
1845              * other than a directory, skip it
1846              */
1847             if (rest && (rv == APR_SUCCESS) && (dirent.filetype != APR_DIR)) {
1848                 continue;
1849             }
1850             fnew = (fnames *) apr_array_push(candidates);
1851             fnew->fname = full_path;
1852         }
1853     }
1854
1855     apr_dir_close(dirp);
1856     if (candidates->nelts != 0) {
1857         const char *error;
1858
1859         qsort((void *) candidates->elts, candidates->nelts,
1860               sizeof(fnames), fname_alphasort);
1861
1862         /*
1863          * Now recurse these... we handle errors and subdirectories
1864          * via the recursion, which is nice
1865          */
1866         for (current = 0; current < candidates->nelts; ++current) {
1867             fnew = &((fnames *) candidates->elts)[current];
1868             if (!rest) {
1869                 error = process_resource_config_nofnmatch(s, fnew->fname,
1870                                                           conftree, p,
1871                                                           ptemp, 0, optional);
1872             }
1873             else {
1874                 error = process_resource_config_fnmatch(s, fnew->fname, rest,
1875                                                         conftree, p,
1876                                                         ptemp, 0, optional);
1877             }
1878             if (error) {
1879                 return error;
1880             }
1881         }
1882     }
1883     else {
1884
1885         if (!optional) {
1886             return apr_psprintf(p, "No matches for the wildcard '%s' in '%s', failing "
1887                                    "(use IncludeOptional if required)", fname, path);
1888         }
1889     }
1890
1891     return NULL;
1892 }
1893
1894 AP_DECLARE(const char *) ap_process_fnmatch_configs(server_rec *s,
1895                                                     const char *fname,
1896                                                     ap_directive_t **conftree,
1897                                                     apr_pool_t *p,
1898                                                     apr_pool_t *ptemp,
1899                                                     int optional)
1900 {
1901     /* XXX: lstat() won't work on the wildcard pattern...
1902      */
1903
1904     /* don't require conf/httpd.conf if we have a -C or -c switch */
1905     if ((ap_server_pre_read_config->nelts
1906         || ap_server_post_read_config->nelts)
1907         && !(strcmp(fname, ap_server_root_relative(ptemp, SERVER_CONFIG_FILE)))) {
1908         apr_finfo_t finfo;
1909
1910         if (apr_stat(&finfo, fname, APR_FINFO_LINK | APR_FINFO_TYPE, ptemp) != APR_SUCCESS)
1911             return NULL;
1912     }
1913
1914     if (!apr_fnmatch_test(fname)) {
1915         return ap_process_resource_config(s, fname, conftree, p, ptemp);
1916     }
1917     else {
1918         apr_status_t status;
1919         const char *rootpath, *filepath = fname;
1920
1921         /* locate the start of the directories proper */
1922         status = apr_filepath_root(&rootpath, &filepath, APR_FILEPATH_TRUENAME, ptemp);
1923
1924         /* we allow APR_SUCCESS and APR_EINCOMPLETE */
1925         if (APR_ERELATIVE == status) {
1926             return apr_pstrcat(p, "Include must have an absolute path, ", fname, NULL);
1927         }
1928         else if (APR_EBADPATH == status) {
1929             return apr_pstrcat(p, "Include has a bad path, ", fname, NULL);
1930         }
1931
1932         /* walk the filepath */
1933         return process_resource_config_fnmatch(s, rootpath, filepath, conftree, p, ptemp,
1934                                                0, optional);
1935
1936     }
1937
1938     return NULL;
1939 }
1940
1941 AP_DECLARE(int) ap_process_config_tree(server_rec *s,
1942                                        ap_directive_t *conftree,
1943                                        apr_pool_t *p,
1944                                        apr_pool_t *ptemp)
1945 {
1946     const char *errmsg;
1947     cmd_parms parms;
1948
1949     parms = default_parms;
1950     parms.pool = p;
1951     parms.temp_pool = ptemp;
1952     parms.server = s;
1953     parms.override = (RSRC_CONF | OR_ALL) & ~(OR_AUTHCFG | OR_LIMIT);
1954     parms.override_opts = OPT_ALL | OPT_SYM_OWNER | OPT_MULTI;
1955     parms.limited = -1;
1956
1957     errmsg = ap_walk_config(conftree, &parms, s->lookup_defaults);
1958     if (errmsg) {
1959         ap_log_perror(APLOG_MARK, APLOG_STARTUP, 0, p,
1960                      "Syntax error on line %d of %s:",
1961                      parms.err_directive->line_num,
1962                      parms.err_directive->filename);
1963         ap_log_perror(APLOG_MARK, APLOG_STARTUP, 0, p,
1964                      "%s", errmsg);
1965         return HTTP_INTERNAL_SERVER_ERROR;
1966     }
1967
1968     return OK;
1969 }
1970
1971 AP_CORE_DECLARE(int) ap_parse_htaccess(ap_conf_vector_t **result,
1972                                        request_rec *r, int override,
1973                                        int override_opts,
1974                                        const char *d, const char *access_name)
1975 {
1976     ap_configfile_t *f = NULL;
1977     cmd_parms parms;
1978     char *filename = NULL;
1979     const struct htaccess_result *cache;
1980     struct htaccess_result *new;
1981     ap_conf_vector_t *dc = NULL;
1982     apr_status_t status;
1983
1984     /* firstly, search cache */
1985     for (cache = r->htaccess; cache != NULL; cache = cache->next) {
1986         if (cache->override == override && strcmp(cache->dir, d) == 0) {
1987             *result = cache->htaccess;
1988             return OK;
1989         }
1990     }
1991
1992     parms = default_parms;
1993     parms.override = override;
1994     parms.override_opts = override_opts;
1995     parms.pool = r->pool;
1996     parms.temp_pool = r->pool;
1997     parms.server = r->server;
1998     parms.path = apr_pstrdup(r->pool, d);
1999
2000     /* loop through the access names and find the first one */
2001     while (access_name[0]) {
2002         /* AFAICT; there is no use of the actual 'filename' against
2003          * any canonicalization, so we will simply take the given
2004          * name, ignoring case sensitivity and aliases
2005          */
2006         filename = ap_make_full_path(r->pool, d,
2007                                      ap_getword_conf(r->pool, &access_name));
2008         status = ap_pcfg_openfile(&f, r->pool, filename);
2009
2010         if (status == APR_SUCCESS) {
2011             const char *errmsg;
2012             ap_directive_t *temptree = NULL;
2013
2014             dc = ap_create_per_dir_config(r->pool);
2015
2016             parms.config_file = f;
2017             errmsg = ap_build_config(&parms, r->pool, r->pool, &temptree);
2018             if (errmsg == NULL)
2019                 errmsg = ap_walk_config(temptree, &parms, dc);
2020
2021             ap_cfg_closefile(f);
2022
2023             if (errmsg) {
2024                 ap_log_rerror(APLOG_MARK, APLOG_ALERT, 0, r,
2025                               "%s: %s", filename, errmsg);
2026                 return HTTP_INTERNAL_SERVER_ERROR;
2027             }
2028
2029             *result = dc;
2030             break;
2031         }
2032         else {
2033             if (!APR_STATUS_IS_ENOENT(status)
2034                 && !APR_STATUS_IS_ENOTDIR(status)) {
2035                 ap_log_rerror(APLOG_MARK, APLOG_CRIT, status, r,
2036                               "%s pcfg_openfile: unable to check htaccess file, "
2037                               "ensure it is readable and that '%s' " 
2038                               "is executable",
2039                               filename, d);
2040                 apr_table_setn(r->notes, "error-notes",
2041                                "Server unable to read htaccess file, denying "
2042                                "access to be safe");
2043                 return HTTP_FORBIDDEN;
2044             }
2045         }
2046     }
2047
2048     /* cache it */
2049     new = apr_palloc(r->pool, sizeof(struct htaccess_result));
2050     new->dir = parms.path;
2051     new->override = override;
2052     new->override_opts = override_opts;
2053     new->htaccess = dc;
2054
2055     /* add to head of list */
2056     new->next = r->htaccess;
2057     r->htaccess = new;
2058
2059     return OK;
2060 }
2061
2062 AP_CORE_DECLARE(const char *) ap_init_virtual_host(apr_pool_t *p,
2063                                                    const char *hostname,
2064                                                    server_rec *main_server,
2065                                                    server_rec **ps)
2066 {
2067     server_rec *s = (server_rec *) apr_pcalloc(p, sizeof(server_rec));
2068
2069     /* TODO: this crap belongs in http_core */
2070     s->process = main_server->process;
2071     s->server_admin = NULL;
2072     s->server_hostname = NULL;
2073     s->server_scheme = NULL;
2074     s->error_fname = NULL;
2075     s->timeout = 0;
2076     s->keep_alive_timeout = 0;
2077     s->keep_alive = -1;
2078     s->keep_alive_max = -1;
2079     s->error_log = main_server->error_log;
2080     s->log.level = APLOG_UNSET;
2081     s->log.module_levels = NULL;
2082     /* useful default, otherwise we get a port of 0 on redirects */
2083     s->port = main_server->port;
2084     s->next = NULL;
2085
2086     s->is_virtual = 1;
2087     s->names = apr_array_make(p, 4, sizeof(char **));
2088     s->wild_names = apr_array_make(p, 4, sizeof(char **));
2089
2090     s->module_config = create_empty_config(p);
2091     s->lookup_defaults = ap_create_per_dir_config(p);
2092
2093     s->limit_req_line = main_server->limit_req_line;
2094     s->limit_req_fieldsize = main_server->limit_req_fieldsize;
2095     s->limit_req_fields = main_server->limit_req_fields;
2096
2097     *ps = s;
2098
2099     return ap_parse_vhost_addrs(p, hostname, s);
2100 }
2101
2102 AP_DECLARE(struct ap_logconf *) ap_new_log_config(apr_pool_t *p,
2103                                                   const struct ap_logconf *old)
2104 {
2105     struct ap_logconf *l = apr_pcalloc(p, sizeof(struct ap_logconf));
2106     if (old) {
2107         l->level = old->level;
2108         if (old->module_levels) {
2109             l->module_levels =
2110                 apr_pmemdup(p, old->module_levels, conf_vector_length);
2111         }
2112     }
2113     else {
2114         l->level = APLOG_UNSET;
2115     }
2116     return l;
2117 }
2118
2119 AP_DECLARE(void) ap_merge_log_config(const struct ap_logconf *old_conf,
2120                                      struct ap_logconf *new_conf)
2121 {
2122     if (new_conf->level != APLOG_UNSET) {
2123         /* Setting the main loglevel resets all per-module log levels.
2124          * I.e. if new->level has been set, we must ignore old->module_levels.
2125          */
2126         return;
2127     }
2128
2129     new_conf->level = old_conf->level;
2130     if (new_conf->module_levels == NULL) {
2131         new_conf->module_levels = old_conf->module_levels;
2132     }
2133     else if (old_conf->module_levels != NULL) {
2134         int i;
2135         for (i = 0; i < conf_vector_length; i++) {
2136             if (new_conf->module_levels[i] == APLOG_UNSET)
2137                 new_conf->module_levels[i] = old_conf->module_levels[i];
2138         }
2139     }
2140 }
2141
2142 AP_DECLARE(void) ap_fixup_virtual_hosts(apr_pool_t *p, server_rec *main_server)
2143 {
2144     server_rec *virt;
2145     core_dir_config *dconf = ap_get_module_config(main_server->lookup_defaults,
2146                                                   &core_module);
2147     dconf->log = &main_server->log;
2148
2149     for (virt = main_server->next; virt; virt = virt->next) {
2150         merge_server_configs(p, main_server->module_config,
2151                              virt->module_config);
2152
2153         virt->lookup_defaults =
2154             ap_merge_per_dir_configs(p, main_server->lookup_defaults,
2155                                      virt->lookup_defaults);
2156
2157         if (virt->server_admin == NULL)
2158             virt->server_admin = main_server->server_admin;
2159
2160         if (virt->timeout == 0)
2161             virt->timeout = main_server->timeout;
2162
2163         if (virt->keep_alive_timeout == 0)
2164             virt->keep_alive_timeout = main_server->keep_alive_timeout;
2165
2166         if (virt->keep_alive == -1)
2167             virt->keep_alive = main_server->keep_alive;
2168
2169         if (virt->keep_alive_max == -1)
2170             virt->keep_alive_max = main_server->keep_alive_max;
2171
2172         ap_merge_log_config(&main_server->log, &virt->log);
2173
2174         dconf = ap_get_module_config(virt->lookup_defaults, &core_module);
2175         dconf->log = &virt->log;
2176
2177         /* XXX: this is really something that should be dealt with by a
2178          * post-config api phase
2179          */
2180         ap_core_reorder_directories(p, virt);
2181     }
2182
2183     ap_core_reorder_directories(p, main_server);
2184 }
2185
2186 /*****************************************************************
2187  *
2188  * Getting *everything* configured...
2189  */
2190
2191 static void init_config_globals(apr_pool_t *p)
2192 {
2193     /* Global virtual host hash bucket pointers.  Init to null. */
2194     ap_init_vhost_config(p);
2195 }
2196
2197 static server_rec *init_server_config(process_rec *process, apr_pool_t *p)
2198 {
2199     apr_status_t rv;
2200     server_rec *s = (server_rec *) apr_pcalloc(p, sizeof(server_rec));
2201
2202     apr_file_open_stderr(&s->error_log, p);
2203     s->process = process;
2204     s->port = 0;
2205     s->server_admin = DEFAULT_ADMIN;
2206     s->server_hostname = NULL;
2207     s->server_scheme = NULL;
2208     s->error_fname = DEFAULT_ERRORLOG;
2209     s->log.level = DEFAULT_LOGLEVEL;
2210     s->log.module_levels = NULL;
2211     s->limit_req_line = DEFAULT_LIMIT_REQUEST_LINE;
2212     s->limit_req_fieldsize = DEFAULT_LIMIT_REQUEST_FIELDSIZE;
2213     s->limit_req_fields = DEFAULT_LIMIT_REQUEST_FIELDS;
2214     s->timeout = apr_time_from_sec(DEFAULT_TIMEOUT);
2215     s->keep_alive_timeout = apr_time_from_sec(DEFAULT_KEEPALIVE_TIMEOUT);
2216     s->keep_alive_max = DEFAULT_KEEPALIVE;
2217     s->keep_alive = 1;
2218     s->next = NULL;
2219     s->addrs = apr_pcalloc(p, sizeof(server_addr_rec));
2220
2221     /* NOT virtual host; don't match any real network interface */
2222     rv = apr_sockaddr_info_get(&s->addrs->host_addr,
2223                                NULL, APR_INET, 0, 0, p);
2224     if (rv != APR_SUCCESS) {
2225         /* should we test here for rv being an EAIERR? */
2226         ap_log_error(APLOG_MARK, APLOG_STARTUP|APLOG_CRIT, rv, NULL,
2227                      "initialisation: bug or getaddrinfo fail");
2228         return NULL;
2229     }
2230
2231     s->addrs->host_port = 0; /* matches any port */
2232     s->addrs->virthost = ""; /* must be non-NULL */
2233     s->names = s->wild_names = NULL;
2234
2235     s->module_config = create_server_config(p, s);
2236     s->lookup_defaults = create_default_per_dir_config(p);
2237
2238     return s;
2239 }
2240
2241
2242 static apr_status_t reset_conf_vector_length(void *dummy)
2243 {
2244     conf_vector_length = max_modules;
2245     return APR_SUCCESS;
2246 }
2247
2248 AP_DECLARE(server_rec*) ap_read_config(process_rec *process, apr_pool_t *ptemp,
2249                                        const char *filename,
2250                                        ap_directive_t **conftree)
2251 {
2252     const char *confname, *error;
2253     apr_pool_t *p = process->pconf;
2254     server_rec *s = init_server_config(process, p);
2255     if (s == NULL) {
2256         return s;
2257     }
2258
2259     init_config_globals(p);
2260
2261     /* All server-wide config files now have the SAME syntax... */
2262     error = process_command_config(s, ap_server_pre_read_config, conftree,
2263                                    p, ptemp);
2264     if (error) {
2265         ap_log_error(APLOG_MARK, APLOG_STARTUP|APLOG_CRIT, 0, NULL, "%s: %s",
2266                      ap_server_argv0, error);
2267         return NULL;
2268     }
2269
2270     /* process_command_config may change the ServerRoot so
2271      * compute this config file name afterwards.
2272      */
2273     confname = ap_server_root_relative(p, filename);
2274
2275     if (!confname) {
2276         ap_log_error(APLOG_MARK, APLOG_STARTUP|APLOG_CRIT,
2277                      APR_EBADPATH, NULL, "Invalid config file path %s",
2278                      filename);
2279         return NULL;
2280     }
2281
2282     error = ap_process_resource_config(s, confname, conftree, p, ptemp);
2283     if (error) {
2284         ap_log_error(APLOG_MARK, APLOG_STARTUP|APLOG_CRIT, 0, NULL,
2285                      "%s: %s", ap_server_argv0, error);
2286         return NULL;
2287     }
2288
2289     error = ap_check_mpm();
2290     if (error) {
2291         ap_log_error(APLOG_MARK, APLOG_STARTUP|APLOG_CRIT, 0, NULL,
2292                      "%s: Configuration error: %s", ap_server_argv0, error);
2293         return NULL;
2294     }
2295
2296     /*
2297      * We have loaded the dynamic modules. From now on we know exactly how
2298      * long the config vectors need to be.
2299      */
2300     conf_vector_length = total_modules;
2301     apr_pool_cleanup_register(p, NULL, reset_conf_vector_length,
2302                               apr_pool_cleanup_null);
2303
2304     error = process_command_config(s, ap_server_post_read_config, conftree,
2305                                    p, ptemp);
2306
2307     if (error) {
2308         ap_log_error(APLOG_MARK, APLOG_STARTUP|APLOG_CRIT, 0, NULL, "%s: %s",
2309                      ap_server_argv0, error);
2310         return NULL;
2311     }
2312
2313     return s;
2314 }
2315
2316 AP_DECLARE(void) ap_single_module_configure(apr_pool_t *p, server_rec *s,
2317                                             module *m)
2318 {
2319     if (m->create_server_config)
2320         ap_set_module_config(s->module_config, m,
2321                              (*m->create_server_config)(p, s));
2322
2323     if (m->create_dir_config)
2324         ap_set_module_config(s->lookup_defaults, m,
2325                              (*m->create_dir_config)(p, NULL));
2326 }
2327
2328 AP_DECLARE(void) ap_run_rewrite_args(process_rec *process)
2329 {
2330     module *m;
2331
2332     for (m = ap_top_module; m; m = m->next) {
2333         if (m->rewrite_args) {
2334             (*m->rewrite_args)(process);
2335         }
2336     }
2337 }
2338
2339 /********************************************************************
2340  * Configuration directives are restricted in terms of where they may
2341  * appear in the main configuration files and/or .htaccess files according
2342  * to the bitmask req_override in the command_rec structure.
2343  * If any of the overrides set in req_override are also allowed in the
2344  * context in which the command is read, then the command is allowed.
2345  * The context is determined as follows:
2346  *
2347  *    inside *.conf --> override = (RSRC_CONF|OR_ALL)&~(OR_AUTHCFG|OR_LIMIT);
2348  *    within <Directory> or <Location> --> override = OR_ALL|ACCESS_CONF;
2349  *    within .htaccess --> override = AllowOverride for current directory;
2350  *
2351  * the result is, well, a rather confusing set of possibilities for when
2352  * a particular directive is allowed to be used.  This procedure prints
2353  * in English where the given (pc) directive can be used.
2354  */
2355 static void show_overrides(const command_rec *pc, module *pm)
2356 {
2357     int n = 0;
2358
2359     printf("\tAllowed in *.conf ");
2360     if ((pc->req_override & (OR_OPTIONS | OR_FILEINFO | OR_INDEXES))
2361         || ((pc->req_override & RSRC_CONF)
2362         && ((pc->req_override & (ACCESS_CONF | OR_AUTHCFG | OR_LIMIT))))) {
2363         printf("anywhere");
2364     }
2365     else if (pc->req_override & RSRC_CONF) {
2366         printf("only outside <Directory>, <Files> or <Location>");
2367     }
2368     else {
2369         printf("only inside <Directory>, <Files> or <Location>");
2370     }
2371
2372     /* Warn if the directive is allowed inside <Directory> or .htaccess
2373      * but module doesn't support per-dir configuration
2374      */
2375     if ((pc->req_override & (OR_ALL | ACCESS_CONF)) && !pm->create_dir_config)
2376         printf(" [no per-dir config]");
2377
2378     if (pc->req_override & OR_ALL) {
2379         printf(" and in .htaccess\n\twhen AllowOverride");
2380
2381         if ((pc->req_override & OR_ALL) == OR_ALL) {
2382             printf(" isn't None");
2383         }
2384         else {
2385             printf(" includes ");
2386
2387             if (pc->req_override & OR_AUTHCFG) {
2388                 if (n++)
2389                     printf(" or ");
2390
2391                 printf("AuthConfig");
2392             }
2393
2394             if (pc->req_override & OR_LIMIT) {
2395                 if (n++)
2396                     printf(" or ");
2397
2398                 printf("Limit");
2399             }
2400
2401             if (pc->req_override & OR_OPTIONS) {
2402                 if (n++)
2403                     printf(" or ");
2404
2405                 printf("Options");
2406             }
2407
2408             if (pc->req_override & OR_FILEINFO) {
2409                 if (n++)
2410                     printf(" or ");
2411
2412                 printf("FileInfo");
2413             }
2414
2415             if (pc->req_override & OR_INDEXES) {
2416                 if (n++)
2417                     printf(" or ");
2418
2419                 printf("Indexes");
2420             }
2421         }
2422     }
2423
2424     printf("\n");
2425 }
2426
2427 /* Show the preloaded configuration directives, the help string explaining
2428  * the directive arguments, in what module they are handled, and in
2429  * what parts of the configuration they are allowed.  Used for httpd -L.
2430  */
2431 AP_DECLARE(void) ap_show_directives(void)
2432 {
2433     const command_rec *pc;
2434     int n;
2435
2436     for (n = 0; ap_loaded_modules[n]; ++n) {
2437         for (pc = ap_loaded_modules[n]->cmds; pc && pc->name; ++pc) {
2438             printf("%s (%s)\n", pc->name, ap_loaded_modules[n]->name);
2439
2440             if (pc->errmsg)
2441                 printf("\t%s\n", pc->errmsg);
2442
2443             show_overrides(pc, ap_loaded_modules[n]);
2444         }
2445     }
2446 }
2447
2448 /* Show the preloaded module names.  Used for httpd -l. */
2449 AP_DECLARE(void) ap_show_modules(void)
2450 {
2451     int n;
2452
2453     printf("Compiled in modules:\n");
2454     for (n = 0; ap_loaded_modules[n]; ++n)
2455         printf("  %s\n", ap_loaded_modules[n]->name);
2456 }
2457
2458 AP_DECLARE(void *) ap_retained_data_get(const char *key)
2459 {
2460     void *retained;
2461
2462     apr_pool_userdata_get((void *)&retained, key, ap_pglobal);
2463     return retained;
2464 }
2465
2466 AP_DECLARE(void *) ap_retained_data_create(const char *key, apr_size_t size)
2467 {
2468     void *retained;
2469
2470     retained = apr_pcalloc(ap_pglobal, size);
2471     apr_pool_userdata_set((const void *)retained, key, apr_pool_cleanup_null, ap_pglobal);
2472     return retained;
2473 }