⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 util_script.c

📁 Apache HTTP Server 是一个功能强大的灵活的与HTTP/1.1相兼容的web服务器.这里给出的是Apache HTTP服务器的源码。
💻 C
📖 第 1 页 / 共 2 页
字号:
/* Copyright 1999-2005 The Apache Software Foundation or its licensors, as * applicable. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * *     http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */#include "apr.h"#include "apr_lib.h"#include "apr_strings.h"#define APR_WANT_STRFUNC#include "apr_want.h"#if APR_HAVE_STDLIB_H#include <stdlib.h>#endif#define CORE_PRIVATE#include "ap_config.h"#include "httpd.h"#include "http_config.h"#include "http_main.h"#include "http_log.h"#include "http_core.h"#include "http_protocol.h"#include "http_request.h"	/* for sub_req_lookup_uri() */#include "util_script.h"#include "apr_date.h"		/* For apr_date_parse_http() */#include "util_ebcdic.h"#ifdef OS2#define INCL_DOS#include <os2.h>#endif/* * Various utility functions which are common to a whole lot of * script-type extensions mechanisms, and might as well be gathered * in one place (if only to avoid creating inter-module dependancies * where there don't have to be). */#define MALFORMED_MESSAGE "malformed header from script. Bad header="#define MALFORMED_HEADER_LENGTH_TO_SHOW 30static char *http2env(apr_pool_t *a, const char *w){    char *res = (char *)apr_palloc(a, sizeof("HTTP_") + strlen(w));    char *cp = res;    char c;    *cp++ = 'H';    *cp++ = 'T';    *cp++ = 'T';    *cp++ = 'P';    *cp++ = '_';    while ((c = *w++) != 0) {        if (!apr_isalnum(c)) {            *cp++ = '_';        }        else {            *cp++ = apr_toupper(c);        }    }    *cp = 0;     return res;}AP_DECLARE(char **) ap_create_environment(apr_pool_t *p, apr_table_t *t){    const apr_array_header_t *env_arr = apr_table_elts(t);    const apr_table_entry_t *elts = (const apr_table_entry_t *) env_arr->elts;    char **env = (char **) apr_palloc(p, (env_arr->nelts + 2) * sizeof(char *));    int i, j;    char *tz;    char *whack;    j = 0;    if (!apr_table_get(t, "TZ")) {	tz = getenv("TZ");	if (tz != NULL) {	    env[j++] = apr_pstrcat(p, "TZ=", tz, NULL);	}    }    for (i = 0; i < env_arr->nelts; ++i) {        if (!elts[i].key) {	    continue;	}	env[j] = apr_pstrcat(p, elts[i].key, "=", elts[i].val, NULL);	whack = env[j];	if (apr_isdigit(*whack)) {	    *whack++ = '_';	}	while (*whack != '=') {	    if (!apr_isalnum(*whack) && *whack != '_') {		*whack = '_';	    }	    ++whack;	}	++j;    }    env[j] = NULL;    return env;}AP_DECLARE(void) ap_add_common_vars(request_rec *r){    apr_table_t *e;    server_rec *s = r->server;    conn_rec *c = r->connection;    const char *rem_logname;    char *env_path;#if defined(WIN32) || defined(OS2) || defined(BEOS)    char *env_temp;#endif    const char *host;    const apr_array_header_t *hdrs_arr = apr_table_elts(r->headers_in);    const apr_table_entry_t *hdrs = (const apr_table_entry_t *) hdrs_arr->elts;    int i;    apr_port_t rport;    /* use a temporary apr_table_t which we'll overlap onto     * r->subprocess_env later     * (exception: if r->subprocess_env is empty at the start,     * write directly into it)     */    if (apr_is_empty_table(r->subprocess_env)) {      e = r->subprocess_env;    }    else {      e = apr_table_make(r->pool, 25 + hdrs_arr->nelts);    }    /* First, add environment vars from headers... this is as per     * CGI specs, though other sorts of scripting interfaces see     * the same vars...     */    for (i = 0; i < hdrs_arr->nelts; ++i) {        if (!hdrs[i].key) {	    continue;	}	/* A few headers are special cased --- Authorization to prevent	 * rogue scripts from capturing passwords; content-type and -length	 * for no particular reason.	 */	if (!strcasecmp(hdrs[i].key, "Content-type")) {	    apr_table_addn(e, "CONTENT_TYPE", hdrs[i].val);	}	else if (!strcasecmp(hdrs[i].key, "Content-length")) {	    apr_table_addn(e, "CONTENT_LENGTH", hdrs[i].val);	}	/*	 * You really don't want to disable this check, since it leaves you	 * wide open to CGIs stealing passwords and people viewing them	 * in the environment with "ps -e".  But, if you must...	 */#ifndef SECURITY_HOLE_PASS_AUTHORIZATION	else if (!strcasecmp(hdrs[i].key, "Authorization") 		 || !strcasecmp(hdrs[i].key, "Proxy-Authorization")) {	    continue;	}#endif	else {	    apr_table_addn(e, http2env(r->pool, hdrs[i].key), hdrs[i].val);	}    }    if (!(env_path = getenv("PATH"))) {	env_path = DEFAULT_PATH;    }    apr_table_addn(e, "PATH", apr_pstrdup(r->pool, env_path));#ifdef WIN32    if (env_temp = getenv("SystemRoot")) {        apr_table_addn(e, "SystemRoot", env_temp);             }    if (env_temp = getenv("COMSPEC")) {        apr_table_addn(e, "COMSPEC", env_temp);                }    if (env_temp = getenv("PATHEXT")) {        apr_table_addn(e, "PATHEXT", env_temp);                }    if (env_temp = getenv("WINDIR")) {        apr_table_addn(e, "WINDIR", env_temp);    }#endif#ifdef OS2    if ((env_temp = getenv("COMSPEC")) != NULL) {        apr_table_addn(e, "COMSPEC", env_temp);                }    if ((env_temp = getenv("ETC")) != NULL) {        apr_table_addn(e, "ETC", env_temp);                }    if ((env_temp = getenv("DPATH")) != NULL) {        apr_table_addn(e, "DPATH", env_temp);                }    if ((env_temp = getenv("PERLLIB_PREFIX")) != NULL) {        apr_table_addn(e, "PERLLIB_PREFIX", env_temp);                }#endif#ifdef BEOS    if ((env_temp = getenv("LIBRARY_PATH")) != NULL) {        apr_table_addn(e, "LIBRARY_PATH", env_temp);                }#endif    apr_table_addn(e, "SERVER_SIGNATURE", ap_psignature("", r));    apr_table_addn(e, "SERVER_SOFTWARE", ap_get_server_version());    apr_table_addn(e, "SERVER_NAME",                   ap_escape_html(r->pool, ap_get_server_name(r)));    apr_table_addn(e, "SERVER_ADDR", r->connection->local_ip);	/* Apache */    apr_table_addn(e, "SERVER_PORT",		  apr_psprintf(r->pool, "%u", ap_get_server_port(r)));    host = ap_get_remote_host(c, r->per_dir_config, REMOTE_HOST, NULL);    if (host) {	apr_table_addn(e, "REMOTE_HOST", host);    }    apr_table_addn(e, "REMOTE_ADDR", c->remote_ip);    apr_table_addn(e, "DOCUMENT_ROOT", ap_document_root(r));	/* Apache */    apr_table_addn(e, "SERVER_ADMIN", s->server_admin);	/* Apache */    apr_table_addn(e, "SCRIPT_FILENAME", r->filename);	/* Apache */    apr_sockaddr_port_get(&rport, c->remote_addr);    apr_table_addn(e, "REMOTE_PORT", apr_itoa(r->pool, rport));    if (r->user) {	apr_table_addn(e, "REMOTE_USER", r->user);    }    else if (r->prev) {        request_rec *back = r->prev;        while (back) {            if (back->user) {                apr_table_addn(e, "REDIRECT_REMOTE_USER", back->user);                break;            }            back = back->prev;        }    }    if (r->ap_auth_type) {	apr_table_addn(e, "AUTH_TYPE", r->ap_auth_type);    }    rem_logname = ap_get_remote_logname(r);    if (rem_logname) {	apr_table_addn(e, "REMOTE_IDENT", apr_pstrdup(r->pool, rem_logname));    }    /* Apache custom error responses. If we have redirected set two new vars */    if (r->prev) {        if (r->prev->args) {	    apr_table_addn(e, "REDIRECT_QUERY_STRING", r->prev->args);	}	if (r->prev->uri) {	    apr_table_addn(e, "REDIRECT_URL", r->prev->uri);	}    }    if (e != r->subprocess_env) {      apr_table_overlap(r->subprocess_env, e, APR_OVERLAP_TABLES_SET);    }}/* This "cute" little function comes about because the path info on * filenames and URLs aren't always the same. So we take the two, * and find as much of the two that match as possible. */AP_DECLARE(int) ap_find_path_info(const char *uri, const char *path_info){    int lu = strlen(uri);    int lp = strlen(path_info);    while (lu-- && lp-- && uri[lu] == path_info[lp]);    if (lu == -1) {	lu = 0;    }    while (uri[lu] != '\0' && uri[lu] != '/') {        lu++;    }    return lu;}/* Obtain the Request-URI from the original request-line, returning * a new string from the request pool containing the URI or "". */static char *original_uri(request_rec *r){    char *first, *last;    if (r->the_request == NULL) {	return (char *) apr_pcalloc(r->pool, 1);    }    first = r->the_request;	/* use the request-line */    while (*first && !apr_isspace(*first)) {	++first;		/* skip over the method */    }    while (apr_isspace(*first)) {	++first;		/*   and the space(s)   */    }    last = first;    while (*last && !apr_isspace(*last)) {	++last;			/* end at next whitespace */    }    return apr_pstrmemdup(r->pool, first, last - first);}AP_DECLARE(void) ap_add_cgi_vars(request_rec *r){    apr_table_t *e = r->subprocess_env;    apr_table_setn(e, "GATEWAY_INTERFACE", "CGI/1.1");    apr_table_setn(e, "SERVER_PROTOCOL", r->protocol);    apr_table_setn(e, "REQUEST_METHOD", r->method);    apr_table_setn(e, "QUERY_STRING", r->args ? r->args : "");    apr_table_setn(e, "REQUEST_URI", original_uri(r));     /* Note that the code below special-cases scripts run from includes,     * because it "knows" that the sub_request has been hacked to have the     * args and path_info of the original request, and not any that may have     * come with the script URI in the include command.  Ugh.     */    if (!strcmp(r->protocol, "INCLUDED")) {	apr_table_setn(e, "SCRIPT_NAME", r->uri);	if (r->path_info && *r->path_info) {	    apr_table_setn(e, "PATH_INFO", r->path_info);	}    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -