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