proxy_http.c revision 995a11def54f1eb5a39099594d0d8bee4dbb33f4
4458N/A/* ====================================================================
4458N/A * The Apache Software License, Version 1.1
5403N/A *
4458N/A * Copyright (c) 2000-2001 The Apache Software Foundation. All rights
4458N/A * reserved.
4458N/A *
4458N/A * Redistribution and use in source and binary forms, with or without
4458N/A * modification, are permitted provided that the following conditions
4458N/A * are met:
4458N/A *
4458N/A * 1. Redistributions of source code must retain the above copyright
4458N/A * notice, this list of conditions and the following disclaimer.
4458N/A *
4458N/A * 2. Redistributions in binary form must reproduce the above copyright
4458N/A * notice, this list of conditions and the following disclaimer in
4458N/A * the documentation and/or other materials provided with the
4458N/A * distribution.
4458N/A *
4458N/A * 3. The end-user documentation included with the redistribution,
4458N/A * if any, must include the following acknowledgment:
4458N/A * "This product includes software developed by the
4458N/A * Apache Software Foundation (http://www.apache.org/)."
4458N/A * Alternately, this acknowledgment may appear in the software itself,
4458N/A * if and wherever such third-party acknowledgments normally appear.
4458N/A *
4458N/A * 4. The names "Apache" and "Apache Software Foundation" must
4458N/A * not be used to endorse or promote products derived from this
4458N/A * software without prior written permission. For written
4458N/A * permission, please contact apache@apache.org.
4458N/A *
4458N/A * 5. Products derived from this software may not be called "Apache",
4458N/A * nor may "Apache" appear in their name, without prior written
4458N/A * permission of the Apache Software Foundation.
4458N/A *
4458N/A * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
4458N/A * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
4458N/A * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
4458N/A * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
4458N/A * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
4458N/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
4458N/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
4458N/A * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
4458N/A * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
4458N/A * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
4458N/A * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
4458N/A * SUCH DAMAGE.
4458N/A * ====================================================================
4458N/A *
4458N/A * This software consists of voluntary contributions made by many
4458N/A * individuals on behalf of the Apache Software Foundation. For more
4458N/A * information on the Apache Software Foundation, please see
4458N/A * <http://www.apache.org/>.
4458N/A *
4458N/A * Portions of this software are based upon public domain software
4458N/A * originally written at the National Center for Supercomputing Applications,
4458N/A * University of Illinois, Urbana-Champaign.
4458N/A */
4458N/A
4458N/A/* HTTP routines for Apache proxy */
4458N/A
4458N/A#include "mod_proxy.h"
4458N/A
4458N/A/*
4458N/A * Canonicalise http-like URLs.
4458N/A * scheme is the scheme for the URL
4458N/A * url is the URL starting with the first '/'
4458N/A * def_port is the default port for this scheme.
4458N/A */
4458N/Aint ap_proxy_http_canon(request_rec *r, char *url, const char *scheme, int def_port)
4458N/A{
4458N/A char *host, *path, *search, sport[7];
4458N/A const char *err;
4458N/A int port;
4458N/A
4458N/A/* do syntatic check.
4458N/A * We break the URL into host, port, path, search
4458N/A */
4458N/A port = def_port;
4458N/A err = ap_proxy_canon_netloc(r->pool, &url, NULL, NULL, &host, &port);
4458N/A if (err)
4458N/A return HTTP_BAD_REQUEST;
4458N/A
4458N/A/* now parse path/search args, according to rfc1738 */
4458N/A/* N.B. if this isn't a true proxy request, then the URL _path_
4458N/A * has already been decoded. True proxy requests have r->uri
4458N/A * == r->unparsed_uri, and no others have that property.
4458N/A */
4458N/A if (r->uri == r->unparsed_uri) {
4458N/A search = strchr(url, '?');
4458N/A if (search != NULL)
4458N/A *(search++) = '\0';
4458N/A }
4458N/A else
4458N/A search = r->args;
4458N/A
4458N/A/* process path */
4458N/A path = ap_proxy_canonenc(r->pool, url, strlen(url), enc_path, r->proxyreq);
4458N/A if (path == NULL)
4458N/A return HTTP_BAD_REQUEST;
4458N/A
4458N/A if (port != def_port)
4458N/A apr_snprintf(sport, sizeof(sport), ":%d", port);
4458N/A else
4458N/A sport[0] = '\0';
4458N/A
4458N/A r->filename = apr_pstrcat(r->pool, "proxy:", scheme, "://", host, sport, "/",
4458N/A path, (search) ? "?" : "", (search) ? search : "", NULL);
4458N/A return OK;
4458N/A}
4458N/A
4458N/Astatic const char *ap_proxy_location_reverse_map(request_rec *r, const char *url)
4458N/A{
4458N/A void *sconf;
4458N/A proxy_server_conf *conf;
4458N/A struct proxy_alias *ent;
4458N/A int i, l1, l2;
4458N/A char *u;
4458N/A
4458N/A /* XXX FIXME: Make sure this handled the ambiguous case of the :80
4458N/A * after the hostname */
4458N/A
4458N/A sconf = r->server->module_config;
4458N/A conf = (proxy_server_conf *)ap_get_module_config(sconf, &proxy_module);
4458N/A l1 = strlen(url);
4458N/A ent = (struct proxy_alias *)conf->raliases->elts;
4458N/A for (i = 0; i < conf->raliases->nelts; i++) {
4458N/A l2 = strlen(ent[i].real);
4458N/A if (l1 >= l2 && strncmp(ent[i].real, url, l2) == 0) {
4458N/A u = apr_pstrcat(r->pool, ent[i].fake, &url[l2], NULL);
4458N/A return ap_construct_url(r->pool, u, r);
4458N/A }
4458N/A }
4458N/A return url;
4458N/A}
4458N/A
4458N/A/* Clear all connection-based headers from the incoming headers table */
4458N/Astatic void ap_proxy_clear_connection(apr_pool_t *p, apr_table_t *headers)
4458N/A{
4458N/A const char *name;
4458N/A char *next = apr_pstrdup(p, apr_table_get(headers, "Connection"));
4458N/A
4458N/A apr_table_unset(headers, "Proxy-Connection");
4458N/A if (!next)
4458N/A return;
4458N/A
4458N/A while (*next) {
4458N/A name = next;
4458N/A while (*next && !apr_isspace(*next) && (*next != ','))
4458N/A ++next;
4458N/A while (*next && (apr_isspace(*next) || (*next == ','))) {
4458N/A *next = '\0';
4458N/A ++next;
4458N/A }
4458N/A apr_table_unset(headers, name);
4458N/A }
4458N/A apr_table_unset(headers, "Connection");
4458N/A}
4458N/A
4458N/A/*
4458N/A * This handles http:// URLs, and other URLs using a remote proxy over http
4458N/A * If proxyhost is NULL, then contact the server directly, otherwise
4458N/A * go via the proxy.
4458N/A * Note that if a proxy is used, then URLs other than http: can be accessed,
4458N/A * also, if we have trouble which is clearly specific to the proxy, then
4458N/A * we return DECLINED so that we can try another proxy. (Or the direct
4458N/A * route.)
4458N/A */
4458N/Aint ap_proxy_http_handler(request_rec *r, char *url,
4458N/A const char *proxyname, int proxyport)
4458N/A{
4458N/A request_rec *rp;
4458N/A const char *connectname;
4458N/A int connectport = 0;
4458N/A apr_sockaddr_t *uri_addr;
4458N/A apr_sockaddr_t *connect_addr;
4458N/A char server_portstr[32];
4458N/A apr_socket_t *sock;
4458N/A int i, len, backasswards, close=0, failed=0, new=0;
4458N/A apr_status_t err, rv;
4458N/A apr_array_header_t *headers_in_array;
4458N/A apr_table_entry_t *headers_in;
4458N/A char buffer[HUGE_STRING_LEN];
4458N/A char *buf;
4458N/A conn_rec *origin;
4458N/A uri_components uri;
4458N/A
4458N/A void *sconf = r->server->module_config;
4458N/A proxy_server_conf *conf =
4458N/A (proxy_server_conf *) ap_get_module_config(sconf, &proxy_module);
4458N/A
4458N/A /* Note: Memory pool allocation.
4458N/A * A downstream keepalive connection is always connected to the existence
4458N/A * (or not) of an upstream keepalive connection. If this is not done then
4458N/A * load balancing against multiple backend servers breaks (one backend
4458N/A * server ends up taking 100% of the load), and the risk is run of
4458N/A * downstream keepalive connections being kept open unnecessarily. This
4458N/A * keeps webservers busy and ties up resources.
4458N/A *
4458N/A * As a result, we allocate all sockets out of the upstream connection
4458N/A * pool, and when we want to reuse a socket, we check first whether the
4458N/A * connection ID of the current upstream connection is the same as that
4458N/A * of the connection when the socket was opened.
4458N/A */
4458N/A apr_pool_t *p = r->connection->pool;
4458N/A conn_rec *c = r->connection;
4458N/A apr_bucket *e;
4458N/A apr_bucket_brigade *bb = apr_brigade_create(p);
4458N/A
4458N/A
4458N/A /*
4458N/A * Step One: Determine Who To Connect To
4458N/A *
4458N/A * Break up the URL to determine the host to connect to
4458N/A */
4458N/A
4458N/A /* we break the URL into host, port, uri */
4458N/A if (HTTP_OK != ap_parse_uri_components(p, url, &uri)) {
4458N/A return ap_proxyerror(r, HTTP_BAD_REQUEST,
4458N/A apr_pstrcat(p,"URI cannot be parsed: ", url, NULL));
4458N/A }
4458N/A if (!uri.port) {
4458N/A uri.port = ap_default_port_for_scheme(uri.scheme);
4458N/A }
4458N/A
4458N/A ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, r->server,
4458N/A "proxy: HTTP connecting %s to %s:%d", url, uri.hostname, uri.port);
4458N/A
4458N/A /* do a DNS lookup for the destination host */
4458N/A /* see memory note above */
4458N/A err = apr_sockaddr_info_get(&uri_addr, apr_pstrdup(c->pool, uri.hostname), APR_UNSPEC, uri.port, 0, c->pool);
4458N/A
4458N/A /* allocate these out of the connection pool - the check on r->connection->id makes
4458N/A * sure that this string does not get accessed past the connection lifetime */
4458N/A /* are we connecting directly, or via a proxy? */
4458N/A if (proxyname) {
4458N/A connectname = apr_pstrdup(c->pool,proxyname);
4458N/A connectport = proxyport;
4458N/A /* see memory note above */
4458N/A err = apr_sockaddr_info_get(&connect_addr, connectname, APR_UNSPEC, connectport, 0, c->pool);
4458N/A }
4458N/A else {
4458N/A connectname = apr_pstrdup(c->pool, uri.hostname);
4458N/A connectport = uri.port;
4458N/A connect_addr = uri_addr;
4458N/A url = apr_pstrcat(p, uri.path, uri.query ? "?" : "",
4458N/A uri.query ? uri.query : "", uri.fragment ? "#" : "",
4458N/A uri.fragment ? uri.fragment : "", NULL);
4458N/A }
4458N/A
4458N/A
4458N/A /* Get the server port for the Via headers */
4458N/A {
4458N/A i = ap_get_server_port(r);
4458N/A if (ap_is_default_port(i,r)) {
4458N/A strcpy(server_portstr,"");
4458N/A } else {
4458N/A apr_snprintf(server_portstr, sizeof server_portstr, ":%d", i);
4458N/A }
4458N/A }
4458N/A
4458N/A /* check if ProxyBlock directive on this host */
4458N/A if (OK != ap_proxy_checkproxyblock(r, conf, uri_addr)) {
4458N/A return ap_proxyerror(r, HTTP_FORBIDDEN,
4458N/A "Connect to remote machine blocked");
4458N/A }
4458N/A
4458N/A
4458N/A /*
4458N/A * Step Two: Make the Connection
4458N/A *
4458N/A * We have determined who to connect to. Now make the connection, supporting
4458N/A * a KeepAlive connection.
4458N/A */
4458N/A
4458N/A /* get all the possible IP addresses for the destname and loop through them
4458N/A * until we get a successful connection
4458N/A */
4458N/A if (APR_SUCCESS != err) {
4458N/A return ap_proxyerror(r, HTTP_BAD_GATEWAY, apr_pstrcat(p,
4458N/A "DNS lookup failure for: ",
4458N/A connectname, NULL));
4458N/A }
4458N/A
4458N/A /* if a keepalive socket is already open, check whether it must stay
4458N/A * open, or whether it should be closed and a new socket created.
4458N/A */
4458N/A /* see memory note above */
4458N/A if (conf->connection) {
4458N/A if ((conf->id == c->id) &&
4458N/A (conf->connectport == connectport) &&
4458N/A (conf->connectname) &&
4458N/A (!apr_strnatcasecmp(conf->connectname,connectname))) {
4458N/A ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, r->server,
4458N/A "proxy: keepalive address match (keep original socket)");
4458N/A }
4458N/A else {
4458N/A ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, r->server,
4458N/A "proxy: keepalive address mismatch / connection has"
4458N/A " changed (close old socket (%s/%s, %d/%d))",
4458N/A connectname, conf->connectname,
4458N/A connectport, conf->connectport);
4458N/A apr_socket_close(conf->connection->client_socket);
4458N/A conf->connection = NULL;
4458N/A }
4458N/A }
4458N/A
4458N/A /* get a socket - either a keepalive one, or a new one */
4458N/A new = 1;
4458N/A if ((conf->id == c->id) && (conf->connection)) {
4458N/A
4458N/A /* use previous keepalive socket */
4458N/A sock = conf->connection->client_socket;
4458N/A origin = conf->connection;
4458N/A new = 0;
4458N/A
4458N/A /* XXX FIXME: If the socket has since closed, change new to 1 so
4458N/A * a new socket is opened */
4458N/A }
4458N/A if (new) {
4458N/A
4458N/A /* create a new socket */
4458N/A conf->connection = NULL;
4458N/A
4458N/A /* see memory note above */
4458N/A if ((apr_socket_create(&sock, APR_INET, SOCK_STREAM, c->pool)) != APR_SUCCESS) {
4458N/A ap_log_error(APLOG_MARK, APLOG_ERR, 0, r->server,
4458N/A "proxy: error creating socket");
4458N/A return HTTP_INTERNAL_SERVER_ERROR;
4458N/A }
4458N/A
4458N/A#if !defined(TPF) && !defined(BEOS)
4458N/A if (conf->recv_buffer_size > 0 && apr_setsocketopt(sock, APR_SO_RCVBUF,
4458N/A conf->recv_buffer_size)) {
4458N/A ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
4458N/A "setsockopt(SO_RCVBUF): Failed to set ProxyReceiveBufferSize, using default");
4458N/A }
4458N/A#endif
4458N/A
4458N/A ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, r->server,
4458N/A "proxy: socket has been created");
4458N/A
4458N/A /*
4458N/A * At this point we have a list of one or more IP addresses of
4458N/A * the machine to connect to. If configured, reorder this
4458N/A * list so that the "best candidate" is first try. "best
4458N/A * candidate" could mean the least loaded server, the fastest
4458N/A * responding server, whatever.
4458N/A *
4458N/A * For now we do nothing, ie we get DNS round robin.
4458N/A * XXX FIXME
4458N/A */
4458N/A
4458N/A
4458N/A /* try each IP address until we connect successfully */
4458N/A failed = 1;
4458N/A while (connect_addr) {
4458N/A
4458N/A /* make the connection out of the socket */
4458N/A err = apr_connect(sock, connect_addr);
4458N/A
4458N/A /* if an error occurred, loop round and try again */
4458N/A if (err != APR_SUCCESS) {
4458N/A ap_log_error(APLOG_MARK, APLOG_ERR, err, r->server,
4458N/A "proxy: attempt to connect to %pI (%s) failed",
4458N/A connect_addr, connectname);
4458N/A connect_addr = connect_addr->next;
4458N/A continue;
4458N/A }
4458N/A
4458N/A /* if we get here, all is well */
4458N/A failed = 0;
4458N/A break;
4458N/A }
4458N/A
4458N/A /* handle a permanent error from the above loop */
4458N/A if (failed) {
4458N/A apr_socket_close(sock);
4458N/A if (proxyname) {
4458N/A return DECLINED;
4458N/A }
4458N/A else {
4458N/A return HTTP_BAD_GATEWAY;
4458N/A }
4458N/A }
4458N/A
4458N/A ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, r->server,
4458N/A "proxy: socket is connected");
4458N/A
4458N/A /* the socket is now open, create a new downstream connection */
4458N/A origin = ap_new_connection(c->pool, r->server, sock, r->connection->id);
4458N/A if (!origin) {
4458N/A /* the peer reset the connection already; ap_new_connection()
4458N/A * closed the socket */
4458N/A ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, r->server,
4458N/A "proxy: an error occurred creating a new connection to %pI (%s)", connect_addr, connectname);
4458N/A apr_socket_close(sock);
4458N/A return HTTP_INTERNAL_SERVER_ERROR;
4458N/A }
4458N/A conf->id = r->connection->id;
4458N/A conf->connectname = connectname;
4458N/A conf->connectport = connectport;
4458N/A conf->connection = origin;
5403N/A
4458N/A ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, r->server,
4458N/A "proxy: connection complete");
4458N/A
4458N/A /* set up the connection filters */
4458N/A ap_proxy_pre_http_connection(origin, NULL);
4458N/A
4458N/A }
4458N/A
4458N/A
4458N/A /*
4458N/A * Step Three: Send the Request
4458N/A *
4458N/A * Send the HTTP/1.1 request to the remote server
4458N/A */
4458N/A
4458N/A
4458N/A /* strip connection listed hop-by-hop headers from the request */
4458N/A /* even though in theory a connection: close coming from the client
4458N/A * should not affect the connection to the server, it's unlikely
4458N/A * that subsequent client requests will hit this thread/process, so
4458N/A * we cancel server keepalive if the client does.
4458N/A */
4458N/A close += ap_proxy_liststr(apr_table_get(r->headers_in, "Connection"), "close");
4458N/A ap_proxy_clear_connection(p, r->headers_in);
4458N/A if (close) {
4458N/A apr_table_mergen(r->headers_in, "Connection", "close");
4458N/A origin->keepalive = 0;
4458N/A }
4458N/A
4458N/A buf = apr_pstrcat(p, r->method, " ", url, " HTTP/1.1" CRLF, NULL);
4458N/A e = apr_bucket_pool_create(buf, strlen(buf), p);
4458N/A APR_BRIGADE_INSERT_TAIL(bb, e);
4458N/A if (uri.port_str && uri.port != DEFAULT_HTTP_PORT) {
4458N/A buf = apr_pstrcat(p, "Host: ", uri.hostname, ":", uri.port_str, CRLF, NULL);
4458N/A e = apr_bucket_pool_create(buf, strlen(buf), p);
4458N/A APR_BRIGADE_INSERT_TAIL(bb, e);
4458N/A }
4458N/A else {
4458N/A buf = apr_pstrcat(p, "Host: ", uri.hostname, CRLF, NULL);
4458N/A e = apr_bucket_pool_create(buf, strlen(buf), p);
4458N/A APR_BRIGADE_INSERT_TAIL(bb, e);
4458N/A }
4458N/A
4458N/A /* handle Via */
4458N/A if (conf->viaopt == via_block) {
4458N/A /* Block all outgoing Via: headers */
4458N/A apr_table_unset(r->headers_in, "Via");
4458N/A } else if (conf->viaopt != via_off) {
4458N/A /* Create a "Via:" request header entry and merge it */
4458N/A /* Generate outgoing Via: header with/without server comment: */
4458N/A apr_table_mergen(r->headers_in, "Via",
4458N/A (conf->viaopt == via_full)
4458N/A ? apr_psprintf(p, "%d.%d %s%s (%s)",
4458N/A HTTP_VERSION_MAJOR(r->proto_num),
4458N/A HTTP_VERSION_MINOR(r->proto_num),
4458N/A ap_get_server_name(r), server_portstr,
AP_SERVER_BASEVERSION)
: apr_psprintf(p, "%d.%d %s%s",
HTTP_VERSION_MAJOR(r->proto_num),
HTTP_VERSION_MINOR(r->proto_num),
ap_get_server_name(r), server_portstr)
);
}
/* X-Forwarded-*: handling
*
* XXX Privacy Note:
* -----------------
*
* These request headers are only really useful when the mod_proxy
* is used in a reverse proxy configuration, so that useful info
* about the client can be passed through the reverse proxy and on
* to the backend server, which may require the information to
* function properly.
*
* In a forward proxy situation, these options are a potential
* privacy violation, as information about clients behind the proxy
* are revealed to arbitrary servers out there on the internet.
*
* The HTTP/1.1 Via: header is designed for passing client
* information through proxies to a server, and should be used in
* a forward proxy configuation instead of X-Forwarded-*. See the
* ProxyVia option for details.
*/
if (PROXYREQ_REVERSE == r->proxyreq) {
const char *buf;
/* Add X-Forwarded-For: so that the upstream has a chance to
* determine, where the original request came from.
*/
apr_table_mergen(r->headers_in, "X-Forwarded-For", r->connection->remote_ip);
/* Add X-Forwarded-Host: so that upstream knows what the
* original request hostname was.
*/
if ((buf = apr_table_get(r->headers_in, "Host"))) {
apr_table_mergen(r->headers_in, "X-Forwarded-Host", buf);
}
/* Add X-Forwarded-Server: so that upstream knows what the
* name of this proxy server is (if there are more than one)
* XXX: This duplicates Via: - do we strictly need it?
*/
apr_table_mergen(r->headers_in, "X-Forwarded-Server",
r->server->server_hostname);
}
/* send request headers */
headers_in_array = apr_table_elts(r->headers_in);
headers_in = (apr_table_entry_t *) headers_in_array->elts;
for (i = 0; i < headers_in_array->nelts; i++) {
if (headers_in[i].key == NULL || headers_in[i].val == NULL
/* Clear out hop-by-hop request headers not to send
* RFC2616 13.5.1 says we should strip these headers
*/
|| !apr_strnatcasecmp(headers_in[i].key, "Host") /* Already sent */
|| !apr_strnatcasecmp(headers_in[i].key, "Keep-Alive")
|| !apr_strnatcasecmp(headers_in[i].key, "TE")
|| !apr_strnatcasecmp(headers_in[i].key, "Trailer")
|| !apr_strnatcasecmp(headers_in[i].key, "Transfer-Encoding")
|| !apr_strnatcasecmp(headers_in[i].key, "Upgrade")
/* XXX: @@@ FIXME: "Proxy-Authorization" should *only* be
* suppressed if THIS server requested the authentication,
* not when a frontend proxy requested it!
*
* The solution to this problem is probably to strip out
* the Proxy-Authorisation header in the authorisation
* code itself, not here. This saves us having to signal
* somehow whether this request was authenticated or not.
*/
|| !apr_strnatcasecmp(headers_in[i].key, "Proxy-Authorization")
|| !apr_strnatcasecmp(headers_in[i].key, "Proxy-Authenticate"))
continue;
buf = apr_pstrcat(p, headers_in[i].key, ": ", headers_in[i].val, CRLF, NULL);
e = apr_bucket_pool_create(buf, strlen(buf), p);
APR_BRIGADE_INSERT_TAIL(bb, e);
}
/* add empty line at the end of the headers */
e = apr_bucket_pool_create(CRLF, strlen(CRLF), p);
APR_BRIGADE_INSERT_TAIL(bb, e);
e = apr_bucket_flush_create();
APR_BRIGADE_INSERT_TAIL(bb, e);
ap_pass_brigade(origin->output_filters, bb);
/* send the request data, if any. */
if (ap_should_client_block(r)) {
while ((i = ap_get_client_block(r, buffer, sizeof buffer)) > 0) {
/* XXX FIXME: Only sends downstream when request is fully loaded */
e = apr_bucket_pool_create(buffer, i, p);
APR_BRIGADE_INSERT_TAIL(bb, e);
}
}
/* Flush the data to the origin server */
e = apr_bucket_flush_create();
APR_BRIGADE_INSERT_TAIL(bb, e);
ap_pass_brigade(origin->output_filters, bb);
/*
* Step Four: Receive the Response
*
* Get response from the remote server, and pass it up the
* filter chain
*/
rp = make_fake_req(origin, r);
apr_brigade_cleanup(bb);
if (APR_SUCCESS != (rv = ap_proxy_string_read(origin, bb, buffer, sizeof(buffer)))) {
apr_socket_close(sock);
conf->connection = NULL;
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
"proxy: error reading status line from remote server %s",
connectname);
return ap_proxyerror(r, HTTP_BAD_GATEWAY,
"Error reading from remote server");
}
len = strlen(buffer);
/* Is it an HTTP/1 response? This is buggy if we ever see an HTTP/1.10 */
if (ap_checkmask(buffer, "HTTP/#.# ###*")) {
int major, minor;
if (2 != sscanf(buffer, "HTTP/%u.%u", &major, &minor)) {
major = 1;
minor = 1;
}
/* If not an HTTP/1 message or if the status line was > 8192 bytes */
else if ((buffer[5] != '1') || (len >= sizeof(buffer)-1)) {
apr_socket_close(sock);
conf->connection = NULL;
return ap_proxyerror(r, HTTP_BAD_GATEWAY,
apr_pstrcat(p, "Corrupt status line returned by remote server: ", buffer, NULL));
}
backasswards = 0;
buffer[--len] = '\0';
buffer[12] = '\0';
r->status = atoi(&buffer[9]);
buffer[12] = ' ';
r->status_line = apr_pstrdup(p, &buffer[9]);
/* 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. */
r->headers_out = ap_proxy_read_headers(r, rp, buffer, sizeof(buffer), origin);
if (r->headers_out == NULL) {
ap_log_error(APLOG_MARK, APLOG_WARNING|APLOG_NOERRNO, 0, r->server,
"proxy: bad HTTP/%d.%d header returned by %s (%s)",
major, minor, r->uri, r->method);
close += 1;
}
else
{
/* strip connection listed hop-by-hop headers from response */
const char *buf;
close += ap_proxy_liststr(apr_table_get(r->headers_out, "Connection"), "close");
ap_proxy_clear_connection(p, r->headers_out);
if ((buf = apr_table_get(r->headers_out, "Content-Type"))) {
r->content_type = apr_pstrdup(p, buf);
}
}
/* handle Via header in response */
if (conf->viaopt != via_off && conf->viaopt != via_block) {
/* create a "Via:" response header entry and merge it */
ap_table_mergen(r->headers_out, "Via",
(conf->viaopt == via_full)
? apr_psprintf(p, "%d.%d %s%s (%s)",
HTTP_VERSION_MAJOR(r->proto_num),
HTTP_VERSION_MINOR(r->proto_num),
ap_get_server_name(r), server_portstr,
AP_SERVER_BASEVERSION)
: apr_psprintf(p, "%d.%d %s%s",
HTTP_VERSION_MAJOR(r->proto_num),
HTTP_VERSION_MINOR(r->proto_num),
ap_get_server_name(r), server_portstr)
);
}
/* cancel keepalive if HTTP/1.0 or less */
if ((major < 1) || (minor < 1)) {
close += 1;
origin->keepalive = 0;
}
}
else {
/* an http/0.9 response */
backasswards = 1;
r->status = 200;
r->status_line = "200 OK";
close += 1;
}
/* munge the Location and URI response headers according to ProxyPassReverse */
{
const char *buf;
/* XXX FIXME: this isn't working */
if ((buf = apr_table_get(r->headers_out, "Location")) != NULL)
apr_table_set(r->headers_out, "Location", ap_proxy_location_reverse_map(r, buf));
if ((buf = apr_table_get(r->headers_out, "Content-Location")) != NULL)
apr_table_set(r->headers_out, "Content-Location", ap_proxy_location_reverse_map(r, buf));
if ((buf = apr_table_get(r->headers_out, "URI")) != NULL)
apr_table_set(r->headers_out, "URI", ap_proxy_location_reverse_map(r, buf));
}
r->sent_bodyct = 1;
/* Is it an HTTP/0.9 response? If so, send the extra data */
if (backasswards) {
apr_ssize_t cntr = len;
/* FIXME: what is buffer used for here? It is of limited size */
e = apr_bucket_heap_create(buffer, cntr, 0, NULL);
APR_BRIGADE_INSERT_TAIL(bb, e);
}
/* send body */
if (!r->header_only) {
const char *buf;
/* if chunked - insert DECHUNK filter */
if (ap_proxy_liststr((buf = apr_table_get(r->headers_out, "Transfer-Encoding")), "chunked")) {
rp->read_chunked = 1;
apr_table_unset(r->headers_out, "Transfer-Encoding");
if ((buf = ap_proxy_removestr(r->pool, buf, "chunked"))) {
apr_table_set(r->headers_out, "Transfer-Encoding", buf);
}
ap_add_input_filter("DECHUNK", NULL, rp, origin);
}
/* if content length - set the length to read */
else if ((buf = apr_table_get(r->headers_out, "Content-Length"))) {
origin->remain = atol(buf);
}
/* no chunked / no length therefore read till EOF and cancel keepalive */
else {
close += 1;
}
/* if keepalive cancelled, read to EOF */
if (close) {
origin->remain = -1;
}
ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, r->server,
"proxy: start body send");
/* read the body, pass it to the output filters */
while (ap_get_brigade(rp->input_filters, bb, AP_MODE_BLOCKING) == APR_SUCCESS) {
if (APR_BUCKET_IS_EOS(APR_BRIGADE_LAST(bb))) {
ap_pass_brigade(r->output_filters, bb);
break;
}
ap_pass_brigade(r->output_filters, bb);
apr_brigade_destroy(bb);
bb = apr_brigade_create(p);
}
ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, r->server,
"proxy: end body send");
}
else {
ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, r->server,
"proxy: header only");
}
/*
* Step Five: Clean Up
*
* If there are no KeepAlives, or if the connection has been signalled
* to close, close the socket and clean up
*/
/* if the connection is < HTTP/1.1, or Connection: close,
* we close the socket, otherwise we leave it open for KeepAlive support
*/
if (close || (r->proto_num < HTTP_VERSION(1,1))) {
apr_socket_close(sock);
conf->connection = NULL;
}
return OK;
}