Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Functions managing stream_interface structures |
| 3 | * |
Willy Tarreau | f873d75 | 2012-05-11 17:47:17 +0200 | [diff] [blame] | 4 | * Copyright 2000-2012 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
| 13 | #include <errno.h> |
| 14 | #include <fcntl.h> |
| 15 | #include <stdio.h> |
| 16 | #include <stdlib.h> |
| 17 | |
| 18 | #include <sys/socket.h> |
| 19 | #include <sys/stat.h> |
| 20 | #include <sys/types.h> |
| 21 | |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 22 | #include <haproxy/api.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 23 | #include <haproxy/applet.h> |
Willy Tarreau | f1d32c4 | 2020-06-04 21:07:02 +0200 | [diff] [blame] | 24 | #include <haproxy/channel.h> |
Willy Tarreau | 7ea393d | 2020-06-04 18:02:10 +0200 | [diff] [blame] | 25 | #include <haproxy/connection.h> |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 26 | #include <haproxy/conn_stream.h> |
| 27 | #include <haproxy/cs_utils.h> |
Willy Tarreau | 2741c8c | 2020-06-02 11:28:02 +0200 | [diff] [blame] | 28 | #include <haproxy/dynbuf.h> |
Willy Tarreau | b7fc4c4 | 2021-10-06 18:56:42 +0200 | [diff] [blame] | 29 | #include <haproxy/http_ana.h> |
Willy Tarreau | 8773533 | 2020-06-04 09:08:41 +0200 | [diff] [blame] | 30 | #include <haproxy/http_htx.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 31 | #include <haproxy/pipe-t.h> |
| 32 | #include <haproxy/pipe.h> |
Christopher Faulet | cda94ac | 2021-12-23 17:28:17 +0100 | [diff] [blame] | 33 | #include <haproxy/pool.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 34 | #include <haproxy/proxy.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 35 | #include <haproxy/stream-t.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 36 | #include <haproxy/stream_interface.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 37 | #include <haproxy/task.h> |
Willy Tarreau | c2f7c58 | 2020-06-02 18:15:32 +0200 | [diff] [blame] | 38 | #include <haproxy/ticks.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 39 | #include <haproxy/tools.h> |
Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 40 | |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 41 | |
Christopher Faulet | cda94ac | 2021-12-23 17:28:17 +0100 | [diff] [blame] | 42 | DECLARE_POOL(pool_head_streaminterface, "stream_interface", sizeof(struct stream_interface)); |
| 43 | |
| 44 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 45 | /* functions used by default on a detached conn-stream */ |
| 46 | static void cs_app_shutr(struct conn_stream *cs); |
| 47 | static void cs_app_shutw(struct conn_stream *cs); |
| 48 | static void cs_app_chk_rcv(struct conn_stream *cs); |
| 49 | static void cs_app_chk_snd(struct conn_stream *cs); |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 50 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 51 | /* functions used on a mux-based conn-stream */ |
| 52 | static void cs_app_shutr_conn(struct conn_stream *cs); |
| 53 | static void cs_app_shutw_conn(struct conn_stream *cs); |
| 54 | static void cs_app_chk_rcv_conn(struct conn_stream *cs); |
| 55 | static void cs_app_chk_snd_conn(struct conn_stream *cs); |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 56 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 57 | /* functions used on an applet-based conn-stream */ |
| 58 | static void cs_app_shutr_applet(struct conn_stream *cs); |
| 59 | static void cs_app_shutw_applet(struct conn_stream *cs); |
| 60 | static void cs_app_chk_rcv_applet(struct conn_stream *cs); |
| 61 | static void cs_app_chk_snd_applet(struct conn_stream *cs); |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 62 | |
| 63 | /* last read notification */ |
| 64 | static void stream_int_read0(struct stream_interface *si); |
| 65 | |
| 66 | /* post-IO notification callback */ |
| 67 | static void stream_int_notify(struct stream_interface *si); |
Willy Tarreau | f873d75 | 2012-05-11 17:47:17 +0200 | [diff] [blame] | 68 | |
Willy Tarreau | 5c979a9 | 2012-05-07 17:15:39 +0200 | [diff] [blame] | 69 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 70 | /* conn-stream operations for connections */ |
| 71 | struct cs_app_ops cs_app_conn_ops = { |
| 72 | .chk_rcv = cs_app_chk_rcv_conn, |
| 73 | .chk_snd = cs_app_chk_snd_conn, |
| 74 | .shutr = cs_app_shutr_conn, |
| 75 | .shutw = cs_app_shutw_conn, |
Willy Tarreau | c578891 | 2012-08-24 18:12:41 +0200 | [diff] [blame] | 76 | }; |
| 77 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 78 | /* conn-stream operations for embedded tasks */ |
| 79 | struct cs_app_ops cs_app_embedded_ops = { |
| 80 | .chk_rcv = cs_app_chk_rcv, |
| 81 | .chk_snd = cs_app_chk_snd, |
| 82 | .shutr = cs_app_shutr, |
| 83 | .shutw = cs_app_shutw, |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 84 | }; |
| 85 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 86 | /* conn-stream operations for connections */ |
| 87 | struct cs_app_ops cs_app_applet_ops = { |
| 88 | .chk_rcv = cs_app_chk_rcv_applet, |
| 89 | .chk_snd = cs_app_chk_snd_applet, |
| 90 | .shutr = cs_app_shutr_applet, |
| 91 | .shutw = cs_app_shutw_applet, |
| 92 | }; |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 93 | |
| 94 | /* Functions used to communicate with a conn_stream. The first two may be used |
| 95 | * directly, the last one is mostly a wake callback. |
| 96 | */ |
Christopher Faulet | 9936dc6 | 2022-02-28 09:21:58 +0100 | [diff] [blame] | 97 | static int si_cs_recv(struct conn_stream *cs); |
Christopher Faulet | 4941623 | 2022-02-28 09:14:46 +0100 | [diff] [blame] | 98 | static int si_cs_send(struct conn_stream *cs); |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 99 | static int si_cs_process(struct conn_stream *cs); |
| 100 | |
| 101 | |
Willy Tarreau | 74beec3 | 2012-10-03 00:41:04 +0200 | [diff] [blame] | 102 | struct data_cb si_conn_cb = { |
Olivier Houchard | 21df6cc | 2018-09-14 23:21:44 +0200 | [diff] [blame] | 103 | .wake = si_cs_process, |
Willy Tarreau | 8e0bb0a | 2016-11-24 16:58:12 +0100 | [diff] [blame] | 104 | .name = "STRM", |
Willy Tarreau | c578891 | 2012-08-24 18:12:41 +0200 | [diff] [blame] | 105 | }; |
| 106 | |
Christopher Faulet | cda94ac | 2021-12-23 17:28:17 +0100 | [diff] [blame] | 107 | |
| 108 | struct stream_interface *si_new(struct conn_stream *cs) |
| 109 | { |
| 110 | struct stream_interface *si; |
| 111 | |
| 112 | si = pool_alloc(pool_head_streaminterface); |
| 113 | if (unlikely(!si)) |
| 114 | return NULL; |
| 115 | si->flags = SI_FL_NONE; |
Christopher Faulet | 014ac35 | 2022-01-06 08:13:46 +0100 | [diff] [blame] | 116 | if (si_init(si) < 0) { |
Christopher Faulet | cda94ac | 2021-12-23 17:28:17 +0100 | [diff] [blame] | 117 | pool_free(pool_head_streaminterface, si); |
| 118 | return NULL; |
| 119 | } |
| 120 | si->cs = cs; |
| 121 | return si; |
| 122 | } |
| 123 | |
| 124 | void si_free(struct stream_interface *si) |
| 125 | { |
| 126 | if (!si) |
| 127 | return; |
| 128 | |
Christopher Faulet | cda94ac | 2021-12-23 17:28:17 +0100 | [diff] [blame] | 129 | pool_free(pool_head_streaminterface, si); |
| 130 | } |
| 131 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 132 | |
Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 133 | /* |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 134 | * This function performs a shutdown-read on a detached conn-stream in a |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 135 | * connected or init state (it does nothing for other states). It either shuts |
| 136 | * the read side or marks itself as closed. The buffer flags are updated to |
Christopher Faulet | 8abe712 | 2022-03-30 15:10:18 +0200 | [diff] [blame] | 137 | * reflect the new state. If the stream interface has CS_FL_NOHALF, we also |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 138 | * forward the close to the write side. The owner task is woken up if it exists. |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 139 | */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 140 | static void cs_app_shutr(struct conn_stream *cs) |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 141 | { |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 142 | struct channel *ic = cs_ic(cs); |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 143 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 144 | si_rx_shut_blk(cs->si); |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 145 | if (ic->flags & CF_SHUTR) |
Willy Tarreau | 6fe1541 | 2013-09-29 15:16:03 +0200 | [diff] [blame] | 146 | return; |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 147 | ic->flags |= CF_SHUTR; |
| 148 | ic->rex = TICK_ETERNITY; |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 149 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 150 | if (!cs_state_in(cs->state, CS_SB_CON|CS_SB_RDY|CS_SB_EST)) |
Willy Tarreau | 6fe1541 | 2013-09-29 15:16:03 +0200 | [diff] [blame] | 151 | return; |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 152 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 153 | if (cs_oc(cs)->flags & CF_SHUTW) { |
| 154 | cs->state = CS_ST_DIS; |
| 155 | __cs_strm(cs)->conn_exp = TICK_ETERNITY; |
Willy Tarreau | d8ccffe | 2010-09-07 16:16:50 +0200 | [diff] [blame] | 156 | } |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 157 | else if (cs->flags & CS_FL_NOHALF) { |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 158 | /* we want to immediately forward this close to the write side */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 159 | return cs_app_shutw(cs); |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 160 | } |
Willy Tarreau | 0bd05ea | 2010-07-02 11:18:03 +0200 | [diff] [blame] | 161 | |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 162 | /* note that if the task exists, it must unregister itself once it runs */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 163 | if (!(cs->flags & CS_FL_DONT_WAKE)) |
| 164 | task_wakeup(cs_strm_task(cs), TASK_WOKEN_IO); |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 165 | } |
| 166 | |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 167 | /* |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 168 | * This function performs a shutdown-write on a detached conn-stream in a |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 169 | * connected or init state (it does nothing for other states). It either shuts |
| 170 | * the write side or marks itself as closed. The buffer flags are updated to |
| 171 | * reflect the new state. It does also close everything if the SI was marked as |
| 172 | * being in error state. The owner task is woken up if it exists. |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 173 | */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 174 | static void cs_app_shutw(struct conn_stream *cs) |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 175 | { |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 176 | struct channel *ic = cs_ic(cs); |
| 177 | struct channel *oc = cs_oc(cs); |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 178 | |
| 179 | oc->flags &= ~CF_SHUTW_NOW; |
| 180 | if (oc->flags & CF_SHUTW) |
Willy Tarreau | 6fe1541 | 2013-09-29 15:16:03 +0200 | [diff] [blame] | 181 | return; |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 182 | oc->flags |= CF_SHUTW; |
| 183 | oc->wex = TICK_ETERNITY; |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 184 | si_done_get(cs->si); |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 185 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 186 | if (tick_isset(cs->hcto)) { |
| 187 | ic->rto = cs->hcto; |
Hongbo Long | e39683c | 2017-03-10 18:41:51 +0100 | [diff] [blame] | 188 | ic->rex = tick_add(now_ms, ic->rto); |
| 189 | } |
| 190 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 191 | switch (cs->state) { |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 192 | case CS_ST_RDY: |
| 193 | case CS_ST_EST: |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 194 | /* we have to shut before closing, otherwise some short messages |
| 195 | * may never leave the system, especially when there are remaining |
| 196 | * unread data in the socket input buffer, or when nolinger is set. |
Christopher Faulet | 8abe712 | 2022-03-30 15:10:18 +0200 | [diff] [blame] | 197 | * However, if CS_FL_NOLINGER is explicitly set, we know there is |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 198 | * no risk so we close both sides immediately. |
| 199 | */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 200 | if (!(cs->endp->flags & CS_EP_ERROR) && !(cs->flags & CS_FL_NOLINGER) && |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 201 | !(ic->flags & (CF_SHUTR|CF_DONT_READ))) |
Willy Tarreau | 6fe1541 | 2013-09-29 15:16:03 +0200 | [diff] [blame] | 202 | return; |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 203 | |
| 204 | /* fall through */ |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 205 | case CS_ST_CON: |
| 206 | case CS_ST_CER: |
| 207 | case CS_ST_QUE: |
| 208 | case CS_ST_TAR: |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 209 | /* Note that none of these states may happen with applets */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 210 | cs->state = CS_ST_DIS; |
Tim Duesterhus | 588b314 | 2020-05-29 14:35:51 +0200 | [diff] [blame] | 211 | /* fall through */ |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 212 | default: |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 213 | cs->flags &= ~CS_FL_NOLINGER; |
| 214 | si_rx_shut_blk(cs->si); |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 215 | ic->flags |= CF_SHUTR; |
| 216 | ic->rex = TICK_ETERNITY; |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 217 | __cs_strm(cs)->conn_exp = TICK_ETERNITY; |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 218 | } |
| 219 | |
Willy Tarreau | 4a36b56 | 2012-08-06 19:31:45 +0200 | [diff] [blame] | 220 | /* note that if the task exists, it must unregister itself once it runs */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 221 | if (!(cs->flags & CS_FL_DONT_WAKE)) |
| 222 | task_wakeup(cs_strm_task(cs), TASK_WOKEN_IO); |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | /* default chk_rcv function for scheduled tasks */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 226 | static void cs_app_chk_rcv(struct conn_stream *cs) |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 227 | { |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 228 | struct channel *ic = cs_ic(cs); |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 229 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 230 | DPRINTF(stderr, "%s: cs=%p, cs->state=%d ic->flags=%08x oc->flags=%08x\n", |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 231 | __FUNCTION__, |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 232 | cs, cs->state, ic->flags, cs_oc(cs)->flags); |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 233 | |
Christopher Faulet | b3e0de4 | 2018-10-11 13:54:13 +0200 | [diff] [blame] | 234 | if (ic->pipe) { |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 235 | /* stop reading */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 236 | si_rx_room_blk(cs->si); |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 237 | } |
| 238 | else { |
| 239 | /* (re)start reading */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 240 | if (!(cs->flags & CS_FL_DONT_WAKE)) |
| 241 | task_wakeup(cs_strm_task(cs), TASK_WOKEN_IO); |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 242 | } |
| 243 | } |
| 244 | |
| 245 | /* default chk_snd function for scheduled tasks */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 246 | static void cs_app_chk_snd(struct conn_stream *cs) |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 247 | { |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 248 | struct channel *oc = cs_oc(cs); |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 249 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 250 | DPRINTF(stderr, "%s: cs=%p, cs->state=%d ic->flags=%08x oc->flags=%08x\n", |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 251 | __FUNCTION__, |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 252 | cs, cs->state, cs_ic(cs)->flags, oc->flags); |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 253 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 254 | if (unlikely(cs->state != CS_ST_EST || (oc->flags & CF_SHUTW))) |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 255 | return; |
| 256 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 257 | if (!(cs->si->flags & SI_FL_WAIT_DATA) || /* not waiting for data */ |
| 258 | channel_is_empty(oc)) /* called with nothing to send ! */ |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 259 | return; |
| 260 | |
| 261 | /* Otherwise there are remaining data to be sent in the buffer, |
| 262 | * so we tell the handler. |
| 263 | */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 264 | cs->si->flags &= ~SI_FL_WAIT_DATA; |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 265 | if (!tick_isset(oc->wex)) |
| 266 | oc->wex = tick_add_ifset(now_ms, oc->wto); |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 267 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 268 | if (!(cs->flags & CS_FL_DONT_WAKE)) |
| 269 | task_wakeup(cs_strm_task(cs), TASK_WOKEN_IO); |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 270 | } |
| 271 | |
Willy Tarreau | a9ff5e6 | 2015-07-19 18:46:30 +0200 | [diff] [blame] | 272 | /* Register an applet to handle a stream_interface as a new appctx. The SI will |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 273 | * wake it up every time it is solicited. The appctx must be deleted by the task |
Willy Tarreau | a9ff5e6 | 2015-07-19 18:46:30 +0200 | [diff] [blame] | 274 | * handler using si_release_endpoint(), possibly from within the function itself. |
| 275 | * It also pre-initializes the applet's context and returns it (or NULL in case |
| 276 | * it could not be allocated). |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 277 | */ |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 278 | struct appctx *si_register_handler(struct stream_interface *si, struct applet *app) |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 279 | { |
Willy Tarreau | 0a23bcb | 2013-12-01 11:31:38 +0100 | [diff] [blame] | 280 | struct appctx *appctx; |
| 281 | |
Willy Tarreau | 07373b8 | 2014-11-28 12:08:47 +0100 | [diff] [blame] | 282 | DPRINTF(stderr, "registering handler %p for si %p (was %p)\n", app, si, si_task(si)); |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 283 | |
Christopher Faulet | 9ec2f4d | 2022-03-23 15:15:29 +0100 | [diff] [blame] | 284 | appctx = appctx_new(app, si->cs->endp); |
Willy Tarreau | a69fc9f | 2014-12-22 19:34:00 +0100 | [diff] [blame] | 285 | if (!appctx) |
Willy Tarreau | 0a23bcb | 2013-12-01 11:31:38 +0100 | [diff] [blame] | 286 | return NULL; |
Christopher Faulet | a9e8b39 | 2022-03-23 11:01:09 +0100 | [diff] [blame] | 287 | cs_attach_applet(si->cs, appctx, appctx); |
| 288 | appctx->owner = si->cs; |
Christopher Faulet | 13a35e5 | 2021-12-20 15:34:16 +0100 | [diff] [blame] | 289 | appctx->t->nice = si_strm(si)->task->nice; |
Willy Tarreau | 0cd3bd6 | 2018-11-06 18:46:37 +0100 | [diff] [blame] | 290 | si_cant_get(si); |
Willy Tarreau | 828824a | 2015-04-19 17:20:03 +0200 | [diff] [blame] | 291 | appctx_wakeup(appctx); |
Christopher Faulet | 13a35e5 | 2021-12-20 15:34:16 +0100 | [diff] [blame] | 292 | return appctx; |
Willy Tarreau | fb90d94 | 2009-09-05 20:57:35 +0200 | [diff] [blame] | 293 | } |
| 294 | |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 295 | /* This callback is used to send a valid PROXY protocol line to a socket being |
Willy Tarreau | afad0e0 | 2012-08-09 14:45:22 +0200 | [diff] [blame] | 296 | * established. It returns 0 if it fails in a fatal way or needs to poll to go |
| 297 | * further, otherwise it returns non-zero and removes itself from the connection's |
Willy Tarreau | a1a7474 | 2012-08-24 12:14:49 +0200 | [diff] [blame] | 298 | * flags (the bit is provided in <flag> by the caller). It is designed to be |
| 299 | * called by the connection handler and relies on it to commit polling changes. |
Willy Tarreau | 57cd3e4 | 2013-10-24 22:01:26 +0200 | [diff] [blame] | 300 | * Note that it can emit a PROXY line by relying on the other end's address |
| 301 | * when the connection is attached to a stream interface, or by resolving the |
| 302 | * local address otherwise (also called a LOCAL line). |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 303 | */ |
| 304 | int conn_si_send_proxy(struct connection *conn, unsigned int flag) |
| 305 | { |
Willy Tarreau | d02cdd2 | 2013-12-15 10:23:20 +0100 | [diff] [blame] | 306 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 307 | goto out_error; |
| 308 | |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 309 | /* If we have a PROXY line to send, we'll use this to validate the |
| 310 | * connection, in which case the connection is validated only once |
| 311 | * we've sent the whole proxy line. Otherwise we use connect(). |
| 312 | */ |
Tim Duesterhus | 36839dc | 2019-02-26 17:09:51 +0100 | [diff] [blame] | 313 | if (conn->send_proxy_ofs) { |
Willy Tarreau | 6b1379f | 2018-11-18 21:38:19 +0100 | [diff] [blame] | 314 | const struct conn_stream *cs; |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 315 | int ret; |
| 316 | |
Christopher Faulet | d82056c | 2020-05-26 16:08:49 +0200 | [diff] [blame] | 317 | /* If there is no mux attached to the connection, it means the |
| 318 | * connection context is a conn-stream. |
| 319 | */ |
Christopher Faulet | 69ef6c9 | 2022-03-31 14:20:00 +0200 | [diff] [blame] | 320 | cs = (conn->mux ? cs_conn_get_first(conn) : conn->ctx); |
Christopher Faulet | d82056c | 2020-05-26 16:08:49 +0200 | [diff] [blame] | 321 | |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 322 | /* The target server expects a PROXY line to be sent first. |
| 323 | * If the send_proxy_ofs is negative, it corresponds to the |
| 324 | * offset to start sending from then end of the proxy string |
| 325 | * (which is recomputed every time since it's constant). If |
| 326 | * it is positive, it means we have to send from the start. |
Willy Tarreau | 57cd3e4 | 2013-10-24 22:01:26 +0200 | [diff] [blame] | 327 | * We can only send a "normal" PROXY line when the connection |
| 328 | * is attached to a stream interface. Otherwise we can only |
| 329 | * send a LOCAL line (eg: for use with health checks). |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 330 | */ |
Willy Tarreau | 6b1379f | 2018-11-18 21:38:19 +0100 | [diff] [blame] | 331 | |
| 332 | if (cs && cs->data_cb == &si_conn_cb) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 333 | ret = make_proxy_line(trash.area, trash.size, |
| 334 | objt_server(conn->target), |
Christopher Faulet | f835dea | 2021-12-21 14:35:17 +0100 | [diff] [blame] | 335 | cs_conn(si_opposite(cs_si(cs))->cs), |
Christopher Faulet | 693b23b | 2022-02-28 09:09:05 +0100 | [diff] [blame] | 336 | cs_strm(cs)); |
Willy Tarreau | 57cd3e4 | 2013-10-24 22:01:26 +0200 | [diff] [blame] | 337 | } |
| 338 | else { |
| 339 | /* The target server expects a LOCAL line to be sent first. Retrieving |
| 340 | * local or remote addresses may fail until the connection is established. |
| 341 | */ |
Willy Tarreau | 7bb447c | 2019-07-17 11:40:51 +0200 | [diff] [blame] | 342 | if (!conn_get_src(conn) || !conn_get_dst(conn)) |
Willy Tarreau | 57cd3e4 | 2013-10-24 22:01:26 +0200 | [diff] [blame] | 343 | goto out_wait; |
| 344 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 345 | ret = make_proxy_line(trash.area, trash.size, |
Tim Duesterhus | cf6e0c8 | 2020-03-13 12:34:24 +0100 | [diff] [blame] | 346 | objt_server(conn->target), conn, |
| 347 | NULL); |
Willy Tarreau | 57cd3e4 | 2013-10-24 22:01:26 +0200 | [diff] [blame] | 348 | } |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 349 | |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 350 | if (!ret) |
| 351 | goto out_error; |
| 352 | |
Willy Tarreau | b8020ce | 2013-10-24 21:10:08 +0200 | [diff] [blame] | 353 | if (conn->send_proxy_ofs > 0) |
| 354 | conn->send_proxy_ofs = -ret; /* first call */ |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 355 | |
Willy Tarreau | a1a7474 | 2012-08-24 12:14:49 +0200 | [diff] [blame] | 356 | /* we have to send trash from (ret+sp for -sp bytes). If the |
| 357 | * data layer has a pending write, we'll also set MSG_MORE. |
| 358 | */ |
Willy Tarreau | 827fee7 | 2020-12-11 15:26:55 +0100 | [diff] [blame] | 359 | ret = conn_ctrl_send(conn, |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 360 | trash.area + ret + conn->send_proxy_ofs, |
| 361 | -conn->send_proxy_ofs, |
Willy Tarreau | 827fee7 | 2020-12-11 15:26:55 +0100 | [diff] [blame] | 362 | (conn->subs && conn->subs->events & SUB_RETRY_SEND) ? CO_SFL_MSG_MORE : 0); |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 363 | |
Willy Tarreau | 0a03c0f | 2015-03-13 00:05:28 +0100 | [diff] [blame] | 364 | if (ret < 0) |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 365 | goto out_error; |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 366 | |
Willy Tarreau | b8020ce | 2013-10-24 21:10:08 +0200 | [diff] [blame] | 367 | conn->send_proxy_ofs += ret; /* becomes zero once complete */ |
| 368 | if (conn->send_proxy_ofs != 0) |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 369 | goto out_wait; |
| 370 | |
| 371 | /* OK we've sent the whole line, we're connected */ |
| 372 | } |
| 373 | |
Willy Tarreau | a1a7474 | 2012-08-24 12:14:49 +0200 | [diff] [blame] | 374 | /* The connection is ready now, simply return and let the connection |
| 375 | * handler notify upper layers if needed. |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 376 | */ |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 377 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 378 | conn->flags &= ~flag; |
Willy Tarreau | afad0e0 | 2012-08-09 14:45:22 +0200 | [diff] [blame] | 379 | return 1; |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 380 | |
| 381 | out_error: |
Willy Tarreau | afad0e0 | 2012-08-09 14:45:22 +0200 | [diff] [blame] | 382 | /* Write error on the file descriptor */ |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 383 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | afad0e0 | 2012-08-09 14:45:22 +0200 | [diff] [blame] | 384 | return 0; |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 385 | |
| 386 | out_wait: |
Willy Tarreau | afad0e0 | 2012-08-09 14:45:22 +0200 | [diff] [blame] | 387 | return 0; |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 388 | } |
| 389 | |
Willy Tarreau | 2737562 | 2013-12-17 00:00:28 +0100 | [diff] [blame] | 390 | |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 391 | /* This function is the equivalent to si_update() except that it's |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 392 | * designed to be called from outside the stream handlers, typically the lower |
| 393 | * layers (applets, connections) after I/O completion. After updating the stream |
| 394 | * interface and timeouts, it will try to forward what can be forwarded, then to |
| 395 | * wake the associated task up if an important event requires special handling. |
Willy Tarreau | d0f5bbc | 2018-11-14 11:10:26 +0100 | [diff] [blame] | 396 | * It may update SI_FL_WAIT_DATA and/or SI_FL_RXBLK_ROOM, that the callers are |
Willy Tarreau | 0dfccb2 | 2018-10-25 13:55:20 +0200 | [diff] [blame] | 397 | * encouraged to watch to take appropriate action. |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 398 | * It should not be called from within the stream itself, si_update() |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 399 | * is designed for this. |
| 400 | */ |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 401 | static void stream_int_notify(struct stream_interface *si) |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 402 | { |
| 403 | struct channel *ic = si_ic(si); |
| 404 | struct channel *oc = si_oc(si); |
Willy Tarreau | 47baeb8 | 2018-11-15 07:46:57 +0100 | [diff] [blame] | 405 | struct stream_interface *sio = si_opposite(si); |
Christopher Faulet | d7607de | 2019-01-03 16:24:54 +0100 | [diff] [blame] | 406 | struct task *task = si_task(si); |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 407 | |
| 408 | /* process consumer side */ |
| 409 | if (channel_is_empty(oc)) { |
Christopher Faulet | 13a35e5 | 2021-12-20 15:34:16 +0100 | [diff] [blame] | 410 | struct connection *conn = cs_conn(si->cs); |
Olivier Houchard | e9bed53 | 2017-11-16 17:49:25 +0100 | [diff] [blame] | 411 | |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 412 | if (((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW) && |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 413 | (si->cs->state == CS_ST_EST) && (!conn || !(conn->flags & (CO_FL_WAIT_XPRT | CO_FL_EARLY_SSL_HS)))) |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 414 | cs_shutw(si->cs); |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 415 | oc->wex = TICK_ETERNITY; |
| 416 | } |
| 417 | |
Willy Tarreau | 8cf9c8e | 2016-12-13 15:21:25 +0100 | [diff] [blame] | 418 | /* indicate that we may be waiting for data from the output channel or |
| 419 | * we're about to close and can't expect more data if SHUTW_NOW is there. |
| 420 | */ |
Christopher Faulet | b3e0de4 | 2018-10-11 13:54:13 +0200 | [diff] [blame] | 421 | if (!(oc->flags & (CF_SHUTW|CF_SHUTW_NOW))) |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 422 | si->flags |= SI_FL_WAIT_DATA; |
Willy Tarreau | 8cf9c8e | 2016-12-13 15:21:25 +0100 | [diff] [blame] | 423 | else if ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW) |
| 424 | si->flags &= ~SI_FL_WAIT_DATA; |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 425 | |
| 426 | /* update OC timeouts and wake the other side up if it's waiting for room */ |
| 427 | if (oc->flags & CF_WRITE_ACTIVITY) { |
| 428 | if ((oc->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL && |
| 429 | !channel_is_empty(oc)) |
| 430 | if (tick_isset(oc->wex)) |
| 431 | oc->wex = tick_add_ifset(now_ms, oc->wto); |
| 432 | |
Christopher Faulet | a728518 | 2022-03-30 15:43:23 +0200 | [diff] [blame] | 433 | if (!(si->cs->flags & CS_FL_INDEP_STR)) |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 434 | if (tick_isset(ic->rex)) |
| 435 | ic->rex = tick_add_ifset(now_ms, ic->rto); |
Willy Tarreau | f26c26c | 2018-11-12 16:11:08 +0100 | [diff] [blame] | 436 | } |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 437 | |
Willy Tarreau | b26a6f9 | 2018-11-14 17:10:36 +0100 | [diff] [blame] | 438 | if (oc->flags & CF_DONT_READ) |
| 439 | si_rx_chan_blk(sio); |
| 440 | else |
| 441 | si_rx_chan_rdy(sio); |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 442 | |
| 443 | /* Notify the other side when we've injected data into the IC that |
| 444 | * needs to be forwarded. We can do fast-forwarding as soon as there |
| 445 | * are output data, but we avoid doing this if some of the data are |
| 446 | * not yet scheduled for being forwarded, because it is very likely |
| 447 | * that it will be done again immediately afterwards once the following |
Willy Tarreau | d0f5bbc | 2018-11-14 11:10:26 +0100 | [diff] [blame] | 448 | * data are parsed (eg: HTTP chunking). We only SI_FL_RXBLK_ROOM once |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 449 | * we've emptied *some* of the output buffer, and not just when there |
| 450 | * is available room, because applets are often forced to stop before |
| 451 | * the buffer is full. We must not stop based on input data alone because |
| 452 | * an HTTP parser might need more data to complete the parsing. |
| 453 | */ |
| 454 | if (!channel_is_empty(ic) && |
Willy Tarreau | 47baeb8 | 2018-11-15 07:46:57 +0100 | [diff] [blame] | 455 | (sio->flags & SI_FL_WAIT_DATA) && |
Willy Tarreau | 89b6a2b | 2018-11-18 15:46:10 +0100 | [diff] [blame] | 456 | (!(ic->flags & CF_EXPECT_MORE) || c_full(ic) || ci_data(ic) == 0 || ic->pipe)) { |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 457 | int new_len, last_len; |
| 458 | |
Willy Tarreau | 77e478c | 2018-06-19 07:03:14 +0200 | [diff] [blame] | 459 | last_len = co_data(ic); |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 460 | if (ic->pipe) |
| 461 | last_len += ic->pipe->data; |
| 462 | |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 463 | cs_chk_snd(sio->cs); |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 464 | |
Willy Tarreau | 77e478c | 2018-06-19 07:03:14 +0200 | [diff] [blame] | 465 | new_len = co_data(ic); |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 466 | if (ic->pipe) |
| 467 | new_len += ic->pipe->data; |
| 468 | |
| 469 | /* check if the consumer has freed some space either in the |
| 470 | * buffer or in the pipe. |
| 471 | */ |
Willy Tarreau | 47baeb8 | 2018-11-15 07:46:57 +0100 | [diff] [blame] | 472 | if (new_len < last_len) |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 473 | si_rx_room_rdy(si); |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 474 | } |
| 475 | |
Willy Tarreau | b26a6f9 | 2018-11-14 17:10:36 +0100 | [diff] [blame] | 476 | if (!(ic->flags & CF_DONT_READ)) |
| 477 | si_rx_chan_rdy(si); |
| 478 | |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 479 | cs_chk_rcv(si->cs); |
| 480 | cs_chk_rcv(sio->cs); |
Willy Tarreau | 47baeb8 | 2018-11-15 07:46:57 +0100 | [diff] [blame] | 481 | |
Willy Tarreau | b26a6f9 | 2018-11-14 17:10:36 +0100 | [diff] [blame] | 482 | if (si_rx_blocked(si)) { |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 483 | ic->rex = TICK_ETERNITY; |
| 484 | } |
Willy Tarreau | b26a6f9 | 2018-11-14 17:10:36 +0100 | [diff] [blame] | 485 | else if ((ic->flags & (CF_SHUTR|CF_READ_PARTIAL)) == CF_READ_PARTIAL) { |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 486 | /* we must re-enable reading if cs_chk_snd() has freed some space */ |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 487 | if (!(ic->flags & CF_READ_NOEXP) && tick_isset(ic->rex)) |
| 488 | ic->rex = tick_add_ifset(now_ms, ic->rto); |
| 489 | } |
| 490 | |
| 491 | /* wake the task up only when needed */ |
| 492 | if (/* changes on the production side */ |
| 493 | (ic->flags & (CF_READ_NULL|CF_READ_ERROR)) || |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 494 | !cs_state_in(si->cs->state, CS_SB_CON|CS_SB_RDY|CS_SB_EST) || |
Christopher Faulet | 6cd56d5 | 2022-03-30 10:47:32 +0200 | [diff] [blame] | 495 | (si->cs->endp->flags & CS_EP_ERROR) || |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 496 | ((ic->flags & CF_READ_PARTIAL) && |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 497 | ((ic->flags & CF_EOI) || !ic->to_forward || sio->cs->state != CS_ST_EST)) || |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 498 | |
| 499 | /* changes on the consumption side */ |
| 500 | (oc->flags & (CF_WRITE_NULL|CF_WRITE_ERROR)) || |
Willy Tarreau | ede3d88 | 2018-10-24 17:17:56 +0200 | [diff] [blame] | 501 | ((oc->flags & CF_WRITE_ACTIVITY) && |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 502 | ((oc->flags & CF_SHUTW) || |
Willy Tarreau | 78f5ff8 | 2018-12-19 11:00:00 +0100 | [diff] [blame] | 503 | (((oc->flags & CF_WAKE_WRITE) || |
| 504 | !(oc->flags & (CF_AUTO_CLOSE|CF_SHUTW_NOW|CF_SHUTW))) && |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 505 | (sio->cs->state != CS_ST_EST || |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 506 | (channel_is_empty(oc) && !oc->to_forward)))))) { |
Christopher Faulet | d7607de | 2019-01-03 16:24:54 +0100 | [diff] [blame] | 507 | task_wakeup(task, TASK_WOKEN_IO); |
| 508 | } |
| 509 | else { |
| 510 | /* Update expiration date for the task and requeue it */ |
| 511 | task->expire = tick_first((tick_is_expired(task->expire, now_ms) ? 0 : task->expire), |
| 512 | tick_first(tick_first(ic->rex, ic->wex), |
| 513 | tick_first(oc->rex, oc->wex))); |
Willy Tarreau | 45bcb37 | 2019-08-01 18:51:38 +0200 | [diff] [blame] | 514 | |
| 515 | task->expire = tick_first(task->expire, ic->analyse_exp); |
| 516 | task->expire = tick_first(task->expire, oc->analyse_exp); |
Christopher Faulet | ae024ce | 2022-03-29 19:02:31 +0200 | [diff] [blame] | 517 | task->expire = tick_first(task->expire, __cs_strm(si->cs)->conn_exp); |
Willy Tarreau | 45bcb37 | 2019-08-01 18:51:38 +0200 | [diff] [blame] | 518 | |
Christopher Faulet | d7607de | 2019-01-03 16:24:54 +0100 | [diff] [blame] | 519 | task_queue(task); |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 520 | } |
| 521 | if (ic->flags & CF_READ_ACTIVITY) |
| 522 | ic->flags &= ~CF_READ_DONTWAIT; |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 523 | } |
| 524 | |
Willy Tarreau | d1480cc | 2022-03-17 16:19:09 +0100 | [diff] [blame] | 525 | /* The stream interface is only responsible for the connection during the early |
| 526 | * states, before plugging a mux. Thus it should only care about CO_FL_ERROR |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 527 | * before CS_ST_EST, and after that it must absolutely ignore it since the mux |
Willy Tarreau | d1480cc | 2022-03-17 16:19:09 +0100 | [diff] [blame] | 528 | * may hold pending data. This function returns true if such an error was |
| 529 | * reported. Both the CS and the CONN must be valid. |
| 530 | */ |
| 531 | static inline int si_is_conn_error(const struct stream_interface *si) |
| 532 | { |
| 533 | struct connection *conn; |
| 534 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 535 | if (si->cs->state >= CS_ST_EST) |
Willy Tarreau | d1480cc | 2022-03-17 16:19:09 +0100 | [diff] [blame] | 536 | return 0; |
| 537 | |
| 538 | conn = __cs_conn(si->cs); |
| 539 | BUG_ON(!conn); |
| 540 | return !!(conn->flags & CO_FL_ERROR); |
| 541 | } |
Willy Tarreau | 615f28b | 2015-09-23 18:40:09 +0200 | [diff] [blame] | 542 | |
Olivier Houchard | c2aa711 | 2018-09-11 18:27:21 +0200 | [diff] [blame] | 543 | /* Called by I/O handlers after completion.. It propagates |
Willy Tarreau | 651e182 | 2015-09-23 20:06:13 +0200 | [diff] [blame] | 544 | * connection flags to the stream interface, updates the stream (which may or |
| 545 | * may not take this opportunity to try to forward data), then update the |
| 546 | * connection's polling based on the channels and stream interface's final |
| 547 | * states. The function always returns 0. |
Willy Tarreau | 100c467 | 2012-08-20 12:06:26 +0200 | [diff] [blame] | 548 | */ |
Olivier Houchard | c2aa711 | 2018-09-11 18:27:21 +0200 | [diff] [blame] | 549 | static int si_cs_process(struct conn_stream *cs) |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 550 | { |
Christopher Faulet | 693b23b | 2022-02-28 09:09:05 +0100 | [diff] [blame] | 551 | struct connection *conn = __cs_conn(cs); |
Christopher Faulet | f835dea | 2021-12-21 14:35:17 +0100 | [diff] [blame] | 552 | struct stream_interface *si = cs_si(cs); |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 553 | struct channel *ic = si_ic(si); |
| 554 | struct channel *oc = si_oc(si); |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 555 | |
Christopher Faulet | 897d612 | 2021-12-17 17:28:35 +0100 | [diff] [blame] | 556 | BUG_ON(!conn); |
| 557 | |
Olivier Houchard | c7ffa91 | 2018-08-28 19:37:41 +0200 | [diff] [blame] | 558 | /* If we have data to send, try it now */ |
Christopher Faulet | 2f35e7b | 2022-03-31 11:09:28 +0200 | [diff] [blame] | 559 | if (!channel_is_empty(oc) && !(si->cs->wait_event.events & SUB_RETRY_SEND)) |
Willy Tarreau | 908d26f | 2018-10-25 14:02:47 +0200 | [diff] [blame] | 560 | si_cs_send(cs); |
| 561 | |
Christopher Faulet | af642df | 2022-03-30 10:06:11 +0200 | [diff] [blame] | 562 | /* First step, report to the conn-stream what was detected at the |
Willy Tarreau | 651e182 | 2015-09-23 20:06:13 +0200 | [diff] [blame] | 563 | * connection layer : errors and connection establishment. |
Christopher Faulet | 6cd56d5 | 2022-03-30 10:47:32 +0200 | [diff] [blame] | 564 | * Only add CS_EP_ERROR if we're connected, or we're attempting to |
Olivier Houchard | c31e2cb | 2019-06-24 16:08:08 +0200 | [diff] [blame] | 565 | * connect, we may get there because we got woken up, but only run |
| 566 | * after process_stream() noticed there were an error, and decided |
| 567 | * to retry to connect, the connection may still have CO_FL_ERROR, |
Christopher Faulet | 6cd56d5 | 2022-03-30 10:47:32 +0200 | [diff] [blame] | 568 | * and we don't want to add CS_EP_ERROR back |
Christopher Faulet | 36b536d | 2019-11-20 11:56:33 +0100 | [diff] [blame] | 569 | * |
| 570 | * Note: This test is only required because si_cs_process is also the SI |
| 571 | * wake callback. Otherwise si_cs_recv()/si_cs_send() already take |
| 572 | * care of it. |
Willy Tarreau | 651e182 | 2015-09-23 20:06:13 +0200 | [diff] [blame] | 573 | */ |
Willy Tarreau | d1480cc | 2022-03-17 16:19:09 +0100 | [diff] [blame] | 574 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 575 | if (si->cs->state >= CS_ST_CON) { |
Christopher Faulet | 6cd56d5 | 2022-03-30 10:47:32 +0200 | [diff] [blame] | 576 | if (si_is_conn_error(si)) |
| 577 | cs->endp->flags |= CS_EP_ERROR; |
Willy Tarreau | d1480cc | 2022-03-17 16:19:09 +0100 | [diff] [blame] | 578 | } |
Willy Tarreau | 3c55ec2 | 2012-07-23 19:19:51 +0200 | [diff] [blame] | 579 | |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 580 | /* If we had early data, and the handshake ended, then |
| 581 | * we can remove the flag, and attempt to wake the task up, |
| 582 | * in the event there's an analyser waiting for the end of |
| 583 | * the handshake. |
| 584 | */ |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 585 | if (!(conn->flags & (CO_FL_WAIT_XPRT | CO_FL_EARLY_SSL_HS)) && |
Christopher Faulet | e9e4820 | 2022-03-22 18:13:29 +0100 | [diff] [blame] | 586 | (cs->endp->flags & CS_EP_WAIT_FOR_HS)) { |
| 587 | cs->endp->flags &= ~CS_EP_WAIT_FOR_HS; |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 588 | task_wakeup(si_task(si), TASK_WOKEN_MSG); |
| 589 | } |
| 590 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 591 | if (!cs_state_in(si->cs->state, CS_SB_EST|CS_SB_DIS|CS_SB_CLO) && |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 592 | (conn->flags & CO_FL_WAIT_XPRT) == 0) { |
Christopher Faulet | ae024ce | 2022-03-29 19:02:31 +0200 | [diff] [blame] | 593 | __cs_strm(cs)->conn_exp = TICK_ETERNITY; |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 594 | oc->flags |= CF_WRITE_NULL; |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 595 | if (si->cs->state == CS_ST_CON) |
| 596 | si->cs->state = CS_ST_RDY; |
Willy Tarreau | 8f8c92f | 2012-07-23 19:45:44 +0200 | [diff] [blame] | 597 | } |
| 598 | |
Christopher Faulet | 89e34c2 | 2021-01-21 16:22:01 +0100 | [diff] [blame] | 599 | /* Report EOS on the channel if it was reached from the mux point of |
| 600 | * view. |
| 601 | * |
| 602 | * Note: This test is only required because si_cs_process is also the SI |
| 603 | * wake callback. Otherwise si_cs_recv()/si_cs_send() already take |
| 604 | * care of it. |
| 605 | */ |
Christopher Faulet | b041b23 | 2022-03-24 10:27:02 +0100 | [diff] [blame] | 606 | if (cs->endp->flags & CS_EP_EOS && !(ic->flags & CF_SHUTR)) { |
Christopher Faulet | 89e34c2 | 2021-01-21 16:22:01 +0100 | [diff] [blame] | 607 | /* we received a shutdown */ |
| 608 | ic->flags |= CF_READ_NULL; |
| 609 | if (ic->flags & CF_AUTO_CLOSE) |
| 610 | channel_shutw_now(ic); |
| 611 | stream_int_read0(si); |
| 612 | } |
| 613 | |
Christopher Faulet | 297d3e2 | 2019-03-22 14:16:14 +0100 | [diff] [blame] | 614 | /* Report EOI on the channel if it was reached from the mux point of |
Christopher Faulet | 36b536d | 2019-11-20 11:56:33 +0100 | [diff] [blame] | 615 | * view. |
| 616 | * |
| 617 | * Note: This test is only required because si_cs_process is also the SI |
| 618 | * wake callback. Otherwise si_cs_recv()/si_cs_send() already take |
| 619 | * care of it. |
| 620 | */ |
Christopher Faulet | b041b23 | 2022-03-24 10:27:02 +0100 | [diff] [blame] | 621 | if ((cs->endp->flags & CS_EP_EOI) && !(ic->flags & CF_EOI)) |
Christopher Faulet | 8e9e3ef | 2019-05-17 09:14:10 +0200 | [diff] [blame] | 622 | ic->flags |= (CF_EOI|CF_READ_PARTIAL); |
Christopher Faulet | 203b2b0 | 2019-03-08 09:23:46 +0100 | [diff] [blame] | 623 | |
Willy Tarreau | 651e182 | 2015-09-23 20:06:13 +0200 | [diff] [blame] | 624 | /* Second step : update the stream-int and channels, try to forward any |
| 625 | * pending data, then possibly wake the stream up based on the new |
| 626 | * stream-int status. |
Willy Tarreau | 44b5dc6 | 2012-08-24 12:12:53 +0200 | [diff] [blame] | 627 | */ |
Willy Tarreau | 651e182 | 2015-09-23 20:06:13 +0200 | [diff] [blame] | 628 | stream_int_notify(si); |
Willy Tarreau | a64c703 | 2019-08-01 14:17:02 +0200 | [diff] [blame] | 629 | stream_release_buffers(si_strm(si)); |
Willy Tarreau | 2396c1c | 2012-10-03 21:12:16 +0200 | [diff] [blame] | 630 | return 0; |
Willy Tarreau | fd31e53 | 2012-07-23 18:24:25 +0200 | [diff] [blame] | 631 | } |
Willy Tarreau | 2c6be84 | 2012-07-06 17:12:34 +0200 | [diff] [blame] | 632 | |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 633 | /* |
| 634 | * This function is called to send buffer data to a stream socket. |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 635 | * It calls the mux layer's snd_buf function. It relies on the |
Godbach | 4f48990 | 2013-12-04 17:24:06 +0800 | [diff] [blame] | 636 | * caller to commit polling changes. The caller should check conn->flags |
| 637 | * for errors. |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 638 | */ |
Christopher Faulet | 4941623 | 2022-02-28 09:14:46 +0100 | [diff] [blame] | 639 | static int si_cs_send(struct conn_stream *cs) |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 640 | { |
Christopher Faulet | 693b23b | 2022-02-28 09:09:05 +0100 | [diff] [blame] | 641 | struct connection *conn = __cs_conn(cs); |
Christopher Faulet | f835dea | 2021-12-21 14:35:17 +0100 | [diff] [blame] | 642 | struct stream_interface *si = cs_si(cs); |
Christopher Faulet | e05bf9e | 2022-03-29 15:23:40 +0200 | [diff] [blame] | 643 | struct stream *s = si_strm(si); |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 644 | struct channel *oc = si_oc(si); |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 645 | int ret; |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 646 | int did_send = 0; |
| 647 | |
Christopher Faulet | b041b23 | 2022-03-24 10:27:02 +0100 | [diff] [blame] | 648 | if (cs->endp->flags & (CS_EP_ERROR|CS_EP_ERR_PENDING) || si_is_conn_error(si)) { |
Olivier Houchard | c31e2cb | 2019-06-24 16:08:08 +0200 | [diff] [blame] | 649 | /* We're probably there because the tasklet was woken up, |
| 650 | * but process_stream() ran before, detected there were an |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 651 | * error and put the si back to CS_ST_TAR. There's still |
Olivier Houchard | c31e2cb | 2019-06-24 16:08:08 +0200 | [diff] [blame] | 652 | * CO_FL_ERROR on the connection but we don't want to add |
Christopher Faulet | 6cd56d5 | 2022-03-30 10:47:32 +0200 | [diff] [blame] | 653 | * CS_EP_ERROR back, so give up |
Olivier Houchard | c31e2cb | 2019-06-24 16:08:08 +0200 | [diff] [blame] | 654 | */ |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 655 | if (si->cs->state < CS_ST_CON) |
Olivier Houchard | c31e2cb | 2019-06-24 16:08:08 +0200 | [diff] [blame] | 656 | return 0; |
Christopher Faulet | 6cd56d5 | 2022-03-30 10:47:32 +0200 | [diff] [blame] | 657 | cs->endp->flags |= CS_EP_ERROR; |
Olivier Houchard | c2aa711 | 2018-09-11 18:27:21 +0200 | [diff] [blame] | 658 | return 1; |
Willy Tarreau | bddf7fc | 2018-12-19 17:17:10 +0100 | [diff] [blame] | 659 | } |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 660 | |
Christopher Faulet | 328ed22 | 2019-09-23 15:57:29 +0200 | [diff] [blame] | 661 | /* We're already waiting to be able to send, give up */ |
Christopher Faulet | 2f35e7b | 2022-03-31 11:09:28 +0200 | [diff] [blame] | 662 | if (si->cs->wait_event.events & SUB_RETRY_SEND) |
Christopher Faulet | 328ed22 | 2019-09-23 15:57:29 +0200 | [diff] [blame] | 663 | return 0; |
| 664 | |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 665 | /* we might have been called just after an asynchronous shutw */ |
Willy Tarreau | f22758d | 2020-01-23 18:25:23 +0100 | [diff] [blame] | 666 | if (oc->flags & CF_SHUTW) |
Olivier Houchard | c2aa711 | 2018-09-11 18:27:21 +0200 | [diff] [blame] | 667 | return 1; |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 668 | |
Christopher Faulet | e96993b | 2020-07-30 09:26:46 +0200 | [diff] [blame] | 669 | /* we must wait because the mux is not installed yet */ |
| 670 | if (!conn->mux) |
| 671 | return 0; |
| 672 | |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 673 | if (oc->pipe && conn->xprt->snd_pipe && conn->mux->snd_pipe) { |
| 674 | ret = conn->mux->snd_pipe(cs, oc->pipe); |
Christopher Faulet | 86162db | 2019-07-05 11:49:11 +0200 | [diff] [blame] | 675 | if (ret > 0) |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 676 | did_send = 1; |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 677 | |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 678 | if (!oc->pipe->data) { |
| 679 | put_pipe(oc->pipe); |
| 680 | oc->pipe = NULL; |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 681 | } |
| 682 | |
Christopher Faulet | 3f76f4c | 2018-11-20 10:21:08 +0100 | [diff] [blame] | 683 | if (oc->pipe) |
| 684 | goto end; |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 685 | } |
| 686 | |
| 687 | /* At this point, the pipe is empty, but we may still have data pending |
| 688 | * in the normal buffer. |
| 689 | */ |
Christopher Faulet | 55dec0d | 2018-11-20 10:30:02 +0100 | [diff] [blame] | 690 | if (co_data(oc)) { |
| 691 | /* when we're here, we already know that there is no spliced |
| 692 | * data left, and that there are sendable buffered data. |
| 693 | */ |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 694 | |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 695 | /* check if we want to inform the kernel that we're interested in |
| 696 | * sending more data after this call. We want this if : |
| 697 | * - we're about to close after this last send and want to merge |
| 698 | * the ongoing FIN with the last segment. |
| 699 | * - we know we can't send everything at once and must get back |
| 700 | * here because of unaligned data |
| 701 | * - there is still a finite amount of data to forward |
| 702 | * The test is arranged so that the most common case does only 2 |
| 703 | * tests. |
| 704 | */ |
Willy Tarreau | 1049b1f | 2014-02-02 01:51:17 +0100 | [diff] [blame] | 705 | unsigned int send_flag = 0; |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 706 | |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 707 | if ((!(oc->flags & (CF_NEVER_WAIT|CF_SEND_DONTWAIT)) && |
| 708 | ((oc->to_forward && oc->to_forward != CHN_INFINITE_FORWARD) || |
Willy Tarreau | 8945bb6 | 2020-06-19 17:07:06 +0200 | [diff] [blame] | 709 | (oc->flags & CF_EXPECT_MORE) || |
Christopher Faulet | 9e3dc83 | 2020-07-22 16:28:44 +0200 | [diff] [blame] | 710 | (IS_HTX_STRM(si_strm(si)) && |
| 711 | (!(oc->flags & (CF_EOI|CF_SHUTR)) && htx_expect_more(htxbuf(&oc->buf)))))) || |
Willy Tarreau | ecd2e15 | 2017-11-07 15:07:25 +0100 | [diff] [blame] | 712 | ((oc->flags & CF_ISRESP) && |
| 713 | ((oc->flags & (CF_AUTO_CLOSE|CF_SHUTW_NOW)) == (CF_AUTO_CLOSE|CF_SHUTW_NOW)))) |
Willy Tarreau | 1049b1f | 2014-02-02 01:51:17 +0100 | [diff] [blame] | 714 | send_flag |= CO_SFL_MSG_MORE; |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 715 | |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 716 | if (oc->flags & CF_STREAMER) |
Willy Tarreau | 7bed945 | 2014-02-02 02:00:24 +0100 | [diff] [blame] | 717 | send_flag |= CO_SFL_STREAMER; |
| 718 | |
Christopher Faulet | e05bf9e | 2022-03-29 15:23:40 +0200 | [diff] [blame] | 719 | if (s->txn && s->txn->flags & TX_L7_RETRY && !b_data(&s->txn->l7_buffer)) { |
Christopher Faulet | 9f5382e | 2021-05-21 13:46:14 +0200 | [diff] [blame] | 720 | /* If we want to be able to do L7 retries, copy |
| 721 | * the data we're about to send, so that we are able |
| 722 | * to resend them if needed |
| 723 | */ |
| 724 | /* Try to allocate a buffer if we had none. |
| 725 | * If it fails, the next test will just |
| 726 | * disable the l7 retries by setting |
| 727 | * l7_conn_retries to 0. |
| 728 | */ |
Christopher Faulet | e05bf9e | 2022-03-29 15:23:40 +0200 | [diff] [blame] | 729 | if (s->txn->req.msg_state != HTTP_MSG_DONE) |
| 730 | s->txn->flags &= ~TX_L7_RETRY; |
Christopher Faulet | 9f5382e | 2021-05-21 13:46:14 +0200 | [diff] [blame] | 731 | else { |
Christopher Faulet | e05bf9e | 2022-03-29 15:23:40 +0200 | [diff] [blame] | 732 | if (b_alloc(&s->txn->l7_buffer) == NULL) |
| 733 | s->txn->flags &= ~TX_L7_RETRY; |
Christopher Faulet | 9f5382e | 2021-05-21 13:46:14 +0200 | [diff] [blame] | 734 | else { |
Christopher Faulet | e05bf9e | 2022-03-29 15:23:40 +0200 | [diff] [blame] | 735 | memcpy(b_orig(&s->txn->l7_buffer), |
Christopher Faulet | 9f5382e | 2021-05-21 13:46:14 +0200 | [diff] [blame] | 736 | b_orig(&oc->buf), |
| 737 | b_size(&oc->buf)); |
Christopher Faulet | e05bf9e | 2022-03-29 15:23:40 +0200 | [diff] [blame] | 738 | s->txn->l7_buffer.head = co_data(oc); |
| 739 | b_add(&s->txn->l7_buffer, co_data(oc)); |
Christopher Faulet | 9f5382e | 2021-05-21 13:46:14 +0200 | [diff] [blame] | 740 | } |
| 741 | |
| 742 | } |
| 743 | } |
| 744 | |
Christopher Faulet | 897d612 | 2021-12-17 17:28:35 +0100 | [diff] [blame] | 745 | ret = conn->mux->snd_buf(cs, &oc->buf, co_data(oc), send_flag); |
Godbach | e68e02d | 2013-10-11 15:48:29 +0800 | [diff] [blame] | 746 | if (ret > 0) { |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 747 | did_send = 1; |
Willy Tarreau | 8424004 | 2022-02-28 16:51:23 +0100 | [diff] [blame] | 748 | c_rew(oc, ret); |
Willy Tarreau | deccd11 | 2018-06-14 18:38:55 +0200 | [diff] [blame] | 749 | c_realign_if_empty(oc); |
| 750 | |
| 751 | if (!co_data(oc)) { |
Godbach | e68e02d | 2013-10-11 15:48:29 +0800 | [diff] [blame] | 752 | /* Always clear both flags once everything has been sent, they're one-shot */ |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 753 | oc->flags &= ~(CF_EXPECT_MORE | CF_SEND_DONTWAIT); |
Godbach | e68e02d | 2013-10-11 15:48:29 +0800 | [diff] [blame] | 754 | } |
Godbach | e68e02d | 2013-10-11 15:48:29 +0800 | [diff] [blame] | 755 | /* if some data remain in the buffer, it's only because the |
| 756 | * system buffers are full, we will try next time. |
| 757 | */ |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 758 | } |
Godbach | e68e02d | 2013-10-11 15:48:29 +0800 | [diff] [blame] | 759 | } |
Christopher Faulet | 55dec0d | 2018-11-20 10:30:02 +0100 | [diff] [blame] | 760 | |
Willy Tarreau | f6975aa | 2018-11-15 14:33:05 +0100 | [diff] [blame] | 761 | end: |
Christopher Faulet | 86162db | 2019-07-05 11:49:11 +0200 | [diff] [blame] | 762 | if (did_send) { |
| 763 | oc->flags |= CF_WRITE_PARTIAL | CF_WROTE_DATA; |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 764 | if (si->cs->state == CS_ST_CON) |
| 765 | si->cs->state = CS_ST_RDY; |
Christopher Faulet | 037b3eb | 2019-07-05 13:44:29 +0200 | [diff] [blame] | 766 | |
| 767 | si_rx_room_rdy(si_opposite(si)); |
Christopher Faulet | 86162db | 2019-07-05 11:49:11 +0200 | [diff] [blame] | 768 | } |
| 769 | |
Christopher Faulet | b041b23 | 2022-03-24 10:27:02 +0100 | [diff] [blame] | 770 | if (cs->endp->flags & (CS_EP_ERROR|CS_EP_ERR_PENDING)) { |
Christopher Faulet | 6cd56d5 | 2022-03-30 10:47:32 +0200 | [diff] [blame] | 771 | cs->endp->flags |= CS_EP_ERROR; |
Christopher Faulet | 86162db | 2019-07-05 11:49:11 +0200 | [diff] [blame] | 772 | return 1; |
| 773 | } |
| 774 | |
Olivier Houchard | 910b2bc | 2018-07-17 18:49:38 +0200 | [diff] [blame] | 775 | /* We couldn't send all of our data, let the mux know we'd like to send more */ |
Willy Tarreau | 691fe39 | 2018-11-12 18:48:52 +0100 | [diff] [blame] | 776 | if (!channel_is_empty(oc)) |
Christopher Faulet | 2f35e7b | 2022-03-31 11:09:28 +0200 | [diff] [blame] | 777 | conn->mux->subscribe(cs, SUB_RETRY_SEND, &si->cs->wait_event); |
Olivier Houchard | f653528 | 2018-08-31 17:29:12 +0200 | [diff] [blame] | 778 | return did_send; |
Willy Tarreau | 5368d80 | 2012-08-21 18:22:06 +0200 | [diff] [blame] | 779 | } |
| 780 | |
Christopher Faulet | 2f35e7b | 2022-03-31 11:09:28 +0200 | [diff] [blame] | 781 | /* This is the ->process() function for any conn-stream's wait_event task. |
Willy Tarreau | 8ccd208 | 2018-11-07 07:47:52 +0100 | [diff] [blame] | 782 | * It's assigned during the stream-interface's initialization, for any type of |
| 783 | * stream interface. Thus it is always safe to perform a tasklet_wakeup() on a |
| 784 | * stream interface, as the presence of the CS is checked there. |
| 785 | */ |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 786 | struct task *si_cs_io_cb(struct task *t, void *ctx, unsigned int state) |
Olivier Houchard | 91894cb | 2018-08-02 18:06:28 +0200 | [diff] [blame] | 787 | { |
Olivier Houchard | 8f0b4c6 | 2018-08-02 18:21:38 +0200 | [diff] [blame] | 788 | struct stream_interface *si = ctx; |
Christopher Faulet | 13a35e5 | 2021-12-20 15:34:16 +0100 | [diff] [blame] | 789 | struct conn_stream *cs = si->cs; |
Olivier Houchard | f653528 | 2018-08-31 17:29:12 +0200 | [diff] [blame] | 790 | int ret = 0; |
Olivier Houchard | a6ff035 | 2018-08-21 15:59:43 +0200 | [diff] [blame] | 791 | |
Christopher Faulet | 0256da1 | 2021-12-15 09:50:17 +0100 | [diff] [blame] | 792 | if (!cs_conn(cs)) |
Willy Tarreau | 7416314 | 2021-03-13 11:30:19 +0100 | [diff] [blame] | 793 | return t; |
Willy Tarreau | 8ccd208 | 2018-11-07 07:47:52 +0100 | [diff] [blame] | 794 | |
Christopher Faulet | 2f35e7b | 2022-03-31 11:09:28 +0200 | [diff] [blame] | 795 | if (!(cs->wait_event.events & SUB_RETRY_SEND) && !channel_is_empty(si_oc(si))) |
Olivier Houchard | f653528 | 2018-08-31 17:29:12 +0200 | [diff] [blame] | 796 | ret = si_cs_send(cs); |
Christopher Faulet | 2f35e7b | 2022-03-31 11:09:28 +0200 | [diff] [blame] | 797 | if (!(cs->wait_event.events & SUB_RETRY_RECV)) |
Olivier Houchard | f653528 | 2018-08-31 17:29:12 +0200 | [diff] [blame] | 798 | ret |= si_cs_recv(cs); |
| 799 | if (ret != 0) |
Olivier Houchard | c2aa711 | 2018-09-11 18:27:21 +0200 | [diff] [blame] | 800 | si_cs_process(cs); |
Olivier Houchard | f653528 | 2018-08-31 17:29:12 +0200 | [diff] [blame] | 801 | |
Willy Tarreau | a64c703 | 2019-08-01 14:17:02 +0200 | [diff] [blame] | 802 | stream_release_buffers(si_strm(si)); |
Willy Tarreau | 7416314 | 2021-03-13 11:30:19 +0100 | [diff] [blame] | 803 | return t; |
Olivier Houchard | 91894cb | 2018-08-02 18:06:28 +0200 | [diff] [blame] | 804 | } |
| 805 | |
Willy Tarreau | 25f1310 | 2015-09-24 11:32:22 +0200 | [diff] [blame] | 806 | /* This function is designed to be called from within the stream handler to |
Willy Tarreau | 236c429 | 2019-06-06 08:19:20 +0200 | [diff] [blame] | 807 | * update the input channel's expiration timer and the stream interface's |
| 808 | * Rx flags based on the channel's flags. It needs to be called only once |
| 809 | * after the channel's flags have settled down, and before they are cleared, |
| 810 | * though it doesn't harm to call it as often as desired (it just slightly |
| 811 | * hurts performance). It must not be called from outside of the stream |
| 812 | * handler, as what it does will be used to compute the stream task's |
| 813 | * expiration. |
Willy Tarreau | 25f1310 | 2015-09-24 11:32:22 +0200 | [diff] [blame] | 814 | */ |
Willy Tarreau | 236c429 | 2019-06-06 08:19:20 +0200 | [diff] [blame] | 815 | void si_update_rx(struct stream_interface *si) |
Willy Tarreau | 25f1310 | 2015-09-24 11:32:22 +0200 | [diff] [blame] | 816 | { |
| 817 | struct channel *ic = si_ic(si); |
Willy Tarreau | 25f1310 | 2015-09-24 11:32:22 +0200 | [diff] [blame] | 818 | |
Willy Tarreau | 236c429 | 2019-06-06 08:19:20 +0200 | [diff] [blame] | 819 | if (ic->flags & CF_SHUTR) { |
| 820 | si_rx_shut_blk(si); |
| 821 | return; |
| 822 | } |
Willy Tarreau | b26a6f9 | 2018-11-14 17:10:36 +0100 | [diff] [blame] | 823 | |
Willy Tarreau | 236c429 | 2019-06-06 08:19:20 +0200 | [diff] [blame] | 824 | /* Read not closed, update FD status and timeout for reads */ |
| 825 | if (ic->flags & CF_DONT_READ) |
| 826 | si_rx_chan_blk(si); |
| 827 | else |
| 828 | si_rx_chan_rdy(si); |
Willy Tarreau | b26a6f9 | 2018-11-14 17:10:36 +0100 | [diff] [blame] | 829 | |
Christopher Faulet | 69fad00 | 2021-10-29 14:55:59 +0200 | [diff] [blame] | 830 | if (!channel_is_empty(ic) || !channel_may_recv(ic)) { |
Willy Tarreau | 236c429 | 2019-06-06 08:19:20 +0200 | [diff] [blame] | 831 | /* stop reading, imposed by channel's policy or contents */ |
| 832 | si_rx_room_blk(si); |
Willy Tarreau | 25f1310 | 2015-09-24 11:32:22 +0200 | [diff] [blame] | 833 | } |
Willy Tarreau | 236c429 | 2019-06-06 08:19:20 +0200 | [diff] [blame] | 834 | else { |
| 835 | /* (re)start reading and update timeout. Note: we don't recompute the timeout |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 836 | * every time we get here, otherwise it would risk never to expire. We only |
Willy Tarreau | 236c429 | 2019-06-06 08:19:20 +0200 | [diff] [blame] | 837 | * update it if is was not yet set. The stream socket handler will already |
| 838 | * have updated it if there has been a completed I/O. |
| 839 | */ |
| 840 | si_rx_room_rdy(si); |
| 841 | } |
| 842 | if (si->flags & SI_FL_RXBLK_ANY & ~SI_FL_RX_WAIT_EP) |
| 843 | ic->rex = TICK_ETERNITY; |
| 844 | else if (!(ic->flags & CF_READ_NOEXP) && !tick_isset(ic->rex)) |
| 845 | ic->rex = tick_add_ifset(now_ms, ic->rto); |
Willy Tarreau | 25f1310 | 2015-09-24 11:32:22 +0200 | [diff] [blame] | 846 | |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 847 | cs_chk_rcv(si->cs); |
Willy Tarreau | 236c429 | 2019-06-06 08:19:20 +0200 | [diff] [blame] | 848 | } |
| 849 | |
| 850 | /* This function is designed to be called from within the stream handler to |
| 851 | * update the output channel's expiration timer and the stream interface's |
| 852 | * Tx flags based on the channel's flags. It needs to be called only once |
| 853 | * after the channel's flags have settled down, and before they are cleared, |
| 854 | * though it doesn't harm to call it as often as desired (it just slightly |
| 855 | * hurts performance). It must not be called from outside of the stream |
| 856 | * handler, as what it does will be used to compute the stream task's |
| 857 | * expiration. |
| 858 | */ |
| 859 | void si_update_tx(struct stream_interface *si) |
| 860 | { |
| 861 | struct channel *oc = si_oc(si); |
| 862 | struct channel *ic = si_ic(si); |
| 863 | |
| 864 | if (oc->flags & CF_SHUTW) |
| 865 | return; |
| 866 | |
| 867 | /* Write not closed, update FD status and timeout for writes */ |
| 868 | if (channel_is_empty(oc)) { |
| 869 | /* stop writing */ |
| 870 | if (!(si->flags & SI_FL_WAIT_DATA)) { |
| 871 | if ((oc->flags & CF_SHUTW_NOW) == 0) |
| 872 | si->flags |= SI_FL_WAIT_DATA; |
| 873 | oc->wex = TICK_ETERNITY; |
Willy Tarreau | 25f1310 | 2015-09-24 11:32:22 +0200 | [diff] [blame] | 874 | } |
Willy Tarreau | 236c429 | 2019-06-06 08:19:20 +0200 | [diff] [blame] | 875 | return; |
| 876 | } |
| 877 | |
| 878 | /* (re)start writing and update timeout. Note: we don't recompute the timeout |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 879 | * every time we get here, otherwise it would risk never to expire. We only |
Willy Tarreau | 236c429 | 2019-06-06 08:19:20 +0200 | [diff] [blame] | 880 | * update it if is was not yet set. The stream socket handler will already |
| 881 | * have updated it if there has been a completed I/O. |
| 882 | */ |
| 883 | si->flags &= ~SI_FL_WAIT_DATA; |
| 884 | if (!tick_isset(oc->wex)) { |
| 885 | oc->wex = tick_add_ifset(now_ms, oc->wto); |
Christopher Faulet | a728518 | 2022-03-30 15:43:23 +0200 | [diff] [blame] | 886 | if (tick_isset(ic->rex) && !(si->cs->flags & CS_FL_INDEP_STR)) { |
Willy Tarreau | 236c429 | 2019-06-06 08:19:20 +0200 | [diff] [blame] | 887 | /* Note: depending on the protocol, we don't know if we're waiting |
| 888 | * for incoming data or not. So in order to prevent the socket from |
| 889 | * expiring read timeouts during writes, we refresh the read timeout, |
| 890 | * except if it was already infinite or if we have explicitly setup |
| 891 | * independent streams. |
Willy Tarreau | 25f1310 | 2015-09-24 11:32:22 +0200 | [diff] [blame] | 892 | */ |
Willy Tarreau | 236c429 | 2019-06-06 08:19:20 +0200 | [diff] [blame] | 893 | ic->rex = tick_add_ifset(now_ms, ic->rto); |
Willy Tarreau | 25f1310 | 2015-09-24 11:32:22 +0200 | [diff] [blame] | 894 | } |
| 895 | } |
| 896 | } |
| 897 | |
Christopher Faulet | 9936dc6 | 2022-02-28 09:21:58 +0100 | [diff] [blame] | 898 | /* This tries to perform a synchronous receive on the stream interface to |
| 899 | * try to collect last arrived data. In practice it's only implemented on |
| 900 | * conn_streams. Returns 0 if nothing was done, non-zero if new data or a |
| 901 | * shutdown were collected. This may result on some delayed receive calls |
| 902 | * to be programmed and performed later, though it doesn't provide any |
| 903 | * such guarantee. |
| 904 | */ |
| 905 | int si_sync_recv(struct stream_interface *si) |
| 906 | { |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 907 | if (!cs_state_in(si->cs->state, CS_SB_RDY|CS_SB_EST)) |
Christopher Faulet | 9936dc6 | 2022-02-28 09:21:58 +0100 | [diff] [blame] | 908 | return 0; |
| 909 | |
| 910 | if (!cs_conn_mux(si->cs)) |
| 911 | return 0; // only conn_streams are supported |
| 912 | |
Christopher Faulet | 2f35e7b | 2022-03-31 11:09:28 +0200 | [diff] [blame] | 913 | if (si->cs->wait_event.events & SUB_RETRY_RECV) |
Christopher Faulet | 9936dc6 | 2022-02-28 09:21:58 +0100 | [diff] [blame] | 914 | return 0; // already subscribed |
| 915 | |
| 916 | if (!si_rx_endp_ready(si) || si_rx_blocked(si)) |
| 917 | return 0; // already failed |
| 918 | |
| 919 | return si_cs_recv(si->cs); |
| 920 | } |
| 921 | |
Willy Tarreau | 3b285d7 | 2019-06-06 08:20:17 +0200 | [diff] [blame] | 922 | /* perform a synchronous send() for the stream interface. The CF_WRITE_NULL and |
| 923 | * CF_WRITE_PARTIAL flags are cleared prior to the attempt, and will possibly |
| 924 | * be updated in case of success. |
| 925 | */ |
| 926 | void si_sync_send(struct stream_interface *si) |
| 927 | { |
| 928 | struct channel *oc = si_oc(si); |
Willy Tarreau | 3b285d7 | 2019-06-06 08:20:17 +0200 | [diff] [blame] | 929 | |
| 930 | oc->flags &= ~(CF_WRITE_NULL|CF_WRITE_PARTIAL); |
| 931 | |
| 932 | if (oc->flags & CF_SHUTW) |
| 933 | return; |
| 934 | |
| 935 | if (channel_is_empty(oc)) |
| 936 | return; |
| 937 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 938 | if (!cs_state_in(si->cs->state, CS_SB_CON|CS_SB_RDY|CS_SB_EST)) |
Willy Tarreau | 3b285d7 | 2019-06-06 08:20:17 +0200 | [diff] [blame] | 939 | return; |
| 940 | |
Christopher Faulet | 13a35e5 | 2021-12-20 15:34:16 +0100 | [diff] [blame] | 941 | if (!cs_conn_mux(si->cs)) |
Willy Tarreau | 3b285d7 | 2019-06-06 08:20:17 +0200 | [diff] [blame] | 942 | return; |
| 943 | |
Christopher Faulet | 13a35e5 | 2021-12-20 15:34:16 +0100 | [diff] [blame] | 944 | si_cs_send(si->cs); |
Willy Tarreau | 3b285d7 | 2019-06-06 08:20:17 +0200 | [diff] [blame] | 945 | } |
| 946 | |
Willy Tarreau | d14844a | 2018-11-08 18:15:29 +0100 | [diff] [blame] | 947 | /* Updates at once the channel flags, and timers of both stream interfaces of a |
| 948 | * same stream, to complete the work after the analysers, then updates the data |
| 949 | * layer below. This will ensure that any synchronous update performed at the |
| 950 | * data layer will be reflected in the channel flags and/or stream-interface. |
Willy Tarreau | 829bd47 | 2019-06-06 09:17:23 +0200 | [diff] [blame] | 951 | * Note that this does not change the stream interface's current state, though |
| 952 | * it updates the previous state to the current one. |
Willy Tarreau | d14844a | 2018-11-08 18:15:29 +0100 | [diff] [blame] | 953 | */ |
| 954 | void si_update_both(struct stream_interface *si_f, struct stream_interface *si_b) |
| 955 | { |
| 956 | struct channel *req = si_ic(si_f); |
| 957 | struct channel *res = si_oc(si_f); |
Willy Tarreau | d14844a | 2018-11-08 18:15:29 +0100 | [diff] [blame] | 958 | |
| 959 | req->flags &= ~(CF_READ_NULL|CF_READ_PARTIAL|CF_READ_ATTACHED|CF_WRITE_NULL|CF_WRITE_PARTIAL); |
| 960 | res->flags &= ~(CF_READ_NULL|CF_READ_PARTIAL|CF_READ_ATTACHED|CF_WRITE_NULL|CF_WRITE_PARTIAL); |
| 961 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 962 | si_strm(si_b)->prev_conn_state = si_b->cs->state; |
Willy Tarreau | d14844a | 2018-11-08 18:15:29 +0100 | [diff] [blame] | 963 | |
Willy Tarreau | bf89ff3 | 2018-11-09 14:59:25 +0100 | [diff] [blame] | 964 | /* let's recompute both sides states */ |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 965 | if (cs_state_in(si_f->cs->state, CS_SB_RDY|CS_SB_EST)) |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 966 | si_update(si_f); |
Willy Tarreau | bf89ff3 | 2018-11-09 14:59:25 +0100 | [diff] [blame] | 967 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 968 | if (cs_state_in(si_b->cs->state, CS_SB_RDY|CS_SB_EST)) |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 969 | si_update(si_b); |
Willy Tarreau | bf89ff3 | 2018-11-09 14:59:25 +0100 | [diff] [blame] | 970 | |
| 971 | /* stream ints are processed outside of process_stream() and must be |
| 972 | * handled at the latest moment. |
| 973 | */ |
Christopher Faulet | 13a35e5 | 2021-12-20 15:34:16 +0100 | [diff] [blame] | 974 | if (cs_appctx(si_f->cs) && |
Willy Tarreau | 32742fd | 2018-11-14 14:07:59 +0100 | [diff] [blame] | 975 | ((si_rx_endp_ready(si_f) && !si_rx_blocked(si_f)) || |
| 976 | (si_tx_endp_ready(si_f) && !si_tx_blocked(si_f)))) |
Christopher Faulet | 693b23b | 2022-02-28 09:09:05 +0100 | [diff] [blame] | 977 | appctx_wakeup(__cs_appctx(si_f->cs)); |
Willy Tarreau | d14844a | 2018-11-08 18:15:29 +0100 | [diff] [blame] | 978 | |
Christopher Faulet | 13a35e5 | 2021-12-20 15:34:16 +0100 | [diff] [blame] | 979 | if (cs_appctx(si_b->cs) && |
Willy Tarreau | 32742fd | 2018-11-14 14:07:59 +0100 | [diff] [blame] | 980 | ((si_rx_endp_ready(si_b) && !si_rx_blocked(si_b)) || |
| 981 | (si_tx_endp_ready(si_b) && !si_tx_blocked(si_b)))) |
Christopher Faulet | 693b23b | 2022-02-28 09:09:05 +0100 | [diff] [blame] | 982 | appctx_wakeup(__cs_appctx(si_b->cs)); |
Willy Tarreau | d14844a | 2018-11-08 18:15:29 +0100 | [diff] [blame] | 983 | } |
| 984 | |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 985 | /* |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 986 | * This function performs a shutdown-read on a conn-stream attached to |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 987 | * a connection in a connected or init state (it does nothing for other |
| 988 | * states). It either shuts the read side or marks itself as closed. The buffer |
| 989 | * flags are updated to reflect the new state. If the stream interface has |
Christopher Faulet | 8abe712 | 2022-03-30 15:10:18 +0200 | [diff] [blame] | 990 | * CS_FL_NOHALF, we also forward the close to the write side. If a control |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 991 | * layer is defined, then it is supposed to be a socket layer and file |
Willy Tarreau | 6fe1541 | 2013-09-29 15:16:03 +0200 | [diff] [blame] | 992 | * descriptors are then shutdown or closed accordingly. The function |
| 993 | * automatically disables polling if needed. |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 994 | */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 995 | static void cs_app_shutr_conn(struct conn_stream *cs) |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 996 | { |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 997 | struct channel *ic = cs_ic(cs); |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 998 | |
Christopher Faulet | 13a35e5 | 2021-12-20 15:34:16 +0100 | [diff] [blame] | 999 | BUG_ON(!cs_conn(cs)); |
| 1000 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1001 | si_rx_shut_blk(cs->si); |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1002 | if (ic->flags & CF_SHUTR) |
Willy Tarreau | 6fe1541 | 2013-09-29 15:16:03 +0200 | [diff] [blame] | 1003 | return; |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1004 | ic->flags |= CF_SHUTR; |
| 1005 | ic->rex = TICK_ETERNITY; |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 1006 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1007 | if (!cs_state_in(cs->state, CS_SB_CON|CS_SB_RDY|CS_SB_EST)) |
Willy Tarreau | 6fe1541 | 2013-09-29 15:16:03 +0200 | [diff] [blame] | 1008 | return; |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 1009 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1010 | if (cs_oc(cs)->flags & CF_SHUTW) { |
Christopher Faulet | 69ef6c9 | 2022-03-31 14:20:00 +0200 | [diff] [blame] | 1011 | cs_conn_close(cs); |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1012 | cs->state = CS_ST_DIS; |
Christopher Faulet | ae024ce | 2022-03-29 19:02:31 +0200 | [diff] [blame] | 1013 | __cs_strm(cs)->conn_exp = TICK_ETERNITY; |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 1014 | } |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1015 | else if (cs->flags & CS_FL_NOHALF) { |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 1016 | /* we want to immediately forward this close to the write side */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1017 | return cs_app_shutw_conn(cs); |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 1018 | } |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 1019 | } |
| 1020 | |
| 1021 | /* |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1022 | * This function performs a shutdown-write on a conn-stream attached to |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 1023 | * a connection in a connected or init state (it does nothing for other |
| 1024 | * states). It either shuts the write side or marks itself as closed. The |
| 1025 | * buffer flags are updated to reflect the new state. It does also close |
| 1026 | * everything if the SI was marked as being in error state. If there is a |
Willy Tarreau | 1398aa1 | 2015-03-12 23:04:07 +0100 | [diff] [blame] | 1027 | * data-layer shutdown, it is called. |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 1028 | */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1029 | static void cs_app_shutw_conn(struct conn_stream *cs) |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 1030 | { |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1031 | struct channel *ic = cs_ic(cs); |
| 1032 | struct channel *oc = cs_oc(cs); |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 1033 | |
Christopher Faulet | 13a35e5 | 2021-12-20 15:34:16 +0100 | [diff] [blame] | 1034 | BUG_ON(!cs_conn(cs)); |
| 1035 | |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1036 | oc->flags &= ~CF_SHUTW_NOW; |
| 1037 | if (oc->flags & CF_SHUTW) |
Willy Tarreau | 6fe1541 | 2013-09-29 15:16:03 +0200 | [diff] [blame] | 1038 | return; |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1039 | oc->flags |= CF_SHUTW; |
| 1040 | oc->wex = TICK_ETERNITY; |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1041 | si_done_get(cs->si); |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 1042 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1043 | if (tick_isset(cs->hcto)) { |
| 1044 | ic->rto = cs->hcto; |
Hongbo Long | e39683c | 2017-03-10 18:41:51 +0100 | [diff] [blame] | 1045 | ic->rex = tick_add(now_ms, ic->rto); |
| 1046 | } |
| 1047 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1048 | switch (cs->state) { |
| 1049 | case CS_ST_RDY: |
| 1050 | case CS_ST_EST: |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 1051 | /* we have to shut before closing, otherwise some short messages |
| 1052 | * may never leave the system, especially when there are remaining |
| 1053 | * unread data in the socket input buffer, or when nolinger is set. |
Christopher Faulet | 8abe712 | 2022-03-30 15:10:18 +0200 | [diff] [blame] | 1054 | * However, if CS_FL_NOLINGER is explicitly set, we know there is |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 1055 | * no risk so we close both sides immediately. |
| 1056 | */ |
Willy Tarreau | 51d0a7e | 2019-01-31 19:09:59 +0100 | [diff] [blame] | 1057 | |
Christopher Faulet | 6cd56d5 | 2022-03-30 10:47:32 +0200 | [diff] [blame] | 1058 | if (cs->endp->flags & CS_EP_ERROR) { |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 1059 | /* quick close, the socket is already shut anyway */ |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 1060 | } |
Christopher Faulet | 8abe712 | 2022-03-30 15:10:18 +0200 | [diff] [blame] | 1061 | else if (cs->flags & CS_FL_NOLINGER) { |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 1062 | /* unclean data-layer shutdown, typically an aborted request |
| 1063 | * or a forwarded shutdown from a client to a server due to |
| 1064 | * option abortonclose. No need for the TLS layer to try to |
| 1065 | * emit a shutdown message. |
| 1066 | */ |
Christopher Faulet | 69ef6c9 | 2022-03-31 14:20:00 +0200 | [diff] [blame] | 1067 | cs_conn_shutw(cs, CO_SHW_SILENT); |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 1068 | } |
| 1069 | else { |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 1070 | /* clean data-layer shutdown. This only happens on the |
| 1071 | * frontend side, or on the backend side when forwarding |
| 1072 | * a client close in TCP mode or in HTTP TUNNEL mode |
| 1073 | * while option abortonclose is set. We want the TLS |
| 1074 | * layer to try to signal it to the peer before we close. |
| 1075 | */ |
Christopher Faulet | 69ef6c9 | 2022-03-31 14:20:00 +0200 | [diff] [blame] | 1076 | cs_conn_shutw(cs, CO_SHW_NORMAL); |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 1077 | |
Willy Tarreau | a5ea751 | 2020-12-11 10:24:05 +0100 | [diff] [blame] | 1078 | if (!(ic->flags & (CF_SHUTR|CF_DONT_READ))) |
Willy Tarreau | a553ae9 | 2017-10-05 18:52:17 +0200 | [diff] [blame] | 1079 | return; |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 1080 | } |
| 1081 | |
| 1082 | /* fall through */ |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1083 | case CS_ST_CON: |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 1084 | /* we may have to close a pending connection, and mark the |
| 1085 | * response buffer as shutr |
| 1086 | */ |
Christopher Faulet | 69ef6c9 | 2022-03-31 14:20:00 +0200 | [diff] [blame] | 1087 | cs_conn_close(cs); |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 1088 | /* fall through */ |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1089 | case CS_ST_CER: |
| 1090 | case CS_ST_QUE: |
| 1091 | case CS_ST_TAR: |
| 1092 | cs->state = CS_ST_DIS; |
Willy Tarreau | 4a59f2f | 2013-10-24 20:10:45 +0200 | [diff] [blame] | 1093 | /* fall through */ |
Willy Tarreau | 8b3d7df | 2013-09-29 14:51:58 +0200 | [diff] [blame] | 1094 | default: |
Christopher Faulet | 8abe712 | 2022-03-30 15:10:18 +0200 | [diff] [blame] | 1095 | cs->flags &= ~CS_FL_NOLINGER; |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1096 | si_rx_shut_blk(cs->si); |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1097 | ic->flags |= CF_SHUTR; |
| 1098 | ic->rex = TICK_ETERNITY; |
Christopher Faulet | ae024ce | 2022-03-29 19:02:31 +0200 | [diff] [blame] | 1099 | __cs_strm(cs)->conn_exp = TICK_ETERNITY; |
Willy Tarreau | 100c467 | 2012-08-20 12:06:26 +0200 | [diff] [blame] | 1100 | } |
| 1101 | } |
| 1102 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1103 | /* This function is used for inter-conn-stream calls. It is called by the |
Willy Tarreau | 46a8d92 | 2012-08-20 12:38:36 +0200 | [diff] [blame] | 1104 | * consumer to inform the producer side that it may be interested in checking |
| 1105 | * for free space in the buffer. Note that it intentionally does not update |
| 1106 | * timeouts, so that we can still check them later at wake-up. This function is |
| 1107 | * dedicated to connection-based stream interfaces. |
| 1108 | */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1109 | static void cs_app_chk_rcv_conn(struct conn_stream *cs) |
Willy Tarreau | 46a8d92 | 2012-08-20 12:38:36 +0200 | [diff] [blame] | 1110 | { |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1111 | BUG_ON(!cs_conn(cs)); |
| 1112 | |
Christopher Faulet | b3e0de4 | 2018-10-11 13:54:13 +0200 | [diff] [blame] | 1113 | /* (re)start reading */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1114 | if (cs_state_in(cs->state, CS_SB_CON|CS_SB_RDY|CS_SB_EST)) |
| 1115 | tasklet_wakeup(cs->wait_event.tasklet); |
Willy Tarreau | 46a8d92 | 2012-08-20 12:38:36 +0200 | [diff] [blame] | 1116 | } |
| 1117 | |
| 1118 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1119 | /* This function is used for inter-conn-stream calls. It is called by the |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 1120 | * producer to inform the consumer side that it may be interested in checking |
| 1121 | * for data in the buffer. Note that it intentionally does not update timeouts, |
| 1122 | * so that we can still check them later at wake-up. |
| 1123 | */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1124 | static void cs_app_chk_snd_conn(struct conn_stream *cs) |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 1125 | { |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1126 | struct channel *oc = cs_oc(cs); |
Christopher Faulet | 897d612 | 2021-12-17 17:28:35 +0100 | [diff] [blame] | 1127 | |
Willy Tarreau | 0c3205a | 2022-03-23 11:11:31 +0100 | [diff] [blame] | 1128 | BUG_ON(!cs_conn(cs)); |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 1129 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1130 | if (unlikely(!cs_state_in(cs->state, CS_SB_CON|CS_SB_RDY|CS_SB_EST) || |
Olivier Houchard | b2fc04e | 2019-04-11 13:56:26 +0200 | [diff] [blame] | 1131 | (oc->flags & CF_SHUTW))) |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 1132 | return; |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 1133 | |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1134 | if (unlikely(channel_is_empty(oc))) /* called with nothing to send ! */ |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 1135 | return; |
| 1136 | |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1137 | if (!oc->pipe && /* spliced data wants to be forwarded ASAP */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1138 | !(cs->si->flags & SI_FL_WAIT_DATA)) /* not waiting for data */ |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 1139 | return; |
| 1140 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1141 | if (!(cs->wait_event.events & SUB_RETRY_SEND) && !channel_is_empty(cs_oc(cs))) |
Olivier Houchard | 31f04e4 | 2018-10-22 16:01:09 +0200 | [diff] [blame] | 1142 | si_cs_send(cs); |
Willy Tarreau | 33a09a5 | 2018-10-25 13:49:49 +0200 | [diff] [blame] | 1143 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1144 | if (cs->endp->flags & (CS_EP_ERROR|CS_EP_ERR_PENDING) || si_is_conn_error(cs->si)) { |
Willy Tarreau | 3b9c850 | 2017-10-25 14:22:28 +0200 | [diff] [blame] | 1145 | /* Write error on the file descriptor */ |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1146 | if (cs->state >= CS_ST_CON) |
Christopher Faulet | 6cd56d5 | 2022-03-30 10:47:32 +0200 | [diff] [blame] | 1147 | cs->endp->flags |= CS_EP_ERROR; |
Willy Tarreau | 3b9c850 | 2017-10-25 14:22:28 +0200 | [diff] [blame] | 1148 | goto out_wakeup; |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 1149 | } |
| 1150 | |
| 1151 | /* OK, so now we know that some data might have been sent, and that we may |
| 1152 | * have to poll first. We have to do that too if the buffer is not empty. |
| 1153 | */ |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1154 | if (channel_is_empty(oc)) { |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 1155 | /* the connection is established but we can't write. Either the |
| 1156 | * buffer is empty, or we just refrain from sending because the |
| 1157 | * ->o limit was reached. Maybe we just wrote the last |
| 1158 | * chunk and need to close. |
| 1159 | */ |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1160 | if (((oc->flags & (CF_SHUTW|CF_AUTO_CLOSE|CF_SHUTW_NOW)) == |
Willy Tarreau | 03cdb7c | 2012-08-27 23:14:58 +0200 | [diff] [blame] | 1161 | (CF_AUTO_CLOSE|CF_SHUTW_NOW)) && |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1162 | cs_state_in(cs->state, CS_SB_RDY|CS_SB_EST)) { |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 1163 | cs_shutw(cs); |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 1164 | goto out_wakeup; |
| 1165 | } |
| 1166 | |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1167 | if ((oc->flags & (CF_SHUTW|CF_SHUTW_NOW)) == 0) |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 1168 | cs->si->flags |= SI_FL_WAIT_DATA; |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1169 | oc->wex = TICK_ETERNITY; |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 1170 | } |
| 1171 | else { |
| 1172 | /* Otherwise there are remaining data to be sent in the buffer, |
| 1173 | * which means we have to poll before doing so. |
| 1174 | */ |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 1175 | cs->si->flags &= ~SI_FL_WAIT_DATA; |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1176 | if (!tick_isset(oc->wex)) |
| 1177 | oc->wex = tick_add_ifset(now_ms, oc->wto); |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 1178 | } |
| 1179 | |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1180 | if (likely(oc->flags & CF_WRITE_ACTIVITY)) { |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 1181 | struct channel *ic = cs_ic(cs); |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1182 | |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 1183 | /* update timeout if we have written something */ |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1184 | if ((oc->flags & (CF_SHUTW|CF_WRITE_PARTIAL)) == CF_WRITE_PARTIAL && |
| 1185 | !channel_is_empty(oc)) |
| 1186 | oc->wex = tick_add_ifset(now_ms, oc->wto); |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 1187 | |
Christopher Faulet | a728518 | 2022-03-30 15:43:23 +0200 | [diff] [blame] | 1188 | if (tick_isset(ic->rex) && !(cs->flags & CS_FL_INDEP_STR)) { |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 1189 | /* Note: to prevent the client from expiring read timeouts |
| 1190 | * during writes, we refresh it. We only do this if the |
| 1191 | * interface is not configured for "independent streams", |
| 1192 | * because for some applications it's better not to do this, |
| 1193 | * for instance when continuously exchanging small amounts |
| 1194 | * of data which can full the socket buffers long before a |
| 1195 | * write timeout is detected. |
| 1196 | */ |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1197 | ic->rex = tick_add_ifset(now_ms, ic->rto); |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 1198 | } |
| 1199 | } |
| 1200 | |
| 1201 | /* in case of special condition (error, shutdown, end of write...), we |
| 1202 | * have to notify the task. |
| 1203 | */ |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1204 | if (likely((oc->flags & (CF_WRITE_NULL|CF_WRITE_ERROR|CF_SHUTW)) || |
| 1205 | ((oc->flags & CF_WAKE_WRITE) && |
| 1206 | ((channel_is_empty(oc) && !oc->to_forward) || |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1207 | !cs_state_in(cs->state, CS_SB_EST))))) { |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 1208 | out_wakeup: |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 1209 | if (!(cs->flags & CS_FL_DONT_WAKE)) |
| 1210 | task_wakeup(cs_strm_task(cs), TASK_WOKEN_IO); |
Willy Tarreau | de5722c | 2012-08-20 15:01:10 +0200 | [diff] [blame] | 1211 | } |
| 1212 | } |
| 1213 | |
Willy Tarreau | eecf6ca | 2012-08-20 15:09:53 +0200 | [diff] [blame] | 1214 | /* |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1215 | * This is the callback which is called by the connection layer to receive data |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 1216 | * into the buffer from the connection. It iterates over the mux layer's |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1217 | * rcv_buf function. |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1218 | */ |
Christopher Faulet | 9936dc6 | 2022-02-28 09:21:58 +0100 | [diff] [blame] | 1219 | static int si_cs_recv(struct conn_stream *cs) |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1220 | { |
Christopher Faulet | 693b23b | 2022-02-28 09:09:05 +0100 | [diff] [blame] | 1221 | struct connection *conn = __cs_conn(cs); |
Christopher Faulet | f835dea | 2021-12-21 14:35:17 +0100 | [diff] [blame] | 1222 | struct stream_interface *si = cs_si(cs); |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1223 | struct channel *ic = si_ic(si); |
Olivier Houchard | f653528 | 2018-08-31 17:29:12 +0200 | [diff] [blame] | 1224 | int ret, max, cur_read = 0; |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1225 | int read_poll = MAX_READ_POLL_LOOPS; |
Christopher Faulet | c6618d6 | 2018-10-11 15:56:04 +0200 | [diff] [blame] | 1226 | int flags = 0; |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1227 | |
Christopher Faulet | 04400bc | 2019-10-25 10:21:01 +0200 | [diff] [blame] | 1228 | /* If not established yet, do nothing. */ |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1229 | if (cs->state != CS_ST_EST) |
Christopher Faulet | 04400bc | 2019-10-25 10:21:01 +0200 | [diff] [blame] | 1230 | return 0; |
| 1231 | |
Olivier Houchard | f653528 | 2018-08-31 17:29:12 +0200 | [diff] [blame] | 1232 | /* If another call to si_cs_recv() failed, and we subscribed to |
| 1233 | * recv events already, give up now. |
| 1234 | */ |
Christopher Faulet | 2f35e7b | 2022-03-31 11:09:28 +0200 | [diff] [blame] | 1235 | if (si->cs->wait_event.events & SUB_RETRY_RECV) |
Olivier Houchard | f653528 | 2018-08-31 17:29:12 +0200 | [diff] [blame] | 1236 | return 0; |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1237 | |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1238 | /* maybe we were called immediately after an asynchronous shutr */ |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1239 | if (ic->flags & CF_SHUTR) |
Olivier Houchard | c2aa711 | 2018-09-11 18:27:21 +0200 | [diff] [blame] | 1240 | return 1; |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1241 | |
Christopher Faulet | e96993b | 2020-07-30 09:26:46 +0200 | [diff] [blame] | 1242 | /* we must wait because the mux is not installed yet */ |
| 1243 | if (!conn->mux) |
| 1244 | return 0; |
| 1245 | |
Willy Tarreau | 54e917c | 2017-08-30 07:35:35 +0200 | [diff] [blame] | 1246 | /* stop here if we reached the end of data */ |
Christopher Faulet | b041b23 | 2022-03-24 10:27:02 +0100 | [diff] [blame] | 1247 | if (cs->endp->flags & CS_EP_EOS) |
Christopher Faulet | 36b536d | 2019-11-20 11:56:33 +0100 | [diff] [blame] | 1248 | goto end_recv; |
Willy Tarreau | 54e917c | 2017-08-30 07:35:35 +0200 | [diff] [blame] | 1249 | |
Christopher Faulet | f061e42 | 2018-12-07 14:51:20 +0100 | [diff] [blame] | 1250 | /* stop immediately on errors. Note that we DON'T want to stop on |
| 1251 | * POLL_ERR, as the poller might report a write error while there |
| 1252 | * are still data available in the recv buffer. This typically |
| 1253 | * happens when we send too large a request to a backend server |
| 1254 | * which rejects it before reading it all. |
| 1255 | */ |
Christopher Faulet | b041b23 | 2022-03-24 10:27:02 +0100 | [diff] [blame] | 1256 | if (!(cs->endp->flags & CS_EP_RCV_MORE)) { |
Christopher Faulet | f061e42 | 2018-12-07 14:51:20 +0100 | [diff] [blame] | 1257 | if (!conn_xprt_ready(conn)) |
| 1258 | return 0; |
Christopher Faulet | b041b23 | 2022-03-24 10:27:02 +0100 | [diff] [blame] | 1259 | if (cs->endp->flags & CS_EP_ERROR) |
Christopher Faulet | 36b536d | 2019-11-20 11:56:33 +0100 | [diff] [blame] | 1260 | goto end_recv; |
Christopher Faulet | f061e42 | 2018-12-07 14:51:20 +0100 | [diff] [blame] | 1261 | } |
Willy Tarreau | f26c26c | 2018-11-12 16:11:08 +0100 | [diff] [blame] | 1262 | |
Willy Tarreau | 7ab99a3 | 2018-12-18 09:15:43 +0100 | [diff] [blame] | 1263 | /* prepare to detect if the mux needs more room */ |
Christopher Faulet | b041b23 | 2022-03-24 10:27:02 +0100 | [diff] [blame] | 1264 | cs->endp->flags &= ~CS_EP_WANT_ROOM; |
Willy Tarreau | 7ab99a3 | 2018-12-18 09:15:43 +0100 | [diff] [blame] | 1265 | |
Willy Tarreau | 77e478c | 2018-06-19 07:03:14 +0200 | [diff] [blame] | 1266 | if ((ic->flags & (CF_STREAMER | CF_STREAMER_FAST)) && !co_data(ic) && |
Willy Tarreau | 7e31273 | 2014-02-12 16:35:14 +0100 | [diff] [blame] | 1267 | global.tune.idle_timer && |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1268 | (unsigned short)(now_ms - ic->last_read) >= global.tune.idle_timer) { |
Willy Tarreau | c5890e6 | 2014-02-09 17:47:01 +0100 | [diff] [blame] | 1269 | /* The buffer was empty and nothing was transferred for more |
| 1270 | * than one second. This was caused by a pause and not by |
| 1271 | * congestion. Reset any streaming mode to reduce latency. |
| 1272 | */ |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1273 | ic->xfer_small = 0; |
| 1274 | ic->xfer_large = 0; |
| 1275 | ic->flags &= ~(CF_STREAMER | CF_STREAMER_FAST); |
Willy Tarreau | c5890e6 | 2014-02-09 17:47:01 +0100 | [diff] [blame] | 1276 | } |
| 1277 | |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1278 | /* First, let's see if we may splice data across the channel without |
| 1279 | * using a buffer. |
| 1280 | */ |
Christopher Faulet | e9e4820 | 2022-03-22 18:13:29 +0100 | [diff] [blame] | 1281 | if (cs->endp->flags & CS_EP_MAY_SPLICE && |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1282 | (ic->pipe || ic->to_forward >= MIN_SPLICE_FORWARD) && |
| 1283 | ic->flags & CF_KERN_SPLICING) { |
Willy Tarreau | d760eec | 2018-07-10 09:50:25 +0200 | [diff] [blame] | 1284 | if (c_data(ic)) { |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1285 | /* We're embarrassed, there are already data pending in |
| 1286 | * the buffer and we don't want to have them at two |
| 1287 | * locations at a time. Let's indicate we need some |
| 1288 | * place and ask the consumer to hurry. |
| 1289 | */ |
Christopher Faulet | c6618d6 | 2018-10-11 15:56:04 +0200 | [diff] [blame] | 1290 | flags |= CO_RFL_BUF_FLUSH; |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1291 | goto abort_splice; |
| 1292 | } |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1293 | |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1294 | if (unlikely(ic->pipe == NULL)) { |
| 1295 | if (pipes_used >= global.maxpipes || !(ic->pipe = get_pipe())) { |
| 1296 | ic->flags &= ~CF_KERN_SPLICING; |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1297 | goto abort_splice; |
| 1298 | } |
| 1299 | } |
| 1300 | |
Olivier Houchard | 9aaf778 | 2017-09-13 18:30:23 +0200 | [diff] [blame] | 1301 | ret = conn->mux->rcv_pipe(cs, ic->pipe, ic->to_forward); |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1302 | if (ret < 0) { |
| 1303 | /* splice not supported on this end, let's disable it */ |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1304 | ic->flags &= ~CF_KERN_SPLICING; |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1305 | goto abort_splice; |
| 1306 | } |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1307 | |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1308 | if (ret > 0) { |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1309 | if (ic->to_forward != CHN_INFINITE_FORWARD) |
| 1310 | ic->to_forward -= ret; |
| 1311 | ic->total += ret; |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1312 | cur_read += ret; |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1313 | ic->flags |= CF_READ_PARTIAL; |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1314 | } |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1315 | |
Christopher Faulet | b041b23 | 2022-03-24 10:27:02 +0100 | [diff] [blame] | 1316 | if (cs->endp->flags & (CS_EP_EOS|CS_EP_ERROR)) |
Christopher Faulet | 36b536d | 2019-11-20 11:56:33 +0100 | [diff] [blame] | 1317 | goto end_recv; |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1318 | |
Willy Tarreau | 61d39a0 | 2013-07-18 21:49:32 +0200 | [diff] [blame] | 1319 | if (conn->flags & CO_FL_WAIT_ROOM) { |
| 1320 | /* the pipe is full or we have read enough data that it |
| 1321 | * could soon be full. Let's stop before needing to poll. |
| 1322 | */ |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 1323 | si_rx_room_blk(si); |
Willy Tarreau | ffb1205 | 2018-11-15 16:06:02 +0100 | [diff] [blame] | 1324 | goto done_recv; |
Willy Tarreau | 61d39a0 | 2013-07-18 21:49:32 +0200 | [diff] [blame] | 1325 | } |
Willy Tarreau | 56a77e5 | 2012-09-02 18:34:44 +0200 | [diff] [blame] | 1326 | |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1327 | /* splice not possible (anymore), let's go on on standard copy */ |
| 1328 | } |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1329 | |
| 1330 | abort_splice: |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1331 | if (ic->pipe && unlikely(!ic->pipe->data)) { |
| 1332 | put_pipe(ic->pipe); |
| 1333 | ic->pipe = NULL; |
Willy Tarreau | 96199b1 | 2012-08-24 00:46:52 +0200 | [diff] [blame] | 1334 | } |
| 1335 | |
Christopher Faulet | e9e4820 | 2022-03-22 18:13:29 +0100 | [diff] [blame] | 1336 | if (ic->pipe && ic->to_forward && !(flags & CO_RFL_BUF_FLUSH) && cs->endp->flags & CS_EP_MAY_SPLICE) { |
Willy Tarreau | c640ef1 | 2019-12-03 18:13:04 +0100 | [diff] [blame] | 1337 | /* don't break splicing by reading, but still call rcv_buf() |
| 1338 | * to pass the flag. |
| 1339 | */ |
| 1340 | goto done_recv; |
| 1341 | } |
| 1342 | |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 1343 | /* now we'll need a input buffer for the stream */ |
Willy Tarreau | 581abd3 | 2018-10-25 10:21:41 +0200 | [diff] [blame] | 1344 | if (!si_alloc_ibuf(si, &(si_strm(si)->buffer_wait))) |
Willy Tarreau | 10fc09e | 2014-11-25 19:46:36 +0100 | [diff] [blame] | 1345 | goto end_recv; |
Willy Tarreau | 10fc09e | 2014-11-25 19:46:36 +0100 | [diff] [blame] | 1346 | |
Christopher Faulet | 2bc364c | 2021-09-21 15:22:12 +0200 | [diff] [blame] | 1347 | /* For an HTX stream, if the buffer is stuck (no output data with some |
| 1348 | * input data) and if the HTX message is fragmented or if its free space |
| 1349 | * wraps, we force an HTX deframentation. It is a way to have a |
| 1350 | * contiguous free space nad to let the mux to copy as much data as |
| 1351 | * possible. |
| 1352 | * |
| 1353 | * NOTE: A possible optim may be to let the mux decides if defrag is |
| 1354 | * required or not, depending on amount of data to be xferred. |
| 1355 | */ |
| 1356 | if (IS_HTX_STRM(si_strm(si)) && !co_data(ic)) { |
| 1357 | struct htx *htx = htxbuf(&ic->buf); |
| 1358 | |
| 1359 | if (htx_is_not_empty(htx) && ((htx->flags & HTX_FL_FRAGMENTED) || htx_space_wraps(htx))) |
| 1360 | htx_defrag(htxbuf(&ic->buf), NULL, 0); |
| 1361 | } |
Christopher Faulet | 68a14db | 2021-09-21 15:14:57 +0200 | [diff] [blame] | 1362 | |
| 1363 | /* Instruct the mux it must subscribed for read events */ |
| 1364 | flags |= ((!conn_is_back(conn) && (si_strm(si)->be->options & PR_O_ABRT_CLOSE)) ? CO_RFL_KEEP_RECV : 0); |
| 1365 | |
Willy Tarreau | 61d39a0 | 2013-07-18 21:49:32 +0200 | [diff] [blame] | 1366 | /* Important note : if we're called with POLL_IN|POLL_HUP, it means the read polling |
| 1367 | * was enabled, which implies that the recv buffer was not full. So we have a guarantee |
| 1368 | * that if such an event is not handled above in splice, it will be handled here by |
| 1369 | * recv(). |
| 1370 | */ |
Christopher Faulet | b041b23 | 2022-03-24 10:27:02 +0100 | [diff] [blame] | 1371 | while ((cs->endp->flags & CS_EP_RCV_MORE) || |
Willy Tarreau | d1480cc | 2022-03-17 16:19:09 +0100 | [diff] [blame] | 1372 | (!(conn->flags & CO_FL_HANDSHAKE) && |
Christopher Faulet | b041b23 | 2022-03-24 10:27:02 +0100 | [diff] [blame] | 1373 | (!(cs->endp->flags & (CS_EP_ERROR|CS_EP_EOS))) && !(ic->flags & CF_SHUTR))) { |
Christopher Faulet | 68a14db | 2021-09-21 15:14:57 +0200 | [diff] [blame] | 1374 | int cur_flags = flags; |
| 1375 | |
| 1376 | /* Compute transient CO_RFL_* flags */ |
Christopher Faulet | 564e39c | 2021-09-21 15:50:55 +0200 | [diff] [blame] | 1377 | if (co_data(ic)) { |
| 1378 | cur_flags |= (CO_RFL_BUF_WET | CO_RFL_BUF_NOT_STUCK); |
| 1379 | } |
Christopher Faulet | 68a14db | 2021-09-21 15:14:57 +0200 | [diff] [blame] | 1380 | |
Christopher Faulet | 4eb7d74 | 2018-10-11 15:29:21 +0200 | [diff] [blame] | 1381 | /* <max> may be null. This is the mux responsibility to set |
Christopher Faulet | b041b23 | 2022-03-24 10:27:02 +0100 | [diff] [blame] | 1382 | * CS_EP_RCV_MORE on the CS if more space is needed. |
Christopher Faulet | 4eb7d74 | 2018-10-11 15:29:21 +0200 | [diff] [blame] | 1383 | */ |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1384 | max = channel_recv_max(ic); |
Christopher Faulet | 897d612 | 2021-12-17 17:28:35 +0100 | [diff] [blame] | 1385 | ret = conn->mux->rcv_buf(cs, &ic->buf, max, cur_flags); |
Willy Tarreau | 674e0ad | 2018-12-05 13:45:41 +0100 | [diff] [blame] | 1386 | |
Christopher Faulet | b041b23 | 2022-03-24 10:27:02 +0100 | [diff] [blame] | 1387 | if (cs->endp->flags & CS_EP_WANT_ROOM) { |
| 1388 | /* CS_EP_WANT_ROOM must not be reported if the channel's |
Christopher Faulet | ae17925 | 2022-02-21 16:12:00 +0100 | [diff] [blame] | 1389 | * buffer is empty. |
| 1390 | */ |
| 1391 | BUG_ON(c_empty(ic)); |
| 1392 | |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 1393 | si_rx_room_blk(si); |
Christopher Faulet | df99408 | 2021-09-23 14:17:20 +0200 | [diff] [blame] | 1394 | /* Add READ_PARTIAL because some data are pending but |
| 1395 | * cannot be xferred to the channel |
| 1396 | */ |
| 1397 | ic->flags |= CF_READ_PARTIAL; |
| 1398 | } |
Willy Tarreau | 6577b48 | 2017-12-10 21:19:33 +0100 | [diff] [blame] | 1399 | |
Willy Tarreau | f26c26c | 2018-11-12 16:11:08 +0100 | [diff] [blame] | 1400 | if (ret <= 0) { |
Willy Tarreau | 1ac5f20 | 2019-12-03 18:08:45 +0100 | [diff] [blame] | 1401 | /* if we refrained from reading because we asked for a |
| 1402 | * flush to satisfy rcv_pipe(), we must not subscribe |
| 1403 | * and instead report that there's not enough room |
| 1404 | * here to proceed. |
| 1405 | */ |
| 1406 | if (flags & CO_RFL_BUF_FLUSH) |
| 1407 | si_rx_room_blk(si); |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1408 | break; |
Willy Tarreau | f26c26c | 2018-11-12 16:11:08 +0100 | [diff] [blame] | 1409 | } |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1410 | |
| 1411 | cur_read += ret; |
| 1412 | |
| 1413 | /* if we're allowed to directly forward data, we must update ->o */ |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1414 | if (ic->to_forward && !(ic->flags & (CF_SHUTW|CF_SHUTW_NOW))) { |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1415 | unsigned long fwd = ret; |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1416 | if (ic->to_forward != CHN_INFINITE_FORWARD) { |
| 1417 | if (fwd > ic->to_forward) |
| 1418 | fwd = ic->to_forward; |
| 1419 | ic->to_forward -= fwd; |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1420 | } |
Willy Tarreau | bcbd393 | 2018-06-06 07:13:22 +0200 | [diff] [blame] | 1421 | c_adv(ic, fwd); |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1422 | } |
| 1423 | |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1424 | ic->flags |= CF_READ_PARTIAL; |
| 1425 | ic->total += ret; |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1426 | |
Christopher Faulet | 883d83e | 2021-09-09 10:17:59 +0200 | [diff] [blame] | 1427 | /* End-of-input reached, we can leave. In this case, it is |
| 1428 | * important to break the loop to not block the SI because of |
| 1429 | * the channel's policies.This way, we are still able to receive |
| 1430 | * shutdowns. |
| 1431 | */ |
Christopher Faulet | b041b23 | 2022-03-24 10:27:02 +0100 | [diff] [blame] | 1432 | if (cs->endp->flags & CS_EP_EOI) |
Christopher Faulet | 883d83e | 2021-09-09 10:17:59 +0200 | [diff] [blame] | 1433 | break; |
| 1434 | |
Willy Tarreau | f26c26c | 2018-11-12 16:11:08 +0100 | [diff] [blame] | 1435 | if ((ic->flags & CF_READ_DONTWAIT) || --read_poll <= 0) { |
| 1436 | /* we're stopped by the channel's policy */ |
Willy Tarreau | b26a6f9 | 2018-11-14 17:10:36 +0100 | [diff] [blame] | 1437 | si_rx_chan_blk(si); |
Willy Tarreau | 62dd698 | 2017-11-18 11:26:20 +0100 | [diff] [blame] | 1438 | break; |
Willy Tarreau | f26c26c | 2018-11-12 16:11:08 +0100 | [diff] [blame] | 1439 | } |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1440 | |
| 1441 | /* if too many bytes were missing from last read, it means that |
| 1442 | * it's pointless trying to read again because the system does |
| 1443 | * not have them in buffers. |
| 1444 | */ |
| 1445 | if (ret < max) { |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1446 | /* if a streamer has read few data, it may be because we |
| 1447 | * have exhausted system buffers. It's not worth trying |
| 1448 | * again. |
| 1449 | */ |
Willy Tarreau | f26c26c | 2018-11-12 16:11:08 +0100 | [diff] [blame] | 1450 | if (ic->flags & CF_STREAMER) { |
| 1451 | /* we're stopped by the channel's policy */ |
Willy Tarreau | b26a6f9 | 2018-11-14 17:10:36 +0100 | [diff] [blame] | 1452 | si_rx_chan_blk(si); |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1453 | break; |
Willy Tarreau | f26c26c | 2018-11-12 16:11:08 +0100 | [diff] [blame] | 1454 | } |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1455 | |
| 1456 | /* if we read a large block smaller than what we requested, |
| 1457 | * it's almost certain we'll never get anything more. |
| 1458 | */ |
Willy Tarreau | f26c26c | 2018-11-12 16:11:08 +0100 | [diff] [blame] | 1459 | if (ret >= global.tune.recv_enough) { |
| 1460 | /* we're stopped by the channel's policy */ |
Willy Tarreau | b26a6f9 | 2018-11-14 17:10:36 +0100 | [diff] [blame] | 1461 | si_rx_chan_blk(si); |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1462 | break; |
Willy Tarreau | f26c26c | 2018-11-12 16:11:08 +0100 | [diff] [blame] | 1463 | } |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1464 | } |
Christopher Faulet | b3e0de4 | 2018-10-11 13:54:13 +0200 | [diff] [blame] | 1465 | |
| 1466 | /* if we are waiting for more space, don't try to read more data |
| 1467 | * right now. |
| 1468 | */ |
Willy Tarreau | b26a6f9 | 2018-11-14 17:10:36 +0100 | [diff] [blame] | 1469 | if (si_rx_blocked(si)) |
Christopher Faulet | b3e0de4 | 2018-10-11 13:54:13 +0200 | [diff] [blame] | 1470 | break; |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1471 | } /* while !flags */ |
| 1472 | |
Willy Tarreau | ffb1205 | 2018-11-15 16:06:02 +0100 | [diff] [blame] | 1473 | done_recv: |
Willy Tarreau | c5890e6 | 2014-02-09 17:47:01 +0100 | [diff] [blame] | 1474 | if (cur_read) { |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1475 | if ((ic->flags & (CF_STREAMER | CF_STREAMER_FAST)) && |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1476 | (cur_read <= ic->buf.size / 2)) { |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1477 | ic->xfer_large = 0; |
| 1478 | ic->xfer_small++; |
| 1479 | if (ic->xfer_small >= 3) { |
Willy Tarreau | c5890e6 | 2014-02-09 17:47:01 +0100 | [diff] [blame] | 1480 | /* we have read less than half of the buffer in |
| 1481 | * one pass, and this happened at least 3 times. |
| 1482 | * This is definitely not a streamer. |
| 1483 | */ |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1484 | ic->flags &= ~(CF_STREAMER | CF_STREAMER_FAST); |
Willy Tarreau | c5890e6 | 2014-02-09 17:47:01 +0100 | [diff] [blame] | 1485 | } |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1486 | else if (ic->xfer_small >= 2) { |
Willy Tarreau | c5890e6 | 2014-02-09 17:47:01 +0100 | [diff] [blame] | 1487 | /* if the buffer has been at least half full twice, |
| 1488 | * we receive faster than we send, so at least it |
| 1489 | * is not a "fast streamer". |
| 1490 | */ |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1491 | ic->flags &= ~CF_STREAMER_FAST; |
Willy Tarreau | c5890e6 | 2014-02-09 17:47:01 +0100 | [diff] [blame] | 1492 | } |
| 1493 | } |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1494 | else if (!(ic->flags & CF_STREAMER_FAST) && |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1495 | (cur_read >= ic->buf.size - global.tune.maxrewrite)) { |
Willy Tarreau | c5890e6 | 2014-02-09 17:47:01 +0100 | [diff] [blame] | 1496 | /* we read a full buffer at once */ |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1497 | ic->xfer_small = 0; |
| 1498 | ic->xfer_large++; |
| 1499 | if (ic->xfer_large >= 3) { |
Willy Tarreau | c5890e6 | 2014-02-09 17:47:01 +0100 | [diff] [blame] | 1500 | /* we call this buffer a fast streamer if it manages |
| 1501 | * to be filled in one call 3 consecutive times. |
| 1502 | */ |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1503 | ic->flags |= (CF_STREAMER | CF_STREAMER_FAST); |
Willy Tarreau | c5890e6 | 2014-02-09 17:47:01 +0100 | [diff] [blame] | 1504 | } |
| 1505 | } |
| 1506 | else { |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1507 | ic->xfer_small = 0; |
| 1508 | ic->xfer_large = 0; |
Willy Tarreau | c5890e6 | 2014-02-09 17:47:01 +0100 | [diff] [blame] | 1509 | } |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1510 | ic->last_read = now_ms; |
Willy Tarreau | c5890e6 | 2014-02-09 17:47:01 +0100 | [diff] [blame] | 1511 | } |
| 1512 | |
Willy Tarreau | 10fc09e | 2014-11-25 19:46:36 +0100 | [diff] [blame] | 1513 | end_recv: |
Christopher Faulet | e6d8cb1 | 2019-11-20 16:42:00 +0100 | [diff] [blame] | 1514 | ret = (cur_read != 0); |
| 1515 | |
Christopher Faulet | 36b536d | 2019-11-20 11:56:33 +0100 | [diff] [blame] | 1516 | /* Report EOI on the channel if it was reached from the mux point of |
| 1517 | * view. */ |
Christopher Faulet | b041b23 | 2022-03-24 10:27:02 +0100 | [diff] [blame] | 1518 | if ((cs->endp->flags & CS_EP_EOI) && !(ic->flags & CF_EOI)) { |
Christopher Faulet | 36b536d | 2019-11-20 11:56:33 +0100 | [diff] [blame] | 1519 | ic->flags |= (CF_EOI|CF_READ_PARTIAL); |
Christopher Faulet | e6d8cb1 | 2019-11-20 16:42:00 +0100 | [diff] [blame] | 1520 | ret = 1; |
| 1521 | } |
Willy Tarreau | 10fc09e | 2014-11-25 19:46:36 +0100 | [diff] [blame] | 1522 | |
Christopher Faulet | 6cd56d5 | 2022-03-30 10:47:32 +0200 | [diff] [blame] | 1523 | if (cs->endp->flags & CS_EP_ERROR) |
Christopher Faulet | e6d8cb1 | 2019-11-20 16:42:00 +0100 | [diff] [blame] | 1524 | ret = 1; |
Christopher Faulet | b041b23 | 2022-03-24 10:27:02 +0100 | [diff] [blame] | 1525 | else if (cs->endp->flags & CS_EP_EOS) { |
Willy Tarreau | 18955db | 2020-01-23 16:32:24 +0100 | [diff] [blame] | 1526 | /* we received a shutdown */ |
| 1527 | ic->flags |= CF_READ_NULL; |
| 1528 | if (ic->flags & CF_AUTO_CLOSE) |
| 1529 | channel_shutw_now(ic); |
| 1530 | stream_int_read0(si); |
Christopher Faulet | e6d8cb1 | 2019-11-20 16:42:00 +0100 | [diff] [blame] | 1531 | ret = 1; |
Christopher Faulet | 36b536d | 2019-11-20 11:56:33 +0100 | [diff] [blame] | 1532 | } |
| 1533 | else if (!si_rx_blocked(si)) { |
| 1534 | /* Subscribe to receive events if we're blocking on I/O */ |
Christopher Faulet | 2f35e7b | 2022-03-31 11:09:28 +0200 | [diff] [blame] | 1535 | conn->mux->subscribe(cs, SUB_RETRY_RECV, &si->cs->wait_event); |
Willy Tarreau | dd5621a | 2018-11-15 16:55:14 +0100 | [diff] [blame] | 1536 | si_rx_endp_done(si); |
| 1537 | } else { |
| 1538 | si_rx_endp_more(si); |
Christopher Faulet | e6d8cb1 | 2019-11-20 16:42:00 +0100 | [diff] [blame] | 1539 | ret = 1; |
Willy Tarreau | dd5621a | 2018-11-15 16:55:14 +0100 | [diff] [blame] | 1540 | } |
Christopher Faulet | e6d8cb1 | 2019-11-20 16:42:00 +0100 | [diff] [blame] | 1541 | return ret; |
Willy Tarreau | ce323de | 2012-08-20 21:41:06 +0200 | [diff] [blame] | 1542 | } |
| 1543 | |
| 1544 | /* |
Willy Tarreau | 9bf9c14 | 2012-08-20 15:38:41 +0200 | [diff] [blame] | 1545 | * This function propagates a null read received on a socket-based connection. |
Christopher Faulet | 8abe712 | 2022-03-30 15:10:18 +0200 | [diff] [blame] | 1546 | * It updates the stream interface. If the stream interface has CS_FL_NOHALF, |
Willy Tarreau | 1140512 | 2015-03-12 22:32:27 +0100 | [diff] [blame] | 1547 | * the close is also forwarded to the write side as an abort. |
Willy Tarreau | 9bf9c14 | 2012-08-20 15:38:41 +0200 | [diff] [blame] | 1548 | */ |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 1549 | static void stream_int_read0(struct stream_interface *si) |
Willy Tarreau | 9bf9c14 | 2012-08-20 15:38:41 +0200 | [diff] [blame] | 1550 | { |
Christopher Faulet | 13a35e5 | 2021-12-20 15:34:16 +0100 | [diff] [blame] | 1551 | struct conn_stream *cs = si->cs; |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1552 | struct channel *ic = si_ic(si); |
| 1553 | struct channel *oc = si_oc(si); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 1554 | |
Christopher Faulet | 13a35e5 | 2021-12-20 15:34:16 +0100 | [diff] [blame] | 1555 | BUG_ON(!cs_conn(cs)); |
| 1556 | |
Willy Tarreau | abb5d42 | 2018-11-14 16:58:52 +0100 | [diff] [blame] | 1557 | si_rx_shut_blk(si); |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1558 | if (ic->flags & CF_SHUTR) |
Willy Tarreau | 9bf9c14 | 2012-08-20 15:38:41 +0200 | [diff] [blame] | 1559 | return; |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1560 | ic->flags |= CF_SHUTR; |
| 1561 | ic->rex = TICK_ETERNITY; |
Willy Tarreau | 9bf9c14 | 2012-08-20 15:38:41 +0200 | [diff] [blame] | 1562 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1563 | if (!cs_state_in(cs->state, CS_SB_CON|CS_SB_RDY|CS_SB_EST)) |
Willy Tarreau | 9bf9c14 | 2012-08-20 15:38:41 +0200 | [diff] [blame] | 1564 | return; |
| 1565 | |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1566 | if (oc->flags & CF_SHUTW) |
Willy Tarreau | 9bf9c14 | 2012-08-20 15:38:41 +0200 | [diff] [blame] | 1567 | goto do_close; |
| 1568 | |
Christopher Faulet | 8abe712 | 2022-03-30 15:10:18 +0200 | [diff] [blame] | 1569 | if (cs->flags & CS_FL_NOHALF) { |
Willy Tarreau | 9bf9c14 | 2012-08-20 15:38:41 +0200 | [diff] [blame] | 1570 | /* we want to immediately forward this close to the write side */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1571 | /* force flag on ssl to keep stream in cache */ |
Christopher Faulet | 69ef6c9 | 2022-03-31 14:20:00 +0200 | [diff] [blame] | 1572 | cs_conn_shutw(cs, CO_SHW_SILENT); |
Willy Tarreau | 9bf9c14 | 2012-08-20 15:38:41 +0200 | [diff] [blame] | 1573 | goto do_close; |
| 1574 | } |
| 1575 | |
| 1576 | /* otherwise that's just a normal read shutdown */ |
Willy Tarreau | 9bf9c14 | 2012-08-20 15:38:41 +0200 | [diff] [blame] | 1577 | return; |
| 1578 | |
| 1579 | do_close: |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 1580 | /* OK we completely close the socket here just as if we went through cs_shut[rw]() */ |
Christopher Faulet | 69ef6c9 | 2022-03-31 14:20:00 +0200 | [diff] [blame] | 1581 | cs_conn_close(cs); |
Willy Tarreau | f9fbfe8 | 2012-11-21 21:51:53 +0100 | [diff] [blame] | 1582 | |
Willy Tarreau | afc8a22 | 2014-11-28 15:46:27 +0100 | [diff] [blame] | 1583 | oc->flags &= ~CF_SHUTW_NOW; |
| 1584 | oc->flags |= CF_SHUTW; |
| 1585 | oc->wex = TICK_ETERNITY; |
Willy Tarreau | f9fbfe8 | 2012-11-21 21:51:53 +0100 | [diff] [blame] | 1586 | |
Willy Tarreau | 43e69dc | 2018-11-06 19:23:03 +0100 | [diff] [blame] | 1587 | si_done_get(si); |
Willy Tarreau | f9fbfe8 | 2012-11-21 21:51:53 +0100 | [diff] [blame] | 1588 | |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1589 | cs->state = CS_ST_DIS; |
Christopher Faulet | ae024ce | 2022-03-29 19:02:31 +0200 | [diff] [blame] | 1590 | __cs_strm(cs)->conn_exp = TICK_ETERNITY; |
Willy Tarreau | 9bf9c14 | 2012-08-20 15:38:41 +0200 | [diff] [blame] | 1591 | return; |
| 1592 | } |
| 1593 | |
Willy Tarreau | 651e182 | 2015-09-23 20:06:13 +0200 | [diff] [blame] | 1594 | /* Callback to be used by applet handlers upon completion. It updates the stream |
| 1595 | * (which may or may not take this opportunity to try to forward data), then |
Emeric Brun | 2802b07 | 2017-06-30 14:11:56 +0200 | [diff] [blame] | 1596 | * may re-enable the applet's based on the channels and stream interface's final |
Willy Tarreau | 651e182 | 2015-09-23 20:06:13 +0200 | [diff] [blame] | 1597 | * states. |
| 1598 | */ |
Willy Tarreau | aa977ba | 2015-09-25 11:45:06 +0200 | [diff] [blame] | 1599 | void si_applet_wake_cb(struct stream_interface *si) |
Willy Tarreau | e5f8649 | 2015-04-19 15:16:35 +0200 | [diff] [blame] | 1600 | { |
Willy Tarreau | eca572f | 2015-09-25 19:11:55 +0200 | [diff] [blame] | 1601 | struct channel *ic = si_ic(si); |
| 1602 | |
Christopher Faulet | 8bc1759 | 2022-02-28 17:27:09 +0100 | [diff] [blame] | 1603 | BUG_ON(!cs_appctx(si->cs)); |
Christopher Faulet | 693b23b | 2022-02-28 09:09:05 +0100 | [diff] [blame] | 1604 | |
Willy Tarreau | eca572f | 2015-09-25 19:11:55 +0200 | [diff] [blame] | 1605 | /* If the applet wants to write and the channel is closed, it's a |
| 1606 | * broken pipe and it must be reported. |
| 1607 | */ |
Willy Tarreau | 05b9b64 | 2018-11-14 13:43:35 +0100 | [diff] [blame] | 1608 | if (!(si->flags & SI_FL_RX_WAIT_EP) && (ic->flags & CF_SHUTR)) |
Christopher Faulet | 6cd56d5 | 2022-03-30 10:47:32 +0200 | [diff] [blame] | 1609 | si->cs->endp->flags |= CS_EP_ERROR; |
Willy Tarreau | eca572f | 2015-09-25 19:11:55 +0200 | [diff] [blame] | 1610 | |
Willy Tarreau | 186dcdd | 2018-11-16 16:18:34 +0100 | [diff] [blame] | 1611 | /* automatically mark the applet having data available if it reported |
| 1612 | * begin blocked by the channel. |
| 1613 | */ |
| 1614 | if (si_rx_blocked(si)) |
| 1615 | si_rx_endp_more(si); |
| 1616 | |
Willy Tarreau | 651e182 | 2015-09-23 20:06:13 +0200 | [diff] [blame] | 1617 | /* update the stream-int, channels, and possibly wake the stream up */ |
| 1618 | stream_int_notify(si); |
Willy Tarreau | a64c703 | 2019-08-01 14:17:02 +0200 | [diff] [blame] | 1619 | stream_release_buffers(si_strm(si)); |
Willy Tarreau | e5f8649 | 2015-04-19 15:16:35 +0200 | [diff] [blame] | 1620 | |
Willy Tarreau | 32742fd | 2018-11-14 14:07:59 +0100 | [diff] [blame] | 1621 | /* stream_int_notify may have passed through chk_snd and released some |
| 1622 | * RXBLK flags. Process_stream will consider those flags to wake up the |
| 1623 | * appctx but in the case the task is not in runqueue we may have to |
| 1624 | * wakeup the appctx immediately. |
Emeric Brun | 2802b07 | 2017-06-30 14:11:56 +0200 | [diff] [blame] | 1625 | */ |
Olivier Houchard | 51205a1 | 2019-04-17 19:29:35 +0200 | [diff] [blame] | 1626 | if ((si_rx_endp_ready(si) && !si_rx_blocked(si)) || |
| 1627 | (si_tx_endp_ready(si) && !si_tx_blocked(si))) |
Christopher Faulet | 693b23b | 2022-02-28 09:09:05 +0100 | [diff] [blame] | 1628 | appctx_wakeup(__cs_appctx(si->cs)); |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1629 | } |
| 1630 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1631 | |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1632 | /* |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1633 | * This function performs a shutdown-read on a conn-stream attached to an |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1634 | * applet in a connected or init state (it does nothing for other states). It |
| 1635 | * either shuts the read side or marks itself as closed. The buffer flags are |
Christopher Faulet | 8abe712 | 2022-03-30 15:10:18 +0200 | [diff] [blame] | 1636 | * updated to reflect the new state. If the stream interface has CS_FL_NOHALF, |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1637 | * we also forward the close to the write side. The owner task is woken up if |
| 1638 | * it exists. |
| 1639 | */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1640 | static void cs_app_shutr_applet(struct conn_stream *cs) |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1641 | { |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1642 | struct channel *ic = cs_ic(cs); |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1643 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1644 | BUG_ON(!cs_appctx(cs)); |
Christopher Faulet | 693b23b | 2022-02-28 09:09:05 +0100 | [diff] [blame] | 1645 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1646 | si_rx_shut_blk(cs->si); |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1647 | if (ic->flags & CF_SHUTR) |
| 1648 | return; |
| 1649 | ic->flags |= CF_SHUTR; |
| 1650 | ic->rex = TICK_ETERNITY; |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1651 | |
Willy Tarreau | 828824a | 2015-04-19 17:20:03 +0200 | [diff] [blame] | 1652 | /* Note: on shutr, we don't call the applet */ |
| 1653 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1654 | if (!cs_state_in(cs->state, CS_SB_CON|CS_SB_RDY|CS_SB_EST)) |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1655 | return; |
| 1656 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1657 | if (cs_oc(cs)->flags & CF_SHUTW) { |
| 1658 | si_applet_release(cs->si); |
| 1659 | cs->state = CS_ST_DIS; |
| 1660 | __cs_strm(cs)->conn_exp = TICK_ETERNITY; |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1661 | } |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1662 | else if (cs->flags & CS_FL_NOHALF) { |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1663 | /* we want to immediately forward this close to the write side */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1664 | return cs_app_shutw_applet(cs); |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1665 | } |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1666 | } |
| 1667 | |
| 1668 | /* |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1669 | * This function performs a shutdown-write on a conn-stream attached to an |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1670 | * applet in a connected or init state (it does nothing for other states). It |
| 1671 | * either shuts the write side or marks itself as closed. The buffer flags are |
| 1672 | * updated to reflect the new state. It does also close everything if the SI |
| 1673 | * was marked as being in error state. The owner task is woken up if it exists. |
| 1674 | */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1675 | static void cs_app_shutw_applet(struct conn_stream *cs) |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1676 | { |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1677 | struct channel *ic = cs_ic(cs); |
| 1678 | struct channel *oc = cs_oc(cs); |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1679 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1680 | BUG_ON(!cs_appctx(cs)); |
Christopher Faulet | 693b23b | 2022-02-28 09:09:05 +0100 | [diff] [blame] | 1681 | |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1682 | oc->flags &= ~CF_SHUTW_NOW; |
| 1683 | if (oc->flags & CF_SHUTW) |
| 1684 | return; |
| 1685 | oc->flags |= CF_SHUTW; |
| 1686 | oc->wex = TICK_ETERNITY; |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1687 | si_done_get(cs->si); |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1688 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1689 | if (tick_isset(cs->hcto)) { |
| 1690 | ic->rto = cs->hcto; |
Hongbo Long | e39683c | 2017-03-10 18:41:51 +0100 | [diff] [blame] | 1691 | ic->rex = tick_add(now_ms, ic->rto); |
| 1692 | } |
| 1693 | |
Willy Tarreau | 828824a | 2015-04-19 17:20:03 +0200 | [diff] [blame] | 1694 | /* on shutw we always wake the applet up */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1695 | appctx_wakeup(__cs_appctx(cs)); |
Willy Tarreau | 828824a | 2015-04-19 17:20:03 +0200 | [diff] [blame] | 1696 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1697 | switch (cs->state) { |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1698 | case CS_ST_RDY: |
| 1699 | case CS_ST_EST: |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1700 | /* we have to shut before closing, otherwise some short messages |
| 1701 | * may never leave the system, especially when there are remaining |
| 1702 | * unread data in the socket input buffer, or when nolinger is set. |
Christopher Faulet | 8abe712 | 2022-03-30 15:10:18 +0200 | [diff] [blame] | 1703 | * However, if CS_FL_NOLINGER is explicitly set, we know there is |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1704 | * no risk so we close both sides immediately. |
| 1705 | */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1706 | if (!(cs->endp->flags & CS_EP_ERROR) && !(cs->flags & CS_FL_NOLINGER) && |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1707 | !(ic->flags & (CF_SHUTR|CF_DONT_READ))) |
| 1708 | return; |
| 1709 | |
| 1710 | /* fall through */ |
Christopher Faulet | 62e7574 | 2022-03-31 09:16:34 +0200 | [diff] [blame] | 1711 | case CS_ST_CON: |
| 1712 | case CS_ST_CER: |
| 1713 | case CS_ST_QUE: |
| 1714 | case CS_ST_TAR: |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1715 | /* Note that none of these states may happen with applets */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1716 | si_applet_release(cs->si); |
| 1717 | cs->state = CS_ST_DIS; |
Tim Duesterhus | 588b314 | 2020-05-29 14:35:51 +0200 | [diff] [blame] | 1718 | /* fall through */ |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1719 | default: |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1720 | cs->flags &= ~CS_FL_NOLINGER; |
| 1721 | si_rx_shut_blk(cs->si); |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1722 | ic->flags |= CF_SHUTR; |
| 1723 | ic->rex = TICK_ETERNITY; |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1724 | __cs_strm(cs)->conn_exp = TICK_ETERNITY; |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1725 | } |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1726 | } |
| 1727 | |
| 1728 | /* chk_rcv function for applets */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1729 | static void cs_app_chk_rcv_applet(struct conn_stream *cs) |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1730 | { |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1731 | struct channel *ic = cs_ic(cs); |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1732 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1733 | BUG_ON(!cs_appctx(cs)); |
Christopher Faulet | 693b23b | 2022-02-28 09:09:05 +0100 | [diff] [blame] | 1734 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1735 | DPRINTF(stderr, "%s: cs=%p, cs->state=%d ic->flags=%08x oc->flags=%08x\n", |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1736 | __FUNCTION__, |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1737 | cs, cs->state, ic->flags, cs_oc(cs)->flags); |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1738 | |
Christopher Faulet | b3e0de4 | 2018-10-11 13:54:13 +0200 | [diff] [blame] | 1739 | if (!ic->pipe) { |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1740 | /* (re)start reading */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1741 | appctx_wakeup(__cs_appctx(cs)); |
Thierry FOURNIER | 5bc2cbf | 2015-09-04 18:40:36 +0200 | [diff] [blame] | 1742 | } |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1743 | } |
| 1744 | |
| 1745 | /* chk_snd function for applets */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1746 | static void cs_app_chk_snd_applet(struct conn_stream *cs) |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1747 | { |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1748 | struct channel *oc = cs_oc(cs); |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1749 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1750 | BUG_ON(!cs_appctx(cs)); |
Christopher Faulet | 693b23b | 2022-02-28 09:09:05 +0100 | [diff] [blame] | 1751 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1752 | DPRINTF(stderr, "%s: cs=%p, cs->state=%d ic->flags=%08x oc->flags=%08x\n", |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1753 | __FUNCTION__, |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1754 | cs, cs->state, cs_ic(cs)->flags, oc->flags); |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1755 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1756 | if (unlikely(cs->state != CS_ST_EST || (oc->flags & CF_SHUTW))) |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1757 | return; |
| 1758 | |
Willy Tarreau | 828824a | 2015-04-19 17:20:03 +0200 | [diff] [blame] | 1759 | /* we only wake the applet up if it was waiting for some data */ |
| 1760 | |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1761 | if (!(cs->si->flags & SI_FL_WAIT_DATA)) |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1762 | return; |
| 1763 | |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1764 | if (!tick_isset(oc->wex)) |
| 1765 | oc->wex = tick_add_ifset(now_ms, oc->wto); |
| 1766 | |
Willy Tarreau | 828824a | 2015-04-19 17:20:03 +0200 | [diff] [blame] | 1767 | if (!channel_is_empty(oc)) { |
| 1768 | /* (re)start sending */ |
Christopher Faulet | 0c6a64c | 2022-04-01 08:58:29 +0200 | [diff] [blame^] | 1769 | appctx_wakeup(__cs_appctx(cs)); |
Willy Tarreau | 828824a | 2015-04-19 17:20:03 +0200 | [diff] [blame] | 1770 | } |
Willy Tarreau | d45b9f8 | 2015-04-13 16:30:14 +0200 | [diff] [blame] | 1771 | } |
| 1772 | |
Willy Tarreau | dded32d | 2008-11-30 19:48:07 +0100 | [diff] [blame] | 1773 | /* |
Willy Tarreau | cff6411 | 2008-11-03 06:26:53 +0100 | [diff] [blame] | 1774 | * Local variables: |
| 1775 | * c-indent-level: 8 |
| 1776 | * c-basic-offset: 8 |
| 1777 | * End: |
| 1778 | */ |