BUG/MINOR: http: Be sure to process all the data received from a server

When the response body is forwarded, if the server closes the input before the
end, an error is thrown. But if the data processing is too slow, all data could
already be received and pending in the input buffer. So this is a bug to stop
processing in this context. The server doesn't really closed the input before
the end.

As an example, this could happen when HAProxy is configured to do compression
offloading. If the server closes the connection explicitly after the response
(keep-alive disabled by the server) and if HAProxy receives the data faster than
they are compressed, then the response could be truncated.

This patch fixes the bug by checking if some pending data remain in the input
buffer before returning an error. If yes, the processing continues.
This commit is contained in:
Christopher Faulet 2015-06-19 09:00:58 +02:00 committed by Willy Tarreau
parent f66258237c
commit a46bbd893a

View File

@ -7155,6 +7155,8 @@ int http_response_forward_body(struct stream *s, struct channel *res, int an_bit
if (res->flags & CF_SHUTR) {
if ((s->req.flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))
goto aborted_xfer;
/* If we have some pending data, we continue the processing */
if (!buffer_pending(res->buf)) {
if (!(s->flags & SF_ERR_MASK))
s->flags |= SF_ERR_SRVCL;
s->be->be_counters.srv_aborts++;
@ -7162,6 +7164,7 @@ int http_response_forward_body(struct stream *s, struct channel *res, int an_bit
objt_server(s->target)->counters.srv_aborts++;
goto return_bad_res_stats_ok;
}
}
/* we need to obey the req analyser, so if it leaves, we must too */
if (!s->req.analysers)