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