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