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