proxy_http.c revision dec91c8938ddfd2904d4c1c2f382e8eb50da54b8
/* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* distribution.
*
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Apache" and "Apache Software Foundation" must
* not be used to endorse or promote products derived from this
* software without prior written permission. For written
* permission, please contact apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache",
* nor may "Apache" appear in their name, without prior written
* permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
*
* Portions of this software are based upon public domain software
* originally written at the National Center for Supercomputing Applications,
* University of Illinois, Urbana-Champaign.
*/
/* HTTP routines for Apache proxy */
#define CORE_PRIVATE
#include "mod_proxy.h"
#include "http_log.h"
#include "http_main.h"
#include "http_core.h"
#include "http_connection.h"
#include "util_date.h"
/*
* Canonicalise http-like URLs.
* scheme is the scheme for the URL
* url is the URL starting with the first '/'
* def_port is the default port for this scheme.
*/
{
const char *err;
int port;
/* do syntatic check.
* We break the URL into host, port, path, search
*/
if (err)
return HTTP_BAD_REQUEST;
/* N.B. if this isn't a true proxy request, then the URL _path_
* has already been decoded. True proxy requests have r->uri
* == r->unparsed_uri, and no others have that property.
*/
if (r->uri == r->unparsed_uri) {
*(search++) = '\0';
}
else
/* process path */
return HTTP_BAD_REQUEST;
else
sport[0] = '\0';
return OK;
}
{
void *sconf;
struct proxy_alias *ent;
char *u;
return ap_construct_url(r->pool, u, r);
}
}
return url;
}
/* Clear all connection-based headers from the incoming headers table */
{
const char *name;
if (!next)
return;
while (*next) {
++next;
*next = '\0';
++next;
}
}
}
/*
* This handles http:// URLs, and other URLs using a remote proxy over http
* If proxyhost is NULL, then contact the server directly, otherwise
* go via the proxy.
* Note that if a proxy is used, then URLs other than http: can be accessed,
* also, if we have trouble which is clearly specific to the proxy, then
* we return DECLINED so that we can try another proxy. (Or the direct
* route.)
*/
{
const char *strp;
char *strp2;
char *desthost;
struct sockaddr_in server;
char buffer[HUGE_STRING_LEN];
char *buffer2;
char portstr[32];
apr_pool_t *p = r->pool;
int destport = 0;
char *destportstr = NULL;
char *buf;
ap_bucket *e;
int nocache = 0;
/* We break the URL into host, port, path-search */
return HTTP_BAD_REQUEST;
urlptr += 3;
urlptr = "/";
}
else {
desthost = q;
}
*(strp2++) = '\0';
if (apr_isdigit(*strp2)) {
destportstr = strp2;
}
}
/* check if ProxyBlock directive on this host */
return ap_proxyerror(r, HTTP_FORBIDDEN,
"Connect to remote machine blocked");
}
"proxy: error creating socket");
return HTTP_INTERNAL_SERVER_ERROR;
}
conf->recv_buffer_size)) {
"setsockopt(SO_RCVBUF): Failed to set ProxyReceiveBufferSize, using default");
}
#endif
}
else {
}
if (err != APR_SUCCESS) {
return DECLINED; /* try again another way */
else
"Could not connect to remote machine: ",
}
AP_BRIGADE_INSERT_TAIL(bb, e);
AP_BRIGADE_INSERT_TAIL(bb, e);
}
else {
AP_BRIGADE_INSERT_TAIL(bb, e);
}
/* Block all outgoing Via: headers */
/* Create a "Via:" request header entry and merge it */
i = ap_get_server_port(r);
if (ap_is_default_port(i,r)) {
} else {
}
? apr_psprintf(p, "%d.%d %s%s (%s)",
: apr_psprintf(p, "%d.%d %s%s",
);
}
for (i = 0; i < reqhdrs_arr->nelts; i++) {
/* Clear out headers not to send */
/* XXX: @@@ FIXME: "Proxy-Authorization" should *only* be
* suppressed if THIS server requested the authentication,
* not when a frontend proxy requested it!
*/
continue;
AP_BRIGADE_INSERT_TAIL(bb, e);
}
AP_BRIGADE_INSERT_TAIL(bb, e);
e = ap_bucket_create_flush();
AP_BRIGADE_INSERT_TAIL(bb, e);
/* send the request data, if any. */
if (ap_should_client_block(r)) {
AP_BRIGADE_INSERT_TAIL(bb, e);
}
}
/* Flush the data to the origin server */
e = ap_bucket_create_flush();
AP_BRIGADE_INSERT_TAIL(bb, e);
/* Tell http_filter to grab the data one line at a time. */
e = AP_BRIGADE_FIRST(bb);
if (len == -1) {
"ap_get_brigade() - proxy receive - Error reading from remote server %s (length %d)",
return ap_proxyerror(r, HTTP_BAD_GATEWAY,
"Error reading from remote server");
} else if (len == 0) {
return ap_proxyerror(r, HTTP_BAD_GATEWAY,
"Document contains no data");
}
AP_BUCKET_REMOVE(e);
/* Is it an HTTP/1 response? This is buggy if we ever see an HTTP/1.10 */
major = 1;
minor = 0;
}
/* If not an HTTP/1 message or if the status line was > 8192 bytes */
return HTTP_BAD_GATEWAY;
}
backasswards = 0;
/* read the headers. */
/* N.B. for HTTP/1.0 clients, we have to fold line-wrapped headers */
/* Also, take care with headers with multiple occurences. */
"proxy: Bad HTTP/%d.%d header returned by %s (%s)",
}
else
{
}
}
/* Create a "Via:" response header entry and merge it */
i = ap_get_server_port(r);
if (ap_is_default_port(i,r)) {
} else {
}
}
}
else {
/* an http/0.9 response */
backasswards = 1;
r->status = 200;
r->status_line = "200 OK";
}
/*
* HTTP/1.0 requires us to accept 3 types of dates, but only generate
* one type
*/
#if 0
#endif
/* write status line */
#if 0
if (!r->assbackwards)
"proxy: error writing status line to cache");
ap_proxy_cache_error(&c);
}
#endif
#if 0
/* send headers */
#endif
/*
if (!r->assbackwards)
ap_rputs(CRLF, r);
*/
r->sent_bodyct = 1;
/* Is it an HTTP/0.9 response? If so, send the extra data */
if (backasswards) {
AP_BRIGADE_INSERT_TAIL(bb, e);
"proxy: error writing extra data to cache");
}
}
/* send body */
/* if header only, then cache will be NULL */
/* HTTP/1.0 tells us to read to EOF, rather than content-length bytes */
if (!r->header_only) {
break;
}
}
}
return OK;
}