~alinuxninja/nginx-edge/trunk

« back to all changes in this revision

Viewing changes to debian/modules/ngx_pagespeed/psol/include/third_party/httpd24/src/include/http_config.h

  • Committer: Vivian
  • Date: 2015-12-04 18:20:11 UTC
  • Revision ID: git-v1:a36f2bc32e884f7473b3a47040e5411306144d7d
* Do not extract psol.tar.gz

Show diffs side-by-side

added added

removed removed

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