home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F277260_httpd.h < prev    next >
C/C++ Source or Header  |  2004-08-11  |  62KB  |  1,740 lines

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