]> granicus.if.org Git - apache/blob - include/httpd.h
Make the core input/output filter contexts private and provide accessor APIs
[apache] / include / httpd.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 httpd.h
19  * @brief HTTP Daemon routines
20  *
21  * @defgroup APACHE Apache HTTP Server
22  *
23  * Top level group of which all other groups are a member
24  * @{
25  *
26  * @defgroup APACHE_MODS Loadable modules
27  *           Top level group for modules
28  * @defgroup APACHE_OS Operating System Specific
29  * @defgroup APACHE_INTERNAL Internal interfaces
30  * @defgroup APACHE_CORE Core routines
31  * @{
32  * @defgroup APACHE_CORE_DAEMON HTTP Daemon Routine
33  * @{
34  */
35
36 #ifndef APACHE_HTTPD_H
37 #define APACHE_HTTPD_H
38
39 /* XXX - We need to push more stuff to other .h files, or even .c files, to
40  * make this file smaller
41  */
42
43 /* Headers in which EVERYONE has an interest... */
44 #include "ap_config.h"
45 #include "ap_mmn.h"
46
47 #include "ap_release.h"
48
49 #include "apr.h"
50 #include "apr_general.h"
51 #include "apr_tables.h"
52 #include "apr_pools.h"
53 #include "apr_time.h"
54 #include "apr_network_io.h"
55 #include "apr_buckets.h"
56 #include "apr_poll.h"
57 #include "apr_thread_proc.h"
58
59 #include "os.h"
60
61 #include "ap_regex.h"
62
63 #if APR_HAVE_STDLIB_H
64 #include <stdlib.h>
65 #endif
66
67 /* Note: apr_uri.h is also included, see below */
68
69 #ifdef __cplusplus
70 extern "C" {
71 #endif
72
73 /* ----------------------------- config dir ------------------------------ */
74
75 /** Define this to be the default server home dir. Most things later in this
76  * file with a relative pathname will have this added.
77  */
78 #ifndef HTTPD_ROOT
79 #ifdef OS2
80 /** Set default for OS/2 file system */
81 #define HTTPD_ROOT "/os2httpd"
82 #elif defined(WIN32)
83 /** Set default for Windows file system */
84 #define HTTPD_ROOT "/apache"
85 #elif defined (NETWARE)
86 /** Set the default for NetWare */
87 #define HTTPD_ROOT "/apache"
88 #else
89 /** Set for all other OSs */
90 #define HTTPD_ROOT "/usr/local/apache"
91 #endif
92 #endif /* HTTPD_ROOT */
93
94 /*
95  * --------- You shouldn't have to edit anything below this line ----------
96  *
97  * Any modifications to any defaults not defined above should be done in the
98  * respective configuration file.
99  *
100  */
101
102 /**
103  * Default location of documents.  Can be overridden by the DocumentRoot
104  * directive.
105  */
106 #ifndef DOCUMENT_LOCATION
107 #ifdef OS2
108 /* Set default for OS/2 file system */
109 #define DOCUMENT_LOCATION  HTTPD_ROOT "/docs"
110 #else
111 /* Set default for non OS/2 file system */
112 #define DOCUMENT_LOCATION  HTTPD_ROOT "/htdocs"
113 #endif
114 #endif /* DOCUMENT_LOCATION */
115
116 /** Maximum number of dynamically loaded modules */
117 #ifndef DYNAMIC_MODULE_LIMIT
118 #define DYNAMIC_MODULE_LIMIT 256
119 #endif
120
121 /** Default administrator's address */
122 #define DEFAULT_ADMIN "[no address given]"
123
124 /** The name of the log files */
125 #ifndef DEFAULT_ERRORLOG
126 #if defined(OS2) || defined(WIN32)
127 #define DEFAULT_ERRORLOG "logs/error.log"
128 #else
129 #define DEFAULT_ERRORLOG "logs/error_log"
130 #endif
131 #endif /* DEFAULT_ERRORLOG */
132
133 /** Define this to be what your per-directory security files are called */
134 #ifndef DEFAULT_ACCESS_FNAME
135 #ifdef OS2
136 /* Set default for OS/2 file system */
137 #define DEFAULT_ACCESS_FNAME "htaccess"
138 #else
139 #define DEFAULT_ACCESS_FNAME ".htaccess"
140 #endif
141 #endif /* DEFAULT_ACCESS_FNAME */
142
143 /** The name of the server config file */
144 #ifndef SERVER_CONFIG_FILE
145 #define SERVER_CONFIG_FILE "conf/httpd.conf"
146 #endif
147
148 /** The default path for CGI scripts if none is currently set */
149 #ifndef DEFAULT_PATH
150 #define DEFAULT_PATH "/bin:/usr/bin:/usr/ucb:/usr/bsd:/usr/local/bin"
151 #endif
152
153 /** The path to the suExec wrapper, can be overridden in Configuration */
154 #ifndef SUEXEC_BIN
155 #define SUEXEC_BIN  HTTPD_ROOT "/bin/suexec"
156 #endif
157
158 /** The timeout for waiting for messages */
159 #ifndef DEFAULT_TIMEOUT
160 #define DEFAULT_TIMEOUT 60
161 #endif
162
163 /** The timeout for waiting for keepalive timeout until next request */
164 #ifndef DEFAULT_KEEPALIVE_TIMEOUT
165 #define DEFAULT_KEEPALIVE_TIMEOUT 5
166 #endif
167
168 /** The number of requests to entertain per connection */
169 #ifndef DEFAULT_KEEPALIVE
170 #define DEFAULT_KEEPALIVE 100
171 #endif
172
173 /*
174  * Limits on the size of various request items.  These limits primarily
175  * exist to prevent simple denial-of-service attacks on a server based
176  * on misuse of the protocol.  The recommended values will depend on the
177  * nature of the server resources -- CGI scripts and database backends
178  * might require large values, but most servers could get by with much
179  * smaller limits than we use below.  The request message body size can
180  * be limited by the per-dir config directive LimitRequestBody.
181  *
182  * Internal buffer sizes are two bytes more than the DEFAULT_LIMIT_REQUEST_LINE
183  * and DEFAULT_LIMIT_REQUEST_FIELDSIZE below, which explains the 8190.
184  * These two limits can be lowered or raised by the server config
185  * directives LimitRequestLine and LimitRequestFieldsize, respectively.
186  *
187  * DEFAULT_LIMIT_REQUEST_FIELDS can be modified or disabled (set = 0) by
188  * the server config directive LimitRequestFields.
189  */
190
191 /** default limit on bytes in Request-Line (Method+URI+HTTP-version) */
192 #ifndef DEFAULT_LIMIT_REQUEST_LINE
193 #define DEFAULT_LIMIT_REQUEST_LINE 8190
194 #endif
195 /** default limit on bytes in any one header field  */
196 #ifndef DEFAULT_LIMIT_REQUEST_FIELDSIZE
197 #define DEFAULT_LIMIT_REQUEST_FIELDSIZE 8190
198 #endif
199 /** default limit on number of request header fields */
200 #ifndef DEFAULT_LIMIT_REQUEST_FIELDS
201 #define DEFAULT_LIMIT_REQUEST_FIELDS 100
202 #endif
203
204 /**
205  * The default default character set name to add if AddDefaultCharset is
206  * enabled.  Overridden with AddDefaultCharsetName.
207  */
208 #define DEFAULT_ADD_DEFAULT_CHARSET_NAME "iso-8859-1"
209
210 /** default HTTP Server protocol */
211 #define AP_SERVER_PROTOCOL "HTTP/1.1"
212
213
214 /* ------------------ stuff that modules are allowed to look at ----------- */
215
216 /** Define this to be what your HTML directory content files are called */
217 #ifndef AP_DEFAULT_INDEX
218 #define AP_DEFAULT_INDEX "index.html"
219 #endif
220
221 /** The name of the MIME types file */
222 #ifndef AP_TYPES_CONFIG_FILE
223 #define AP_TYPES_CONFIG_FILE "conf/mime.types"
224 #endif
225
226 /*
227  * Define the HTML doctype strings centrally.
228  */
229 /** HTML 2.0 Doctype */
230 #define DOCTYPE_HTML_2_0  "<!DOCTYPE HTML PUBLIC \"-//IETF//" \
231                           "DTD HTML 2.0//EN\">\n"
232 /** HTML 3.2 Doctype */
233 #define DOCTYPE_HTML_3_2  "<!DOCTYPE HTML PUBLIC \"-//W3C//" \
234                           "DTD HTML 3.2 Final//EN\">\n"
235 /** HTML 4.0 Strict Doctype */
236 #define DOCTYPE_HTML_4_0S "<!DOCTYPE HTML PUBLIC \"-//W3C//" \
237                           "DTD HTML 4.0//EN\"\n" \
238                           "\"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
239 /** HTML 4.0 Transitional Doctype */
240 #define DOCTYPE_HTML_4_0T "<!DOCTYPE HTML PUBLIC \"-//W3C//" \
241                           "DTD HTML 4.0 Transitional//EN\"\n" \
242                           "\"http://www.w3.org/TR/REC-html40/loose.dtd\">\n"
243 /** HTML 4.0 Frameset Doctype */
244 #define DOCTYPE_HTML_4_0F "<!DOCTYPE HTML PUBLIC \"-//W3C//" \
245                           "DTD HTML 4.0 Frameset//EN\"\n" \
246                           "\"http://www.w3.org/TR/REC-html40/frameset.dtd\">\n"
247 /** XHTML 1.0 Strict Doctype */
248 #define DOCTYPE_XHTML_1_0S "<!DOCTYPE html PUBLIC \"-//W3C//" \
249                            "DTD XHTML 1.0 Strict//EN\"\n" \
250                            "\"http://www.w3.org/TR/xhtml1/DTD/" \
251                            "xhtml1-strict.dtd\">\n"
252 /** XHTML 1.0 Transitional Doctype */
253 #define DOCTYPE_XHTML_1_0T "<!DOCTYPE html PUBLIC \"-//W3C//" \
254                            "DTD XHTML 1.0 Transitional//EN\"\n" \
255                            "\"http://www.w3.org/TR/xhtml1/DTD/" \
256                            "xhtml1-transitional.dtd\">\n"
257 /** XHTML 1.0 Frameset Doctype */
258 #define DOCTYPE_XHTML_1_0F "<!DOCTYPE html PUBLIC \"-//W3C//" \
259                            "DTD XHTML 1.0 Frameset//EN\"\n" \
260                            "\"http://www.w3.org/TR/xhtml1/DTD/" \
261                            "xhtml1-frameset.dtd\">"
262
263 /** Internal representation for a HTTP protocol number, e.g., HTTP/1.1 */
264 #define HTTP_VERSION(major,minor) (1000*(major)+(minor))
265 /** Major part of HTTP protocol */
266 #define HTTP_VERSION_MAJOR(number) ((number)/1000)
267 /** Minor part of HTTP protocol */
268 #define HTTP_VERSION_MINOR(number) ((number)%1000)
269
270 /* -------------- Port number for server running standalone --------------- */
271
272 /** default HTTP Port */
273 #define DEFAULT_HTTP_PORT       80
274 /** default HTTPS Port */
275 #define DEFAULT_HTTPS_PORT      443
276 /**
277  * Check whether @a port is the default port for the request @a r.
278  * @param port The port number
279  * @param r The request
280  * @see #ap_default_port
281  */
282 #define ap_is_default_port(port,r)      ((port) == ap_default_port(r))
283 /**
284  * Get the default port for a request (which depends on the scheme).
285  * @param r The request
286  */
287 #define ap_default_port(r)      ap_run_default_port(r)
288 /**
289  * Get the scheme for a request.
290  * @param r The request
291  */
292 #define ap_http_scheme(r)       ap_run_http_scheme(r)
293
294 /** The default string length */
295 #define MAX_STRING_LEN HUGE_STRING_LEN
296
297 /** The length of a Huge string */
298 #define HUGE_STRING_LEN 8192
299
300 /** The size of the server's internal read-write buffers */
301 #define AP_IOBUFSIZE 8192
302
303 /** The max number of regex captures that can be expanded by ap_pregsub */
304 #define AP_MAX_REG_MATCH 10
305
306 /**
307  * APR_HAS_LARGE_FILES introduces the problem of spliting sendfile into
308  * mutiple buckets, no greater than MAX(apr_size_t), and more granular
309  * than that in case the brigade code/filters attempt to read it directly.
310  * ### 16mb is an invention, no idea if it is reasonable.
311  */
312 #define AP_MAX_SENDFILE 16777216  /* 2^24 */
313
314 /**
315  * Special Apache error codes. These are basically used
316  *  in http_main.c so we can keep track of various errors.
317  *
318  */
319 /** a normal exit */
320 #define APEXIT_OK               0x0
321 /** A fatal error arising during the server's init sequence */
322 #define APEXIT_INIT             0x2
323 /**  The child died during its init sequence */
324 #define APEXIT_CHILDINIT        0x3
325 /**
326  *   The child exited due to a resource shortage.
327  *   The parent should limit the rate of forking until
328  *   the situation is resolved.
329  */
330 #define APEXIT_CHILDSICK        0x7
331 /**
332  *     A fatal error, resulting in the whole server aborting.
333  *     If a child exits with this error, the parent process
334  *     considers this a server-wide fatal error and aborts.
335  */
336 #define APEXIT_CHILDFATAL       0xf
337
338 #ifndef AP_DECLARE
339 /**
340  * Stuff marked #AP_DECLARE is part of the API, and intended for use
341  * by modules. Its purpose is to allow us to add attributes that
342  * particular platforms or compilers require to every exported function.
343  */
344 # define AP_DECLARE(type)    type
345 #endif
346
347 #ifndef AP_DECLARE_NONSTD
348 /**
349  * Stuff marked #AP_DECLARE_NONSTD is part of the API, and intended for
350  * use by modules.  The difference between #AP_DECLARE and
351  * #AP_DECLARE_NONSTD is that the latter is required for any functions
352  * which use varargs or are used via indirect function call.  This
353  * is to accomodate the two calling conventions in windows dlls.
354  */
355 # define AP_DECLARE_NONSTD(type)    type
356 #endif
357 #ifndef AP_DECLARE_DATA
358 # define AP_DECLARE_DATA
359 #endif
360
361 #ifndef AP_MODULE_DECLARE
362 # define AP_MODULE_DECLARE(type)    type
363 #endif
364 #ifndef AP_MODULE_DECLARE_NONSTD
365 # define AP_MODULE_DECLARE_NONSTD(type)  type
366 #endif
367 #ifndef AP_MODULE_DECLARE_DATA
368 # define AP_MODULE_DECLARE_DATA
369 #endif
370
371 /**
372  * @internal
373  * modules should not use functions marked AP_CORE_DECLARE
374  */
375 #ifndef AP_CORE_DECLARE
376 # define AP_CORE_DECLARE        AP_DECLARE
377 #endif
378
379 /**
380  * @internal
381  * modules should not use functions marked AP_CORE_DECLARE_NONSTD
382  */
383
384 #ifndef AP_CORE_DECLARE_NONSTD
385 # define AP_CORE_DECLARE_NONSTD AP_DECLARE_NONSTD
386 #endif
387
388 /**
389  * @brief The numeric version information is broken out into fields within this
390  * structure.
391  */
392 typedef struct {
393     int major;              /**< major number */
394     int minor;              /**< minor number */
395     int patch;              /**< patch number */
396     const char *add_string; /**< additional string like "-dev" */
397 } ap_version_t;
398
399 /**
400  * Return httpd's version information in a numeric form.
401  *
402  *  @param version Pointer to a version structure for returning the version
403  *                 information.
404  */
405 AP_DECLARE(void) ap_get_server_revision(ap_version_t *version);
406
407 /**
408  * Get the server banner in a form suitable for sending over the
409  * network, with the level of information controlled by the
410  * ServerTokens directive.
411  * @return The server banner
412  */
413 AP_DECLARE(const char *) ap_get_server_banner(void);
414
415 /**
416  * Get the server description in a form suitable for local displays,
417  * status reports, or logging.  This includes the detailed server
418  * version and information about some modules.  It is not affected
419  * by the ServerTokens directive.
420  * @return The server description
421  */
422 AP_DECLARE(const char *) ap_get_server_description(void);
423
424 /**
425  * Add a component to the server description and banner strings
426  * @param pconf The pool to allocate the component from
427  * @param component The string to add
428  */
429 AP_DECLARE(void) ap_add_version_component(apr_pool_t *pconf, const char *component);
430
431 /**
432  * Get the date a time that the server was built
433  * @return The server build time string
434  */
435 AP_DECLARE(const char *) ap_get_server_built(void);
436
437 /* non-HTTP status codes returned by hooks */
438
439 #define OK 0                    /**< Module has handled this stage. */
440 #define DECLINED -1             /**< Module declines to handle */
441 #define DONE -2                 /**< Module has served the response completely
442                                  *  - it's safe to die() with no more output
443                                  */
444 #define SUSPENDED -3 /**< Module will handle the remainder of the request.
445                       * The core will never invoke the request again, */
446
447 /** Returned by the bottom-most filter if no data was written.
448  *  @see ap_pass_brigade(). */
449 #define AP_NOBODY_WROTE         -100
450 /** Returned by the bottom-most filter if no data was read.
451  *  @see ap_get_brigade(). */
452 #define AP_NOBODY_READ          -101
453 /** Returned by any filter if the filter chain encounters an error
454  *  and has already dealt with the error response.
455  */
456 #define AP_FILTER_ERROR         -102
457
458 /**
459  * @defgroup HTTP_Status HTTP Status Codes
460  * @{
461  */
462 /**
463  * The size of the static array in http_protocol.c for storing
464  * all of the potential response status-lines (a sparse table).
465  * A future version should dynamically generate the apr_table_t at startup.
466  */
467 #define RESPONSE_CODES 57
468
469 #define HTTP_CONTINUE                      100
470 #define HTTP_SWITCHING_PROTOCOLS           101
471 #define HTTP_PROCESSING                    102
472 #define HTTP_OK                            200
473 #define HTTP_CREATED                       201
474 #define HTTP_ACCEPTED                      202
475 #define HTTP_NON_AUTHORITATIVE             203
476 #define HTTP_NO_CONTENT                    204
477 #define HTTP_RESET_CONTENT                 205
478 #define HTTP_PARTIAL_CONTENT               206
479 #define HTTP_MULTI_STATUS                  207
480 #define HTTP_MULTIPLE_CHOICES              300
481 #define HTTP_MOVED_PERMANENTLY             301
482 #define HTTP_MOVED_TEMPORARILY             302
483 #define HTTP_SEE_OTHER                     303
484 #define HTTP_NOT_MODIFIED                  304
485 #define HTTP_USE_PROXY                     305
486 #define HTTP_TEMPORARY_REDIRECT            307
487 #define HTTP_BAD_REQUEST                   400
488 #define HTTP_UNAUTHORIZED                  401
489 #define HTTP_PAYMENT_REQUIRED              402
490 #define HTTP_FORBIDDEN                     403
491 #define HTTP_NOT_FOUND                     404
492 #define HTTP_METHOD_NOT_ALLOWED            405
493 #define HTTP_NOT_ACCEPTABLE                406
494 #define HTTP_PROXY_AUTHENTICATION_REQUIRED 407
495 #define HTTP_REQUEST_TIME_OUT              408
496 #define HTTP_CONFLICT                      409
497 #define HTTP_GONE                          410
498 #define HTTP_LENGTH_REQUIRED               411
499 #define HTTP_PRECONDITION_FAILED           412
500 #define HTTP_REQUEST_ENTITY_TOO_LARGE      413
501 #define HTTP_REQUEST_URI_TOO_LARGE         414
502 #define HTTP_UNSUPPORTED_MEDIA_TYPE        415
503 #define HTTP_RANGE_NOT_SATISFIABLE         416
504 #define HTTP_EXPECTATION_FAILED            417
505 #define HTTP_UNPROCESSABLE_ENTITY          422
506 #define HTTP_LOCKED                        423
507 #define HTTP_FAILED_DEPENDENCY             424
508 #define HTTP_UPGRADE_REQUIRED              426
509 #define HTTP_INTERNAL_SERVER_ERROR         500
510 #define HTTP_NOT_IMPLEMENTED               501
511 #define HTTP_BAD_GATEWAY                   502
512 #define HTTP_SERVICE_UNAVAILABLE           503
513 #define HTTP_GATEWAY_TIME_OUT              504
514 #define HTTP_VERSION_NOT_SUPPORTED         505
515 #define HTTP_VARIANT_ALSO_VARIES           506
516 #define HTTP_INSUFFICIENT_STORAGE          507
517 #define HTTP_NOT_EXTENDED                  510
518
519 /** is the status code informational */
520 #define ap_is_HTTP_INFO(x)         (((x) >= 100)&&((x) < 200))
521 /** is the status code OK ?*/
522 #define ap_is_HTTP_SUCCESS(x)      (((x) >= 200)&&((x) < 300))
523 /** is the status code a redirect */
524 #define ap_is_HTTP_REDIRECT(x)     (((x) >= 300)&&((x) < 400))
525 /** is the status code a error (client or server) */
526 #define ap_is_HTTP_ERROR(x)        (((x) >= 400)&&((x) < 600))
527 /** is the status code a client error  */
528 #define ap_is_HTTP_CLIENT_ERROR(x) (((x) >= 400)&&((x) < 500))
529 /** is the status code a server error  */
530 #define ap_is_HTTP_SERVER_ERROR(x) (((x) >= 500)&&((x) < 600))
531 /** is the status code a (potentially) valid response code?  */
532 #define ap_is_HTTP_VALID_RESPONSE(x) (((x) >= 100)&&((x) < 600))
533
534 /** should the status code drop the connection */
535 #define ap_status_drops_connection(x) \
536                                    (((x) == HTTP_BAD_REQUEST)           || \
537                                     ((x) == HTTP_REQUEST_TIME_OUT)      || \
538                                     ((x) == HTTP_LENGTH_REQUIRED)       || \
539                                     ((x) == HTTP_REQUEST_ENTITY_TOO_LARGE) || \
540                                     ((x) == HTTP_REQUEST_URI_TOO_LARGE) || \
541                                     ((x) == HTTP_INTERNAL_SERVER_ERROR) || \
542                                     ((x) == HTTP_SERVICE_UNAVAILABLE) || \
543                                     ((x) == HTTP_NOT_IMPLEMENTED))
544 /** @} */
545
546 /**
547  * @defgroup Methods List of Methods recognized by the server
548  * @ingroup APACHE_CORE_DAEMON
549  * @{
550  *
551  * @brief Methods recognized (but not necessarily handled) by the server.
552  *
553  * These constants are used in bit shifting masks of size int, so it is
554  * unsafe to have more methods than bits in an int.  HEAD == M_GET.
555  * This list must be tracked by the list in http_protocol.c in routine
556  * ap_method_name_of().
557  *
558  */
559
560 #define M_GET                   0       /** RFC 2616: HTTP */
561 #define M_PUT                   1       /*  :             */
562 #define M_POST                  2
563 #define M_DELETE                3
564 #define M_CONNECT               4
565 #define M_OPTIONS               5
566 #define M_TRACE                 6       /** RFC 2616: HTTP */
567 #define M_PATCH                 7       /** no rfc(!)  ### remove this one? */
568 #define M_PROPFIND              8       /** RFC 2518: WebDAV */
569 #define M_PROPPATCH             9       /*  :               */
570 #define M_MKCOL                 10
571 #define M_COPY                  11
572 #define M_MOVE                  12
573 #define M_LOCK                  13
574 #define M_UNLOCK                14      /** RFC 2518: WebDAV */
575 #define M_VERSION_CONTROL       15      /** RFC 3253: WebDAV Versioning */
576 #define M_CHECKOUT              16      /*  :                          */
577 #define M_UNCHECKOUT            17
578 #define M_CHECKIN               18
579 #define M_UPDATE                19
580 #define M_LABEL                 20
581 #define M_REPORT                21
582 #define M_MKWORKSPACE           22
583 #define M_MKACTIVITY            23
584 #define M_BASELINE_CONTROL      24
585 #define M_MERGE                 25
586 #define M_INVALID               26      /** RFC 3253: WebDAV Versioning */
587
588 /**
589  * METHODS needs to be equal to the number of bits
590  * we are using for limit masks.
591  */
592 #define METHODS     64
593
594 /**
595  * The method mask bit to shift for anding with a bitmask.
596  */
597 #define AP_METHOD_BIT ((apr_int64_t)1)
598 /** @} */
599
600
601 /** @see ap_method_list_t */
602 typedef struct ap_method_list_t ap_method_list_t;
603
604 /**
605  * @struct ap_method_list_t
606  * @brief  Structure for handling HTTP methods.
607  *
608  * Methods known to the server are accessed via a bitmask shortcut;
609  * extension methods are handled by an array.
610  */
611 struct ap_method_list_t {
612     /** The bitmask used for known methods */
613     apr_int64_t method_mask;
614     /** the array used for extension methods */
615     apr_array_header_t *method_list;
616 };
617
618 /**
619  * @defgroup module_magic Module Magic mime types
620  * @{
621  */
622 /** Magic for mod_cgi[d] */
623 #define CGI_MAGIC_TYPE "application/x-httpd-cgi"
624 /** Magic for mod_include */
625 #define INCLUDES_MAGIC_TYPE "text/x-server-parsed-html"
626 /** Magic for mod_include */
627 #define INCLUDES_MAGIC_TYPE3 "text/x-server-parsed-html3"
628 /** Magic for mod_dir */
629 #define DIR_MAGIC_TYPE "httpd/unix-directory"
630
631 /** @} */
632 /* Just in case your linefeed isn't the one the other end is expecting. */
633 #if !APR_CHARSET_EBCDIC
634 /** linefeed */
635 #define LF 10
636 /** carrige return */
637 #define CR 13
638 /** carrige return /Line Feed Combo */
639 #define CRLF "\015\012"
640 #else /* APR_CHARSET_EBCDIC */
641 /* For platforms using the EBCDIC charset, the transition ASCII->EBCDIC is done
642  * in the buff package (bread/bputs/bwrite).  Everywhere else, we use
643  * "native EBCDIC" CR and NL characters. These are therefore
644  * defined as
645  * '\r' and '\n'.
646  */
647 #define CR '\r'
648 #define LF '\n'
649 #define CRLF "\r\n"
650 #endif /* APR_CHARSET_EBCDIC */
651 /** Useful for common code with either platform charset. */
652 #define CRLF_ASCII "\015\012"
653
654 /**
655  * @defgroup values_request_rec_body Possible values for request_rec.read_body
656  * @{
657  * Possible values for request_rec.read_body (set by handling module):
658  */
659
660 /** Send 413 error if message has any body */
661 #define REQUEST_NO_BODY          0
662 /** Send 411 error if body without Content-Length */
663 #define REQUEST_CHUNKED_ERROR    1
664 /** If chunked, remove the chunks for me. */
665 #define REQUEST_CHUNKED_DECHUNK  2
666 /** @} // values_request_rec_body */
667
668 /**
669  * @defgroup values_request_rec_used_path_info Possible values for request_rec.used_path_info
670  * @ingroup APACHE_CORE_DAEMON
671  * @{
672  * Possible values for request_rec.used_path_info:
673  */
674
675 /** Accept the path_info from the request */
676 #define AP_REQ_ACCEPT_PATH_INFO    0
677 /** Return a 404 error if path_info was given */
678 #define AP_REQ_REJECT_PATH_INFO    1
679 /** Module may chose to use the given path_info */
680 #define AP_REQ_DEFAULT_PATH_INFO   2
681
682 /** @} // values_request_rec_used_path_info */
683
684
685 /*
686  * Things which may vary per file-lookup WITHIN a request ---
687  * e.g., state of MIME config.  Basically, the name of an object, info
688  * about the object, and any other info we may ahve which may need to
689  * change as we go poking around looking for it (e.g., overridden by
690  * .htaccess files).
691  *
692  * Note how the default state of almost all these things is properly
693  * zero, so that allocating it with pcalloc does the right thing without
694  * a whole lot of hairy initialization... so long as we are willing to
695  * make the (fairly) portable assumption that the bit pattern of a NULL
696  * pointer is, in fact, zero.
697  */
698
699 /**
700  * @brief This represents the result of calling htaccess; these are cached for
701  * each request.
702  */
703 struct htaccess_result {
704     /** the directory to which this applies */
705     const char *dir;
706     /** the overrides allowed for the .htaccess file */
707     int override;
708     /** the override options allowed for the .htaccess file */
709     int override_opts;
710     /** Table of allowed directives for override */
711     apr_table_t *override_list;
712     /** the configuration directives */
713     struct ap_conf_vector_t *htaccess;
714     /** the next one, or NULL if no more; N.B. never change this */
715     const struct htaccess_result *next;
716 };
717
718 /* The following four types define a hierarchy of activities, so that
719  * given a request_rec r you can write r->connection->server->process
720  * to get to the process_rec.  While this reduces substantially the
721  * number of arguments that various hooks require beware that in
722  * threaded versions of the server you must consider multiplexing
723  * issues.  */
724
725
726 /** A structure that represents one process */
727 typedef struct process_rec process_rec;
728 /** A structure that represents a virtual server */
729 typedef struct server_rec server_rec;
730 /** A structure that represents one connection */
731 typedef struct conn_rec conn_rec;
732 /** A structure that represents the current request */
733 typedef struct request_rec request_rec;
734 /** A structure that represents the status of the current connection */
735 typedef struct conn_state_t conn_state_t;
736
737 /* ### would be nice to not include this from httpd.h ... */
738 /* This comes after we have defined the request_rec type */
739 #include "apr_uri.h"
740
741 /**
742  * @brief A structure that represents one process
743  */
744 struct process_rec {
745     /** Global pool. Cleared upon normal exit */
746     apr_pool_t *pool;
747     /** Configuration pool. Cleared upon restart */
748     apr_pool_t *pconf;
749     /** The program name used to execute the program */
750     const char *short_name;
751     /** The command line arguments */
752     const char * const *argv;
753     /** Number of command line arguments passed to the program */
754     int argc;
755 };
756
757 /**
758  * @brief A structure that represents the current request
759  */
760 struct request_rec {
761     /** The pool associated with the request */
762     apr_pool_t *pool;
763     /** The connection to the client */
764     conn_rec *connection;
765     /** The virtual host for this request */
766     server_rec *server;
767
768     /** Pointer to the redirected request if this is an external redirect */
769     request_rec *next;
770     /** Pointer to the previous request if this is an internal redirect */
771     request_rec *prev;
772
773     /** Pointer to the main request if this is a sub-request
774      * (see http_request.h) */
775     request_rec *main;
776
777     /* Info about the request itself... we begin with stuff that only
778      * protocol.c should ever touch...
779      */
780     /** First line of request */
781     char *the_request;
782     /** HTTP/0.9, "simple" request (e.g. GET /foo\n w/no headers) */
783     int assbackwards;
784     /** A proxy request (calculated during post_read_request/translate_name)
785      *  possible values PROXYREQ_NONE, PROXYREQ_PROXY, PROXYREQ_REVERSE,
786      *                  PROXYREQ_RESPONSE
787      */
788     int proxyreq;
789     /** HEAD request, as opposed to GET */
790     int header_only;
791     /** Protocol version number of protocol; 1.1 = 1001 */
792     int proto_num;
793     /** Protocol string, as given to us, or HTTP/0.9 */
794     char *protocol;
795     /** Host, as set by full URI or Host: */
796     const char *hostname;
797
798     /** Time when the request started */
799     apr_time_t request_time;
800
801     /** Status line, if set by script */
802     const char *status_line;
803     /** Status line */
804     int status;
805
806     /* Request method, two ways; also, protocol, etc..  Outside of protocol.c,
807      * look, but don't touch.
808      */
809
810     /** M_GET, M_POST, etc. */
811     int method_number;
812     /** Request method (eg. GET, HEAD, POST, etc.) */
813     const char *method;
814
815     /**
816      *  'allowed' is a bitvector of the allowed methods.
817      *
818      *  A handler must ensure that the request method is one that
819      *  it is capable of handling.  Generally modules should DECLINE
820      *  any request methods they do not handle.  Prior to aborting the
821      *  handler like this the handler should set r->allowed to the list
822      *  of methods that it is willing to handle.  This bitvector is used
823      *  to construct the "Allow:" header required for OPTIONS requests,
824      *  and HTTP_METHOD_NOT_ALLOWED and HTTP_NOT_IMPLEMENTED status codes.
825      *
826      *  Since the default_handler deals with OPTIONS, all modules can
827      *  usually decline to deal with OPTIONS.  TRACE is always allowed,
828      *  modules don't need to set it explicitly.
829      *
830      *  Since the default_handler will always handle a GET, a
831      *  module which does *not* implement GET should probably return
832      *  HTTP_METHOD_NOT_ALLOWED.  Unfortunately this means that a Script GET
833      *  handler can't be installed by mod_actions.
834      */
835     apr_int64_t allowed;
836     /** Array of extension methods */
837     apr_array_header_t *allowed_xmethods;
838     /** List of allowed methods */
839     ap_method_list_t *allowed_methods;
840
841     /** byte count in stream is for body */
842     apr_off_t sent_bodyct;
843     /** body byte count, for easy access */
844     apr_off_t bytes_sent;
845     /** Last modified time of the requested resource */
846     apr_time_t mtime;
847
848     /* HTTP/1.1 connection-level features */
849
850     /** The Range: header */
851     const char *range;
852     /** The "real" content length */
853     apr_off_t clength;
854     /** sending chunked transfer-coding */
855     int chunked;
856
857     /** Method for reading the request body
858      * (eg. REQUEST_CHUNKED_ERROR, REQUEST_NO_BODY,
859      *  REQUEST_CHUNKED_DECHUNK, etc...) */
860     int read_body;
861     /** reading chunked transfer-coding */
862     int read_chunked;
863     /** is client waiting for a 100 response? */
864     unsigned expecting_100;
865     /** The optional kept body of the request. */
866     apr_bucket_brigade *kept_body;
867     /** For ap_body_to_table(): parsed body */
868     /* XXX: ap_body_to_table has been removed. Remove body_table too or
869      * XXX: keep it to reintroduce ap_body_to_table without major bump? */
870     apr_table_t *body_table;
871     /** Remaining bytes left to read from the request body */
872     apr_off_t remaining;
873     /** Number of bytes that have been read  from the request body */
874     apr_off_t read_length;
875
876     /* MIME header environments, in and out.  Also, an array containing
877      * environment variables to be passed to subprocesses, so people can
878      * write modules to add to that environment.
879      *
880      * The difference between headers_out and err_headers_out is that the
881      * latter are printed even on error, and persist across internal redirects
882      * (so the headers printed for ErrorDocument handlers will have them).
883      *
884      * The 'notes' apr_table_t is for notes from one module to another, with no
885      * other set purpose in mind...
886      */
887
888     /** MIME header environment from the request */
889     apr_table_t *headers_in;
890     /** MIME header environment for the response */
891     apr_table_t *headers_out;
892     /** MIME header environment for the response, printed even on errors and
893      * persist across internal redirects */
894     apr_table_t *err_headers_out;
895     /** Array of environment variables to be used for sub processes */
896     apr_table_t *subprocess_env;
897     /** Notes from one module to another */
898     apr_table_t *notes;
899
900     /* content_type, handler, content_encoding, and all content_languages
901      * MUST be lowercased strings.  They may be pointers to static strings;
902      * they should not be modified in place.
903      */
904     /** The content-type for the current request */
905     const char *content_type;   /* Break these out --- we dispatch on 'em */
906     /** The handler string that we use to call a handler function */
907     const char *handler;        /* What we *really* dispatch on */
908
909     /** How to encode the data */
910     const char *content_encoding;
911     /** Array of strings representing the content languages */
912     apr_array_header_t *content_languages;
913
914     /** variant list validator (if negotiated) */
915     char *vlist_validator;
916
917     /** If an authentication check was made, this gets set to the user name. */
918     char *user;
919     /** If an authentication check was made, this gets set to the auth type. */
920     char *ap_auth_type;
921
922     /* What object is being requested (either directly, or via include
923      * or content-negotiation mapping).
924      */
925
926     /** The URI without any parsing performed */
927     char *unparsed_uri;
928     /** The path portion of the URI, or "/" if no path provided */
929     char *uri;
930     /** The filename on disk corresponding to this response */
931     char *filename;
932     /* XXX: What does this mean? Please define "canonicalize" -aaron */
933     /** The true filename, we canonicalize r->filename if these don't match */
934     char *canonical_filename;
935     /** The PATH_INFO extracted from this request */
936     char *path_info;
937     /** The QUERY_ARGS extracted from this request */
938     char *args;
939
940     /**
941      * Flag for the handler to accept or reject path_info on
942      * the current request.  All modules should respect the
943      * AP_REQ_ACCEPT_PATH_INFO and AP_REQ_REJECT_PATH_INFO
944      * values, while AP_REQ_DEFAULT_PATH_INFO indicates they
945      * may follow existing conventions.  This is set to the
946      * user's preference upon HOOK_VERY_FIRST of the fixups.
947      */
948     int used_path_info;
949
950     /** A flag to determine if the eos bucket has been sent yet */
951     int eos_sent;
952
953     /* Various other config info which may change with .htaccess files
954      * These are config vectors, with one void* pointer for each module
955      * (the thing pointed to being the module's business).
956      */
957
958     /** Options set in config files, etc. */
959     struct ap_conf_vector_t *per_dir_config;
960     /** Notes on *this* request */
961     struct ap_conf_vector_t *request_config;
962
963     /** Optional request log level configuration. Will usually point
964      *  to a server or per_dir config, i.e. must be copied before
965      *  modifying */
966     const struct ap_logconf *log;
967
968     /** Id to identify request in access and error log. Set when the first
969      *  error log entry for this request is generated.
970      */
971     const char *log_id;
972
973     /**
974      * A linked list of the .htaccess configuration directives
975      * accessed by this request.
976      * N.B. always add to the head of the list, _never_ to the end.
977      * that way, a sub request's list can (temporarily) point to a parent's list
978      */
979     const struct htaccess_result *htaccess;
980
981     /** A list of output filters to be used for this request */
982     struct ap_filter_t *output_filters;
983     /** A list of input filters to be used for this request */
984     struct ap_filter_t *input_filters;
985
986     /** A list of protocol level output filters to be used for this
987      *  request */
988     struct ap_filter_t *proto_output_filters;
989     /** A list of protocol level input filters to be used for this
990      *  request */
991     struct ap_filter_t *proto_input_filters;
992
993     /** This response can not be cached */
994     int no_cache;
995     /** There is no local copy of this response */
996     int no_local_copy;
997
998     /** Mutex protect callbacks registered with ap_mpm_register_timed_callback
999      * from being run before the original handler finishes running
1000      */
1001     apr_thread_mutex_t *invoke_mtx;
1002
1003     /** A struct containing the components of URI */
1004     apr_uri_t parsed_uri;
1005     /**  finfo.protection (st_mode) set to zero if no such file */
1006     apr_finfo_t finfo;
1007
1008     /** remote address information from conn_rec, can be overridden if
1009      * necessary by a module.
1010      */
1011     apr_sockaddr_t *useragent_addr;
1012     char *useragent_ip;
1013 };
1014
1015 /**
1016  * @defgroup ProxyReq Proxy request types
1017  *
1018  * Possible values of request_rec->proxyreq. A request could be normal,
1019  *  proxied or reverse proxied. Normally proxied and reverse proxied are
1020  *  grouped together as just "proxied", but sometimes it's necessary to
1021  *  tell the difference between the two, such as for authentication.
1022  * @{
1023  */
1024
1025 #define PROXYREQ_NONE     0     /**< No proxy */
1026 #define PROXYREQ_PROXY    1     /**< Standard proxy */
1027 #define PROXYREQ_REVERSE  2     /**< Reverse proxy */
1028 #define PROXYREQ_RESPONSE 3     /**< Origin response */
1029
1030 /* @} */
1031
1032 /**
1033  * @brief Enumeration of connection keepalive options
1034  */
1035 typedef enum {
1036     AP_CONN_UNKNOWN,
1037     AP_CONN_CLOSE,
1038     AP_CONN_KEEPALIVE
1039 } ap_conn_keepalive_e;
1040
1041 /**
1042  * @brief Structure to store things which are per connection
1043  */
1044 struct conn_rec {
1045     /** Pool associated with this connection */
1046     apr_pool_t *pool;
1047     /** Physical vhost this conn came in on */
1048     server_rec *base_server;
1049     /** used by http_vhost.c */
1050     void *vhost_lookup_data;
1051
1052     /* Information about the connection itself */
1053     /** local address */
1054     apr_sockaddr_t *local_addr;
1055     /** remote address */
1056     apr_sockaddr_t *client_addr;
1057
1058     /** Client's IP address */
1059     char *client_ip;
1060     /** Client's DNS name, if known.  NULL if DNS hasn't been checked,
1061      *  "" if it has and no address was found.  N.B. Only access this though
1062      * get_remote_host() */
1063     char *remote_host;
1064     /** Only ever set if doing rfc1413 lookups.  N.B. Only access this through
1065      *  get_remote_logname() */
1066     char *remote_logname;
1067
1068     /** server IP address */
1069     char *local_ip;
1070     /** used for ap_get_server_name when UseCanonicalName is set to DNS
1071      *  (ignores setting of HostnameLookups) */
1072     char *local_host;
1073
1074     /** ID of this connection; unique at any point in time */
1075     long id;
1076     /** Config vector containing pointers to connections per-server
1077      *  config structures. */
1078     struct ap_conf_vector_t *conn_config;
1079     /** Notes on *this* connection: send note from one module to
1080      *  another. must remain valid for all requests on this conn */
1081     apr_table_t *notes;
1082     /** A list of input filters to be used for this connection */
1083     struct ap_filter_t *input_filters;
1084     /** A list of output filters to be used for this connection */
1085     struct ap_filter_t *output_filters;
1086     /** handle to scoreboard information for this connection */
1087     void *sbh;
1088     /** The bucket allocator to use for all bucket/brigade creations */
1089     struct apr_bucket_alloc_t *bucket_alloc;
1090     /** The current state of this connection; may be NULL if not used by MPM */
1091     conn_state_t *cs;
1092     /** Is there data pending in the input filters? */
1093     int data_in_input_filters;
1094     /** Is there data pending in the output filters? */
1095     int data_in_output_filters;
1096
1097     /** Are there any filters that clogg/buffer the input stream, breaking
1098      *  the event mpm.
1099      */
1100     unsigned int clogging_input_filters:1;
1101
1102     /** have we done double-reverse DNS? -1 yes/failure, 0 not yet,
1103      *  1 yes/success */
1104     signed int double_reverse:2;
1105
1106     /** Are we still talking? */
1107     unsigned aborted;
1108
1109     /** Are we going to keep the connection alive for another request?
1110      * @see ap_conn_keepalive_e */
1111     ap_conn_keepalive_e keepalive;
1112
1113     /** How many times have we used it? */
1114     int keepalives;
1115
1116     /** Optional connection log level configuration. May point to a server or
1117      *  per_dir config, i.e. must be copied before modifying */
1118     const struct ap_logconf *log;
1119
1120     /** Id to identify this connection in error log. Set when the first
1121      *  error log entry for this connection is generated.
1122      */
1123     const char *log_id;
1124
1125
1126     /** This points to the current thread being used to process this request,
1127      * over the lifetime of a request, the value may change. Users of the connection
1128      * record should not rely upon it staying the same between calls that invole
1129      * the MPM.
1130      */
1131 #if APR_HAS_THREADS
1132     apr_thread_t *current_thread;
1133 #endif
1134 };
1135
1136 /**
1137  * Enumeration of connection states
1138  */
1139 typedef enum  {
1140     CONN_STATE_CHECK_REQUEST_LINE_READABLE,
1141     CONN_STATE_READ_REQUEST_LINE,
1142     CONN_STATE_HANDLER,
1143     CONN_STATE_WRITE_COMPLETION,
1144     CONN_STATE_SUSPENDED,
1145     CONN_STATE_LINGER,
1146     CONN_STATE_LINGER_NORMAL,
1147     CONN_STATE_LINGER_SHORT
1148 } conn_state_e;
1149
1150 /**
1151  * @brief A structure to contain connection state information
1152  */
1153 struct conn_state_t {
1154     /** Current state of the connection */
1155     conn_state_e state;
1156 };
1157
1158 /* Per-vhost config... */
1159
1160 /**
1161  * The address 255.255.255.255, when used as a virtualhost address,
1162  * will become the "default" server when the ip doesn't match other vhosts.
1163  */
1164 #define DEFAULT_VHOST_ADDR 0xfffffffful
1165
1166
1167 /**
1168  * @struct server_addr_rec
1169  * @brief  A structure to be used for Per-vhost config
1170  */
1171 typedef struct server_addr_rec server_addr_rec;
1172 struct server_addr_rec {
1173     /** The next server in the list */
1174     server_addr_rec *next;
1175     /** The name given in "<VirtualHost>" */
1176     char *virthost;
1177     /** The bound address, for this server */
1178     apr_sockaddr_t *host_addr;
1179     /** The bound port, for this server */
1180     apr_port_t host_port;
1181 };
1182
1183 struct ap_logconf {
1184     /** The per-module log levels */
1185     signed char *module_levels;
1186
1187     /** The log level for this server */
1188     int level;
1189 };
1190 /**
1191  * @brief A structure to store information for each virtual server
1192  */
1193 struct server_rec {
1194     /** The process this server is running in */
1195     process_rec *process;
1196     /** The next server in the list */
1197     server_rec *next;
1198
1199     /* Log files --- note that transfer log is now in the modules... */
1200
1201     /** The name of the error log */
1202     char *error_fname;
1203     /** A file descriptor that references the error log */
1204     apr_file_t *error_log;
1205     /** The log level configuration */
1206     struct ap_logconf log;
1207
1208     /* Module-specific configuration for server, and defaults... */
1209
1210     /** Config vector containing pointers to modules' per-server config
1211      *  structures. */
1212     struct ap_conf_vector_t *module_config;
1213     /** MIME type info, etc., before we start checking per-directory info */
1214     struct ap_conf_vector_t *lookup_defaults;
1215
1216     /** The name of the server */
1217     const char *defn_name;
1218     /** The line of the config file that the server was defined on */
1219     unsigned defn_line_number;
1220     /** true if this is the virtual server */
1221     char is_virtual;
1222
1223
1224     /* Information for redirects */
1225
1226     /** for redirects, etc. */
1227     apr_port_t port;
1228     /** The server request scheme for redirect responses */
1229     const char *server_scheme;
1230
1231     /* Contact information */
1232
1233     /** The admin's contact information */
1234     char *server_admin;
1235     /** The server hostname */
1236     char *server_hostname;
1237
1238     /* Transaction handling */
1239
1240     /** I haven't got a clue */
1241     server_addr_rec *addrs;
1242     /** Timeout, as an apr interval, before we give up */
1243     apr_interval_time_t timeout;
1244     /** The apr interval we will wait for another request */
1245     apr_interval_time_t keep_alive_timeout;
1246     /** Maximum requests per connection */
1247     int keep_alive_max;
1248     /** Use persistent connections? */
1249     int keep_alive;
1250
1251     /** Normal names for ServerAlias servers */
1252     apr_array_header_t *names;
1253     /** Wildcarded names for ServerAlias servers */
1254     apr_array_header_t *wild_names;
1255
1256     /** Pathname for ServerPath */
1257     const char *path;
1258     /** Length of path */
1259     int pathlen;
1260
1261     /** limit on size of the HTTP request line    */
1262     int limit_req_line;
1263     /** limit on size of any request header field */
1264     int limit_req_fieldsize;
1265     /** limit on number of request header fields  */
1266     int limit_req_fields;
1267
1268
1269     /** Opaque storage location */
1270     void *context;
1271 };
1272
1273 /**
1274  * Get the context_document_root for a request. This is a generalization of
1275  * the document root, which is too limited in the presence of mappers like
1276  * mod_userdir and mod_alias. The context_document_root is the directory
1277  * on disk that maps to the context_prefix URI prefix.
1278  * @param r The request
1279  * @note For resources that do not map to the file system or for very complex
1280  * mappings, this information may still be wrong.
1281  */
1282 AP_DECLARE(const char *) ap_context_document_root(request_rec *r);
1283
1284 /**
1285  * Get the context_prefix for a request. The context_prefix URI prefix
1286  * maps to the context_document_root on disk.
1287  * @param r The request
1288  */
1289 AP_DECLARE(const char *) ap_context_prefix(request_rec *r);
1290
1291 /** Set context_prefix and context_document_root for a request.
1292  * @param r The request
1293  * @param prefix the URI prefix, without trailing slash
1294  * @param document_root the corresponding directory on disk, without trailing
1295  * slash
1296  * @note If one of prefix of document_root is NULL, the corrsponding
1297  * property will not be changed.
1298  */
1299 AP_DECLARE(void) ap_set_context_info(request_rec *r, const char *prefix,
1300                                      const char *document_root);
1301
1302 /** Set per-request document root. This is for mass virtual hosting modules
1303  * that want to provide the correct DOCUMENT_ROOT value to scripts.
1304  * @param r The request
1305  * @param document_root the document root for the request.
1306  */
1307 AP_DECLARE(void) ap_set_document_root(request_rec *r, const char *document_root);
1308
1309 /**
1310  * Examine a field value (such as a media-/content-type) string and return
1311  * it sans any parameters; e.g., strip off any ';charset=foo' and the like.
1312  * @param p Pool to allocate memory from
1313  * @param intype The field to examine
1314  * @return A copy of the field minus any parameters
1315  */
1316 AP_DECLARE(char *) ap_field_noparam(apr_pool_t *p, const char *intype);
1317
1318 /**
1319  * Convert a time from an integer into a string in a specified format
1320  * @param p The pool to allocate memory from
1321  * @param t The time to convert
1322  * @param fmt The format to use for the conversion
1323  * @param gmt Convert the time for GMT?
1324  * @return The string that represents the specified time
1325  */
1326 AP_DECLARE(char *) ap_ht_time(apr_pool_t *p, apr_time_t t, const char *fmt, int gmt);
1327
1328 /* String handling. The *_nc variants allow you to use non-const char **s as
1329    arguments (unfortunately C won't automatically convert a char ** to a const
1330    char **) */
1331
1332 /**
1333  * Get the characters until the first occurance of a specified character
1334  * @param p The pool to allocate memory from
1335  * @param line The string to get the characters from
1336  * @param stop The character to stop at
1337  * @return A copy of the characters up to the first stop character
1338  */
1339 AP_DECLARE(char *) ap_getword(apr_pool_t *p, const char **line, char stop);
1340
1341 /**
1342  * Get the characters until the first occurance of a specified character
1343  * @param p The pool to allocate memory from
1344  * @param line The string to get the characters from
1345  * @param stop The character to stop at
1346  * @return A copy of the characters up to the first stop character
1347  * @note This is the same as ap_getword(), except it doesn't use const char **.
1348  */
1349 AP_DECLARE(char *) ap_getword_nc(apr_pool_t *p, char **line, char stop);
1350
1351 /**
1352  * Get the first word from a given string.  A word is defined as all characters
1353  * up to the first whitespace.
1354  * @param p The pool to allocate memory from
1355  * @param line The string to traverse
1356  * @return The first word in the line
1357  */
1358 AP_DECLARE(char *) ap_getword_white(apr_pool_t *p, const char **line);
1359
1360 /**
1361  * Get the first word from a given string.  A word is defined as all characters
1362  * up to the first whitespace.
1363  * @param p The pool to allocate memory from
1364  * @param line The string to traverse
1365  * @return The first word in the line
1366  * @note The same as ap_getword_white(), except it doesn't use const char**
1367  */
1368 AP_DECLARE(char *) ap_getword_white_nc(apr_pool_t *p, char **line);
1369
1370 /**
1371  * Get all characters from the first occurance of @a stop to the first "\0"
1372  * @param p The pool to allocate memory from
1373  * @param line The line to traverse
1374  * @param stop The character to start at
1375  * @return A copy of all caracters after the first occurance of the specified
1376  *         character
1377  */
1378 AP_DECLARE(char *) ap_getword_nulls(apr_pool_t *p, const char **line,
1379                                     char stop);
1380
1381 /**
1382  * Get all characters from the first occurance of @a stop to the first "\0"
1383  * @param p The pool to allocate memory from
1384  * @param line The line to traverse
1385  * @param stop The character to start at
1386  * @return A copy of all caracters after the first occurance of the specified
1387  *         character
1388  * @note The same as ap_getword_nulls(), except it doesn't use const char **.
1389  */
1390 AP_DECLARE(char *) ap_getword_nulls_nc(apr_pool_t *p, char **line, char stop);
1391
1392 /**
1393  * Get the second word in the string paying attention to quoting
1394  * @param p The pool to allocate from
1395  * @param line The line to traverse
1396  * @return A copy of the string
1397  */
1398 AP_DECLARE(char *) ap_getword_conf(apr_pool_t *p, const char **line);
1399
1400 /**
1401  * Get the second word in the string paying attention to quoting
1402  * @param p The pool to allocate from
1403  * @param line The line to traverse
1404  * @return A copy of the string
1405  * @note The same as ap_getword_conf(), except it doesn't use const char **.
1406  */
1407 AP_DECLARE(char *) ap_getword_conf_nc(apr_pool_t *p, char **line);
1408
1409 /**
1410  * Check a string for any config define or environment variable construct
1411  * and replace each of them by the value of that variable, if it exists.
1412  * The default syntax of the constructs is ${ENV} but can be changed by
1413  * setting the define::* config defines. If the variable does not exist,
1414  * leave the ${ENV} construct alone but print a warning.
1415  * @param p The pool to allocate from
1416  * @param word The string to check
1417  * @return The string with the replaced environment variables
1418  */
1419 AP_DECLARE(const char *) ap_resolve_env(apr_pool_t *p, const char * word);
1420
1421 /**
1422  * Size an HTTP header field list item, as separated by a comma.
1423  * @param field The field to size
1424  * @param len The length of the field
1425  * @return The return value is a pointer to the beginning of the non-empty
1426  * list item within the original string (or NULL if there is none) and the
1427  * address of field is shifted to the next non-comma, non-whitespace
1428  * character.  len is the length of the item excluding any beginning whitespace.
1429  */
1430 AP_DECLARE(const char *) ap_size_list_item(const char **field, int *len);
1431
1432 /**
1433  * Retrieve an HTTP header field list item, as separated by a comma,
1434  * while stripping insignificant whitespace and lowercasing anything not in
1435  * a quoted string or comment.
1436  * @param p The pool to allocate from
1437  * @param field The field to retrieve
1438  * @return The return value is a new string containing the converted list
1439  *         item (or NULL if none) and the address pointed to by field is
1440  *         shifted to the next non-comma, non-whitespace.
1441  */
1442 AP_DECLARE(char *) ap_get_list_item(apr_pool_t *p, const char **field);
1443
1444 /**
1445  * Find an item in canonical form (lowercase, no extra spaces) within
1446  * an HTTP field value list.
1447  * @param p The pool to allocate from
1448  * @param line The field value list to search
1449  * @param tok The token to search for
1450  * @return 1 if found, 0 if not found.
1451  */
1452 AP_DECLARE(int) ap_find_list_item(apr_pool_t *p, const char *line, const char *tok);
1453
1454 /**
1455  * Retrieve a token, spacing over it and adjusting the pointer to
1456  * the first non-white byte afterwards.  Note that these tokens
1457  * are delimited by semis and commas and can also be delimited
1458  * by whitespace at the caller's option.
1459  * @param p The pool to allocate from
1460  * @param accept_line The line to retrieve the token from (adjusted afterwards)
1461  * @param accept_white Is it delimited by whitespace
1462  * @return the token
1463  */
1464 AP_DECLARE(char *) ap_get_token(apr_pool_t *p, const char **accept_line, int accept_white);
1465
1466 /**
1467  * Find http tokens, see the definition of token from RFC2068
1468  * @param p The pool to allocate from
1469  * @param line The line to find the token
1470  * @param tok The token to find
1471  * @return 1 if the token is found, 0 otherwise
1472  */
1473 AP_DECLARE(int) ap_find_token(apr_pool_t *p, const char *line, const char *tok);
1474
1475 /**
1476  * find http tokens from the end of the line
1477  * @param p The pool to allocate from
1478  * @param line The line to find the token
1479  * @param tok The token to find
1480  * @return 1 if the token is found, 0 otherwise
1481  */
1482 AP_DECLARE(int) ap_find_last_token(apr_pool_t *p, const char *line, const char *tok);
1483
1484 /**
1485  * Check for an Absolute URI syntax
1486  * @param u The string to check
1487  * @return 1 if URI, 0 otherwise
1488  */
1489 AP_DECLARE(int) ap_is_url(const char *u);
1490
1491 /**
1492  * Unescape a string
1493  * @param url The string to unescape
1494  * @return 0 on success, non-zero otherwise
1495  */
1496 AP_DECLARE(int) ap_unescape_all(char *url);
1497
1498 /**
1499  * Unescape a URL
1500  * @param url The url to unescape
1501  * @return 0 on success, non-zero otherwise
1502  */
1503 AP_DECLARE(int) ap_unescape_url(char *url);
1504
1505 /**
1506  * Unescape a URL, but leaving %2f (slashes) escaped
1507  * @param url The url to unescape
1508  * @param decode_slashes Whether or not slashes should be decoded
1509  * @return 0 on success, non-zero otherwise
1510  */
1511 AP_DECLARE(int) ap_unescape_url_keep2f(char *url, int decode_slashes);
1512
1513 /**
1514  * Unescape an application/x-www-form-urlencoded string
1515  * @param query The query to unescape
1516  * @return 0 on success, non-zero otherwise
1517  */
1518 AP_DECLARE(int) ap_unescape_urlencoded(char *query);
1519
1520 /**
1521  * Convert all double slashes to single slashes
1522  * @param name The string to convert
1523  */
1524 AP_DECLARE(void) ap_no2slash(char *name);
1525
1526 /**
1527  * Remove all ./ and xx/../ substrings from a file name. Also remove
1528  * any leading ../ or /../ substrings.
1529  * @param name the file name to parse
1530  */
1531 AP_DECLARE(void) ap_getparents(char *name);
1532
1533 /**
1534  * Escape a path segment, as defined in RFC 1808
1535  * @param p The pool to allocate from
1536  * @param s The path to convert
1537  * @return The converted URL
1538  */
1539 AP_DECLARE(char *) ap_escape_path_segment(apr_pool_t *p, const char *s);
1540
1541 /**
1542  * Escape a path segment, as defined in RFC 1808, to a preallocated buffer.
1543  * @param c The preallocated buffer to write to
1544  * @param s The path to convert
1545  * @return The converted URL (c)
1546  */
1547 AP_DECLARE(char *) ap_escape_path_segment_buffer(char *c, const char *s);
1548
1549 /**
1550  * convert an OS path to a URL in an OS dependant way.
1551  * @param p The pool to allocate from
1552  * @param path The path to convert
1553  * @param partial if set, assume that the path will be appended to something
1554  *        with a '/' in it (and thus does not prefix "./")
1555  * @return The converted URL
1556  */
1557 AP_DECLARE(char *) ap_os_escape_path(apr_pool_t *p, const char *path, int partial);
1558
1559 /** @see ap_os_escape_path */
1560 #define ap_escape_uri(ppool,path) ap_os_escape_path(ppool,path,1)
1561
1562 /**
1563  * Escape a string as application/x-www-form-urlencoded
1564  * @param p The pool to allocate from
1565  * @param s The path to convert
1566  * @return The converted URL
1567  */
1568 AP_DECLARE(char *) ap_escape_urlencoded(apr_pool_t *p, const char *s);
1569
1570 /**
1571  * Escape a string as application/x-www-form-urlencoded, to a preallocated buffer
1572  * @param c The preallocated buffer to write to
1573  * @param s The path to convert
1574  * @return The converted URL (c)
1575  */
1576 AP_DECLARE(char *) ap_escape_urlencoded_buffer(char *c, const char *s);
1577
1578 /**
1579  * Escape an html string
1580  * @param p The pool to allocate from
1581  * @param s The html to escape
1582  * @return The escaped string
1583  */
1584 #define ap_escape_html(p,s) ap_escape_html2(p,s,0)
1585 /**
1586  * Escape an html string
1587  * @param p The pool to allocate from
1588  * @param s The html to escape
1589  * @param toasc Whether to escape all non-ASCII chars to \&\#nnn;
1590  * @return The escaped string
1591  */
1592 AP_DECLARE(char *) ap_escape_html2(apr_pool_t *p, const char *s, int toasc);
1593
1594 /**
1595  * Escape a string for logging
1596  * @param p The pool to allocate from
1597  * @param str The string to escape
1598  * @return The escaped string
1599  */
1600 AP_DECLARE(char *) ap_escape_logitem(apr_pool_t *p, const char *str);
1601
1602 /**
1603  * Escape a string for logging into the error log (without a pool)
1604  * @param dest The buffer to write to
1605  * @param source The string to escape
1606  * @param buflen The buffer size for the escaped string (including "\0")
1607  * @return The len of the escaped string (always < maxlen)
1608  */
1609 AP_DECLARE(apr_size_t) ap_escape_errorlog_item(char *dest, const char *source,
1610                                                apr_size_t buflen);
1611
1612 /**
1613  * Construct a full hostname
1614  * @param p The pool to allocate from
1615  * @param hostname The hostname of the server
1616  * @param port The port the server is running on
1617  * @param r The current request
1618  * @return The server's hostname
1619  */
1620 AP_DECLARE(char *) ap_construct_server(apr_pool_t *p, const char *hostname,
1621                                     apr_port_t port, const request_rec *r);
1622
1623 /**
1624  * Escape a shell command
1625  * @param p The pool to allocate from
1626  * @param s The command to escape
1627  * @return The escaped shell command
1628  */
1629 AP_DECLARE(char *) ap_escape_shell_cmd(apr_pool_t *p, const char *s);
1630
1631 /**
1632  * Count the number of directories in a path
1633  * @param path The path to count
1634  * @return The number of directories
1635  */
1636 AP_DECLARE(int) ap_count_dirs(const char *path);
1637
1638 /**
1639  * Copy at most @a n leading directories of @a s into @a d. @a d
1640  * should be at least as large as @a s plus 1 extra byte
1641  *
1642  * @param d The location to copy to
1643  * @param s The location to copy from
1644  * @param n The number of directories to copy
1645  * @return value is the ever useful pointer to the trailing "\0" of d
1646  * @note on platforms with drive letters, n = 0 returns the "/" root,
1647  * whereas n = 1 returns the "d:/" root.  On all other platforms, n = 0
1648  * returns the empty string.  */
1649 AP_DECLARE(char *) ap_make_dirstr_prefix(char *d, const char *s, int n);
1650
1651 /**
1652  * Return the parent directory name (including trailing /) of the file
1653  * @a s
1654  * @param p The pool to allocate from
1655  * @param s The file to get the parent of
1656  * @return A copy of the file's parent directory
1657  */
1658 AP_DECLARE(char *) ap_make_dirstr_parent(apr_pool_t *p, const char *s);
1659
1660 /**
1661  * Given a directory and filename, create a single path from them.  This
1662  * function is smart enough to ensure that there is a sinlge '/' between the
1663  * directory and file names
1664  * @param a The pool to allocate from
1665  * @param dir The directory name
1666  * @param f The filename
1667  * @return A copy of the full path
1668  * @note Never consider using this function if you are dealing with filesystem
1669  * names that need to remain canonical, unless you are merging an apr_dir_read
1670  * path and returned filename.  Otherwise, the result is not canonical.
1671  */
1672 AP_DECLARE(char *) ap_make_full_path(apr_pool_t *a, const char *dir, const char *f);
1673
1674 /**
1675  * Test if the given path has an an absolute path.
1676  * @param p The pool to allocate from
1677  * @param dir The directory name
1678  * @note The converse is not necessarily true, some OS's (Win32/OS2/Netware) have
1679  * multiple forms of absolute paths.  This only reports if the path is absolute
1680  * in a canonical sense.
1681  */
1682 AP_DECLARE(int) ap_os_is_path_absolute(apr_pool_t *p, const char *dir);
1683
1684 /**
1685  * Does the provided string contain wildcard characters?  This is useful
1686  * for determining if the string should be passed to strcmp_match or to strcmp.
1687  * The only wildcard characters recognized are '?' and '*'
1688  * @param str The string to check
1689  * @return 1 if the string has wildcards, 0 otherwise
1690  */
1691 AP_DECLARE(int) ap_is_matchexp(const char *str);
1692
1693 /**
1694  * Determine if a string matches a patterm containing the wildcards '?' or '*'
1695  * @param str The string to check
1696  * @param expected The pattern to match against
1697  * @return 1 if the two strings match, 0 otherwise
1698  */
1699 AP_DECLARE(int) ap_strcmp_match(const char *str, const char *expected);
1700
1701 /**
1702  * Determine if a string matches a patterm containing the wildcards '?' or '*',
1703  * ignoring case
1704  * @param str The string to check
1705  * @param expected The pattern to match against
1706  * @return 1 if the two strings match, 0 otherwise
1707  */
1708 AP_DECLARE(int) ap_strcasecmp_match(const char *str, const char *expected);
1709
1710 /**
1711  * Find the first occurrence of the substring s2 in s1, regardless of case
1712  * @param s1 The string to search
1713  * @param s2 The substring to search for
1714  * @return A pointer to the beginning of the substring
1715  * @remark See apr_strmatch() for a faster alternative
1716  */
1717 AP_DECLARE(char *) ap_strcasestr(const char *s1, const char *s2);
1718
1719 /**
1720  * Return a pointer to the location inside of bigstring immediately after prefix
1721  * @param bigstring The input string
1722  * @param prefix The prefix to strip away
1723  * @return A pointer relative to bigstring after prefix
1724  */
1725 AP_DECLARE(const char *) ap_stripprefix(const char *bigstring,
1726                                         const char *prefix);
1727
1728 /**
1729  * Decode a base64 encoded string into memory allocated from a pool
1730  * @param p The pool to allocate from
1731  * @param bufcoded The encoded string
1732  * @return The decoded string
1733  */
1734 AP_DECLARE(char *) ap_pbase64decode(apr_pool_t *p, const char *bufcoded);
1735
1736 /**
1737  * Encode a string into memory allocated from a pool in base 64 format
1738  * @param p The pool to allocate from
1739  * @param string The plaintext string
1740  * @return The encoded string
1741  */
1742 AP_DECLARE(char *) ap_pbase64encode(apr_pool_t *p, char *string);
1743
1744 /**
1745  * Compile a regular expression to be used later. The regex is freed when
1746  * the pool is destroyed.
1747  * @param p The pool to allocate from
1748  * @param pattern the regular expression to compile
1749  * @param cflags The bitwise or of one or more of the following:
1750  *   @li REG_EXTENDED - Use POSIX extended Regular Expressions
1751  *   @li REG_ICASE    - Ignore case
1752  *   @li REG_NOSUB    - Support for substring addressing of matches
1753  *       not required
1754  *   @li REG_NEWLINE  - Match-any-character operators don't match new-line
1755  * @return The compiled regular expression
1756  */
1757 AP_DECLARE(ap_regex_t *) ap_pregcomp(apr_pool_t *p, const char *pattern,
1758                                      int cflags);
1759
1760 /**
1761  * Free the memory associated with a compiled regular expression
1762  * @param p The pool the regex was allocated from
1763  * @param reg The regular expression to free
1764  * @note This function is only necessary if the regex should be cleaned
1765  * up before the pool
1766  */
1767 AP_DECLARE(void) ap_pregfree(apr_pool_t *p, ap_regex_t *reg);
1768
1769 /**
1770  * After performing a successful regex match, you may use this function to
1771  * perform a series of string substitutions based on subexpressions that were
1772  * matched during the call to ap_regexec. This function is limited to
1773  * result strings of 64K. Consider using ap_pregsub_ex() instead.
1774  * @param p The pool to allocate from
1775  * @param input An arbitrary string containing $1 through $9.  These are
1776  *              replaced with the corresponding matched sub-expressions
1777  * @param source The string that was originally matched to the regex
1778  * @param nmatch the nmatch returned from ap_pregex
1779  * @param pmatch the pmatch array returned from ap_pregex
1780  * @return The substituted string, or NULL on error
1781  */
1782 AP_DECLARE(char *) ap_pregsub(apr_pool_t *p, const char *input,
1783                               const char *source, apr_size_t nmatch,
1784                               ap_regmatch_t pmatch[]);
1785
1786 /**
1787  * After performing a successful regex match, you may use this function to
1788  * perform a series of string substitutions based on subexpressions that were
1789  * matched during the call to ap_regexec
1790  * @param p The pool to allocate from
1791  * @param result where to store the result, will be set to NULL on error
1792  * @param input An arbitrary string containing $1 through $9.  These are
1793  *              replaced with the corresponding matched sub-expressions
1794  * @param source The string that was originally matched to the regex
1795  * @param nmatch the nmatch returned from ap_pregex
1796  * @param pmatch the pmatch array returned from ap_pregex
1797  * @param maxlen the maximum string length to return, 0 for unlimited
1798  * @return The substituted string, or NULL on error
1799  */
1800 AP_DECLARE(apr_status_t) ap_pregsub_ex(apr_pool_t *p, char **result,
1801                                        const char *input, const char *source,
1802                                        apr_size_t nmatch,
1803                                        ap_regmatch_t pmatch[],
1804                                        apr_size_t maxlen);
1805
1806 /**
1807  * We want to downcase the type/subtype for comparison purposes
1808  * but nothing else because ;parameter=foo values are case sensitive.
1809  * @param s The content-type to convert to lowercase
1810  */
1811 AP_DECLARE(void) ap_content_type_tolower(char *s);
1812
1813 /**
1814  * convert a string to all lowercase
1815  * @param s The string to convert to lowercase
1816  */
1817 AP_DECLARE(void) ap_str_tolower(char *s);
1818
1819 /**
1820  * convert a string to all uppercase
1821  * @param s The string to convert to uppercase
1822  */
1823 AP_DECLARE(void) ap_str_toupper(char *s);
1824
1825 /**
1826  * Search a string from left to right for the first occurrence of a
1827  * specific character
1828  * @param str The string to search
1829  * @param c The character to search for
1830  * @return The index of the first occurrence of c in str
1831  */
1832 AP_DECLARE(int) ap_ind(const char *str, char c);        /* Sigh... */
1833
1834 /**
1835  * Search a string from right to left for the first occurrence of a
1836  * specific character
1837  * @param str The string to search
1838  * @param c The character to search for
1839  * @return The index of the first occurrence of c in str
1840  */
1841 AP_DECLARE(int) ap_rind(const char *str, char c);
1842
1843 /**
1844  * Given a string, replace any bare &quot; with \\&quot; .
1845  * @param p The pool to allocate memory from
1846  * @param instring The string to search for &quot;
1847  * @return A copy of the string with escaped quotes
1848  */
1849 AP_DECLARE(char *) ap_escape_quotes(apr_pool_t *p, const char *instring);
1850
1851 /**
1852  * Given a string, append the PID deliminated by delim.
1853  * Usually used to create a pid-appended filepath name
1854  * (eg: /a/b/foo -> /a/b/foo.6726). A function, and not
1855  * a macro, to avoid unistd.h dependency
1856  * @param p The pool to allocate memory from
1857  * @param string The string to append the PID to
1858  * @param delim The string to use to deliminate the string from the PID
1859  * @return A copy of the string with the PID appended
1860  */
1861 AP_DECLARE(char *) ap_append_pid(apr_pool_t *p, const char *string,
1862                                  const char *delim);
1863
1864 /**
1865  * Parse a given timeout parameter string into an apr_interval_time_t value.
1866  * The unit of the time interval is given as postfix string to the numeric
1867  * string. Currently the following units are understood:
1868  *
1869  * ms    : milliseconds
1870  * s     : seconds
1871  * mi[n] : minutes
1872  * h     : hours
1873  *
1874  * If no unit is contained in the given timeout parameter the default_time_unit
1875  * will be used instead.
1876  * @param timeout_parameter The string containing the timeout parameter.
1877  * @param timeout The timeout value to be returned.
1878  * @param default_time_unit The default time unit to use if none is specified
1879  * in timeout_parameter.
1880  * @return Status value indicating whether the parsing was successful or not.
1881  */
1882 AP_DECLARE(apr_status_t) ap_timeout_parameter_parse(
1883                                                const char *timeout_parameter,
1884                                                apr_interval_time_t *timeout,
1885                                                const char *default_time_unit);
1886
1887 /**
1888  * Determine if a request has a request body or not.
1889  *
1890  * @param r the request_rec of the request
1891  * @return truth value
1892  */
1893 AP_DECLARE(int) ap_request_has_body(request_rec *r);
1894
1895 /**
1896  * Cleanup a string (mainly to be filesystem safe)
1897  * We only allow '_' and alphanumeric chars. Non-printable
1898  * map to 'x' and all others map to '_'
1899  *
1900  * @param  p pool to use to allocate dest
1901  * @param  src string to clean up
1902  * @param  dest cleaned up, allocated string
1903  * @return Status value indicating whether the cleaning was successful or not.
1904  */
1905 AP_DECLARE(apr_status_t) ap_pstr2_alnum(apr_pool_t *p, const char *src,
1906                                         const char **dest);
1907
1908 /**
1909  * Cleanup a string (mainly to be filesystem safe)
1910  * We only allow '_' and alphanumeric chars. Non-printable
1911  * map to 'x' and all others map to '_'
1912  *
1913  * @param  src string to clean up
1914  * @param  dest cleaned up, pre-allocated string
1915  * @return Status value indicating whether the cleaning was successful or not.
1916  */
1917 AP_DECLARE(apr_status_t) ap_str2_alnum(const char *src, char *dest);
1918
1919 /**
1920  * Structure to store the contents of an HTTP form of the type
1921  * application/x-www-form-urlencoded.
1922  *
1923  * Currently it contains the name as a char* of maximum length
1924  * HUGE_STRING_LEN, and a value in the form of a bucket brigade
1925  * of arbitrary length.
1926  */
1927 typedef struct {
1928     const char *name;
1929     apr_bucket_brigade *value;
1930 } ap_form_pair_t;
1931
1932 /**
1933  * Read the body and parse any form found, which must be of the
1934  * type application/x-www-form-urlencoded.
1935  * @param r request containing POSTed form data
1936  * @param f filter
1937  * @param ptr returned array of ap_form_pair_t
1938  * @param num max num of params or -1 for unlimited
1939  * @param size max size allowed for parsed data
1940  * @return OK or HTTP error
1941  */
1942 AP_DECLARE(int) ap_parse_form_data(request_rec *r, struct ap_filter_t *f,
1943                                    apr_array_header_t **ptr,
1944                                    apr_size_t num, apr_size_t size);
1945
1946 /* Misc system hackery */
1947 /**
1948  * Given the name of an object in the file system determine if it is a directory
1949  * @param p The pool to allocate from
1950  * @param name The name of the object to check
1951  * @return 1 if it is a directory, 0 otherwise
1952  */
1953 AP_DECLARE(int) ap_is_rdirectory(apr_pool_t *p, const char *name);
1954
1955 /**
1956  * Given the name of an object in the file system determine if it is a directory - this version is symlink aware
1957  * @param p The pool to allocate from
1958  * @param name The name of the object to check
1959  * @return 1 if it is a directory, 0 otherwise
1960  */
1961 AP_DECLARE(int) ap_is_directory(apr_pool_t *p, const char *name);
1962
1963 #ifdef _OSD_POSIX
1964 extern int os_init_job_environment(server_rec *s, const char *user_name, int one_process);
1965 #endif /* _OSD_POSIX */
1966
1967 /**
1968  * Determine the local host name for the current machine
1969  * @param p The pool to allocate from
1970  * @return A copy of the local host name
1971  */
1972 char *ap_get_local_host(apr_pool_t *p);
1973
1974 /**
1975  * Log an assertion to the error log
1976  * @param szExp The assertion that failed
1977  * @param szFile The file the assertion is in
1978  * @param nLine The line the assertion is defined on
1979  */
1980 AP_DECLARE(void) ap_log_assert(const char *szExp, const char *szFile, int nLine)
1981                             __attribute__((noreturn));
1982
1983 /**
1984  * @internal Internal Assert function
1985  */
1986 #define ap_assert(exp) ((exp) ? (void)0 : ap_log_assert(#exp,__FILE__,__LINE__))
1987
1988 /**
1989  * Redefine assert() to something more useful for an Apache...
1990  *
1991  * Use ap_assert() if the condition should always be checked.
1992  * Use AP_DEBUG_ASSERT() if the condition should only be checked when AP_DEBUG
1993  * is defined.
1994  */
1995 #ifdef AP_DEBUG
1996 #define AP_DEBUG_ASSERT(exp) ap_assert(exp)
1997 #else
1998 #define AP_DEBUG_ASSERT(exp) ((void)0)
1999 #endif
2000
2001 /**
2002  * @defgroup stopsignal Flags which indicate places where the server should stop for debugging.
2003  * @{
2004  * A set of flags which indicate places where the server should raise(SIGSTOP).
2005  * This is useful for debugging, because you can then attach to that process
2006  * with gdb and continue.  This is important in cases where one_process
2007  * debugging isn't possible.
2008  */
2009 /** stop on a Detach */
2010 #define SIGSTOP_DETACH                  1
2011 /** stop making a child process */
2012 #define SIGSTOP_MAKE_CHILD              2
2013 /** stop spawning a child process */
2014 #define SIGSTOP_SPAWN_CHILD             4
2015 /** stop spawning a child process with a piped log */
2016 #define SIGSTOP_PIPED_LOG_SPAWN         8
2017 /** stop spawning a CGI child process */
2018 #define SIGSTOP_CGI_CHILD               16
2019
2020 /** Macro to get GDB started */
2021 #ifdef DEBUG_SIGSTOP
2022 extern int raise_sigstop_flags;
2023 #define RAISE_SIGSTOP(x)        do { \
2024         if (raise_sigstop_flags & SIGSTOP_##x) raise(SIGSTOP);\
2025     } while (0)
2026 #else
2027 #define RAISE_SIGSTOP(x)
2028 #endif
2029 /** @} */
2030 /**
2031  * Get HTML describing the address and (optionally) admin of the server.
2032  * @param prefix Text which is prepended to the return value
2033  * @param r The request_rec
2034  * @return HTML describing the server, allocated in @a r's pool.
2035  */
2036 AP_DECLARE(const char *) ap_psignature(const char *prefix, request_rec *r);
2037
2038 /** strtoul does not exist on sunos4. */
2039 #ifdef strtoul
2040 #undef strtoul
2041 #endif
2042 #define strtoul strtoul_is_not_a_portable_function_use_strtol_instead
2043
2044   /* The C library has functions that allow const to be silently dropped ...
2045      these macros detect the drop in maintainer mode, but use the native
2046      methods for normal builds
2047
2048      Note that on some platforms (e.g., AIX with gcc, Solaris with gcc), string.h needs
2049      to be included before the macros are defined or compilation will fail.
2050   */
2051 #include <string.h>
2052
2053 AP_DECLARE(char *) ap_strchr(char *s, int c);
2054 AP_DECLARE(const char *) ap_strchr_c(const char *s, int c);
2055 AP_DECLARE(char *) ap_strrchr(char *s, int c);
2056 AP_DECLARE(const char *) ap_strrchr_c(const char *s, int c);
2057 AP_DECLARE(char *) ap_strstr(char *s, const char *c);
2058 AP_DECLARE(const char *) ap_strstr_c(const char *s, const char *c);
2059
2060 #ifdef AP_DEBUG
2061
2062 #undef strchr
2063 # define strchr(s, c)  ap_strchr(s,c)
2064 #undef strrchr
2065 # define strrchr(s, c) ap_strrchr(s,c)
2066 #undef strstr
2067 # define strstr(s, c)  ap_strstr(s,c)
2068
2069 #else
2070
2071 /** use this instead of strchr */
2072 # define ap_strchr(s, c)     strchr(s, c)
2073 /** use this instead of strchr */
2074 # define ap_strchr_c(s, c)   strchr(s, c)
2075 /** use this instead of strrchr */
2076 # define ap_strrchr(s, c)    strrchr(s, c)
2077 /** use this instead of strrchr */
2078 # define ap_strrchr_c(s, c)  strrchr(s, c)
2079 /** use this instead of strrstr*/
2080 # define ap_strstr(s, c)     strstr(s, c)
2081 /** use this instead of strrstr*/
2082 # define ap_strstr_c(s, c)   strstr(s, c)
2083
2084 #endif
2085
2086 /**
2087  * Generate pseudo random bytes.
2088  * This is a convenience interface to apr_random. It is cheaper but less
2089  * secure than apr_generate_random_bytes().
2090  * @param buf where to store the bytes
2091  * @param size number of bytes to generate
2092  * @note ap_random_insecure_bytes() is thread-safe, it uses a mutex on
2093  *       threaded MPMs.
2094  */
2095 AP_DECLARE(void) ap_random_insecure_bytes(void *buf, apr_size_t size);
2096
2097 /**
2098  * Get a pseudo random number in a range.
2099  * @param min low end of range
2100  * @param max high end of range
2101  * @return a number in the range
2102  */
2103 AP_DECLARE(apr_uint32_t) ap_random_pick(apr_uint32_t min, apr_uint32_t max);
2104
2105 /**
2106  * Abort with a error message signifying out of memory
2107  */
2108 AP_DECLARE(void) ap_abort_on_oom(void) __attribute__((noreturn));
2109
2110 /**
2111  * Wrapper for malloc() that calls ap_abort_on_oom() if out of memory
2112  * @param size size of the memory block
2113  * @return pointer to the allocated memory
2114  * @note ap_malloc may be implemented as a macro
2115  */
2116 AP_DECLARE(void *) ap_malloc(size_t size)
2117                     __attribute__((malloc))
2118                     AP_FN_ATTR_ALLOC_SIZE(1);
2119
2120 /**
2121  * Wrapper for calloc() that calls ap_abort_on_oom() if out of memory
2122  * @param nelem number of elements to allocate memory for
2123  * @param size size of a single element
2124  * @return pointer to the allocated memory
2125  * @note ap_calloc may be implemented as a macro
2126  */
2127 AP_DECLARE(void *) ap_calloc(size_t nelem, size_t size)
2128                    __attribute__((malloc))
2129                    AP_FN_ATTR_ALLOC_SIZE2(1,2);
2130
2131 /**
2132  * Wrapper for realloc() that calls ap_abort_on_oom() if out of memory
2133  * @param ptr pointer to the old memory block (or NULL)
2134  * @param size new size of the memory block
2135  * @return pointer to the reallocated memory
2136  * @note ap_realloc may be implemented as a macro
2137  */
2138 AP_DECLARE(void *) ap_realloc(void *ptr, size_t size)
2139                    AP_FN_ATTR_WARN_UNUSED_RESULT
2140                    AP_FN_ATTR_ALLOC_SIZE(2);
2141
2142
2143 #define AP_NORESTART APR_OS_START_USEERR + 1
2144
2145 #ifdef __cplusplus
2146 }
2147 #endif
2148
2149 #endif  /* !APACHE_HTTPD_H */
2150
2151 /** @} //APACHE Daemon      */
2152 /** @} //APACHE Core        */
2153 /** @} //APACHE super group */
2154