]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUG/MINOR: stream-int: Process connection/CS errors first in si_cs_send()
authorChristopher Faulet <cfaulet@haproxy.com>
Mon, 23 Sep 2019 13:57:29 +0000 (15:57 +0200)
committerChristopher Faulet <cfaulet@haproxy.com>
Tue, 24 Sep 2019 08:04:05 +0000 (10:04 +0200)
Errors on the connections or the conn-stream must always be processed in
si_cs_send(), even if the stream-interface is already subscribed on
sending. This patch does not fix any concrete bug per-se. But it is required by
the following one to handle those errors during synchronous sends.

This patch must be backported with the following one to 2.0 and probably to 1.9
too, but with caution because the code is really different.

src/stream_interface.c

index cab4371fd42b04a5c1ac69e3045e2c8084f8be5c..e661fb2f59319d208316bc1bd2a8fae68e7df71e 100644 (file)
@@ -646,10 +646,6 @@ int si_cs_send(struct conn_stream *cs)
        int ret;
        int did_send = 0;
 
-       /* We're already waiting to be able to send, give up */
-       if (si->wait_event.events & SUB_RETRY_SEND)
-               return 0;
-
        if (conn->flags & CO_FL_ERROR || cs->flags & (CS_FL_ERROR|CS_FL_ERR_PENDING)) {
                /* We're probably there because the tasklet was woken up,
                 * but process_stream() ran before, detected there were an
@@ -663,6 +659,10 @@ int si_cs_send(struct conn_stream *cs)
                return 1;
        }
 
+       /* We're already waiting to be able to send, give up */
+       if (si->wait_event.events & SUB_RETRY_SEND)
+               return 0;
+
        /* we might have been called just after an asynchronous shutw */
        if (conn->flags & CO_FL_SOCK_WR_SH || oc->flags & CF_SHUTW)
                return 1;