mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-01-11 16:29:36 +00:00
BUG/MEDIUM: mux-h1: Don't loop on the headers parsing if the read0 was received
If a server sends part of headers and then close its connection, the mux H1 reamins blocked in an infinite loop trying to read more data to finish the parsing of the message. The flag CS_FL_REOS is set on the conn_stream. But because there are some data in the input buffer, CS_FL_EOS is never set. To fix the bug, in h1_process_input, when CS_FL_REOS is set on the conn_stream, we also set CS_FL_EOS if the input buffer is empty OR if the channel's buffer is empty.
This commit is contained in:
parent
cb55f485da
commit
f6ce9d61f9
@ -1304,11 +1304,14 @@ static size_t h1_process_input(struct h1c *h1c, struct buffer *buf, int flags)
|
||||
else {
|
||||
h1_release_buf(h1c, &h1c->ibuf);
|
||||
h1_sync_messages(h1c);
|
||||
|
||||
h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
|
||||
if (h1s->cs->flags & CS_FL_REOS)
|
||||
h1s->cs->flags |= CS_FL_EOS;
|
||||
}
|
||||
|
||||
if ((h1s->cs->flags & CS_FL_REOS) && (!b_data(&h1c->ibuf) || htx_is_empty(htx))) {
|
||||
h1s->cs->flags |= CS_FL_EOS;
|
||||
h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
|
||||
}
|
||||
|
||||
return total;
|
||||
|
||||
parsing_err:
|
||||
|
Loading…
Reference in New Issue
Block a user