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