]> granicus.if.org Git - apache/blob - include/httpd.h
Cliff's most sane advise :-)
[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 #define METHODS     16
502
503 typedef struct ap_method_list_t ap_method_list_t;
504 /**
505  * Structure for handling HTTP methods.  Methods known to the server are
506  * accessed via a bitmask shortcut; extension methods are handled by
507  * an array.
508  */
509 struct ap_method_list_t {
510     /* The bitmask used for known methods */
511     int method_mask;
512     /* The array used for extension methods */
513     apr_array_header_t *method_list;
514 };
515
516 #define CGI_MAGIC_TYPE "application/x-httpd-cgi"
517 #define INCLUDES_MAGIC_TYPE "text/x-server-parsed-html"
518 #define INCLUDES_MAGIC_TYPE3 "text/x-server-parsed-html3"
519 #define DIR_MAGIC_TYPE "httpd/unix-directory"
520
521 /* Just in case your linefeed isn't the one the other end is expecting. */
522 #if !APR_CHARSET_EBCDIC
523 #define LF 10
524 #define CR 13
525 #define CRLF "\015\012"
526 #else /* APR_CHARSET_EBCDIC */
527 /* For platforms using the EBCDIC charset, the transition ASCII->EBCDIC is done
528  * in the buff package (bread/bputs/bwrite).  Everywhere else, we use
529  * "native EBCDIC" CR and NL characters. These are therefore
530  * defined as
531  * '\r' and '\n'.
532  */
533 #define CR '\r'
534 #define LF '\n'
535 #define CRLF "\r\n"
536 #endif /* APR_CHARSET_EBCDIC */                                   
537
538 /* Possible values for request_rec.read_body (set by handling module):
539  *    REQUEST_NO_BODY          Send 413 error if message has any body
540  *    REQUEST_CHUNKED_ERROR    Send 411 error if body without Content-Length
541  *    REQUEST_CHUNKED_DECHUNK  If chunked, remove the chunks for me.
542  */
543 #define REQUEST_NO_BODY          0
544 #define REQUEST_CHUNKED_ERROR    1
545 #define REQUEST_CHUNKED_DECHUNK  2
546
547 /* Things which may vary per file-lookup WITHIN a request ---
548  * e.g., state of MIME config.  Basically, the name of an object, info
549  * about the object, and any other info we may ahve which may need to
550  * change as we go poking around looking for it (e.g., overridden by
551  * .htaccess files).
552  *
553  * Note how the default state of almost all these things is properly
554  * zero, so that allocating it with pcalloc does the right thing without
555  * a whole lot of hairy initialization... so long as we are willing to
556  * make the (fairly) portable assumption that the bit pattern of a NULL
557  * pointer is, in fact, zero.
558  */
559
560 /**
561  * This represents the result of calling htaccess; these are cached for
562  * each request.
563  */
564 struct htaccess_result {
565     /** the directory to which this applies */
566     const char *dir;
567     /** the overrides allowed for the .htaccess file */
568     int override;
569     /** the configuration directives */
570     struct ap_conf_vector_t *htaccess;
571     /** the next one, or NULL if no more; N.B. never change this */
572     const struct htaccess_result *next;
573 };
574
575 /* The following four types define a hierarchy of activities, so that
576  * given a request_rec r you can write r->connection->server->process
577  * to get to the process_rec.  While this reduces substantially the
578  * number of arguments that various hooks require beware that in
579  * threaded versions of the server you must consider multiplexing
580  * issues.  */
581
582 typedef struct process_rec process_rec;
583 typedef struct server_rec server_rec;
584 typedef struct conn_rec conn_rec;
585 typedef struct request_rec request_rec;
586
587 /* ### would be nice to not include this from httpd.h ... */
588 /* This comes after we have defined the request_rec type */
589 #include "apr_uri.h"
590
591 /** A structure that represents one process */
592 struct process_rec {
593     /** Global pool. Please try to cleared on _all_ exits */
594     apr_pool_t *pool;
595     /** aka configuration pool, cleared on restarts */
596     apr_pool_t *pconf;
597     /** How many command line arguments were pass to the program */
598     int argc;
599     /** The command line arguments */
600     const char * const *argv;
601     /** The program name used to execute the program */
602     const char *short_name;
603 };
604
605 /** A structure that represents the current request */
606 struct request_rec {
607     /** The pool associated with the request */
608     apr_pool_t *pool;
609     /** The connection over which this connection has been read */
610     conn_rec *connection;
611     /** The virtual host this request is for */
612     server_rec *server;
613
614     /** If we wind up getting redirected, pointer to the request we 
615      *  redirected to.  */
616     request_rec *next;
617     /** If this is an internal redirect, pointer to where we redirected 
618      *  *from*.  */
619     request_rec *prev;
620
621     /** If this is a sub_request (see request.h) pointer back to the 
622      *  main request.  */
623     request_rec *main;
624
625     /* Info about the request itself... we begin with stuff that only
626      * protocol.c should ever touch...
627      */
628     /** First line of request, so we can log it */
629     char *the_request;
630     /** HTTP/0.9, "simple" request */
631     int assbackwards;
632     /** A proxy request (calculated during post_read_request/translate_name)
633      *  possible values PROXYREQ_NONE, PROXYREQ_PROXY, PROXYREQ_REVERSE
634      */
635     int proxyreq;
636     /** HEAD request, as opposed to GET */
637     int header_only;
638     /** Protocol, as given to us, or HTTP/0.9 */
639     char *protocol;
640     /** Number version of protocol; 1.1 = 1001 */
641     int proto_num;
642     /** Host, as set by full URI or Host: */
643     const char *hostname;
644
645     /** When the request started */
646     apr_time_t request_time;
647
648     /** Status line, if set by script */
649     const char *status_line;
650     /** In any case */
651     int status;
652
653     /* Request method, two ways; also, protocol, etc..  Outside of protocol.c,
654      * look, but don't touch.
655      */
656
657     /** GET, HEAD, POST, etc. */
658     const char *method;
659     /** M_GET, M_POST, etc. */
660     int method_number;
661
662     /**
663      *  allowed is a bitvector of the allowed methods.
664      *
665      *  A handler must ensure that the request method is one that
666      *  it is capable of handling.  Generally modules should DECLINE
667      *  any request methods they do not handle.  Prior to aborting the
668      *  handler like this the handler should set r->allowed to the list
669      *  of methods that it is willing to handle.  This bitvector is used
670      *  to construct the "Allow:" header required for OPTIONS requests,
671      *  and HTTP_METHOD_NOT_ALLOWED and HTTP_NOT_IMPLEMENTED status codes.
672      *
673      *  Since the default_handler deals with OPTIONS, all modules can
674      *  usually decline to deal with OPTIONS.  TRACE is always allowed,
675      *  modules don't need to set it explicitly.
676      *
677      *  Since the default_handler will always handle a GET, a
678      *  module which does *not* implement GET should probably return
679      *  HTTP_METHOD_NOT_ALLOWED.  Unfortunately this means that a Script GET
680      *  handler can't be installed by mod_actions.
681      */
682     int allowed;
683     /** Array of extension methods */
684     apr_array_header_t *allowed_xmethods; 
685     /** List of allowed methods */
686     ap_method_list_t *allowed_methods; 
687
688     /** byte count in stream is for body */
689     int sent_bodyct;
690     /** body byte count, for easy access */
691     long bytes_sent;
692     /** Time the resource was last modified */
693     apr_time_t mtime;
694
695     /* HTTP/1.1 connection-level features */
696
697     /** sending chunked transfer-coding */
698     int chunked;
699     /** multipart/byteranges boundary */
700     const char *boundary;
701     /** The Range: header */
702     const char *range;
703     /** The "real" content length */
704     apr_off_t clength;
705
706     /** bytes left to read */
707     apr_size_t remaining;
708     /** bytes that have been read */
709     long read_length;
710     /** how the request body should be read */
711     int read_body;
712     /** reading chunked transfer-coding */
713     int read_chunked;
714     /** is client waiting for a 100 response? */
715     unsigned expecting_100;
716
717     /* MIME header environments, in and out.  Also, an array containing
718      * environment variables to be passed to subprocesses, so people can
719      * write modules to add to that environment.
720      *
721      * The difference between headers_out and err_headers_out is that the
722      * latter are printed even on error, and persist across internal redirects
723      * (so the headers printed for ErrorDocument handlers will have them).
724      *
725      * The 'notes' apr_table_t is for notes from one module to another, with no
726      * other set purpose in mind...
727      */
728
729     /** MIME header environment from the request */
730     apr_table_t *headers_in;
731     /** MIME header environment for the response */
732     apr_table_t *headers_out;
733     /** MIME header environment for the response, printed even on errors and
734      * persist across internal redirects */
735     apr_table_t *err_headers_out;
736     /** Array of environment variables to be used for sub processes */
737     apr_table_t *subprocess_env;
738     /** Notes from one module to another */
739     apr_table_t *notes;
740
741     /* content_type, handler, content_encoding, content_language, and all
742      * content_languages MUST be lowercased strings.  They may be pointers
743      * to static strings; they should not be modified in place.
744      */
745     /** The content-type for the current request */
746     const char *content_type;   /* Break these out --- we dispatch on 'em */
747     /** The handler string that we use to call a handler function */
748     const char *handler;        /* What we *really* dispatch on           */
749
750     /** How to encode the data */
751     const char *content_encoding;
752     /** for back-compat. only -- do not use */
753     const char *content_language;
754     /** array of (char*) representing the content languages */
755     apr_array_header_t *content_languages;
756
757     /** variant list validator (if negotiated) */
758     char *vlist_validator;
759     
760     /** If an authentication check was made, this gets set to the user name. */
761     char *user; 
762     /** If an authentication check was made, this gets set to the auth type. */
763     char *ap_auth_type;
764
765     /** This response is non-cache-able */
766     int no_cache;
767     /** There is no local copy of this response */
768     int no_local_copy;
769
770     /* What object is being requested (either directly, or via include
771      * or content-negotiation mapping).
772      */
773
774     /** the uri without any parsing performed */
775     char *unparsed_uri; 
776     /** the path portion of the URI */
777     char *uri;
778     /** The filename on disk that this response corresponds to */
779     char *filename;
780     /** The path_info for this request if there is any. */
781     char *path_info;
782     /** QUERY_ARGS, if any */
783     char *args; 
784     /** ST_MODE set to zero if no such file */
785     apr_finfo_t finfo;
786     /** components of uri, dismantled */
787     apr_uri_components parsed_uri;
788
789     /* Various other config info which may change with .htaccess files
790      * These are config vectors, with one void* pointer for each module
791      * (the thing pointed to being the module's business).
792      */
793
794     /** Options set in config files, etc. */
795     struct ap_conf_vector_t *per_dir_config;
796     /** Notes on *this* request */
797     struct ap_conf_vector_t *request_config;
798
799 /**
800  * a linked list of the configuration directives in the .htaccess files
801  * accessed by this request.
802  * N.B. always add to the head of the list, _never_ to the end.
803  * that way, a sub request's list can (temporarily) point to a parent's list
804  */
805     const struct htaccess_result *htaccess;
806
807     /** A list of output filters to be used for this request */
808     struct ap_filter_t *output_filters;
809     /** A list of input filters to be used for this request */
810     struct ap_filter_t *input_filters;
811     /** A flag to determine if the eos bucket has been sent yet */
812     int eos_sent;
813
814 /* Things placed at the end of the record to avoid breaking binary
815  * compatibility.  It would be nice to remember to reorder the entire
816  * record to improve 64bit alignment the next time we need to break
817  * binary compatibility for some other reason.
818  */
819 };
820
821 /**
822  * @defgroup ProxyReq Proxy request types
823  *
824  * Possible values of request_rec->proxyreq. A request could be normal,
825  *  proxied or reverse proxied. Normally proxied and reverse proxied are
826  *  grouped together as just "proxied", but sometimes it's necessary to
827  *  tell the difference between the two, such as for authentication.
828  * @{
829  */
830
831 #define PROXYREQ_NONE 0         /**< No proxy */
832 #define PROXYREQ_PROXY 1        /**< Standard proxy */
833 #define PROXYREQ_REVERSE 2      /**< Reverse proxy */
834
835 /* @} */
836
837
838 /** Structure to store things which are per connection */
839 struct conn_rec {
840     /** Pool associated with this connection */
841     apr_pool_t *pool;
842     /** Physical vhost this conn came in on */
843     server_rec *base_server;
844     /** used by http_vhost.c */
845     void *vhost_lookup_data;
846
847     /* Information about the connection itself */
848
849     /** Connection to the client */
850     apr_socket_t *client_socket;
851
852     /* Who is the client? */
853
854     /** local address */
855     apr_sockaddr_t *local_addr;
856     /** remote address */
857     apr_sockaddr_t *remote_addr;
858     /** Client's IP address */
859     char *remote_ip;
860     /** Client's DNS name, if known.  NULL if DNS hasn't been checked,
861      *  "" if it has and no address was found.  N.B. Only access this though
862      * get_remote_host() */
863     char *remote_host;
864     /** Only ever set if doing rfc1413 lookups.  N.B. Only access this through
865      *  get_remote_logname() */
866     char *remote_logname;
867
868     /** Are we still talking? */
869     unsigned aborted:1;
870
871     /** Are we going to keep the connection alive for another request?
872      *  -1 fatal error, 0 undecided, 1 yes   */
873     signed int keepalive:2;
874
875     /** have we done double-reverse DNS? -1 yes/failure, 0 not yet, 
876      *  1 yes/success */
877     signed int double_reverse:2;
878
879     /** How many times have we used it? */
880     int keepalives;
881     /** server IP address */
882     char *local_ip;
883     /** used for ap_get_server_name when UseCanonicalName is set to DNS
884      *  (ignores setting of HostnameLookups) */
885     char *local_host;
886
887     /** ID of this connection; unique at any point in time */
888     long id; 
889     /** Notes on *this* connection */
890     struct ap_conf_vector_t *conn_config;
891     /** send note from one module to another, must remain valid for all
892      *  requests on this conn */
893     apr_table_t *notes;
894     /** A list of input filters to be used for this connection */
895     struct ap_filter_t *input_filters;
896     /** A list of output filters to be used for this connection */
897     struct ap_filter_t *output_filters;
898 };
899
900 /* Per-vhost config... */
901
902 /* The address 255.255.255.255, when used as a virtualhost address,
903  * will become the "default" server when the ip doesn't match other vhosts.
904  */
905 #define DEFAULT_VHOST_ADDR 0xfffffffful
906
907 typedef struct server_addr_rec server_addr_rec;
908
909 /** A structure to be used for Per-vhost config */
910 struct server_addr_rec {
911     /** The next server in the list */
912     server_addr_rec *next;
913     /** The bound address, for this server */
914     apr_sockaddr_t *host_addr;
915     /** The bound port, for this server */
916     apr_port_t host_port;
917     /** The name given in <VirtualHost> */
918     char *virthost;
919 };
920
921 /** A structure to store information for each virtual server */
922 struct server_rec {
923     /** The process this server is running in */
924     process_rec *process;
925     /** The next server in the list */
926     server_rec *next;
927
928     /** The name of the server */
929     const char *defn_name;
930     /** The line of the config file that the server was defined on */
931     unsigned defn_line_number;
932
933     /* Contact information */
934
935     /** The admin's contact information */
936     char *server_admin;
937     /** The server hostname */
938     char *server_hostname;
939     /** for redirects, etc. */
940     apr_port_t port;
941
942     /* Log files --- note that transfer log is now in the modules... */
943
944     /** The name of the error log */
945     char *error_fname;
946     /** A file descriptor that references the error log */
947     apr_file_t *error_log;
948     /** The log level for this server */
949     int loglevel;
950
951     /* Module-specific configuration for server, and defaults... */
952
953     /** true if this is the virtual server */
954     int is_virtual;
955     /** Config vector containing pointers to modules' per-server config 
956      *  structures. */
957     struct ap_conf_vector_t *module_config; 
958     /** MIME type info, etc., before we start checking per-directory info */
959     struct ap_conf_vector_t *lookup_defaults;
960
961     /* Transaction handling */
962
963     /** I haven't got a clue */
964     server_addr_rec *addrs;
965     /** Timeout, in seconds, before we give up */
966     int timeout;
967     /** Seconds we'll wait for another request */
968     int keep_alive_timeout;
969     /** Maximum requests per connection */
970     int keep_alive_max;
971     /** Use persistent connections? */
972     int keep_alive;
973
974     /** Pathname for ServerPath */
975     const char *path;
976     /** Length of path */
977     int pathlen;
978
979     /** Normal names for ServerAlias servers */
980     apr_array_header_t *names;
981     /** Wildcarded names for ServerAlias servers */
982     apr_array_header_t *wild_names;
983
984     /** limit on size of the HTTP request line    */
985     int limit_req_line;
986     /** limit on size of any request header field */
987     int limit_req_fieldsize;
988     /** limit on number of request header fields  */
989     int limit_req_fields; 
990 };
991
992 /**
993  * Examine a field value (such as a media-/content-type) string and return
994  * it sans any parameters; e.g., strip off any ';charset=foo' and the like.
995  * @param p Pool to allocate memory from
996  * @param intype The field to examine
997  * @return A copy of the field minus any parameters
998  */
999 AP_DECLARE(char *) ap_field_noparam(apr_pool_t *p, const char *intype);
1000
1001 /**
1002  * Convert a time from an integer into a string in a specified format
1003  * @param p The pool to allocate memory from
1004  * @param t The time to convert
1005  * @param fmt The format to use for the conversion
1006  * @param gmt Convert the time for GMT?
1007  * @return The string that represents the specified time
1008  */
1009 AP_DECLARE(char *) ap_ht_time(apr_pool_t *p, apr_time_t t, const char *fmt, int gmt);
1010
1011 /* String handling. The *_nc variants allow you to use non-const char **s as
1012    arguments (unfortunately C won't automatically convert a char ** to a const
1013    char **) */
1014
1015 /**
1016  * Get the characters until the first occurance of a specified character
1017  * @param p The pool to allocate memory from
1018  * @param line The string to get the characters from
1019  * @param stop The character to stop at
1020  * @return A copy of the characters up to the first stop character
1021  */
1022 AP_DECLARE(char *) ap_getword(apr_pool_t *p, const char **line, char stop);
1023 /**
1024  * Get the characters until the first occurance of a specified character
1025  * @param p The pool to allocate memory from
1026  * @param line The string to get the characters from
1027  * @param stop The character to stop at
1028  * @return A copy of the characters up to the first stop character
1029  * @note This is the same as ap_getword(), except it doesn't use const char **.
1030  */
1031 AP_DECLARE(char *) ap_getword_nc(apr_pool_t *p, char **line, char stop);
1032
1033 /**
1034  * Get the first word from a given string.  A word is defined as all characters
1035  * up to the first whitespace.
1036  * @param p The pool to allocate memory from
1037  * @param line The string to traverse
1038  * @return The first word in the line
1039  */
1040 AP_DECLARE(char *) ap_getword_white(apr_pool_t *p, const char **line);
1041 /**
1042  * Get the first word from a given string.  A word is defined as all characters
1043  * up to the first whitespace.
1044  * @param p The pool to allocate memory from
1045  * @param line The string to traverse
1046  * @return The first word in the line
1047  * @note The same as ap_getword_white(), except it doesn't use const char **.
1048  */
1049 AP_DECLARE(char *) ap_getword_white_nc(apr_pool_t *p, char **line);
1050
1051 /**
1052  * Get all characters from the first occurance of @a stop to the first '\0'
1053  * @param p The pool to allocate memory from
1054  * @param line The line to traverse
1055  * @param stop The character to start at
1056  * @return A copy of all caracters after the first occurance of the specified
1057  *         character
1058  */
1059 AP_DECLARE(char *) ap_getword_nulls(apr_pool_t *p, const char **line,
1060                                     char stop);
1061 /**
1062  * Get all characters from the first occurance of @a stop to the first '\0'
1063  * @param p The pool to allocate memory from
1064  * @param line The line to traverse
1065  * @param stop The character to start at
1066  * @return A copy of all caracters after the first occurance of the specified
1067  *         character
1068  * @note The same as ap_getword_nulls(), except it doesn't use const char **.
1069  */
1070 AP_DECLARE(char *) ap_getword_nulls_nc(apr_pool_t *p, char **line, char stop);
1071
1072 /**
1073  * Get the second word in the string paying attention to quoting
1074  * @param p The pool to allocate from
1075  * @param line The line to traverse
1076  * @return A copy of the string
1077  */
1078 AP_DECLARE(char *) ap_getword_conf(apr_pool_t *p, const char **line);
1079 /**
1080  * Get the second word in the string paying attention to quoting
1081  * @param p The pool to allocate from
1082  * @param line The line to traverse
1083  * @return A copy of the string
1084  * @note The same as ap_getword_conf(), except it doesn't use const char **.
1085  */
1086 AP_DECLARE(char *) ap_getword_conf_nc(apr_pool_t *p, char **line);
1087
1088 /**
1089  * Check a string for any ${ENV} environment variable construct and replace 
1090  * each them by the value of that environment variable, if it exists. If the 
1091  * environment value does not exist, leave the ${ENV} construct alone; it 
1092  * means something else.
1093  * @param p The pool to allocate from
1094  * @param word The string to check
1095  * @return The string with the replaced environment variables
1096  */
1097 AP_DECLARE(const char *) ap_resolve_env(apr_pool_t *p, const char * word); 
1098
1099 /**
1100  * Size an HTTP header field list item, as separated by a comma.
1101  * @param field The field to size
1102  * @param len The length of the field
1103  * @return The return value is a pointer to the beginning of the non-empty 
1104  * list item within the original string (or NULL if there is none) and the 
1105  * address of field is shifted to the next non-comma, non-whitespace 
1106  * character.  len is the length of the item excluding any beginning whitespace.
1107  */
1108 AP_DECLARE(const char *) ap_size_list_item(const char **field, int *len);
1109
1110 /**
1111  * Retrieve an HTTP header field list item, as separated by a comma,
1112  * while stripping insignificant whitespace and lowercasing anything not in
1113  * a quoted string or comment.  
1114  * @param p The pool to allocate from
1115  * @param field The field to retrieve
1116  * @return The return value is a new string containing the converted list 
1117  *         item (or NULL if none) and the address pointed to by field is 
1118  *         shifted to the next non-comma, non-whitespace.
1119  */
1120 AP_DECLARE(char *) ap_get_list_item(apr_pool_t *p, const char **field);
1121
1122 /**
1123  * Find an item in canonical form (lowercase, no extra spaces) within
1124  * an HTTP field value list.  
1125  * @param p The pool to allocate from
1126  * @param line The field value list to search
1127  * @param tok The token to search for
1128  * @return 1 if found, 0 if not found.
1129  */
1130 AP_DECLARE(int) ap_find_list_item(apr_pool_t *p, const char *line, const char *tok);
1131
1132 /**
1133  * Retrieve a token, spacing over it and returning a pointer to
1134  * the first non-white byte afterwards.  Note that these tokens
1135  * are delimited by semis and commas and can also be delimited
1136  * by whitespace at the caller's option.
1137  * @param p The pool to allocate from
1138  * @param accept_line The line to retrieve the token from
1139  * @param accept_white Is it delimited by whitespace
1140  * @return the first non-white byte after the token
1141  */
1142 AP_DECLARE(char *) ap_get_token(apr_pool_t *p, const char **accept_line, int accept_white);
1143
1144 /**
1145  * Find http tokens, see the definition of token from RFC2068 
1146  * @param p The pool to allocate from
1147  * @param line The line to find the token
1148  * @param tok The token to find
1149  * @return 1 if the token is found, 0 otherwise
1150  */
1151 AP_DECLARE(int) ap_find_token(apr_pool_t *p, const char *line, const char *tok);
1152
1153 /**
1154  * find http tokens from the end of the line
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_last_token(apr_pool_t *p, const char *line, const char *tok);
1161
1162 /**
1163  * Check for an Absolute URI syntax
1164  * @param u The string to check
1165  * @return 1 if URI, 0 otherwise
1166  */
1167 AP_DECLARE(int) ap_is_url(const char *u);
1168
1169 /**
1170  * Unescape a URL
1171  * @param url The url to unescapte
1172  * @return 0 on success, non-zero otherwise
1173  */
1174 AP_DECLARE(int) ap_unescape_url(char *url);
1175 /**
1176  * Convert all double slashes to single slashes
1177  * @param name The string to convert
1178  */
1179 AP_DECLARE(void) ap_no2slash(char *name);
1180
1181 /**
1182  * Remove all ./ and xx/../ substrings from a file name. Also remove
1183  * any leading ../ or /../ substrings.
1184  * @param name the file name to parse
1185  */
1186 AP_DECLARE(void) ap_getparents(char *name);
1187
1188 /**
1189  * Escape a path segment, as defined in RFC 1808
1190  * @param p The pool to allocate from
1191  * @param s The path to convert
1192  * @return The converted URL
1193  */
1194 AP_DECLARE(char *) ap_escape_path_segment(apr_pool_t *p, const char *s);
1195 /**
1196  * convert an OS path to a URL in an OS dependant way.
1197  * @param p The pool to allocate from
1198  * @param path The path to convert
1199  * @param partial if set, assume that the path will be appended to something
1200  *        with a '/' in it (and thus does not prefix "./")
1201  * @return The converted URL
1202  */
1203 AP_DECLARE(char *) ap_os_escape_path(apr_pool_t *p, const char *path, int partial);
1204 #define ap_escape_uri(ppool,path) ap_os_escape_path(ppool,path,1)
1205
1206 /**
1207  * Escape an html string
1208  * @param p The pool to allocate from
1209  * @param s The html to escape
1210  * @return The escaped string
1211  */
1212 AP_DECLARE(char *) ap_escape_html(apr_pool_t *p, const char *s);
1213
1214 /**
1215  * Construct a full hostname
1216  * @param p The pool to allocate from
1217  * @param hostname The hostname of the server
1218  * @param port The port the server is running on
1219  * @param r The current request
1220  * @return The server's hostname
1221  */
1222 AP_DECLARE(char *) ap_construct_server(apr_pool_t *p, const char *hostname,
1223                                     apr_port_t port, const request_rec *r);
1224 /**
1225  * Escape a shell command
1226  * @param p The pool to allocate from
1227  * @param s The command to escape
1228  * @return The escaped shell command
1229  */
1230 AP_DECLARE(char *) ap_escape_shell_cmd(apr_pool_t *p, const char *s);
1231
1232 /**
1233  * Count the number of directories in a path
1234  * @param path The path to count
1235  * @return The number of directories
1236  */
1237 AP_DECLARE(int) ap_count_dirs(const char *path);
1238
1239 /**
1240  * Copy at most @a n leading directories of @a s into @a d. @a d
1241  * should be at least as large as @a s plus 1 extra byte
1242  *
1243  * @param d The location to copy to
1244  * @param s The location to copy from
1245  * @param n The number of directories to copy
1246  * @return value is the ever useful pointer to the trailing \0 of d
1247  * @note on platforms with drive letters, n = 0 returns the "/" root, 
1248  * whereas n = 1 returns the "d:/" root.  On all other platforms, n = 0
1249  * returns the empty string.  */
1250 AP_DECLARE(char *) ap_make_dirstr_prefix(char *d, const char *s, int n);
1251
1252 /**
1253  * Return the parent directory name (including trailing /) of the file
1254  * @a s
1255  * @param p The pool to allocate from
1256  * @param s The file to get the parent of
1257  * @return A copy of the file's parent directory
1258  */
1259 AP_DECLARE(char *) ap_make_dirstr_parent(apr_pool_t *p, const char *s);
1260
1261 /**
1262  * Given a directory and filename, create a single path from them.  This
1263  * function is smart enough to ensure that there is a sinlge '/' between the
1264  * directory and file names
1265  * @param a The pool to allocate from
1266  * @param dir The directory name
1267  * @param f The filename
1268  * @return A copy of the full path
1269  */
1270 AP_DECLARE(char *) ap_make_full_path(apr_pool_t *a, const char *dir, const char *f);
1271
1272 /**
1273  * Does the provided string contain wildcard characters?  This is useful
1274  * for determining if the string should be passed to strcmp_match or to strcmp.
1275  * The only wildcard characters recognized are '?' and '*'
1276  * @param str The string to check
1277  * @return 1 if the string has wildcards, 0 otherwise
1278  */
1279 AP_DECLARE(int) ap_is_matchexp(const char *str);
1280
1281 /**
1282  * Determine if a string matches a patterm containing the wildcards '?' or '*'
1283  * @param str The string to check
1284  * @param exp The pattern to match against
1285  * @return 1 if the two strings match, 0 otherwise
1286  */
1287 AP_DECLARE(int) ap_strcmp_match(const char *str, const char *exp);
1288 /**
1289  * Determine if a string matches a patterm containing the wildcards '?' or '*',
1290  * ignoring case
1291  * @param str The string to check
1292  * @param exp The pattern to match against
1293  * @return 1 if the two strings match, 0 otherwise
1294  */
1295 AP_DECLARE(int) ap_strcasecmp_match(const char *str, const char *exp);
1296
1297 /**
1298  * Find the first occurrence of the substring s2 in s1, regardless of case
1299  * @param s1 The string to search
1300  * @param s2 The substring to search for
1301  * @return A pointer to the beginning of the substring
1302  */
1303 AP_DECLARE(char *) ap_strcasestr(const char *s1, const char *s2);
1304
1305 /**
1306  * Return a pointer to the location inside of bigstring immediately after prefix
1307  * @param bigstring The input string
1308  * @param prefix The prefix to strip away
1309  * @return A pointer relative to bigstring after prefix
1310  */
1311 AP_DECLARE(const char *) ap_stripprefix(const char *bigstring,
1312                                         const char *prefix);
1313
1314 /**
1315  * Decode a base64 encoded string into memory allocated from a pool
1316  * @param p The pool to allocate from
1317  * @param bufcoded The encoded string
1318  * @return The decoded string
1319  */
1320 AP_DECLARE(char *) ap_pbase64decode(apr_pool_t *p, const char *bufcoded);
1321
1322 /**
1323  * Encode a string into memory allocated from a pool in base 64 format
1324  * @param p The pool to allocate from
1325  * @param strin The plaintext string
1326  * @return The encoded string
1327  */
1328 AP_DECLARE(char *) ap_pbase64encode(apr_pool_t *p, char *string); 
1329
1330
1331 /**
1332  * Compile a regular expression to be used later
1333  * @param p The pool to allocate from
1334  * @param pattern the regular expression to compile
1335  * @param cflags The bitwise or of one or more of the following:
1336  *   @li #REG_EXTENDED - Use POSIX extended Regular Expressions
1337  *   @li #REG_ICASE    - Ignore case
1338  *   @li #REG_NOSUB    - Support for substring addressing of matches
1339  *       not required
1340  *   @li #REG_NEWLINE  - Match-any-character operators don't match new-line
1341  * @return The compiled regular expression
1342  */
1343 AP_DECLARE(regex_t *) ap_pregcomp(apr_pool_t *p, const char *pattern,
1344                                    int cflags);
1345
1346 /**
1347  * Free the memory associated with a compiled regular expression
1348  * @param p The pool the regex was allocated from
1349  * @param reg The regular expression to free
1350  */
1351 AP_DECLARE(void) ap_pregfree(apr_pool_t *p, regex_t *reg);
1352
1353 /**
1354  * Match a null-terminated string against a pre-compiled regex.
1355  * @param preg The pre-compiled regex
1356  * @param string The string to match
1357  * @param nmatch Provide information regarding the location of any matches
1358  * @param pmatch Provide information regarding the location of any matches
1359  * @param eflags Bitwise or of any of:
1360  *   @li #REG_NOTBOL - match-beginning-of-line operator always
1361  *     fails to match
1362  *   @li #REG_NOTEOL - match-end-of-line operator always fails to match
1363  * @return 0 for successful match, #REG_NOMATCH otherwise
1364  */ 
1365 AP_DECLARE(int)    ap_regexec(regex_t *preg, const char *string,
1366                               size_t nmatch, regmatch_t pmatch[], int eflags);
1367
1368 /**
1369  * Return the error code returned by regcomp or regexec into error messages
1370  * @param errcode the error code returned by regexec or regcomp
1371  * @param preg The precompiled regex
1372  * @param errbuf A buffer to store the error in
1373  * @param errbuf_size The size of the buffer
1374  */
1375 AP_DECLARE(size_t) ap_regerror(int errcode, const regex_t *preg, 
1376                                char *errbuf, size_t errbuf_size);
1377
1378 /**
1379  * After performing a successful regex match, you may use this function to 
1380  * perform a series of string substitutions based on subexpressions that were
1381  * matched during the call to ap_regexec
1382  * @param p The pool to allocate from
1383  * @param input An arbitrary string containing $1 through $9.  These are 
1384  *              replaced with the corresponding matched sub-expressions
1385  * @param source The string that was originally matched to the regex
1386  * @param nmatch the nmatch returned from ap_pregex
1387  * @param pmatch the pmatch array returned from ap_pregex
1388  */
1389 AP_DECLARE(char *) ap_pregsub(apr_pool_t *p, const char *input, const char *source,
1390                               size_t nmatch, regmatch_t pmatch[]);
1391
1392 /**
1393  * We want to downcase the type/subtype for comparison purposes
1394  * but nothing else because ;parameter=foo values are case sensitive.
1395  * @param s The content-type to convert to lowercase
1396  */
1397 AP_DECLARE(void) ap_content_type_tolower(char *s);
1398
1399 /**
1400  * convert a string to all lowercase
1401  * @param s The string to convert to lowercase 
1402  */
1403 AP_DECLARE(void) ap_str_tolower(char *s);
1404
1405 /**
1406  * Search a string from left to right for the first occurrence of a 
1407  * specific character
1408  * @param str The string to search
1409  * @param c The character to search for
1410  * @return The index of the first occurrence of c in str
1411  */
1412 AP_DECLARE(int) ap_ind(const char *str, char c);        /* Sigh... */
1413
1414 /**
1415  * Search a string from right to left 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_rind(const char *str, char c);
1422
1423 /**
1424  * Given a string, replace any bare " with \" .
1425  * @param p The pool to allocate memory from
1426  * @param instring The string to search for "
1427  * @return A copy of the string with escaped quotes 
1428  */
1429 AP_DECLARE(char *) ap_escape_quotes(apr_pool_t *p, const char *instring);
1430
1431 /* Misc system hackery */
1432 /**
1433  * Given the name of an object in the file system determine if it is a directory
1434  * @param p The pool to allocate from 
1435  * @param name The name of the object to check
1436  * @return 1 if it is a directory, 0 otherwise
1437  */
1438 AP_DECLARE(int) ap_is_rdirectory(apr_pool_t *p, const char *name);
1439
1440 /**
1441  * Given the name of an object in the file system determine if it is a directory - this version is symlink aware
1442  * @param p The pool to allocate from 
1443  * @param name The name of the object to check
1444  * @return 1 if it is a directory, 0 otherwise
1445  */
1446 AP_DECLARE(int) ap_is_directory(apr_pool_t *p, const char *name);
1447
1448 #ifdef _OSD_POSIX
1449 extern const char *os_set_account(apr_pool_t *p, const char *account);
1450 extern int os_init_job_environment(server_rec *s, const char *user_name, int one_process);
1451 #endif /* _OSD_POSIX */
1452
1453 /**
1454  * Determine the local host name for the current machine
1455  * @param p The pool to allocate from
1456  * @return A copy of the local host name
1457  */
1458 char *ap_get_local_host(apr_pool_t *p);
1459
1460 /*
1461  * Redefine assert() to something more useful for an Apache...
1462  *
1463  * Use ap_assert() if the condition should always be checked.
1464  * Use AP_DEBUG_ASSERT() if the condition should only be checked when AP_DEBUG
1465  * is defined.
1466  */
1467 /**
1468  * Log an assertion to the error log
1469  * @param szExp The assertion that failed
1470  * @param szFile The file the assertion is in
1471  * @param nLine The line the assertion is defined on
1472  */
1473 AP_DECLARE(void) ap_log_assert(const char *szExp, const char *szFile, int nLine)
1474                             __attribute__((noreturn));
1475 #define ap_assert(exp) ((exp) ? (void)0 : ap_log_assert(#exp,__FILE__,__LINE__))
1476
1477 #ifdef AP_DEBUG
1478 #define AP_DEBUG_ASSERT(exp) ap_assert(exp)
1479 #else
1480 #define AP_DEBUG_ASSERT(exp) ((void)0)
1481 #endif
1482
1483 /* A set of flags which indicate places where the server should raise(SIGSTOP).
1484  * This is useful for debugging, because you can then attach to that process
1485  * with gdb and continue.  This is important in cases where one_process
1486  * debugging isn't possible.
1487  */
1488 #define SIGSTOP_DETACH                  1
1489 #define SIGSTOP_MAKE_CHILD              2
1490 #define SIGSTOP_SPAWN_CHILD             4
1491 #define SIGSTOP_PIPED_LOG_SPAWN         8
1492 #define SIGSTOP_CGI_CHILD               16
1493
1494 #ifdef DEBUG_SIGSTOP
1495 extern int raise_sigstop_flags;
1496 #define RAISE_SIGSTOP(x)        do { \
1497         if (raise_sigstop_flags & SIGSTOP_##x) raise(SIGSTOP);\
1498     } while (0)
1499 #else
1500 #define RAISE_SIGSTOP(x)
1501 #endif
1502
1503 /**
1504  * Get HTML describing the address and (optionally) admin of the server.
1505  * @param prefix Text which is prepended to the return value
1506  * @param r The request_rec
1507  * @return HTML describing the server, allocated in @a r's pool.
1508  */
1509 AP_DECLARE(const char *) ap_psignature(const char *prefix, request_rec *r);
1510
1511 /* strtoul does not exist on sunos4. */
1512 #ifdef strtoul
1513 #undef strtoul
1514 #endif
1515 #define strtoul strtoul_is_not_a_portable_function_use_strtol_instead
1516
1517   /* The C library has functions that allow const to be silently dropped ...
1518      these macros detect the drop in maintainer mode, but use the native
1519      methods for normal builds
1520
1521      Note that on some platforms (e.g., AIX with gcc, Solaris with gcc), string.h needs 
1522      to be included before the macros are defined or compilation will fail.
1523   */
1524 #include <string.h>
1525
1526 #ifdef AP_DEBUG
1527
1528 #undef strchr
1529 # define strchr(s, c)   ap_strchr(s,c)
1530 #undef strrchr
1531 # define strrchr(s, c)  ap_strrchr(s,c)
1532 #undef strstr
1533 # define strstr(s, c)  ap_strstr(s,c)
1534
1535 char *ap_strchr(char *s, int c);
1536 const char *ap_strchr_c(const char *s, int c);
1537 char *ap_strrchr(char *s, int c);
1538 const char *ap_strrchr_c(const char *s, int c);
1539 char *ap_strstr(char *s, char *c);
1540 const char *ap_strstr_c(const char *s, const char *c);
1541
1542 #else
1543
1544 # define ap_strchr(s, c)        strchr(s, c)
1545 # define ap_strchr_c(s, c)      strchr(s, c)
1546 # define ap_strrchr(s, c)       strrchr(s, c)
1547 # define ap_strrchr_c(s, c)     strrchr(s, c)
1548 # define ap_strstr(s, c)        strstr(s, c)
1549 # define ap_strstr_c(s, c)      strstr(s, c)
1550
1551 #endif
1552
1553 #define AP_NORESTART            APR_OS_START_USEERR + 1
1554
1555 #ifdef __cplusplus
1556 }
1557 #endif
1558
1559 #endif  /* !APACHE_HTTPD_H */