mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-01-09 23:39:55 +00:00
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:
parent
f66258237c
commit
a46bbd893a
@ -7155,12 +7155,15 @@ 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 (!(s->flags & SF_ERR_MASK))
|
||||
s->flags |= SF_ERR_SRVCL;
|
||||
s->be->be_counters.srv_aborts++;
|
||||
if (objt_server(s->target))
|
||||
objt_server(s->target)->counters.srv_aborts++;
|
||||
goto return_bad_res_stats_ok;
|
||||
/* 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++;
|
||||
if (objt_server(s->target))
|
||||
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 */
|
||||
|
Loading…
Reference in New Issue
Block a user