]> granicus.if.org Git - apache/blob - modules/proxy/mod_proxy_http.c
Improve traces in ap_proxy_http_process_response().
[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(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     apr_bucket_brigade *tmp_bb;
1194
1195     tmp_bb = apr_brigade_create(r->pool, r->connection->bucket_alloc);
1196     rv = ap_rgetline(&tmp_s, n, &len, r, fold, tmp_bb);
1197     apr_brigade_destroy(tmp_bb);
1198
1199     if (rv == APR_SUCCESS) {
1200         *writen = (int) len;
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;
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     do {
1240         apr_status_t rc;
1241
1242         apr_brigade_cleanup(bb);
1243
1244         rc = ap_proxygetline(buffer, sizeof(buffer), rp, 0, &len);
1245         if (len == 0) {
1246             /* handle one potential stray CRLF */
1247             rc = ap_proxygetline(buffer, sizeof(buffer), rp, 0, &len);
1248         }
1249         if (len <= 0) {
1250             ap_log_rerror(APLOG_MARK, APLOG_ERR, rc, r,
1251                           "proxy: error reading status line from remote "
1252                           "server %s", backend->hostname);
1253             return ap_proxyerror(r, HTTP_BAD_GATEWAY,
1254                                  "Error reading from remote server");
1255         }
1256         /* XXX: Is this a real headers length send from remote? */
1257         backend->worker->s->read += len;
1258
1259         /* Is it an HTTP/1 response?
1260          * This is buggy if we ever see an HTTP/1.10
1261          */
1262         if (apr_date_checkmask(buffer, "HTTP/#.# ###*")) {
1263             int major, minor;
1264
1265             if (2 != sscanf(buffer, "HTTP/%u.%u", &major, &minor)) {
1266                 major = 1;
1267                 minor = 1;
1268             }
1269             /* If not an HTTP/1 message or
1270              * if the status line was > 8192 bytes
1271              */
1272             else if ((buffer[5] != '1') || (len >= sizeof(buffer)-1)) {
1273                 return ap_proxyerror(r, HTTP_BAD_GATEWAY,
1274                 apr_pstrcat(p, "Corrupt status line returned by remote "
1275                             "server: ", buffer, NULL));
1276             }
1277             backasswards = 0;
1278
1279             keepchar = buffer[12];
1280             buffer[12] = '\0';
1281             r->status = atoi(&buffer[9]);
1282
1283             if (keepchar != '\0') {
1284                 buffer[12] = keepchar;
1285             } else {
1286                 /* 2616 requires the space in Status-Line; the origin
1287                  * server may have sent one but ap_rgetline_core will
1288                  * have stripped it. */
1289                 buffer[12] = ' ';
1290                 buffer[13] = '\0';
1291             }
1292             r->status_line = apr_pstrdup(p, &buffer[9]);
1293
1294
1295             /* read the headers. */
1296             /* N.B. for HTTP/1.0 clients, we have to fold line-wrapped headers*/
1297             /* Also, take care with headers with multiple occurences. */
1298
1299             /* First, tuck away all already existing cookies */
1300             save_table = apr_table_make(r->pool, 2);
1301             apr_table_do(addit_dammit, save_table, r->headers_out,
1302                          "Set-Cookie", NULL);
1303
1304             /* shove the headers direct into r->headers_out */
1305             ap_proxy_read_headers(r, rp, buffer, sizeof(buffer), origin,
1306                                   &pread_len);
1307
1308             if (r->headers_out == NULL) {
1309                 ap_log_error(APLOG_MARK, APLOG_WARNING, 0,
1310                              r->server, "proxy: bad HTTP/%d.%d header "
1311                              "returned by %s (%s)", major, minor, r->uri,
1312                              r->method);
1313                 backend->close += 1;
1314                 /*
1315                  * ap_send_error relies on a headers_out to be present. we
1316                  * are in a bad position here.. so force everything we send out
1317                  * to have nothing to do with the incoming packet
1318                  */
1319                 r->headers_out = apr_table_make(r->pool,1);
1320                 r->status = HTTP_BAD_GATEWAY;
1321                 r->status_line = "bad gateway";
1322                 return r->status;
1323             }
1324
1325             /* Now, add in the just read cookies */
1326             apr_table_do(addit_dammit, save_table, r->headers_out,
1327                          "Set-Cookie", NULL);
1328
1329             /* and now load 'em all in */
1330             if (!apr_is_empty_table(save_table)) {
1331                 apr_table_unset(r->headers_out, "Set-Cookie");
1332                 r->headers_out = apr_table_overlay(r->pool,
1333                                                    r->headers_out,
1334                                                    save_table);
1335             }
1336
1337             /* can't have both Content-Length and Transfer-Encoding */
1338             if (apr_table_get(r->headers_out, "Transfer-Encoding")
1339                     && apr_table_get(r->headers_out, "Content-Length")) {
1340                 /*
1341                  * 2616 section 4.4, point 3: "if both Transfer-Encoding
1342                  * and Content-Length are received, the latter MUST be
1343                  * ignored";
1344                  *
1345                  * To help mitigate HTTP Splitting, unset Content-Length
1346                  * and shut down the backend server connection
1347                  * XXX: We aught to treat such a response as uncachable
1348                  */
1349                 apr_table_unset(r->headers_out, "Content-Length");
1350                 ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server,
1351                              "proxy: server %s returned Transfer-Encoding"
1352                              " and Content-Length", backend->hostname);
1353                 backend->close += 1;
1354             }
1355
1356             /* strip connection listed hop-by-hop headers from response */
1357             backend->close += ap_proxy_liststr(apr_table_get(r->headers_out,
1358                                                              "Connection"),
1359                                               "close");
1360             ap_proxy_clear_connection(p, r->headers_out);
1361             if ((buf = apr_table_get(r->headers_out, "Content-Type"))) {
1362                 ap_set_content_type(r, apr_pstrdup(p, buf));
1363             }
1364             ap_proxy_pre_http_request(origin,rp);
1365
1366             /* handle Via header in response */
1367             if (conf->viaopt != via_off && conf->viaopt != via_block) {
1368                 const char *server_name = ap_get_server_name(r);
1369                 /* If USE_CANONICAL_NAME_OFF was configured for the proxy virtual host,
1370                  * then the server name returned by ap_get_server_name() is the
1371                  * origin server name (which does make too much sense with Via: headers)
1372                  * so we use the proxy vhost's name instead.
1373                  */
1374                 if (server_name == r->hostname)
1375                     server_name = r->server->server_hostname;
1376                 /* create a "Via:" response header entry and merge it */
1377                 apr_table_mergen(r->headers_out, "Via",
1378                                  (conf->viaopt == via_full)
1379                                      ? apr_psprintf(p, "%d.%d %s%s (%s)",
1380                                            HTTP_VERSION_MAJOR(r->proto_num),
1381                                            HTTP_VERSION_MINOR(r->proto_num),
1382                                            server_name,
1383                                            server_portstr,
1384                                            AP_SERVER_BASEVERSION)
1385                                      : apr_psprintf(p, "%d.%d %s%s",
1386                                            HTTP_VERSION_MAJOR(r->proto_num),
1387                                            HTTP_VERSION_MINOR(r->proto_num),
1388                                            server_name,
1389                                            server_portstr)
1390                 );
1391             }
1392
1393             /* cancel keepalive if HTTP/1.0 or less */
1394             if ((major < 1) || (minor < 1)) {
1395                 backend->close += 1;
1396                 origin->keepalive = AP_CONN_CLOSE;
1397             }
1398         } else {
1399             /* an http/0.9 response */
1400             backasswards = 1;
1401             r->status = 200;
1402             r->status_line = "200 OK";
1403             backend->close += 1;
1404         }
1405
1406         interim_response = ap_is_HTTP_INFO(r->status);
1407         if (interim_response) {
1408             ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, NULL,
1409                          "proxy: HTTP: received interim %d response",
1410                          r->status);
1411         }
1412         /* Moved the fixups of Date headers and those affected by
1413          * ProxyPassReverse/etc from here to ap_proxy_read_headers
1414          */
1415
1416         if ((r->status == 401) && (conf->error_override)) {
1417             const char *buf;
1418             const char *wa = "WWW-Authenticate";
1419             if ((buf = apr_table_get(r->headers_out, wa))) {
1420                 apr_table_set(r->err_headers_out, wa, buf);
1421             } else {
1422                 ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server,
1423                              "proxy: origin server sent 401 without WWW-Authenticate header");
1424             }
1425         }
1426
1427         r->sent_bodyct = 1;
1428         /*
1429          * Is it an HTTP/0.9 response or did we maybe preread the 1st line of
1430          * the response? If so, load the extra data. These are 2 mutually
1431          * exclusive possibilities, that just happen to require very
1432          * similar behavior.
1433          */
1434         if (backasswards || pread_len) {
1435             apr_ssize_t cntr = (apr_ssize_t)pread_len;
1436             if (backasswards) {
1437                 /*@@@FIXME:
1438                  * At this point in response processing of a 0.9 response,
1439                  * we don't know yet whether data is binary or not.
1440                  * mod_charset_lite will get control later on, so it cannot
1441                  * decide on the conversion of this buffer full of data.
1442                  * However, chances are that we are not really talking to an
1443                  * HTTP/0.9 server, but to some different protocol, therefore
1444                  * the best guess IMHO is to always treat the buffer as "text/x":
1445                  */
1446                 ap_xlate_proto_to_ascii(buffer, len);
1447                 cntr = (apr_ssize_t)len;
1448             }
1449             e = apr_bucket_heap_create(buffer, cntr, NULL, c->bucket_alloc);
1450             APR_BRIGADE_INSERT_TAIL(bb, e);
1451         }
1452
1453         /* send body - but only if a body is expected */
1454         if ((!r->header_only) &&                   /* not HEAD request */
1455             !interim_response &&                   /* not any 1xx response */
1456             (r->status != HTTP_NO_CONTENT) &&      /* not 204 */
1457             (r->status != HTTP_NOT_MODIFIED)) {    /* not 304 */
1458
1459             /* We need to copy the output headers and treat them as input
1460              * headers as well.  BUT, we need to do this before we remove
1461              * TE, so that they are preserved accordingly for
1462              * ap_http_filter to know where to end.
1463              */
1464             rp->headers_in = apr_table_copy(r->pool, r->headers_out);
1465
1466             apr_table_unset(r->headers_out,"Transfer-Encoding");
1467
1468             ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server,
1469                          "proxy: start body send");
1470
1471             /*
1472              * if we are overriding the errors, we can't put the content
1473              * of the page into the brigade
1474              */
1475             if (!conf->error_override || !ap_is_HTTP_ERROR(r->status)) {
1476                 /* read the body, pass it to the output filters */
1477                 apr_read_type_e mode = APR_NONBLOCK_READ;
1478                 int finish = FALSE;
1479
1480                 do {
1481                     apr_off_t readbytes;
1482                     apr_status_t rv;
1483
1484                     rv = ap_get_brigade(rp->input_filters, bb,
1485                                         AP_MODE_READBYTES, mode,
1486                                         conf->io_buffer_size);
1487
1488                     /* ap_get_brigade will return success with an empty brigade
1489                      * for a non-blocking read which would block: */
1490                     if (APR_STATUS_IS_EAGAIN(rv)
1491                         || (rv == APR_SUCCESS && APR_BRIGADE_EMPTY(bb))) {
1492                         /* flush to the client and switch to blocking mode */
1493                         e = apr_bucket_flush_create(c->bucket_alloc);
1494                         APR_BRIGADE_INSERT_TAIL(bb, e);
1495                         if (ap_pass_brigade(r->output_filters, bb)
1496                             || c->aborted) {
1497                             backend->close = 1;
1498                             break;
1499                         }
1500                         apr_brigade_cleanup(bb);
1501                         mode = APR_BLOCK_READ;
1502                         continue;
1503                     }
1504                     else if (rv == APR_EOF) {
1505                         break;
1506                     }
1507                     else if (rv != APR_SUCCESS) {
1508                         /* In this case, we are in real trouble because
1509                          * our backend bailed on us. Pass along a 502 error
1510                          * error bucket
1511                          */
1512                         ap_log_cerror(APLOG_MARK, APLOG_ERR, rv, c,
1513                                       "proxy: error reading response");
1514                         ap_proxy_backend_broke(r, bb);
1515                         ap_pass_brigade(r->output_filters, bb);
1516                         backend_broke = 1;
1517                         backend->close = 1;
1518                         break;
1519                     }
1520                     /* next time try a non-blocking read */
1521                     mode = APR_NONBLOCK_READ;
1522
1523                     apr_brigade_length(bb, 0, &readbytes);
1524                     backend->worker->s->read += readbytes;
1525 #if DEBUGGING
1526                     {
1527                     ap_log_error(APLOG_MARK, APLOG_DEBUG, 0,
1528                                  r->server, "proxy (PID %d): readbytes: %#x",
1529                                  getpid(), readbytes);
1530                     }
1531 #endif
1532                     /* sanity check */
1533                     if (APR_BRIGADE_EMPTY(bb)) {
1534                         apr_brigade_cleanup(bb);
1535                         break;
1536                     }
1537
1538                     /* found the last brigade? */
1539                     if (APR_BUCKET_IS_EOS(APR_BRIGADE_LAST(bb))) {
1540                         /* signal that we must leave */
1541                         finish = TRUE;
1542                     }
1543
1544                     /* try send what we read */
1545                     if (ap_pass_brigade(r->output_filters, bb) != APR_SUCCESS
1546                         || c->aborted) {
1547                         /* Ack! Phbtt! Die! User aborted! */
1548                         backend->close = 1;  /* this causes socket close below */
1549                         finish = TRUE;
1550                     }
1551
1552                     /* make sure we always clean up after ourselves */
1553                     apr_brigade_cleanup(bb);
1554
1555                 } while (!finish);
1556             }
1557             ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server,
1558                          "proxy: end body send");
1559         }
1560         else if (!interim_response) {
1561             ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server,
1562                          "proxy: header only");
1563
1564             /* Pass EOS bucket down the filter chain. */
1565             e = apr_bucket_eos_create(c->bucket_alloc);
1566             APR_BRIGADE_INSERT_TAIL(bb, e);
1567             if (ap_pass_brigade(r->output_filters, bb) != APR_SUCCESS
1568                 || c->aborted) {
1569                 /* Ack! Phbtt! Die! User aborted! */
1570                 backend->close = 1;  /* this causes socket close below */
1571             }
1572
1573             apr_brigade_cleanup(bb);
1574         }
1575     } while (interim_response);
1576
1577     /* If our connection with the client is to be aborted, return DONE. */
1578     if (c->aborted || backend_broke) {
1579         return DONE;
1580     }
1581
1582     if (conf->error_override) {
1583         /* the code above this checks for 'OK' which is what the hook expects */
1584         if (!ap_is_HTTP_ERROR(r->status))
1585             return OK;
1586         else {
1587             /* clear r->status for override error, otherwise ErrorDocument
1588              * thinks that this is a recursive error, and doesn't find the
1589              * custom error page
1590              */
1591             int status = r->status;
1592             r->status = HTTP_OK;
1593             /* Discard body, if one is expected */
1594             if ((status != HTTP_NO_CONTENT) && /* not 204 */
1595                 (status != HTTP_NOT_MODIFIED)) { /* not 304 */
1596                ap_discard_request_body(rp);
1597            }
1598             return status;
1599         }
1600     } else
1601         return OK;
1602 }
1603
1604 static
1605 apr_status_t ap_proxy_http_cleanup(const char *scheme, request_rec *r,
1606                                    proxy_conn_rec *backend)
1607 {
1608     ap_proxy_release_connection(scheme, backend, r->server);
1609     return OK;
1610 }
1611
1612 /*
1613  * This handles http:// URLs, and other URLs using a remote proxy over http
1614  * If proxyhost is NULL, then contact the server directly, otherwise
1615  * go via the proxy.
1616  * Note that if a proxy is used, then URLs other than http: can be accessed,
1617  * also, if we have trouble which is clearly specific to the proxy, then
1618  * we return DECLINED so that we can try another proxy. (Or the direct
1619  * route.)
1620  */
1621 static int proxy_http_handler(request_rec *r, proxy_worker *worker,
1622                               proxy_server_conf *conf,
1623                               char *url, const char *proxyname,
1624                               apr_port_t proxyport)
1625 {
1626     int status;
1627     char server_portstr[32];
1628     char *scheme;
1629     const char *proxy_function;
1630     const char *u;
1631     proxy_conn_rec *backend = NULL;
1632     int is_ssl = 0;
1633
1634     /* Note: Memory pool allocation.
1635      * A downstream keepalive connection is always connected to the existence
1636      * (or not) of an upstream keepalive connection. If this is not done then
1637      * load balancing against multiple backend servers breaks (one backend
1638      * server ends up taking 100% of the load), and the risk is run of
1639      * downstream keepalive connections being kept open unnecessarily. This
1640      * keeps webservers busy and ties up resources.
1641      *
1642      * As a result, we allocate all sockets out of the upstream connection
1643      * pool, and when we want to reuse a socket, we check first whether the
1644      * connection ID of the current upstream connection is the same as that
1645      * of the connection when the socket was opened.
1646      */
1647     apr_pool_t *p = r->connection->pool;
1648     conn_rec *c = r->connection;
1649     apr_uri_t *uri = apr_palloc(r->connection->pool, sizeof(*uri));
1650
1651     /* find the scheme */
1652     u = strchr(url, ':');
1653     if (u == NULL || u[1] != '/' || u[2] != '/' || u[3] == '\0')
1654        return DECLINED;
1655     if ((u - url) > 14)
1656         return HTTP_BAD_REQUEST;
1657     scheme = apr_pstrndup(c->pool, url, u - url);
1658     /* scheme is lowercase */
1659     ap_str_tolower(scheme);
1660     /* is it for us? */
1661     if (strcmp(scheme, "https") == 0) {
1662         if (!ap_proxy_ssl_enable(NULL)) {
1663             ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server,
1664                          "proxy: HTTPS: declining URL %s"
1665                          " (mod_ssl not configured?)", url);
1666             return DECLINED;
1667         }
1668         is_ssl = 1;
1669         proxy_function = "HTTPS";
1670     }
1671     else if (!(strcmp(scheme, "http") == 0 || (strcmp(scheme, "ftp") == 0 && proxyname))) {
1672         ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server,
1673                      "proxy: HTTP: declining URL %s", url);
1674         return DECLINED; /* only interested in HTTP, or FTP via proxy */
1675     }
1676     else {
1677         if (*scheme == 'h')
1678             proxy_function = "HTTP";
1679         else
1680             proxy_function = "FTP";
1681     }
1682     ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server,
1683              "proxy: HTTP: serving URL %s", url);
1684
1685
1686     /* create space for state information */
1687     if ((status = ap_proxy_acquire_connection(proxy_function, &backend,
1688                                               worker, r->server)) != OK)
1689         goto cleanup;
1690
1691
1692     backend->is_ssl = is_ssl;
1693     /*
1694      * TODO: Currently we cannot handle persistent SSL backend connections,
1695      * because we recreate backend->connection for each request and thus
1696      * try to initialize an already existing SSL connection. This does
1697      * not work.
1698      */
1699     if (is_ssl)
1700         backend->close = 1;
1701
1702     /* Step One: Determine Who To Connect To */
1703     if ((status = ap_proxy_determine_connection(p, r, conf, worker, backend,
1704                                                 uri, &url, proxyname,
1705                                                 proxyport, server_portstr,
1706                                                 sizeof(server_portstr))) != OK)
1707         goto cleanup;
1708
1709     /* Step Two: Make the Connection */
1710     if (ap_proxy_connect_backend(proxy_function, backend, worker, r->server)) {
1711         if (r->proxyreq == PROXYREQ_PROXY)
1712             status = HTTP_NOT_FOUND;
1713         else
1714             status = HTTP_SERVICE_UNAVAILABLE;
1715         goto cleanup;
1716     }
1717
1718     /* Step Three: Create conn_rec */
1719     if (!backend->connection) {
1720         if ((status = ap_proxy_connection_create(proxy_function, backend,
1721                                                  c, r->server)) != OK)
1722             goto cleanup;
1723     }
1724
1725     /* Step Four: Send the Request */
1726     if ((status = ap_proxy_http_request(p, r, backend, backend->connection,
1727                                         conf, uri, url, server_portstr)) != OK)
1728         goto cleanup;
1729
1730     /* Step Five: Receive the Response */
1731     if ((status = ap_proxy_http_process_response(p, r, backend,
1732                                                  backend->connection,
1733                                                  conf, server_portstr)) != OK)
1734         goto cleanup;
1735
1736     /* Step Six: Clean Up */
1737
1738 cleanup:
1739     if (backend) {
1740         if (status != OK)
1741             backend->close = 1;
1742         ap_proxy_http_cleanup(proxy_function, r, backend);
1743     }
1744     return status;
1745 }
1746
1747 static void ap_proxy_http_register_hook(apr_pool_t *p)
1748 {
1749     proxy_hook_scheme_handler(proxy_http_handler, NULL, NULL, APR_HOOK_FIRST);
1750     proxy_hook_canon_handler(proxy_http_canon, NULL, NULL, APR_HOOK_FIRST);
1751 }
1752
1753 module AP_MODULE_DECLARE_DATA proxy_http_module = {
1754     STANDARD20_MODULE_STUFF,
1755     NULL,              /* create per-directory config structure */
1756     NULL,              /* merge per-directory config structures */
1757     NULL,              /* create per-server config structure */
1758     NULL,              /* merge per-server config structures */
1759     NULL,              /* command apr_table_t */
1760     ap_proxy_http_register_hook/* register hooks */
1761 };
1762