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