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