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