github.com/krum110487/go-htaccess@v0.0.0-20240316004156-60641c8e7598/tests/data/apache_2_2_34/include/httpd.h (about)

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