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