http_core.h revision e302f38fd646764ce1a1e1c578d794aef514a9e5
698N/A/* Licensed to the Apache Software Foundation (ASF) under one or more 698N/A * contributor license agreements. See the NOTICE file distributed with 698N/A * this work for additional information regarding copyright ownership. 698N/A * The ASF licenses this file to You under the Apache License, Version 2.0 698N/A * (the "License"); you may not use this file except in compliance with 698N/A * the License. You may obtain a copy of the License at 698N/A * Unless required by applicable law or agreed to in writing, software 698N/A * distributed under the License is distributed on an "AS IS" BASIS, 698N/A * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 698N/A * See the License for the specific language governing permissions and 698N/A * limitations under the License. 698N/A * @brief CORE HTTP Daemon 698N/A * @defgroup APACHE_CORE_HTTPD Core HTTP Daemon /* **************************************************************** * The most basic server code is encapsulated in a single module * known as the core, which is just *barely* functional enough to * serve documents, though not terribly well. * Largely for NCSA back-compatibility reasons, the core needs to * make pieces of its config structures available to other modules. * The accessors are declared here, along with the interpretation * of one of them (allow_options). * @defgroup APACHE_CORE_HTTPD_ACESSORS Acessors /** SSI is enabled without exec= permission */ /** FollowSymLinks directive */ /** SSI exec= permission is permitted, iff OPT_INCLUDES is also set */ /** SymLinksIfOwnerMatch directive */ /** MultiViews directive */ * @defgroup get_remote_host Remote Host Resolution * @ingroup APACHE_CORE_HTTPD /** REMOTE_HOST returns the hostname, or NULL if the hostname * lookup fails. It will force a DNS lookup according to the * HostnameLookups setting. /** REMOTE_NAME returns the hostname, or the dotted quad if the * hostname lookup fails. It will force a DNS lookup according * to the HostnameLookups setting. /** REMOTE_NOLOOKUP is like REMOTE_NAME except that a DNS lookup is /** REMOTE_DOUBLE_REV will always force a DNS lookup, and also force * a double reverse lookup, regardless of the HostnameLookups * setting. The result is the (double reverse checked) hostname, * or NULL if any of the lookups fail. /** @} // get_remote_host */ /** all of the requirements must be met */ /** any of the requirements must be met */ /** There are no applicable satisfy lines */ /** Make sure we don't write less than 8000 bytes at any one time. /** default maximum of internal redirects */ /** default maximum subrequest nesting level */ * Retrieve the value of Options for this request * @param r The current request * @return the Options bitmask * Retrieve the value of the AllowOverride for this request * @param r The current request * @return the overrides bitmask * Retrieve the document root for this server * @param r The current request * @warning Don't use this! If your request went through a Userdir, or * something like that, it'll screw you. But it's back-compatible... * @return The document root * Lookup the remote client's DNS name or IP address * @ingroup get_remote_host * @param conn The current connection * @param dir_config The directory config vector from the request * @param type The type of lookup to perform. One of: * REMOTE_HOST returns the hostname, or NULL if the hostname * lookup fails. It will force a DNS lookup according to the * HostnameLookups setting. * REMOTE_NAME returns the hostname, or the dotted quad if the * hostname lookup fails. It will force a DNS lookup according * to the HostnameLookups setting. * REMOTE_NOLOOKUP is like REMOTE_NAME except that a DNS lookup is * REMOTE_DOUBLE_REV will always force a DNS lookup, and also force * a double reverse lookup, regardless of the HostnameLookups * setting. The result is the (double reverse checked) * hostname, or NULL if any of the lookups fail. * @param str_is_ip unless NULL is passed, this will be set to non-zero on output when an IP address * @return The remote hostname * Retrieve the login name of the remote user. Undef if it could not be * @param r The current request * @return The user logged in to the client machine /* Used for constructing self-referencing URLs, and things like SERVER_PORT, * build a fully qualified URL from the uri and information in the request rec * @param p The pool to allocate the URL from * @param uri The path to the requested file * @param r The current request * @return A fully qualified URL * Get the current server name from the request * @param r The current request * @return the server name * Get the current server name from the request for the purposes * of using in a URL. If the server name is an IPv6 literal * address, it will be returned in URL format (e.g., "[fe80::1]"). * @param r The current request * @return the server name * Get the current server port * @param r The current request * @return The server's port * Return the limit on bytes in request msg body * @param r The current request * @return the maximum number of bytes in the request msg body * Return the limit on bytes in XML request msg body * @param r The current request * @return the maximum number of bytes in XML request msg body * Install a custom response handler for a given status * @param r The current request * @param status The status for which the custom response should be used * @param string The custom response. This can be a static string, a file * Check if the current request is beyond the configured max. number of redirects or subrequests * @param r The current request * @return true (is exceeded) or false * Check for a definition from the server command line * @param name The define to check for * @return 1 if defined, 0 otherwise /* FIXME! See STATUS about how */ /* Authentication stuff. This is one of the places where compatibility * with the old config files *really* hurts; they don't discriminate at * all between different authentication schemes, meaning that we need * to maintain common state for all of them in the core, and make it * available to the other modules through interfaces. * @brief A structure to keep track of authorization requirements /** Where the require line is in the config file. */ /** The complete string from the command line */ * Return the type of authorization required for this request * @param r The current request * @return The authorization required * Return the current Authorization realm * @param r The current request * @return The current authorization realm * How the requires lines must be met. * @param r The current request * @return How the requirements must be met. One of: * SATISFY_ANY -- any of the requirements must be met. * SATISFY_ALL -- all of the requirements must be met. * SATISFY_NOSPEC -- There are no applicable satisfy lines * Core is also unlike other modules in being implemented in more than * one file... so, data structures are declared here, even though most of * the code that cares really is in http_core.c. Also, another accessor. * @brief Per-request configuration /** bucket brigade used by getline for look-ahead and * ap_get_client_block for holding left-over request body */ /** an array of per-request working data elements, accessed * by ID using ap_get_request_note() * (Use ap_register_request_note() during initialization /** Custom response strings registered via ap_custom_response(), * or NULL; check per-dir config if nothing found here /** There is a script processor installed on the output filter chain, * so it needs the default_handler to deliver a (script) file into * the chain so it can process it. Normally, default_handler only * serves files on a GET request (assuming the file is actual content), * since other methods are not content-retrieval. This flag overrides * that behavior, stating that the "content" is actually a script and * won't actually be delivered as the response for the non-GET method. /** Should addition of charset= be suppressed for this request? /* Standard entries that are guaranteed to be accessible via * ap_get_request_note() for each request (additional entries * can be added with ap_register_request_note()) * Reserve an element in the core_request_config->notes array * for some application-specific data * @return An integer key that can be passed to ap_get_request_note() * during request processing to access this element for the * Retrieve a pointer to an element in the core_request_config->notes array * @param note_num A key for the element: either a value obtained from * ap_register_request_note() or one of the predefined AP_NOTE_* * @return NULL if the note_num is invalid, otherwise a pointer to the * requested note element. * @remark At the start of a request, each note element is NULL. The * handle provided by ap_get_request_note() is a pointer-to-pointer * so that the caller can point the element to some app-specific * data structure. The caller should guarantee that any such * structure will last as long as the request itself. * Bits of info that go into making an ETag for a file * document. Why a long? Because char historically * proved too short for Options, and int can be different * sizes on different platforms. * @brief Server Signature Enumeration * @brief Per-directory configuration /** the number of slashes in d */ /** If (opts & OPT_UNSET) then no absolute assignment to options has * invariant: (opts_add & opts_remove) == 0 * Which said another way means that the last relative (options + or -) * assignment made to each bit is recorded in exactly one of opts_add /* Custom response config. These can contain text or a URL to redirect to. * if response_code_strings is NULL then there are none in the config, * if it's not null then it's allocated to sizeof(char*)*RESPONSE_CODES. * This lets us do quick merges in merge_core_dir_configs(). * ap_custom_response() */ /* Hostname resolution etc */ unsigned int content_md5 :
2;
/* calculate Content-MD5? */ /* since is_fnmatch(conf->d) was being called so frequently in * directory_walk() and its relatives, this field was created and * is set to the result of that call. /* should we force a charset on any outgoing parameterless content-type? /* System Resource Control */ const char *
mime_type;
/* forced with ForceType */ const char *
handler;
/* forced with SetHandler */ * Run-time performance tuning unsigned int enable_mmap :
2;
/* whether files in this dir can be mmap'ed */ unsigned int enable_sendfile :
2;
/* files in this dir can be sendfile'ed */ * pitched indiscriminately */ /** per-dir log config */ /* macro to implement off by default behaviour */ /* Per-server core configuration */ /* Name translations --- we want the core to be able to do *something* * so it's at least a minimally functional web server on its own (and * can be tested that way). But let's keep it to the bare minimum: /* recursion backstopper */ int subreq_limit;
/* maximum nesting level of subrequests */ /* array of ap_errorlog_format_item for error log format string */ * two arrays of arrays of ap_errorlog_format_item for additional information /* for AddOutputFiltersByType in core.c */ /* Core filters; not exported. */ /* ---------------------------------------------------------------------- /* Handles for core filters */ * their operational status. * @param p A pool to use to create entries in the hash table * @param val The name of the parameter(s) that is wanted. This is * tree-structured would be in the form ('*' is all the tree, * 'module.*' all of the module , 'module.foo.*', or * @param ht The hash table to store the results. Keys are item names, and * the values point to ap_mgmt_item_t structures. /* ---------------------------------------------------------------------- */ /* ---------------------------------------------------------------------- * I/O logging with mod_logio /* ---------------------------------------------------------------------- * info structure passed to callback functions of errorlog handlers * callback function prototype for a external errorlog handler * Register external errorlog handler * @param p config pool to use * @param tag the new format specifier (i.e. the letter after the %) * @param handler the handler function * @param flags flags (reserved, set to 0) /* ---------------------------------------------------------------------- * ident lookups with mod_ident /* ---------------------------------------------------------------------- * authorization values with mod_authz_core /* ---------------------------------------------------------------------- * authorization values with mod_access_compat /* ---------------------------------------------------------------------- */ #
endif /* !APACHE_HTTP_CORE_H */