Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1 | /* |
| 2 | * HTT/1 mux-demux for connections |
| 3 | * |
| 4 | * Copyright 2018 Christopher Faulet <cfaulet@haproxy.com> |
| 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 | */ |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 12 | #include <import/ebistree.h> |
| 13 | |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 14 | #include <haproxy/api.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 15 | #include <haproxy/cfgparse.h> |
Willy Tarreau | 7ea393d | 2020-06-04 18:02:10 +0200 | [diff] [blame] | 16 | #include <haproxy/connection.h> |
Willy Tarreau | 5413a87 | 2020-06-02 19:33:08 +0200 | [diff] [blame] | 17 | #include <haproxy/h1.h> |
Willy Tarreau | c6fe884 | 2020-06-04 09:00:02 +0200 | [diff] [blame] | 18 | #include <haproxy/h1_htx.h> |
Willy Tarreau | bf07314 | 2020-06-03 12:04:01 +0200 | [diff] [blame] | 19 | #include <haproxy/h2.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 20 | #include <haproxy/http_htx.h> |
Willy Tarreau | 16f958c | 2020-06-03 08:44:35 +0200 | [diff] [blame] | 21 | #include <haproxy/htx.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 22 | #include <haproxy/istbuf.h> |
| 23 | #include <haproxy/log.h> |
Willy Tarreau | 551271d | 2020-06-04 08:32:23 +0200 | [diff] [blame] | 24 | #include <haproxy/pipe-t.h> |
Willy Tarreau | adc0240 | 2021-05-08 20:28:54 +0200 | [diff] [blame] | 25 | #include <haproxy/proxy.h> |
Willy Tarreau | 48d25b3 | 2020-06-04 18:58:52 +0200 | [diff] [blame] | 26 | #include <haproxy/session-t.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 27 | #include <haproxy/stream.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 28 | #include <haproxy/stream_interface.h> |
Willy Tarreau | c6d61d7 | 2020-06-04 19:02:42 +0200 | [diff] [blame] | 29 | #include <haproxy/trace.h> |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 30 | |
| 31 | /* |
| 32 | * H1 Connection flags (32 bits) |
| 33 | */ |
| 34 | #define H1C_F_NONE 0x00000000 |
| 35 | |
| 36 | /* Flags indicating why writing output data are blocked */ |
| 37 | #define H1C_F_OUT_ALLOC 0x00000001 /* mux is blocked on lack of output buffer */ |
| 38 | #define H1C_F_OUT_FULL 0x00000002 /* mux is blocked on output buffer full */ |
| 39 | /* 0x00000004 - 0x00000008 unused */ |
| 40 | |
| 41 | /* Flags indicating why reading input data are blocked. */ |
| 42 | #define H1C_F_IN_ALLOC 0x00000010 /* mux is blocked on lack of input buffer */ |
| 43 | #define H1C_F_IN_FULL 0x00000020 /* mux is blocked on input buffer full */ |
Christopher Faulet | d17ad82 | 2020-09-24 15:14:29 +0200 | [diff] [blame] | 44 | #define H1C_F_IN_SALLOC 0x00000040 /* mux is blocked on lack of stream's request buffer */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 45 | |
Christopher Faulet | 7b109f2 | 2019-12-05 11:18:31 +0100 | [diff] [blame] | 46 | /* Flags indicating the connection state */ |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 47 | #define H1C_F_ST_EMBRYONIC 0x00000100 /* Set when a H1 stream with no conn-stream is attached to the connection */ |
Christopher Faulet | 39c7b6b | 2021-01-21 17:44:35 +0100 | [diff] [blame] | 48 | #define H1C_F_ST_ATTACHED 0x00000200 /* Set when a H1 stream with a conn-stream is attached to the connection (may be not READY) */ |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 49 | #define H1C_F_ST_IDLE 0x00000400 /* connection is idle and may be reused |
| 50 | * (exclusive to all H1C_F_ST flags and never set when an h1s is attached) */ |
| 51 | #define H1C_F_ST_ERROR 0x00000800 /* connection must be closed ASAP because an error occurred (conn-stream may still be attached) */ |
| 52 | #define H1C_F_ST_SHUTDOWN 0x00001000 /* connection must be shut down ASAP flushing output first (conn-stream may still be attached) */ |
Christopher Faulet | 39c7b6b | 2021-01-21 17:44:35 +0100 | [diff] [blame] | 53 | #define H1C_F_ST_READY 0x00002000 /* Set in ATTACHED state with a READY conn-stream. A conn-stream is not ready when |
| 54 | * a TCP>H1 upgrade is in progress Thus this flag is only set if ATTACHED is also set */ |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 55 | #define H1C_F_ST_ALIVE (H1C_F_ST_IDLE|H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED) |
Christopher Faulet | 39c7b6b | 2021-01-21 17:44:35 +0100 | [diff] [blame] | 56 | /* 0x00004000 - 0x00008000 unused */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 57 | |
Christopher Faulet | b385b50 | 2021-01-13 18:47:57 +0100 | [diff] [blame] | 58 | #define H1C_F_WANT_SPLICE 0x00010000 /* Don't read into a buffer because we want to use or we are using splicing */ |
| 59 | #define H1C_F_ERR_PENDING 0x00020000 /* Send an error and close the connection ASAP (implies H1C_F_ST_ERROR) */ |
| 60 | #define H1C_F_WAIT_NEXT_REQ 0x00040000 /* waiting for the next request to start, use keep-alive timeout */ |
| 61 | #define H1C_F_UPG_H2C 0x00080000 /* set if an upgrade to h2 should be done */ |
| 62 | #define H1C_F_CO_MSG_MORE 0x00100000 /* set if CO_SFL_MSG_MORE must be set when calling xprt->snd_buf() */ |
| 63 | #define H1C_F_CO_STREAMER 0x00200000 /* set if CO_SFL_STREAMER must be set when calling xprt->snd_buf() */ |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 64 | |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 65 | /* 0x00400000 - 0x40000000 unusued*/ |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 66 | #define H1C_F_IS_BACK 0x80000000 /* Set on outgoing connection */ |
Christopher Faulet | 4623036 | 2019-10-17 16:04:20 +0200 | [diff] [blame] | 67 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 68 | /* |
| 69 | * H1 Stream flags (32 bits) |
| 70 | */ |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 71 | #define H1S_F_NONE 0x00000000 |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 72 | |
| 73 | #define H1S_F_RX_BLK 0x00100000 /* Don't process more input data, waiting sync with output side */ |
| 74 | #define H1S_F_TX_BLK 0x00200000 /* Don't process more output data, waiting sync with input side */ |
Christopher Faulet | 46e058d | 2021-09-20 07:47:27 +0200 | [diff] [blame] | 75 | #define H1S_F_RX_CONGESTED 0x00000004 /* Cannot process input data RX path is congested (waiting for more space in channel's buffer) */ |
| 76 | |
Willy Tarreau | c493c9c | 2019-06-03 14:18:22 +0200 | [diff] [blame] | 77 | #define H1S_F_REOS 0x00000008 /* End of input stream seen even if not delivered yet */ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 78 | #define H1S_F_WANT_KAL 0x00000010 |
| 79 | #define H1S_F_WANT_TUN 0x00000020 |
| 80 | #define H1S_F_WANT_CLO 0x00000040 |
| 81 | #define H1S_F_WANT_MSK 0x00000070 |
| 82 | #define H1S_F_NOT_FIRST 0x00000080 /* The H1 stream is not the first one */ |
Christopher Faulet | 5696f54 | 2020-12-02 16:08:38 +0100 | [diff] [blame] | 83 | #define H1S_F_BODYLESS_RESP 0x00000100 /* Bodyless response message */ |
Christopher Faulet | 60ef12c | 2020-09-24 10:05:44 +0200 | [diff] [blame] | 84 | |
Ilya Shipitsin | acf8459 | 2021-02-06 22:29:08 +0500 | [diff] [blame] | 85 | /* 0x00000200 unused */ |
Christopher Faulet | 2eed800 | 2020-12-07 11:26:13 +0100 | [diff] [blame] | 86 | #define H1S_F_NOT_IMPL_ERROR 0x00000400 /* Set when a feature is not implemented during the message parsing */ |
Christopher Faulet | 60ef12c | 2020-09-24 10:05:44 +0200 | [diff] [blame] | 87 | #define H1S_F_PARSING_ERROR 0x00000800 /* Set when an error occurred during the message parsing */ |
| 88 | #define H1S_F_PROCESSING_ERROR 0x00001000 /* Set when an error occurred during the message xfer */ |
| 89 | #define H1S_F_ERROR 0x00001800 /* stream error mask */ |
| 90 | |
Christopher Faulet | 72ba6cd | 2019-09-24 16:20:05 +0200 | [diff] [blame] | 91 | #define H1S_F_HAVE_SRV_NAME 0x00002000 /* Set during output process if the server name header was added to the request */ |
Christopher Faulet | ada34b6 | 2019-05-24 16:36:43 +0200 | [diff] [blame] | 92 | #define H1S_F_HAVE_O_CONN 0x00004000 /* Set during output process to know connection mode was processed */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 93 | |
| 94 | /* H1 connection descriptor */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 95 | struct h1c { |
| 96 | struct connection *conn; |
| 97 | struct proxy *px; |
| 98 | uint32_t flags; /* Connection flags: H1C_F_* */ |
Christopher Faulet | c18fc23 | 2020-10-06 17:41:36 +0200 | [diff] [blame] | 99 | unsigned int errcode; /* Status code when an error occurred at the H1 connection level */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 100 | struct buffer ibuf; /* Input buffer to store data before parsing */ |
| 101 | struct buffer obuf; /* Output buffer to store data after reformatting */ |
| 102 | |
| 103 | struct buffer_wait buf_wait; /* Wait list for buffer allocation */ |
| 104 | struct wait_event wait_event; /* To be used if we're waiting for I/Os */ |
| 105 | |
| 106 | struct h1s *h1s; /* H1 stream descriptor */ |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 107 | struct task *task; /* timeout management task */ |
Christopher Faulet | dbe5779 | 2020-10-05 17:50:58 +0200 | [diff] [blame] | 108 | int idle_exp; /* idle expiration date (http-keep-alive or http-request timeout) */ |
| 109 | int timeout; /* client/server timeout duration */ |
| 110 | int shut_timeout; /* client-fin/server-fin timeout duration */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 111 | }; |
| 112 | |
| 113 | /* H1 stream descriptor */ |
| 114 | struct h1s { |
| 115 | struct h1c *h1c; |
| 116 | struct conn_stream *cs; |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 117 | uint32_t flags; /* Connection flags: H1S_F_* */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 118 | |
Willy Tarreau | 1b0d4d1 | 2020-01-16 11:03:19 +0100 | [diff] [blame] | 119 | struct wait_event *subs; /* Address of the wait_event the conn_stream associated is waiting on */ |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 120 | |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 121 | struct session *sess; /* Associated session */ |
Christopher Faulet | d17ad82 | 2020-09-24 15:14:29 +0200 | [diff] [blame] | 122 | struct buffer rxbuf; /* receive buffer, always valid (buf_empty or real buffer) */ |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 123 | struct h1m req; |
| 124 | struct h1m res; |
| 125 | |
Ilya Shipitsin | 47d1718 | 2020-06-21 21:42:57 +0500 | [diff] [blame] | 126 | enum http_meth_t meth; /* HTTP request method */ |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 127 | uint16_t status; /* HTTP response status */ |
Amaury Denoyelle | c193823 | 2020-12-11 17:53:03 +0100 | [diff] [blame] | 128 | |
| 129 | char ws_key[25]; /* websocket handshake key */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 130 | }; |
| 131 | |
Christopher Faulet | 98fbe95 | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 132 | /* Map of headers used to convert outgoing headers */ |
| 133 | struct h1_hdrs_map { |
| 134 | char *name; |
| 135 | struct eb_root map; |
| 136 | }; |
| 137 | |
| 138 | /* An entry in a headers map */ |
| 139 | struct h1_hdr_entry { |
| 140 | struct ist name; |
| 141 | struct ebpt_node node; |
| 142 | }; |
| 143 | |
| 144 | /* Declare the headers map */ |
| 145 | static struct h1_hdrs_map hdrs_map = { .name = NULL, .map = EB_ROOT }; |
| 146 | |
| 147 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 148 | /* trace source and events */ |
| 149 | static void h1_trace(enum trace_level level, uint64_t mask, |
| 150 | const struct trace_source *src, |
| 151 | const struct ist where, const struct ist func, |
| 152 | const void *a1, const void *a2, const void *a3, const void *a4); |
| 153 | |
| 154 | /* The event representation is split like this : |
| 155 | * h1c - internal H1 connection |
| 156 | * h1s - internal H1 stream |
| 157 | * strm - application layer |
| 158 | * rx - data receipt |
| 159 | * tx - data transmission |
| 160 | * |
| 161 | */ |
| 162 | static const struct trace_event h1_trace_events[] = { |
| 163 | #define H1_EV_H1C_NEW (1ULL << 0) |
| 164 | { .mask = H1_EV_H1C_NEW, .name = "h1c_new", .desc = "new H1 connection" }, |
| 165 | #define H1_EV_H1C_RECV (1ULL << 1) |
| 166 | { .mask = H1_EV_H1C_RECV, .name = "h1c_recv", .desc = "Rx on H1 connection" }, |
| 167 | #define H1_EV_H1C_SEND (1ULL << 2) |
| 168 | { .mask = H1_EV_H1C_SEND, .name = "h1c_send", .desc = "Tx on H1 connection" }, |
| 169 | #define H1_EV_H1C_BLK (1ULL << 3) |
| 170 | { .mask = H1_EV_H1C_BLK, .name = "h1c_blk", .desc = "H1 connection blocked" }, |
| 171 | #define H1_EV_H1C_WAKE (1ULL << 4) |
| 172 | { .mask = H1_EV_H1C_WAKE, .name = "h1c_wake", .desc = "H1 connection woken up" }, |
| 173 | #define H1_EV_H1C_END (1ULL << 5) |
| 174 | { .mask = H1_EV_H1C_END, .name = "h1c_end", .desc = "H1 connection terminated" }, |
| 175 | #define H1_EV_H1C_ERR (1ULL << 6) |
| 176 | { .mask = H1_EV_H1C_ERR, .name = "h1c_err", .desc = "error on H1 connection" }, |
| 177 | |
| 178 | #define H1_EV_RX_DATA (1ULL << 7) |
| 179 | { .mask = H1_EV_RX_DATA, .name = "rx_data", .desc = "receipt of any H1 data" }, |
| 180 | #define H1_EV_RX_EOI (1ULL << 8) |
| 181 | { .mask = H1_EV_RX_EOI, .name = "rx_eoi", .desc = "receipt of end of H1 input" }, |
| 182 | #define H1_EV_RX_HDRS (1ULL << 9) |
| 183 | { .mask = H1_EV_RX_HDRS, .name = "rx_headers", .desc = "receipt of H1 headers" }, |
| 184 | #define H1_EV_RX_BODY (1ULL << 10) |
| 185 | { .mask = H1_EV_RX_BODY, .name = "rx_body", .desc = "receipt of H1 body" }, |
| 186 | #define H1_EV_RX_TLRS (1ULL << 11) |
| 187 | { .mask = H1_EV_RX_TLRS, .name = "rx_trailerus", .desc = "receipt of H1 trailers" }, |
| 188 | |
| 189 | #define H1_EV_TX_DATA (1ULL << 12) |
| 190 | { .mask = H1_EV_TX_DATA, .name = "tx_data", .desc = "transmission of any H1 data" }, |
| 191 | #define H1_EV_TX_EOI (1ULL << 13) |
| 192 | { .mask = H1_EV_TX_EOI, .name = "tx_eoi", .desc = "transmission of end of H1 input" }, |
| 193 | #define H1_EV_TX_HDRS (1ULL << 14) |
| 194 | { .mask = H1_EV_TX_HDRS, .name = "tx_headers", .desc = "transmission of all headers" }, |
| 195 | #define H1_EV_TX_BODY (1ULL << 15) |
| 196 | { .mask = H1_EV_TX_BODY, .name = "tx_body", .desc = "transmission of H1 body" }, |
| 197 | #define H1_EV_TX_TLRS (1ULL << 16) |
| 198 | { .mask = H1_EV_TX_TLRS, .name = "tx_trailerus", .desc = "transmission of H1 trailers" }, |
| 199 | |
| 200 | #define H1_EV_H1S_NEW (1ULL << 17) |
| 201 | { .mask = H1_EV_H1S_NEW, .name = "h1s_new", .desc = "new H1 stream" }, |
| 202 | #define H1_EV_H1S_BLK (1ULL << 18) |
| 203 | { .mask = H1_EV_H1S_BLK, .name = "h1s_blk", .desc = "H1 stream blocked" }, |
| 204 | #define H1_EV_H1S_END (1ULL << 19) |
| 205 | { .mask = H1_EV_H1S_END, .name = "h1s_end", .desc = "H1 stream terminated" }, |
| 206 | #define H1_EV_H1S_ERR (1ULL << 20) |
| 207 | { .mask = H1_EV_H1S_ERR, .name = "h1s_err", .desc = "error on H1 stream" }, |
| 208 | |
| 209 | #define H1_EV_STRM_NEW (1ULL << 21) |
| 210 | { .mask = H1_EV_STRM_NEW, .name = "strm_new", .desc = "app-layer stream creation" }, |
| 211 | #define H1_EV_STRM_RECV (1ULL << 22) |
| 212 | { .mask = H1_EV_STRM_RECV, .name = "strm_recv", .desc = "receiving data for stream" }, |
| 213 | #define H1_EV_STRM_SEND (1ULL << 23) |
| 214 | { .mask = H1_EV_STRM_SEND, .name = "strm_send", .desc = "sending data for stream" }, |
| 215 | #define H1_EV_STRM_WAKE (1ULL << 24) |
| 216 | { .mask = H1_EV_STRM_WAKE, .name = "strm_wake", .desc = "stream woken up" }, |
| 217 | #define H1_EV_STRM_SHUT (1ULL << 25) |
| 218 | { .mask = H1_EV_STRM_SHUT, .name = "strm_shut", .desc = "stream shutdown" }, |
| 219 | #define H1_EV_STRM_END (1ULL << 26) |
| 220 | { .mask = H1_EV_STRM_END, .name = "strm_end", .desc = "detaching app-layer stream" }, |
| 221 | #define H1_EV_STRM_ERR (1ULL << 27) |
| 222 | { .mask = H1_EV_STRM_ERR, .name = "strm_err", .desc = "stream error" }, |
| 223 | |
| 224 | { } |
| 225 | }; |
| 226 | |
| 227 | static const struct name_desc h1_trace_lockon_args[4] = { |
| 228 | /* arg1 */ { /* already used by the connection */ }, |
| 229 | /* arg2 */ { .name="h1s", .desc="H1 stream" }, |
| 230 | /* arg3 */ { }, |
| 231 | /* arg4 */ { } |
| 232 | }; |
| 233 | |
| 234 | static const struct name_desc h1_trace_decoding[] = { |
| 235 | #define H1_VERB_CLEAN 1 |
| 236 | { .name="clean", .desc="only user-friendly stuff, generally suitable for level \"user\"" }, |
| 237 | #define H1_VERB_MINIMAL 2 |
| 238 | { .name="minimal", .desc="report only h1c/h1s state and flags, no real decoding" }, |
| 239 | #define H1_VERB_SIMPLE 3 |
| 240 | { .name="simple", .desc="add request/response status line or htx info when available" }, |
| 241 | #define H1_VERB_ADVANCED 4 |
| 242 | { .name="advanced", .desc="add header fields or frame decoding when available" }, |
| 243 | #define H1_VERB_COMPLETE 5 |
| 244 | { .name="complete", .desc="add full data dump when available" }, |
| 245 | { /* end */ } |
| 246 | }; |
| 247 | |
Willy Tarreau | 6eb3d37 | 2021-04-10 19:29:26 +0200 | [diff] [blame] | 248 | static struct trace_source trace_h1 __read_mostly = { |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 249 | .name = IST("h1"), |
| 250 | .desc = "HTTP/1 multiplexer", |
| 251 | .arg_def = TRC_ARG1_CONN, // TRACE()'s first argument is always a connection |
| 252 | .default_cb = h1_trace, |
| 253 | .known_events = h1_trace_events, |
| 254 | .lockon_args = h1_trace_lockon_args, |
| 255 | .decoding = h1_trace_decoding, |
| 256 | .report_events = ~0, // report everything by default |
| 257 | }; |
| 258 | |
| 259 | #define TRACE_SOURCE &trace_h1 |
| 260 | INITCALL1(STG_REGISTER, trace_register_source, TRACE_SOURCE); |
| 261 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 262 | /* the h1c and h1s pools */ |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 263 | DECLARE_STATIC_POOL(pool_head_h1c, "h1c", sizeof(struct h1c)); |
| 264 | DECLARE_STATIC_POOL(pool_head_h1s, "h1s", sizeof(struct h1s)); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 265 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 266 | static int h1_recv(struct h1c *h1c); |
| 267 | static int h1_send(struct h1c *h1c); |
| 268 | static int h1_process(struct h1c *h1c); |
Willy Tarreau | 691d503 | 2021-01-20 14:55:01 +0100 | [diff] [blame] | 269 | /* h1_io_cb is exported to see it resolved in "show fd" */ |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 270 | struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state); |
| 271 | struct task *h1_timeout_task(struct task *t, void *context, unsigned int state); |
Christopher Faulet | 3c82d8b | 2020-10-05 17:11:16 +0200 | [diff] [blame] | 272 | static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode); |
Christopher Faulet | 660f6f3 | 2019-10-04 10:22:47 +0200 | [diff] [blame] | 273 | static void h1_wake_stream_for_recv(struct h1s *h1s); |
| 274 | static void h1_wake_stream_for_send(struct h1s *h1s); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 275 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 276 | /* the H1 traces always expect that arg1, if non-null, is of type connection |
| 277 | * (from which we can derive h1c), that arg2, if non-null, is of type h1s, and |
| 278 | * that arg3, if non-null, is a htx for rx/tx headers. |
| 279 | */ |
| 280 | static void h1_trace(enum trace_level level, uint64_t mask, const struct trace_source *src, |
| 281 | const struct ist where, const struct ist func, |
| 282 | const void *a1, const void *a2, const void *a3, const void *a4) |
| 283 | { |
| 284 | const struct connection *conn = a1; |
| 285 | const struct h1c *h1c = conn ? conn->ctx : NULL; |
| 286 | const struct h1s *h1s = a2; |
| 287 | const struct htx *htx = a3; |
| 288 | const size_t *val = a4; |
| 289 | |
| 290 | if (!h1c) |
| 291 | h1c = (h1s ? h1s->h1c : NULL); |
| 292 | |
| 293 | if (!h1c || src->verbosity < H1_VERB_CLEAN) |
| 294 | return; |
| 295 | |
| 296 | /* Display frontend/backend info by default */ |
Christopher Faulet | 0a799aa | 2020-09-24 09:52:52 +0200 | [diff] [blame] | 297 | chunk_appendf(&trace_buf, " : [%c]", ((h1c->flags & H1C_F_IS_BACK) ? 'B' : 'F')); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 298 | |
| 299 | /* Display request and response states if h1s is defined */ |
| 300 | if (h1s) |
| 301 | chunk_appendf(&trace_buf, " [%s, %s]", |
| 302 | h1m_state_str(h1s->req.state), h1m_state_str(h1s->res.state)); |
| 303 | |
| 304 | if (src->verbosity == H1_VERB_CLEAN) |
| 305 | return; |
| 306 | |
| 307 | /* Display the value to the 4th argument (level > STATE) */ |
| 308 | if (src->level > TRACE_LEVEL_STATE && val) |
Willy Tarreau | e18f53e | 2019-11-27 15:41:31 +0100 | [diff] [blame] | 309 | chunk_appendf(&trace_buf, " - VAL=%lu", (long)*val); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 310 | |
| 311 | /* Display status-line if possible (verbosity > MINIMAL) */ |
| 312 | if (src->verbosity > H1_VERB_MINIMAL && htx && htx_nbblks(htx)) { |
| 313 | const struct htx_blk *blk = htx_get_head_blk(htx); |
| 314 | const struct htx_sl *sl = htx_get_blk_ptr(htx, blk); |
| 315 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 316 | |
| 317 | if (type == HTX_BLK_REQ_SL || type == HTX_BLK_RES_SL) |
| 318 | chunk_appendf(&trace_buf, " - \"%.*s %.*s %.*s\"", |
| 319 | HTX_SL_P1_LEN(sl), HTX_SL_P1_PTR(sl), |
| 320 | HTX_SL_P2_LEN(sl), HTX_SL_P2_PTR(sl), |
| 321 | HTX_SL_P3_LEN(sl), HTX_SL_P3_PTR(sl)); |
| 322 | } |
| 323 | |
| 324 | /* Display h1c info and, if defined, h1s info (pointer + flags) */ |
| 325 | chunk_appendf(&trace_buf, " - h1c=%p(0x%08x)", h1c, h1c->flags); |
| 326 | if (h1s) |
| 327 | chunk_appendf(&trace_buf, " h1s=%p(0x%08x)", h1s, h1s->flags); |
| 328 | |
| 329 | if (src->verbosity == H1_VERB_MINIMAL) |
| 330 | return; |
| 331 | |
| 332 | /* Display input and output buffer info (level > USER & verbosity > SIMPLE) */ |
| 333 | if (src->level > TRACE_LEVEL_USER) { |
| 334 | if (src->verbosity == H1_VERB_COMPLETE || |
| 335 | (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_RECV|H1_EV_STRM_RECV)))) |
| 336 | chunk_appendf(&trace_buf, " ibuf=%u@%p+%u/%u", |
| 337 | (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf), |
| 338 | (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf)); |
| 339 | if (src->verbosity == H1_VERB_COMPLETE || |
| 340 | (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_H1C_SEND|H1_EV_STRM_SEND)))) |
| 341 | chunk_appendf(&trace_buf, " obuf=%u@%p+%u/%u", |
| 342 | (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf), |
| 343 | (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf)); |
| 344 | } |
| 345 | |
| 346 | /* Display htx info if defined (level > USER) */ |
| 347 | if (src->level > TRACE_LEVEL_USER && htx) { |
| 348 | int full = 0; |
| 349 | |
| 350 | /* Full htx info (level > STATE && verbosity > SIMPLE) */ |
| 351 | if (src->level > TRACE_LEVEL_STATE) { |
| 352 | if (src->verbosity == H1_VERB_COMPLETE) |
| 353 | full = 1; |
| 354 | else if (src->verbosity == H1_VERB_ADVANCED && (mask & (H1_EV_RX_HDRS|H1_EV_TX_HDRS))) |
| 355 | full = 1; |
| 356 | } |
| 357 | |
| 358 | chunk_memcat(&trace_buf, "\n\t", 2); |
| 359 | htx_dump(&trace_buf, htx, full); |
| 360 | } |
| 361 | } |
| 362 | |
| 363 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 364 | /*****************************************************/ |
| 365 | /* functions below are for dynamic buffer management */ |
| 366 | /*****************************************************/ |
| 367 | /* |
Christopher Faulet | 2545a0b | 2019-12-05 12:30:55 +0100 | [diff] [blame] | 368 | * Indicates whether or not we may receive data. The rules are the following : |
| 369 | * - if an error or a shutdown for reads was detected on the connection we |
Christopher Faulet | 119ac87 | 2020-09-30 17:33:22 +0200 | [diff] [blame] | 370 | * must not attempt to receive |
| 371 | * - if we are waiting for the connection establishment, we must not attempt |
| 372 | * to receive |
| 373 | * - if an error was detected on the stream we must not attempt to receive |
| 374 | * - if reads are explicitly disabled, we must not attempt to receive |
Christopher Faulet | 2545a0b | 2019-12-05 12:30:55 +0100 | [diff] [blame] | 375 | * - if the input buffer failed to be allocated or is full , we must not try |
| 376 | * to receive |
Christopher Faulet | 119ac87 | 2020-09-30 17:33:22 +0200 | [diff] [blame] | 377 | * - if the mux is not blocked on an input condition, we may attempt to receive |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 378 | * - otherwise must may not attempt to receive |
| 379 | */ |
| 380 | static inline int h1_recv_allowed(const struct h1c *h1c) |
| 381 | { |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 382 | if (h1c->flags & H1C_F_ST_ERROR) { |
Christopher Faulet | 2545a0b | 2019-12-05 12:30:55 +0100 | [diff] [blame] | 383 | TRACE_DEVEL("recv not allowed because of error on h1c", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 384 | return 0; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 385 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 386 | |
Willy Tarreau | 2febb84 | 2020-07-31 09:15:43 +0200 | [diff] [blame] | 387 | if (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_WAIT_L4_CONN|CO_FL_WAIT_L6_CONN)) { |
| 388 | TRACE_DEVEL("recv not allowed because of (error|read0|waitl4|waitl6) on connection", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn); |
Christopher Faulet | cf56b99 | 2018-12-11 16:12:31 +0100 | [diff] [blame] | 389 | return 0; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 390 | } |
Christopher Faulet | cf56b99 | 2018-12-11 16:12:31 +0100 | [diff] [blame] | 391 | |
Christopher Faulet | 119ac87 | 2020-09-30 17:33:22 +0200 | [diff] [blame] | 392 | if (h1c->h1s && (h1c->h1s->flags & H1S_F_ERROR)) { |
| 393 | TRACE_DEVEL("recv not allowed because of error on h1s", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn); |
| 394 | return 0; |
| 395 | } |
| 396 | |
Christopher Faulet | d17ad82 | 2020-09-24 15:14:29 +0200 | [diff] [blame] | 397 | if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL|H1C_F_IN_SALLOC))) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 398 | return 1; |
| 399 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 400 | TRACE_DEVEL("recv not allowed because input is blocked", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 401 | return 0; |
| 402 | } |
| 403 | |
| 404 | /* |
| 405 | * Tries to grab a buffer and to re-enables processing on mux <target>. The h1 |
| 406 | * flags are used to figure what buffer was requested. It returns 1 if the |
| 407 | * allocation succeeds, in which case the connection is woken up, or 0 if it's |
| 408 | * impossible to wake up and we prefer to be woken up later. |
| 409 | */ |
| 410 | static int h1_buf_available(void *target) |
| 411 | { |
| 412 | struct h1c *h1c = target; |
| 413 | |
Willy Tarreau | d68d4f1 | 2021-03-22 14:44:31 +0100 | [diff] [blame] | 414 | if ((h1c->flags & H1C_F_IN_ALLOC) && b_alloc(&h1c->ibuf)) { |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 415 | TRACE_STATE("unblocking h1c, ibuf allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 416 | h1c->flags &= ~H1C_F_IN_ALLOC; |
| 417 | if (h1_recv_allowed(h1c)) |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 418 | tasklet_wakeup(h1c->wait_event.tasklet); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 419 | return 1; |
| 420 | } |
| 421 | |
Willy Tarreau | d68d4f1 | 2021-03-22 14:44:31 +0100 | [diff] [blame] | 422 | if ((h1c->flags & H1C_F_OUT_ALLOC) && b_alloc(&h1c->obuf)) { |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 423 | TRACE_STATE("unblocking h1s, obuf allocated", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1c->h1s); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 424 | h1c->flags &= ~H1C_F_OUT_ALLOC; |
Christopher Faulet | 660f6f3 | 2019-10-04 10:22:47 +0200 | [diff] [blame] | 425 | if (h1c->h1s) |
| 426 | h1_wake_stream_for_send(h1c->h1s); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 427 | return 1; |
| 428 | } |
| 429 | |
Willy Tarreau | d68d4f1 | 2021-03-22 14:44:31 +0100 | [diff] [blame] | 430 | if ((h1c->flags & H1C_F_IN_SALLOC) && h1c->h1s && b_alloc(&h1c->h1s->rxbuf)) { |
Christopher Faulet | d17ad82 | 2020-09-24 15:14:29 +0200 | [diff] [blame] | 431 | TRACE_STATE("unblocking h1c, stream rxbuf allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn); |
| 432 | h1c->flags &= ~H1C_F_IN_SALLOC; |
| 433 | tasklet_wakeup(h1c->wait_event.tasklet); |
| 434 | return 1; |
| 435 | } |
| 436 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 437 | return 0; |
| 438 | } |
| 439 | |
| 440 | /* |
| 441 | * Allocate a buffer. If if fails, it adds the mux in buffer wait queue. |
| 442 | */ |
| 443 | static inline struct buffer *h1_get_buf(struct h1c *h1c, struct buffer *bptr) |
| 444 | { |
| 445 | struct buffer *buf = NULL; |
| 446 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 447 | if (likely(!LIST_INLIST(&h1c->buf_wait.list)) && |
Willy Tarreau | d68d4f1 | 2021-03-22 14:44:31 +0100 | [diff] [blame] | 448 | unlikely((buf = b_alloc(bptr)) == NULL)) { |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 449 | h1c->buf_wait.target = h1c; |
| 450 | h1c->buf_wait.wakeup_cb = h1_buf_available; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 451 | LIST_APPEND(&ti->buffer_wq, &h1c->buf_wait.list); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 452 | } |
| 453 | return buf; |
| 454 | } |
| 455 | |
| 456 | /* |
| 457 | * Release a buffer, if any, and try to wake up entities waiting in the buffer |
| 458 | * wait queue. |
| 459 | */ |
| 460 | static inline void h1_release_buf(struct h1c *h1c, struct buffer *bptr) |
| 461 | { |
| 462 | if (bptr->size) { |
| 463 | b_free(bptr); |
Willy Tarreau | 4d77bbf | 2021-02-20 12:02:46 +0100 | [diff] [blame] | 464 | offer_buffers(h1c->buf_wait.target, 1); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 465 | } |
| 466 | } |
| 467 | |
Christopher Faulet | aaa67bc | 2019-12-05 10:23:37 +0100 | [diff] [blame] | 468 | /* returns the number of streams in use on a connection to figure if it's idle |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 469 | * or not. We rely on H1C_F_ST_IDLE to know if the connection is in-use or |
Christopher Faulet | aaa67bc | 2019-12-05 10:23:37 +0100 | [diff] [blame] | 470 | * not. This flag is only set when no H1S is attached and when the previous |
| 471 | * stream, if any, was fully terminated without any error and in K/A mode. |
Willy Tarreau | 00f18a3 | 2019-01-26 12:19:01 +0100 | [diff] [blame] | 472 | */ |
| 473 | static int h1_used_streams(struct connection *conn) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 474 | { |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 475 | struct h1c *h1c = conn->ctx; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 476 | |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 477 | return ((h1c->flags & H1C_F_ST_IDLE) ? 0 : 1); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 478 | } |
| 479 | |
Willy Tarreau | 00f18a3 | 2019-01-26 12:19:01 +0100 | [diff] [blame] | 480 | /* returns the number of streams still available on a connection */ |
| 481 | static int h1_avail_streams(struct connection *conn) |
Olivier Houchard | 8defe4b | 2018-12-02 01:31:17 +0100 | [diff] [blame] | 482 | { |
Willy Tarreau | 00f18a3 | 2019-01-26 12:19:01 +0100 | [diff] [blame] | 483 | return 1 - h1_used_streams(conn); |
Olivier Houchard | 8defe4b | 2018-12-02 01:31:17 +0100 | [diff] [blame] | 484 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 485 | |
Christopher Faulet | 7a145d6 | 2020-08-05 11:31:16 +0200 | [diff] [blame] | 486 | /* Refresh the h1c task timeout if necessary */ |
| 487 | static void h1_refresh_timeout(struct h1c *h1c) |
| 488 | { |
| 489 | if (h1c->task) { |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 490 | if (!(h1c->flags & H1C_F_ST_ALIVE) || (h1c->flags & H1C_F_ST_SHUTDOWN)) { |
Christopher Faulet | 3c82d8b | 2020-10-05 17:11:16 +0200 | [diff] [blame] | 491 | /* half-closed or dead connections : switch to clientfin/serverfin |
| 492 | * timeouts so that we don't hang too long on clients that have |
| 493 | * gone away (especially in tunnel mode). |
Willy Tarreau | 4313d5a | 2020-09-08 15:40:57 +0200 | [diff] [blame] | 494 | */ |
| 495 | h1c->task->expire = tick_add(now_ms, h1c->shut_timeout); |
Christopher Faulet | adcd789 | 2020-10-05 17:13:05 +0200 | [diff] [blame] | 496 | TRACE_DEVEL("refreshing connection's timeout (dead or half-closed)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn); |
| 497 | } |
| 498 | else if (b_data(&h1c->obuf)) { |
| 499 | /* connection with pending outgoing data, need a timeout (server or client). */ |
Christopher Faulet | 3c82d8b | 2020-10-05 17:11:16 +0200 | [diff] [blame] | 500 | h1c->task->expire = tick_add(now_ms, h1c->timeout); |
Christopher Faulet | adcd789 | 2020-10-05 17:13:05 +0200 | [diff] [blame] | 501 | TRACE_DEVEL("refreshing connection's timeout (pending outgoing data)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn); |
| 502 | } |
Christopher Faulet | 39c7b6b | 2021-01-21 17:44:35 +0100 | [diff] [blame] | 503 | else if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_READY))) { |
| 504 | /* front connections waiting for a fully usable stream need a timeout. */ |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 505 | h1c->task->expire = tick_add(now_ms, h1c->timeout); |
Christopher Faulet | 39c7b6b | 2021-01-21 17:44:35 +0100 | [diff] [blame] | 506 | TRACE_DEVEL("refreshing connection's timeout (alive front h1c but not ready)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn); |
Christopher Faulet | 7a145d6 | 2020-08-05 11:31:16 +0200 | [diff] [blame] | 507 | } |
Christopher Faulet | adcd789 | 2020-10-05 17:13:05 +0200 | [diff] [blame] | 508 | else { |
| 509 | /* alive back connections of front connections with a conn-stream attached */ |
| 510 | h1c->task->expire = TICK_ETERNITY; |
| 511 | TRACE_DEVEL("no connection timeout (alive back h1c or front h1c with a CS)", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn); |
| 512 | } |
| 513 | |
Christopher Faulet | dbe5779 | 2020-10-05 17:50:58 +0200 | [diff] [blame] | 514 | /* Finally set the idle expiration date if shorter */ |
| 515 | h1c->task->expire = tick_first(h1c->task->expire, h1c->idle_exp); |
Christopher Faulet | adcd789 | 2020-10-05 17:13:05 +0200 | [diff] [blame] | 516 | TRACE_DEVEL("new expiration date", H1_EV_H1C_SEND|H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){h1c->task->expire}); |
| 517 | task_queue(h1c->task); |
Christopher Faulet | 7a145d6 | 2020-08-05 11:31:16 +0200 | [diff] [blame] | 518 | } |
| 519 | } |
Christopher Faulet | dbe5779 | 2020-10-05 17:50:58 +0200 | [diff] [blame] | 520 | |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 521 | static void h1_set_idle_expiration(struct h1c *h1c) |
Christopher Faulet | dbe5779 | 2020-10-05 17:50:58 +0200 | [diff] [blame] | 522 | { |
| 523 | if (h1c->flags & H1C_F_IS_BACK || !h1c->task) { |
| 524 | TRACE_DEVEL("no idle expiration (backend connection || no task)", H1_EV_H1C_RECV, h1c->conn); |
| 525 | h1c->idle_exp = TICK_ETERNITY; |
| 526 | return; |
| 527 | } |
| 528 | |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 529 | if (h1c->flags & H1C_F_ST_IDLE) { |
Christopher Faulet | dbe5779 | 2020-10-05 17:50:58 +0200 | [diff] [blame] | 530 | if (!tick_isset(h1c->idle_exp)) { |
| 531 | if ((h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* Not the first request */ |
| 532 | !b_data(&h1c->ibuf) && /* No input data */ |
| 533 | tick_isset(h1c->px->timeout.httpka)) { /* K-A timeout set */ |
| 534 | h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpka); |
| 535 | TRACE_DEVEL("set idle expiration (keep-alive timeout)", H1_EV_H1C_RECV, h1c->conn); |
| 536 | } |
| 537 | else { |
| 538 | h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq); |
| 539 | TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn); |
| 540 | } |
| 541 | } |
| 542 | } |
Christopher Faulet | 39c7b6b | 2021-01-21 17:44:35 +0100 | [diff] [blame] | 543 | else if ((h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY)) { |
Christopher Faulet | dbe5779 | 2020-10-05 17:50:58 +0200 | [diff] [blame] | 544 | if (!tick_isset(h1c->idle_exp)) { |
| 545 | h1c->idle_exp = tick_add_ifset(now_ms, h1c->px->timeout.httpreq); |
| 546 | TRACE_DEVEL("set idle expiration (http-request timeout)", H1_EV_H1C_RECV, h1c->conn); |
| 547 | } |
| 548 | } |
| 549 | else { // CS_ATTACHED or SHUTDOWN |
| 550 | h1c->idle_exp = TICK_ETERNITY; |
| 551 | TRACE_DEVEL("unset idle expiration (attached || shutdown)", H1_EV_H1C_RECV, h1c->conn); |
| 552 | } |
| 553 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 554 | /*****************************************************************/ |
| 555 | /* functions below are dedicated to the mux setup and management */ |
| 556 | /*****************************************************************/ |
Willy Tarreau | fbdf90a | 2019-06-03 13:42:54 +0200 | [diff] [blame] | 557 | |
| 558 | /* returns non-zero if there are input data pending for stream h1s. */ |
| 559 | static inline size_t h1s_data_pending(const struct h1s *h1s) |
| 560 | { |
| 561 | const struct h1m *h1m; |
| 562 | |
Christopher Faulet | 0a799aa | 2020-09-24 09:52:52 +0200 | [diff] [blame] | 563 | h1m = ((h1s->h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 564 | return ((h1m->state == H1_MSG_DONE) ? 0 : b_data(&h1s->h1c->ibuf)); |
Willy Tarreau | fbdf90a | 2019-06-03 13:42:54 +0200 | [diff] [blame] | 565 | } |
| 566 | |
Christopher Faulet | 16df178 | 2020-12-04 16:47:41 +0100 | [diff] [blame] | 567 | /* Creates a new conn-stream and the associate stream. <input> is used as input |
| 568 | * buffer for the stream. On success, it is transferred to the stream and the |
| 569 | * mux is no longer responsible of it. On error, <input> is unchanged, thus the |
| 570 | * mux must still take care of it. However, there is nothing special to do |
| 571 | * because, on success, <input> is updated to points on BUF_NULL. Thus, calling |
| 572 | * b_free() on it is always safe. This function returns the conn-stream on |
| 573 | * success or NULL on error. */ |
Christopher Faulet | 26256f8 | 2020-09-14 11:40:13 +0200 | [diff] [blame] | 574 | static struct conn_stream *h1s_new_cs(struct h1s *h1s, struct buffer *input) |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 575 | { |
| 576 | struct conn_stream *cs; |
| 577 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 578 | TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s); |
Christopher Faulet | 236c93b | 2020-07-02 09:19:54 +0200 | [diff] [blame] | 579 | cs = cs_new(h1s->h1c->conn, h1s->h1c->conn->target); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 580 | if (!cs) { |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 581 | TRACE_ERROR("CS allocation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, h1s->h1c->conn, h1s); |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 582 | goto err; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 583 | } |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 584 | h1s->cs = cs; |
| 585 | cs->ctx = h1s; |
| 586 | |
| 587 | if (h1s->flags & H1S_F_NOT_FIRST) |
| 588 | cs->flags |= CS_FL_NOT_FIRST; |
| 589 | |
Christopher Faulet | 26256f8 | 2020-09-14 11:40:13 +0200 | [diff] [blame] | 590 | if (stream_create_from_cs(cs, input) < 0) { |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 591 | TRACE_DEVEL("leaving on stream creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, h1s->h1c->conn, h1s); |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 592 | goto err; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 593 | } |
| 594 | |
Christopher Faulet | 39c7b6b | 2021-01-21 17:44:35 +0100 | [diff] [blame] | 595 | h1s->h1c->flags = (h1s->h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 596 | TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s); |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 597 | return cs; |
| 598 | |
| 599 | err: |
| 600 | cs_free(cs); |
| 601 | h1s->cs = NULL; |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 602 | TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s); |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 603 | return NULL; |
| 604 | } |
| 605 | |
Christopher Faulet | 0f9395d | 2021-01-21 17:50:19 +0100 | [diff] [blame] | 606 | static struct conn_stream *h1s_upgrade_cs(struct h1s *h1s, struct buffer *input) |
| 607 | { |
| 608 | TRACE_ENTER(H1_EV_STRM_NEW, h1s->h1c->conn, h1s); |
| 609 | |
| 610 | if (stream_upgrade_from_cs(h1s->cs, input) < 0) { |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 611 | TRACE_ERROR("stream upgrade failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, h1s->h1c->conn, h1s); |
Christopher Faulet | 0f9395d | 2021-01-21 17:50:19 +0100 | [diff] [blame] | 612 | goto err; |
| 613 | } |
| 614 | |
Christopher Faulet | 0f9395d | 2021-01-21 17:50:19 +0100 | [diff] [blame] | 615 | h1s->h1c->flags |= H1C_F_ST_READY; |
| 616 | TRACE_LEAVE(H1_EV_STRM_NEW, h1s->h1c->conn, h1s); |
| 617 | return h1s->cs; |
| 618 | |
| 619 | err: |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 620 | TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1s->h1c->conn, h1s); |
Christopher Faulet | 0f9395d | 2021-01-21 17:50:19 +0100 | [diff] [blame] | 621 | return NULL; |
| 622 | } |
| 623 | |
Christopher Faulet | 2f0ec66 | 2020-09-24 10:30:15 +0200 | [diff] [blame] | 624 | static struct h1s *h1s_new(struct h1c *h1c) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 625 | { |
| 626 | struct h1s *h1s; |
| 627 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 628 | TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn); |
| 629 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 630 | h1s = pool_alloc(pool_head_h1s); |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 631 | if (!h1s) { |
| 632 | TRACE_ERROR("H1S allocation failure", H1_EV_H1S_NEW|H1_EV_H1S_END|H1_EV_H1S_ERR, h1c->conn); |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 633 | goto fail; |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 634 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 635 | h1s->h1c = h1c; |
| 636 | h1c->h1s = h1s; |
Christopher Faulet | 2f0ec66 | 2020-09-24 10:30:15 +0200 | [diff] [blame] | 637 | h1s->sess = NULL; |
| 638 | h1s->cs = NULL; |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 639 | h1s->flags = H1S_F_WANT_KAL; |
Willy Tarreau | 1b0d4d1 | 2020-01-16 11:03:19 +0100 | [diff] [blame] | 640 | h1s->subs = NULL; |
Christopher Faulet | d17ad82 | 2020-09-24 15:14:29 +0200 | [diff] [blame] | 641 | h1s->rxbuf = BUF_NULL; |
Amaury Denoyelle | c193823 | 2020-12-11 17:53:03 +0100 | [diff] [blame] | 642 | memset(h1s->ws_key, 0, sizeof(h1s->ws_key)); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 643 | |
| 644 | h1m_init_req(&h1s->req); |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 645 | h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 646 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 647 | h1m_init_res(&h1s->res); |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 648 | h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 649 | |
| 650 | h1s->status = 0; |
| 651 | h1s->meth = HTTP_METH_OTHER; |
| 652 | |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 653 | if (h1c->flags & H1C_F_WAIT_NEXT_REQ) |
| 654 | h1s->flags |= H1S_F_NOT_FIRST; |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 655 | h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_EMBRYONIC; |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 656 | |
Christopher Faulet | 2f0ec66 | 2020-09-24 10:30:15 +0200 | [diff] [blame] | 657 | TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s); |
| 658 | return h1s; |
Christopher Faulet | e9b7072 | 2019-04-08 10:46:02 +0200 | [diff] [blame] | 659 | |
Christopher Faulet | 2f0ec66 | 2020-09-24 10:30:15 +0200 | [diff] [blame] | 660 | fail: |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 661 | TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn); |
Christopher Faulet | 2f0ec66 | 2020-09-24 10:30:15 +0200 | [diff] [blame] | 662 | return NULL; |
| 663 | } |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 664 | |
Christopher Faulet | 2f0ec66 | 2020-09-24 10:30:15 +0200 | [diff] [blame] | 665 | static struct h1s *h1c_frt_stream_new(struct h1c *h1c) |
| 666 | { |
| 667 | struct session *sess = h1c->conn->owner; |
| 668 | struct h1s *h1s; |
| 669 | |
| 670 | TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn); |
| 671 | |
| 672 | h1s = h1s_new(h1c); |
| 673 | if (!h1s) |
| 674 | goto fail; |
| 675 | |
| 676 | h1s->sess = sess; |
| 677 | |
| 678 | if (h1c->px->options2 & PR_O2_REQBUG_OK) |
| 679 | h1s->req.err_pos = -1; |
| 680 | |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 681 | h1c->idle_exp = TICK_ETERNITY; |
| 682 | h1_set_idle_expiration(h1c); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 683 | TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 684 | return h1s; |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 685 | |
Christopher Faulet | 2f0ec66 | 2020-09-24 10:30:15 +0200 | [diff] [blame] | 686 | fail: |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 687 | TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn); |
Christopher Faulet | 2f0ec66 | 2020-09-24 10:30:15 +0200 | [diff] [blame] | 688 | return NULL; |
| 689 | } |
| 690 | |
| 691 | static struct h1s *h1c_bck_stream_new(struct h1c *h1c, struct conn_stream *cs, struct session *sess) |
| 692 | { |
| 693 | struct h1s *h1s; |
| 694 | |
| 695 | TRACE_ENTER(H1_EV_H1S_NEW, h1c->conn); |
| 696 | |
| 697 | h1s = h1s_new(h1c); |
| 698 | if (!h1s) |
| 699 | goto fail; |
| 700 | |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 701 | h1s->flags |= H1S_F_RX_BLK; |
Christopher Faulet | 2f0ec66 | 2020-09-24 10:30:15 +0200 | [diff] [blame] | 702 | h1s->cs = cs; |
| 703 | h1s->sess = sess; |
| 704 | cs->ctx = h1s; |
| 705 | |
Christopher Faulet | 39c7b6b | 2021-01-21 17:44:35 +0100 | [diff] [blame] | 706 | h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED | H1C_F_ST_READY; |
Christopher Faulet | 2f0ec66 | 2020-09-24 10:30:15 +0200 | [diff] [blame] | 707 | |
| 708 | if (h1c->px->options2 & PR_O2_RSPBUG_OK) |
| 709 | h1s->res.err_pos = -1; |
| 710 | |
| 711 | TRACE_LEAVE(H1_EV_H1S_NEW, h1c->conn, h1s); |
| 712 | return h1s; |
| 713 | |
| 714 | fail: |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 715 | TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_ERR, h1c->conn); |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 716 | return NULL; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 717 | } |
| 718 | |
| 719 | static void h1s_destroy(struct h1s *h1s) |
| 720 | { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 721 | if (h1s) { |
| 722 | struct h1c *h1c = h1s->h1c; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 723 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 724 | TRACE_POINT(H1_EV_H1S_END, h1c->conn, h1s); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 725 | h1c->h1s = NULL; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 726 | |
Willy Tarreau | 1b0d4d1 | 2020-01-16 11:03:19 +0100 | [diff] [blame] | 727 | if (h1s->subs) |
| 728 | h1s->subs->events = 0; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 729 | |
Christopher Faulet | d17ad82 | 2020-09-24 15:14:29 +0200 | [diff] [blame] | 730 | h1_release_buf(h1c, &h1s->rxbuf); |
| 731 | |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 732 | h1c->flags &= ~(H1C_F_WANT_SPLICE| |
Christopher Faulet | b385b50 | 2021-01-13 18:47:57 +0100 | [diff] [blame] | 733 | H1C_F_ST_EMBRYONIC|H1C_F_ST_ATTACHED|H1C_F_ST_READY| |
Christopher Faulet | 295b8d1 | 2020-09-30 17:14:55 +0200 | [diff] [blame] | 734 | H1C_F_OUT_FULL|H1C_F_OUT_ALLOC|H1C_F_IN_SALLOC| |
| 735 | H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER); |
Christopher Faulet | 60ef12c | 2020-09-24 10:05:44 +0200 | [diff] [blame] | 736 | if (h1s->flags & H1S_F_ERROR) { |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 737 | h1c->flags |= H1C_F_ST_ERROR; |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 738 | TRACE_ERROR("h1s on error, set error on h1c", H1_EV_H1S_END|H1_EV_H1C_ERR, h1c->conn, h1s); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 739 | } |
Christopher Faulet | aaa67bc | 2019-12-05 10:23:37 +0100 | [diff] [blame] | 740 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 741 | if (!(h1c->flags & (H1C_F_ST_ERROR|H1C_F_ST_SHUTDOWN)) && /* No error/shutdown on h1c */ |
Christopher Faulet | aaa67bc | 2019-12-05 10:23:37 +0100 | [diff] [blame] | 742 | !(h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH)) && /* No error/shutdown on conn */ |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 743 | (h1s->flags & H1S_F_WANT_KAL) && /* K/A possible */ |
Christopher Faulet | aaa67bc | 2019-12-05 10:23:37 +0100 | [diff] [blame] | 744 | h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) { /* req/res in DONE state */ |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 745 | h1c->flags |= (H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ); |
Christopher Faulet | aaa67bc | 2019-12-05 10:23:37 +0100 | [diff] [blame] | 746 | TRACE_STATE("set idle mode on h1c, waiting for the next request", H1_EV_H1C_ERR, h1c->conn, h1s); |
| 747 | } |
Christopher Faulet | 3c82d8b | 2020-10-05 17:11:16 +0200 | [diff] [blame] | 748 | else { |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 749 | TRACE_STATE("set shudown on h1c", H1_EV_H1S_END, h1c->conn, h1s); |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 750 | h1c->flags |= H1C_F_ST_SHUTDOWN; |
Christopher Faulet | 3c82d8b | 2020-10-05 17:11:16 +0200 | [diff] [blame] | 751 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 752 | pool_free(pool_head_h1s, h1s); |
| 753 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 754 | } |
| 755 | |
| 756 | /* |
Christopher Faulet | 51f73eb | 2019-04-08 11:22:47 +0200 | [diff] [blame] | 757 | * Initialize the mux once it's attached. It is expected that conn->ctx points |
Ilya Shipitsin | 47d1718 | 2020-06-21 21:42:57 +0500 | [diff] [blame] | 758 | * to the existing conn_stream (for outgoing connections or for incoming ones |
| 759 | * during a mux upgrade) or NULL (for incoming ones during the connection |
Christopher Faulet | 51f73eb | 2019-04-08 11:22:47 +0200 | [diff] [blame] | 760 | * establishment). <input> is always used as Input buffer and may contain |
| 761 | * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on |
| 762 | * error. |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 763 | */ |
Christopher Faulet | 51f73eb | 2019-04-08 11:22:47 +0200 | [diff] [blame] | 764 | static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess, |
| 765 | struct buffer *input) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 766 | { |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 767 | struct h1c *h1c; |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 768 | struct task *t = NULL; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 769 | void *conn_ctx = conn->ctx; |
| 770 | |
| 771 | TRACE_ENTER(H1_EV_H1C_NEW); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 772 | |
| 773 | h1c = pool_alloc(pool_head_h1c); |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 774 | if (!h1c) { |
| 775 | TRACE_ERROR("H1C allocation failure", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 776 | goto fail_h1c; |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 777 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 778 | h1c->conn = conn; |
| 779 | h1c->px = proxy; |
| 780 | |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 781 | h1c->flags = H1C_F_ST_IDLE; |
Christopher Faulet | c18fc23 | 2020-10-06 17:41:36 +0200 | [diff] [blame] | 782 | h1c->errcode = 0; |
Christopher Faulet | 51f73eb | 2019-04-08 11:22:47 +0200 | [diff] [blame] | 783 | h1c->ibuf = *input; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 784 | h1c->obuf = BUF_NULL; |
| 785 | h1c->h1s = NULL; |
Christopher Faulet | 51f73eb | 2019-04-08 11:22:47 +0200 | [diff] [blame] | 786 | h1c->task = NULL; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 787 | |
Willy Tarreau | 90f366b | 2021-02-20 11:49:49 +0100 | [diff] [blame] | 788 | LIST_INIT(&h1c->buf_wait.list); |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 789 | h1c->wait_event.tasklet = tasklet_new(); |
| 790 | if (!h1c->wait_event.tasklet) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 791 | goto fail; |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 792 | h1c->wait_event.tasklet->process = h1_io_cb; |
| 793 | h1c->wait_event.tasklet->context = h1c; |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 794 | h1c->wait_event.events = 0; |
Christopher Faulet | dbe5779 | 2020-10-05 17:50:58 +0200 | [diff] [blame] | 795 | h1c->idle_exp = TICK_ETERNITY; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 796 | |
Christopher Faulet | e9b7072 | 2019-04-08 10:46:02 +0200 | [diff] [blame] | 797 | if (conn_is_back(conn)) { |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 798 | h1c->flags |= H1C_F_IS_BACK; |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 799 | h1c->shut_timeout = h1c->timeout = proxy->timeout.server; |
| 800 | if (tick_isset(proxy->timeout.serverfin)) |
| 801 | h1c->shut_timeout = proxy->timeout.serverfin; |
| 802 | } else { |
| 803 | h1c->shut_timeout = h1c->timeout = proxy->timeout.client; |
| 804 | if (tick_isset(proxy->timeout.clientfin)) |
| 805 | h1c->shut_timeout = proxy->timeout.clientfin; |
Amaury Denoyelle | d3a88c1 | 2021-05-03 10:47:51 +0200 | [diff] [blame] | 806 | |
| 807 | LIST_APPEND(&mux_stopping_data[tid].list, |
| 808 | &h1c->conn->stopping_list); |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 809 | } |
| 810 | if (tick_isset(h1c->timeout)) { |
| 811 | t = task_new(tid_bit); |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 812 | if (!t) { |
| 813 | TRACE_ERROR("H1C task allocation failure", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR); |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 814 | goto fail; |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 815 | } |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 816 | |
| 817 | h1c->task = t; |
| 818 | t->process = h1_timeout_task; |
| 819 | t->context = h1c; |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 820 | |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 821 | t->expire = tick_add(now_ms, h1c->timeout); |
| 822 | } |
| 823 | |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 824 | conn->ctx = h1c; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 825 | |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 826 | if (h1c->flags & H1C_F_IS_BACK) { |
| 827 | /* Create a new H1S now for backend connection only */ |
Christopher Faulet | 2f0ec66 | 2020-09-24 10:30:15 +0200 | [diff] [blame] | 828 | if (!h1c_bck_stream_new(h1c, conn_ctx, sess)) |
| 829 | goto fail; |
| 830 | } |
Christopher Faulet | 0f9395d | 2021-01-21 17:50:19 +0100 | [diff] [blame] | 831 | else if (conn_ctx) { |
| 832 | /* Upgraded frontend connection (from TCP) */ |
| 833 | struct conn_stream *cs = conn_ctx; |
| 834 | |
| 835 | if (!h1c_frt_stream_new(h1c)) |
| 836 | goto fail; |
| 837 | |
| 838 | h1c->h1s->cs = cs; |
| 839 | cs->ctx = h1c->h1s; |
| 840 | |
| 841 | /* Attach the CS but Not ready yet */ |
| 842 | h1c->flags = (h1c->flags & ~H1C_F_ST_EMBRYONIC) | H1C_F_ST_ATTACHED; |
| 843 | TRACE_DEVEL("Inherit the CS from TCP connection to perform an upgrade", |
| 844 | H1_EV_H1C_NEW|H1_EV_STRM_NEW, h1c->conn, h1c->h1s); |
| 845 | } |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 846 | |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 847 | if (t) { |
| 848 | h1_set_idle_expiration(h1c); |
| 849 | t->expire = tick_first(t->expire, h1c->idle_exp); |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 850 | task_queue(t); |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 851 | } |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 852 | |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 853 | /* prepare to read something */ |
Christopher Faulet | d9ee788 | 2021-01-21 17:45:45 +0100 | [diff] [blame] | 854 | if (b_data(&h1c->ibuf)) |
| 855 | tasklet_wakeup(h1c->wait_event.tasklet); |
| 856 | else if (h1_recv_allowed(h1c)) |
Christopher Faulet | 089acd5 | 2020-09-21 10:57:52 +0200 | [diff] [blame] | 857 | h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 858 | |
| 859 | /* mux->wake will be called soon to complete the operation */ |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 860 | TRACE_LEAVE(H1_EV_H1C_NEW, conn, h1c->h1s); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 861 | return 0; |
| 862 | |
| 863 | fail: |
Willy Tarreau | f656279 | 2019-05-07 19:05:35 +0200 | [diff] [blame] | 864 | task_destroy(t); |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 865 | if (h1c->wait_event.tasklet) |
| 866 | tasklet_free(h1c->wait_event.tasklet); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 867 | pool_free(pool_head_h1c, h1c); |
| 868 | fail_h1c: |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 869 | conn->ctx = conn_ctx; // restore saved context |
| 870 | TRACE_DEVEL("leaving in error", H1_EV_H1C_NEW|H1_EV_H1C_END|H1_EV_H1C_ERR); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 871 | return -1; |
| 872 | } |
| 873 | |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 874 | /* release function. This one should be called to free all resources allocated |
| 875 | * to the mux. |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 876 | */ |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 877 | static void h1_release(struct h1c *h1c) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 878 | { |
Christopher Faulet | 61840e7 | 2019-04-15 09:33:32 +0200 | [diff] [blame] | 879 | struct connection *conn = NULL; |
Christopher Faulet | 39a96ee | 2019-04-08 10:52:21 +0200 | [diff] [blame] | 880 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 881 | TRACE_POINT(H1_EV_H1C_END); |
| 882 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 883 | if (h1c) { |
Christopher Faulet | 61840e7 | 2019-04-15 09:33:32 +0200 | [diff] [blame] | 884 | /* The connection must be aattached to this mux to be released */ |
| 885 | if (h1c->conn && h1c->conn->ctx == h1c) |
| 886 | conn = h1c->conn; |
| 887 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 888 | TRACE_DEVEL("freeing h1c", H1_EV_H1C_END, conn); |
| 889 | |
Christopher Faulet | 61840e7 | 2019-04-15 09:33:32 +0200 | [diff] [blame] | 890 | if (conn && h1c->flags & H1C_F_UPG_H2C) { |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 891 | TRACE_DEVEL("upgrading H1 to H2", H1_EV_H1C_END, conn); |
Olivier Houchard | 2ab3dad | 2019-07-03 13:08:18 +0200 | [diff] [blame] | 892 | /* Make sure we're no longer subscribed to anything */ |
| 893 | if (h1c->wait_event.events) |
| 894 | conn->xprt->unsubscribe(conn, conn->xprt_ctx, |
| 895 | h1c->wait_event.events, &h1c->wait_event); |
Christopher Faulet | c985f6c | 2019-07-15 11:42:52 +0200 | [diff] [blame] | 896 | if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTTP) != -1) { |
Christopher Faulet | 0ef372a | 2019-04-08 10:57:20 +0200 | [diff] [blame] | 897 | /* connection successfully upgraded to H2, this |
| 898 | * mux was already released */ |
| 899 | return; |
| 900 | } |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 901 | TRACE_ERROR("h2 upgrade failed", H1_EV_H1C_END|H1_EV_H1C_ERR, conn); |
Christopher Faulet | 0ef372a | 2019-04-08 10:57:20 +0200 | [diff] [blame] | 902 | sess_log(conn->owner); /* Log if the upgrade failed */ |
| 903 | } |
| 904 | |
Olivier Houchard | 45c4437 | 2019-06-11 14:06:23 +0200 | [diff] [blame] | 905 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 906 | if (LIST_INLIST(&h1c->buf_wait.list)) |
Willy Tarreau | 90f366b | 2021-02-20 11:49:49 +0100 | [diff] [blame] | 907 | LIST_DEL_INIT(&h1c->buf_wait.list); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 908 | |
| 909 | h1_release_buf(h1c, &h1c->ibuf); |
| 910 | h1_release_buf(h1c, &h1c->obuf); |
| 911 | |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 912 | if (h1c->task) { |
| 913 | h1c->task->context = NULL; |
| 914 | task_wakeup(h1c->task, TASK_WOKEN_OTHER); |
| 915 | h1c->task = NULL; |
| 916 | } |
| 917 | |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 918 | if (h1c->wait_event.tasklet) |
| 919 | tasklet_free(h1c->wait_event.tasklet); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 920 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 921 | h1s_destroy(h1c->h1s); |
Olivier Houchard | 0e07937 | 2019-04-15 17:51:16 +0200 | [diff] [blame] | 922 | if (conn && h1c->wait_event.events != 0) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 923 | conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events, |
Olivier Houchard | 0e07937 | 2019-04-15 17:51:16 +0200 | [diff] [blame] | 924 | &h1c->wait_event); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 925 | pool_free(pool_head_h1c, h1c); |
| 926 | } |
| 927 | |
Christopher Faulet | 39a96ee | 2019-04-08 10:52:21 +0200 | [diff] [blame] | 928 | if (conn) { |
Amaury Denoyelle | d3a88c1 | 2021-05-03 10:47:51 +0200 | [diff] [blame] | 929 | if (!conn_is_back(conn)) |
| 930 | LIST_DEL_INIT(&conn->stopping_list); |
| 931 | |
Christopher Faulet | 39a96ee | 2019-04-08 10:52:21 +0200 | [diff] [blame] | 932 | conn->mux = NULL; |
| 933 | conn->ctx = NULL; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 934 | TRACE_DEVEL("freeing conn", H1_EV_H1C_END, conn); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 935 | |
Christopher Faulet | 39a96ee | 2019-04-08 10:52:21 +0200 | [diff] [blame] | 936 | conn_stop_tracking(conn); |
| 937 | conn_full_close(conn); |
| 938 | if (conn->destroy_cb) |
| 939 | conn->destroy_cb(conn); |
| 940 | conn_free(conn); |
| 941 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 942 | } |
| 943 | |
| 944 | /******************************************************/ |
| 945 | /* functions below are for the H1 protocol processing */ |
| 946 | /******************************************************/ |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 947 | /* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is |
| 948 | * greater or equal to 1.1 |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 949 | */ |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 950 | static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl) |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 951 | { |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 952 | const char *p = HTX_SL_REQ_VPTR(sl); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 953 | |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 954 | if ((HTX_SL_REQ_VLEN(sl) == 8) && |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 955 | (*(p + 5) > '1' || |
| 956 | (*(p + 5) == '1' && *(p + 7) >= '1'))) |
| 957 | h1m->flags |= H1_MF_VER_11; |
| 958 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 959 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 960 | /* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is |
| 961 | * greater or equal to 1.1 |
| 962 | */ |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 963 | static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 964 | { |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 965 | const char *p = HTX_SL_RES_VPTR(sl); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 966 | |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 967 | if ((HTX_SL_RES_VLEN(sl) == 8) && |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 968 | (*(p + 5) > '1' || |
| 969 | (*(p + 5) == '1' && *(p + 7) >= '1'))) |
| 970 | h1m->flags |= H1_MF_VER_11; |
| 971 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 972 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 973 | /* Deduce the connection mode of the client connection, depending on the |
| 974 | * configuration and the H1 message flags. This function is called twice, the |
| 975 | * first time when the request is parsed and the second time when the response |
| 976 | * is parsed. |
| 977 | */ |
| 978 | static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m) |
| 979 | { |
| 980 | struct proxy *fe = h1s->h1c->px; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 981 | |
| 982 | if (h1m->flags & H1_MF_RESP) { |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 983 | /* Output direction: second pass */ |
Christopher Faulet | c75668e | 2020-12-07 18:10:32 +0100 | [diff] [blame] | 984 | if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 985 | h1s->status == 101) { |
| 986 | /* Either we've established an explicit tunnel, or we're |
| 987 | * switching the protocol. In both cases, we're very unlikely to |
| 988 | * understand the next protocols. We have to switch to tunnel |
| 989 | * mode, so that we transfer the request and responses then let |
| 990 | * this protocol pass unmodified. When we later implement |
| 991 | * specific parsers for such protocols, we'll want to check the |
| 992 | * Upgrade header which contains information about that protocol |
| 993 | * for responses with status 101 (eg: see RFC2817 about TLS). |
| 994 | */ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 995 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 996 | TRACE_STATE("set tunnel mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s); |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 997 | } |
| 998 | else if (h1s->flags & H1S_F_WANT_KAL) { |
| 999 | /* By default the client is in KAL mode. CLOSE mode mean |
| 1000 | * it is imposed by the client itself. So only change |
| 1001 | * KAL mode here. */ |
| 1002 | if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) { |
| 1003 | /* no length known or explicit close => close */ |
| 1004 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1005 | TRACE_STATE("detect close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s); |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1006 | } |
| 1007 | else if (!(h1m->flags & H1_MF_CONN_KAL) && |
| 1008 | (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) { |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 1009 | /* no explicit keep-alive and option httpclose => close */ |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1010 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1011 | TRACE_STATE("force close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s); |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1012 | } |
| 1013 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1014 | } |
| 1015 | else { |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1016 | /* Input direction: first pass */ |
| 1017 | if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) { |
| 1018 | /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1019 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1020 | TRACE_STATE("detect close mode (req)", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s); |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1021 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1022 | } |
| 1023 | |
| 1024 | /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */ |
Willy Tarreau | c3914d4 | 2020-09-24 08:39:22 +0200 | [diff] [blame] | 1025 | if (h1s->flags & H1S_F_WANT_KAL && fe->disabled) { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1026 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1027 | TRACE_STATE("stopping, set close mode", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s); |
| 1028 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1029 | } |
| 1030 | |
| 1031 | /* Deduce the connection mode of the client connection, depending on the |
| 1032 | * configuration and the H1 message flags. This function is called twice, the |
| 1033 | * first time when the request is parsed and the second time when the response |
| 1034 | * is parsed. |
| 1035 | */ |
| 1036 | static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m) |
| 1037 | { |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 1038 | struct session *sess = h1s->sess; |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1039 | struct proxy *be = h1s->h1c->px; |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 1040 | int fe_flags = sess ? sess->fe->options : 0; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1041 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1042 | if (h1m->flags & H1_MF_RESP) { |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1043 | /* Input direction: second pass */ |
Christopher Faulet | c75668e | 2020-12-07 18:10:32 +0100 | [diff] [blame] | 1044 | if ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1045 | h1s->status == 101) { |
| 1046 | /* Either we've established an explicit tunnel, or we're |
| 1047 | * switching the protocol. In both cases, we're very unlikely to |
| 1048 | * understand the next protocols. We have to switch to tunnel |
| 1049 | * mode, so that we transfer the request and responses then let |
| 1050 | * this protocol pass unmodified. When we later implement |
| 1051 | * specific parsers for such protocols, we'll want to check the |
| 1052 | * Upgrade header which contains information about that protocol |
| 1053 | * for responses with status 101 (eg: see RFC2817 about TLS). |
| 1054 | */ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1055 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1056 | TRACE_STATE("set tunnel mode (resp)", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s); |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1057 | } |
| 1058 | else if (h1s->flags & H1S_F_WANT_KAL) { |
| 1059 | /* By default the server is in KAL mode. CLOSE mode mean |
| 1060 | * it is imposed by haproxy itself. So only change KAL |
| 1061 | * mode here. */ |
| 1062 | if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO || |
| 1063 | !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){ |
| 1064 | /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */ |
| 1065 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1066 | TRACE_STATE("detect close mode (resp)", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s); |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1067 | } |
| 1068 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1069 | } |
Christopher Faulet | 7003378 | 2018-12-05 13:50:11 +0100 | [diff] [blame] | 1070 | else { |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1071 | /* Output direction: first pass */ |
| 1072 | if (h1m->flags & H1_MF_CONN_CLO) { |
| 1073 | /* explicit close => close */ |
Christopher Faulet | 7003378 | 2018-12-05 13:50:11 +0100 | [diff] [blame] | 1074 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1075 | TRACE_STATE("detect close mode (req)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s); |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1076 | } |
| 1077 | else if (!(h1m->flags & H1_MF_CONN_KAL) && |
| 1078 | ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL || |
| 1079 | (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL || |
| 1080 | (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO || |
| 1081 | (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) { |
| 1082 | /* no explicit keep-alive option httpclose/server-close => close */ |
| 1083 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1084 | TRACE_STATE("force close mode (req)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s); |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1085 | } |
Christopher Faulet | 7003378 | 2018-12-05 13:50:11 +0100 | [diff] [blame] | 1086 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1087 | |
| 1088 | /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */ |
Willy Tarreau | c3914d4 | 2020-09-24 08:39:22 +0200 | [diff] [blame] | 1089 | if (h1s->flags & H1S_F_WANT_KAL && be->disabled) { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1090 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1091 | TRACE_STATE("stopping, set close mode", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s); |
| 1092 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1093 | } |
| 1094 | |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1095 | static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val) |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1096 | { |
| 1097 | struct proxy *px = h1s->h1c->px; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1098 | |
| 1099 | /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage" |
| 1100 | * token is found |
| 1101 | */ |
| 1102 | if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1103 | return; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1104 | |
| 1105 | if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) { |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1106 | if (!(h1m->flags & H1_MF_VER_11)) { |
| 1107 | TRACE_STATE("add \"Connection: keep-alive\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s); |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1108 | *conn_val = ist("keep-alive"); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1109 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1110 | } |
| 1111 | else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */ |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1112 | if (h1m->flags & H1_MF_VER_11) { |
| 1113 | TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s); |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1114 | *conn_val = ist("close"); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1115 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1116 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1117 | } |
| 1118 | |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1119 | static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val) |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1120 | { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1121 | /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage" |
| 1122 | * token is found |
| 1123 | */ |
| 1124 | if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1125 | return; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1126 | |
| 1127 | if (h1s->flags & H1S_F_WANT_KAL) { |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1128 | if (!(h1m->flags & H1_MF_VER_11) || |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1129 | !((h1m->flags & h1s->req.flags) & H1_MF_VER_11)) { |
| 1130 | TRACE_STATE("add \"Connection: keep-alive\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s); |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1131 | *conn_val = ist("keep-alive"); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1132 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1133 | } |
| 1134 | else { /* H1S_F_WANT_CLO */ |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1135 | if (h1m->flags & H1_MF_VER_11) { |
| 1136 | TRACE_STATE("add \"Connection: close\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s); |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1137 | *conn_val = ist("close"); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1138 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1139 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1140 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1141 | |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1142 | static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1143 | { |
Christopher Faulet | 0a799aa | 2020-09-24 09:52:52 +0200 | [diff] [blame] | 1144 | if (!(h1s->h1c->flags & H1C_F_IS_BACK)) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1145 | h1_set_cli_conn_mode(h1s, h1m); |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1146 | else |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1147 | h1_set_srv_conn_mode(h1s, h1m); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1148 | } |
| 1149 | |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1150 | static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val) |
| 1151 | { |
Christopher Faulet | 0a799aa | 2020-09-24 09:52:52 +0200 | [diff] [blame] | 1152 | if (!(h1s->h1c->flags & H1C_F_IS_BACK)) |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1153 | h1_set_cli_conn_mode(h1s, h1m); |
| 1154 | else |
| 1155 | h1_set_srv_conn_mode(h1s, h1m); |
| 1156 | |
| 1157 | if (!(h1m->flags & H1_MF_RESP)) |
| 1158 | h1_update_req_conn_value(h1s, h1m, conn_val); |
| 1159 | else |
| 1160 | h1_update_res_conn_value(h1s, h1m, conn_val); |
| 1161 | } |
Christopher Faulet | e44769b | 2018-11-29 23:01:45 +0100 | [diff] [blame] | 1162 | |
Christopher Faulet | 98fbe95 | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 1163 | /* Try to adjust the case of the message header name using the global map |
| 1164 | * <hdrs_map>. |
| 1165 | */ |
| 1166 | static void h1_adjust_case_outgoing_hdr(struct h1s *h1s, struct h1m *h1m, struct ist *name) |
| 1167 | { |
| 1168 | struct ebpt_node *node; |
| 1169 | struct h1_hdr_entry *entry; |
| 1170 | |
| 1171 | /* No entry in the map, do nothing */ |
| 1172 | if (eb_is_empty(&hdrs_map.map)) |
| 1173 | return; |
| 1174 | |
Ilya Shipitsin | b8888ab | 2021-01-06 21:20:16 +0500 | [diff] [blame] | 1175 | /* No conversion for the request headers */ |
Christopher Faulet | 98fbe95 | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 1176 | if (!(h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGSRV)) |
| 1177 | return; |
| 1178 | |
Ilya Shipitsin | b8888ab | 2021-01-06 21:20:16 +0500 | [diff] [blame] | 1179 | /* No conversion for the response headers */ |
Christopher Faulet | 98fbe95 | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 1180 | if ((h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGCLI)) |
| 1181 | return; |
| 1182 | |
| 1183 | node = ebis_lookup_len(&hdrs_map.map, name->ptr, name->len); |
| 1184 | if (!node) |
| 1185 | return; |
| 1186 | entry = container_of(node, struct h1_hdr_entry, node); |
| 1187 | name->ptr = entry->name.ptr; |
| 1188 | name->len = entry->name.len; |
| 1189 | } |
| 1190 | |
Christopher Faulet | e44769b | 2018-11-29 23:01:45 +0100 | [diff] [blame] | 1191 | /* Append the description of what is present in error snapshot <es> into <out>. |
| 1192 | * The description must be small enough to always fit in a buffer. The output |
| 1193 | * buffer may be the trash so the trash must not be used inside this function. |
| 1194 | */ |
| 1195 | static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es) |
| 1196 | { |
| 1197 | chunk_appendf(out, |
Christopher Faulet | aa75b3d | 2018-12-05 16:20:40 +0100 | [diff] [blame] | 1198 | " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n" |
| 1199 | " H1 msg state %s(%d), H1 msg flags 0x%08x\n" |
| 1200 | " H1 chunk len %lld bytes, H1 body len %lld bytes :\n", |
| 1201 | es->ctx.h1.c_flags, es->ctx.h1.s_flags, |
| 1202 | h1m_state_str(es->ctx.h1.state), es->ctx.h1.state, |
| 1203 | es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen); |
Christopher Faulet | e44769b | 2018-11-29 23:01:45 +0100 | [diff] [blame] | 1204 | } |
| 1205 | /* |
| 1206 | * Capture a bad request or response and archive it in the proxy's structure. |
| 1207 | * By default it tries to report the error position as h1m->err_pos. However if |
| 1208 | * this one is not set, it will then report h1m->next, which is the last known |
| 1209 | * parsing point. The function is able to deal with wrapping buffers. It always |
| 1210 | * displays buffers as a contiguous area starting at buf->p. The direction is |
| 1211 | * determined thanks to the h1m's flags. |
| 1212 | */ |
| 1213 | static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s, |
| 1214 | struct h1m *h1m, struct buffer *buf) |
| 1215 | { |
Christopher Faulet | db2c17d | 2020-10-15 17:19:46 +0200 | [diff] [blame] | 1216 | struct session *sess = h1s->sess; |
Christopher Faulet | e44769b | 2018-11-29 23:01:45 +0100 | [diff] [blame] | 1217 | struct proxy *proxy = h1c->px; |
Olivier Houchard | bdb00c5 | 2020-03-12 15:30:17 +0100 | [diff] [blame] | 1218 | struct proxy *other_end; |
Christopher Faulet | e44769b | 2018-11-29 23:01:45 +0100 | [diff] [blame] | 1219 | union error_snapshot_ctx ctx; |
| 1220 | |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 1221 | if ((h1c->flags & H1C_F_ST_ATTACHED) && h1s->cs->data) { |
Olivier Houchard | bdb00c5 | 2020-03-12 15:30:17 +0100 | [diff] [blame] | 1222 | if (sess == NULL) |
| 1223 | sess = si_strm(h1s->cs->data)->sess; |
| 1224 | if (!(h1m->flags & H1_MF_RESP)) |
| 1225 | other_end = si_strm(h1s->cs->data)->be; |
| 1226 | else |
| 1227 | other_end = sess->fe; |
| 1228 | } else |
| 1229 | other_end = NULL; |
Christopher Faulet | e44769b | 2018-11-29 23:01:45 +0100 | [diff] [blame] | 1230 | |
| 1231 | /* http-specific part now */ |
| 1232 | ctx.h1.state = h1m->state; |
| 1233 | ctx.h1.c_flags = h1c->flags; |
| 1234 | ctx.h1.s_flags = h1s->flags; |
| 1235 | ctx.h1.m_flags = h1m->flags; |
| 1236 | ctx.h1.m_clen = h1m->curr_len; |
| 1237 | ctx.h1.m_blen = h1m->body_len; |
| 1238 | |
| 1239 | proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end, |
| 1240 | h1c->conn->target, sess, buf, 0, 0, |
Christopher Faulet | aa75b3d | 2018-12-05 16:20:40 +0100 | [diff] [blame] | 1241 | (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next, |
| 1242 | &ctx, h1_show_error_snapshot); |
Christopher Faulet | e44769b | 2018-11-29 23:01:45 +0100 | [diff] [blame] | 1243 | } |
| 1244 | |
Christopher Faulet | adb2220 | 2018-12-12 10:32:09 +0100 | [diff] [blame] | 1245 | /* Emit the chunksize followed by a CRLF in front of data of the buffer |
| 1246 | * <buf>. It goes backwards and starts with the byte before the buffer's |
| 1247 | * head. The caller is responsible for ensuring there is enough room left before |
| 1248 | * the buffer's head for the string. |
| 1249 | */ |
| 1250 | static void h1_emit_chunk_size(struct buffer *buf, size_t chksz) |
| 1251 | { |
| 1252 | char *beg, *end; |
| 1253 | |
| 1254 | beg = end = b_head(buf); |
| 1255 | *--beg = '\n'; |
| 1256 | *--beg = '\r'; |
| 1257 | do { |
| 1258 | *--beg = hextab[chksz & 0xF]; |
| 1259 | } while (chksz >>= 4); |
| 1260 | buf->head -= (end - beg); |
| 1261 | b_add(buf, end - beg); |
| 1262 | } |
| 1263 | |
| 1264 | /* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for |
| 1265 | * ensuring there is enough room left in the buffer for the string. */ |
| 1266 | static void h1_emit_chunk_crlf(struct buffer *buf) |
| 1267 | { |
| 1268 | *(b_peek(buf, b_data(buf))) = '\r'; |
| 1269 | *(b_peek(buf, b_data(buf) + 1)) = '\n'; |
| 1270 | b_add(buf, 2); |
| 1271 | } |
| 1272 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1273 | /* |
Christopher Faulet | 5be651d | 2021-01-22 15:28:03 +0100 | [diff] [blame] | 1274 | * Switch the stream to tunnel mode. This function must only be called on 2xx |
| 1275 | * (successful) replies to CONNECT requests or on 101 (switching protocol). |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 1276 | */ |
Christopher Faulet | 5be651d | 2021-01-22 15:28:03 +0100 | [diff] [blame] | 1277 | static void h1_set_tunnel_mode(struct h1s *h1s) |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 1278 | { |
Christopher Faulet | 5be651d | 2021-01-22 15:28:03 +0100 | [diff] [blame] | 1279 | struct h1c *h1c = h1s->h1c; |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 1280 | |
Christopher Faulet | 5be651d | 2021-01-22 15:28:03 +0100 | [diff] [blame] | 1281 | h1s->req.state = H1_MSG_TUNNEL; |
| 1282 | h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK); |
Christopher Faulet | f3158e9 | 2019-11-15 11:14:23 +0100 | [diff] [blame] | 1283 | |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 1284 | h1s->res.state = H1_MSG_TUNNEL; |
Christopher Faulet | 5be651d | 2021-01-22 15:28:03 +0100 | [diff] [blame] | 1285 | h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK); |
Christopher Faulet | f3158e9 | 2019-11-15 11:14:23 +0100 | [diff] [blame] | 1286 | |
Christopher Faulet | 5be651d | 2021-01-22 15:28:03 +0100 | [diff] [blame] | 1287 | TRACE_STATE("switch H1 stream in tunnel mode", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s); |
Christopher Faulet | dea2474 | 2021-01-22 15:12:30 +0100 | [diff] [blame] | 1288 | |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 1289 | if (h1s->flags & H1S_F_RX_BLK) { |
| 1290 | h1s->flags &= ~H1S_F_RX_BLK; |
Christopher Faulet | 02c92c3 | 2021-04-09 12:31:48 +0200 | [diff] [blame] | 1291 | h1_wake_stream_for_recv(h1s); |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 1292 | TRACE_STATE("Re-enable input processing", H1_EV_RX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1293 | } |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 1294 | if (h1s->flags & H1S_F_TX_BLK) { |
| 1295 | h1s->flags &= ~H1S_F_TX_BLK; |
Christopher Faulet | 5be651d | 2021-01-22 15:28:03 +0100 | [diff] [blame] | 1296 | h1_wake_stream_for_send(h1s); |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 1297 | TRACE_STATE("Re-enable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s); |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 1298 | } |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1299 | } |
| 1300 | |
Amaury Denoyelle | 18ee5c3 | 2020-12-11 17:53:02 +0100 | [diff] [blame] | 1301 | /* Search for a websocket key header. The message should have been identified |
| 1302 | * as a valid websocket handshake. |
Amaury Denoyelle | c193823 | 2020-12-11 17:53:03 +0100 | [diff] [blame] | 1303 | * |
| 1304 | * On the request side, if found the key is stored in the session. It might be |
| 1305 | * needed to calculate response key if the server side is using http/2. |
| 1306 | * |
Amaury Denoyelle | aad333a | 2020-12-11 17:53:07 +0100 | [diff] [blame] | 1307 | * On the response side, the key might be verified if haproxy has been |
| 1308 | * responsible for the generation of a key. This happens when a h2 client is |
| 1309 | * interfaced with a h1 server. |
| 1310 | * |
| 1311 | * Returns 0 if no key found or invalid key |
Amaury Denoyelle | 18ee5c3 | 2020-12-11 17:53:02 +0100 | [diff] [blame] | 1312 | */ |
| 1313 | static int h1_search_websocket_key(struct h1s *h1s, struct h1m *h1m, struct htx *htx) |
| 1314 | { |
| 1315 | struct htx_blk *blk; |
| 1316 | enum htx_blk_type type; |
Amaury Denoyelle | c193823 | 2020-12-11 17:53:03 +0100 | [diff] [blame] | 1317 | struct ist n, v; |
Amaury Denoyelle | 18ee5c3 | 2020-12-11 17:53:02 +0100 | [diff] [blame] | 1318 | int ws_key_found = 0, idx; |
| 1319 | |
| 1320 | idx = htx_get_head(htx); // returns the SL that we skip |
| 1321 | while ((idx = htx_get_next(htx, idx)) != -1) { |
| 1322 | blk = htx_get_blk(htx, idx); |
| 1323 | type = htx_get_blk_type(blk); |
| 1324 | |
| 1325 | if (type == HTX_BLK_UNUSED) |
| 1326 | continue; |
| 1327 | |
| 1328 | if (type != HTX_BLK_HDR) |
| 1329 | break; |
| 1330 | |
| 1331 | n = htx_get_blk_name(htx, blk); |
Amaury Denoyelle | c193823 | 2020-12-11 17:53:03 +0100 | [diff] [blame] | 1332 | v = htx_get_blk_value(htx, blk); |
Amaury Denoyelle | 18ee5c3 | 2020-12-11 17:53:02 +0100 | [diff] [blame] | 1333 | |
Amaury Denoyelle | c193823 | 2020-12-11 17:53:03 +0100 | [diff] [blame] | 1334 | /* Websocket key is base64 encoded of 16 bytes */ |
| 1335 | if (isteqi(n, ist("sec-websocket-key")) && v.len == 24 && |
Amaury Denoyelle | 18ee5c3 | 2020-12-11 17:53:02 +0100 | [diff] [blame] | 1336 | !(h1m->flags & H1_MF_RESP)) { |
Amaury Denoyelle | c193823 | 2020-12-11 17:53:03 +0100 | [diff] [blame] | 1337 | /* Copy the key on request side |
| 1338 | * we might need it if the server is using h2 and does |
| 1339 | * not provide the response |
| 1340 | */ |
| 1341 | memcpy(h1s->ws_key, v.ptr, 24); |
Amaury Denoyelle | 18ee5c3 | 2020-12-11 17:53:02 +0100 | [diff] [blame] | 1342 | ws_key_found = 1; |
| 1343 | break; |
| 1344 | } |
| 1345 | else if (isteqi(n, ist("sec-websocket-accept")) && |
| 1346 | h1m->flags & H1_MF_RESP) { |
Amaury Denoyelle | aad333a | 2020-12-11 17:53:07 +0100 | [diff] [blame] | 1347 | /* Need to verify the response key if the input was |
| 1348 | * generated by haproxy |
| 1349 | */ |
| 1350 | if (h1s->ws_key[0]) { |
| 1351 | char key[29]; |
| 1352 | h1_calculate_ws_output_key(h1s->ws_key, key); |
| 1353 | if (!isteqi(ist(key), v)) |
| 1354 | break; |
| 1355 | } |
Amaury Denoyelle | 18ee5c3 | 2020-12-11 17:53:02 +0100 | [diff] [blame] | 1356 | ws_key_found = 1; |
| 1357 | break; |
| 1358 | } |
| 1359 | } |
| 1360 | |
| 1361 | /* missing websocket key, reject the message */ |
| 1362 | if (!ws_key_found) { |
| 1363 | htx->flags |= HTX_FL_PARSING_ERROR; |
| 1364 | return 0; |
| 1365 | } |
| 1366 | |
| 1367 | return 1; |
| 1368 | } |
| 1369 | |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1370 | /* |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1371 | * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1372 | * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR |
Christopher Faulet | 46e058d | 2021-09-20 07:47:27 +0200 | [diff] [blame] | 1373 | * flag. If more room is requested, H1S_F_RX_CONGESTED flag is set. If relies on |
| 1374 | * the function http_parse_msg_hdrs() to do the parsing. |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1375 | */ |
Christopher Faulet | 44c0dcf | 2021-02-16 18:32:08 +0100 | [diff] [blame] | 1376 | static size_t h1_handle_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx, |
| 1377 | struct buffer *buf, size_t *ofs, size_t max) |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1378 | { |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 1379 | union h1_sl h1sl; |
Christopher Faulet | 46e058d | 2021-09-20 07:47:27 +0200 | [diff] [blame] | 1380 | int ret = 0; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1381 | |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 1382 | TRACE_ENTER(H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s, 0, (size_t[]){max}); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1383 | |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 1384 | if (h1s->meth == HTTP_METH_CONNECT) |
| 1385 | h1m->flags |= H1_MF_METH_CONNECT; |
| 1386 | if (h1s->meth == HTTP_METH_HEAD) |
| 1387 | h1m->flags |= H1_MF_METH_HEAD; |
Christopher Faulet | 0ef372a | 2019-04-08 10:57:20 +0200 | [diff] [blame] | 1388 | |
Christopher Faulet | 4f0f88a | 2019-08-10 11:17:44 +0200 | [diff] [blame] | 1389 | ret = h1_parse_msg_hdrs(h1m, &h1sl, htx, buf, *ofs, max); |
Christopher Faulet | 46e058d | 2021-09-20 07:47:27 +0200 | [diff] [blame] | 1390 | if (ret <= 0) { |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1391 | TRACE_DEVEL("leaving on missing data or error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s); |
Christopher Faulet | 46e058d | 2021-09-20 07:47:27 +0200 | [diff] [blame] | 1392 | if (ret == -1) { |
Christopher Faulet | 60ef12c | 2020-09-24 10:05:44 +0200 | [diff] [blame] | 1393 | h1s->flags |= H1S_F_PARSING_ERROR; |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 1394 | TRACE_ERROR("parsing error, reject H1 message", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s); |
Christopher Faulet | 4f0f88a | 2019-08-10 11:17:44 +0200 | [diff] [blame] | 1395 | h1_capture_bad_message(h1s->h1c, h1s, h1m, buf); |
| 1396 | } |
Christopher Faulet | 46e058d | 2021-09-20 07:47:27 +0200 | [diff] [blame] | 1397 | else if (ret == -2) { |
| 1398 | TRACE_STATE("RX path congested, waiting for more space", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_BLK, h1s->h1c->conn, h1s); |
| 1399 | h1s->flags |= H1S_F_RX_CONGESTED; |
| 1400 | } |
| 1401 | ret = 0; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1402 | goto end; |
| 1403 | } |
| 1404 | |
Christopher Faulet | e136bd1 | 2021-09-21 18:44:55 +0200 | [diff] [blame^] | 1405 | |
| 1406 | /* Reject HTTP/1.0 GET/HEAD/DELETE requests with a payload. There is a |
| 1407 | * payload if the c-l is not null or the the payload is chunk-encoded. |
| 1408 | * A parsing error is reported but a A 413-Payload-Too-Large is returned |
| 1409 | * instead of a 400-Bad-Request. |
| 1410 | */ |
| 1411 | if (!(h1m->flags & (H1_MF_RESP|H1_MF_VER_11)) && |
| 1412 | (((h1m->flags & H1_MF_CLEN) && h1m->body_len) || (h1m->flags & H1_MF_CHNK)) && |
| 1413 | (h1sl.rq.meth == HTTP_METH_GET || h1sl.rq.meth == HTTP_METH_HEAD || h1sl.rq.meth == HTTP_METH_DELETE)) { |
| 1414 | h1s->flags |= H1S_F_PARSING_ERROR; |
| 1415 | htx->flags |= HTX_FL_PARSING_ERROR; |
| 1416 | h1s->h1c->errcode = 413; |
| 1417 | TRACE_ERROR("HTTP/1.0 GET/HEAD/DELETE request with a payload forbidden", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s); |
| 1418 | h1_capture_bad_message(h1s->h1c, h1s, h1m, buf); |
| 1419 | ret = 0; |
| 1420 | goto end; |
| 1421 | } |
| 1422 | |
Amaury Denoyelle | 18ee5c3 | 2020-12-11 17:53:02 +0100 | [diff] [blame] | 1423 | /* If websocket handshake, search for the websocket key */ |
| 1424 | if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) == |
| 1425 | (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) { |
| 1426 | int ws_ret = h1_search_websocket_key(h1s, h1m, htx); |
| 1427 | if (!ws_ret) { |
Amaury Denoyelle | 18ee5c3 | 2020-12-11 17:53:02 +0100 | [diff] [blame] | 1428 | h1s->flags |= H1S_F_PARSING_ERROR; |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 1429 | TRACE_ERROR("missing/invalid websocket key, reject H1 message", H1_EV_RX_DATA|H1_EV_RX_HDRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s); |
Amaury Denoyelle | 18ee5c3 | 2020-12-11 17:53:02 +0100 | [diff] [blame] | 1430 | h1_capture_bad_message(h1s->h1c, h1s, h1m, buf); |
| 1431 | |
| 1432 | ret = 0; |
| 1433 | goto end; |
| 1434 | } |
| 1435 | } |
| 1436 | |
Christopher Faulet | 486498c | 2019-10-11 14:22:00 +0200 | [diff] [blame] | 1437 | if (h1m->err_pos >= 0) { |
| 1438 | /* Maybe we found an error during the parsing while we were |
| 1439 | * configured not to block on that, so we have to capture it |
| 1440 | * now. |
| 1441 | */ |
| 1442 | TRACE_STATE("Ignored parsing error", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s); |
| 1443 | h1_capture_bad_message(h1s->h1c, h1s, h1m, buf); |
| 1444 | } |
| 1445 | |
Christopher Faulet | 5696f54 | 2020-12-02 16:08:38 +0100 | [diff] [blame] | 1446 | if (!(h1m->flags & H1_MF_RESP)) { |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 1447 | h1s->meth = h1sl.rq.meth; |
Christopher Faulet | 5696f54 | 2020-12-02 16:08:38 +0100 | [diff] [blame] | 1448 | if (h1s->meth == HTTP_METH_HEAD) |
| 1449 | h1s->flags |= H1S_F_BODYLESS_RESP; |
| 1450 | } |
| 1451 | else { |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 1452 | h1s->status = h1sl.st.status; |
Christopher Faulet | 5696f54 | 2020-12-02 16:08:38 +0100 | [diff] [blame] | 1453 | if (h1s->status == 204 || h1s->status == 304) |
| 1454 | h1s->flags |= H1S_F_BODYLESS_RESP; |
| 1455 | } |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1456 | h1_process_input_conn_mode(h1s, h1m, htx); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1457 | *ofs += ret; |
Christopher Faulet | 4f0f88a | 2019-08-10 11:17:44 +0200 | [diff] [blame] | 1458 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1459 | end: |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 1460 | TRACE_LEAVE(H1_EV_RX_DATA|H1_EV_RX_HDRS, h1s->h1c->conn, h1s, 0, (size_t[]){ret}); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1461 | return ret; |
| 1462 | } |
| 1463 | |
| 1464 | /* |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1465 | * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it |
Christopher Faulet | 4f0f88a | 2019-08-10 11:17:44 +0200 | [diff] [blame] | 1466 | * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag. |
| 1467 | * If relies on the function http_parse_msg_data() to do the parsing. |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1468 | */ |
Christopher Faulet | 44c0dcf | 2021-02-16 18:32:08 +0100 | [diff] [blame] | 1469 | static size_t h1_handle_data(struct h1s *h1s, struct h1m *h1m, struct htx **htx, |
| 1470 | struct buffer *buf, size_t *ofs, size_t max, |
| 1471 | struct buffer *htxbuf) |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1472 | { |
Christopher Faulet | de471a4 | 2021-02-01 16:37:28 +0100 | [diff] [blame] | 1473 | size_t ret; |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1474 | |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 1475 | TRACE_ENTER(H1_EV_RX_DATA|H1_EV_RX_BODY, h1s->h1c->conn, h1s, 0, (size_t[]){max}); |
Christopher Faulet | 4f0f88a | 2019-08-10 11:17:44 +0200 | [diff] [blame] | 1476 | ret = h1_parse_msg_data(h1m, htx, buf, *ofs, max, htxbuf); |
Christopher Faulet | 02a0253 | 2019-11-15 09:36:28 +0100 | [diff] [blame] | 1477 | if (!ret) { |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1478 | TRACE_DEVEL("leaving on missing data or error", H1_EV_RX_DATA|H1_EV_RX_BODY, h1s->h1c->conn, h1s); |
Christopher Faulet | 02a0253 | 2019-11-15 09:36:28 +0100 | [diff] [blame] | 1479 | if ((*htx)->flags & HTX_FL_PARSING_ERROR) { |
Christopher Faulet | 60ef12c | 2020-09-24 10:05:44 +0200 | [diff] [blame] | 1480 | h1s->flags |= H1S_F_PARSING_ERROR; |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 1481 | TRACE_ERROR("parsing error, reject H1 message", H1_EV_RX_DATA|H1_EV_RX_BODY|H1_EV_H1S_ERR, h1s->h1c->conn, h1s); |
Christopher Faulet | 4f0f88a | 2019-08-10 11:17:44 +0200 | [diff] [blame] | 1482 | h1_capture_bad_message(h1s->h1c, h1s, h1m, buf); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1483 | } |
Christopher Faulet | 02a0253 | 2019-11-15 09:36:28 +0100 | [diff] [blame] | 1484 | goto end; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1485 | } |
| 1486 | |
Christopher Faulet | 02a0253 | 2019-11-15 09:36:28 +0100 | [diff] [blame] | 1487 | *ofs += ret; |
| 1488 | |
| 1489 | end: |
Christopher Faulet | 46e058d | 2021-09-20 07:47:27 +0200 | [diff] [blame] | 1490 | if (b_data(buf) != *ofs && (h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL)) { |
| 1491 | TRACE_STATE("RX path congested, waiting for more space", H1_EV_RX_DATA|H1_EV_RX_BODY|H1_EV_H1S_BLK, h1s->h1c->conn, h1s); |
| 1492 | h1s->flags |= H1S_F_RX_CONGESTED; |
| 1493 | } |
| 1494 | |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 1495 | TRACE_LEAVE(H1_EV_RX_DATA|H1_EV_RX_BODY, h1s->h1c->conn, h1s, 0, (size_t[]){ret}); |
Christopher Faulet | 4f0f88a | 2019-08-10 11:17:44 +0200 | [diff] [blame] | 1496 | return ret; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1497 | } |
| 1498 | |
| 1499 | /* |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1500 | * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if |
| 1501 | * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR |
| 1502 | * flag and filling h1s->err_pos and h1s->err_state fields. This functions is |
Christopher Faulet | 46e058d | 2021-09-20 07:47:27 +0200 | [diff] [blame] | 1503 | * responsible to update the parser state <h1m>. If more room is requested, |
| 1504 | * H1S_F_RX_CONGESTED flag is set. |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1505 | */ |
Christopher Faulet | 44c0dcf | 2021-02-16 18:32:08 +0100 | [diff] [blame] | 1506 | static size_t h1_handle_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx, |
| 1507 | struct buffer *buf, size_t *ofs, size_t max) |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1508 | { |
Christopher Faulet | 46e058d | 2021-09-20 07:47:27 +0200 | [diff] [blame] | 1509 | int ret; |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1510 | |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 1511 | TRACE_ENTER(H1_EV_RX_DATA|H1_EV_RX_TLRS, h1s->h1c->conn, h1s, 0, (size_t[]){max}); |
Christopher Faulet | 4f0f88a | 2019-08-10 11:17:44 +0200 | [diff] [blame] | 1512 | ret = h1_parse_msg_tlrs(h1m, htx, buf, *ofs, max); |
Christopher Faulet | 46e058d | 2021-09-20 07:47:27 +0200 | [diff] [blame] | 1513 | if (ret <= 0) { |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1514 | TRACE_DEVEL("leaving on missing data or error", H1_EV_RX_DATA|H1_EV_RX_BODY, h1s->h1c->conn, h1s); |
Christopher Faulet | 46e058d | 2021-09-20 07:47:27 +0200 | [diff] [blame] | 1515 | if (ret == -1) { |
Christopher Faulet | 60ef12c | 2020-09-24 10:05:44 +0200 | [diff] [blame] | 1516 | h1s->flags |= H1S_F_PARSING_ERROR; |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 1517 | TRACE_ERROR("parsing error, reject H1 message", H1_EV_RX_DATA|H1_EV_RX_TLRS|H1_EV_H1S_ERR, h1s->h1c->conn, h1s); |
Christopher Faulet | 4f0f88a | 2019-08-10 11:17:44 +0200 | [diff] [blame] | 1518 | h1_capture_bad_message(h1s->h1c, h1s, h1m, buf); |
| 1519 | } |
Christopher Faulet | 46e058d | 2021-09-20 07:47:27 +0200 | [diff] [blame] | 1520 | else if (ret == -2) { |
| 1521 | TRACE_STATE("RX path congested, waiting for more space", H1_EV_RX_DATA|H1_EV_RX_TLRS|H1_EV_H1S_BLK, h1s->h1c->conn, h1s); |
| 1522 | h1s->flags |= H1S_F_RX_CONGESTED; |
| 1523 | } |
| 1524 | ret = 0; |
Christopher Faulet | 02a0253 | 2019-11-15 09:36:28 +0100 | [diff] [blame] | 1525 | goto end; |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1526 | } |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1527 | |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1528 | *ofs += ret; |
Christopher Faulet | 02a0253 | 2019-11-15 09:36:28 +0100 | [diff] [blame] | 1529 | |
| 1530 | end: |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 1531 | TRACE_LEAVE(H1_EV_RX_DATA|H1_EV_RX_TLRS, h1s->h1c->conn, h1s, 0, (size_t[]){ret}); |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1532 | return ret; |
Christopher Faulet | 4f0f88a | 2019-08-10 11:17:44 +0200 | [diff] [blame] | 1533 | } |
| 1534 | |
| 1535 | /* |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1536 | * Process incoming data. It parses data and transfer them from h1c->ibuf into |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1537 | * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if |
| 1538 | * it couldn't proceed. |
Christopher Faulet | 46e058d | 2021-09-20 07:47:27 +0200 | [diff] [blame] | 1539 | * |
| 1540 | * WARNING: H1S_F_RX_CONGESTED flag must be removed before processing input data. |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1541 | */ |
Christopher Faulet | 44c0dcf | 2021-02-16 18:32:08 +0100 | [diff] [blame] | 1542 | static size_t h1_process_demux(struct h1c *h1c, struct buffer *buf, size_t count) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1543 | { |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1544 | struct h1s *h1s = h1c->h1s; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1545 | struct h1m *h1m; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1546 | struct htx *htx; |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 1547 | size_t data; |
| 1548 | size_t ret = 0; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1549 | size_t total = 0; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1550 | |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1551 | htx = htx_from_buf(buf); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1552 | TRACE_ENTER(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){count}); |
Willy Tarreau | 3a6190f | 2018-12-16 08:29:56 +0100 | [diff] [blame] | 1553 | |
Christopher Faulet | 60ef12c | 2020-09-24 10:05:44 +0200 | [diff] [blame] | 1554 | h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res); |
Christopher Faulet | 7402776 | 2019-02-26 14:45:05 +0100 | [diff] [blame] | 1555 | data = htx->data; |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 1556 | |
Christopher Faulet | 2eed800 | 2020-12-07 11:26:13 +0100 | [diff] [blame] | 1557 | if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR)) |
Christopher Faulet | 0e54d54 | 2019-07-04 21:22:34 +0200 | [diff] [blame] | 1558 | goto end; |
| 1559 | |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 1560 | if (h1s->flags & H1S_F_RX_BLK) |
Christopher Faulet | ec4207c | 2021-04-08 18:34:30 +0200 | [diff] [blame] | 1561 | goto out; |
Christopher Faulet | 5be651d | 2021-01-22 15:28:03 +0100 | [diff] [blame] | 1562 | |
Christopher Faulet | 46e058d | 2021-09-20 07:47:27 +0200 | [diff] [blame] | 1563 | /* Always remove congestion flags and try to process more input data */ |
| 1564 | h1s->flags &= ~H1S_F_RX_CONGESTED; |
| 1565 | |
Christopher Faulet | d44ad5b | 2018-11-19 21:52:12 +0100 | [diff] [blame] | 1566 | do { |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1567 | size_t used = htx_used_space(htx); |
| 1568 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1569 | if (h1m->state <= H1_MSG_LAST_LF) { |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1570 | TRACE_PROTO("parsing message headers", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s); |
Christopher Faulet | 44c0dcf | 2021-02-16 18:32:08 +0100 | [diff] [blame] | 1571 | ret = h1_handle_headers(h1s, h1m, htx, &h1c->ibuf, &total, count); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1572 | if (!ret) |
| 1573 | break; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1574 | |
| 1575 | TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request headers" : "rcvd H1 response headers"), |
| 1576 | H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s, htx, (size_t[]){ret}); |
| 1577 | |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 1578 | if ((h1m->flags & H1_MF_RESP) && |
| 1579 | h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) { |
| 1580 | h1m_init_res(&h1s->res); |
| 1581 | h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1582 | TRACE_STATE("1xx response rcvd", H1_EV_RX_DATA|H1_EV_RX_HDRS, h1c->conn, h1s); |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 1583 | } |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1584 | } |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1585 | else if (h1m->state < H1_MSG_TRAILERS) { |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1586 | TRACE_PROTO("parsing message payload", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s); |
Christopher Faulet | 44c0dcf | 2021-02-16 18:32:08 +0100 | [diff] [blame] | 1587 | ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf); |
Christopher Faulet | 16a524c | 2021-02-02 21:16:03 +0100 | [diff] [blame] | 1588 | if (h1m->state < H1_MSG_TRAILERS) |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1589 | break; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1590 | |
| 1591 | TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request payload data" : "rcvd H1 response payload data"), |
| 1592 | H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s, htx, (size_t[]){ret}); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1593 | } |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1594 | else if (h1m->state == H1_MSG_TRAILERS) { |
Christopher Faulet | 76014fd | 2019-12-10 11:47:22 +0100 | [diff] [blame] | 1595 | TRACE_PROTO("parsing message trailers", H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s); |
Christopher Faulet | 44c0dcf | 2021-02-16 18:32:08 +0100 | [diff] [blame] | 1596 | ret = h1_handle_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count); |
Christopher Faulet | 16a524c | 2021-02-02 21:16:03 +0100 | [diff] [blame] | 1597 | if (h1m->state != H1_MSG_DONE) |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1598 | break; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1599 | |
Christopher Faulet | 76014fd | 2019-12-10 11:47:22 +0100 | [diff] [blame] | 1600 | TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request trailers" : "rcvd H1 response trailers"), |
| 1601 | H1_EV_RX_DATA|H1_EV_RX_TLRS, h1c->conn, h1s, htx, (size_t[]){ret}); |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1602 | } |
Christopher Faulet | cb55f48 | 2018-12-10 11:56:47 +0100 | [diff] [blame] | 1603 | else if (h1m->state == H1_MSG_DONE) { |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1604 | TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully rcvd" : "H1 response fully rcvd"), |
| 1605 | H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx); |
Christopher Faulet | 76014fd | 2019-12-10 11:47:22 +0100 | [diff] [blame] | 1606 | |
Christopher Faulet | 5be651d | 2021-01-22 15:28:03 +0100 | [diff] [blame] | 1607 | if ((h1m->flags & H1_MF_RESP) && |
| 1608 | ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) |
| 1609 | h1_set_tunnel_mode(h1s); |
Christopher Faulet | b385b50 | 2021-01-13 18:47:57 +0100 | [diff] [blame] | 1610 | else { |
| 1611 | if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) { |
| 1612 | /* Unfinished transaction: block this input side waiting the end of the output side */ |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 1613 | h1s->flags |= H1S_F_RX_BLK; |
| 1614 | TRACE_STATE("Disable input processing", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s); |
Christopher Faulet | b385b50 | 2021-01-13 18:47:57 +0100 | [diff] [blame] | 1615 | } |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 1616 | if (h1s->flags & H1S_F_TX_BLK) { |
| 1617 | h1s->flags &= ~H1S_F_TX_BLK; |
Christopher Faulet | 02c92c3 | 2021-04-09 12:31:48 +0200 | [diff] [blame] | 1618 | h1_wake_stream_for_send(h1s); |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 1619 | TRACE_STATE("Re-enable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s); |
Christopher Faulet | b385b50 | 2021-01-13 18:47:57 +0100 | [diff] [blame] | 1620 | } |
Christopher Faulet | 23021ad | 2020-07-10 10:01:26 +0200 | [diff] [blame] | 1621 | break; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1622 | } |
Christopher Faulet | cb55f48 | 2018-12-10 11:56:47 +0100 | [diff] [blame] | 1623 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1624 | else if (h1m->state == H1_MSG_TUNNEL) { |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1625 | TRACE_PROTO("parsing tunneled data", H1_EV_RX_DATA, h1c->conn, h1s); |
Christopher Faulet | 44c0dcf | 2021-02-16 18:32:08 +0100 | [diff] [blame] | 1626 | ret = h1_handle_data(h1s, h1m, &htx, &h1c->ibuf, &total, count, buf); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1627 | if (!ret) |
| 1628 | break; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1629 | |
| 1630 | TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "rcvd H1 request tunneled data" : "rcvd H1 response tunneled data"), |
| 1631 | H1_EV_RX_DATA|H1_EV_RX_EOI, h1c->conn, h1s, htx, (size_t[]){ret}); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1632 | } |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1633 | else { |
Christopher Faulet | 60ef12c | 2020-09-24 10:05:44 +0200 | [diff] [blame] | 1634 | h1s->flags |= H1S_F_PARSING_ERROR; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1635 | break; |
| 1636 | } |
| 1637 | |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1638 | count -= htx_used_space(htx) - used; |
Christopher Faulet | 46e058d | 2021-09-20 07:47:27 +0200 | [diff] [blame] | 1639 | } while (!(h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR|H1S_F_RX_BLK|H1S_F_RX_CONGESTED))); |
Christopher Faulet | 5be651d | 2021-01-22 15:28:03 +0100 | [diff] [blame] | 1640 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1641 | |
Christopher Faulet | 2eed800 | 2020-12-07 11:26:13 +0100 | [diff] [blame] | 1642 | if (h1s->flags & (H1S_F_PARSING_ERROR|H1S_F_NOT_IMPL_ERROR)) { |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 1643 | TRACE_ERROR("parsing or not-implemented error", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s); |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 1644 | goto err; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1645 | } |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1646 | |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1647 | b_del(&h1c->ibuf, total); |
| 1648 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 1649 | htx_to_buf(htx, buf); |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 1650 | TRACE_DEVEL("incoming data parsed", H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret}); |
| 1651 | |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1652 | ret = htx->data - data; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1653 | if ((h1c->flags & H1C_F_IN_FULL) && buf_room_for_htx_data(&h1c->ibuf)) { |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1654 | h1c->flags &= ~H1C_F_IN_FULL; |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 1655 | TRACE_STATE("h1c ibuf not full anymore", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s); |
Willy Tarreau | 2c1f37d | 2020-03-04 17:50:02 +0100 | [diff] [blame] | 1656 | h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event); |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1657 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1658 | |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 1659 | if (!b_data(&h1c->ibuf)) |
| 1660 | h1_release_buf(h1c, &h1c->ibuf); |
| 1661 | |
Christopher Faulet | 39c7b6b | 2021-01-21 17:44:35 +0100 | [diff] [blame] | 1662 | if (!(h1c->flags & H1C_F_ST_READY)) { |
| 1663 | /* The H1 connection is not ready. Most of time, there is no CS |
| 1664 | * attached, except for TCP>H1 upgrade, from a TCP frontend. In both |
| 1665 | * cases, it is only possible on the client side. |
| 1666 | */ |
| 1667 | BUG_ON(h1c->flags & H1C_F_IS_BACK); |
| 1668 | |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 1669 | if (h1m->state <= H1_MSG_LAST_LF) { |
| 1670 | TRACE_STATE("Incomplete message, subscribing", H1_EV_RX_DATA|H1_EV_H1C_BLK|H1_EV_H1C_WAKE, h1c->conn, h1s); |
| 1671 | h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event); |
| 1672 | goto end; |
| 1673 | } |
| 1674 | |
Christopher Faulet | 0f9395d | 2021-01-21 17:50:19 +0100 | [diff] [blame] | 1675 | if (!(h1c->flags & H1C_F_ST_ATTACHED)) { |
| 1676 | TRACE_DEVEL("request headers fully parsed, create and attach the CS", H1_EV_RX_DATA, h1c->conn, h1s); |
| 1677 | BUG_ON(h1s->cs); |
| 1678 | if (!h1s_new_cs(h1s, buf)) { |
| 1679 | h1c->flags |= H1C_F_ST_ERROR; |
| 1680 | goto err; |
| 1681 | } |
| 1682 | } |
| 1683 | else { |
| 1684 | TRACE_DEVEL("request headers fully parsed, upgrade the inherited CS", H1_EV_RX_DATA, h1c->conn, h1s); |
| 1685 | BUG_ON(h1s->cs == NULL); |
| 1686 | if (!h1s_upgrade_cs(h1s, buf)) { |
| 1687 | h1c->flags |= H1C_F_ST_ERROR; |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 1688 | TRACE_ERROR("H1S upgrade failure", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s); |
Christopher Faulet | 0f9395d | 2021-01-21 17:50:19 +0100 | [diff] [blame] | 1689 | goto err; |
| 1690 | } |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 1691 | } |
| 1692 | } |
| 1693 | |
| 1694 | /* Here h1s->cs is always defined */ |
Christopher Faulet | a583af6 | 2020-09-24 15:35:37 +0200 | [diff] [blame] | 1695 | if (!(h1m->flags & H1_MF_CHNK) && |
| 1696 | ((h1m->state == H1_MSG_DATA && h1m->curr_len) || (h1m->state == H1_MSG_TUNNEL))) { |
| 1697 | TRACE_STATE("notify the mux can use splicing", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s); |
| 1698 | h1s->cs->flags |= CS_FL_MAY_SPLICE; |
| 1699 | } |
| 1700 | else { |
| 1701 | TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_RX_DATA|H1_EV_RX_BODY, h1c->conn, h1s); |
| 1702 | h1s->cs->flags &= ~CS_FL_MAY_SPLICE; |
| 1703 | } |
| 1704 | |
Christopher Faulet | a22782b | 2021-02-08 17:18:01 +0100 | [diff] [blame] | 1705 | /* Set EOI on conn-stream in DONE state iff: |
| 1706 | * - it is a response |
| 1707 | * - it is a request but no a protocol upgrade nor a CONNECT |
| 1708 | * |
| 1709 | * If not set, Wait the response to do so or not depending on the status |
Christopher Faulet | 5be651d | 2021-01-22 15:28:03 +0100 | [diff] [blame] | 1710 | * code. |
Christopher Faulet | 3e1748b | 2020-12-07 18:21:27 +0100 | [diff] [blame] | 1711 | */ |
Christopher Faulet | a22782b | 2021-02-08 17:18:01 +0100 | [diff] [blame] | 1712 | if (((h1m->state == H1_MSG_DONE) && (h1m->flags & H1_MF_RESP)) || |
| 1713 | ((h1m->state == H1_MSG_DONE) && (h1s->meth != HTTP_METH_CONNECT) && !(h1m->flags & H1_MF_CONN_UPG))) |
Christopher Faulet | a583af6 | 2020-09-24 15:35:37 +0200 | [diff] [blame] | 1714 | h1s->cs->flags |= CS_FL_EOI; |
| 1715 | |
Christopher Faulet | ec4207c | 2021-04-08 18:34:30 +0200 | [diff] [blame] | 1716 | out: |
Christopher Faulet | 46e058d | 2021-09-20 07:47:27 +0200 | [diff] [blame] | 1717 | /* When Input data are pending for this message, notify upper layer that |
| 1718 | * the mux need more space in the HTX buffer to continue if : |
| 1719 | * |
| 1720 | * - The parser is blocked in MSG_DATA or MSG_TUNNEL state |
| 1721 | * - Headers or trailers are pending to be copied. |
| 1722 | */ |
| 1723 | if (h1s->flags & (H1S_F_RX_CONGESTED)) { |
Christopher Faulet | cf56b99 | 2018-12-11 16:12:31 +0100 | [diff] [blame] | 1724 | h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM; |
Christopher Faulet | 46e058d | 2021-09-20 07:47:27 +0200 | [diff] [blame] | 1725 | TRACE_STATE("waiting for more room", H1_EV_RX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s); |
| 1726 | } |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 1727 | else { |
| 1728 | h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM); |
| 1729 | if (h1s->flags & H1S_F_REOS) { |
| 1730 | h1s->cs->flags |= CS_FL_EOS; |
Christopher Faulet | 1e85778 | 2020-12-08 10:38:22 +0100 | [diff] [blame] | 1731 | if (h1m->state >= H1_MSG_DONE || !(h1m->flags & H1_MF_XFER_LEN)) { |
| 1732 | /* DONE or TUNNEL or SHUTR without XFER_LEN, set |
| 1733 | * EOI on the conn-stream */ |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 1734 | h1s->cs->flags |= CS_FL_EOI; |
Christopher Faulet | 3e1748b | 2020-12-07 18:21:27 +0100 | [diff] [blame] | 1735 | } |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 1736 | else if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE) { |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 1737 | h1s->cs->flags |= CS_FL_ERROR; |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 1738 | TRACE_ERROR("message aborted, set error on CS", H1_EV_RX_DATA|H1_EV_H1S_ERR, h1c->conn, h1s); |
| 1739 | } |
Christopher Faulet | b385b50 | 2021-01-13 18:47:57 +0100 | [diff] [blame] | 1740 | |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 1741 | if (h1s->flags & H1S_F_TX_BLK) { |
| 1742 | h1s->flags &= ~H1S_F_TX_BLK; |
Christopher Faulet | 02c92c3 | 2021-04-09 12:31:48 +0200 | [diff] [blame] | 1743 | h1_wake_stream_for_send(h1s); |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 1744 | TRACE_STATE("Re-enable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s); |
Christopher Faulet | b385b50 | 2021-01-13 18:47:57 +0100 | [diff] [blame] | 1745 | } |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 1746 | } |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1747 | } |
Christopher Faulet | f6ce9d6 | 2018-12-10 15:30:06 +0100 | [diff] [blame] | 1748 | |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 1749 | end: |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1750 | TRACE_LEAVE(H1_EV_RX_DATA, h1c->conn, h1s, htx, (size_t[]){ret}); |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1751 | return ret; |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1752 | |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 1753 | err: |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 1754 | htx_to_buf(htx, buf); |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 1755 | if (h1s->cs) |
| 1756 | h1s->cs->flags |= CS_FL_EOI; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1757 | TRACE_DEVEL("leaving on error", H1_EV_RX_DATA|H1_EV_STRM_ERR, h1c->conn, h1s); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1758 | return 0; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1759 | } |
| 1760 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1761 | /* |
| 1762 | * Process outgoing data. It parses data and transfer them from the channel buffer into |
| 1763 | * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or |
| 1764 | * 0 if it couldn't proceed. |
| 1765 | */ |
Christopher Faulet | 44c0dcf | 2021-02-16 18:32:08 +0100 | [diff] [blame] | 1766 | static size_t h1_process_mux(struct h1c *h1c, struct buffer *buf, size_t count) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1767 | { |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1768 | struct h1s *h1s = h1c->h1s; |
| 1769 | struct h1m *h1m; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1770 | struct htx *chn_htx = NULL; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1771 | struct htx_blk *blk; |
Christopher Faulet | c2518a5 | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 1772 | struct buffer tmp; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1773 | size_t total = 0; |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1774 | int last_data = 0; |
Amaury Denoyelle | c193823 | 2020-12-11 17:53:03 +0100 | [diff] [blame] | 1775 | int ws_key_found = 0; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1776 | |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 1777 | chn_htx = htxbuf(buf); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1778 | TRACE_ENTER(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){count}); |
| 1779 | |
Willy Tarreau | 37dd54d | 2018-12-15 14:48:31 +0100 | [diff] [blame] | 1780 | if (htx_is_empty(chn_htx)) |
| 1781 | goto end; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1782 | |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 1783 | if (h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK)) |
Christopher Faulet | dea2474 | 2021-01-22 15:12:30 +0100 | [diff] [blame] | 1784 | goto end; |
| 1785 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1786 | if (!h1_get_buf(h1c, &h1c->obuf)) { |
| 1787 | h1c->flags |= H1C_F_OUT_ALLOC; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1788 | TRACE_STATE("waiting for h1c obuf allocation", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1789 | goto end; |
| 1790 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1791 | |
Christopher Faulet | 60ef12c | 2020-09-24 10:05:44 +0200 | [diff] [blame] | 1792 | h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->res : &h1s->req); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1793 | |
Willy Tarreau | 37dd54d | 2018-12-15 14:48:31 +0100 | [diff] [blame] | 1794 | /* the htx is non-empty thus has at least one block */ |
Willy Tarreau | 3815b22 | 2018-12-11 19:50:43 +0100 | [diff] [blame] | 1795 | blk = htx_get_head_blk(chn_htx); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1796 | |
Willy Tarreau | 3815b22 | 2018-12-11 19:50:43 +0100 | [diff] [blame] | 1797 | /* Perform some optimizations to reduce the number of buffer copies. |
| 1798 | * First, if the mux's buffer is empty and the htx area contains |
| 1799 | * exactly one data block of the same size as the requested count, |
| 1800 | * then it's possible to simply swap the caller's buffer with the |
| 1801 | * mux's output buffer and adjust offsets and length to match the |
| 1802 | * entire DATA HTX block in the middle. In this case we perform a |
| 1803 | * true zero-copy operation from end-to-end. This is the situation |
| 1804 | * that happens all the time with large files. Second, if this is not |
| 1805 | * possible, but the mux's output buffer is empty, we still have an |
| 1806 | * opportunity to avoid the copy to the intermediary buffer, by making |
| 1807 | * the intermediary buffer's area point to the output buffer's area. |
| 1808 | * In this case we want to skip the HTX header to make sure that copies |
| 1809 | * remain aligned and that this operation remains possible all the |
| 1810 | * time. This goes for headers, data blocks and any data extracted from |
| 1811 | * the HTX blocks. |
Willy Tarreau | c5efa33 | 2018-12-05 11:19:27 +0100 | [diff] [blame] | 1812 | */ |
| 1813 | if (!b_data(&h1c->obuf)) { |
Christopher Faulet | dea2474 | 2021-01-22 15:12:30 +0100 | [diff] [blame] | 1814 | if ((h1m->state == H1_MSG_DATA || h1m->state == H1_MSG_TUNNEL) && |
Christopher Faulet | 0d7e634 | 2021-02-08 15:56:36 +0100 | [diff] [blame] | 1815 | (!(h1m->flags & H1_MF_RESP) || !(h1s->flags & H1S_F_BODYLESS_RESP)) && |
Christopher Faulet | dea2474 | 2021-01-22 15:12:30 +0100 | [diff] [blame] | 1816 | htx_nbblks(chn_htx) == 1 && |
Willy Tarreau | 37dd54d | 2018-12-15 14:48:31 +0100 | [diff] [blame] | 1817 | htx_get_blk_type(blk) == HTX_BLK_DATA && |
Willy Tarreau | 3815b22 | 2018-12-11 19:50:43 +0100 | [diff] [blame] | 1818 | htx_get_blk_value(chn_htx, blk).len == count) { |
Christopher Faulet | e5596bf | 2020-12-02 16:13:22 +0100 | [diff] [blame] | 1819 | void *old_area; |
| 1820 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1821 | TRACE_PROTO("sending message data (zero-copy)", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx, (size_t[]){count}); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1822 | if (h1m->state == H1_MSG_DATA && chn_htx->flags & HTX_FL_EOM) { |
| 1823 | TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s); |
| 1824 | last_data = 1; |
| 1825 | } |
| 1826 | |
Christopher Faulet | e5596bf | 2020-12-02 16:13:22 +0100 | [diff] [blame] | 1827 | old_area = h1c->obuf.area; |
Willy Tarreau | 3815b22 | 2018-12-11 19:50:43 +0100 | [diff] [blame] | 1828 | h1c->obuf.area = buf->area; |
Christopher Faulet | c2518a5 | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 1829 | h1c->obuf.head = sizeof(struct htx) + blk->addr; |
Willy Tarreau | 3815b22 | 2018-12-11 19:50:43 +0100 | [diff] [blame] | 1830 | h1c->obuf.data = count; |
| 1831 | |
| 1832 | buf->area = old_area; |
| 1833 | buf->data = buf->head = 0; |
Christopher Faulet | adb2220 | 2018-12-12 10:32:09 +0100 | [diff] [blame] | 1834 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1835 | chn_htx = (struct htx *)buf->area; |
| 1836 | htx_reset(chn_htx); |
| 1837 | |
Christopher Faulet | adb2220 | 2018-12-12 10:32:09 +0100 | [diff] [blame] | 1838 | /* The message is chunked. We need to emit the chunk |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1839 | * size and eventually the last chunk. We have at least |
| 1840 | * the size of the struct htx to write the chunk |
| 1841 | * envelope. It should be enough. |
Christopher Faulet | adb2220 | 2018-12-12 10:32:09 +0100 | [diff] [blame] | 1842 | */ |
| 1843 | if (h1m->flags & H1_MF_CHNK) { |
| 1844 | h1_emit_chunk_size(&h1c->obuf, count); |
| 1845 | h1_emit_chunk_crlf(&h1c->obuf); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1846 | if (last_data) { |
| 1847 | /* Emit the last chunk too at the buffer's end */ |
| 1848 | b_putblk(&h1c->obuf, "0\r\n\r\n", 5); |
| 1849 | } |
Christopher Faulet | adb2220 | 2018-12-12 10:32:09 +0100 | [diff] [blame] | 1850 | } |
| 1851 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1852 | if (h1m->state == H1_MSG_DATA) |
| 1853 | TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"), |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 1854 | H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count}); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1855 | else |
| 1856 | TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"), |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 1857 | H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){count}); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1858 | |
Christopher Faulet | e5596bf | 2020-12-02 16:13:22 +0100 | [diff] [blame] | 1859 | total += count; |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1860 | if (last_data) { |
| 1861 | h1m->state = H1_MSG_DONE; |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 1862 | if (h1s->flags & H1S_F_RX_BLK) { |
| 1863 | h1s->flags &= ~H1S_F_RX_BLK; |
Christopher Faulet | 02c92c3 | 2021-04-09 12:31:48 +0200 | [diff] [blame] | 1864 | h1_wake_stream_for_recv(h1s); |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 1865 | TRACE_STATE("Re-enable input processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1866 | } |
| 1867 | |
| 1868 | TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"), |
| 1869 | H1_EV_TX_DATA, h1c->conn, h1s); |
| 1870 | } |
Willy Tarreau | 3815b22 | 2018-12-11 19:50:43 +0100 | [diff] [blame] | 1871 | goto out; |
| 1872 | } |
Christopher Faulet | c2518a5 | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 1873 | tmp.area = h1c->obuf.area + h1c->obuf.head; |
Willy Tarreau | c5efa33 | 2018-12-05 11:19:27 +0100 | [diff] [blame] | 1874 | } |
Christopher Faulet | c2518a5 | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 1875 | else |
| 1876 | tmp.area = trash.area; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1877 | |
Christopher Faulet | c2518a5 | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 1878 | tmp.data = 0; |
| 1879 | tmp.size = b_room(&h1c->obuf); |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 1880 | while (count && !(h1s->flags & (H1S_F_PROCESSING_ERROR|H1S_F_TX_BLK)) && blk) { |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 1881 | struct htx_sl *sl; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1882 | struct ist n, v; |
Christopher Faulet | b2e8416 | 2018-12-06 11:39:49 +0100 | [diff] [blame] | 1883 | enum htx_blk_type type = htx_get_blk_type(blk); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1884 | uint32_t sz = htx_get_blksz(blk); |
Christopher Faulet | d9233f0 | 2019-10-14 14:01:24 +0200 | [diff] [blame] | 1885 | uint32_t vlen, chklen; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1886 | |
Christopher Faulet | b2e8416 | 2018-12-06 11:39:49 +0100 | [diff] [blame] | 1887 | vlen = sz; |
Christopher Faulet | d9233f0 | 2019-10-14 14:01:24 +0200 | [diff] [blame] | 1888 | if (type != HTX_BLK_DATA && vlen > count) |
| 1889 | goto full; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1890 | |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 1891 | if (type == HTX_BLK_UNUSED) |
| 1892 | goto nextblk; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1893 | |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 1894 | switch (h1m->state) { |
| 1895 | case H1_MSG_RQBEFORE: |
| 1896 | if (type != HTX_BLK_REQ_SL) |
| 1897 | goto error; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1898 | TRACE_USER("sending request headers", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s, chn_htx); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1899 | sl = htx_get_blk_ptr(chn_htx, blk); |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 1900 | h1s->meth = sl->info.req.meth; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1901 | h1_parse_req_vsn(h1m, sl); |
Christopher Faulet | 53a899b | 2019-10-08 16:38:42 +0200 | [diff] [blame] | 1902 | if (!h1_format_htx_reqline(sl, &tmp)) |
Christopher Faulet | a61aa54 | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 1903 | goto full; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1904 | h1m->flags |= H1_MF_XFER_LEN; |
Christopher Faulet | 1f890dd | 2019-02-18 10:33:16 +0100 | [diff] [blame] | 1905 | if (sl->flags & HTX_SL_F_BODYLESS) |
| 1906 | h1m->flags |= H1_MF_CLEN; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1907 | h1m->state = H1_MSG_HDR_FIRST; |
Christopher Faulet | 5696f54 | 2020-12-02 16:08:38 +0100 | [diff] [blame] | 1908 | if (h1s->meth == HTTP_METH_HEAD) |
| 1909 | h1s->flags |= H1S_F_BODYLESS_RESP; |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 1910 | if (h1s->flags & H1S_F_RX_BLK) { |
| 1911 | h1s->flags &= ~H1S_F_RX_BLK; |
Christopher Faulet | 02c92c3 | 2021-04-09 12:31:48 +0200 | [diff] [blame] | 1912 | h1_wake_stream_for_recv(h1s); |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 1913 | TRACE_STATE("Re-enable input processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s); |
Christopher Faulet | 089acd5 | 2020-09-21 10:57:52 +0200 | [diff] [blame] | 1914 | } |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1915 | break; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1916 | |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 1917 | case H1_MSG_RPBEFORE: |
| 1918 | if (type != HTX_BLK_RES_SL) |
| 1919 | goto error; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1920 | TRACE_USER("sending response headers", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s, chn_htx); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1921 | sl = htx_get_blk_ptr(chn_htx, blk); |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 1922 | h1s->status = sl->info.res.status; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1923 | h1_parse_res_vsn(h1m, sl); |
Christopher Faulet | 53a899b | 2019-10-08 16:38:42 +0200 | [diff] [blame] | 1924 | if (!h1_format_htx_stline(sl, &tmp)) |
Christopher Faulet | a61aa54 | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 1925 | goto full; |
Christopher Faulet | 0359911 | 2018-11-27 11:21:21 +0100 | [diff] [blame] | 1926 | if (sl->flags & HTX_SL_F_XFER_LEN) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1927 | h1m->flags |= H1_MF_XFER_LEN; |
Christopher Faulet | f3e7619 | 2020-12-02 16:46:33 +0100 | [diff] [blame] | 1928 | if (h1s->status < 200) |
Christopher Faulet | ada34b6 | 2019-05-24 16:36:43 +0200 | [diff] [blame] | 1929 | h1s->flags |= H1S_F_HAVE_O_CONN; |
Christopher Faulet | 5696f54 | 2020-12-02 16:08:38 +0100 | [diff] [blame] | 1930 | else if (h1s->status == 204 || h1s->status == 304) |
| 1931 | h1s->flags |= H1S_F_BODYLESS_RESP; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1932 | h1m->state = H1_MSG_HDR_FIRST; |
| 1933 | break; |
| 1934 | |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 1935 | case H1_MSG_HDR_FIRST: |
| 1936 | case H1_MSG_HDR_NAME: |
| 1937 | case H1_MSG_HDR_L2_LWS: |
| 1938 | if (type == HTX_BLK_EOH) |
| 1939 | goto last_lf; |
| 1940 | if (type != HTX_BLK_HDR) |
| 1941 | goto error; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 1942 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1943 | h1m->state = H1_MSG_HDR_NAME; |
| 1944 | n = htx_get_blk_name(chn_htx, blk); |
| 1945 | v = htx_get_blk_value(chn_htx, blk); |
| 1946 | |
Christopher Faulet | 86d144c | 2019-08-14 16:32:25 +0200 | [diff] [blame] | 1947 | /* Skip all pseudo-headers */ |
| 1948 | if (*(n.ptr) == ':') |
| 1949 | goto skip_hdr; |
| 1950 | |
Christopher Faulet | 91fcf21 | 2020-12-02 16:17:15 +0100 | [diff] [blame] | 1951 | if (isteq(n, ist("transfer-encoding"))) { |
| 1952 | if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204)) |
| 1953 | goto skip_hdr; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1954 | h1_parse_xfer_enc_header(h1m, v); |
Christopher Faulet | 91fcf21 | 2020-12-02 16:17:15 +0100 | [diff] [blame] | 1955 | } |
Christopher Faulet | b045bb2 | 2020-02-28 10:42:20 +0100 | [diff] [blame] | 1956 | else if (isteq(n, ist("content-length"))) { |
Christopher Faulet | 91fcf21 | 2020-12-02 16:17:15 +0100 | [diff] [blame] | 1957 | if ((h1m->flags & H1_MF_RESP) && (h1s->status < 200 || h1s->status == 204)) |
| 1958 | goto skip_hdr; |
Christopher Faulet | 5220ef2 | 2019-03-27 15:44:56 +0100 | [diff] [blame] | 1959 | /* Only skip C-L header with invalid value. */ |
| 1960 | if (h1_parse_cont_len_header(h1m, &v) < 0) |
Willy Tarreau | 27cd223 | 2019-01-03 21:52:42 +0100 | [diff] [blame] | 1961 | goto skip_hdr; |
| 1962 | } |
Christopher Faulet | b045bb2 | 2020-02-28 10:42:20 +0100 | [diff] [blame] | 1963 | else if (isteq(n, ist("connection"))) { |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1964 | h1_parse_connection_header(h1m, &v); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1965 | if (!v.len) |
| 1966 | goto skip_hdr; |
| 1967 | } |
Amaury Denoyelle | c193823 | 2020-12-11 17:53:03 +0100 | [diff] [blame] | 1968 | else if (isteq(n, ist("upgrade"))) { |
| 1969 | h1_parse_upgrade_header(h1m, v); |
| 1970 | } |
Amaury Denoyelle | aad333a | 2020-12-11 17:53:07 +0100 | [diff] [blame] | 1971 | else if ((isteq(n, ist("sec-websocket-accept")) && |
| 1972 | h1m->flags & H1_MF_RESP) || |
| 1973 | (isteq(n, ist("sec-websocket-key")) && |
| 1974 | !(h1m->flags & H1_MF_RESP))) { |
Amaury Denoyelle | c193823 | 2020-12-11 17:53:03 +0100 | [diff] [blame] | 1975 | ws_key_found = 1; |
| 1976 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1977 | |
Christopher Faulet | 67d5809 | 2019-10-02 10:51:38 +0200 | [diff] [blame] | 1978 | /* Skip header if same name is used to add the server name */ |
| 1979 | if (!(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name && |
| 1980 | isteqi(n, ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len))) |
| 1981 | goto skip_hdr; |
| 1982 | |
Christopher Faulet | 98fbe95 | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 1983 | /* Try to adjust the case of the header name */ |
| 1984 | if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV)) |
| 1985 | h1_adjust_case_outgoing_hdr(h1s, h1m, &n); |
Christopher Faulet | 53a899b | 2019-10-08 16:38:42 +0200 | [diff] [blame] | 1986 | if (!h1_format_htx_hdr(n, v, &tmp)) |
Christopher Faulet | a61aa54 | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 1987 | goto full; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1988 | skip_hdr: |
| 1989 | h1m->state = H1_MSG_HDR_L2_LWS; |
| 1990 | break; |
| 1991 | |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 1992 | case H1_MSG_LAST_LF: |
| 1993 | if (type != HTX_BLK_EOH) |
| 1994 | goto error; |
| 1995 | last_lf: |
Christopher Faulet | ada34b6 | 2019-05-24 16:36:43 +0200 | [diff] [blame] | 1996 | h1m->state = H1_MSG_LAST_LF; |
| 1997 | if (!(h1s->flags & H1S_F_HAVE_O_CONN)) { |
Christopher Faulet | 04f8919 | 2019-10-16 09:41:07 +0200 | [diff] [blame] | 1998 | /* If the reply comes from haproxy while the request is |
| 1999 | * not finished, we force the connection close. */ |
| 2000 | if ((chn_htx->flags & HTX_FL_PROXY_RESP) && h1s->req.state != H1_MSG_DONE) { |
| 2001 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
| 2002 | TRACE_STATE("force close mode (resp)", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1s->h1c->conn, h1s); |
| 2003 | } |
| 2004 | |
| 2005 | /* the conn_mode must be processed. So do it */ |
Christopher Faulet | a110ecb | 2019-06-17 14:07:46 +0200 | [diff] [blame] | 2006 | n = ist("connection"); |
Christopher Faulet | d1ebb1e | 2018-11-28 16:32:50 +0100 | [diff] [blame] | 2007 | v = ist(""); |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 2008 | h1_process_output_conn_mode(h1s, h1m, &v); |
Christopher Faulet | d1ebb1e | 2018-11-28 16:32:50 +0100 | [diff] [blame] | 2009 | if (v.len) { |
Christopher Faulet | 98fbe95 | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 2010 | /* Try to adjust the case of the header name */ |
| 2011 | if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV)) |
| 2012 | h1_adjust_case_outgoing_hdr(h1s, h1m, &n); |
Christopher Faulet | 53a899b | 2019-10-08 16:38:42 +0200 | [diff] [blame] | 2013 | if (!h1_format_htx_hdr(n, v, &tmp)) |
Christopher Faulet | a61aa54 | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 2014 | goto full; |
Christopher Faulet | d1ebb1e | 2018-11-28 16:32:50 +0100 | [diff] [blame] | 2015 | } |
Christopher Faulet | ada34b6 | 2019-05-24 16:36:43 +0200 | [diff] [blame] | 2016 | h1s->flags |= H1S_F_HAVE_O_CONN; |
Christopher Faulet | d1ebb1e | 2018-11-28 16:32:50 +0100 | [diff] [blame] | 2017 | } |
Willy Tarreau | 4710d20 | 2019-01-03 17:39:54 +0100 | [diff] [blame] | 2018 | |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 2019 | if ((h1s->meth != HTTP_METH_CONNECT && |
| 2020 | (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) == |
Christopher Faulet | 1f890dd | 2019-02-18 10:33:16 +0100 | [diff] [blame] | 2021 | (H1_MF_VER_11|H1_MF_XFER_LEN)) || |
Christopher Faulet | e5596bf | 2020-12-02 16:13:22 +0100 | [diff] [blame] | 2022 | (h1s->status >= 200 && !(h1s->flags & H1S_F_BODYLESS_RESP) && |
Christopher Faulet | c75668e | 2020-12-07 18:10:32 +0100 | [diff] [blame] | 2023 | !(h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) && |
Christopher Faulet | 1f890dd | 2019-02-18 10:33:16 +0100 | [diff] [blame] | 2024 | (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) == |
| 2025 | (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) { |
Willy Tarreau | 4710d20 | 2019-01-03 17:39:54 +0100 | [diff] [blame] | 2026 | /* chunking needed but header not seen */ |
Christopher Faulet | 7a991a9 | 2019-10-04 10:23:51 +0200 | [diff] [blame] | 2027 | n = ist("transfer-encoding"); |
| 2028 | v = ist("chunked"); |
| 2029 | if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV)) |
| 2030 | h1_adjust_case_outgoing_hdr(h1s, h1m, &n); |
Christopher Faulet | 53a899b | 2019-10-08 16:38:42 +0200 | [diff] [blame] | 2031 | if (!h1_format_htx_hdr(n, v, &tmp)) |
Christopher Faulet | a61aa54 | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 2032 | goto full; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2033 | TRACE_STATE("add \"Transfer-Encoding: chunked\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s); |
Willy Tarreau | 4710d20 | 2019-01-03 17:39:54 +0100 | [diff] [blame] | 2034 | h1m->flags |= H1_MF_CHNK; |
| 2035 | } |
| 2036 | |
Christopher Faulet | 72ba6cd | 2019-09-24 16:20:05 +0200 | [diff] [blame] | 2037 | /* Now add the server name to a header (if requested) */ |
| 2038 | if (!(h1s->flags & H1S_F_HAVE_SRV_NAME) && |
| 2039 | !(h1m->flags & H1_MF_RESP) && h1c->px->server_id_hdr_name) { |
| 2040 | struct server *srv = objt_server(h1c->conn->target); |
| 2041 | |
| 2042 | if (srv) { |
| 2043 | n = ist2(h1c->px->server_id_hdr_name, h1c->px->server_id_hdr_len); |
| 2044 | v = ist(srv->id); |
Christopher Faulet | 5cef2a6 | 2019-10-02 11:06:13 +0200 | [diff] [blame] | 2045 | |
| 2046 | /* Try to adjust the case of the header name */ |
| 2047 | if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV)) |
| 2048 | h1_adjust_case_outgoing_hdr(h1s, h1m, &n); |
Christopher Faulet | 53a899b | 2019-10-08 16:38:42 +0200 | [diff] [blame] | 2049 | if (!h1_format_htx_hdr(n, v, &tmp)) |
Christopher Faulet | a61aa54 | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 2050 | goto full; |
Christopher Faulet | 72ba6cd | 2019-09-24 16:20:05 +0200 | [diff] [blame] | 2051 | } |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2052 | TRACE_STATE("add server name header", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s); |
Christopher Faulet | 72ba6cd | 2019-09-24 16:20:05 +0200 | [diff] [blame] | 2053 | h1s->flags |= H1S_F_HAVE_SRV_NAME; |
| 2054 | } |
| 2055 | |
Amaury Denoyelle | c193823 | 2020-12-11 17:53:03 +0100 | [diff] [blame] | 2056 | /* Add websocket handshake key if needed */ |
| 2057 | if ((h1m->flags & (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET)) == (H1_MF_CONN_UPG|H1_MF_UPG_WEBSOCKET) && |
| 2058 | !ws_key_found) { |
Amaury Denoyelle | aad333a | 2020-12-11 17:53:07 +0100 | [diff] [blame] | 2059 | if (!(h1m->flags & H1_MF_RESP)) { |
| 2060 | /* generate a random websocket key |
| 2061 | * stored in the session to |
| 2062 | * verify it on the response side |
| 2063 | */ |
| 2064 | h1_generate_random_ws_input_key(h1s->ws_key); |
| 2065 | |
| 2066 | if (!h1_format_htx_hdr(ist("Sec-Websocket-Key"), |
| 2067 | ist(h1s->ws_key), |
| 2068 | &tmp)) { |
| 2069 | goto full; |
| 2070 | } |
| 2071 | } |
| 2072 | else { |
Amaury Denoyelle | c193823 | 2020-12-11 17:53:03 +0100 | [diff] [blame] | 2073 | /* add the response header key */ |
| 2074 | char key[29]; |
| 2075 | h1_calculate_ws_output_key(h1s->ws_key, key); |
| 2076 | if (!h1_format_htx_hdr(ist("Sec-Websocket-Accept"), |
| 2077 | ist(key), |
| 2078 | &tmp)) { |
| 2079 | goto full; |
| 2080 | } |
| 2081 | } |
| 2082 | } |
| 2083 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2084 | TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request headers xferred" : "H1 response headers xferred"), |
| 2085 | H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s); |
| 2086 | |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 2087 | if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) { |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2088 | if (!chunk_memcat(&tmp, "\r\n", 2)) |
| 2089 | goto full; |
| 2090 | goto done; |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 2091 | } |
Christopher Faulet | f3158e9 | 2019-11-15 11:14:23 +0100 | [diff] [blame] | 2092 | else if ((h1m->flags & H1_MF_RESP) && |
Christopher Faulet | c75668e | 2020-12-07 18:10:32 +0100 | [diff] [blame] | 2093 | ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) { |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2094 | if (!chunk_memcat(&tmp, "\r\n", 2)) |
| 2095 | goto full; |
| 2096 | goto done; |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 2097 | } |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 2098 | else if ((h1m->flags & H1_MF_RESP) && |
| 2099 | h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) { |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2100 | if (!chunk_memcat(&tmp, "\r\n", 2)) |
| 2101 | goto full; |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 2102 | h1m_init_res(&h1s->res); |
| 2103 | h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR); |
Christopher Faulet | ada34b6 | 2019-05-24 16:36:43 +0200 | [diff] [blame] | 2104 | h1s->flags &= ~H1S_F_HAVE_O_CONN; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2105 | TRACE_STATE("1xx response xferred", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s); |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 2106 | } |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2107 | else { |
| 2108 | /* EOM flag is set and it is the last block */ |
| 2109 | if (htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) { |
Christopher Faulet | 3d6e0e3 | 2021-02-08 09:34:35 +0100 | [diff] [blame] | 2110 | if (h1m->flags & H1_MF_CHNK) { |
| 2111 | if (!chunk_memcat(&tmp, "\r\n0\r\n\r\n", 7)) |
| 2112 | goto full; |
| 2113 | } |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2114 | else if (!chunk_memcat(&tmp, "\r\n", 2)) |
| 2115 | goto full; |
| 2116 | goto done; |
| 2117 | } |
| 2118 | else if (!chunk_memcat(&tmp, "\r\n", 2)) |
| 2119 | goto full; |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 2120 | h1m->state = H1_MSG_DATA; |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2121 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2122 | break; |
| 2123 | |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 2124 | case H1_MSG_DATA: |
Christopher Faulet | f8db73e | 2019-07-04 17:12:12 +0200 | [diff] [blame] | 2125 | case H1_MSG_TUNNEL: |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2126 | if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) { |
Christopher Faulet | 0d7e634 | 2021-02-08 15:56:36 +0100 | [diff] [blame] | 2127 | if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) |
| 2128 | goto trailers; |
| 2129 | |
Christopher Faulet | 5433a0b | 2019-06-27 17:40:14 +0200 | [diff] [blame] | 2130 | /* If the message is not chunked, never |
| 2131 | * add the last chunk. */ |
| 2132 | if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3)) |
Christopher Faulet | a61aa54 | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 2133 | goto full; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2134 | TRACE_PROTO("sending message trailers", H1_EV_TX_DATA|H1_EV_TX_TLRS, h1c->conn, h1s, chn_htx); |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 2135 | goto trailers; |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 2136 | } |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 2137 | else if (type != HTX_BLK_DATA) |
| 2138 | goto error; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2139 | |
| 2140 | TRACE_PROTO("sending message data", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx, (size_t[]){sz}); |
Christopher Faulet | d9233f0 | 2019-10-14 14:01:24 +0200 | [diff] [blame] | 2141 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2142 | /* It is the last block of this message. After this one, |
| 2143 | * only tunneled data may be forwarded. */ |
| 2144 | if (h1m->state == H1_MSG_DATA && htx_is_unique_blk(chn_htx, blk) && (chn_htx->flags & HTX_FL_EOM)) { |
| 2145 | TRACE_DEVEL("last message block", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s); |
| 2146 | last_data = 1; |
| 2147 | } |
Christopher Faulet | d9233f0 | 2019-10-14 14:01:24 +0200 | [diff] [blame] | 2148 | |
| 2149 | if (vlen > count) { |
| 2150 | /* Get the maximum amount of data we can xferred */ |
| 2151 | vlen = count; |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2152 | last_data = 0; |
Christopher Faulet | d9233f0 | 2019-10-14 14:01:24 +0200 | [diff] [blame] | 2153 | } |
| 2154 | |
Christopher Faulet | 0d7e634 | 2021-02-08 15:56:36 +0100 | [diff] [blame] | 2155 | if (h1m->state == H1_MSG_DATA && (h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) { |
| 2156 | TRACE_PROTO("Skip data for bodyless response", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx); |
| 2157 | goto skip_data; |
| 2158 | } |
| 2159 | |
Christopher Faulet | d9233f0 | 2019-10-14 14:01:24 +0200 | [diff] [blame] | 2160 | chklen = 0; |
| 2161 | if (h1m->flags & H1_MF_CHNK) { |
| 2162 | chklen = b_room(&tmp); |
| 2163 | chklen = ((chklen < 16) ? 1 : (chklen < 256) ? 2 : |
| 2164 | (chklen < 4096) ? 3 : (chklen < 65536) ? 4 : |
| 2165 | (chklen < 1048576) ? 5 : 8); |
| 2166 | chklen += 4; /* 2 x CRLF */ |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2167 | |
| 2168 | /* If it is the end of the chunked message (without EOT), reserve the |
| 2169 | * last chunk size */ |
| 2170 | if (last_data) |
| 2171 | chklen += 5; |
Christopher Faulet | d9233f0 | 2019-10-14 14:01:24 +0200 | [diff] [blame] | 2172 | } |
| 2173 | |
| 2174 | if (vlen + chklen > b_room(&tmp)) { |
| 2175 | /* too large for the buffer */ |
| 2176 | if (chklen >= b_room(&tmp)) |
| 2177 | goto full; |
| 2178 | vlen = b_room(&tmp) - chklen; |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2179 | last_data = 0; |
Christopher Faulet | d9233f0 | 2019-10-14 14:01:24 +0200 | [diff] [blame] | 2180 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2181 | v = htx_get_blk_value(chn_htx, blk); |
Christopher Faulet | b2e8416 | 2018-12-06 11:39:49 +0100 | [diff] [blame] | 2182 | v.len = vlen; |
Christopher Faulet | 53a899b | 2019-10-08 16:38:42 +0200 | [diff] [blame] | 2183 | if (!h1_format_htx_data(v, &tmp, !!(h1m->flags & H1_MF_CHNK))) |
Christopher Faulet | a61aa54 | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 2184 | goto full; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2185 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2186 | /* Space already reserved, so it must succeed */ |
| 2187 | if ((h1m->flags & H1_MF_CHNK) && last_data && !chunk_memcat(&tmp, "0\r\n\r\n", 5)) |
| 2188 | goto error; |
| 2189 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2190 | if (h1m->state == H1_MSG_DATA) |
| 2191 | TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request payload data xferred" : "H1 response payload data xferred"), |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 2192 | H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len}); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2193 | else |
| 2194 | TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request tunneled data xferred" : "H1 response tunneled data xferred"), |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 2195 | H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, 0, (size_t[]){v.len}); |
Christopher Faulet | 0d7e634 | 2021-02-08 15:56:36 +0100 | [diff] [blame] | 2196 | |
| 2197 | skip_data: |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2198 | if (last_data) |
| 2199 | goto done; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2200 | break; |
| 2201 | |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 2202 | case H1_MSG_TRAILERS: |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2203 | if (type != HTX_BLK_TLR && type != HTX_BLK_EOT) |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 2204 | goto error; |
| 2205 | trailers: |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2206 | h1m->state = H1_MSG_TRAILERS; |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2207 | |
Christopher Faulet | 5433a0b | 2019-06-27 17:40:14 +0200 | [diff] [blame] | 2208 | /* If the message is not chunked, ignore |
| 2209 | * trailers. It may happen with H2 messages. */ |
Christopher Faulet | 0a916d2 | 2021-02-10 08:48:19 +0100 | [diff] [blame] | 2210 | if (!(h1m->flags & H1_MF_CHNK)) { |
| 2211 | if (type == HTX_BLK_EOT) |
| 2212 | goto done; |
Christopher Faulet | 5433a0b | 2019-06-27 17:40:14 +0200 | [diff] [blame] | 2213 | break; |
Christopher Faulet | 0a916d2 | 2021-02-10 08:48:19 +0100 | [diff] [blame] | 2214 | } |
Christopher Faulet | 5433a0b | 2019-06-27 17:40:14 +0200 | [diff] [blame] | 2215 | |
Christopher Faulet | e5596bf | 2020-12-02 16:13:22 +0100 | [diff] [blame] | 2216 | if ((h1m->flags & H1_MF_RESP) && (h1s->flags & H1S_F_BODYLESS_RESP)) { |
| 2217 | TRACE_PROTO("Skip trailers for bodyless response", H1_EV_TX_DATA|H1_EV_TX_BODY, h1c->conn, h1s, chn_htx); |
Christopher Faulet | 0d7e634 | 2021-02-08 15:56:36 +0100 | [diff] [blame] | 2218 | if (type == HTX_BLK_EOT) |
| 2219 | goto done; |
Christopher Faulet | e5596bf | 2020-12-02 16:13:22 +0100 | [diff] [blame] | 2220 | break; |
| 2221 | } |
| 2222 | |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 2223 | if (type == HTX_BLK_EOT) { |
Christopher Faulet | c2518a5 | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 2224 | if (!chunk_memcat(&tmp, "\r\n", 2)) |
Christopher Faulet | a61aa54 | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 2225 | goto full; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2226 | TRACE_PROTO((!(h1m->flags & H1_MF_RESP) ? "H1 request trailers xferred" : "H1 response trailers xferred"), |
| 2227 | H1_EV_TX_DATA|H1_EV_TX_TLRS, h1c->conn, h1s); |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2228 | goto done; |
Christopher Faulet | 3218821 | 2018-11-20 18:21:43 +0100 | [diff] [blame] | 2229 | } |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 2230 | else { // HTX_BLK_TLR |
| 2231 | n = htx_get_blk_name(chn_htx, blk); |
| 2232 | v = htx_get_blk_value(chn_htx, blk); |
Christopher Faulet | 98fbe95 | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 2233 | |
| 2234 | /* Try to adjust the case of the header name */ |
| 2235 | if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV)) |
| 2236 | h1_adjust_case_outgoing_hdr(h1s, h1m, &n); |
Christopher Faulet | 53a899b | 2019-10-08 16:38:42 +0200 | [diff] [blame] | 2237 | if (!h1_format_htx_hdr(n, v, &tmp)) |
Christopher Faulet | a61aa54 | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 2238 | goto full; |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 2239 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2240 | break; |
| 2241 | |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 2242 | case H1_MSG_DONE: |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2243 | TRACE_STATE("unexpected data xferred in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s); |
| 2244 | goto error; /* For now return an error */ |
| 2245 | |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 2246 | done: |
Christopher Faulet | 3689367 | 2021-02-10 09:52:07 +0100 | [diff] [blame] | 2247 | if (!(chn_htx->flags & HTX_FL_EOM)) { |
| 2248 | TRACE_STATE("No EOM flags in done state", H1_EV_TX_DATA|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s); |
| 2249 | goto error; /* For now return an error */ |
| 2250 | } |
| 2251 | |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 2252 | h1m->state = H1_MSG_DONE; |
Christopher Faulet | dea2474 | 2021-01-22 15:12:30 +0100 | [diff] [blame] | 2253 | if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) { |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 2254 | h1s->flags |= H1S_F_TX_BLK; |
| 2255 | TRACE_STATE("Disable output processing", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s); |
Christopher Faulet | dea2474 | 2021-01-22 15:12:30 +0100 | [diff] [blame] | 2256 | } |
| 2257 | else if ((h1m->flags & H1_MF_RESP) && |
| 2258 | ((h1s->meth == HTTP_METH_CONNECT && h1s->status >= 200 && h1s->status < 300) || h1s->status == 101)) { |
| 2259 | /* a successful reply to a CONNECT or a protocol switching is sent |
| 2260 | * to the client. Switch the response to tunnel mode. |
| 2261 | */ |
Christopher Faulet | 5be651d | 2021-01-22 15:28:03 +0100 | [diff] [blame] | 2262 | h1_set_tunnel_mode(h1s); |
Christopher Faulet | dea2474 | 2021-01-22 15:12:30 +0100 | [diff] [blame] | 2263 | TRACE_STATE("switch H1 response in tunnel mode", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s); |
Christopher Faulet | f3158e9 | 2019-11-15 11:14:23 +0100 | [diff] [blame] | 2264 | } |
Christopher Faulet | 5be651d | 2021-01-22 15:28:03 +0100 | [diff] [blame] | 2265 | |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 2266 | if (h1s->flags & H1S_F_RX_BLK) { |
| 2267 | h1s->flags &= ~H1S_F_RX_BLK; |
Christopher Faulet | 02c92c3 | 2021-04-09 12:31:48 +0200 | [diff] [blame] | 2268 | h1_wake_stream_for_recv(h1s); |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 2269 | TRACE_STATE("Re-enable input processing", H1_EV_TX_DATA|H1_EV_H1S_BLK|H1_EV_STRM_WAKE, h1c->conn, h1s); |
Christopher Faulet | cd67bff | 2019-06-14 16:54:15 +0200 | [diff] [blame] | 2270 | } |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2271 | |
| 2272 | TRACE_USER((!(h1m->flags & H1_MF_RESP) ? "H1 request fully xferred" : "H1 response fully xferred"), |
| 2273 | H1_EV_TX_DATA, h1c->conn, h1s); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2274 | break; |
| 2275 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2276 | default: |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 2277 | error: |
Christopher Faulet | d87d3fa | 2019-06-26 15:16:28 +0200 | [diff] [blame] | 2278 | /* Unexpected error during output processing */ |
Christopher Faulet | 69b4821 | 2019-09-09 10:11:30 +0200 | [diff] [blame] | 2279 | chn_htx->flags |= HTX_FL_PROCESSING_ERROR; |
Christopher Faulet | 60ef12c | 2020-09-24 10:05:44 +0200 | [diff] [blame] | 2280 | h1s->flags |= H1S_F_PROCESSING_ERROR; |
Christopher Faulet | dea2474 | 2021-01-22 15:12:30 +0100 | [diff] [blame] | 2281 | h1c->flags |= H1C_F_ST_ERROR; |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 2282 | TRACE_ERROR("processing output error, set error on h1c/h1s", |
| 2283 | H1_EV_TX_DATA|H1_EV_STRM_ERR|H1_EV_H1C_ERR|H1_EV_H1S_ERR, h1c->conn, h1s); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2284 | break; |
| 2285 | } |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 2286 | |
| 2287 | nextblk: |
Christopher Faulet | b2e8416 | 2018-12-06 11:39:49 +0100 | [diff] [blame] | 2288 | total += vlen; |
| 2289 | count -= vlen; |
| 2290 | if (sz == vlen) |
| 2291 | blk = htx_remove_blk(chn_htx, blk); |
| 2292 | else { |
| 2293 | htx_cut_data_blk(chn_htx, blk, vlen); |
| 2294 | break; |
| 2295 | } |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 2296 | } |
| 2297 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2298 | copy: |
Willy Tarreau | c5efa33 | 2018-12-05 11:19:27 +0100 | [diff] [blame] | 2299 | /* when the output buffer is empty, tmp shares the same area so that we |
| 2300 | * only have to update pointers and lengths. |
| 2301 | */ |
Christopher Faulet | c2518a5 | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 2302 | if (tmp.area == h1c->obuf.area + h1c->obuf.head) |
| 2303 | h1c->obuf.data = tmp.data; |
Willy Tarreau | c5efa33 | 2018-12-05 11:19:27 +0100 | [diff] [blame] | 2304 | else |
Christopher Faulet | c2518a5 | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 2305 | b_putblk(&h1c->obuf, tmp.area, tmp.data); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2306 | |
Willy Tarreau | 3815b22 | 2018-12-11 19:50:43 +0100 | [diff] [blame] | 2307 | htx_to_buf(chn_htx, buf); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2308 | out: |
| 2309 | if (!buf_room_for_htx_data(&h1c->obuf)) { |
| 2310 | TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2311 | h1c->flags |= H1C_F_OUT_FULL; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2312 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2313 | end: |
Christopher Faulet | dea2474 | 2021-01-22 15:12:30 +0100 | [diff] [blame] | 2314 | /* Both the request and the response reached the DONE state. So set EOI |
| 2315 | * flag on the conn-stream. Most of time, the flag will already be set, |
| 2316 | * except for protocol upgrades. Report an error if data remains blocked |
| 2317 | * in the output buffer. |
| 2318 | */ |
| 2319 | if (h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) { |
| 2320 | if (!htx_is_empty(chn_htx)) { |
| 2321 | h1c->flags |= H1C_F_ST_ERROR; |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 2322 | TRACE_ERROR("txn done but data waiting to be sent, set error on h1c", H1_EV_H1C_ERR, h1c->conn, h1s); |
Christopher Faulet | dea2474 | 2021-01-22 15:12:30 +0100 | [diff] [blame] | 2323 | } |
| 2324 | h1s->cs->flags |= CS_FL_EOI; |
| 2325 | } |
| 2326 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2327 | TRACE_LEAVE(H1_EV_TX_DATA, h1c->conn, h1s, chn_htx, (size_t[]){total}); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2328 | return total; |
Christopher Faulet | a61aa54 | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 2329 | |
| 2330 | full: |
| 2331 | TRACE_STATE("h1c obuf full", H1_EV_TX_DATA|H1_EV_H1S_BLK, h1c->conn, h1s); |
| 2332 | h1c->flags |= H1C_F_OUT_FULL; |
| 2333 | goto copy; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2334 | } |
| 2335 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2336 | /*********************************************************/ |
| 2337 | /* functions below are I/O callbacks from the connection */ |
| 2338 | /*********************************************************/ |
Christopher Faulet | e17fa2f | 2018-12-11 16:25:36 +0100 | [diff] [blame] | 2339 | static void h1_wake_stream_for_recv(struct h1s *h1s) |
| 2340 | { |
Willy Tarreau | 1b0d4d1 | 2020-01-16 11:03:19 +0100 | [diff] [blame] | 2341 | if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_RECV) { |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2342 | TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s); |
Willy Tarreau | 1b0d4d1 | 2020-01-16 11:03:19 +0100 | [diff] [blame] | 2343 | tasklet_wakeup(h1s->subs->tasklet); |
| 2344 | h1s->subs->events &= ~SUB_RETRY_RECV; |
| 2345 | if (!h1s->subs->events) |
| 2346 | h1s->subs = NULL; |
Christopher Faulet | e17fa2f | 2018-12-11 16:25:36 +0100 | [diff] [blame] | 2347 | } |
| 2348 | } |
| 2349 | static void h1_wake_stream_for_send(struct h1s *h1s) |
| 2350 | { |
Willy Tarreau | 1b0d4d1 | 2020-01-16 11:03:19 +0100 | [diff] [blame] | 2351 | if (h1s && h1s->subs && h1s->subs->events & SUB_RETRY_SEND) { |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2352 | TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s); |
Willy Tarreau | 1b0d4d1 | 2020-01-16 11:03:19 +0100 | [diff] [blame] | 2353 | tasklet_wakeup(h1s->subs->tasklet); |
| 2354 | h1s->subs->events &= ~SUB_RETRY_SEND; |
| 2355 | if (!h1s->subs->events) |
| 2356 | h1s->subs = NULL; |
Christopher Faulet | e17fa2f | 2018-12-11 16:25:36 +0100 | [diff] [blame] | 2357 | } |
Christopher Faulet | c18fc23 | 2020-10-06 17:41:36 +0200 | [diff] [blame] | 2358 | } |
| 2359 | |
Christopher Faulet | ad4daf6 | 2021-01-21 17:49:01 +0100 | [diff] [blame] | 2360 | /* alerts the data layer following this sequence : |
| 2361 | * - if the h1s' data layer is subscribed to recv, then it's woken up for recv |
| 2362 | * - if its subscribed to send, then it's woken up for send |
| 2363 | * - if it was subscribed to neither, its ->wake() callback is called |
| 2364 | */ |
| 2365 | static void h1_alert(struct h1s *h1s) |
| 2366 | { |
| 2367 | if (h1s->subs) { |
| 2368 | h1_wake_stream_for_recv(h1s); |
| 2369 | h1_wake_stream_for_send(h1s); |
| 2370 | } |
| 2371 | else if (h1s->cs && h1s->cs->data_cb->wake != NULL) { |
| 2372 | TRACE_POINT(H1_EV_STRM_WAKE, h1s->h1c->conn, h1s); |
| 2373 | h1s->cs->data_cb->wake(h1s->cs); |
| 2374 | } |
| 2375 | } |
| 2376 | |
Christopher Faulet | c18fc23 | 2020-10-06 17:41:36 +0200 | [diff] [blame] | 2377 | /* Try to send an HTTP error with h1c->errcode status code. It returns 1 on success |
| 2378 | * and 0 on error. The flag H1C_F_ERR_PENDING is set on the H1 connection for |
| 2379 | * retryable errors (allocation error or buffer full). On success, the error is |
| 2380 | * copied in the output buffer. |
| 2381 | */ |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2382 | static int h1_send_error(struct h1c *h1c) |
Christopher Faulet | c18fc23 | 2020-10-06 17:41:36 +0200 | [diff] [blame] | 2383 | { |
| 2384 | int rc = http_get_status_idx(h1c->errcode); |
| 2385 | int ret = 0; |
| 2386 | |
| 2387 | TRACE_ENTER(H1_EV_H1C_ERR, h1c->conn, 0, 0, (size_t[]){h1c->errcode}); |
| 2388 | |
| 2389 | /* Verify if the error is mapped on /dev/null or any empty file */ |
| 2390 | /// XXX: do a function ! |
| 2391 | if (h1c->px->replies[rc] && |
| 2392 | h1c->px->replies[rc]->type == HTTP_REPLY_ERRMSG && |
| 2393 | h1c->px->replies[rc]->body.errmsg && |
| 2394 | b_is_null(h1c->px->replies[rc]->body.errmsg)) { |
| 2395 | /* Empty error, so claim a success */ |
| 2396 | ret = 1; |
| 2397 | goto out; |
| 2398 | } |
| 2399 | |
| 2400 | if (h1c->flags & (H1C_F_OUT_ALLOC|H1C_F_OUT_FULL)) { |
| 2401 | h1c->flags |= H1C_F_ERR_PENDING; |
| 2402 | goto out; |
| 2403 | } |
| 2404 | |
| 2405 | if (!h1_get_buf(h1c, &h1c->obuf)) { |
| 2406 | h1c->flags |= (H1C_F_OUT_ALLOC|H1C_F_ERR_PENDING); |
| 2407 | TRACE_STATE("waiting for h1c obuf allocation", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn); |
| 2408 | goto out; |
| 2409 | } |
| 2410 | ret = b_istput(&h1c->obuf, ist2(http_err_msgs[rc], strlen(http_err_msgs[rc]))); |
| 2411 | if (unlikely(ret <= 0)) { |
| 2412 | if (!ret) { |
| 2413 | h1c->flags |= (H1C_F_OUT_FULL|H1C_F_ERR_PENDING); |
| 2414 | TRACE_STATE("h1c obuf full", H1_EV_H1C_ERR|H1_EV_H1C_BLK, h1c->conn); |
| 2415 | goto out; |
| 2416 | } |
| 2417 | else { |
| 2418 | /* we cannot report this error, so claim a success */ |
| 2419 | ret = 1; |
| 2420 | } |
| 2421 | } |
| 2422 | h1c->flags &= ~H1C_F_ERR_PENDING; |
| 2423 | out: |
| 2424 | TRACE_LEAVE(H1_EV_H1C_ERR, h1c->conn); |
| 2425 | return ret; |
| 2426 | } |
| 2427 | |
| 2428 | /* Try to send a 500 internal error. It relies on h1_send_error to send the |
| 2429 | * error. This function takes care of incrementing stats and tracked counters. |
| 2430 | */ |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2431 | static int h1_handle_internal_err(struct h1c *h1c) |
Christopher Faulet | c18fc23 | 2020-10-06 17:41:36 +0200 | [diff] [blame] | 2432 | { |
| 2433 | struct session *sess = h1c->conn->owner; |
| 2434 | int ret = 1; |
| 2435 | |
| 2436 | session_inc_http_req_ctr(sess); |
Christopher Faulet | c18fc23 | 2020-10-06 17:41:36 +0200 | [diff] [blame] | 2437 | proxy_inc_fe_req_ctr(sess->listener, sess->fe); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2438 | _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[5]); |
| 2439 | _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 2440 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2441 | _HA_ATOMIC_INC(&sess->listener->counters->internal_errors); |
Christopher Faulet | c18fc23 | 2020-10-06 17:41:36 +0200 | [diff] [blame] | 2442 | |
| 2443 | h1c->errcode = 500; |
| 2444 | ret = h1_send_error(h1c); |
| 2445 | sess_log(sess); |
| 2446 | return ret; |
Christopher Faulet | e17fa2f | 2018-12-11 16:25:36 +0100 | [diff] [blame] | 2447 | } |
| 2448 | |
Christopher Faulet | b3230f7 | 2021-09-21 18:38:20 +0200 | [diff] [blame] | 2449 | /* Try to send an error because of a parsing error. By default a 400 bad request |
| 2450 | * error is returned. But the status code may be specified by setting |
| 2451 | * h1c->errcode. It relies on h1_send_error to send the error. This function |
| 2452 | * takes care of incrementing stats and tracked counters. |
Christopher Faulet | c18fc23 | 2020-10-06 17:41:36 +0200 | [diff] [blame] | 2453 | */ |
Christopher Faulet | b3230f7 | 2021-09-21 18:38:20 +0200 | [diff] [blame] | 2454 | static int h1_handle_parsing_error(struct h1c *h1c) |
Christopher Faulet | c18fc23 | 2020-10-06 17:41:36 +0200 | [diff] [blame] | 2455 | { |
| 2456 | struct session *sess = h1c->conn->owner; |
| 2457 | int ret = 1; |
| 2458 | |
| 2459 | if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB))) |
| 2460 | goto end; |
| 2461 | |
| 2462 | session_inc_http_req_ctr(sess); |
| 2463 | session_inc_http_err_ctr(sess); |
| 2464 | proxy_inc_fe_req_ctr(sess->listener, sess->fe); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2465 | _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]); |
| 2466 | _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 2467 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2468 | _HA_ATOMIC_INC(&sess->listener->counters->failed_req); |
Christopher Faulet | c18fc23 | 2020-10-06 17:41:36 +0200 | [diff] [blame] | 2469 | |
Christopher Faulet | b3230f7 | 2021-09-21 18:38:20 +0200 | [diff] [blame] | 2470 | if (!h1c->errcode) |
| 2471 | h1c->errcode = 400; |
Christopher Faulet | c18fc23 | 2020-10-06 17:41:36 +0200 | [diff] [blame] | 2472 | ret = h1_send_error(h1c); |
Christopher Faulet | 07e10de | 2021-07-26 09:42:49 +0200 | [diff] [blame] | 2473 | if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG)) |
| 2474 | sess_log(sess); |
Christopher Faulet | c18fc23 | 2020-10-06 17:41:36 +0200 | [diff] [blame] | 2475 | |
| 2476 | end: |
| 2477 | return ret; |
| 2478 | } |
| 2479 | |
Christopher Faulet | 2eed800 | 2020-12-07 11:26:13 +0100 | [diff] [blame] | 2480 | /* Try to send a 501 not implemented error. It relies on h1_send_error to send |
| 2481 | * the error. This function takes care of incrementing stats and tracked |
| 2482 | * counters. |
| 2483 | */ |
| 2484 | static int h1_handle_not_impl_err(struct h1c *h1c) |
| 2485 | { |
| 2486 | struct session *sess = h1c->conn->owner; |
| 2487 | int ret = 1; |
| 2488 | |
| 2489 | if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB))) |
| 2490 | goto end; |
| 2491 | |
| 2492 | session_inc_http_req_ctr(sess); |
Christopher Faulet | 2eed800 | 2020-12-07 11:26:13 +0100 | [diff] [blame] | 2493 | proxy_inc_fe_req_ctr(sess->listener, sess->fe); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2494 | _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]); |
| 2495 | _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 2496 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2497 | _HA_ATOMIC_INC(&sess->listener->counters->failed_req); |
Christopher Faulet | 2eed800 | 2020-12-07 11:26:13 +0100 | [diff] [blame] | 2498 | |
| 2499 | h1c->errcode = 501; |
| 2500 | ret = h1_send_error(h1c); |
Christopher Faulet | 07e10de | 2021-07-26 09:42:49 +0200 | [diff] [blame] | 2501 | if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG)) |
| 2502 | sess_log(sess); |
Christopher Faulet | 2eed800 | 2020-12-07 11:26:13 +0100 | [diff] [blame] | 2503 | |
| 2504 | end: |
| 2505 | return ret; |
| 2506 | } |
| 2507 | |
Christopher Faulet | c18fc23 | 2020-10-06 17:41:36 +0200 | [diff] [blame] | 2508 | /* Try to send a 408 timeout error. It relies on h1_send_error to send the |
| 2509 | * error. This function takes care of incrementing stats and tracked counters. |
| 2510 | */ |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2511 | static int h1_handle_req_tout(struct h1c *h1c) |
Christopher Faulet | c18fc23 | 2020-10-06 17:41:36 +0200 | [diff] [blame] | 2512 | { |
| 2513 | struct session *sess = h1c->conn->owner; |
| 2514 | int ret = 1; |
| 2515 | |
| 2516 | if (!b_data(&h1c->ibuf) && ((h1c->flags & H1C_F_WAIT_NEXT_REQ) || (sess->fe->options & PR_O_IGNORE_PRB))) |
| 2517 | goto end; |
| 2518 | |
| 2519 | session_inc_http_req_ctr(sess); |
Christopher Faulet | c18fc23 | 2020-10-06 17:41:36 +0200 | [diff] [blame] | 2520 | proxy_inc_fe_req_ctr(sess->listener, sess->fe); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2521 | _HA_ATOMIC_INC(&sess->fe->fe_counters.p.http.rsp[4]); |
| 2522 | _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 2523 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2524 | _HA_ATOMIC_INC(&sess->listener->counters->failed_req); |
Christopher Faulet | c18fc23 | 2020-10-06 17:41:36 +0200 | [diff] [blame] | 2525 | |
| 2526 | h1c->errcode = 408; |
Christopher Faulet | 07e10de | 2021-07-26 09:42:49 +0200 | [diff] [blame] | 2527 | if (b_data(&h1c->ibuf) || !(sess->fe->options & PR_O_NULLNOLOG)) |
| 2528 | ret = h1_send_error(h1c); |
Christopher Faulet | c18fc23 | 2020-10-06 17:41:36 +0200 | [diff] [blame] | 2529 | sess_log(sess); |
| 2530 | end: |
| 2531 | return ret; |
| 2532 | } |
| 2533 | |
| 2534 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2535 | /* |
| 2536 | * Attempt to read data, and subscribe if none available |
| 2537 | */ |
| 2538 | static int h1_recv(struct h1c *h1c) |
| 2539 | { |
| 2540 | struct connection *conn = h1c->conn; |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 2541 | size_t ret = 0, max; |
Willy Tarreau | 6e59cb5 | 2020-02-20 11:11:50 +0100 | [diff] [blame] | 2542 | int flags = 0; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2543 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2544 | TRACE_ENTER(H1_EV_H1C_RECV, h1c->conn); |
| 2545 | |
| 2546 | if (h1c->wait_event.events & SUB_RETRY_RECV) { |
| 2547 | TRACE_DEVEL("leaving on sub_recv", H1_EV_H1C_RECV, h1c->conn); |
Christopher Faulet | c386a88 | 2018-12-04 16:06:28 +0100 | [diff] [blame] | 2548 | return (b_data(&h1c->ibuf)); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2549 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2550 | |
Christopher Faulet | ae63576 | 2020-09-21 11:47:16 +0200 | [diff] [blame] | 2551 | if ((h1c->flags & H1C_F_WANT_SPLICE) || !h1_recv_allowed(h1c)) { |
| 2552 | TRACE_DEVEL("leaving on (want_splice|!recv_allowed)", H1_EV_H1C_RECV, h1c->conn); |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2553 | return 1; |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 2554 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2555 | |
Christopher Faulet | f7d5ff3 | 2019-04-16 13:55:08 +0200 | [diff] [blame] | 2556 | if (!h1_get_buf(h1c, &h1c->ibuf)) { |
| 2557 | h1c->flags |= H1C_F_IN_ALLOC; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2558 | TRACE_STATE("waiting for h1c ibuf allocation", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn); |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2559 | return 0; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2560 | } |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 2561 | |
Olivier Houchard | 29a22bc | 2018-12-04 18:16:45 +0100 | [diff] [blame] | 2562 | /* |
| 2563 | * If we only have a small amount of data, realign it, |
| 2564 | * it's probably cheaper than doing 2 recv() calls. |
| 2565 | */ |
| 2566 | if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128) |
Christopher Faulet | 00d7cde | 2021-02-04 11:01:51 +0100 | [diff] [blame] | 2567 | b_slow_realign_ofs(&h1c->ibuf, trash.area, sizeof(struct htx)); |
Olivier Houchard | 29a22bc | 2018-12-04 18:16:45 +0100 | [diff] [blame] | 2568 | |
Willy Tarreau | 6e59cb5 | 2020-02-20 11:11:50 +0100 | [diff] [blame] | 2569 | /* avoid useless reads after first responses */ |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2570 | if (!h1c->h1s || |
| 2571 | (!(h1c->flags & H1C_F_IS_BACK) && h1c->h1s->req.state == H1_MSG_RQBEFORE) || |
| 2572 | ((h1c->flags & H1C_F_IS_BACK) && h1c->h1s->res.state == H1_MSG_RPBEFORE)) |
Willy Tarreau | 6e59cb5 | 2020-02-20 11:11:50 +0100 | [diff] [blame] | 2573 | flags |= CO_RFL_READ_ONCE; |
| 2574 | |
Willy Tarreau | 45f2b89 | 2018-12-05 07:59:27 +0100 | [diff] [blame] | 2575 | max = buf_room_for_htx_data(&h1c->ibuf); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2576 | if (max) { |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2577 | if (h1c->flags & H1C_F_IN_FULL) { |
| 2578 | h1c->flags &= ~H1C_F_IN_FULL; |
| 2579 | TRACE_STATE("h1c ibuf not full anymore", H1_EV_H1C_RECV|H1_EV_H1C_BLK); |
| 2580 | } |
Willy Tarreau | 78f548f | 2018-12-05 10:02:39 +0100 | [diff] [blame] | 2581 | |
| 2582 | if (!b_data(&h1c->ibuf)) { |
| 2583 | /* try to pre-align the buffer like the rxbufs will be |
| 2584 | * to optimize memory copies. |
| 2585 | */ |
Willy Tarreau | 78f548f | 2018-12-05 10:02:39 +0100 | [diff] [blame] | 2586 | h1c->ibuf.head = sizeof(struct htx); |
| 2587 | } |
Willy Tarreau | 6e59cb5 | 2020-02-20 11:11:50 +0100 | [diff] [blame] | 2588 | ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, flags); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2589 | } |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2590 | if (max && !ret && h1_recv_allowed(h1c)) { |
| 2591 | TRACE_STATE("failed to receive data, subscribing", H1_EV_H1C_RECV, h1c->conn); |
| 2592 | conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event); |
Christopher Faulet | cf56b99 | 2018-12-11 16:12:31 +0100 | [diff] [blame] | 2593 | } |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2594 | else { |
| 2595 | h1_wake_stream_for_recv(h1c->h1s); |
| 2596 | TRACE_DATA("data received", H1_EV_H1C_RECV, h1c->conn, 0, 0, (size_t[]){ret}); |
Willy Tarreau | fbdf90a | 2019-06-03 13:42:54 +0200 | [diff] [blame] | 2597 | } |
| 2598 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2599 | if (!b_data(&h1c->ibuf)) |
| 2600 | h1_release_buf(h1c, &h1c->ibuf); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2601 | else if (!buf_room_for_htx_data(&h1c->ibuf)) { |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2602 | h1c->flags |= H1C_F_IN_FULL; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2603 | TRACE_STATE("h1c ibuf full", H1_EV_H1C_RECV|H1_EV_H1C_BLK); |
| 2604 | } |
| 2605 | |
| 2606 | TRACE_LEAVE(H1_EV_H1C_RECV, h1c->conn); |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2607 | return !!ret || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2608 | } |
| 2609 | |
| 2610 | |
| 2611 | /* |
| 2612 | * Try to send data if possible |
| 2613 | */ |
| 2614 | static int h1_send(struct h1c *h1c) |
| 2615 | { |
| 2616 | struct connection *conn = h1c->conn; |
| 2617 | unsigned int flags = 0; |
| 2618 | size_t ret; |
| 2619 | int sent = 0; |
| 2620 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2621 | TRACE_ENTER(H1_EV_H1C_SEND, h1c->conn); |
| 2622 | |
| 2623 | if (conn->flags & CO_FL_ERROR) { |
| 2624 | TRACE_DEVEL("leaving on connection error", H1_EV_H1C_SEND, h1c->conn); |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2625 | b_reset(&h1c->obuf); |
| 2626 | return 1; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2627 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2628 | |
| 2629 | if (!b_data(&h1c->obuf)) |
| 2630 | goto end; |
| 2631 | |
Christopher Faulet | 4623036 | 2019-10-17 16:04:20 +0200 | [diff] [blame] | 2632 | if (h1c->flags & H1C_F_CO_MSG_MORE) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2633 | flags |= CO_SFL_MSG_MORE; |
Christopher Faulet | 4623036 | 2019-10-17 16:04:20 +0200 | [diff] [blame] | 2634 | if (h1c->flags & H1C_F_CO_STREAMER) |
| 2635 | flags |= CO_SFL_STREAMER; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2636 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 2637 | ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2638 | if (ret > 0) { |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 2639 | TRACE_DATA("data sent", H1_EV_H1C_SEND, h1c->conn, 0, 0, (size_t[]){ret}); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2640 | if (h1c->flags & H1C_F_OUT_FULL) { |
| 2641 | h1c->flags &= ~H1C_F_OUT_FULL; |
| 2642 | TRACE_STATE("h1c obuf not full anymore", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn); |
| 2643 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2644 | b_del(&h1c->obuf, ret); |
| 2645 | sent = 1; |
| 2646 | } |
| 2647 | |
Christopher Faulet | 145aa47 | 2018-12-06 10:56:20 +0100 | [diff] [blame] | 2648 | if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) { |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2649 | TRACE_DEVEL("connection error or output closed", H1_EV_H1C_SEND, h1c->conn); |
Christopher Faulet | 145aa47 | 2018-12-06 10:56:20 +0100 | [diff] [blame] | 2650 | /* error or output closed, nothing to send, clear the buffer to release it */ |
| 2651 | b_reset(&h1c->obuf); |
| 2652 | } |
| 2653 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2654 | end: |
Christopher Faulet | 10a8670 | 2021-04-07 14:18:11 +0200 | [diff] [blame] | 2655 | if (!(h1c->flags & H1C_F_OUT_FULL)) |
Christopher Faulet | e17fa2f | 2018-12-11 16:25:36 +0100 | [diff] [blame] | 2656 | h1_wake_stream_for_send(h1c->h1s); |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 2657 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2658 | /* We're done, no more to send */ |
| 2659 | if (!b_data(&h1c->obuf)) { |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2660 | TRACE_DEVEL("leaving with everything sent", H1_EV_H1C_SEND, h1c->conn); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2661 | h1_release_buf(h1c, &h1c->obuf); |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 2662 | if (h1c->flags & H1C_F_ST_SHUTDOWN) { |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2663 | TRACE_STATE("process pending shutdown for writes", H1_EV_H1C_SEND, h1c->conn); |
Christopher Faulet | 666a0c4 | 2019-01-08 11:12:04 +0100 | [diff] [blame] | 2664 | h1_shutw_conn(conn, CS_SHW_NORMAL); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2665 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2666 | } |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2667 | else if (!(h1c->wait_event.events & SUB_RETRY_SEND)) { |
| 2668 | TRACE_STATE("more data to send, subscribing", H1_EV_H1C_SEND, h1c->conn); |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 2669 | conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2670 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2671 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2672 | TRACE_LEAVE(H1_EV_H1C_SEND, h1c->conn); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2673 | return sent; |
| 2674 | } |
| 2675 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2676 | /* callback called on any event by the connection handler. |
| 2677 | * It applies changes and returns zero, or < 0 if it wants immediate |
| 2678 | * destruction of the connection. |
| 2679 | */ |
| 2680 | static int h1_process(struct h1c * h1c) |
| 2681 | { |
| 2682 | struct connection *conn = h1c->conn; |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 2683 | struct h1s *h1s = h1c->h1s; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2684 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2685 | TRACE_ENTER(H1_EV_H1C_WAKE, conn); |
| 2686 | |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2687 | /* Try to parse now the first block of a request, creating the H1 stream if necessary */ |
Christopher Faulet | 39c7b6b | 2021-01-21 17:44:35 +0100 | [diff] [blame] | 2688 | if (b_data(&h1c->ibuf) && /* Input data to be processed */ |
Christopher Faulet | ab7389d | 2021-09-16 08:16:23 +0200 | [diff] [blame] | 2689 | (h1c->flags & H1C_F_ST_ALIVE) && !(h1c->flags & H1C_F_ST_READY) && /* ST_IDLE/ST_EMBRYONIC or ST_ATTACH but not ST_READY */ |
| 2690 | !(h1c->flags & (H1C_F_IN_SALLOC|H1C_F_ST_ERROR))) { /* No allocation failure on the stream rxbuf and no ERROR on the H1C */ |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2691 | struct buffer *buf; |
| 2692 | size_t count; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2693 | |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2694 | /* When it happens for a backend connection, we may release it (it is probably a 408) */ |
| 2695 | if (h1c->flags & H1C_F_IS_BACK) |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 2696 | goto release; |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2697 | |
| 2698 | /* First of all handle H1 to H2 upgrade (no need to create the H1 stream) */ |
Christopher Faulet | 39c7b6b | 2021-01-21 17:44:35 +0100 | [diff] [blame] | 2699 | if (!(h1c->flags & H1C_F_WAIT_NEXT_REQ) && /* First request */ |
Christopher Faulet | 143e9e5 | 2021-03-08 15:32:03 +0100 | [diff] [blame] | 2700 | !(h1c->px->options2 & PR_O2_NO_H2_UPGRADE) && /* H2 upgrade supported by the proxy */ |
| 2701 | !(conn->mux->flags & MX_FL_NO_UPG)) { /* the current mux supports upgrades */ |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2702 | /* Try to match H2 preface before parsing the request headers. */ |
| 2703 | if (b_isteq(&h1c->ibuf, 0, b_data(&h1c->ibuf), ist(H2_CONN_PREFACE)) > 0) { |
| 2704 | h1c->flags |= H1C_F_UPG_H2C; |
Christopher Faulet | 0f9395d | 2021-01-21 17:50:19 +0100 | [diff] [blame] | 2705 | if (h1c->flags & H1C_F_ST_ATTACHED) { |
| 2706 | /* Force the REOS here to be sure to release the CS. |
| 2707 | Here ATTACHED implies !READY, and h1s defined |
| 2708 | */ |
| 2709 | BUG_ON(!h1s || (h1c->flags & H1C_F_ST_READY)); |
| 2710 | h1s->flags |= H1S_F_REOS; |
| 2711 | } |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2712 | TRACE_STATE("release h1c to perform H2 upgrade ", H1_EV_RX_DATA|H1_EV_H1C_WAKE); |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 2713 | goto release; |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2714 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2715 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2716 | |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2717 | /* Create the H1 stream if not already there */ |
| 2718 | if (!h1s) { |
| 2719 | h1s = h1c_frt_stream_new(h1c); |
| 2720 | if (!h1s) { |
| 2721 | b_reset(&h1c->ibuf); |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 2722 | h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR; |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2723 | goto no_parsing; |
| 2724 | } |
| 2725 | } |
| 2726 | |
| 2727 | if (h1s->sess->t_idle == -1) |
| 2728 | h1s->sess->t_idle = tv_ms_elapsed(&h1s->sess->tv_accept, &now) - h1s->sess->t_handshake; |
| 2729 | |
| 2730 | /* Get the stream rxbuf */ |
| 2731 | buf = h1_get_buf(h1c, &h1s->rxbuf); |
| 2732 | if (!buf) { |
| 2733 | h1c->flags |= H1C_F_IN_SALLOC; |
| 2734 | TRACE_STATE("waiting for stream rxbuf allocation", H1_EV_H1C_WAKE|H1_EV_H1C_BLK, h1c->conn); |
| 2735 | return 0; |
| 2736 | } |
| 2737 | |
| 2738 | count = (buf->size - sizeof(struct htx) - global.tune.maxrewrite); |
Christopher Faulet | 44c0dcf | 2021-02-16 18:32:08 +0100 | [diff] [blame] | 2739 | h1_process_demux(h1c, buf, count); |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2740 | h1_release_buf(h1c, &h1s->rxbuf); |
| 2741 | h1_set_idle_expiration(h1c); |
| 2742 | |
| 2743 | no_parsing: |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 2744 | if (h1c->flags & H1C_F_ST_ERROR) { |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2745 | h1_handle_internal_err(h1c); |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 2746 | h1c->flags &= ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ); |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 2747 | TRACE_ERROR("internal error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR); |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2748 | } |
| 2749 | else if (h1s->flags & H1S_F_PARSING_ERROR) { |
Christopher Faulet | b3230f7 | 2021-09-21 18:38:20 +0200 | [diff] [blame] | 2750 | h1_handle_parsing_error(h1c); |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 2751 | h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR; |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 2752 | TRACE_ERROR("parsing error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR); |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2753 | } |
Christopher Faulet | 2eed800 | 2020-12-07 11:26:13 +0100 | [diff] [blame] | 2754 | else if (h1s->flags & H1S_F_NOT_IMPL_ERROR) { |
| 2755 | h1_handle_not_impl_err(h1c); |
| 2756 | h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR; |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 2757 | TRACE_ERROR("not-implemented error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR); |
Christopher Faulet | 2eed800 | 2020-12-07 11:26:13 +0100 | [diff] [blame] | 2758 | } |
Christopher Faulet | ae63576 | 2020-09-21 11:47:16 +0200 | [diff] [blame] | 2759 | } |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2760 | h1_send(h1c); |
| 2761 | |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 2762 | if ((conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn) || (h1c->flags & H1C_F_ST_ERROR)) { |
Christopher Faulet | 39c7b6b | 2021-01-21 17:44:35 +0100 | [diff] [blame] | 2763 | if (!(h1c->flags & H1C_F_ST_READY)) { |
| 2764 | /* No conn-stream or not ready */ |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2765 | /* shutdown for reads and error on the frontend connection: Send an error */ |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 2766 | if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR))) { |
Christopher Faulet | b3230f7 | 2021-09-21 18:38:20 +0200 | [diff] [blame] | 2767 | if (h1_handle_parsing_error(h1c)) |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2768 | h1_send(h1c); |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 2769 | h1c->flags = (h1c->flags & ~(H1C_F_ST_IDLE|H1C_F_WAIT_NEXT_REQ)) | H1C_F_ST_ERROR; |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2770 | } |
| 2771 | |
| 2772 | /* Handle pending error, if any (only possible on frontend connection) */ |
| 2773 | if (h1c->flags & H1C_F_ERR_PENDING) { |
| 2774 | BUG_ON(h1c->flags & H1C_F_IS_BACK); |
| 2775 | if (h1_send_error(h1c)) |
| 2776 | h1_send(h1c); |
| 2777 | } |
Christopher Faulet | ae63576 | 2020-09-21 11:47:16 +0200 | [diff] [blame] | 2778 | |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2779 | /* If there is some pending outgoing data or error, just wait */ |
| 2780 | if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING)) |
| 2781 | goto end; |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 2782 | |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2783 | /* Otherwise we can release the H1 connection */ |
| 2784 | goto release; |
| 2785 | } |
| 2786 | else { |
| 2787 | /* Here there is still a H1 stream with a conn-stream. |
| 2788 | * Report the connection state at the stream level |
| 2789 | */ |
| 2790 | if (conn_xprt_read0_pending(conn)) { |
| 2791 | h1s->flags |= H1S_F_REOS; |
| 2792 | TRACE_STATE("read0 on connection", H1_EV_H1C_RECV, conn, h1s); |
| 2793 | } |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 2794 | if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR)) |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2795 | h1s->cs->flags |= CS_FL_ERROR; |
| 2796 | TRACE_POINT(H1_EV_STRM_WAKE, h1c->conn, h1s); |
Christopher Faulet | ad4daf6 | 2021-01-21 17:49:01 +0100 | [diff] [blame] | 2797 | h1_alert(h1s); |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2798 | } |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2799 | } |
Willy Tarreau | c493c9c | 2019-06-03 14:18:22 +0200 | [diff] [blame] | 2800 | |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2801 | if (!b_data(&h1c->ibuf)) |
| 2802 | h1_release_buf(h1c, &h1c->ibuf); |
| 2803 | |
Amaury Denoyelle | efc6e95 | 2021-05-05 11:11:11 +0200 | [diff] [blame] | 2804 | /* Check if a soft-stop is in progress. |
| 2805 | * Release idling front connection if this is the case. |
| 2806 | */ |
| 2807 | if (!(h1c->flags & H1C_F_IS_BACK)) { |
| 2808 | if (unlikely(h1c->px->disabled)) { |
| 2809 | if (h1c->flags & H1C_F_WAIT_NEXT_REQ) |
| 2810 | goto release; |
| 2811 | } |
| 2812 | } |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2813 | |
| 2814 | if ((h1c->flags & H1C_F_WANT_SPLICE) && !h1s_data_pending(h1s)) { |
| 2815 | TRACE_DEVEL("xprt rcv_buf blocked (want_splice), notify h1s for recv", H1_EV_H1C_RECV, h1c->conn); |
| 2816 | h1_wake_stream_for_recv(h1s); |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 2817 | } |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2818 | |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 2819 | end: |
Christopher Faulet | 7a145d6 | 2020-08-05 11:31:16 +0200 | [diff] [blame] | 2820 | h1_refresh_timeout(h1c); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2821 | TRACE_LEAVE(H1_EV_H1C_WAKE, conn); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2822 | return 0; |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 2823 | |
| 2824 | release: |
Christopher Faulet | 0f9395d | 2021-01-21 17:50:19 +0100 | [diff] [blame] | 2825 | if (h1c->flags & H1C_F_ST_ATTACHED) { |
Ilya Shipitsin | acf8459 | 2021-02-06 22:29:08 +0500 | [diff] [blame] | 2826 | /* Don't release the H1 connection right now, we must destroy the |
Christopher Faulet | 0f9395d | 2021-01-21 17:50:19 +0100 | [diff] [blame] | 2827 | * attached CS first. Here, the H1C must not be READY */ |
| 2828 | BUG_ON(!h1s || h1c->flags & H1C_F_ST_READY); |
| 2829 | |
| 2830 | if (conn_xprt_read0_pending(conn) || (h1s->flags & H1S_F_REOS)) |
| 2831 | h1s->cs->flags |= CS_FL_EOS; |
| 2832 | if ((h1c->flags & H1C_F_ST_ERROR) || (conn->flags & CO_FL_ERROR)) |
| 2833 | h1s->cs->flags |= CS_FL_ERROR; |
| 2834 | h1_alert(h1s); |
| 2835 | TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE); |
| 2836 | } |
| 2837 | else { |
| 2838 | h1_release(h1c); |
| 2839 | TRACE_DEVEL("leaving after releasing the connection", H1_EV_H1C_WAKE); |
| 2840 | } |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 2841 | return -1; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2842 | } |
| 2843 | |
Willy Tarreau | e388f2f | 2021-03-02 16:51:09 +0100 | [diff] [blame] | 2844 | struct task *h1_io_cb(struct task *t, void *ctx, unsigned int state) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2845 | { |
Olivier Houchard | f12ca9f | 2020-02-20 16:00:18 +0100 | [diff] [blame] | 2846 | struct connection *conn; |
| 2847 | struct tasklet *tl = (struct tasklet *)t; |
| 2848 | int conn_in_list; |
Willy Tarreau | e388f2f | 2021-03-02 16:51:09 +0100 | [diff] [blame] | 2849 | struct h1c *h1c = ctx; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2850 | int ret = 0; |
| 2851 | |
Willy Tarreau | e388f2f | 2021-03-02 16:51:09 +0100 | [diff] [blame] | 2852 | if (state & TASK_F_USR1) { |
| 2853 | /* the tasklet was idling on an idle connection, it might have |
| 2854 | * been stolen, let's be careful! |
| 2855 | */ |
| 2856 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 2857 | if (tl->context == NULL) { |
| 2858 | /* The connection has been taken over by another thread, |
| 2859 | * we're no longer responsible for it, so just free the |
| 2860 | * tasklet, and do nothing. |
| 2861 | */ |
| 2862 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 2863 | tasklet_free(tl); |
| 2864 | return NULL; |
| 2865 | } |
| 2866 | conn = h1c->conn; |
| 2867 | TRACE_POINT(H1_EV_H1C_WAKE, conn); |
Olivier Houchard | f12ca9f | 2020-02-20 16:00:18 +0100 | [diff] [blame] | 2868 | |
Willy Tarreau | e388f2f | 2021-03-02 16:51:09 +0100 | [diff] [blame] | 2869 | /* Remove the connection from the list, to be sure nobody attempts |
| 2870 | * to use it while we handle the I/O events |
Olivier Houchard | f12ca9f | 2020-02-20 16:00:18 +0100 | [diff] [blame] | 2871 | */ |
Willy Tarreau | e388f2f | 2021-03-02 16:51:09 +0100 | [diff] [blame] | 2872 | conn_in_list = conn->flags & CO_FL_LIST_MASK; |
| 2873 | if (conn_in_list) |
| 2874 | conn_delete_from_tree(&conn->hash_node->node); |
| 2875 | |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 2876 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Willy Tarreau | e388f2f | 2021-03-02 16:51:09 +0100 | [diff] [blame] | 2877 | } else { |
| 2878 | /* we're certain the connection was not in an idle list */ |
| 2879 | conn = h1c->conn; |
| 2880 | TRACE_ENTER(H1_EV_H1C_WAKE, conn); |
| 2881 | conn_in_list = 0; |
Olivier Houchard | f12ca9f | 2020-02-20 16:00:18 +0100 | [diff] [blame] | 2882 | } |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2883 | |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2884 | if (!(h1c->wait_event.events & SUB_RETRY_SEND)) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2885 | ret = h1_send(h1c); |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2886 | if (!(h1c->wait_event.events & SUB_RETRY_RECV)) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2887 | ret |= h1_recv(h1c); |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2888 | if (ret || b_data(&h1c->ibuf)) |
Olivier Houchard | f12ca9f | 2020-02-20 16:00:18 +0100 | [diff] [blame] | 2889 | ret = h1_process(h1c); |
Willy Tarreau | 7416314 | 2021-03-13 11:30:19 +0100 | [diff] [blame] | 2890 | |
Olivier Houchard | f12ca9f | 2020-02-20 16:00:18 +0100 | [diff] [blame] | 2891 | /* If we were in an idle list, we want to add it back into it, |
| 2892 | * unless h1_process() returned -1, which mean it has destroyed |
| 2893 | * the connection (testing !ret is enough, if h1_process() wasn't |
| 2894 | * called then ret will be 0 anyway. |
| 2895 | */ |
Willy Tarreau | 7416314 | 2021-03-13 11:30:19 +0100 | [diff] [blame] | 2896 | if (ret < 0) |
| 2897 | t = NULL; |
| 2898 | |
Olivier Houchard | f12ca9f | 2020-02-20 16:00:18 +0100 | [diff] [blame] | 2899 | if (!ret && conn_in_list) { |
| 2900 | struct server *srv = objt_server(conn->target); |
| 2901 | |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 2902 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Olivier Houchard | f12ca9f | 2020-02-20 16:00:18 +0100 | [diff] [blame] | 2903 | if (conn_in_list == CO_FL_SAFE_LIST) |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 2904 | ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash)); |
Olivier Houchard | f12ca9f | 2020-02-20 16:00:18 +0100 | [diff] [blame] | 2905 | else |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 2906 | ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash)); |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 2907 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Olivier Houchard | f12ca9f | 2020-02-20 16:00:18 +0100 | [diff] [blame] | 2908 | } |
Willy Tarreau | 7416314 | 2021-03-13 11:30:19 +0100 | [diff] [blame] | 2909 | return t; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2910 | } |
| 2911 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2912 | static int h1_wake(struct connection *conn) |
| 2913 | { |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 2914 | struct h1c *h1c = conn->ctx; |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 2915 | int ret; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2916 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2917 | TRACE_POINT(H1_EV_H1C_WAKE, conn); |
| 2918 | |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 2919 | h1_send(h1c); |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 2920 | ret = h1_process(h1c); |
| 2921 | if (ret == 0) { |
| 2922 | struct h1s *h1s = h1c->h1s; |
| 2923 | |
Christopher Faulet | ad4daf6 | 2021-01-21 17:49:01 +0100 | [diff] [blame] | 2924 | if (h1c->flags & H1C_F_ST_ATTACHED) |
| 2925 | h1_alert(h1s); |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 2926 | } |
| 2927 | return ret; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2928 | } |
| 2929 | |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 2930 | /* Connection timeout management. The principle is that if there's no receipt |
| 2931 | * nor sending for a certain amount of time, the connection is closed. |
| 2932 | */ |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 2933 | struct task *h1_timeout_task(struct task *t, void *context, unsigned int state) |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 2934 | { |
| 2935 | struct h1c *h1c = context; |
| 2936 | int expired = tick_is_expired(t->expire, now_ms); |
| 2937 | |
Christopher Faulet | c1c66a4 | 2020-09-29 15:30:15 +0200 | [diff] [blame] | 2938 | TRACE_ENTER(H1_EV_H1C_WAKE, h1c ? h1c->conn : NULL); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 2939 | |
Willy Tarreau | 68d4ee9 | 2020-06-30 11:19:23 +0200 | [diff] [blame] | 2940 | if (h1c) { |
Christopher Faulet | c1c66a4 | 2020-09-29 15:30:15 +0200 | [diff] [blame] | 2941 | /* Make sure nobody stole the connection from us */ |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 2942 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Christopher Faulet | c1c66a4 | 2020-09-29 15:30:15 +0200 | [diff] [blame] | 2943 | |
| 2944 | /* Somebody already stole the connection from us, so we should not |
| 2945 | * free it, we just have to free the task. |
| 2946 | */ |
| 2947 | if (!t->context) { |
| 2948 | h1c = NULL; |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 2949 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Christopher Faulet | c1c66a4 | 2020-09-29 15:30:15 +0200 | [diff] [blame] | 2950 | goto do_leave; |
| 2951 | } |
| 2952 | |
Willy Tarreau | 68d4ee9 | 2020-06-30 11:19:23 +0200 | [diff] [blame] | 2953 | if (!expired) { |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 2954 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Christopher Faulet | c1c66a4 | 2020-09-29 15:30:15 +0200 | [diff] [blame] | 2955 | TRACE_DEVEL("leaving (not expired)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s); |
Willy Tarreau | 68d4ee9 | 2020-06-30 11:19:23 +0200 | [diff] [blame] | 2956 | return t; |
| 2957 | } |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 2958 | |
Christopher Faulet | 39c7b6b | 2021-01-21 17:44:35 +0100 | [diff] [blame] | 2959 | /* If a conn-stream is still attached and ready to the mux, wait for the |
Christopher Faulet | c1c66a4 | 2020-09-29 15:30:15 +0200 | [diff] [blame] | 2960 | * stream's timeout |
Willy Tarreau | 68d4ee9 | 2020-06-30 11:19:23 +0200 | [diff] [blame] | 2961 | */ |
Christopher Faulet | 39c7b6b | 2021-01-21 17:44:35 +0100 | [diff] [blame] | 2962 | if (h1c->flags & H1C_F_ST_READY) { |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 2963 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Christopher Faulet | c1c66a4 | 2020-09-29 15:30:15 +0200 | [diff] [blame] | 2964 | t->expire = TICK_ETERNITY; |
| 2965 | TRACE_DEVEL("leaving (CS still attached)", H1_EV_H1C_WAKE, h1c->conn, h1c->h1s); |
| 2966 | return t; |
| 2967 | } |
Olivier Houchard | f12ca9f | 2020-02-20 16:00:18 +0100 | [diff] [blame] | 2968 | |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2969 | /* Try to send an error to the client */ |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 2970 | if (!(h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_ERROR|H1C_F_ERR_PENDING|H1C_F_ST_SHUTDOWN))) { |
| 2971 | h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_ERROR; |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 2972 | TRACE_DEVEL("timeout error detected", H1_EV_H1C_WAKE|H1_EV_H1C_ERR, h1c->conn, h1c->h1s); |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2973 | if (h1_handle_req_tout(h1c)) |
| 2974 | h1_send(h1c); |
| 2975 | if (b_data(&h1c->obuf) || (h1c->flags & H1C_F_ERR_PENDING)) { |
| 2976 | h1_refresh_timeout(h1c); |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 2977 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 2978 | return t; |
| 2979 | } |
| 2980 | } |
| 2981 | |
Christopher Faulet | 0f9395d | 2021-01-21 17:50:19 +0100 | [diff] [blame] | 2982 | if (h1c->flags & H1C_F_ST_ATTACHED) { |
Ilya Shipitsin | acf8459 | 2021-02-06 22:29:08 +0500 | [diff] [blame] | 2983 | /* Don't release the H1 connection right now, we must destroy the |
Christopher Faulet | 0f9395d | 2021-01-21 17:50:19 +0100 | [diff] [blame] | 2984 | * attached CS first. Here, the H1C must not be READY */ |
| 2985 | h1c->h1s->cs->flags |= (CS_FL_EOS|CS_FL_ERROR); |
| 2986 | h1_alert(h1c->h1s); |
| 2987 | h1_refresh_timeout(h1c); |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 2988 | HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conns[tid].idle_conns_lock); |
Christopher Faulet | 0f9395d | 2021-01-21 17:50:19 +0100 | [diff] [blame] | 2989 | TRACE_DEVEL("waiting to release the CS before releasing the connection", H1_EV_H1C_WAKE); |
| 2990 | return t; |
| 2991 | } |
| 2992 | |
Christopher Faulet | c1c66a4 | 2020-09-29 15:30:15 +0200 | [diff] [blame] | 2993 | /* We're about to destroy the connection, so make sure nobody attempts |
| 2994 | * to steal it from us. |
Willy Tarreau | 68d4ee9 | 2020-06-30 11:19:23 +0200 | [diff] [blame] | 2995 | */ |
Christopher Faulet | c1c66a4 | 2020-09-29 15:30:15 +0200 | [diff] [blame] | 2996 | if (h1c->conn->flags & CO_FL_LIST_MASK) |
Amaury Denoyelle | 8990b01 | 2021-02-19 15:29:16 +0100 | [diff] [blame] | 2997 | conn_delete_from_tree(&h1c->conn->hash_node->node); |
Olivier Houchard | f12ca9f | 2020-02-20 16:00:18 +0100 | [diff] [blame] | 2998 | |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 2999 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Willy Tarreau | 68d4ee9 | 2020-06-30 11:19:23 +0200 | [diff] [blame] | 3000 | } |
Olivier Houchard | f12ca9f | 2020-02-20 16:00:18 +0100 | [diff] [blame] | 3001 | |
Christopher Faulet | c1c66a4 | 2020-09-29 15:30:15 +0200 | [diff] [blame] | 3002 | do_leave: |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 3003 | task_destroy(t); |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 3004 | |
| 3005 | if (!h1c) { |
| 3006 | /* resources were already deleted */ |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3007 | TRACE_DEVEL("leaving (not more h1c)", H1_EV_H1C_WAKE); |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 3008 | return NULL; |
| 3009 | } |
| 3010 | |
| 3011 | h1c->task = NULL; |
Christopher Faulet | c1c66a4 | 2020-09-29 15:30:15 +0200 | [diff] [blame] | 3012 | h1_release(h1c); |
| 3013 | TRACE_LEAVE(H1_EV_H1C_WAKE); |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 3014 | return NULL; |
| 3015 | } |
| 3016 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3017 | /*******************************************/ |
| 3018 | /* functions below are used by the streams */ |
| 3019 | /*******************************************/ |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 3020 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3021 | /* |
| 3022 | * Attach a new stream to a connection |
| 3023 | * (Used for outgoing connections) |
| 3024 | */ |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 3025 | static struct conn_stream *h1_attach(struct connection *conn, struct session *sess) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3026 | { |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 3027 | struct h1c *h1c = conn->ctx; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3028 | struct conn_stream *cs = NULL; |
| 3029 | struct h1s *h1s; |
| 3030 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3031 | TRACE_ENTER(H1_EV_STRM_NEW, conn); |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 3032 | if (h1c->flags & H1C_F_ST_ERROR) { |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 3033 | TRACE_ERROR("h1c on error", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn); |
| 3034 | goto err; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3035 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3036 | |
Christopher Faulet | 236c93b | 2020-07-02 09:19:54 +0200 | [diff] [blame] | 3037 | cs = cs_new(h1c->conn, h1c->conn->target); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3038 | if (!cs) { |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 3039 | TRACE_ERROR("CS allocation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn); |
| 3040 | goto err; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3041 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3042 | |
Christopher Faulet | 2f0ec66 | 2020-09-24 10:30:15 +0200 | [diff] [blame] | 3043 | h1s = h1c_bck_stream_new(h1c, cs, sess); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3044 | if (h1s == NULL) { |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 3045 | TRACE_ERROR("h1s creation failure", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn); |
| 3046 | goto err; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3047 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3048 | |
Willy Tarreau | e388f2f | 2021-03-02 16:51:09 +0100 | [diff] [blame] | 3049 | /* the connection is not idle anymore, let's mark this */ |
| 3050 | HA_ATOMIC_AND(&h1c->wait_event.tasklet->state, ~TASK_F_USR1); |
Willy Tarreau | 4f8cd43 | 2021-03-02 17:27:58 +0100 | [diff] [blame] | 3051 | xprt_set_used(conn, conn->xprt, conn->xprt_ctx); |
Willy Tarreau | e388f2f | 2021-03-02 16:51:09 +0100 | [diff] [blame] | 3052 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3053 | TRACE_LEAVE(H1_EV_STRM_NEW, conn, h1s); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3054 | return cs; |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 3055 | err: |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3056 | cs_free(cs); |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 3057 | TRACE_DEVEL("leaving on error", H1_EV_STRM_NEW|H1_EV_STRM_END|H1_EV_STRM_ERR, conn); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3058 | return NULL; |
| 3059 | } |
| 3060 | |
| 3061 | /* Retrieves a valid conn_stream from this connection, or returns NULL. For |
| 3062 | * this mux, it's easy as we can only store a single conn_stream. |
| 3063 | */ |
| 3064 | static const struct conn_stream *h1_get_first_cs(const struct connection *conn) |
| 3065 | { |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 3066 | struct h1c *h1c = conn->ctx; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3067 | struct h1s *h1s = h1c->h1s; |
| 3068 | |
| 3069 | if (h1s) |
| 3070 | return h1s->cs; |
| 3071 | |
| 3072 | return NULL; |
| 3073 | } |
| 3074 | |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 3075 | static void h1_destroy(void *ctx) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3076 | { |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 3077 | struct h1c *h1c = ctx; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3078 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3079 | TRACE_POINT(H1_EV_H1C_END, h1c->conn); |
Christopher Faulet | 39a96ee | 2019-04-08 10:52:21 +0200 | [diff] [blame] | 3080 | if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c) |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 3081 | h1_release(h1c); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3082 | } |
| 3083 | |
| 3084 | /* |
| 3085 | * Detach the stream from the connection and possibly release the connection. |
| 3086 | */ |
| 3087 | static void h1_detach(struct conn_stream *cs) |
| 3088 | { |
| 3089 | struct h1s *h1s = cs->ctx; |
| 3090 | struct h1c *h1c; |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 3091 | struct session *sess; |
Olivier Houchard | 8a78690 | 2018-12-15 16:05:40 +0100 | [diff] [blame] | 3092 | int is_not_first; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3093 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3094 | TRACE_ENTER(H1_EV_STRM_END, h1s ? h1s->h1c->conn : NULL, h1s); |
| 3095 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3096 | cs->ctx = NULL; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3097 | if (!h1s) { |
| 3098 | TRACE_LEAVE(H1_EV_STRM_END); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3099 | return; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3100 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3101 | |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 3102 | sess = h1s->sess; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3103 | h1c = h1s->h1c; |
| 3104 | h1s->cs = NULL; |
| 3105 | |
Christopher Faulet | 42849b0 | 2020-10-05 11:35:17 +0200 | [diff] [blame] | 3106 | sess->accept_date = date; |
| 3107 | sess->tv_accept = now; |
| 3108 | sess->t_handshake = 0; |
| 3109 | sess->t_idle = -1; |
| 3110 | |
Olivier Houchard | 8a78690 | 2018-12-15 16:05:40 +0100 | [diff] [blame] | 3111 | is_not_first = h1s->flags & H1S_F_NOT_FIRST; |
| 3112 | h1s_destroy(h1s); |
| 3113 | |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 3114 | if ((h1c->flags & (H1C_F_IS_BACK|H1C_F_ST_IDLE)) == (H1C_F_IS_BACK|H1C_F_ST_IDLE)) { |
Christopher Faulet | f1204b8 | 2019-07-19 14:51:06 +0200 | [diff] [blame] | 3115 | /* If there are any excess server data in the input buffer, |
| 3116 | * release it and close the connection ASAP (some data may |
| 3117 | * remain in the output buffer). This happens if a server sends |
| 3118 | * invalid responses. So in such case, we don't want to reuse |
| 3119 | * the connection |
Christopher Faulet | 0362724 | 2019-07-19 11:34:08 +0200 | [diff] [blame] | 3120 | */ |
Christopher Faulet | f1204b8 | 2019-07-19 14:51:06 +0200 | [diff] [blame] | 3121 | if (b_data(&h1c->ibuf)) { |
| 3122 | h1_release_buf(h1c, &h1c->ibuf); |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 3123 | h1c->flags = (h1c->flags & ~H1C_F_ST_IDLE) | H1C_F_ST_SHUTDOWN; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3124 | TRACE_DEVEL("remaining data on detach, kill connection", H1_EV_STRM_END|H1_EV_H1C_END); |
Christopher Faulet | f1204b8 | 2019-07-19 14:51:06 +0200 | [diff] [blame] | 3125 | goto release; |
| 3126 | } |
Christopher Faulet | 0362724 | 2019-07-19 11:34:08 +0200 | [diff] [blame] | 3127 | |
Christopher Faulet | 08016ab | 2020-07-01 16:10:06 +0200 | [diff] [blame] | 3128 | if (h1c->conn->flags & CO_FL_PRIVATE) { |
| 3129 | /* Add the connection in the session server list, if not already done */ |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 3130 | if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) { |
| 3131 | h1c->conn->owner = NULL; |
Olivier Houchard | 2444aa5 | 2020-01-20 13:56:01 +0100 | [diff] [blame] | 3132 | h1c->conn->mux->destroy(h1c); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3133 | goto end; |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 3134 | } |
Christopher Faulet | 08016ab | 2020-07-01 16:10:06 +0200 | [diff] [blame] | 3135 | /* Always idle at this step */ |
Olivier Houchard | 2444aa5 | 2020-01-20 13:56:01 +0100 | [diff] [blame] | 3136 | if (session_check_idle_conn(sess, h1c->conn)) { |
Olivier Houchard | a4d4fdf | 2018-12-14 19:27:06 +0100 | [diff] [blame] | 3137 | /* The connection got destroyed, let's leave */ |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3138 | TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END); |
| 3139 | goto end; |
| 3140 | } |
Olivier Houchard | a4d4fdf | 2018-12-14 19:27:06 +0100 | [diff] [blame] | 3141 | } |
Christopher Faulet | 08016ab | 2020-07-01 16:10:06 +0200 | [diff] [blame] | 3142 | else { |
Olivier Houchard | 2444aa5 | 2020-01-20 13:56:01 +0100 | [diff] [blame] | 3143 | if (h1c->conn->owner == sess) |
| 3144 | h1c->conn->owner = NULL; |
Willy Tarreau | e388f2f | 2021-03-02 16:51:09 +0100 | [diff] [blame] | 3145 | |
| 3146 | /* mark that the tasklet may lose its context to another thread and |
| 3147 | * that the handler needs to check it under the idle conns lock. |
| 3148 | */ |
| 3149 | HA_ATOMIC_OR(&h1c->wait_event.tasklet->state, TASK_F_USR1); |
Olivier Houchard | 3c49c1b | 2020-03-22 19:56:03 +0100 | [diff] [blame] | 3150 | h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event); |
Willy Tarreau | 4f8cd43 | 2021-03-02 17:27:58 +0100 | [diff] [blame] | 3151 | xprt_set_idle(h1c->conn, h1c->conn->xprt, h1c->conn->xprt_ctx); |
| 3152 | |
Olivier Houchard | dc2f275 | 2020-02-13 19:12:07 +0100 | [diff] [blame] | 3153 | if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn, is_not_first)) { |
Olivier Houchard | 2444aa5 | 2020-01-20 13:56:01 +0100 | [diff] [blame] | 3154 | /* The server doesn't want it, let's kill the connection right away */ |
| 3155 | h1c->conn->mux->destroy(h1c); |
| 3156 | TRACE_DEVEL("outgoing connection killed", H1_EV_STRM_END|H1_EV_H1C_END); |
| 3157 | goto end; |
Christopher Faulet | 9400a39 | 2018-11-23 23:10:39 +0100 | [diff] [blame] | 3158 | } |
Olivier Houchard | 199d4fa | 2020-03-22 23:25:51 +0100 | [diff] [blame] | 3159 | /* At this point, the connection has been added to the |
| 3160 | * server idle list, so another thread may already have |
| 3161 | * hijacked it, so we can't do anything with it. |
| 3162 | */ |
Olivier Houchard | 2444aa5 | 2020-01-20 13:56:01 +0100 | [diff] [blame] | 3163 | return; |
Christopher Faulet | 9400a39 | 2018-11-23 23:10:39 +0100 | [diff] [blame] | 3164 | } |
| 3165 | } |
| 3166 | |
Christopher Faulet | f1204b8 | 2019-07-19 14:51:06 +0200 | [diff] [blame] | 3167 | release: |
Christopher Faulet | 3ac0f43 | 2019-06-28 17:41:42 +0200 | [diff] [blame] | 3168 | /* We don't want to close right now unless the connection is in error or shut down for writes */ |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 3169 | if ((h1c->flags & H1C_F_ST_ERROR) || |
Christopher Faulet | 37243bc | 2019-07-11 15:40:25 +0200 | [diff] [blame] | 3170 | (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) || |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 3171 | ((h1c->flags & H1C_F_ST_SHUTDOWN) && !b_data(&h1c->obuf)) || |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3172 | !h1c->conn->owner) { |
| 3173 | TRACE_DEVEL("killing dead connection", H1_EV_STRM_END, h1c->conn); |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 3174 | h1_release(h1c); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3175 | } |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 3176 | else { |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 3177 | if (h1c->flags & H1C_F_ST_IDLE) { |
Christopher Faulet | 5d3c93c | 2020-10-05 17:14:28 +0200 | [diff] [blame] | 3178 | /* If we have a new request, process it immediately or |
| 3179 | * subscribe for reads waiting for new data |
| 3180 | */ |
Christopher Faulet | 0c366a8 | 2020-12-18 15:13:47 +0100 | [diff] [blame] | 3181 | if (unlikely(b_data(&h1c->ibuf))) { |
| 3182 | if (h1_process(h1c) == -1) |
| 3183 | goto end; |
| 3184 | } |
Christopher Faulet | 5d3c93c | 2020-10-05 17:14:28 +0200 | [diff] [blame] | 3185 | else |
| 3186 | h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event); |
| 3187 | } |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 3188 | h1_set_idle_expiration(h1c); |
Christopher Faulet | 7a145d6 | 2020-08-05 11:31:16 +0200 | [diff] [blame] | 3189 | h1_refresh_timeout(h1c); |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 3190 | } |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3191 | end: |
| 3192 | TRACE_LEAVE(H1_EV_STRM_END); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3193 | } |
| 3194 | |
| 3195 | |
| 3196 | static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode) |
| 3197 | { |
| 3198 | struct h1s *h1s = cs->ctx; |
Christopher Faulet | 7f36636 | 2019-04-08 10:51:20 +0200 | [diff] [blame] | 3199 | struct h1c *h1c; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3200 | |
| 3201 | if (!h1s) |
| 3202 | return; |
Christopher Faulet | 7f36636 | 2019-04-08 10:51:20 +0200 | [diff] [blame] | 3203 | h1c = h1s->h1c; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3204 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3205 | TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s); |
| 3206 | |
Christopher Faulet | 3c82d8b | 2020-10-05 17:11:16 +0200 | [diff] [blame] | 3207 | if (cs->flags & CS_FL_SHR) |
| 3208 | goto end; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3209 | if (cs->flags & CS_FL_KILL_CONN) { |
| 3210 | TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s); |
| 3211 | goto do_shutr; |
| 3212 | } |
| 3213 | if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) { |
| 3214 | TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s); |
Christopher Faulet | 7f36636 | 2019-04-08 10:51:20 +0200 | [diff] [blame] | 3215 | goto do_shutr; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3216 | } |
Christopher Faulet | 7f36636 | 2019-04-08 10:51:20 +0200 | [diff] [blame] | 3217 | |
Christopher Faulet | 39c7b6b | 2021-01-21 17:44:35 +0100 | [diff] [blame] | 3218 | if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) { |
| 3219 | /* Here attached is implicit because there is CS */ |
| 3220 | TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s); |
| 3221 | goto end; |
| 3222 | } |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 3223 | if (h1s->flags & H1S_F_WANT_KAL) { |
| 3224 | TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3225 | goto end; |
| 3226 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 3227 | |
Christopher Faulet | 7f36636 | 2019-04-08 10:51:20 +0200 | [diff] [blame] | 3228 | do_shutr: |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3229 | /* NOTE: Be sure to handle abort (cf. h2_shutr) */ |
| 3230 | if (cs->flags & CS_FL_SHR) |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3231 | goto end; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3232 | if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 3233 | cs->conn->xprt->shutr(cs->conn, cs->conn->xprt_ctx, |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3234 | (mode == CS_SHR_DRAIN)); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3235 | end: |
| 3236 | TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3237 | } |
| 3238 | |
| 3239 | static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode) |
| 3240 | { |
| 3241 | struct h1s *h1s = cs->ctx; |
| 3242 | struct h1c *h1c; |
| 3243 | |
| 3244 | if (!h1s) |
| 3245 | return; |
| 3246 | h1c = h1s->h1c; |
| 3247 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3248 | TRACE_ENTER(H1_EV_STRM_SHUT, h1c->conn, h1s); |
| 3249 | |
Christopher Faulet | 3c82d8b | 2020-10-05 17:11:16 +0200 | [diff] [blame] | 3250 | if (cs->flags & CS_FL_SHW) |
| 3251 | goto end; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3252 | if (cs->flags & CS_FL_KILL_CONN) { |
| 3253 | TRACE_STATE("stream wants to kill the connection", H1_EV_STRM_SHUT, h1c->conn, h1s); |
Christopher Faulet | 7f36636 | 2019-04-08 10:51:20 +0200 | [diff] [blame] | 3254 | goto do_shutw; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3255 | } |
| 3256 | if (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) { |
| 3257 | TRACE_STATE("shutdown on connection (error|rd_sh|wr_sh)", H1_EV_STRM_SHUT, h1c->conn, h1s); |
| 3258 | goto do_shutw; |
| 3259 | } |
Olivier Houchard | d2e88c7 | 2018-12-19 15:55:23 +0100 | [diff] [blame] | 3260 | |
Christopher Faulet | 39c7b6b | 2021-01-21 17:44:35 +0100 | [diff] [blame] | 3261 | if (!(h1c->flags & (H1C_F_ST_READY|H1C_F_ST_ERROR))) { |
| 3262 | /* Here attached is implicit because there is CS */ |
| 3263 | TRACE_STATE("keep connection alive (ALIVE but not READY nor ERROR)", H1_EV_STRM_SHUT, h1c->conn, h1s); |
| 3264 | goto end; |
| 3265 | } |
Christopher Faulet | c4bfa59 | 2020-10-06 17:45:34 +0200 | [diff] [blame] | 3266 | if (((h1s->flags & H1S_F_WANT_KAL) && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)) { |
| 3267 | TRACE_STATE("keep connection alive (want_kal)", H1_EV_STRM_SHUT, h1c->conn, h1s); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3268 | goto end; |
| 3269 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 3270 | |
Christopher Faulet | 7f36636 | 2019-04-08 10:51:20 +0200 | [diff] [blame] | 3271 | do_shutw: |
Christopher Faulet | 3ced1d1 | 2020-11-27 16:44:01 +0100 | [diff] [blame] | 3272 | h1c->flags |= H1C_F_ST_SHUTDOWN; |
Christopher Faulet | 3c82d8b | 2020-10-05 17:11:16 +0200 | [diff] [blame] | 3273 | if (!b_data(&h1c->obuf)) |
| 3274 | h1_shutw_conn(cs->conn, mode); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3275 | end: |
| 3276 | TRACE_LEAVE(H1_EV_STRM_SHUT, h1c->conn, h1s); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3277 | } |
| 3278 | |
Christopher Faulet | 666a0c4 | 2019-01-08 11:12:04 +0100 | [diff] [blame] | 3279 | static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3280 | { |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 3281 | struct h1c *h1c = conn->ctx; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3282 | |
Willy Tarreau | 62592ad | 2021-03-26 09:09:42 +0100 | [diff] [blame] | 3283 | if (conn->flags & CO_FL_SOCK_WR_SH) |
| 3284 | return; |
| 3285 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3286 | TRACE_ENTER(H1_EV_STRM_SHUT, conn, h1c->h1s); |
Christopher Faulet | 666a0c4 | 2019-01-08 11:12:04 +0100 | [diff] [blame] | 3287 | conn_xprt_shutw(conn); |
| 3288 | conn_sock_shutw(conn, (mode == CS_SHW_NORMAL)); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3289 | TRACE_LEAVE(H1_EV_STRM_SHUT, conn, h1c->h1s); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3290 | } |
| 3291 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 3292 | /* Called from the upper layer, to unsubscribe <es> from events <event_type> |
| 3293 | * The <es> pointer is not allowed to differ from the one passed to the |
| 3294 | * subscribe() call. It always returns zero. |
| 3295 | */ |
| 3296 | static int h1_unsubscribe(struct conn_stream *cs, int event_type, struct wait_event *es) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3297 | { |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3298 | struct h1s *h1s = cs->ctx; |
| 3299 | |
| 3300 | if (!h1s) |
| 3301 | return 0; |
| 3302 | |
Willy Tarreau | 1b0d4d1 | 2020-01-16 11:03:19 +0100 | [diff] [blame] | 3303 | BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV)); |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 3304 | BUG_ON(h1s->subs && h1s->subs != es); |
Willy Tarreau | 1b0d4d1 | 2020-01-16 11:03:19 +0100 | [diff] [blame] | 3305 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 3306 | es->events &= ~event_type; |
| 3307 | if (!es->events) |
Willy Tarreau | 1b0d4d1 | 2020-01-16 11:03:19 +0100 | [diff] [blame] | 3308 | h1s->subs = NULL; |
| 3309 | |
| 3310 | if (event_type & SUB_RETRY_RECV) |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3311 | TRACE_DEVEL("unsubscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s); |
Willy Tarreau | 1b0d4d1 | 2020-01-16 11:03:19 +0100 | [diff] [blame] | 3312 | |
| 3313 | if (event_type & SUB_RETRY_SEND) |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3314 | TRACE_DEVEL("unsubscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s); |
Willy Tarreau | 1b0d4d1 | 2020-01-16 11:03:19 +0100 | [diff] [blame] | 3315 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3316 | return 0; |
| 3317 | } |
| 3318 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 3319 | /* Called from the upper layer, to subscribe <es> to events <event_type>. The |
| 3320 | * event subscriber <es> is not allowed to change from a previous call as long |
| 3321 | * as at least one event is still subscribed. The <event_type> must only be a |
| 3322 | * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, unless |
| 3323 | * the conn_stream <cs> was already detached, in which case it will return -1. |
| 3324 | */ |
| 3325 | static int h1_subscribe(struct conn_stream *cs, int event_type, struct wait_event *es) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3326 | { |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3327 | struct h1s *h1s = cs->ctx; |
Christopher Faulet | 51bb185 | 2019-09-04 10:22:34 +0200 | [diff] [blame] | 3328 | struct h1c *h1c; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3329 | |
| 3330 | if (!h1s) |
| 3331 | return -1; |
| 3332 | |
Willy Tarreau | 1b0d4d1 | 2020-01-16 11:03:19 +0100 | [diff] [blame] | 3333 | BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV)); |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 3334 | BUG_ON(h1s->subs && h1s->subs != es); |
Willy Tarreau | 1b0d4d1 | 2020-01-16 11:03:19 +0100 | [diff] [blame] | 3335 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 3336 | es->events |= event_type; |
| 3337 | h1s->subs = es; |
Willy Tarreau | 1b0d4d1 | 2020-01-16 11:03:19 +0100 | [diff] [blame] | 3338 | |
| 3339 | if (event_type & SUB_RETRY_RECV) |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3340 | TRACE_DEVEL("subscribe(recv)", H1_EV_STRM_RECV, h1s->h1c->conn, h1s); |
Willy Tarreau | 1b0d4d1 | 2020-01-16 11:03:19 +0100 | [diff] [blame] | 3341 | |
| 3342 | |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3343 | if (event_type & SUB_RETRY_SEND) { |
| 3344 | TRACE_DEVEL("subscribe(send)", H1_EV_STRM_SEND, h1s->h1c->conn, h1s); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3345 | /* |
| 3346 | * If the conn_stream attempt to subscribe, and the |
| 3347 | * mux isn't subscribed to the connection, then it |
| 3348 | * probably means the connection wasn't established |
| 3349 | * yet, so we have to subscribe. |
| 3350 | */ |
| 3351 | h1c = h1s->h1c; |
| 3352 | if (!(h1c->wait_event.events & SUB_RETRY_SEND)) |
| 3353 | h1c->conn->xprt->subscribe(h1c->conn, |
| 3354 | h1c->conn->xprt_ctx, |
| 3355 | SUB_RETRY_SEND, |
| 3356 | &h1c->wait_event); |
| 3357 | } |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3358 | return 0; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3359 | } |
| 3360 | |
Christopher Faulet | 564e39c | 2021-09-21 15:50:55 +0200 | [diff] [blame] | 3361 | /* Called from the upper layer, to receive data. |
| 3362 | * |
| 3363 | * The caller is responsible for defragmenting <buf> if necessary. But <flags> |
| 3364 | * must be tested to know the calling context. If CO_RFL_BUF_FLUSH is set, it |
| 3365 | * means the caller wants to flush input data (from the mux buffer and the |
| 3366 | * channel buffer) to be able to use kernel splicing or any kind of mux-to-mux |
| 3367 | * xfer. If CO_RFL_KEEP_RECV is set, the mux must always subscribe for read |
| 3368 | * events before giving back. CO_RFL_BUF_WET is set if <buf> is congested with |
| 3369 | * data scheduled for leaving soon. CO_RFL_BUF_NOT_STUCK is set to instruct the |
| 3370 | * mux it may optimize the data copy to <buf> if necessary. Otherwise, it should |
| 3371 | * copy as much data as possible. |
| 3372 | */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3373 | static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags) |
| 3374 | { |
| 3375 | struct h1s *h1s = cs->ctx; |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 3376 | struct h1c *h1c = h1s->h1c; |
Christopher Faulet | 0a799aa | 2020-09-24 09:52:52 +0200 | [diff] [blame] | 3377 | struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3378 | size_t ret = 0; |
| 3379 | |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 3380 | TRACE_ENTER(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){count}); |
Christopher Faulet | 39c7b6b | 2021-01-21 17:44:35 +0100 | [diff] [blame] | 3381 | |
| 3382 | /* Do nothing for now if not READY */ |
| 3383 | if (!(h1c->flags & H1C_F_ST_READY)) { |
| 3384 | TRACE_DEVEL("h1c not ready yet", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn); |
| 3385 | goto end; |
| 3386 | } |
| 3387 | |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 3388 | if (!(h1c->flags & H1C_F_IN_ALLOC)) |
Christopher Faulet | 44c0dcf | 2021-02-16 18:32:08 +0100 | [diff] [blame] | 3389 | ret = h1_process_demux(h1c, buf, count); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3390 | else |
| 3391 | TRACE_DEVEL("h1c ibuf not allocated", H1_EV_H1C_RECV|H1_EV_H1C_BLK, h1c->conn); |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 3392 | |
Christopher Faulet | 2b861bf | 2021-04-06 17:24:39 +0200 | [diff] [blame] | 3393 | if ((flags & CO_RFL_BUF_FLUSH) && (cs->flags & CS_FL_MAY_SPLICE)) { |
| 3394 | h1c->flags |= H1C_F_WANT_SPLICE; |
| 3395 | TRACE_STATE("Block xprt rcv_buf to flush stream's buffer (want_splice)", H1_EV_STRM_RECV, h1c->conn, h1s); |
Christopher Faulet | e18777b | 2019-04-16 16:46:36 +0200 | [diff] [blame] | 3396 | } |
Olivier Houchard | 02bac85 | 2019-08-22 18:34:25 +0200 | [diff] [blame] | 3397 | else { |
Christopher Faulet | 1baef15 | 2021-04-08 18:42:59 +0200 | [diff] [blame] | 3398 | if (((flags & CO_RFL_KEEP_RECV) || (h1m->state != H1_MSG_DONE)) && !(h1c->wait_event.events & SUB_RETRY_RECV)) |
Willy Tarreau | 2c1f37d | 2020-03-04 17:50:02 +0100 | [diff] [blame] | 3399 | h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3400 | } |
Christopher Faulet | 39c7b6b | 2021-01-21 17:44:35 +0100 | [diff] [blame] | 3401 | |
| 3402 | end: |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 3403 | TRACE_LEAVE(H1_EV_STRM_RECV, h1c->conn, h1s, 0, (size_t[]){ret}); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3404 | return ret; |
| 3405 | } |
| 3406 | |
| 3407 | |
| 3408 | /* Called from the upper layer, to send data */ |
| 3409 | static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags) |
| 3410 | { |
| 3411 | struct h1s *h1s = cs->ctx; |
| 3412 | struct h1c *h1c; |
Christopher Faulet | 5d37dac | 2018-11-22 10:58:42 +0100 | [diff] [blame] | 3413 | size_t total = 0; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3414 | |
| 3415 | if (!h1s) |
Christopher Faulet | 5d37dac | 2018-11-22 10:58:42 +0100 | [diff] [blame] | 3416 | return 0; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3417 | h1c = h1s->h1c; |
Olivier Houchard | 305d5ab | 2019-07-24 18:07:06 +0200 | [diff] [blame] | 3418 | |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 3419 | TRACE_ENTER(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){count}); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3420 | |
Olivier Houchard | 305d5ab | 2019-07-24 18:07:06 +0200 | [diff] [blame] | 3421 | /* If we're not connected yet, or we're waiting for a handshake, stop |
| 3422 | * now, as we don't want to remove everything from the channel buffer |
| 3423 | * before we're sure we can send it. |
| 3424 | */ |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 3425 | if (h1c->conn->flags & CO_FL_WAIT_XPRT) { |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3426 | TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s); |
Christopher Faulet | 3b88b8d | 2018-10-26 17:36:03 +0200 | [diff] [blame] | 3427 | return 0; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3428 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3429 | |
Christopher Faulet | dea2474 | 2021-01-22 15:12:30 +0100 | [diff] [blame] | 3430 | if (h1c->flags & H1C_F_ST_ERROR) { |
| 3431 | cs->flags |= CS_FL_ERROR; |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 3432 | TRACE_ERROR("H1C on error, leaving in error", H1_EV_STRM_SEND|H1_EV_H1C_ERR|H1_EV_H1S_ERR|H1_EV_STRM_ERR, h1c->conn, h1s); |
Christopher Faulet | dea2474 | 2021-01-22 15:12:30 +0100 | [diff] [blame] | 3433 | return 0; |
| 3434 | } |
| 3435 | |
Christopher Faulet | 4623036 | 2019-10-17 16:04:20 +0200 | [diff] [blame] | 3436 | /* Inherit some flags from the upper layer */ |
| 3437 | h1c->flags &= ~(H1C_F_CO_MSG_MORE|H1C_F_CO_STREAMER); |
| 3438 | if (flags & CO_SFL_MSG_MORE) |
| 3439 | h1c->flags |= H1C_F_CO_MSG_MORE; |
| 3440 | if (flags & CO_SFL_STREAMER) |
| 3441 | h1c->flags |= H1C_F_CO_STREAMER; |
| 3442 | |
Christopher Faulet | c31872f | 2019-06-04 22:09:36 +0200 | [diff] [blame] | 3443 | while (count) { |
Christopher Faulet | 5d37dac | 2018-11-22 10:58:42 +0100 | [diff] [blame] | 3444 | size_t ret = 0; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3445 | |
Christopher Faulet | 5d37dac | 2018-11-22 10:58:42 +0100 | [diff] [blame] | 3446 | if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC))) |
Christopher Faulet | 44c0dcf | 2021-02-16 18:32:08 +0100 | [diff] [blame] | 3447 | ret = h1_process_mux(h1c, buf, count); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3448 | else |
| 3449 | TRACE_DEVEL("h1c obuf not allocated", H1_EV_STRM_SEND|H1_EV_H1S_BLK, h1c->conn, h1s); |
Olivier Houchard | c89a42f | 2020-06-19 16:15:05 +0200 | [diff] [blame] | 3450 | |
| 3451 | if ((count - ret) > 0) |
| 3452 | h1c->flags |= H1C_F_CO_MSG_MORE; |
| 3453 | |
Christopher Faulet | 5d37dac | 2018-11-22 10:58:42 +0100 | [diff] [blame] | 3454 | if (!ret) |
| 3455 | break; |
| 3456 | total += ret; |
Christopher Faulet | c31872f | 2019-06-04 22:09:36 +0200 | [diff] [blame] | 3457 | count -= ret; |
Olivier Houchard | 68787ef | 2020-01-15 19:13:32 +0100 | [diff] [blame] | 3458 | if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c)) |
Christopher Faulet | 5d37dac | 2018-11-22 10:58:42 +0100 | [diff] [blame] | 3459 | break; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3460 | } |
Christopher Faulet | dea2474 | 2021-01-22 15:12:30 +0100 | [diff] [blame] | 3461 | |
| 3462 | if (h1c->flags & H1C_F_ST_ERROR) { |
Christopher Faulet | dea2474 | 2021-01-22 15:12:30 +0100 | [diff] [blame] | 3463 | cs->flags |= CS_FL_ERROR; |
Christopher Faulet | 26a2643 | 2021-01-27 11:27:50 +0100 | [diff] [blame] | 3464 | TRACE_ERROR("reporting error to the app-layer stream", H1_EV_STRM_SEND|H1_EV_H1S_ERR|H1_EV_STRM_ERR, h1c->conn, h1s); |
Christopher Faulet | dea2474 | 2021-01-22 15:12:30 +0100 | [diff] [blame] | 3465 | } |
| 3466 | |
Christopher Faulet | 7a145d6 | 2020-08-05 11:31:16 +0200 | [diff] [blame] | 3467 | h1_refresh_timeout(h1c); |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 3468 | TRACE_LEAVE(H1_EV_STRM_SEND, h1c->conn, h1s, 0, (size_t[]){total}); |
Christopher Faulet | 5d37dac | 2018-11-22 10:58:42 +0100 | [diff] [blame] | 3469 | return total; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3470 | } |
| 3471 | |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 3472 | #if defined(USE_LINUX_SPLICE) |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 3473 | /* Send and get, using splicing */ |
| 3474 | static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count) |
| 3475 | { |
| 3476 | struct h1s *h1s = cs->ctx; |
Christopher Faulet | 0a799aa | 2020-09-24 09:52:52 +0200 | [diff] [blame] | 3477 | struct h1c *h1c = h1s->h1c; |
| 3478 | struct h1m *h1m = (!(h1c->flags & H1C_F_IS_BACK) ? &h1s->req : &h1s->res); |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 3479 | int ret = 0; |
| 3480 | |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 3481 | TRACE_ENTER(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){count}); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3482 | |
Christopher Faulet | 9fa40c4 | 2019-11-05 16:24:27 +0100 | [diff] [blame] | 3483 | if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) { |
Christopher Faulet | 0a799aa | 2020-09-24 09:52:52 +0200 | [diff] [blame] | 3484 | h1c->flags &= ~H1C_F_WANT_SPLICE; |
Christopher Faulet | ae63576 | 2020-09-21 11:47:16 +0200 | [diff] [blame] | 3485 | TRACE_STATE("Allow xprt rcv_buf on !(msg_data|msg_tunnel)", H1_EV_STRM_RECV, cs->conn, h1s); |
Christopher Faulet | e18777b | 2019-04-16 16:46:36 +0200 | [diff] [blame] | 3486 | goto end; |
| 3487 | } |
| 3488 | |
Christopher Faulet | cf30756 | 2021-07-26 10:49:39 +0200 | [diff] [blame] | 3489 | h1c->flags |= H1C_F_WANT_SPLICE; |
Willy Tarreau | fbdf90a | 2019-06-03 13:42:54 +0200 | [diff] [blame] | 3490 | if (h1s_data_pending(h1s)) { |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3491 | TRACE_STATE("flush input buffer before splicing", H1_EV_STRM_RECV, cs->conn, h1s); |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 3492 | goto end; |
Christopher Faulet | d44ad5b | 2018-11-19 21:52:12 +0100 | [diff] [blame] | 3493 | } |
| 3494 | |
Christopher Faulet | 0a799aa | 2020-09-24 09:52:52 +0200 | [diff] [blame] | 3495 | if (!h1_recv_allowed(h1c)) { |
Christopher Faulet | 0060be9 | 2020-07-03 15:02:25 +0200 | [diff] [blame] | 3496 | TRACE_DEVEL("leaving on !recv_allowed", H1_EV_STRM_RECV, cs->conn, h1s); |
| 3497 | goto end; |
| 3498 | } |
| 3499 | |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 3500 | if (h1m->state == H1_MSG_DATA && count > h1m->curr_len) |
| 3501 | count = h1m->curr_len; |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 3502 | ret = cs->conn->xprt->rcv_pipe(cs->conn, cs->conn->xprt_ctx, pipe, count); |
Christopher Faulet | 1146f97 | 2019-05-29 14:35:24 +0200 | [diff] [blame] | 3503 | if (h1m->state == H1_MSG_DATA && ret >= 0) { |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 3504 | h1m->curr_len -= ret; |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3505 | if (!h1m->curr_len) { |
Christopher Faulet | 0a799aa | 2020-09-24 09:52:52 +0200 | [diff] [blame] | 3506 | h1c->flags &= ~H1C_F_WANT_SPLICE; |
Christopher Faulet | ae63576 | 2020-09-21 11:47:16 +0200 | [diff] [blame] | 3507 | TRACE_STATE("Allow xprt rcv_buf on !curr_len", H1_EV_STRM_RECV, cs->conn, h1s); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3508 | } |
Christopher Faulet | e18777b | 2019-04-16 16:46:36 +0200 | [diff] [blame] | 3509 | } |
| 3510 | |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 3511 | end: |
Christopher Faulet | 038ad81 | 2019-04-17 11:03:22 +0200 | [diff] [blame] | 3512 | if (conn_xprt_read0_pending(cs->conn)) { |
Willy Tarreau | c493c9c | 2019-06-03 14:18:22 +0200 | [diff] [blame] | 3513 | h1s->flags |= H1S_F_REOS; |
Christopher Faulet | 0a799aa | 2020-09-24 09:52:52 +0200 | [diff] [blame] | 3514 | h1c->flags &= ~H1C_F_WANT_SPLICE; |
Christopher Faulet | ae63576 | 2020-09-21 11:47:16 +0200 | [diff] [blame] | 3515 | TRACE_STATE("Allow xprt rcv_buf on read0", H1_EV_STRM_RECV, cs->conn, h1s); |
Christopher Faulet | 038ad81 | 2019-04-17 11:03:22 +0200 | [diff] [blame] | 3516 | } |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3517 | |
Christopher Faulet | 94d3510 | 2021-04-09 11:58:49 +0200 | [diff] [blame] | 3518 | if (!(h1c->flags & H1C_F_WANT_SPLICE)) { |
Christopher Faulet | 0a799aa | 2020-09-24 09:52:52 +0200 | [diff] [blame] | 3519 | TRACE_STATE("notify the mux can't use splicing anymore", H1_EV_STRM_RECV, h1c->conn, h1s); |
Willy Tarreau | 17ccd1a | 2020-01-17 16:19:34 +0100 | [diff] [blame] | 3520 | cs->flags &= ~CS_FL_MAY_SPLICE; |
Christopher Faulet | 94d3510 | 2021-04-09 11:58:49 +0200 | [diff] [blame] | 3521 | if (!(h1c->wait_event.events & SUB_RETRY_RECV)) { |
| 3522 | TRACE_STATE("restart receiving data, subscribing", H1_EV_STRM_RECV, cs->conn, h1s); |
| 3523 | cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event); |
| 3524 | } |
Christopher Faulet | 2718229 | 2020-07-03 15:08:49 +0200 | [diff] [blame] | 3525 | } |
Willy Tarreau | 17ccd1a | 2020-01-17 16:19:34 +0100 | [diff] [blame] | 3526 | |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 3527 | TRACE_LEAVE(H1_EV_STRM_RECV, cs->conn, h1s, 0, (size_t[]){ret}); |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 3528 | return ret; |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 3529 | } |
| 3530 | |
| 3531 | static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe) |
| 3532 | { |
| 3533 | struct h1s *h1s = cs->ctx; |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 3534 | int ret = 0; |
| 3535 | |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 3536 | TRACE_ENTER(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){pipe->data}); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3537 | |
Christopher Faulet | 8454f2d | 2021-04-06 17:27:32 +0200 | [diff] [blame] | 3538 | if (b_data(&h1s->h1c->obuf)) { |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3539 | if (!(h1s->h1c->wait_event.events & SUB_RETRY_SEND)) { |
| 3540 | TRACE_STATE("more data to send, subscribing", H1_EV_STRM_SEND, cs->conn, h1s); |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 3541 | cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_SEND, &h1s->h1c->wait_event); |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3542 | } |
Christopher Faulet | 8454f2d | 2021-04-06 17:27:32 +0200 | [diff] [blame] | 3543 | goto end; |
Christopher Faulet | d44ad5b | 2018-11-19 21:52:12 +0100 | [diff] [blame] | 3544 | } |
Christopher Faulet | 6b81df7 | 2019-10-01 22:08:43 +0200 | [diff] [blame] | 3545 | |
Christopher Faulet | 8454f2d | 2021-04-06 17:27:32 +0200 | [diff] [blame] | 3546 | ret = cs->conn->xprt->snd_pipe(cs->conn, cs->conn->xprt_ctx, pipe); |
| 3547 | |
| 3548 | end: |
Willy Tarreau | 022e5e5 | 2020-09-10 09:33:15 +0200 | [diff] [blame] | 3549 | TRACE_LEAVE(H1_EV_STRM_SEND, cs->conn, h1s, 0, (size_t[]){ret}); |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 3550 | return ret; |
| 3551 | } |
| 3552 | #endif |
| 3553 | |
Olivier Houchard | 9b8e11e | 2019-10-25 16:19:26 +0200 | [diff] [blame] | 3554 | static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output) |
| 3555 | { |
Christopher Faulet | c18fc23 | 2020-10-06 17:41:36 +0200 | [diff] [blame] | 3556 | const struct h1c *h1c = conn->ctx; |
Olivier Houchard | 9b8e11e | 2019-10-25 16:19:26 +0200 | [diff] [blame] | 3557 | int ret = 0; |
Christopher Faulet | c18fc23 | 2020-10-06 17:41:36 +0200 | [diff] [blame] | 3558 | |
Olivier Houchard | 9b8e11e | 2019-10-25 16:19:26 +0200 | [diff] [blame] | 3559 | switch (mux_ctl) { |
| 3560 | case MUX_STATUS: |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 3561 | if (!(conn->flags & CO_FL_WAIT_XPRT)) |
Olivier Houchard | 9b8e11e | 2019-10-25 16:19:26 +0200 | [diff] [blame] | 3562 | ret |= MUX_STATUS_READY; |
| 3563 | return ret; |
Christopher Faulet | 4c8ad84 | 2020-10-06 14:59:17 +0200 | [diff] [blame] | 3564 | case MUX_EXIT_STATUS: |
Christopher Faulet | 36e46aa | 2021-09-28 11:45:05 +0200 | [diff] [blame] | 3565 | if (output) |
| 3566 | *((int *)output) = h1c->errcode; |
| 3567 | ret = (h1c->errcode == 408 ? MUX_ES_TOUT_ERR : |
| 3568 | (h1c->errcode == 501 ? MUX_ES_NOTIMPL_ERR : |
| 3569 | (h1c->errcode == 500 ? MUX_ES_INTERNAL_ERR : |
| 3570 | ((h1c->errcode >= 400 && h1c->errcode <= 499) ? MUX_ES_INVALID_ERR : |
Christopher Faulet | 2eed800 | 2020-12-07 11:26:13 +0100 | [diff] [blame] | 3571 | MUX_ES_SUCCESS)))); |
Christopher Faulet | c18fc23 | 2020-10-06 17:41:36 +0200 | [diff] [blame] | 3572 | return ret; |
Olivier Houchard | 9b8e11e | 2019-10-25 16:19:26 +0200 | [diff] [blame] | 3573 | default: |
| 3574 | return -1; |
| 3575 | } |
| 3576 | } |
| 3577 | |
Olivier Houchard | a8f6b43 | 2018-12-21 15:20:29 +0100 | [diff] [blame] | 3578 | /* for debugging with CLI's "show fd" command */ |
Willy Tarreau | 8050efe | 2021-01-21 08:26:06 +0100 | [diff] [blame] | 3579 | static int h1_show_fd(struct buffer *msg, struct connection *conn) |
Olivier Houchard | a8f6b43 | 2018-12-21 15:20:29 +0100 | [diff] [blame] | 3580 | { |
| 3581 | struct h1c *h1c = conn->ctx; |
| 3582 | struct h1s *h1s = h1c->h1s; |
Willy Tarreau | 0c0c0a2 | 2021-01-21 09:13:35 +0100 | [diff] [blame] | 3583 | int ret = 0; |
Olivier Houchard | a8f6b43 | 2018-12-21 15:20:29 +0100 | [diff] [blame] | 3584 | |
Christopher Faulet | f376a31 | 2019-01-04 15:16:06 +0100 | [diff] [blame] | 3585 | chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u", |
| 3586 | h1c->flags, h1c->wait_event.events, |
Olivier Houchard | a8f6b43 | 2018-12-21 15:20:29 +0100 | [diff] [blame] | 3587 | (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf), |
| 3588 | (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf), |
| 3589 | (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf), |
| 3590 | (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf)); |
| 3591 | |
| 3592 | if (h1s) { |
| 3593 | char *method; |
| 3594 | |
| 3595 | if (h1s->meth < HTTP_METH_OTHER) |
| 3596 | method = http_known_methods[h1s->meth].ptr; |
| 3597 | else |
| 3598 | method = "UNKNOWN"; |
| 3599 | chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s" |
| 3600 | " .meth=%s status=%d", |
| 3601 | h1s, h1s->flags, |
| 3602 | h1m_state_str(h1s->req.state), |
| 3603 | h1m_state_str(h1s->res.state), method, h1s->status); |
| 3604 | if (h1s->cs) |
| 3605 | chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p", |
| 3606 | h1s->cs->flags, h1s->cs->data); |
Willy Tarreau | 150c4f8 | 2021-01-20 17:05:58 +0100 | [diff] [blame] | 3607 | |
| 3608 | chunk_appendf(&trash, " .subs=%p", h1s->subs); |
| 3609 | if (h1s->subs) { |
Christopher Faulet | 6c93c4e | 2021-02-25 10:06:29 +0100 | [diff] [blame] | 3610 | chunk_appendf(&trash, "(ev=%d tl=%p", h1s->subs->events, h1s->subs->tasklet); |
| 3611 | chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=", |
| 3612 | h1s->subs->tasklet->calls, |
| 3613 | h1s->subs->tasklet->context); |
| 3614 | if (h1s->subs->tasklet->calls >= 1000000) |
| 3615 | ret = 1; |
| 3616 | resolve_sym_name(&trash, NULL, h1s->subs->tasklet->process); |
| 3617 | chunk_appendf(&trash, ")"); |
Willy Tarreau | 150c4f8 | 2021-01-20 17:05:58 +0100 | [diff] [blame] | 3618 | } |
Olivier Houchard | a8f6b43 | 2018-12-21 15:20:29 +0100 | [diff] [blame] | 3619 | } |
Willy Tarreau | 0c0c0a2 | 2021-01-21 09:13:35 +0100 | [diff] [blame] | 3620 | return ret; |
Christopher Faulet | 98fbe95 | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 3621 | } |
| 3622 | |
| 3623 | |
| 3624 | /* Add an entry in the headers map. Returns -1 on error and 0 on success. */ |
| 3625 | static int add_hdr_case_adjust(const char *from, const char *to, char **err) |
| 3626 | { |
| 3627 | struct h1_hdr_entry *entry; |
| 3628 | |
| 3629 | /* Be sure there is a non-empty <to> */ |
| 3630 | if (!strlen(to)) { |
| 3631 | memprintf(err, "expect <to>"); |
| 3632 | return -1; |
| 3633 | } |
| 3634 | |
| 3635 | /* Be sure only the case differs between <from> and <to> */ |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 3636 | if (strcasecmp(from, to) != 0) { |
Christopher Faulet | 98fbe95 | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 3637 | memprintf(err, "<from> and <to> must not differ execpt the case"); |
| 3638 | return -1; |
| 3639 | } |
| 3640 | |
| 3641 | /* Be sure <from> does not already existsin the tree */ |
| 3642 | if (ebis_lookup(&hdrs_map.map, from)) { |
| 3643 | memprintf(err, "duplicate entry '%s'", from); |
| 3644 | return -1; |
| 3645 | } |
| 3646 | |
| 3647 | /* Create the entry and insert it in the tree */ |
| 3648 | entry = malloc(sizeof(*entry)); |
| 3649 | if (!entry) { |
| 3650 | memprintf(err, "out of memory"); |
| 3651 | return -1; |
| 3652 | } |
| 3653 | |
| 3654 | entry->node.key = strdup(from); |
Tim Duesterhus | dcf753a | 2021-03-04 17:31:47 +0100 | [diff] [blame] | 3655 | entry->name = ist(strdup(to)); |
Tim Duesterhus | 7b5777d | 2021-03-02 18:57:28 +0100 | [diff] [blame] | 3656 | if (!entry->node.key || !isttest(entry->name)) { |
Christopher Faulet | 98fbe95 | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 3657 | free(entry->node.key); |
Tim Duesterhus | ed52637 | 2020-03-05 17:56:33 +0100 | [diff] [blame] | 3658 | istfree(&entry->name); |
Christopher Faulet | 98fbe95 | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 3659 | free(entry); |
| 3660 | memprintf(err, "out of memory"); |
| 3661 | return -1; |
| 3662 | } |
| 3663 | ebis_insert(&hdrs_map.map, &entry->node); |
| 3664 | return 0; |
| 3665 | } |
| 3666 | |
Olivier Houchard | f12ca9f | 2020-02-20 16:00:18 +0100 | [diff] [blame] | 3667 | /* Migrate the the connection to the current thread. |
| 3668 | * Return 0 if successful, non-zero otherwise. |
| 3669 | * Expected to be called with the old thread lock held. |
| 3670 | */ |
Olivier Houchard | 1662cdb | 2020-07-03 14:04:37 +0200 | [diff] [blame] | 3671 | static int h1_takeover(struct connection *conn, int orig_tid) |
Olivier Houchard | f12ca9f | 2020-02-20 16:00:18 +0100 | [diff] [blame] | 3672 | { |
| 3673 | struct h1c *h1c = conn->ctx; |
Willy Tarreau | 09e0d9e | 2020-07-01 16:39:33 +0200 | [diff] [blame] | 3674 | struct task *task; |
Olivier Houchard | f12ca9f | 2020-02-20 16:00:18 +0100 | [diff] [blame] | 3675 | |
| 3676 | if (fd_takeover(conn->handle.fd, conn) != 0) |
| 3677 | return -1; |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 3678 | |
| 3679 | if (conn->xprt->takeover && conn->xprt->takeover(conn, conn->xprt_ctx, orig_tid) != 0) { |
| 3680 | /* We failed to takeover the xprt, even if the connection may |
| 3681 | * still be valid, flag it as error'd, as we have already |
| 3682 | * taken over the fd, and wake the tasklet, so that it will |
| 3683 | * destroy it. |
| 3684 | */ |
| 3685 | conn->flags |= CO_FL_ERROR; |
| 3686 | tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid); |
| 3687 | return -1; |
| 3688 | } |
| 3689 | |
Olivier Houchard | f12ca9f | 2020-02-20 16:00:18 +0100 | [diff] [blame] | 3690 | if (h1c->wait_event.events) |
| 3691 | h1c->conn->xprt->unsubscribe(h1c->conn, h1c->conn->xprt_ctx, |
| 3692 | h1c->wait_event.events, &h1c->wait_event); |
| 3693 | /* To let the tasklet know it should free itself, and do nothing else, |
| 3694 | * set its context to NULL. |
| 3695 | */ |
| 3696 | h1c->wait_event.tasklet->context = NULL; |
Olivier Houchard | 1662cdb | 2020-07-03 14:04:37 +0200 | [diff] [blame] | 3697 | tasklet_wakeup_on(h1c->wait_event.tasklet, orig_tid); |
Willy Tarreau | 09e0d9e | 2020-07-01 16:39:33 +0200 | [diff] [blame] | 3698 | |
| 3699 | task = h1c->task; |
| 3700 | if (task) { |
| 3701 | task->context = NULL; |
| 3702 | h1c->task = NULL; |
| 3703 | __ha_barrier_store(); |
| 3704 | task_kill(task); |
Olivier Houchard | f12ca9f | 2020-02-20 16:00:18 +0100 | [diff] [blame] | 3705 | |
| 3706 | h1c->task = task_new(tid_bit); |
| 3707 | if (!h1c->task) { |
| 3708 | h1_release(h1c); |
| 3709 | return -1; |
| 3710 | } |
| 3711 | h1c->task->process = h1_timeout_task; |
| 3712 | h1c->task->context = h1c; |
| 3713 | } |
| 3714 | h1c->wait_event.tasklet = tasklet_new(); |
| 3715 | if (!h1c->wait_event.tasklet) { |
| 3716 | h1_release(h1c); |
| 3717 | return -1; |
| 3718 | } |
| 3719 | h1c->wait_event.tasklet->process = h1_io_cb; |
| 3720 | h1c->wait_event.tasklet->context = h1c; |
| 3721 | h1c->conn->xprt->subscribe(h1c->conn, h1c->conn->xprt_ctx, |
| 3722 | SUB_RETRY_RECV, &h1c->wait_event); |
| 3723 | |
| 3724 | return 0; |
| 3725 | } |
| 3726 | |
| 3727 | |
Christopher Faulet | 98fbe95 | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 3728 | static void h1_hdeaders_case_adjust_deinit() |
| 3729 | { |
| 3730 | struct ebpt_node *node, *next; |
| 3731 | struct h1_hdr_entry *entry; |
| 3732 | |
| 3733 | node = ebpt_first(&hdrs_map.map); |
| 3734 | while (node) { |
| 3735 | next = ebpt_next(node); |
| 3736 | ebpt_delete(node); |
| 3737 | entry = container_of(node, struct h1_hdr_entry, node); |
| 3738 | free(entry->node.key); |
Tim Duesterhus | ed52637 | 2020-03-05 17:56:33 +0100 | [diff] [blame] | 3739 | istfree(&entry->name); |
Christopher Faulet | 98fbe95 | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 3740 | free(entry); |
| 3741 | node = next; |
| 3742 | } |
| 3743 | free(hdrs_map.name); |
Olivier Houchard | a8f6b43 | 2018-12-21 15:20:29 +0100 | [diff] [blame] | 3744 | } |
| 3745 | |
Christopher Faulet | 98fbe95 | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 3746 | static int cfg_h1_headers_case_adjust_postparser() |
| 3747 | { |
| 3748 | FILE *file = NULL; |
| 3749 | char *c, *key_beg, *key_end, *value_beg, *value_end; |
| 3750 | char *err; |
| 3751 | int rc, line = 0, err_code = 0; |
| 3752 | |
| 3753 | if (!hdrs_map.name) |
| 3754 | goto end; |
| 3755 | |
| 3756 | file = fopen(hdrs_map.name, "r"); |
| 3757 | if (!file) { |
Amaury Denoyelle | 1112430 | 2021-06-04 18:22:08 +0200 | [diff] [blame] | 3758 | ha_alert("h1-outgoing-headers-case-adjust-file '%s': failed to open file.\n", |
Christopher Faulet | 98fbe95 | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 3759 | hdrs_map.name); |
| 3760 | err_code |= ERR_ALERT | ERR_FATAL; |
| 3761 | goto end; |
| 3762 | } |
| 3763 | |
| 3764 | /* now parse all lines. The file may contain only two header name per |
| 3765 | * line, separated by spaces. All heading and trailing spaces will be |
| 3766 | * ignored. Lines starting with a # are ignored. |
| 3767 | */ |
| 3768 | while (fgets(trash.area, trash.size, file) != NULL) { |
| 3769 | line++; |
| 3770 | c = trash.area; |
| 3771 | |
| 3772 | /* strip leading spaces and tabs */ |
| 3773 | while (*c == ' ' || *c == '\t') |
| 3774 | c++; |
| 3775 | |
| 3776 | /* ignore emptu lines, or lines beginning with a dash */ |
| 3777 | if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n') |
| 3778 | continue; |
| 3779 | |
| 3780 | /* look for the end of the key */ |
| 3781 | key_beg = c; |
| 3782 | while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r') |
| 3783 | c++; |
| 3784 | key_end = c; |
| 3785 | |
| 3786 | /* strip middle spaces and tabs */ |
| 3787 | while (*c == ' ' || *c == '\t') |
| 3788 | c++; |
| 3789 | |
| 3790 | /* look for the end of the value, it is the end of the line */ |
| 3791 | value_beg = c; |
| 3792 | while (*c && *c != '\n' && *c != '\r') |
| 3793 | c++; |
| 3794 | value_end = c; |
| 3795 | |
| 3796 | /* trim possibly trailing spaces and tabs */ |
| 3797 | while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t')) |
| 3798 | value_end--; |
| 3799 | |
| 3800 | /* set final \0 and check entries */ |
| 3801 | *key_end = '\0'; |
| 3802 | *value_end = '\0'; |
| 3803 | |
| 3804 | err = NULL; |
| 3805 | rc = add_hdr_case_adjust(key_beg, value_beg, &err); |
| 3806 | if (rc < 0) { |
Amaury Denoyelle | 1112430 | 2021-06-04 18:22:08 +0200 | [diff] [blame] | 3807 | ha_alert("h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n", |
Christopher Faulet | 98fbe95 | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 3808 | hdrs_map.name, err, line); |
| 3809 | err_code |= ERR_ALERT | ERR_FATAL; |
Christopher Faulet | cac5c09 | 2019-07-30 16:51:42 +0200 | [diff] [blame] | 3810 | free(err); |
Christopher Faulet | 98fbe95 | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 3811 | goto end; |
| 3812 | } |
| 3813 | if (rc > 0) { |
Amaury Denoyelle | 1112430 | 2021-06-04 18:22:08 +0200 | [diff] [blame] | 3814 | ha_warning("h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n", |
Christopher Faulet | 98fbe95 | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 3815 | hdrs_map.name, err, line); |
| 3816 | err_code |= ERR_WARN; |
Christopher Faulet | cac5c09 | 2019-07-30 16:51:42 +0200 | [diff] [blame] | 3817 | free(err); |
Christopher Faulet | 98fbe95 | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 3818 | } |
| 3819 | } |
| 3820 | |
| 3821 | end: |
| 3822 | if (file) |
| 3823 | fclose(file); |
| 3824 | hap_register_post_deinit(h1_hdeaders_case_adjust_deinit); |
| 3825 | return err_code; |
| 3826 | } |
| 3827 | |
| 3828 | |
| 3829 | /* config parser for global "h1-outgoing-header-case-adjust" */ |
| 3830 | static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx, |
Willy Tarreau | 0182516 | 2021-03-09 09:53:46 +0100 | [diff] [blame] | 3831 | const struct proxy *defpx, const char *file, int line, |
Christopher Faulet | 98fbe95 | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 3832 | char **err) |
| 3833 | { |
| 3834 | if (too_many_args(2, args, err, NULL)) |
| 3835 | return -1; |
| 3836 | if (!*(args[1]) || !*(args[2])) { |
| 3837 | memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]); |
| 3838 | return -1; |
| 3839 | } |
| 3840 | return add_hdr_case_adjust(args[1], args[2], err); |
| 3841 | } |
| 3842 | |
| 3843 | /* config parser for global "h1-outgoing-headers-case-adjust-file" */ |
| 3844 | static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx, |
Willy Tarreau | 0182516 | 2021-03-09 09:53:46 +0100 | [diff] [blame] | 3845 | const struct proxy *defpx, const char *file, int line, |
Christopher Faulet | 98fbe95 | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 3846 | char **err) |
| 3847 | { |
| 3848 | if (too_many_args(1, args, err, NULL)) |
| 3849 | return -1; |
| 3850 | if (!*(args[1])) { |
| 3851 | memprintf(err, "'%s' expects <file> as argument.", args[0]); |
| 3852 | return -1; |
| 3853 | } |
| 3854 | free(hdrs_map.name); |
| 3855 | hdrs_map.name = strdup(args[1]); |
| 3856 | return 0; |
| 3857 | } |
| 3858 | |
| 3859 | |
| 3860 | /* config keyword parsers */ |
| 3861 | static struct cfg_kw_list cfg_kws = {{ }, { |
| 3862 | { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust }, |
| 3863 | { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file }, |
| 3864 | { 0, NULL, NULL }, |
| 3865 | } |
| 3866 | }; |
| 3867 | |
| 3868 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 3869 | REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser); |
| 3870 | |
| 3871 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3872 | /****************************************/ |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 3873 | /* MUX initialization and instantiation */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3874 | /****************************************/ |
| 3875 | |
| 3876 | /* The mux operations */ |
Christopher Faulet | 3f612f7 | 2021-02-05 16:44:21 +0100 | [diff] [blame] | 3877 | static const struct mux_ops mux_http_ops = { |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3878 | .init = h1_init, |
| 3879 | .wake = h1_wake, |
| 3880 | .attach = h1_attach, |
| 3881 | .get_first_cs = h1_get_first_cs, |
| 3882 | .detach = h1_detach, |
| 3883 | .destroy = h1_destroy, |
| 3884 | .avail_streams = h1_avail_streams, |
Willy Tarreau | 00f18a3 | 2019-01-26 12:19:01 +0100 | [diff] [blame] | 3885 | .used_streams = h1_used_streams, |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3886 | .rcv_buf = h1_rcv_buf, |
| 3887 | .snd_buf = h1_snd_buf, |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 3888 | #if defined(USE_LINUX_SPLICE) |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 3889 | .rcv_pipe = h1_rcv_pipe, |
| 3890 | .snd_pipe = h1_snd_pipe, |
| 3891 | #endif |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3892 | .subscribe = h1_subscribe, |
| 3893 | .unsubscribe = h1_unsubscribe, |
| 3894 | .shutr = h1_shutr, |
| 3895 | .shutw = h1_shutw, |
Olivier Houchard | a8f6b43 | 2018-12-21 15:20:29 +0100 | [diff] [blame] | 3896 | .show_fd = h1_show_fd, |
Olivier Houchard | 9b8e11e | 2019-10-25 16:19:26 +0200 | [diff] [blame] | 3897 | .ctl = h1_ctl, |
Olivier Houchard | f12ca9f | 2020-02-20 16:00:18 +0100 | [diff] [blame] | 3898 | .takeover = h1_takeover, |
Christopher Faulet | 9f38f5a | 2019-04-03 09:53:32 +0200 | [diff] [blame] | 3899 | .flags = MX_FL_HTX, |
Willy Tarreau | 0a7a4fb | 2019-05-22 11:36:54 +0200 | [diff] [blame] | 3900 | .name = "H1", |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3901 | }; |
| 3902 | |
Christopher Faulet | 3f612f7 | 2021-02-05 16:44:21 +0100 | [diff] [blame] | 3903 | static const struct mux_ops mux_h1_ops = { |
| 3904 | .init = h1_init, |
| 3905 | .wake = h1_wake, |
| 3906 | .attach = h1_attach, |
| 3907 | .get_first_cs = h1_get_first_cs, |
| 3908 | .detach = h1_detach, |
| 3909 | .destroy = h1_destroy, |
| 3910 | .avail_streams = h1_avail_streams, |
| 3911 | .used_streams = h1_used_streams, |
| 3912 | .rcv_buf = h1_rcv_buf, |
| 3913 | .snd_buf = h1_snd_buf, |
| 3914 | #if defined(USE_LINUX_SPLICE) |
| 3915 | .rcv_pipe = h1_rcv_pipe, |
| 3916 | .snd_pipe = h1_snd_pipe, |
| 3917 | #endif |
| 3918 | .subscribe = h1_subscribe, |
| 3919 | .unsubscribe = h1_unsubscribe, |
| 3920 | .shutr = h1_shutr, |
| 3921 | .shutw = h1_shutw, |
| 3922 | .show_fd = h1_show_fd, |
| 3923 | .ctl = h1_ctl, |
| 3924 | .takeover = h1_takeover, |
| 3925 | .flags = MX_FL_HTX|MX_FL_NO_UPG, |
| 3926 | .name = "H1", |
| 3927 | }; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3928 | |
Christopher Faulet | 3f612f7 | 2021-02-05 16:44:21 +0100 | [diff] [blame] | 3929 | /* this mux registers default HTX proto but also h1 proto (to be referenced in the conf */ |
| 3930 | static struct mux_proto_list mux_proto_h1 = |
| 3931 | { .token = IST("h1"), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops }; |
| 3932 | static struct mux_proto_list mux_proto_http = |
| 3933 | { .token = IST(""), .mode = PROTO_MODE_HTTP, .side = PROTO_SIDE_BOTH, .mux = &mux_http_ops }; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3934 | |
Christopher Faulet | 3f612f7 | 2021-02-05 16:44:21 +0100 | [diff] [blame] | 3935 | INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_h1); |
| 3936 | INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_http); |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 3937 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 3938 | /* |
| 3939 | * Local variables: |
| 3940 | * c-indent-level: 8 |
| 3941 | * c-basic-offset: 8 |
| 3942 | * End: |
| 3943 | */ |