]> granicus.if.org Git - apache/blob - include/http_config.h
Clean up namespace badness with s/configfile_t/ap_configfile_t/
[apache] / include / http_config.h
1 /* ====================================================================
2  * The Apache Software License, Version 1.1
3  *
4  * Copyright (c) 2000-2001 The Apache Software Foundation.  All rights
5  * reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  *
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  *
19  * 3. The end-user documentation included with the redistribution,
20  *    if any, must include the following acknowledgment:
21  *       "This product includes software developed by the
22  *        Apache Software Foundation (http://www.apache.org/)."
23  *    Alternately, this acknowledgment may appear in the software itself,
24  *    if and wherever such third-party acknowledgments normally appear.
25  *
26  * 4. The names "Apache" and "Apache Software Foundation" must
27  *    not be used to endorse or promote products derived from this
28  *    software without prior written permission. For written
29  *    permission, please contact apache@apache.org.
30  *
31  * 5. Products derived from this software may not be called "Apache",
32  *    nor may "Apache" appear in their name, without prior written
33  *    permission of the Apache Software Foundation.
34  *
35  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
36  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
37  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
38  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
39  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
41  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
42  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
43  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
44  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
45  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
46  * SUCH DAMAGE.
47  * ====================================================================
48  *
49  * This software consists of voluntary contributions made by many
50  * individuals on behalf of the Apache Software Foundation.  For more
51  * information on the Apache Software Foundation, please see
52  * <http://www.apache.org/>.
53  *
54  * Portions of this software are based upon public domain software
55  * originally written at the National Center for Supercomputing Applications,
56  * University of Illinois, Urbana-Champaign.
57  */
58
59 #ifndef APACHE_HTTP_CONFIG_H
60 #define APACHE_HTTP_CONFIG_H
61
62 #include "apr_hooks.h"
63 #include "util_cfgtree.h"
64
65 #ifdef __cplusplus
66 extern "C" {
67 #endif
68
69 /**
70  * @package Apache Configuration
71  */
72
73 /*
74  * The central data structures around here...
75  */
76
77 /* Command dispatch structures... */
78
79 /**
80  * How the directives arguments should be parsed.
81  * @tip Note that for all of these except RAW_ARGS, the config routine is
82  *      passed a freshly allocated string which can be modified or stored
83  *      or whatever... it's only necessary to do pstrdup() stuff with
84  * <PRE>
85  *    RAW_ARGS  --               cmd_func parses command line itself 
86  *    TAKE1     --               one argument only 
87  *    TAKE2     --               two arguments only 
88  *    ITERATE   --               one argument, occuring multiple times
89  *                               * (e.g., IndexIgnore)
90  *    ITERATE2  --               two arguments, 2nd occurs multiple times
91  *                               * (e.g., AddIcon)
92  *    FLAG      --               One of 'On' or 'Off' 
93  *    NO_ARGS   --               No args at all, e.g. </Directory> 
94  *    TAKE12    --               one or two arguments 
95  *    TAKE3     --               three arguments only 
96  *    TAKE23    --               two or three arguments
97  *    TAKE123   --               one, two or three arguments 
98  *    TAKE13    --               one or three arguments 
99  * </PRE>
100  * @defvar enum cmd_how
101  */
102 enum cmd_how {
103     RAW_ARGS,                   /* cmd_func parses command line itself */
104     TAKE1,                      /* one argument only */
105     TAKE2,                      /* two arguments only */
106     ITERATE,                    /* one argument, occuring multiple times
107                                  * (e.g., IndexIgnore)
108                                  */
109     ITERATE2,                   /* two arguments, 2nd occurs multiple times
110                                  * (e.g., AddIcon)
111                                  */
112     FLAG,                       /* One of 'On' or 'Off' */
113     NO_ARGS,                    /* No args at all, e.g. </Directory> */
114     TAKE12,                     /* one or two arguments */
115     TAKE3,                      /* three arguments only */
116     TAKE23,                     /* two or three arguments */
117     TAKE123,                    /* one, two or three arguments */
118     TAKE13                      /* one or three arguments */
119 };
120
121 typedef struct cmd_parms_struct cmd_parms;
122
123 #ifdef AP_DEBUG
124
125 typedef union {
126     const char *(*no_args) (cmd_parms *parms, void *mconfig);
127     const char *(*raw_args) (cmd_parms *parms, void *mconfig,
128                              const char *args);
129     const char *(*take1) (cmd_parms *parms, void *mconfig, const char *w);
130     const char *(*take2) (cmd_parms *parms, void *mconfig, const char *w,
131                           const char *w2);
132     const char *(*take3) (cmd_parms *parms, void *mconfig, const char *w,
133                           const char *w2, const char *w3);
134     const char *(*flag) (cmd_parms *parms, void *mconfig, int on);
135 } cmd_func;
136
137 # define AP_NO_ARGS     func.no_args
138 # define AP_RAW_ARGS    func.raw_args
139 # define AP_TAKE1       func.take1
140 # define AP_TAKE2       func.take2
141 # define AP_TAKE3       func.take3
142 # define AP_FLAG        func.flag
143
144 # define AP_INIT_NO_ARGS(directive, func, mconfig, where, help) \
145     { directive, { .no_args=func }, mconfig, where, RAW_ARGS, help }
146 # define AP_INIT_RAW_ARGS(directive, func, mconfig, where, help) \
147     { directive, { .raw_args=func }, mconfig, where, RAW_ARGS, help }
148 # define AP_INIT_TAKE1(directive, func, mconfig, where, help) \
149     { directive, { .take1=func }, mconfig, where, TAKE1, help }
150 # define AP_INIT_ITERATE(directive, func, mconfig, where, help) \
151     { directive, { .take1=func }, mconfig, where, ITERATE, help }
152 # define AP_INIT_TAKE2(directive, func, mconfig, where, help) \
153     { directive, { .take2=func }, mconfig, where, TAKE2, help }
154 # define AP_INIT_TAKE12(directive, func, mconfig, where, help) \
155     { directive, { .take2=func }, mconfig, where, TAKE12, help }
156 # define AP_INIT_ITERATE2(directive, func, mconfig, where, help) \
157     { directive, { .take2=func }, mconfig, where, ITERATE2, help }
158 # define AP_INIT_TAKE23(directive, func, mconfig, where, help) \
159     { directive, { .take3=func }, mconfig, where, TAKE23, help }
160 # define AP_INIT_TAKE3(directive, func, mconfig, where, help) \
161     { directive, { .take3=func }, mconfig, where, TAKE3, help }
162 # define AP_INIT_FLAG(directive, func, mconfig, where, help) \
163     { directive, { .flag=func }, mconfig, where, FLAG, help }
164
165 #else
166
167 typedef const char *(*cmd_func) ();
168
169 # define AP_NO_ARGS  func
170 # define AP_RAW_ARGS func
171 # define AP_TAKE1    func
172 # define AP_TAKE2    func
173 # define AP_TAKE3    func
174 # define AP_FLAG     func
175
176 # define AP_INIT_NO_ARGS(directive, func, mconfig, where, help) \
177     { directive, func, mconfig, where, RAW_ARGS, help }
178 # define AP_INIT_RAW_ARGS(directive, func, mconfig, where, help) \
179     { directive, func, mconfig, where, RAW_ARGS, help }
180 # define AP_INIT_TAKE1(directive, func, mconfig, where, help) \
181     { directive, func, mconfig, where, TAKE1, help }
182 # define AP_INIT_ITERATE(directive, func, mconfig, where, help) \
183     { directive, func, mconfig, where, ITERATE, help }
184 # define AP_INIT_TAKE2(directive, func, mconfig, where, help) \
185     { directive, func, mconfig, where, TAKE2, help }
186 # define AP_INIT_TAKE12(directive, func, mconfig, where, help) \
187     { directive, func, mconfig, where, TAKE12, help }
188 # define AP_INIT_ITERATE2(directive, func, mconfig, where, help) \
189     { directive, func, mconfig, where, ITERATE2, help }
190 # define AP_INIT_TAKE23(directive, func, mconfig, where, help) \
191     { directive, func, mconfig, where, TAKE23, help }
192 # define AP_INIT_TAKE3(directive, func, mconfig, where, help) \
193     { directive, func, mconfig, where, TAKE3, help }
194 # define AP_INIT_FLAG(directive, func, mconfig, where, help) \
195     { directive, func, mconfig, where, FLAG, help }
196
197 #endif
198
199 typedef struct command_struct command_rec; 
200 /**
201  * The command record structure.  Each modules can define a table of these
202  * to define the directives it will implement.
203  */
204 struct command_struct {
205     /** Name of this command */
206     const char *name;
207     /** The function to be called when this directive is parsed */
208     cmd_func func;
209     /** Extra data, for functions which implement multiple commands... */
210     void *cmd_data;             
211     /** What overrides need to be allowed to enable this command. */
212     int req_override;
213     /** What the command expects as arguments 
214      *  @defvar cmd_how args_how*/
215     enum cmd_how args_how;
216
217     /** 'usage' message, in case of syntax errors */
218     const char *errmsg;
219 };
220
221 /* The allowed locations for a configuration directive are the union of
222  * those indicated by each set bit in the req_override mask.
223  *
224  * (req_override & RSRC_CONF)   => *.conf outside <Directory> or <Location>
225  * (req_override & ACCESS_CONF) => *.conf inside <Directory> or <Location>
226  * (req_override & OR_AUTHCFG)  => *.conf inside <Directory> or <Location>
227  *                                 and .htaccess when AllowOverride AuthConfig
228  * (req_override & OR_LIMIT)    => *.conf inside <Directory> or <Location>
229  *                                 and .htaccess when AllowOverride Limit
230  * (req_override & OR_OPTIONS)  => *.conf anywhere
231  *                                 and .htaccess when AllowOverride Options
232  * (req_override & OR_FILEINFO) => *.conf anywhere
233  *                                 and .htaccess when AllowOverride FileInfo
234  * (req_override & OR_INDEXES)  => *.conf anywhere
235  *                                 and .htaccess when AllowOverride Indexes
236  */
237 #define OR_NONE 0
238 #define OR_LIMIT 1
239 #define OR_OPTIONS 2
240 #define OR_FILEINFO 4
241 #define OR_AUTHCFG 8
242 #define OR_INDEXES 16
243 #define OR_UNSET 32
244 #define ACCESS_CONF 64
245 #define RSRC_CONF 128
246 #define EXEC_ON_READ 256
247 #define OR_ALL (OR_LIMIT|OR_OPTIONS|OR_FILEINFO|OR_AUTHCFG|OR_INDEXES)
248
249 /**
250  * This can be returned by a function if they don't wish to handle
251  * a command. Make it something not likely someone will actually use
252  * as an error code.
253  * @defvar DECLINE_CMD "\a\b"
254  */
255 #define DECLINE_CMD "\a\b"
256
257 typedef struct ap_configfile_t ap_configfile_t;
258 /** Common structure for reading of config files / passwd files etc. */
259 struct ap_configfile_t {
260     /** a getc()-like function
261      *  @deffunc int getch(void *param) */
262     int (*getch) (void *param); 
263     /** a fgets()-like function 
264      *  @deffunc void *getstr(void *buf, size_t bufsize, void *param)*/
265     void *(*getstr) (void *buf, size_t bufsiz, void *param);
266     /** a close hander function 
267      *  @deffunc int close(void *param)*/
268     int (*close) (void *param); 
269     /** the argument passed to getch/getstr/close */
270     void *param;
271     /** the filename / description */
272     const char *name;
273     /** current line number, starting at 1 */
274     unsigned line_number;
275 };
276
277 /**
278  * This structure is passed to a command which is being invoked,
279  * to carry a large variety of miscellaneous data which is all of
280  * use to *somebody*...
281  */
282 struct cmd_parms_struct {
283     /** Argument to command from cmd_table */
284     void *info;
285     /** Which allow-override bits are set */
286     int override;
287     /** Which methods are <Limit>ed */
288     int limited;
289     apr_array_header_t *limited_xmethods;
290     ap_method_list_t *xlimited;
291
292     /** Config file structure. */
293     ap_configfile_t *config_file;
294     /** the directive specifying this command */
295     ap_directive_t *directive;
296
297     /** Pool to allocate new storage in */
298     apr_pool_t *pool;
299     /** Pool for scratch memory; persists during configuration, but 
300      *  wiped before the first request is served...  */
301     apr_pool_t *temp_pool;
302     /** Server_rec being configured for */
303     server_rec *server;
304     /** If configuring for a directory, pathname of that directory.  
305      *  NOPE!  That's what it meant previous to the existance of <Files>, 
306      * <Location> and regex matching.  Now the only usefulness that can be 
307      * derived from this field is whether a command is being called in a 
308      * server context (path == NULL) or being called in a dir context 
309      * (path != NULL).  */
310     char *path;
311     /** configuration command */
312     const command_rec *cmd;
313
314     /** per_dir_config vector passed to handle_command */
315     struct ap_conf_vector_t *context;
316     /** directive with syntax error */
317     const ap_directive_t *err_directive;
318 };
319
320 typedef struct module_struct module;
321 /**
322  * Module structures.  Just about everything is dispatched through
323  * these, directly or indirectly (through the command and handler
324  * tables).
325  */
326 struct module_struct {
327     /** API version, *not* module version; check that module is 
328      * compatible with this version of the server.
329      */
330     int version;
331     /** API minor version. Provides API feature milestones. Not checked 
332      *  during module init */
333     int minor_version;
334     /** Index to this modules structures in config vectors.  */
335     int module_index;
336
337     /** The name of the module's C file */
338     const char *name;
339     /** The handle for the DSO.  Internal use only */
340     void *dynamic_load_handle;
341
342     /** A pointer to the next module in the list
343      *  @defvar module_struct *next */
344     struct module_struct *next;
345
346     /** Magic Cookie to identify a module structure;  It's mainly 
347      *  important for the DSO facility (see also mod_so).  */
348     unsigned long magic;
349
350     /** Function to allow MPMs to re-write command line arguments.  This
351      *  hook is only available to MPMs.
352      *  @param The process that the server is running in.
353      *  @deffunc void rewrite_args(process_rec *process);
354      */
355     void (*rewrite_args) (process_rec *process);
356     /** Function to allow all modules to create per directory configuration
357      *  structures.
358      *  @param p The pool to use for all allocations.
359      *  @param dir The directory currently being processed.
360      *  @return The per-directory structure created
361      *  @deffunc void *create_dir_config(apr_pool_t *p, char *dir)
362      */
363     void *(*create_dir_config) (apr_pool_t *p, char *dir);
364     /** Function to allow all modules to merge the per directory configuration
365      *  structures for two directories.
366      *  @param p The pool to use for all allocations.
367      *  @param base_conf The directory structure created for the parent directory.
368      *  @param new_conf The directory structure currently being processed.
369      *  @return The new per-directory structure created
370      *  @deffunc void *merge_dir_config(apr_pool_t *p, void *base_conf, void *new_conf)
371      */
372     void *(*merge_dir_config) (apr_pool_t *p, void *base_conf, void *new_conf);
373     /** Function to allow all modules to create per server configuration
374      *  structures.
375      *  @param p The pool to use for all allocations.
376      *  @param s The server currently being processed.
377      *  @return The per-server structure created
378      *  @deffunc void *create_server_config(apr_pool_t *p, server_rec *dir)
379      */
380     void *(*create_server_config) (apr_pool_t *p, server_rec *s);
381     /** Function to allow all modules to merge the per server configuration
382      *  structures for two servers.
383      *  @param p The pool to use for all allocations.
384      *  @param base_conf The directory structure created for the parent directory.
385      *  @param new_conf The directory structure currently being processed.
386      *  @return The new per-directory structure created
387      *  @deffunc void *merge_dir_config(apr_pool_t *p, void *base_conf, void *new_conf)
388      */
389     void *(*merge_server_config) (apr_pool_t *p, void *base_conf, void *new_conf);
390
391     /** A command_rec table that describes all of the directives this module
392      * defines. */
393     const command_rec *cmds;
394
395     /** A hook to allow modules to hook other points in the request processing.
396      *  In this function, modules should call the ap_hook_*() functions to
397      *  register an interest in a specific step in processing the current
398      *  request.
399      *  @param p the pool to use for all allocations
400      *  @deffunc void register_hooks(void)
401      */
402     void (*register_hooks) (apr_pool_t *p);
403 };
404
405 /* Initializer for the first few module slots, which are only
406  * really set up once we start running.  Note that the first two slots
407  * provide a version check; this should allow us to deal with changes to
408  * the API. The major number should reflect changes to the API handler table
409  * itself or removal of functionality. The minor number should reflect
410  * additions of functionality to the existing API. (the server can detect
411  * an old-format module, and either handle it back-compatibly, or at least
412  * signal an error). See src/include/ap_mmn.h for MMN version history.
413  */
414
415 #define STANDARD_MODULE_STUFF   this_module_needs_to_be_ported_to_apache_2_0
416
417 #define STANDARD20_MODULE_STUFF MODULE_MAGIC_NUMBER_MAJOR, \
418                                 MODULE_MAGIC_NUMBER_MINOR, \
419                                 -1, \
420                                 __FILE__, \
421                                 NULL, \
422                                 NULL, \
423                                 MODULE_MAGIC_COOKIE, \
424                                 NULL      /* rewrite args spot */
425
426 #define MPM20_MODULE_STUFF      MODULE_MAGIC_NUMBER_MAJOR, \
427                                 MODULE_MAGIC_NUMBER_MINOR, \
428                                 -1, \
429                                 __FILE__, \
430                                 NULL, \
431                                 NULL, \
432                                 MODULE_MAGIC_COOKIE
433
434
435 /* CONFIGURATION VECTOR FUNCTIONS */
436
437 typedef struct ap_conf_vector_t ap_conf_vector_t;
438
439 #ifdef AP_DEBUG
440 /**
441  * Generic accessors for other modules to get at their own module-specific
442  * data
443  * @param conf_vector The vector in which the modules configuration is stored.
444  *        usually r->per_dir_config or s->module_config
445  * @param m The module to get the data for.
446  * @return The module-specific data
447  * @deffunc void *ap_get_module_config(const ap_conf_vector_t *cv, module *m)
448  */
449 AP_DECLARE(void *) ap_get_module_config(const ap_conf_vector_t *cv,
450                                         const module *m);
451
452 /**
453  * Generic accessors for other modules to set at their own module-specific
454  * data
455  * @param conf_vector The vector in which the modules configuration is stored.
456  *        usually r->per_dir_config or s->module_config
457  * @param m The module to set the data for.
458  * @param val The module-specific data to set
459  * @deffunc void ap_set_module_config(ap_conf_vector_t *cv, const module *m, void *val)
460  */
461 AP_DECLARE(void) ap_set_module_config(ap_conf_vector_t *cv, const module *m,
462                                       void *val);
463
464 #else /* AP_DEBUG */
465
466 #define ap_get_module_config(v,m)       \
467     (((void **)(v))[(m)->module_index])
468 #define ap_set_module_config(v,m,val)   \
469     ((((void **)(v))[(m)->module_index]) = (val))
470
471 #endif /* AP_DEBUG */
472
473
474 /**
475  * Generic command handling function for strings
476  * @param cmd The command parameters for this directive
477  * @param struct_ptr pointer into a given type
478  * @param arg The argument to the directive
479  * @return An error string or NULL on success
480  * @deffunc const char *ap_set_string_slot(cmd_parms *cmd, void *struct_ptr, const char *arg)
481  */
482 AP_DECLARE_NONSTD(const char *) ap_set_string_slot(cmd_parms *cmd, void *struct_ptr,
483                                                    const char *arg);
484
485 /**
486  * Return true if the specified method is limited by being listed in
487  * a <Limit> container, or by *not* being listed in a <LimiteExcept>
488  * container.
489  *
490  * @param   method  Pointer to a string specifying the method to check.
491  * @param   cmd     Pointer to the cmd_parms structure passed to the
492  *                  directive handler.
493  * @return  0 if the method is not limited in the current scope
494  * @deffunc ap_method_is_limited(cmd_parms *cmd, const char *method)
495  */
496 AP_DECLARE(int) ap_method_is_limited(cmd_parms *cmd, const char *method);
497
498 /**
499  * Generic command handling function for strings, always sets the value
500  * to a lowercase string
501  * @param cmd The command parameters for this directive
502  * @param struct_ptr pointer into a given type
503  * @param arg The argument to the directive
504  * @return An error string or NULL on success
505  * @deffunc const char *ap_set_string_slot_lower(cmd_parms *cmd, void *struct_ptr, const char *arg)
506  */
507 AP_DECLARE_NONSTD(const char *) ap_set_string_slot_lower(cmd_parms *cmd, 
508                                                          void *struct_ptr, const char *arg);
509 /**
510  * Generic command handling function for flags
511  * @param cmd The command parameters for this directive
512  * @param struct_ptr pointer into a given type
513  * @param arg The argument to the directive (either 1 or 0)
514  * @return An error string or NULL on success
515  * @deffunc const char *ap_set_flag_slot(cmd_parms *cmd, void *struct_ptr, int arg)
516  */
517 AP_DECLARE_NONSTD(const char *) ap_set_flag_slot(cmd_parms *cmd, void *struct_ptr, int arg);
518 /**
519  * Generic command handling function for files
520  * @param cmd The command parameters for this directive
521  * @param struct_ptr pointer into a given type
522  * @param arg The argument to the directive
523  * @return An error string or NULL on success
524  * @deffunc const char *ap_set_file_slot(cmd_parms *cmd, void *struct_ptr, const char *arg)
525  */
526 AP_DECLARE_NONSTD(const char *) ap_set_file_slot(cmd_parms *cmd, void *struct_ptr, const char *arg);
527
528 /**
529  * For modules which need to read config files, open logs, etc. ...
530  * this returns the fname argument if it begins with '/'; otherwise
531  * it relativizes it wrt server_root.
532  * @param p pool to allocate data out of
533  * @param fname The file name
534  * @deffunc const char *ap_server_root_relative(apr_pool_t *p, const char *fname)
535  */
536 AP_DECLARE(const char *) ap_server_root_relative(apr_pool_t *p, const char *fname);
537
538 /* Finally, the hook for dynamically loading modules in... */
539
540 /**
541  * Add a module to the server
542  * @param m The module structure of the module to add
543  * @param p The pool of the same lifetime as the module
544  * @deffunc void ap_add_module(module *m, apr_pool_t *p)
545  */
546 AP_DECLARE(void) ap_add_module(module *m, apr_pool_t *p);
547
548 /**
549  * Remove a module from the server.  There are some caveats:
550  * when the module is removed, its slot is lost so all the current
551  * per-dir and per-server configurations are invalid. So we should
552  * only ever call this function when you are invalidating almost
553  * all our current data. I.e. when doing a restart.
554  * @param m the module structure of the module to remove
555  * @deffunc void ap_remove_module(module *m)
556  */
557 AP_DECLARE(void) ap_remove_module(module *m);
558 /**
559  * Add a module to the chained modules list and the list of loaded modules
560  * @param m The module structure of the module to add
561  * @param p The pool with the same lifetime as the module
562  * @deffunc void ap_add_loaded_module(module *m, apr_pool_t *p)
563  */
564 AP_DECLARE(void) ap_add_loaded_module(module *mod, apr_pool_t *p);
565 /**
566  * Remove a module fromthe chained modules list and the list of loaded modules
567  * @param m the module structure of the module to remove
568  * @deffunc void ap_remove_loaded_module(module *m)
569  */
570 AP_DECLARE(void) ap_remove_loaded_module(module *mod);
571 /**
572  * Add a module to the list of loaded module based on the name of the
573  * module
574  * @param name The name of the module
575  * @param p The pool valid for the lifetime of the module
576  * @return 1 on success, 0 on failure
577  * @deffunc int ap_add_named_module(const char *name, apr_pool_t *p)
578  */
579 AP_DECLARE(int) ap_add_named_module(const char *name, apr_pool_t *p);
580 /**
581  * Find the name of the specified module
582  * @param m The module to get the name for
583  * @return the name of the module
584  * @deffunc const char *ap_find_module_name(module *m)
585  */
586 AP_DECLARE(const char *) ap_find_module_name(module *m);
587 /**
588  * Find a module based on the name of the module
589  * @param name the name of the module
590  * @return the module structure if found, NULL otherwise
591  * @deffunc module *ap_find_linked_module(const char *name)
592  */
593 AP_DECLARE(module *) ap_find_linked_module(const char *name);
594
595 /**
596  * Open a ap_configfile_t as apr_file_t
597  * @param ret_cfg open ap_configfile_t struct pointer
598  * @param p The pool to allocate the structure out of
599  * @param name the name of the file to open
600  * @deffunc apr_status_t ap_pcfg_openfile(ap_configfile_t **ret_cfg, apr_pool_t *p, const char *name)
601  */
602 AP_DECLARE(apr_status_t) ap_pcfg_openfile(ap_configfile_t **ret_cfg, apr_pool_t *p, const char *name);
603
604 /**
605  * Allocate a ap_configfile_t handle with user defined functions and params 
606  * @param p The pool to allocate out of
607  * @param descr The name of the file
608  * @param param The argument passed to getch/getstr/close
609  * @param getc_func The getch function
610  * @param gets_func The getstr function
611  * @param close_func The close function
612  * @deffunc ap_configfile_t *ap_pcfg_open_custom(apr_pool_t *p, const char *descr, void *param, int(*getc_func)(void*), void *(*gets_func) (void *buf, size_t bufsiz, void *param), int(*close_func)(void *param))
613  */
614 AP_DECLARE(ap_configfile_t *) ap_pcfg_open_custom(apr_pool_t *p, const char *descr,
615     void *param,
616     int(*getc_func)(void*),
617     void *(*gets_func) (void *buf, size_t bufsiz, void *param),
618     int(*close_func)(void *param));
619
620 /**
621  * Read one line from open ap_configfile_t, strip LF, increase line number
622  * @param buf place to store the line read
623  * @param bufsize size of the buffer
624  * @param cfp File to read from
625  * @return 1 on success, 0 on failure
626  * @deffunc int ap_cfg_getline(char *buf, size_t bufsize, ap_configfile_t *cfp)
627  */
628 AP_DECLARE(int) ap_cfg_getline(char *buf, size_t bufsize, ap_configfile_t *cfp);
629
630 /**
631  * Detach from open ap_configfile_t, calling the close handler
632  * @param cfp The file to close
633  * @return 1 on sucess, 0 on failure
634  * @deffunc int ap_cfg_closefile(ap_configfile_t *cfp)
635  */
636 AP_DECLARE(int) ap_cfg_closefile(ap_configfile_t *cfp);
637
638 /**
639  * Read all data between the current <foo> and the matching </foo>.  All
640  * of this data is forgotten immediately.  
641  * @param cmd The cmd_parms to pass to the directives inside the container
642  * @param directive The directive name to read until
643  * @retrn Error string on failure, NULL on success
644  * @deffunc const char *ap_soak_end_container(cmd_parms *cmd, char *directive)
645  */
646 AP_DECLARE(const char *) ap_soak_end_container(cmd_parms *cmd, char *directive);
647
648 /**
649  * Read all data between the current <foo> and the matching </foo> and build
650  * a config tree out of it
651  * @param p pool to allocate out of
652  * @param temp_pool Temporary pool to allocate out of
653  * @param parms The cmd_parms to pass to all directives read
654  * @param current The current node in the tree
655  * @param curr_parent The current parent node
656  * @param orig_directive The directive to read until hit.
657  * @return Error string on failure, NULL on success
658  * @deffunc char *ap_build_cont_config(apr_pool_t *p, apr_pool_t *temp_pool, cmd_parms *parms, ap_directive_t **current, ap_directive_t **curr_parent, char *orig_directive)
659 */
660 const char * ap_build_cont_config(apr_pool_t *p, apr_pool_t *temp_pool,
661                                   cmd_parms *parms,
662                                   ap_directive_t **current,
663                                   ap_directive_t **curr_parent,
664                                   char *orig_directive);
665
666 /**
667  * Build a config tree from a config file
668  * @param parms The cmd_parms to pass to all of the directives in the file
669  * @param conf_pool The pconf pool
670  * @param temp_pool The temporary pool
671  * @param conftree Place to store the root node of the config tree
672  * @return Error string on erro, NULL otherwise
673  * @deffunc const char *ap_build_config(cmd_parms *parms, apr_pool_t *conf_pool, apr_pool_t *temp_pool, ap_directive_t **conftree)
674  */
675 AP_DECLARE(const char *) ap_build_config(cmd_parms *parms,
676                                          apr_pool_t *conf_pool,
677                                          apr_pool_t *temp_pool,
678                                          ap_directive_t **conftree);
679
680 /**
681  * Walk a config tree and setup the server's internal structures
682  * @param conftree The config tree to walk
683  * @param parms The cmd_parms to pass to all functions
684  * @param section_vector The per-section config vector.
685  * @return Error string on error, NULL otherwise
686  * @deffunc const char *ap_walk_config(ap_directive_t *conftree, cmd_parms *parms, ap_conf_vector_t *section_vector)
687  */
688 AP_DECLARE(const char *) ap_walk_config(ap_directive_t *conftree,
689                                         cmd_parms *parms,
690                                         ap_conf_vector_t *section_vector);
691
692 /**
693  * ap_check_cmd_context() definitions: 
694  * @param cmd The cmd_context to check
695  * @param forbidden Where the command is forbidden.  One of:
696  * <PRE>
697  *                NOT_IN_VIRTUALHOST
698  *                NOT_IN_LIMIT
699  *                NOT_IN_DIRECTORY
700  *                NOT_IN_LOCATION
701  *                NOT_IN_FILES
702  *                NOT_IN_DIR_LOC_FILE
703  *                GLOBAL_ONLY
704  * </PRE>
705  * @return Error string on error, NULL on success
706  * @deffunc const char *ap_check_cmd_context(cmd_parms *cmd, unsigned forbidden)
707  */
708 AP_DECLARE(const char *) ap_check_cmd_context(cmd_parms *cmd, unsigned forbidden);
709
710 /* ap_check_cmd_context():              Forbidden in: */
711 #define  NOT_IN_VIRTUALHOST     0x01 /* <Virtualhost> */
712 #define  NOT_IN_LIMIT           0x02 /* <Limit> */
713 #define  NOT_IN_DIRECTORY       0x04 /* <Directory> */
714 #define  NOT_IN_LOCATION        0x08 /* <Location> */
715 #define  NOT_IN_FILES           0x10 /* <Files> */
716 #define  NOT_IN_DIR_LOC_FILE    (NOT_IN_DIRECTORY|NOT_IN_LOCATION|NOT_IN_FILES) /* <Directory>/<Location>/<Files>*/
717 #define  GLOBAL_ONLY            (NOT_IN_VIRTUALHOST|NOT_IN_LIMIT|NOT_IN_DIR_LOC_FILE)
718
719
720 #ifdef CORE_PRIVATE
721
722 /**
723  * The topmost module in the list
724  * @defvar module *top_module
725  */
726 AP_DECLARE_DATA extern module *top_module;
727
728 /**
729  * Array of all statically linked modules
730  * @defvar module *ap_prelinked_modules[]
731  */
732 AP_DECLARE_DATA extern module *ap_prelinked_modules[];
733 /**
734  * Array of all preloaded modules
735  * @defvar module *ap_preloaded_modules[]
736  */
737 AP_DECLARE_DATA extern module *ap_preloaded_modules[];
738 /**
739  * Array of all loaded modules
740  * @defvar module **ap_loaded_modules
741  */
742 AP_DECLARE_DATA extern module **ap_loaded_modules;
743
744 /* For mod_so.c... */
745 /** Run a single module's two create_config hooks
746  *  @param p the pool to allocate out of
747  *  @param s The server to configure for.
748  *  @param m The module to configure
749  */
750 AP_DECLARE(void) ap_single_module_configure(apr_pool_t *p, server_rec *s, 
751                                             module *m);
752
753 /* For http_main.c... */
754 /**
755  * Add all of the prelinked modules into the loaded module list
756  * @param process The process that is currently running the server
757  * @deffunc void ap_setup_prelinked_modules(process_rec *process)
758  */
759 AP_DECLARE(void) ap_setup_prelinked_modules(process_rec *process);
760
761 /**
762  *Show the preloaded configuration directives, the help string explaining
763  * the directive arguments, in what module they are handled, and in
764  * what parts of the configuration they are allowed.  Used for httpd -h.
765  * @deffunc void ap_show_directives(void)
766  */
767 AP_DECLARE(void) ap_show_directives(void);
768
769 /** 
770  * Show the preloaded module names.  Used for httpd -l. 
771  * @deffunc void ap_show_modules(void)
772  */
773 AP_DECLARE(void) ap_show_modules(void);
774
775 /**
776  * Read all config files and setup the server
777  * @param process The process running the server
778  * @param temp_pool A pool to allocate temporary data out of.
779  * @param config_name The name of the config file
780  * @param conftree Place to store the root of the config tree
781  * @return The setup server_rec list.
782  * @deffunc server_rec *ap_read_config(process_rec *process, apr_pool_t *temp_pool, const char *config_name, ap_directive_t **conftree)
783  */
784 AP_DECLARE(server_rec *) ap_read_config(process_rec *process, apr_pool_t *temp_pool, const char *config_name, ap_directive_t **conftree);
785
786 /**
787  * Run all rewrite args hooks for loaded modules
788  * @param process The process currently running the server
789  * @deffunc void ap_run_rewrite_args(process_rec *process)
790  */
791 AP_DECLARE(void) ap_run_rewrite_args(process_rec *process);
792
793 /**
794  * Run the register hooks function for a specified module
795  * @param m The module to run the register hooks function fo
796  * @param p The pool valid for the lifetime of the module
797  * @deffunc void ap_register_hooks(module *m, apr_pool_t *p)
798  */
799 AP_DECLARE(void) ap_register_hooks(module *m, apr_pool_t *p);
800
801 /**
802  * Setup all virtual hosts
803  * @param p The pool to allocate out of
804  * @param main_server The head of the server_rec list
805  * @deffunc void ap_fixup_virtual_hosts(apr_pool_t *p, server_rec *main_server)
806  */
807 AP_DECLARE(void) ap_fixup_virtual_hosts(apr_pool_t *p, server_rec *main_server);
808
809 /* For http_request.c... */
810
811 /**
812  * Setup the config vector for a request_rec
813  * @param p The pool to allocate the config vector out of
814  * @return The config vector
815  */
816 ap_conf_vector_t *ap_create_request_config(apr_pool_t *p);
817
818 /**
819  * Setup the config vector for per dir module configs
820  * @param p The pool to allocate the config vector out of
821  * @return The config vector
822  * @deffunc ap_conf_vector_t *ap_create_per_dir_config(apr_pool_t *p)
823  */
824 AP_CORE_DECLARE(ap_conf_vector_t *) ap_create_per_dir_config(apr_pool_t *p);
825
826 /**
827  * Run all of the modules merge per dir config functions
828  * @param p The pool to pass to the merge functions
829  * @param base The base directory config structure
830  * @param new_conf The new directory config structure
831  */
832 ap_conf_vector_t *ap_merge_per_dir_configs(apr_pool_t *p,
833                                            ap_conf_vector_t *base,
834                                            ap_conf_vector_t *new_conf);
835
836 /* For http_connection.c... */
837 /**
838  * Setup the config vector for a connection_rec
839  * @param p The pool to allocate the config vector out of
840  * @return The config vector
841  */
842 ap_conf_vector_t *ap_create_conn_config(apr_pool_t *p);
843
844 /* For http_core.c... (<Directory> command and virtual hosts) */
845
846 /**
847  * parse an htaccess file
848  * @param resulting htaccess_result
849  * @param r The request currently being served
850  * @param override Which overrides are active
851  * @param path The path to the htaccess file
852  * @param access_name The list of possible names for .htaccess files
853  * int The status of the current request
854  */
855 int ap_parse_htaccess(ap_conf_vector_t **result, request_rec *r, int override,
856                       const char *path, const char *access_name);
857
858 /**
859  * Setup a virtual host
860  * @param p The pool to allocate all memory out of
861  * @param hostname The hostname of the virtual hsot
862  * @param main_server The main server for this Apache configuration
863  * @param ps Place to store the new server_rec
864  * return Error string on error, NULL on success
865  * @deffunc const char *ap_init_virtual_host(apr_pool_t *p, const char *hostname, server_rec *main_server, server_rec **ps)
866  */
867 AP_CORE_DECLARE(const char *) ap_init_virtual_host(apr_pool_t *p, const char *hostname,
868                                 server_rec *main_server, server_rec **);
869
870 /**
871  * Process the config file for Apache
872  * @param s The server rec to use for the command parms
873  * @param fname The name of the config file
874  * @param conftree The root node of the created config tree
875  * @param p Pool for general allocation
876  * @param ptem Pool for temporary allocation
877  */
878 void ap_process_resource_config(server_rec *s, const char *fname, 
879                  ap_directive_t **conftree, apr_pool_t *p, apr_pool_t *ptemp);
880
881 /**
882  * Process all directives in the config tree
883  * @param s The server rec to use in the command parms
884  * @param conftree The config tree to process
885  * @param p The pool for general allocation
886  * @param ptemp The pool for temporary allocations
887  */
888 AP_DECLARE(void) ap_process_config_tree(server_rec *s, ap_directive_t *conftree,
889                                         apr_pool_t *p, apr_pool_t *ptemp);
890
891 /* Module-method dispatchers, also for http_request.c */
892 /**
893  * Run the handler phase of each module until a module accepts the
894  * responsibility of serving the request
895  * @param r The current request
896  * @return The status of the current request
897  */
898 int ap_invoke_handler(request_rec *);
899
900 /* for mod_perl */
901
902 /**
903  * Find a given directive in a command_rec table
904  * @param name The directive to search for
905  * @param cmds The table to search
906  * @return The directive definition of the specified directive
907  * @deffunc const command_rec *ap_find_command(const char *name, const command_rec *cmds)
908  */
909 AP_CORE_DECLARE(const command_rec *) ap_find_command(const char *name, const command_rec *cmds);
910
911 /**
912  * Find a given directive in a list module
913  * @param cmd_name The directive to search for
914  * @param mod The module list to search
915  * @return The directive definition of the specified directive
916  * @deffunc const command_rec *ap_find_command_in_modules(const char *cmd_name,module **mod)
917  */
918 AP_CORE_DECLARE(const command_rec *) ap_find_command_in_modules(const char *cmd_name, module **mod);
919
920 /**
921  * Ask a module to create per-server and per-section (dir/loc/file) configs
922  * (if it hasn't happened already). The results are stored in the server's
923  * config, and the specified per-section config vector.
924  * @param server The server to operate upon.
925  * @param section_vector The per-section config vector.
926  * @param section Which section to create a config for.
927  * @param mod The module which is defining the config data.
928  * @param pconf A pool for all configuration allocations.
929  * @return The (new) per-section config data.
930  * @deffunc void *ap_set_config_vectors(server_rec *server, ap_conf_vector_t *section_vector, const char *dir, module *mod, apr_pool_t *pconf)
931  */
932 AP_CORE_DECLARE(void *) ap_set_config_vectors(server_rec *server,
933                                               ap_conf_vector_t *section_vector,
934                                               const char *section,
935                                               module *mod, apr_pool_t *pconf);
936
937 #endif
938
939   /* Hooks */
940
941 /**
942  * Run the header parser functions for each module
943  * @param r The current request
944  * @return OK or DECLINED
945  * @deffunc int ap_run_header_parser(request_rec *r)
946  */
947 AP_DECLARE_HOOK(int,header_parser,(request_rec *r))
948
949 /**
950  * Run the pre_config function for each module
951  * @param pconf The config pool
952  * @param plog The logging streams pool
953  * @param ptemp The temporary pool
954  * @deffunc void ap_run_pre_config(apr_pool_t *pconf,apr_pool_t *plog,apr_pool_t *ptemp)
955  */
956 AP_DECLARE_HOOK(void,pre_config,
957              (apr_pool_t *pconf,apr_pool_t *plog,apr_pool_t *ptemp))
958
959 /**
960  * Run the post_config function for each module
961  * @param pconf The config pool
962  * @param plog The logging streams pool
963  * @param ptemp The temporary pool
964  * @param s The list of server_recs
965  * @deffunc void ap_run_post_config(apr_pool_t *pconf,apr_pool_t *plog,apr_pool_t *ptemp, server_rec *s)
966  */
967 AP_DECLARE_HOOK(void,post_config,
968              (apr_pool_t *pconf,apr_pool_t *plog,apr_pool_t *ptemp,server_rec *s))
969
970 /**
971  * Run the open_logs functions for each module
972  * @param pconf The config pool
973  * @param plog The logging streams pool
974  * @param ptemp The temporary pool
975  * @param s The list of server_recs
976  * @deffunc void ap_run_open_logs(apr_pool_t *pconf,apr_pool_t *plog,apr_pool_t *ptemp, server_rec *s)
977  */
978 AP_DECLARE_HOOK(void,open_logs,
979              (apr_pool_t *pconf,apr_pool_t *plog,apr_pool_t *ptemp,server_rec *s))
980
981 /**
982  * Run the child_init functions for each module
983  * @param pchild The child pool
984  * @param s The list of server_recs in this server 
985  * @deffunc void ap_run_child_init(apr_pool_t *pchild, server_rec *s)
986  */
987 AP_DECLARE_HOOK(void,child_init,(apr_pool_t *pchild, server_rec *s))
988
989 /**
990  * Run the handler functions for each module
991  * @param r The request_rec
992  * @tip non-wildcard handlers should HOOK_MIDDLE, wildcard HOOK_LAST
993  * @deffunc void ap_run_handler(request_rec *r)
994  */
995 AP_DECLARE_HOOK(int,handler,(request_rec *r))
996
997 /**
998  * Retrieve the optional functions for each module.
999  * This is run immediately before the server starts. Optional functions should
1000  * be registered during the hook registration phase.
1001  * @deffunc void ap_run_optional_fn_retrieve(void)
1002  */
1003 AP_DECLARE_HOOK(void,optional_fn_retrieve,(void))
1004
1005 #ifdef __cplusplus
1006 }
1007 #endif
1008
1009 #endif  /* !APACHE_HTTP_CONFIG_H */