]> granicus.if.org Git - apache/blob - modules/proxy/mod_proxy_http.c
create the brigate outside ap_proxygetline and reuse it.
[apache] / modules / proxy / mod_proxy_http.c
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 /* HTTP routines for Apache proxy */
18
19 #include "mod_proxy.h"
20
21 module AP_MODULE_DECLARE_DATA proxy_http_module;
22
23 static apr_status_t ap_proxy_http_cleanup(const char *scheme,
24                                           request_rec *r,
25                                           proxy_conn_rec *backend);
26
27 /*
28  * Canonicalise http-like URLs.
29  *  scheme is the scheme for the URL
30  *  url    is the URL starting with the first '/'
31  *  def_port is the default port for this scheme.
32  */
33 static int proxy_http_canon(request_rec *r, char *url)
34 {
35     char *host, *path, *search, sport[7];
36     const char *err;
37     const char *scheme;
38     apr_port_t port, def_port;
39
40     /* ap_port_of_scheme() */
41     if (strncasecmp(url, "http:", 5) == 0) {
42         url += 5;
43         scheme = "http";
44     }
45     else if (strncasecmp(url, "https:", 6) == 0) {
46         url += 6;
47         scheme = "https";
48     }
49     else {
50         return DECLINED;
51     }
52     def_port = apr_uri_port_of_scheme(scheme);
53
54     ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server,
55              "proxy: HTTP: canonicalising URL %s", url);
56
57     /* do syntatic check.
58      * We break the URL into host, port, path, search
59      */
60     port = def_port;
61     err = ap_proxy_canon_netloc(r->pool, &url, NULL, NULL, &host, &port);
62     if (err) {
63         ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
64                       "error parsing URL %s: %s",
65                       url, err);
66         return HTTP_BAD_REQUEST;
67     }
68
69     /* now parse path/search args, according to rfc1738 */
70     /* N.B. if this isn't a true proxy request, then the URL _path_
71      * has already been decoded.  True proxy requests have r->uri
72      * == r->unparsed_uri, and no others have that property.
73      */
74     if (r->uri == r->unparsed_uri) {
75         search = strchr(url, '?');
76         if (search != NULL)
77             *(search++) = '\0';
78     }
79     else
80         search = r->args;
81
82     /* process path */
83     path = ap_proxy_canonenc(r->pool, url, strlen(url), enc_path, 0, r->proxyreq);
84     if (path == NULL)
85         return HTTP_BAD_REQUEST;
86
87     if (port != def_port)
88         apr_snprintf(sport, sizeof(sport), ":%d", port);
89     else
90         sport[0] = '\0';
91
92     if (ap_strchr_c(host, ':')) { /* if literal IPv6 address */
93         host = apr_pstrcat(r->pool, "[", host, "]", NULL);
94     }
95     r->filename = apr_pstrcat(r->pool, "proxy:", scheme, "://", host, sport,
96             "/", path, (search) ? "?" : "", (search) ? search : "", NULL);
97     return OK;
98 }
99
100 /* Clear all connection-based headers from the incoming headers table */
101 static void ap_proxy_clear_connection(apr_pool_t *p, apr_table_t *headers)
102 {
103     const char *name;
104     char *next = apr_pstrdup(p, apr_table_get(headers, "Connection"));
105
106     apr_table_unset(headers, "Proxy-Connection");
107     if (!next)
108         return;
109
110     while (*next) {
111         name = next;
112         while (*next && !apr_isspace(*next) && (*next != ',')) {
113             ++next;
114         }
115         while (*next && (apr_isspace(*next) || (*next == ','))) {
116             *next = '\0';
117             ++next;
118         }
119         apr_table_unset(headers, name);
120     }
121     apr_table_unset(headers, "Connection");
122 }
123
124 static void add_te_chunked(apr_pool_t *p,
125                            apr_bucket_alloc_t *bucket_alloc,
126                            apr_bucket_brigade *header_brigade)
127 {
128     apr_bucket *e;
129     char *buf;
130     const char te_hdr[] = "Transfer-Encoding: chunked" CRLF;
131
132     buf = apr_pmemdup(p, te_hdr, sizeof(te_hdr)-1);
133     ap_xlate_proto_to_ascii(buf, sizeof(te_hdr)-1);
134
135     e = apr_bucket_pool_create(buf, sizeof(te_hdr)-1, p, bucket_alloc);
136     APR_BRIGADE_INSERT_TAIL(header_brigade, e);
137 }
138
139 static void add_cl(apr_pool_t *p,
140                    apr_bucket_alloc_t *bucket_alloc,
141                    apr_bucket_brigade *header_brigade,
142                    const char *cl_val)
143 {
144     apr_bucket *e;
145     char *buf;
146
147     buf = apr_pstrcat(p, "Content-Length: ",
148                       cl_val,
149                       CRLF,
150                       NULL);
151     ap_xlate_proto_to_ascii(buf, strlen(buf));
152     e = apr_bucket_pool_create(buf, strlen(buf), p, bucket_alloc);
153     APR_BRIGADE_INSERT_TAIL(header_brigade, e);
154 }
155
156 #define ASCII_CRLF  "\015\012"
157 #define ASCII_ZERO  "\060"
158
159 static void terminate_headers(apr_bucket_alloc_t *bucket_alloc,
160                               apr_bucket_brigade *header_brigade)
161 {
162     apr_bucket *e;
163
164     /* add empty line at the end of the headers */
165     e = apr_bucket_immortal_create(ASCII_CRLF, 2, bucket_alloc);
166     APR_BRIGADE_INSERT_TAIL(header_brigade, e);
167 }
168
169 static apr_status_t pass_brigade(apr_bucket_alloc_t *bucket_alloc,
170                                  request_rec *r, proxy_conn_rec *conn,
171                                  conn_rec *origin, apr_bucket_brigade *bb,
172                                  int flush)
173 {
174     apr_status_t status;
175     apr_off_t transferred;
176
177     if (flush) {
178         apr_bucket *e = apr_bucket_flush_create(bucket_alloc);
179         APR_BRIGADE_INSERT_TAIL(bb, e);
180     }
181     apr_brigade_length(bb, 0, &transferred);
182     if (transferred != -1)
183         conn->worker->s->transferred += transferred;
184     status = ap_pass_brigade(origin->output_filters, bb);
185     if (status != APR_SUCCESS) {
186         ap_log_error(APLOG_MARK, APLOG_ERR, status, r->server,
187                      "proxy: pass request body failed to %pI (%s)",
188                      conn->addr, conn->hostname);
189         return status;
190     }
191     apr_brigade_cleanup(bb);
192     return APR_SUCCESS;
193 }
194
195 #define MAX_MEM_SPOOL 16384
196
197 static apr_status_t stream_reqbody_chunked(apr_pool_t *p,
198                                            request_rec *r,
199                                            proxy_conn_rec *p_conn,
200                                            conn_rec *origin,
201                                            apr_bucket_brigade *header_brigade,
202                                            apr_bucket_brigade *input_brigade)
203 {
204     int seen_eos = 0;
205     apr_size_t hdr_len;
206     apr_off_t bytes;
207     apr_status_t status;
208     apr_bucket_alloc_t *bucket_alloc = r->connection->bucket_alloc;
209     apr_bucket_brigade *bb;
210     apr_bucket *e;
211
212     add_te_chunked(p, bucket_alloc, header_brigade);
213     terminate_headers(bucket_alloc, header_brigade);
214
215     while (!APR_BUCKET_IS_EOS(APR_BRIGADE_FIRST(input_brigade)))
216     {
217         char chunk_hdr[20];  /* must be here due to transient bucket. */
218
219         /* If this brigade contains EOS, either stop or remove it. */
220         if (APR_BUCKET_IS_EOS(APR_BRIGADE_LAST(input_brigade))) {
221             seen_eos = 1;
222
223             /* We can't pass this EOS to the output_filters. */
224             e = APR_BRIGADE_LAST(input_brigade);
225             apr_bucket_delete(e);
226         }
227
228         apr_brigade_length(input_brigade, 1, &bytes);
229
230         hdr_len = apr_snprintf(chunk_hdr, sizeof(chunk_hdr),
231                                "%" APR_UINT64_T_HEX_FMT CRLF,
232                                (apr_uint64_t)bytes);
233
234         ap_xlate_proto_to_ascii(chunk_hdr, hdr_len);
235         e = apr_bucket_transient_create(chunk_hdr, hdr_len,
236                                         bucket_alloc);
237         APR_BRIGADE_INSERT_HEAD(input_brigade, e);
238
239         /*
240          * Append the end-of-chunk CRLF
241          */
242         e = apr_bucket_immortal_create(ASCII_CRLF, 2, bucket_alloc);
243         APR_BRIGADE_INSERT_TAIL(input_brigade, e);
244
245         if (header_brigade) {
246             /* we never sent the header brigade, so go ahead and
247              * take care of that now
248              */
249             bb = header_brigade;
250
251             /*
252              * Save input_brigade in bb brigade. (At least) in the SSL case
253              * input_brigade contains transient buckets whose data would get
254              * overwritten during the next call of ap_get_brigade in the loop.
255              * ap_save_brigade ensures these buckets to be set aside.
256              * Calling ap_save_brigade with NULL as filter is OK, because
257              * bb brigade already has been created and does not need to get
258              * created by ap_save_brigade.
259              */
260             status = ap_save_brigade(NULL, &bb, &input_brigade, p);
261             if (status != APR_SUCCESS) {
262                 return status;
263             }
264
265             header_brigade = NULL;
266         }
267         else {
268             bb = input_brigade;
269         }
270
271         /* The request is flushed below this loop with chunk EOS header */
272         status = pass_brigade(bucket_alloc, r, p_conn, origin, bb, 0);
273         if (status != APR_SUCCESS) {
274             return status;
275         }
276
277         if (seen_eos) {
278             break;
279         }
280
281         status = ap_get_brigade(r->input_filters, input_brigade,
282                                 AP_MODE_READBYTES, APR_BLOCK_READ,
283                                 HUGE_STRING_LEN);
284
285         if (status != APR_SUCCESS) {
286             return status;
287         }
288     }
289
290     if (header_brigade) {
291         /* we never sent the header brigade because there was no request body;
292          * send it now
293          */
294         bb = header_brigade;
295     }
296     else {
297         if (!APR_BRIGADE_EMPTY(input_brigade)) {
298             /* input brigade still has an EOS which we can't pass to the output_filters. */
299             e = APR_BRIGADE_LAST(input_brigade);
300             AP_DEBUG_ASSERT(APR_BUCKET_IS_EOS(e));
301             apr_bucket_delete(e);
302         }
303         bb = input_brigade;
304     }
305
306     e = apr_bucket_immortal_create(ASCII_ZERO ASCII_CRLF
307                                    /* <trailers> */
308                                    ASCII_CRLF,
309                                    5, bucket_alloc);
310     APR_BRIGADE_INSERT_TAIL(bb, e);
311
312     if (apr_table_get(r->subprocess_env, "proxy-sendextracrlf")) {
313         e = apr_bucket_immortal_create(ASCII_CRLF, 2, bucket_alloc);
314         APR_BRIGADE_INSERT_TAIL(bb, e);
315     }
316
317     /* Now we have headers-only, or the chunk EOS mark; flush it */
318     status = pass_brigade(bucket_alloc, r, p_conn, origin, bb, 1);
319     return status;
320 }
321
322 static apr_status_t stream_reqbody_cl(apr_pool_t *p,
323                                       request_rec *r,
324                                       proxy_conn_rec *p_conn,
325                                       conn_rec *origin,
326                                       apr_bucket_brigade *header_brigade,
327                                       apr_bucket_brigade *input_brigade,
328                                       const char *old_cl_val)
329 {
330     int seen_eos = 0;
331     apr_status_t status = APR_SUCCESS;
332     apr_bucket_alloc_t *bucket_alloc = r->connection->bucket_alloc;
333     apr_bucket_brigade *bb;
334     apr_bucket *e;
335     apr_off_t cl_val = 0;
336     apr_off_t bytes;
337     apr_off_t bytes_streamed = 0;
338
339     if (old_cl_val) {
340         add_cl(p, bucket_alloc, header_brigade, old_cl_val);
341         if (APR_SUCCESS != (status = apr_strtoff(&cl_val, old_cl_val, NULL,
342                                                  0))) {
343             return status;
344         }
345     }
346     terminate_headers(bucket_alloc, header_brigade);
347
348     while (!APR_BUCKET_IS_EOS(APR_BRIGADE_FIRST(input_brigade)))
349     {
350         apr_brigade_length(input_brigade, 1, &bytes);
351         bytes_streamed += bytes;
352
353         /* If this brigade contains EOS, either stop or remove it. */
354         if (APR_BUCKET_IS_EOS(APR_BRIGADE_LAST(input_brigade))) {
355             seen_eos = 1;
356
357             /* We can't pass this EOS to the output_filters. */
358             e = APR_BRIGADE_LAST(input_brigade);
359             apr_bucket_delete(e);
360
361             if (apr_table_get(r->subprocess_env, "proxy-sendextracrlf")) {
362                 e = apr_bucket_immortal_create(ASCII_CRLF, 2, bucket_alloc);
363                 APR_BRIGADE_INSERT_TAIL(input_brigade, e);
364             }
365         }
366
367         /* C-L < bytes streamed?!?
368          * We will error out after the body is completely
369          * consumed, but we can't stream more bytes at the
370          * back end since they would in part be interpreted
371          * as another request!  If nothing is sent, then
372          * just send nothing.
373          *
374          * Prevents HTTP Response Splitting.
375          */
376         if (bytes_streamed > cl_val)
377              continue;
378
379         if (header_brigade) {
380             /* we never sent the header brigade, so go ahead and
381              * take care of that now
382              */
383             bb = header_brigade;
384
385             /*
386              * Save input_brigade in bb brigade. (At least) in the SSL case
387              * input_brigade contains transient buckets whose data would get
388              * overwritten during the next call of ap_get_brigade in the loop.
389              * ap_save_brigade ensures these buckets to be set aside.
390              * Calling ap_save_brigade with NULL as filter is OK, because
391              * bb brigade already has been created and does not need to get
392              * created by ap_save_brigade.
393              */
394             status = ap_save_brigade(NULL, &bb, &input_brigade, p);
395             if (status != APR_SUCCESS) {
396                 return status;
397             }
398
399             header_brigade = NULL;
400         }
401         else {
402             bb = input_brigade;
403         }
404
405         /* Once we hit EOS, we are ready to flush. */
406         status = pass_brigade(bucket_alloc, r, p_conn, origin, bb, seen_eos);
407         if (status != APR_SUCCESS) {
408             return status;
409         }
410
411         if (seen_eos) {
412             break;
413         }
414
415         status = ap_get_brigade(r->input_filters, input_brigade,
416                                 AP_MODE_READBYTES, APR_BLOCK_READ,
417                                 HUGE_STRING_LEN);
418
419         if (status != APR_SUCCESS) {
420             return status;
421         }
422     }
423
424     if (bytes_streamed != cl_val) {
425         ap_log_error(APLOG_MARK, APLOG_ERR, 0, r->server,
426                      "proxy: client %s given Content-Length did not match"
427                      " number of body bytes read", r->connection->remote_ip);
428         return APR_EOF;
429     }
430
431     if (header_brigade) {
432         /* we never sent the header brigade since there was no request
433          * body; send it now with the flush flag
434          */
435         bb = header_brigade;
436         status = pass_brigade(bucket_alloc, r, p_conn, origin, bb, 1);
437     }
438     return status;
439 }
440
441 static apr_status_t spool_reqbody_cl(apr_pool_t *p,
442                                      request_rec *r,
443                                      proxy_conn_rec *p_conn,
444                                      conn_rec *origin,
445                                      apr_bucket_brigade *header_brigade,
446                                      apr_bucket_brigade *input_brigade,
447                                      int force_cl)
448 {
449     int seen_eos = 0;
450     apr_status_t status;
451     apr_bucket_alloc_t *bucket_alloc = r->connection->bucket_alloc;
452     apr_bucket_brigade *body_brigade;
453     apr_bucket *e;
454     apr_off_t bytes, bytes_spooled = 0, fsize = 0;
455     apr_file_t *tmpfile = NULL;
456
457     body_brigade = apr_brigade_create(p, bucket_alloc);
458
459     while (!APR_BUCKET_IS_EOS(APR_BRIGADE_FIRST(input_brigade)))
460     {
461         /* If this brigade contains EOS, either stop or remove it. */
462         if (APR_BUCKET_IS_EOS(APR_BRIGADE_LAST(input_brigade))) {
463             seen_eos = 1;
464
465             /* We can't pass this EOS to the output_filters. */
466             e = APR_BRIGADE_LAST(input_brigade);
467             apr_bucket_delete(e);
468         }
469
470         apr_brigade_length(input_brigade, 1, &bytes);
471
472         if (bytes_spooled + bytes > MAX_MEM_SPOOL) {
473             /* can't spool any more in memory; write latest brigade to disk */
474             if (tmpfile == NULL) {
475                 const char *temp_dir;
476                 char *template;
477
478                 status = apr_temp_dir_get(&temp_dir, p);
479                 if (status != APR_SUCCESS) {
480                     ap_log_error(APLOG_MARK, APLOG_ERR, status, r->server,
481                                  "proxy: search for temporary directory failed");
482                     return status;
483                 }
484                 apr_filepath_merge(&template, temp_dir,
485                                    "modproxy.tmp.XXXXXX",
486                                    APR_FILEPATH_NATIVE, p);
487                 status = apr_file_mktemp(&tmpfile, template, 0, p);
488                 if (status != APR_SUCCESS) {
489                     ap_log_error(APLOG_MARK, APLOG_ERR, status, r->server,
490                                  "proxy: creation of temporary file in directory %s failed",
491                                  temp_dir);
492                     return status;
493                 }
494             }
495             for (e = APR_BRIGADE_FIRST(input_brigade);
496                  e != APR_BRIGADE_SENTINEL(input_brigade);
497                  e = APR_BUCKET_NEXT(e)) {
498                 const char *data;
499                 apr_size_t bytes_read, bytes_written;
500
501                 apr_bucket_read(e, &data, &bytes_read, APR_BLOCK_READ);
502                 status = apr_file_write_full(tmpfile, data, bytes_read, &bytes_written);
503                 if (status != APR_SUCCESS) {
504                     const char *tmpfile_name;
505
506                     if (apr_file_name_get(&tmpfile_name, tmpfile) != APR_SUCCESS) {
507                         tmpfile_name = "(unknown)";
508                     }
509                     ap_log_error(APLOG_MARK, APLOG_ERR, status, r->server,
510                                  "proxy: write to temporary file %s failed",
511                                  tmpfile_name);
512                     return status;
513                 }
514                 AP_DEBUG_ASSERT(bytes_read == bytes_written);
515                 fsize += bytes_written;
516             }
517             apr_brigade_cleanup(input_brigade);
518         }
519         else {
520
521             /*
522              * Save input_brigade in body_brigade. (At least) in the SSL case
523              * input_brigade contains transient buckets whose data would get
524              * overwritten during the next call of ap_get_brigade in the loop.
525              * ap_save_brigade ensures these buckets to be set aside.
526              * Calling ap_save_brigade with NULL as filter is OK, because
527              * body_brigade already has been created and does not need to get
528              * created by ap_save_brigade.
529              */
530             status = ap_save_brigade(NULL, &body_brigade, &input_brigade, p);
531             if (status != APR_SUCCESS) {
532                 return status;
533             }
534
535         }
536
537         bytes_spooled += bytes;
538
539         if (seen_eos) {
540             break;
541         }
542
543         status = ap_get_brigade(r->input_filters, input_brigade,
544                                 AP_MODE_READBYTES, APR_BLOCK_READ,
545                                 HUGE_STRING_LEN);
546
547         if (status != APR_SUCCESS) {
548             return status;
549         }
550     }
551
552     if (bytes_spooled || force_cl) {
553         add_cl(p, bucket_alloc, header_brigade, apr_off_t_toa(p, bytes_spooled));
554     }
555     terminate_headers(bucket_alloc, header_brigade);
556     APR_BRIGADE_CONCAT(header_brigade, body_brigade);
557     if (tmpfile) {
558         apr_brigade_insert_file(header_brigade, tmpfile, 0, fsize, p);
559     }
560     if (apr_table_get(r->subprocess_env, "proxy-sendextracrlf")) {
561         e = apr_bucket_immortal_create(ASCII_CRLF, 2, bucket_alloc);
562         APR_BRIGADE_INSERT_TAIL(header_brigade, e);
563     }
564     /* This is all a single brigade, pass with flush flagged */
565     status = pass_brigade(bucket_alloc, r, p_conn, origin, header_brigade, 1);
566     return status;
567 }
568
569 static
570 apr_status_t ap_proxy_http_request(apr_pool_t *p, request_rec *r,
571                                    proxy_conn_rec *p_conn, conn_rec *origin,
572                                    proxy_server_conf *conf,
573                                    apr_uri_t *uri,
574                                    char *url, char *server_portstr)
575 {
576     conn_rec *c = r->connection;
577     apr_bucket_alloc_t *bucket_alloc = c->bucket_alloc;
578     apr_bucket_brigade *header_brigade;
579     apr_bucket_brigade *input_brigade;
580     apr_bucket_brigade *temp_brigade;
581     apr_bucket *e;
582     char *buf;
583     const apr_array_header_t *headers_in_array;
584     const apr_table_entry_t *headers_in;
585     int counter;
586     apr_status_t status;
587     enum rb_methods {RB_INIT, RB_STREAM_CL, RB_STREAM_CHUNKED, RB_SPOOL_CL};
588     enum rb_methods rb_method = RB_INIT;
589     const char *old_cl_val = NULL;
590     const char *old_te_val = NULL;
591     apr_off_t bytes_read = 0;
592     apr_off_t bytes;
593     int force10;
594     apr_table_t *headers_in_copy;
595
596     header_brigade = apr_brigade_create(p, origin->bucket_alloc);
597
598     /*
599      * Send the HTTP/1.1 request to the remote server
600      */
601
602     if (apr_table_get(r->subprocess_env, "force-proxy-request-1.0")) {
603         buf = apr_pstrcat(p, r->method, " ", url, " HTTP/1.0" CRLF, NULL);
604         force10 = 1;
605         p_conn->close++;
606     } else {
607         buf = apr_pstrcat(p, r->method, " ", url, " HTTP/1.1" CRLF, NULL);
608         force10 = 0;
609     }
610     if (apr_table_get(r->subprocess_env, "proxy-nokeepalive")) {
611         origin->keepalive = AP_CONN_CLOSE;
612         p_conn->close++;
613     }
614     ap_xlate_proto_to_ascii(buf, strlen(buf));
615     e = apr_bucket_pool_create(buf, strlen(buf), p, c->bucket_alloc);
616     APR_BRIGADE_INSERT_TAIL(header_brigade, e);
617     if (conf->preserve_host == 0) {
618         if (uri->port_str && uri->port != DEFAULT_HTTP_PORT) {
619             buf = apr_pstrcat(p, "Host: ", uri->hostname, ":", uri->port_str,
620                               CRLF, NULL);
621         } else {
622             buf = apr_pstrcat(p, "Host: ", uri->hostname, CRLF, NULL);
623         }
624     }
625     else {
626         /* don't want to use r->hostname, as the incoming header might have a
627          * port attached
628          */
629         const char* hostname = apr_table_get(r->headers_in,"Host");
630         if (!hostname) {
631             hostname =  r->server->server_hostname;
632             ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r,
633                           "proxy: no HTTP 0.9 request (with no host line) "
634                           "on incoming request and preserve host set "
635                           "forcing hostname to be %s for uri %s",
636                           hostname,
637                           r->uri );
638         }
639         buf = apr_pstrcat(p, "Host: ", hostname, CRLF, NULL);
640     }
641     ap_xlate_proto_to_ascii(buf, strlen(buf));
642     e = apr_bucket_pool_create(buf, strlen(buf), p, c->bucket_alloc);
643     APR_BRIGADE_INSERT_TAIL(header_brigade, e);
644
645     /* handle Via */
646     if (conf->viaopt == via_block) {
647         /* Block all outgoing Via: headers */
648         apr_table_unset(r->headers_in, "Via");
649     } else if (conf->viaopt != via_off) {
650         const char *server_name = ap_get_server_name(r);
651         /* If USE_CANONICAL_NAME_OFF was configured for the proxy virtual host,
652          * then the server name returned by ap_get_server_name() is the
653          * origin server name (which does make too much sense with Via: headers)
654          * so we use the proxy vhost's name instead.
655          */
656         if (server_name == r->hostname)
657             server_name = r->server->server_hostname;
658         /* Create a "Via:" request header entry and merge it */
659         /* Generate outgoing Via: header with/without server comment: */
660         apr_table_mergen(r->headers_in, "Via",
661                          (conf->viaopt == via_full)
662                          ? apr_psprintf(p, "%d.%d %s%s (%s)",
663                                         HTTP_VERSION_MAJOR(r->proto_num),
664                                         HTTP_VERSION_MINOR(r->proto_num),
665                                         server_name, server_portstr,
666                                         AP_SERVER_BASEVERSION)
667                          : apr_psprintf(p, "%d.%d %s%s",
668                                         HTTP_VERSION_MAJOR(r->proto_num),
669                                         HTTP_VERSION_MINOR(r->proto_num),
670                                         server_name, server_portstr)
671         );
672     }
673
674     /* X-Forwarded-*: handling
675      *
676      * XXX Privacy Note:
677      * -----------------
678      *
679      * These request headers are only really useful when the mod_proxy
680      * is used in a reverse proxy configuration, so that useful info
681      * about the client can be passed through the reverse proxy and on
682      * to the backend server, which may require the information to
683      * function properly.
684      *
685      * In a forward proxy situation, these options are a potential
686      * privacy violation, as information about clients behind the proxy
687      * are revealed to arbitrary servers out there on the internet.
688      *
689      * The HTTP/1.1 Via: header is designed for passing client
690      * information through proxies to a server, and should be used in
691      * a forward proxy configuation instead of X-Forwarded-*. See the
692      * ProxyVia option for details.
693      */
694
695     if (PROXYREQ_REVERSE == r->proxyreq) {
696         const char *buf;
697
698         /* Add X-Forwarded-For: so that the upstream has a chance to
699          * determine, where the original request came from.
700          */
701         apr_table_mergen(r->headers_in, "X-Forwarded-For",
702                          c->remote_ip);
703
704         /* Add X-Forwarded-Host: so that upstream knows what the
705          * original request hostname was.
706          */
707         if ((buf = apr_table_get(r->headers_in, "Host"))) {
708             apr_table_mergen(r->headers_in, "X-Forwarded-Host", buf);
709         }
710
711         /* Add X-Forwarded-Server: so that upstream knows what the
712          * name of this proxy server is (if there are more than one)
713          * XXX: This duplicates Via: - do we strictly need it?
714          */
715         apr_table_mergen(r->headers_in, "X-Forwarded-Server",
716                          r->server->server_hostname);
717     }
718
719     proxy_run_fixups(r);
720     /*
721      * Make a copy of the headers_in table before clearing the connection
722      * headers as we need the connection headers later in the http output
723      * filter to prepare the correct response headers.
724      *
725      * Note: We need to take r->pool for apr_table_copy as the key / value
726      * pairs in r->headers_in have been created out of r->pool and
727      * p might be (and actually is) a longer living pool.
728      * This would trigger the bad pool ancestry abort in apr_table_copy if
729      * apr is compiled with APR_POOL_DEBUG.
730      */
731     headers_in_copy = apr_table_copy(r->pool, r->headers_in);
732     ap_proxy_clear_connection(p, headers_in_copy);
733     /* send request headers */
734     headers_in_array = apr_table_elts(headers_in_copy);
735     headers_in = (const apr_table_entry_t *) headers_in_array->elts;
736     for (counter = 0; counter < headers_in_array->nelts; counter++) {
737         if (headers_in[counter].key == NULL
738              || headers_in[counter].val == NULL
739
740             /* Already sent */
741              || !strcasecmp(headers_in[counter].key, "Host")
742
743             /* Clear out hop-by-hop request headers not to send
744              * RFC2616 13.5.1 says we should strip these headers
745              */
746              || !strcasecmp(headers_in[counter].key, "Keep-Alive")
747              || !strcasecmp(headers_in[counter].key, "TE")
748              || !strcasecmp(headers_in[counter].key, "Trailer")
749              || !strcasecmp(headers_in[counter].key, "Upgrade")
750
751             /* XXX: @@@ FIXME: "Proxy-Authorization" should *only* be
752              * suppressed if THIS server requested the authentication,
753              * not when a frontend proxy requested it!
754              *
755              * The solution to this problem is probably to strip out
756              * the Proxy-Authorisation header in the authorisation
757              * code itself, not here. This saves us having to signal
758              * somehow whether this request was authenticated or not.
759              */
760              || !strcasecmp(headers_in[counter].key,"Proxy-Authorization")
761              || !strcasecmp(headers_in[counter].key,"Proxy-Authenticate")) {
762             continue;
763         }
764
765         /* Skip Transfer-Encoding and Content-Length for now.
766          */
767         if (!strcasecmp(headers_in[counter].key, "Transfer-Encoding")) {
768             old_te_val = headers_in[counter].val;
769             continue;
770         }
771         if (!strcasecmp(headers_in[counter].key, "Content-Length")) {
772             old_cl_val = headers_in[counter].val;
773             continue;
774         }
775
776         /* for sub-requests, ignore freshness/expiry headers */
777         if (r->main) {
778             if (    !strcasecmp(headers_in[counter].key, "If-Match")
779                  || !strcasecmp(headers_in[counter].key, "If-Modified-Since")
780                  || !strcasecmp(headers_in[counter].key, "If-Range")
781                  || !strcasecmp(headers_in[counter].key, "If-Unmodified-Since")
782                  || !strcasecmp(headers_in[counter].key, "If-None-Match")) {
783                 continue;
784             }
785         }
786
787         buf = apr_pstrcat(p, headers_in[counter].key, ": ",
788                           headers_in[counter].val, CRLF,
789                           NULL);
790         ap_xlate_proto_to_ascii(buf, strlen(buf));
791         e = apr_bucket_pool_create(buf, strlen(buf), p, c->bucket_alloc);
792         APR_BRIGADE_INSERT_TAIL(header_brigade, e);
793     }
794
795     /* We have headers, let's figure out our request body... */
796     input_brigade = apr_brigade_create(p, bucket_alloc);
797
798     /* sub-requests never use keepalives, and mustn't pass request bodies.
799      * Because the new logic looks at input_brigade, we will self-terminate
800      * input_brigade and jump past all of the request body logic...
801      * Reading anything with ap_get_brigade is likely to consume the
802      * main request's body or read beyond EOS - which would be unplesant.
803      */
804     if (r->main) {
805         /* XXX: Why DON'T sub-requests use keepalives? */
806         p_conn->close++;
807         if (old_cl_val) {
808             old_cl_val = NULL;
809             apr_table_unset(r->headers_in, "Content-Length");
810         }
811         if (old_te_val) {
812             old_te_val = NULL;
813             apr_table_unset(r->headers_in, "Transfer-Encoding");
814         }
815         rb_method = RB_STREAM_CL;
816         e = apr_bucket_eos_create(input_brigade->bucket_alloc);
817         APR_BRIGADE_INSERT_TAIL(input_brigade, e);
818         goto skip_body;
819     }
820
821     /* WE only understand chunked.  Other modules might inject
822      * (and therefore, decode) other flavors but we don't know
823      * that the can and have done so unless they they remove
824      * their decoding from the headers_in T-E list.
825      * XXX: Make this extensible, but in doing so, presume the
826      * encoding has been done by the extensions' handler, and
827      * do not modify add_te_chunked's logic
828      */
829     if (old_te_val && strcmp(old_te_val, "chunked") != 0) {
830         ap_log_error(APLOG_MARK, APLOG_ERR, 0, r->server,
831                      "proxy: %s Transfer-Encoding is not supported",
832                      old_te_val);
833         return APR_EINVAL;
834     }
835
836     if (old_cl_val && old_te_val) {
837         ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_ENOTIMPL, r->server,
838                      "proxy: client %s (%s) requested Transfer-Encoding "
839                      "chunked body with Content-Length (C-L ignored)",
840                      c->remote_ip, c->remote_host ? c->remote_host: "");
841         apr_table_unset(r->headers_in, "Content-Length");
842         old_cl_val = NULL;
843         origin->keepalive = AP_CONN_CLOSE;
844         p_conn->close++;
845     }
846
847     /* Prefetch MAX_MEM_SPOOL bytes
848      *
849      * This helps us avoid any election of C-L v.s. T-E
850      * request bodies, since we are willing to keep in
851      * memory this much data, in any case.  This gives
852      * us an instant C-L election if the body is of some
853      * reasonable size.
854      */
855     temp_brigade = apr_brigade_create(p, bucket_alloc);
856     do {
857         status = ap_get_brigade(r->input_filters, temp_brigade,
858                                 AP_MODE_READBYTES, APR_BLOCK_READ,
859                                 MAX_MEM_SPOOL - bytes_read);
860         if (status != APR_SUCCESS) {
861             ap_log_error(APLOG_MARK, APLOG_ERR, status, r->server,
862                          "proxy: prefetch request body failed to %pI (%s)"
863                          " from %s (%s)",
864                          p_conn->addr, p_conn->hostname ? p_conn->hostname: "",
865                          c->remote_ip, c->remote_host ? c->remote_host: "");
866             return status;
867         }
868
869         apr_brigade_length(temp_brigade, 1, &bytes);
870         bytes_read += bytes;
871
872         /*
873          * Save temp_brigade in input_brigade. (At least) in the SSL case
874          * temp_brigade contains transient buckets whose data would get
875          * overwritten during the next call of ap_get_brigade in the loop.
876          * ap_save_brigade ensures these buckets to be set aside.
877          * Calling ap_save_brigade with NULL as filter is OK, because
878          * input_brigade already has been created and does not need to get
879          * created by ap_save_brigade.
880          */
881         status = ap_save_brigade(NULL, &input_brigade, &temp_brigade, p);
882         if (status != APR_SUCCESS) {
883             ap_log_error(APLOG_MARK, APLOG_ERR, status, r->server,
884                          "proxy: processing prefetched request body failed"
885                          " to %pI (%s) from %s (%s)",
886                          p_conn->addr, p_conn->hostname ? p_conn->hostname: "",
887                          c->remote_ip, c->remote_host ? c->remote_host: "");
888             return status;
889         }
890
891     /* Ensure we don't hit a wall where we have a buffer too small
892      * for ap_get_brigade's filters to fetch us another bucket,
893      * surrender once we hit 80 bytes less than MAX_MEM_SPOOL
894      * (an arbitrary value.)
895      */
896     } while ((bytes_read < MAX_MEM_SPOOL - 80)
897               && !APR_BUCKET_IS_EOS(APR_BRIGADE_LAST(input_brigade)));
898
899     /* Use chunked request body encoding or send a content-length body?
900      *
901      * Prefer C-L when:
902      *
903      *   We have no request body (handled by RB_STREAM_CL)
904      *
905      *   We have a request body length <= MAX_MEM_SPOOL
906      *
907      *   The administrator has setenv force-proxy-request-1.0
908      *
909      *   The client sent a C-L body, and the administrator has
910      *   not setenv proxy-sendchunked or has set setenv proxy-sendcl
911      *
912      *   The client sent a T-E body, and the administrator has
913      *   setenv proxy-sendcl, and not setenv proxy-sendchunked
914      *
915      * If both proxy-sendcl and proxy-sendchunked are set, the
916      * behavior is the same as if neither were set, large bodies
917      * that can't be read will be forwarded in their original
918      * form of C-L, or T-E.
919      *
920      * To ensure maximum compatibility, setenv proxy-sendcl
921      * To reduce server resource use,   setenv proxy-sendchunked
922      *
923      * Then address specific servers with conditional setenv
924      * options to restore the default behavior where desireable.
925      *
926      * We have to compute content length by reading the entire request
927      * body; if request body is not small, we'll spool the remaining
928      * input to a temporary file.  Chunked is always preferable.
929      *
930      * We can only trust the client-provided C-L if the T-E header
931      * is absent, and the filters are unchanged (the body won't
932      * be resized by another content filter).
933      */
934     if (APR_BUCKET_IS_EOS(APR_BRIGADE_LAST(input_brigade))) {
935         /* The whole thing fit, so our decision is trivial, use
936          * the filtered bytes read from the client for the request
937          * body Content-Length.
938          *
939          * If we expected no body, and read no body, do not set
940          * the Content-Length.
941          */
942         if (old_cl_val || old_te_val || bytes_read) {
943             old_cl_val = apr_off_t_toa(r->pool, bytes_read);
944         }
945         rb_method = RB_STREAM_CL;
946     }
947     else if (old_te_val) {
948         if (force10
949              || (apr_table_get(r->subprocess_env, "proxy-sendcl")
950                   && !apr_table_get(r->subprocess_env, "proxy-sendchunks"))) {
951             rb_method = RB_SPOOL_CL;
952         }
953         else {
954             rb_method = RB_STREAM_CHUNKED;
955         }
956     }
957     else if (old_cl_val) {
958         if (r->input_filters == r->proto_input_filters) {
959             rb_method = RB_STREAM_CL;
960         }
961         else if (!force10
962                   && apr_table_get(r->subprocess_env, "proxy-sendchunks")
963                   && !apr_table_get(r->subprocess_env, "proxy-sendcl")) {
964             rb_method = RB_STREAM_CHUNKED;
965         }
966         else {
967             rb_method = RB_SPOOL_CL;
968         }
969     }
970     else {
971         /* This is an appropriate default; very efficient for no-body
972          * requests, and has the behavior that it will not add any C-L
973          * when the old_cl_val is NULL.
974          */
975         rb_method = RB_SPOOL_CL;
976     }
977
978 /* Yes I hate gotos.  This is the subrequest shortcut */
979 skip_body:
980     /*
981      * Handle Connection: header if we do HTTP/1.1 request:
982      * If we plan to close the backend connection sent Connection: close
983      * otherwise sent Connection: Keep-Alive.
984      */
985     if (!force10) {
986         if (p_conn->close) {
987             buf = apr_pstrdup(p, "Connection: close" CRLF);
988         }
989         else {
990             buf = apr_pstrdup(p, "Connection: Keep-Alive" CRLF);
991         }
992         ap_xlate_proto_to_ascii(buf, strlen(buf));
993         e = apr_bucket_pool_create(buf, strlen(buf), p, c->bucket_alloc);
994         APR_BRIGADE_INSERT_TAIL(header_brigade, e);
995     }
996
997     /* send the request body, if any. */
998     switch(rb_method) {
999     case RB_STREAM_CHUNKED:
1000         status = stream_reqbody_chunked(p, r, p_conn, origin, header_brigade,
1001                                         input_brigade);
1002         break;
1003     case RB_STREAM_CL:
1004         status = stream_reqbody_cl(p, r, p_conn, origin, header_brigade,
1005                                    input_brigade, old_cl_val);
1006         break;
1007     case RB_SPOOL_CL:
1008         status = spool_reqbody_cl(p, r, p_conn, origin, header_brigade,
1009                                   input_brigade, (old_cl_val != NULL)
1010                                               || (old_te_val != NULL)
1011                                               || (bytes_read > 0));
1012         break;
1013     default:
1014         /* shouldn't be possible */
1015         status = APR_EINVAL;
1016         break;
1017     }
1018
1019     if (status != APR_SUCCESS) {
1020         ap_log_error(APLOG_MARK, APLOG_ERR, status, r->server,
1021                      "proxy: pass request body failed to %pI (%s)"
1022                      " from %s (%s)",
1023                      p_conn->addr,
1024                      p_conn->hostname ? p_conn->hostname: "",
1025                      c->remote_ip,
1026                      c->remote_host ? c->remote_host: "");
1027         return status;
1028     }
1029
1030     return APR_SUCCESS;
1031 }
1032
1033 static void process_proxy_header(request_rec* r, proxy_dir_conf* c,
1034                       const char* key, const char* value)
1035 {
1036     static const char* date_hdrs[]
1037         = { "Date", "Expires", "Last-Modified", NULL } ;
1038     static const struct {
1039         const char* name;
1040         ap_proxy_header_reverse_map_fn func;
1041     } transform_hdrs[] = {
1042         { "Location", ap_proxy_location_reverse_map } ,
1043         { "Content-Location", ap_proxy_location_reverse_map } ,
1044         { "URI", ap_proxy_location_reverse_map } ,
1045         { "Destination", ap_proxy_location_reverse_map } ,
1046         { "Set-Cookie", ap_proxy_cookie_reverse_map } ,
1047         { NULL, NULL }
1048     } ;
1049     int i ;
1050     for ( i = 0 ; date_hdrs[i] ; ++i ) {
1051         if ( !strcasecmp(date_hdrs[i], key) ) {
1052             apr_table_add(r->headers_out, key,
1053                 ap_proxy_date_canon(r->pool, value)) ;
1054             return ;
1055         }
1056     }
1057     for ( i = 0 ; transform_hdrs[i].name ; ++i ) {
1058         if ( !strcasecmp(transform_hdrs[i].name, key) ) {
1059             apr_table_add(r->headers_out, key,
1060                 (*transform_hdrs[i].func)(r, c, value)) ;
1061             return ;
1062        }
1063     }
1064     apr_table_add(r->headers_out, key, value) ;
1065     return ;
1066 }
1067
1068 /*
1069  * Note: pread_len is the length of the response that we've  mistakenly
1070  * read (assuming that we don't consider that an  error via
1071  * ProxyBadHeader StartBody). This depends on buffer actually being
1072  * local storage to the calling code in order for pread_len to make
1073  * any sense at all, since we depend on buffer still containing
1074  * what was read by ap_getline() upon return.
1075  */
1076 static void ap_proxy_read_headers(request_rec *r, request_rec *rr,
1077                                   char *buffer, int size,
1078                                   conn_rec *c, int *pread_len)
1079 {
1080     int len;
1081     char *value, *end;
1082     char field[MAX_STRING_LEN];
1083     int saw_headers = 0;
1084     void *sconf = r->server->module_config;
1085     proxy_server_conf *psc;
1086     proxy_dir_conf *dconf;
1087
1088     dconf = ap_get_module_config(r->per_dir_config, &proxy_module);
1089     psc = (proxy_server_conf *) ap_get_module_config(sconf, &proxy_module);
1090
1091     r->headers_out = apr_table_make(r->pool, 20);
1092     *pread_len = 0;
1093
1094     /*
1095      * Read header lines until we get the empty separator line, a read error,
1096      * the connection closes (EOF), or we timeout.
1097      */
1098     while ((len = ap_getline(buffer, size, rr, 1)) > 0) {
1099
1100         if (!(value = strchr(buffer, ':'))) {     /* Find the colon separator */
1101
1102             /* We may encounter invalid headers, usually from buggy
1103              * MS IIS servers, so we need to determine just how to handle
1104              * them. We can either ignore them, assume that they mark the
1105              * start-of-body (eg: a missing CRLF) or (the default) mark
1106              * the headers as totally bogus and return a 500. The sole
1107              * exception is an extra "HTTP/1.0 200, OK" line sprinkled
1108              * in between the usual MIME headers, which is a favorite
1109              * IIS bug.
1110              */
1111              /* XXX: The mask check is buggy if we ever see an HTTP/1.10 */
1112
1113             if (!apr_date_checkmask(buffer, "HTTP/#.# ###*")) {
1114                 if (psc->badopt == bad_error) {
1115                     /* Nope, it wasn't even an extra HTTP header. Give up. */
1116                     r->headers_out = NULL;
1117                     return ;
1118                 }
1119                 else if (psc->badopt == bad_body) {
1120                     /* if we've already started loading headers_out, then
1121                      * return what we've accumulated so far, in the hopes
1122                      * that they are useful; also note that we likely pre-read
1123                      * the first line of the response.
1124                      */
1125                     if (saw_headers) {
1126                         ap_log_error(APLOG_MARK, APLOG_WARNING, 0, r->server,
1127                          "proxy: Starting body due to bogus non-header in headers "
1128                          "returned by %s (%s)", r->uri, r->method);
1129                         *pread_len = len;
1130                         return ;
1131                     } else {
1132                          ap_log_error(APLOG_MARK, APLOG_WARNING, 0, r->server,
1133                          "proxy: No HTTP headers "
1134                          "returned by %s (%s)", r->uri, r->method);
1135                         return ;
1136                     }
1137                 }
1138             }
1139             /* this is the psc->badopt == bad_ignore case */
1140             ap_log_error(APLOG_MARK, APLOG_WARNING, 0, r->server,
1141                          "proxy: Ignoring bogus HTTP header "
1142                          "returned by %s (%s)", r->uri, r->method);
1143             continue;
1144         }
1145
1146         *value = '\0';
1147         ++value;
1148         /* XXX: RFC2068 defines only SP and HT as whitespace, this test is
1149          * wrong... and so are many others probably.
1150          */
1151         while (apr_isspace(*value))
1152             ++value;            /* Skip to start of value   */
1153
1154         /* should strip trailing whitespace as well */
1155         for (end = &value[strlen(value)-1]; end > value && apr_isspace(*end); --
1156 end)
1157             *end = '\0';
1158
1159         /* make sure we add so as not to destroy duplicated headers
1160          * Modify headers requiring canonicalisation and/or affected
1161          * by ProxyPassReverse and family with process_proxy_header
1162          */
1163         process_proxy_header(r, dconf, buffer, value) ;
1164         saw_headers = 1;
1165
1166         /* the header was too long; at the least we should skip extra data */
1167         if (len >= size - 1) {
1168             while ((len = ap_getline(field, MAX_STRING_LEN, rr, 1))
1169                     >= MAX_STRING_LEN - 1) {
1170                 /* soak up the extra data */
1171             }
1172             if (len == 0) /* time to exit the larger loop as well */
1173                 break;
1174         }
1175     }
1176 }
1177
1178
1179
1180 static int addit_dammit(void *v, const char *key, const char *val)
1181 {
1182     apr_table_addn(v, key, val);
1183     return 1;
1184 }
1185
1186 static
1187 apr_status_t ap_proxygetline(apr_bucket_brigade *bb, char *s, int n, request_rec *r,
1188                              int fold, int *writen)
1189 {
1190     char *tmp_s = s;
1191     apr_status_t rv;
1192     apr_size_t len;
1193
1194     rv = ap_rgetline(&tmp_s, n, &len, r, fold, bb);
1195     apr_brigade_cleanup(bb);
1196
1197     if (rv == APR_SUCCESS) {
1198         *writen = (int) len;
1199     } else if (rv == APR_ENOSPC) {
1200         *writen = n;
1201     } else {
1202         *writen = -1;
1203     }
1204
1205     return rv;
1206 }
1207
1208 static
1209 apr_status_t ap_proxy_http_process_response(apr_pool_t * p, request_rec *r,
1210                                             proxy_conn_rec *backend,
1211                                             conn_rec *origin,
1212                                             proxy_server_conf *conf,
1213                                             char *server_portstr) {
1214     conn_rec *c = r->connection;
1215     char buffer[HUGE_STRING_LEN];
1216     const char *buf;
1217     char keepchar;
1218     request_rec *rp;
1219     apr_bucket *e;
1220     apr_bucket_brigade *bb, *tmp_bb;
1221     int len, backasswards;
1222     int interim_response; /* non-zero whilst interim 1xx responses
1223                            * are being read. */
1224     int pread_len = 0;
1225     apr_table_t *save_table;
1226     int backend_broke = 0;
1227
1228     bb = apr_brigade_create(p, c->bucket_alloc);
1229
1230     /* Get response from the remote server, and pass it up the
1231      * filter chain
1232      */
1233
1234     rp = ap_proxy_make_fake_req(origin, r);
1235     /* In case anyone needs to know, this is a fake request that is really a
1236      * response.
1237      */
1238     rp->proxyreq = PROXYREQ_RESPONSE;
1239     tmp_bb = apr_brigade_create(p, c->bucket_alloc);
1240     do {
1241         apr_status_t rc;
1242
1243         apr_brigade_cleanup(bb);
1244
1245         rc = ap_proxygetline(tmp_bb, buffer, sizeof(buffer), rp, 0, &len);
1246         if (len == 0) {
1247             /* handle one potential stray CRLF */
1248             rc = ap_proxygetline(tmp_bb, buffer, sizeof(buffer), rp, 0, &len);
1249         }
1250         if (len <= 0) {
1251             ap_log_rerror(APLOG_MARK, APLOG_ERR, rc, r,
1252                           "proxy: error reading status line from remote "
1253                           "server %s", backend->hostname);
1254             return ap_proxyerror(r, HTTP_BAD_GATEWAY,
1255                                  "Error reading from remote server");
1256         }
1257         /* XXX: Is this a real headers length send from remote? */
1258         backend->worker->s->read += len;
1259
1260         /* Is it an HTTP/1 response?
1261          * This is buggy if we ever see an HTTP/1.10
1262          */
1263         if (apr_date_checkmask(buffer, "HTTP/#.# ###*")) {
1264             int major, minor;
1265
1266             if (2 != sscanf(buffer, "HTTP/%u.%u", &major, &minor)) {
1267                 major = 1;
1268                 minor = 1;
1269             }
1270             /* If not an HTTP/1 message or
1271              * if the status line was > 8192 bytes
1272              */
1273             else if ((buffer[5] != '1') || (len >= sizeof(buffer)-1)) {
1274                 return ap_proxyerror(r, HTTP_BAD_GATEWAY,
1275                 apr_pstrcat(p, "Corrupt status line returned by remote "
1276                             "server: ", buffer, NULL));
1277             }
1278             backasswards = 0;
1279
1280             keepchar = buffer[12];
1281             buffer[12] = '\0';
1282             r->status = atoi(&buffer[9]);
1283
1284             if (keepchar != '\0') {
1285                 buffer[12] = keepchar;
1286             } else {
1287                 /* 2616 requires the space in Status-Line; the origin
1288                  * server may have sent one but ap_rgetline_core will
1289                  * have stripped it. */
1290                 buffer[12] = ' ';
1291                 buffer[13] = '\0';
1292             }
1293             r->status_line = apr_pstrdup(p, &buffer[9]);
1294
1295
1296             /* read the headers. */
1297             /* N.B. for HTTP/1.0 clients, we have to fold line-wrapped headers*/
1298             /* Also, take care with headers with multiple occurences. */
1299
1300             /* First, tuck away all already existing cookies */
1301             save_table = apr_table_make(r->pool, 2);
1302             apr_table_do(addit_dammit, save_table, r->headers_out,
1303                          "Set-Cookie", NULL);
1304
1305             /* shove the headers direct into r->headers_out */
1306             ap_proxy_read_headers(r, rp, buffer, sizeof(buffer), origin,
1307                                   &pread_len);
1308
1309             if (r->headers_out == NULL) {
1310                 ap_log_error(APLOG_MARK, APLOG_WARNING, 0,
1311                              r->server, "proxy: bad HTTP/%d.%d header "
1312                              "returned by %s (%s)", major, minor, r->uri,
1313                              r->method);
1314                 backend->close += 1;
1315                 /*
1316                  * ap_send_error relies on a headers_out to be present. we
1317                  * are in a bad position here.. so force everything we send out
1318                  * to have nothing to do with the incoming packet
1319                  */
1320                 r->headers_out = apr_table_make(r->pool,1);
1321                 r->status = HTTP_BAD_GATEWAY;
1322                 r->status_line = "bad gateway";
1323                 return r->status;
1324             }
1325
1326             /* Now, add in the just read cookies */
1327             apr_table_do(addit_dammit, save_table, r->headers_out,
1328                          "Set-Cookie", NULL);
1329
1330             /* and now load 'em all in */
1331             if (!apr_is_empty_table(save_table)) {
1332                 apr_table_unset(r->headers_out, "Set-Cookie");
1333                 r->headers_out = apr_table_overlay(r->pool,
1334                                                    r->headers_out,
1335                                                    save_table);
1336             }
1337
1338             /* can't have both Content-Length and Transfer-Encoding */
1339             if (apr_table_get(r->headers_out, "Transfer-Encoding")
1340                     && apr_table_get(r->headers_out, "Content-Length")) {
1341                 /*
1342                  * 2616 section 4.4, point 3: "if both Transfer-Encoding
1343                  * and Content-Length are received, the latter MUST be
1344                  * ignored";
1345                  *
1346                  * To help mitigate HTTP Splitting, unset Content-Length
1347                  * and shut down the backend server connection
1348                  * XXX: We aught to treat such a response as uncachable
1349                  */
1350                 apr_table_unset(r->headers_out, "Content-Length");
1351                 ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server,
1352                              "proxy: server %s returned Transfer-Encoding"
1353                              " and Content-Length", backend->hostname);
1354                 backend->close += 1;
1355             }
1356
1357             /* strip connection listed hop-by-hop headers from response */
1358             backend->close += ap_proxy_liststr(apr_table_get(r->headers_out,
1359                                                              "Connection"),
1360                                               "close");
1361             ap_proxy_clear_connection(p, r->headers_out);
1362             if ((buf = apr_table_get(r->headers_out, "Content-Type"))) {
1363                 ap_set_content_type(r, apr_pstrdup(p, buf));
1364             }
1365             ap_proxy_pre_http_request(origin,rp);
1366
1367             /* handle Via header in response */
1368             if (conf->viaopt != via_off && conf->viaopt != via_block) {
1369                 const char *server_name = ap_get_server_name(r);
1370                 /* If USE_CANONICAL_NAME_OFF was configured for the proxy virtual host,
1371                  * then the server name returned by ap_get_server_name() is the
1372                  * origin server name (which does make too much sense with Via: headers)
1373                  * so we use the proxy vhost's name instead.
1374                  */
1375                 if (server_name == r->hostname)
1376                     server_name = r->server->server_hostname;
1377                 /* create a "Via:" response header entry and merge it */
1378                 apr_table_mergen(r->headers_out, "Via",
1379                                  (conf->viaopt == via_full)
1380                                      ? apr_psprintf(p, "%d.%d %s%s (%s)",
1381                                            HTTP_VERSION_MAJOR(r->proto_num),
1382                                            HTTP_VERSION_MINOR(r->proto_num),
1383                                            server_name,
1384                                            server_portstr,
1385                                            AP_SERVER_BASEVERSION)
1386                                      : apr_psprintf(p, "%d.%d %s%s",
1387                                            HTTP_VERSION_MAJOR(r->proto_num),
1388                                            HTTP_VERSION_MINOR(r->proto_num),
1389                                            server_name,
1390                                            server_portstr)
1391                 );
1392             }
1393
1394             /* cancel keepalive if HTTP/1.0 or less */
1395             if ((major < 1) || (minor < 1)) {
1396                 backend->close += 1;
1397                 origin->keepalive = AP_CONN_CLOSE;
1398             }
1399         } else {
1400             /* an http/0.9 response */
1401             backasswards = 1;
1402             r->status = 200;
1403             r->status_line = "200 OK";
1404             backend->close += 1;
1405         }
1406
1407         interim_response = ap_is_HTTP_INFO(r->status);
1408         if (interim_response) {
1409             ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, NULL,
1410                          "proxy: HTTP: received interim %d response",
1411                          r->status);
1412         }
1413         /* Moved the fixups of Date headers and those affected by
1414          * ProxyPassReverse/etc from here to ap_proxy_read_headers
1415          */
1416
1417         if ((r->status == 401) && (conf->error_override)) {
1418             const char *buf;
1419             const char *wa = "WWW-Authenticate";
1420             if ((buf = apr_table_get(r->headers_out, wa))) {
1421                 apr_table_set(r->err_headers_out, wa, buf);
1422             } else {
1423                 ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server,
1424                              "proxy: origin server sent 401 without WWW-Authenticate header");
1425             }
1426         }
1427
1428         r->sent_bodyct = 1;
1429         /*
1430          * Is it an HTTP/0.9 response or did we maybe preread the 1st line of
1431          * the response? If so, load the extra data. These are 2 mutually
1432          * exclusive possibilities, that just happen to require very
1433          * similar behavior.
1434          */
1435         if (backasswards || pread_len) {
1436             apr_ssize_t cntr = (apr_ssize_t)pread_len;
1437             if (backasswards) {
1438                 /*@@@FIXME:
1439                  * At this point in response processing of a 0.9 response,
1440                  * we don't know yet whether data is binary or not.
1441                  * mod_charset_lite will get control later on, so it cannot
1442                  * decide on the conversion of this buffer full of data.
1443                  * However, chances are that we are not really talking to an
1444                  * HTTP/0.9 server, but to some different protocol, therefore
1445                  * the best guess IMHO is to always treat the buffer as "text/x":
1446                  */
1447                 ap_xlate_proto_to_ascii(buffer, len);
1448                 cntr = (apr_ssize_t)len;
1449             }
1450             e = apr_bucket_heap_create(buffer, cntr, NULL, c->bucket_alloc);
1451             APR_BRIGADE_INSERT_TAIL(bb, e);
1452         }
1453
1454         /* send body - but only if a body is expected */
1455         if ((!r->header_only) &&                   /* not HEAD request */
1456             !interim_response &&                   /* not any 1xx response */
1457             (r->status != HTTP_NO_CONTENT) &&      /* not 204 */
1458             (r->status != HTTP_NOT_MODIFIED)) {    /* not 304 */
1459
1460             /* We need to copy the output headers and treat them as input
1461              * headers as well.  BUT, we need to do this before we remove
1462              * TE, so that they are preserved accordingly for
1463              * ap_http_filter to know where to end.
1464              */
1465             rp->headers_in = apr_table_copy(r->pool, r->headers_out);
1466
1467             apr_table_unset(r->headers_out,"Transfer-Encoding");
1468
1469             ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server,
1470                          "proxy: start body send");
1471
1472             /*
1473              * if we are overriding the errors, we can't put the content
1474              * of the page into the brigade
1475              */
1476             if (!conf->error_override || !ap_is_HTTP_ERROR(r->status)) {
1477                 /* read the body, pass it to the output filters */
1478                 apr_read_type_e mode = APR_NONBLOCK_READ;
1479                 int finish = FALSE;
1480
1481                 do {
1482                     apr_off_t readbytes;
1483                     apr_status_t rv;
1484
1485                     rv = ap_get_brigade(rp->input_filters, bb,
1486                                         AP_MODE_READBYTES, mode,
1487                                         conf->io_buffer_size);
1488
1489                     /* ap_get_brigade will return success with an empty brigade
1490                      * for a non-blocking read which would block: */
1491                     if (APR_STATUS_IS_EAGAIN(rv)
1492                         || (rv == APR_SUCCESS && APR_BRIGADE_EMPTY(bb))) {
1493                         /* flush to the client and switch to blocking mode */
1494                         e = apr_bucket_flush_create(c->bucket_alloc);
1495                         APR_BRIGADE_INSERT_TAIL(bb, e);
1496                         if (ap_pass_brigade(r->output_filters, bb)
1497                             || c->aborted) {
1498                             backend->close = 1;
1499                             break;
1500                         }
1501                         apr_brigade_cleanup(bb);
1502                         mode = APR_BLOCK_READ;
1503                         continue;
1504                     }
1505                     else if (rv == APR_EOF) {
1506                         break;
1507                     }
1508                     else if (rv != APR_SUCCESS) {
1509                         /* In this case, we are in real trouble because
1510                          * our backend bailed on us. Pass along a 502 error
1511                          * error bucket
1512                          */
1513                         ap_log_cerror(APLOG_MARK, APLOG_ERR, rv, c,
1514                                       "proxy: error reading response");
1515                         ap_proxy_backend_broke(r, bb);
1516                         ap_pass_brigade(r->output_filters, bb);
1517                         backend_broke = 1;
1518                         backend->close = 1;
1519                         break;
1520                     }
1521                     /* next time try a non-blocking read */
1522                     mode = APR_NONBLOCK_READ;
1523
1524                     apr_brigade_length(bb, 0, &readbytes);
1525                     backend->worker->s->read += readbytes;
1526 #if DEBUGGING
1527                     {
1528                     ap_log_error(APLOG_MARK, APLOG_DEBUG, 0,
1529                                  r->server, "proxy (PID %d): readbytes: %#x",
1530                                  getpid(), readbytes);
1531                     }
1532 #endif
1533                     /* sanity check */
1534                     if (APR_BRIGADE_EMPTY(bb)) {
1535                         apr_brigade_cleanup(bb);
1536                         break;
1537                     }
1538
1539                     /* found the last brigade? */
1540                     if (APR_BUCKET_IS_EOS(APR_BRIGADE_LAST(bb))) {
1541                         /* signal that we must leave */
1542                         finish = TRUE;
1543                     }
1544
1545                     /* try send what we read */
1546                     if (ap_pass_brigade(r->output_filters, bb) != APR_SUCCESS
1547                         || c->aborted) {
1548                         /* Ack! Phbtt! Die! User aborted! */
1549                         backend->close = 1;  /* this causes socket close below */
1550                         finish = TRUE;
1551                     }
1552
1553                     /* make sure we always clean up after ourselves */
1554                     apr_brigade_cleanup(bb);
1555
1556                 } while (!finish);
1557             }
1558             ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server,
1559                          "proxy: end body send");
1560         }
1561         else if (!interim_response) {
1562             ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server,
1563                          "proxy: header only");
1564
1565             /* Pass EOS bucket down the filter chain. */
1566             e = apr_bucket_eos_create(c->bucket_alloc);
1567             APR_BRIGADE_INSERT_TAIL(bb, e);
1568             if (ap_pass_brigade(r->output_filters, bb) != APR_SUCCESS
1569                 || c->aborted) {
1570                 /* Ack! Phbtt! Die! User aborted! */
1571                 backend->close = 1;  /* this causes socket close below */
1572             }
1573
1574             apr_brigade_cleanup(bb);
1575         }
1576     } while (interim_response);
1577
1578     /* If our connection with the client is to be aborted, return DONE. */
1579     if (c->aborted || backend_broke) {
1580         return DONE;
1581     }
1582
1583     if (conf->error_override) {
1584         /* the code above this checks for 'OK' which is what the hook expects */
1585         if (!ap_is_HTTP_ERROR(r->status))
1586             return OK;
1587         else {
1588             /* clear r->status for override error, otherwise ErrorDocument
1589              * thinks that this is a recursive error, and doesn't find the
1590              * custom error page
1591              */
1592             int status = r->status;
1593             r->status = HTTP_OK;
1594             /* Discard body, if one is expected */
1595             if ((status != HTTP_NO_CONTENT) && /* not 204 */
1596                 (status != HTTP_NOT_MODIFIED)) { /* not 304 */
1597                ap_discard_request_body(rp);
1598            }
1599             return status;
1600         }
1601     } else
1602         return OK;
1603 }
1604
1605 static
1606 apr_status_t ap_proxy_http_cleanup(const char *scheme, request_rec *r,
1607                                    proxy_conn_rec *backend)
1608 {
1609     ap_proxy_release_connection(scheme, backend, r->server);
1610     return OK;
1611 }
1612
1613 /*
1614  * This handles http:// URLs, and other URLs using a remote proxy over http
1615  * If proxyhost is NULL, then contact the server directly, otherwise
1616  * go via the proxy.
1617  * Note that if a proxy is used, then URLs other than http: can be accessed,
1618  * also, if we have trouble which is clearly specific to the proxy, then
1619  * we return DECLINED so that we can try another proxy. (Or the direct
1620  * route.)
1621  */
1622 static int proxy_http_handler(request_rec *r, proxy_worker *worker,
1623                               proxy_server_conf *conf,
1624                               char *url, const char *proxyname,
1625                               apr_port_t proxyport)
1626 {
1627     int status;
1628     char server_portstr[32];
1629     char *scheme;
1630     const char *proxy_function;
1631     const char *u;
1632     proxy_conn_rec *backend = NULL;
1633     int is_ssl = 0;
1634
1635     /* Note: Memory pool allocation.
1636      * A downstream keepalive connection is always connected to the existence
1637      * (or not) of an upstream keepalive connection. If this is not done then
1638      * load balancing against multiple backend servers breaks (one backend
1639      * server ends up taking 100% of the load), and the risk is run of
1640      * downstream keepalive connections being kept open unnecessarily. This
1641      * keeps webservers busy and ties up resources.
1642      *
1643      * As a result, we allocate all sockets out of the upstream connection
1644      * pool, and when we want to reuse a socket, we check first whether the
1645      * connection ID of the current upstream connection is the same as that
1646      * of the connection when the socket was opened.
1647      */
1648     apr_pool_t *p = r->connection->pool;
1649     conn_rec *c = r->connection;
1650     apr_uri_t *uri = apr_palloc(r->connection->pool, sizeof(*uri));
1651
1652     /* find the scheme */
1653     u = strchr(url, ':');
1654     if (u == NULL || u[1] != '/' || u[2] != '/' || u[3] == '\0')
1655        return DECLINED;
1656     if ((u - url) > 14)
1657         return HTTP_BAD_REQUEST;
1658     scheme = apr_pstrndup(c->pool, url, u - url);
1659     /* scheme is lowercase */
1660     ap_str_tolower(scheme);
1661     /* is it for us? */
1662     if (strcmp(scheme, "https") == 0) {
1663         if (!ap_proxy_ssl_enable(NULL)) {
1664             ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server,
1665                          "proxy: HTTPS: declining URL %s"
1666                          " (mod_ssl not configured?)", url);
1667             return DECLINED;
1668         }
1669         is_ssl = 1;
1670         proxy_function = "HTTPS";
1671     }
1672     else if (!(strcmp(scheme, "http") == 0 || (strcmp(scheme, "ftp") == 0 && proxyname))) {
1673         ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server,
1674                      "proxy: HTTP: declining URL %s", url);
1675         return DECLINED; /* only interested in HTTP, or FTP via proxy */
1676     }
1677     else {
1678         if (*scheme == 'h')
1679             proxy_function = "HTTP";
1680         else
1681             proxy_function = "FTP";
1682     }
1683     ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server,
1684              "proxy: HTTP: serving URL %s", url);
1685
1686
1687     /* create space for state information */
1688     if ((status = ap_proxy_acquire_connection(proxy_function, &backend,
1689                                               worker, r->server)) != OK)
1690         goto cleanup;
1691
1692
1693     backend->is_ssl = is_ssl;
1694     /*
1695      * TODO: Currently we cannot handle persistent SSL backend connections,
1696      * because we recreate backend->connection for each request and thus
1697      * try to initialize an already existing SSL connection. This does
1698      * not work.
1699      */
1700     if (is_ssl)
1701         backend->close = 1;
1702
1703     /* Step One: Determine Who To Connect To */
1704     if ((status = ap_proxy_determine_connection(p, r, conf, worker, backend,
1705                                                 uri, &url, proxyname,
1706                                                 proxyport, server_portstr,
1707                                                 sizeof(server_portstr))) != OK)
1708         goto cleanup;
1709
1710     /* Step Two: Make the Connection */
1711     if (ap_proxy_connect_backend(proxy_function, backend, worker, r->server)) {
1712         if (r->proxyreq == PROXYREQ_PROXY)
1713             status = HTTP_NOT_FOUND;
1714         else
1715             status = HTTP_SERVICE_UNAVAILABLE;
1716         goto cleanup;
1717     }
1718
1719     /* Step Three: Create conn_rec */
1720     if (!backend->connection) {
1721         if ((status = ap_proxy_connection_create(proxy_function, backend,
1722                                                  c, r->server)) != OK)
1723             goto cleanup;
1724     }
1725
1726     /* Step Four: Send the Request */
1727     if ((status = ap_proxy_http_request(p, r, backend, backend->connection,
1728                                         conf, uri, url, server_portstr)) != OK)
1729         goto cleanup;
1730
1731     /* Step Five: Receive the Response */
1732     if ((status = ap_proxy_http_process_response(p, r, backend,
1733                                                  backend->connection,
1734                                                  conf, server_portstr)) != OK)
1735         goto cleanup;
1736
1737     /* Step Six: Clean Up */
1738
1739 cleanup:
1740     if (backend) {
1741         if (status != OK)
1742             backend->close = 1;
1743         ap_proxy_http_cleanup(proxy_function, r, backend);
1744     }
1745     return status;
1746 }
1747
1748 static void ap_proxy_http_register_hook(apr_pool_t *p)
1749 {
1750     proxy_hook_scheme_handler(proxy_http_handler, NULL, NULL, APR_HOOK_FIRST);
1751     proxy_hook_canon_handler(proxy_http_canon, NULL, NULL, APR_HOOK_FIRST);
1752 }
1753
1754 module AP_MODULE_DECLARE_DATA proxy_http_module = {
1755     STANDARD20_MODULE_STUFF,
1756     NULL,              /* create per-directory config structure */
1757     NULL,              /* merge per-directory config structures */
1758     NULL,              /* create per-server config structure */
1759     NULL,              /* merge per-server config structures */
1760     NULL,              /* command apr_table_t */
1761     ap_proxy_http_register_hook/* register hooks */
1762 };
1763