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 | */ |
| 12 | #include <common/cfgparse.h> |
| 13 | #include <common/config.h> |
Willy Tarreau | afba57a | 2018-12-11 13:44:24 +0100 | [diff] [blame] | 14 | #include <common/h1.h> |
Christopher Faulet | 0ef372a | 2019-04-08 10:57:20 +0200 | [diff] [blame] | 15 | #include <common/h2.h> |
Willy Tarreau | b96b77e | 2018-12-11 10:22:41 +0100 | [diff] [blame] | 16 | #include <common/htx.h> |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 17 | #include <common/initcall.h> |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 18 | |
Christopher Faulet | a99ff4d | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 19 | #include <ebistree.h> |
| 20 | |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 21 | #include <types/pipe.h> |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 22 | #include <types/proxy.h> |
| 23 | #include <types/session.h> |
| 24 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 25 | #include <proto/connection.h> |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 26 | #include <proto/http_htx.h> |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 27 | #include <proto/log.h> |
Olivier Houchard | 44d5914 | 2018-12-13 18:46:22 +0100 | [diff] [blame] | 28 | #include <proto/session.h> |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 29 | #include <proto/stream.h> |
| 30 | #include <proto/stream_interface.h> |
| 31 | |
| 32 | /* |
| 33 | * H1 Connection flags (32 bits) |
| 34 | */ |
| 35 | #define H1C_F_NONE 0x00000000 |
| 36 | |
| 37 | /* Flags indicating why writing output data are blocked */ |
| 38 | #define H1C_F_OUT_ALLOC 0x00000001 /* mux is blocked on lack of output buffer */ |
| 39 | #define H1C_F_OUT_FULL 0x00000002 /* mux is blocked on output buffer full */ |
| 40 | /* 0x00000004 - 0x00000008 unused */ |
| 41 | |
| 42 | /* Flags indicating why reading input data are blocked. */ |
| 43 | #define H1C_F_IN_ALLOC 0x00000010 /* mux is blocked on lack of input buffer */ |
| 44 | #define H1C_F_IN_FULL 0x00000020 /* mux is blocked on input buffer full */ |
Christopher Faulet | f36e72b | 2019-12-05 11:18:31 +0100 | [diff] [blame] | 45 | #define H1C_F_IN_BUSY 0x00000040 /* mux is blocked on input waiting the other side */ |
Christopher Faulet | e31a0f1 | 2019-12-05 10:23:37 +0100 | [diff] [blame] | 46 | /* 0x00000040 - 0x00000400 unused */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 47 | |
Christopher Faulet | e31a0f1 | 2019-12-05 10:23:37 +0100 | [diff] [blame] | 48 | #define H1C_F_CS_WAIT_CONN 0x00000800 /* waiting for the connection establishment */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 49 | #define H1C_F_CS_ERROR 0x00001000 /* connection must be closed ASAP because an error occurred */ |
| 50 | #define H1C_F_CS_SHUTW_NOW 0x00002000 /* connection must be shut down for writes ASAP */ |
Christopher Faulet | f36e72b | 2019-12-05 11:18:31 +0100 | [diff] [blame] | 51 | #define H1C_F_CS_SHUTDOWN 0x00004000 /* connection is shut down */ |
Christopher Faulet | e31a0f1 | 2019-12-05 10:23:37 +0100 | [diff] [blame] | 52 | #define H1C_F_CS_IDLE 0x00008000 /* connection is idle and may be reused |
| 53 | * (exclusive to all H1C_F_CS flags and never set when an h1s is attached) */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 54 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 55 | #define H1C_F_WAIT_NEXT_REQ 0x00010000 /* waiting for the next request to start, use keep-alive timeout */ |
Christopher Faulet | 0ef372a | 2019-04-08 10:57:20 +0200 | [diff] [blame] | 56 | #define H1C_F_UPG_H2C 0x00020000 /* set if an upgrade to h2 should be done */ |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 57 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 58 | /* |
| 59 | * H1 Stream flags (32 bits) |
| 60 | */ |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 61 | #define H1S_F_NONE 0x00000000 |
| 62 | #define H1S_F_ERROR 0x00000001 /* An error occurred on the H1 stream */ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 63 | #define H1S_F_REQ_ERROR 0x00000002 /* An error occurred during the request parsing/xfer */ |
| 64 | #define H1S_F_RES_ERROR 0x00000004 /* An error occurred during the response parsing/xfer */ |
Willy Tarreau | c493c9c | 2019-06-03 14:18:22 +0200 | [diff] [blame] | 65 | #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] | 66 | #define H1S_F_WANT_KAL 0x00000010 |
| 67 | #define H1S_F_WANT_TUN 0x00000020 |
| 68 | #define H1S_F_WANT_CLO 0x00000040 |
| 69 | #define H1S_F_WANT_MSK 0x00000070 |
| 70 | #define H1S_F_NOT_FIRST 0x00000080 /* The H1 stream is not the first one */ |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 71 | #define H1S_F_BUF_FLUSH 0x00000100 /* Flush input buffer and don't read more data */ |
Christopher Faulet | d44ad5b | 2018-11-19 21:52:12 +0100 | [diff] [blame] | 72 | #define H1S_F_SPLICED_DATA 0x00000200 /* Set when the kernel splicing is in used */ |
Willy Tarreau | 34d2348 | 2019-01-03 17:46:56 +0100 | [diff] [blame] | 73 | #define H1S_F_HAVE_I_TLR 0x00000800 /* Set during input process to know the trailers were processed */ |
Willy Tarreau | 6203815 | 2019-08-23 09:29:29 +0200 | [diff] [blame] | 74 | #define H1S_F_APPEND_EOM 0x00001000 /* Send EOM to the HTX buffer */ |
| 75 | /* 0x00002000 .. 0x00002000 unused */ |
Christopher Faulet | ada34b6 | 2019-05-24 16:36:43 +0200 | [diff] [blame] | 76 | #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] | 77 | |
| 78 | /* H1 connection descriptor */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 79 | struct h1c { |
| 80 | struct connection *conn; |
| 81 | struct proxy *px; |
| 82 | uint32_t flags; /* Connection flags: H1C_F_* */ |
| 83 | |
| 84 | struct buffer ibuf; /* Input buffer to store data before parsing */ |
| 85 | struct buffer obuf; /* Output buffer to store data after reformatting */ |
| 86 | |
| 87 | struct buffer_wait buf_wait; /* Wait list for buffer allocation */ |
| 88 | struct wait_event wait_event; /* To be used if we're waiting for I/Os */ |
| 89 | |
| 90 | struct h1s *h1s; /* H1 stream descriptor */ |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 91 | struct task *task; /* timeout management task */ |
| 92 | int timeout; /* idle timeout duration in ticks */ |
| 93 | int shut_timeout; /* idle timeout duration in ticks after stream shutdown */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 94 | }; |
| 95 | |
| 96 | /* H1 stream descriptor */ |
| 97 | struct h1s { |
| 98 | struct h1c *h1c; |
| 99 | struct conn_stream *cs; |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 100 | struct cs_info csinfo; /* CS info, only used for client connections */ |
| 101 | uint32_t flags; /* Connection flags: H1S_F_* */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 102 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 103 | struct wait_event *recv_wait; /* Address of the wait_event the conn_stream associated is waiting on */ |
| 104 | struct wait_event *send_wait; /* Address of the wait_event the conn_stream associated is waiting on */ |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 105 | |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 106 | struct session *sess; /* Associated session */ |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 107 | struct h1m req; |
| 108 | struct h1m res; |
| 109 | |
| 110 | enum http_meth_t meth; /* HTTP resquest method */ |
| 111 | uint16_t status; /* HTTP response status */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 112 | }; |
| 113 | |
Christopher Faulet | a99ff4d | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 114 | /* Map of headers used to convert outgoing headers */ |
| 115 | struct h1_hdrs_map { |
| 116 | char *name; |
| 117 | struct eb_root map; |
| 118 | }; |
| 119 | |
| 120 | /* An entry in a headers map */ |
| 121 | struct h1_hdr_entry { |
| 122 | struct ist name; |
| 123 | struct ebpt_node node; |
| 124 | }; |
| 125 | |
| 126 | /* Declare the headers map */ |
| 127 | static struct h1_hdrs_map hdrs_map = { .name = NULL, .map = EB_ROOT }; |
| 128 | |
| 129 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 130 | /* the h1c and h1s pools */ |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 131 | DECLARE_STATIC_POOL(pool_head_h1c, "h1c", sizeof(struct h1c)); |
| 132 | DECLARE_STATIC_POOL(pool_head_h1s, "h1s", sizeof(struct h1s)); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 133 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 134 | static int h1_recv(struct h1c *h1c); |
| 135 | static int h1_send(struct h1c *h1c); |
| 136 | static int h1_process(struct h1c *h1c); |
| 137 | static struct task *h1_io_cb(struct task *t, void *ctx, unsigned short state); |
Christopher Faulet | 666a0c4 | 2019-01-08 11:12:04 +0100 | [diff] [blame] | 138 | static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode); |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 139 | static struct task *h1_timeout_task(struct task *t, void *context, unsigned short state); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 140 | |
| 141 | /*****************************************************/ |
| 142 | /* functions below are for dynamic buffer management */ |
| 143 | /*****************************************************/ |
| 144 | /* |
Christopher Faulet | 7caf150 | 2019-12-05 12:30:55 +0100 | [diff] [blame] | 145 | * Indicates whether or not we may receive data. The rules are the following : |
| 146 | * - if an error or a shutdown for reads was detected on the connection we |
| 147 | must not attempt to receive |
| 148 | * - if the input buffer failed to be allocated or is full , we must not try |
| 149 | * to receive |
| 150 | * - if he input processing is busy waiting for the output side, we may |
| 151 | * attemp to receive |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 152 | * - otherwise must may not attempt to receive |
| 153 | */ |
| 154 | static inline int h1_recv_allowed(const struct h1c *h1c) |
| 155 | { |
Christopher Faulet | 7caf150 | 2019-12-05 12:30:55 +0100 | [diff] [blame] | 156 | if (h1c->flags & H1C_F_CS_ERROR) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 157 | return 0; |
| 158 | |
Christopher Faulet | 7caf150 | 2019-12-05 12:30:55 +0100 | [diff] [blame] | 159 | if (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH)) |
Christopher Faulet | cf56b99 | 2018-12-11 16:12:31 +0100 | [diff] [blame] | 160 | return 0; |
| 161 | |
Christopher Faulet | cb55f48 | 2018-12-10 11:56:47 +0100 | [diff] [blame] | 162 | if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL|H1C_F_IN_BUSY))) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 163 | return 1; |
| 164 | |
| 165 | return 0; |
| 166 | } |
| 167 | |
| 168 | /* |
| 169 | * Tries to grab a buffer and to re-enables processing on mux <target>. The h1 |
| 170 | * flags are used to figure what buffer was requested. It returns 1 if the |
| 171 | * allocation succeeds, in which case the connection is woken up, or 0 if it's |
| 172 | * impossible to wake up and we prefer to be woken up later. |
| 173 | */ |
| 174 | static int h1_buf_available(void *target) |
| 175 | { |
| 176 | struct h1c *h1c = target; |
| 177 | |
| 178 | if ((h1c->flags & H1C_F_IN_ALLOC) && b_alloc_margin(&h1c->ibuf, 0)) { |
| 179 | h1c->flags &= ~H1C_F_IN_ALLOC; |
| 180 | if (h1_recv_allowed(h1c)) |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 181 | tasklet_wakeup(h1c->wait_event.tasklet); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 182 | return 1; |
| 183 | } |
| 184 | |
| 185 | if ((h1c->flags & H1C_F_OUT_ALLOC) && b_alloc_margin(&h1c->obuf, 0)) { |
| 186 | h1c->flags &= ~H1C_F_OUT_ALLOC; |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 187 | tasklet_wakeup(h1c->wait_event.tasklet); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 188 | return 1; |
| 189 | } |
| 190 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 191 | return 0; |
| 192 | } |
| 193 | |
| 194 | /* |
| 195 | * Allocate a buffer. If if fails, it adds the mux in buffer wait queue. |
| 196 | */ |
| 197 | static inline struct buffer *h1_get_buf(struct h1c *h1c, struct buffer *bptr) |
| 198 | { |
| 199 | struct buffer *buf = NULL; |
| 200 | |
| 201 | if (likely(LIST_ISEMPTY(&h1c->buf_wait.list)) && |
| 202 | unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) { |
| 203 | h1c->buf_wait.target = h1c; |
| 204 | h1c->buf_wait.wakeup_cb = h1_buf_available; |
| 205 | HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
| 206 | LIST_ADDQ(&buffer_wq, &h1c->buf_wait.list); |
| 207 | HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
| 208 | __conn_xprt_stop_recv(h1c->conn); |
| 209 | } |
| 210 | return buf; |
| 211 | } |
| 212 | |
| 213 | /* |
| 214 | * Release a buffer, if any, and try to wake up entities waiting in the buffer |
| 215 | * wait queue. |
| 216 | */ |
| 217 | static inline void h1_release_buf(struct h1c *h1c, struct buffer *bptr) |
| 218 | { |
| 219 | if (bptr->size) { |
| 220 | b_free(bptr); |
| 221 | offer_buffers(h1c->buf_wait.target, tasks_run_queue); |
| 222 | } |
| 223 | } |
| 224 | |
Christopher Faulet | e31a0f1 | 2019-12-05 10:23:37 +0100 | [diff] [blame] | 225 | /* returns the number of streams in use on a connection to figure if it's idle |
| 226 | * or not. We rely on H1C_F_CS_IDLE to know if the connection is in-use or |
| 227 | * not. This flag is only set when no H1S is attached and when the previous |
| 228 | * 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] | 229 | */ |
| 230 | static int h1_used_streams(struct connection *conn) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 231 | { |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 232 | struct h1c *h1c = conn->ctx; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 233 | |
Christopher Faulet | e31a0f1 | 2019-12-05 10:23:37 +0100 | [diff] [blame] | 234 | return ((h1c->flags & H1C_F_CS_IDLE) ? 0 : 1); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 235 | } |
| 236 | |
Willy Tarreau | 00f18a3 | 2019-01-26 12:19:01 +0100 | [diff] [blame] | 237 | /* returns the number of streams still available on a connection */ |
| 238 | static int h1_avail_streams(struct connection *conn) |
Olivier Houchard | 8defe4b | 2018-12-02 01:31:17 +0100 | [diff] [blame] | 239 | { |
Willy Tarreau | 00f18a3 | 2019-01-26 12:19:01 +0100 | [diff] [blame] | 240 | return 1 - h1_used_streams(conn); |
Olivier Houchard | 8defe4b | 2018-12-02 01:31:17 +0100 | [diff] [blame] | 241 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 242 | |
Christopher Faulet | b576206 | 2020-08-05 11:31:16 +0200 | [diff] [blame] | 243 | /* Refresh the h1c task timeout if necessary */ |
| 244 | static void h1_refresh_timeout(struct h1c *h1c) |
| 245 | { |
| 246 | if (h1c->task) { |
| 247 | h1c->task->expire = TICK_ETERNITY; |
Willy Tarreau | 0814458 | 2020-09-08 15:40:57 +0200 | [diff] [blame] | 248 | if (h1c->flags & H1C_F_CS_SHUTDOWN) { |
| 249 | /* half-closed connections switch to clientfin/serverfin |
| 250 | * timeouts so that we don't hang too long on clients |
| 251 | * that have gone away (especially in tunnel mode). |
| 252 | */ |
| 253 | h1c->task->expire = tick_add(now_ms, h1c->shut_timeout); |
| 254 | task_queue(h1c->task); |
| 255 | } else if ((!h1c->h1s && !conn_is_back(h1c->conn)) || b_data(&h1c->obuf)) { |
Christopher Faulet | b576206 | 2020-08-05 11:31:16 +0200 | [diff] [blame] | 256 | /* front connections waiting for a stream, as well as any connection with |
| 257 | * pending data, need a timeout. |
| 258 | */ |
Willy Tarreau | 0814458 | 2020-09-08 15:40:57 +0200 | [diff] [blame] | 259 | h1c->task->expire = tick_add(now_ms, ((h1c->flags & H1C_F_CS_SHUTW_NOW) |
Christopher Faulet | b576206 | 2020-08-05 11:31:16 +0200 | [diff] [blame] | 260 | ? h1c->shut_timeout |
| 261 | : h1c->timeout)); |
| 262 | task_queue(h1c->task); |
| 263 | } |
| 264 | } |
| 265 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 266 | /*****************************************************************/ |
| 267 | /* functions below are dedicated to the mux setup and management */ |
| 268 | /*****************************************************************/ |
Willy Tarreau | fbdf90a | 2019-06-03 13:42:54 +0200 | [diff] [blame] | 269 | |
| 270 | /* returns non-zero if there are input data pending for stream h1s. */ |
| 271 | static inline size_t h1s_data_pending(const struct h1s *h1s) |
| 272 | { |
| 273 | const struct h1m *h1m; |
| 274 | |
| 275 | h1m = conn_is_back(h1s->h1c->conn) ? &h1s->res : &h1s->req; |
| 276 | if (h1m->state == H1_MSG_DONE) |
| 277 | return 0; // data not for this stream (e.g. pipelining) |
| 278 | |
| 279 | return b_data(&h1s->h1c->ibuf); |
| 280 | } |
| 281 | |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 282 | static struct conn_stream *h1s_new_cs(struct h1s *h1s) |
| 283 | { |
| 284 | struct conn_stream *cs; |
| 285 | |
| 286 | cs = cs_new(h1s->h1c->conn); |
| 287 | if (!cs) |
| 288 | goto err; |
| 289 | h1s->cs = cs; |
| 290 | cs->ctx = h1s; |
| 291 | |
| 292 | if (h1s->flags & H1S_F_NOT_FIRST) |
| 293 | cs->flags |= CS_FL_NOT_FIRST; |
| 294 | |
Willy Tarreau | 7e9dd73 | 2020-01-17 16:19:34 +0100 | [diff] [blame] | 295 | if (global.tune.options & GTUNE_USE_SPLICE) |
| 296 | cs->flags |= CS_FL_MAY_SPLICE; |
| 297 | |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 298 | if (stream_create_from_cs(cs) < 0) |
| 299 | goto err; |
| 300 | return cs; |
| 301 | |
| 302 | err: |
| 303 | cs_free(cs); |
| 304 | h1s->cs = NULL; |
| 305 | return NULL; |
| 306 | } |
| 307 | |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 308 | static struct h1s *h1s_create(struct h1c *h1c, struct conn_stream *cs, struct session *sess) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 309 | { |
| 310 | struct h1s *h1s; |
| 311 | |
| 312 | h1s = pool_alloc(pool_head_h1s); |
| 313 | if (!h1s) |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 314 | goto fail; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 315 | |
| 316 | h1s->h1c = h1c; |
| 317 | h1c->h1s = h1s; |
| 318 | |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 319 | h1s->sess = sess; |
| 320 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 321 | h1s->cs = NULL; |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 322 | h1s->flags = H1S_F_WANT_KAL; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 323 | |
| 324 | h1s->recv_wait = NULL; |
| 325 | h1s->send_wait = NULL; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 326 | |
| 327 | h1m_init_req(&h1s->req); |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 328 | h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 329 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 330 | h1m_init_res(&h1s->res); |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 331 | h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 332 | |
| 333 | h1s->status = 0; |
| 334 | h1s->meth = HTTP_METH_OTHER; |
| 335 | |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 336 | if (h1c->flags & H1C_F_WAIT_NEXT_REQ) |
| 337 | h1s->flags |= H1S_F_NOT_FIRST; |
Christopher Faulet | e31a0f1 | 2019-12-05 10:23:37 +0100 | [diff] [blame] | 338 | h1c->flags &= ~(H1C_F_CS_IDLE|H1C_F_WAIT_NEXT_REQ); |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 339 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 340 | if (!conn_is_back(h1c->conn)) { |
| 341 | if (h1c->px->options2 & PR_O2_REQBUG_OK) |
| 342 | h1s->req.err_pos = -1; |
Christopher Faulet | e9b7072 | 2019-04-08 10:46:02 +0200 | [diff] [blame] | 343 | |
| 344 | /* For frontend connections we should always have a session */ |
| 345 | if (!sess) |
Christopher Faulet | 823613c | 2020-09-30 15:00:13 +0200 | [diff] [blame] | 346 | h1s->sess = sess = h1c->conn->owner; |
Christopher Faulet | e9b7072 | 2019-04-08 10:46:02 +0200 | [diff] [blame] | 347 | |
Dave Pirotte | cf67ec5 | 2019-07-10 13:57:38 +0000 | [diff] [blame] | 348 | /* Timers for subsequent sessions on the same HTTP 1.x connection |
| 349 | * measure from `now`, not from the connection accept time */ |
| 350 | if (h1s->flags & H1S_F_NOT_FIRST) { |
| 351 | h1s->csinfo.create_date = date; |
| 352 | h1s->csinfo.tv_create = now; |
| 353 | h1s->csinfo.t_handshake = 0; |
| 354 | h1s->csinfo.t_idle = -1; |
| 355 | } |
| 356 | else { |
| 357 | h1s->csinfo.create_date = sess->accept_date; |
| 358 | h1s->csinfo.tv_create = sess->tv_accept; |
| 359 | h1s->csinfo.t_handshake = sess->t_handshake; |
| 360 | h1s->csinfo.t_idle = -1; |
| 361 | } |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 362 | } |
| 363 | else { |
| 364 | if (h1c->px->options2 & PR_O2_RSPBUG_OK) |
| 365 | h1s->res.err_pos = -1; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 366 | |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 367 | h1s->csinfo.create_date = date; |
| 368 | h1s->csinfo.tv_create = now; |
| 369 | h1s->csinfo.t_handshake = 0; |
| 370 | h1s->csinfo.t_idle = -1; |
Christopher Faulet | e9b7072 | 2019-04-08 10:46:02 +0200 | [diff] [blame] | 371 | } |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 372 | |
Christopher Faulet | e9b7072 | 2019-04-08 10:46:02 +0200 | [diff] [blame] | 373 | /* If a conn_stream already exists, attach it to this H1S. Otherwise we |
| 374 | * create a new one. |
| 375 | */ |
| 376 | if (cs) { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 377 | cs->ctx = h1s; |
| 378 | h1s->cs = cs; |
| 379 | } |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 380 | else { |
| 381 | cs = h1s_new_cs(h1s); |
| 382 | if (!cs) |
| 383 | goto fail; |
| 384 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 385 | return h1s; |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 386 | |
| 387 | fail: |
| 388 | pool_free(pool_head_h1s, h1s); |
| 389 | return NULL; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 390 | } |
| 391 | |
| 392 | static void h1s_destroy(struct h1s *h1s) |
| 393 | { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 394 | if (h1s) { |
| 395 | struct h1c *h1c = h1s->h1c; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 396 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 397 | h1c->h1s = NULL; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 398 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 399 | if (h1s->recv_wait != NULL) |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 400 | h1s->recv_wait->events &= ~SUB_RETRY_RECV; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 401 | if (h1s->send_wait != NULL) |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 402 | h1s->send_wait->events &= ~SUB_RETRY_SEND; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 403 | |
Christopher Faulet | cb55f48 | 2018-12-10 11:56:47 +0100 | [diff] [blame] | 404 | h1c->flags &= ~H1C_F_IN_BUSY; |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 405 | if (h1s->flags & (H1S_F_REQ_ERROR|H1S_F_RES_ERROR)) |
| 406 | h1c->flags |= H1C_F_CS_ERROR; |
Christopher Faulet | e31a0f1 | 2019-12-05 10:23:37 +0100 | [diff] [blame] | 407 | |
| 408 | if (!(h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTW_NOW|H1C_F_CS_SHUTDOWN)) && /* No error/shutdown on h1c */ |
| 409 | !(h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH)) && /* No error/shutdown on conn */ |
| 410 | (h1s->flags & H1S_F_WANT_KAL) && /* K/A possible */ |
| 411 | h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) { /* req/res in DONE state */ |
| 412 | h1c->flags |= (H1C_F_CS_IDLE|H1C_F_WAIT_NEXT_REQ); |
| 413 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 414 | pool_free(pool_head_h1s, h1s); |
| 415 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 416 | } |
| 417 | |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 418 | static const struct cs_info *h1_get_cs_info(struct conn_stream *cs) |
| 419 | { |
| 420 | struct h1s *h1s = cs->ctx; |
| 421 | |
| 422 | if (h1s && !conn_is_back(cs->conn)) |
| 423 | return &h1s->csinfo; |
| 424 | return NULL; |
| 425 | } |
| 426 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 427 | /* |
Christopher Faulet | 51f73eb | 2019-04-08 11:22:47 +0200 | [diff] [blame] | 428 | * Initialize the mux once it's attached. It is expected that conn->ctx points |
| 429 | * to the existing conn_stream (for outgoing connections or for incoming onces |
| 430 | * during a mux upgrade) or NULL (for incoming ones during the connexion |
| 431 | * establishment). <input> is always used as Input buffer and may contain |
| 432 | * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on |
| 433 | * error. |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 434 | */ |
Christopher Faulet | 51f73eb | 2019-04-08 11:22:47 +0200 | [diff] [blame] | 435 | static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess, |
| 436 | struct buffer *input) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 437 | { |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 438 | struct h1c *h1c; |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 439 | struct task *t = NULL; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 440 | |
| 441 | h1c = pool_alloc(pool_head_h1c); |
| 442 | if (!h1c) |
| 443 | goto fail_h1c; |
| 444 | h1c->conn = conn; |
| 445 | h1c->px = proxy; |
| 446 | |
Christopher Faulet | e31a0f1 | 2019-12-05 10:23:37 +0100 | [diff] [blame] | 447 | h1c->flags = H1C_F_CS_IDLE; |
Christopher Faulet | 51f73eb | 2019-04-08 11:22:47 +0200 | [diff] [blame] | 448 | h1c->ibuf = *input; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 449 | h1c->obuf = BUF_NULL; |
| 450 | h1c->h1s = NULL; |
Christopher Faulet | 51f73eb | 2019-04-08 11:22:47 +0200 | [diff] [blame] | 451 | h1c->task = NULL; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 452 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 453 | LIST_INIT(&h1c->buf_wait.list); |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 454 | h1c->wait_event.tasklet = tasklet_new(); |
| 455 | if (!h1c->wait_event.tasklet) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 456 | goto fail; |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 457 | h1c->wait_event.tasklet->process = h1_io_cb; |
| 458 | h1c->wait_event.tasklet->context = h1c; |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 459 | h1c->wait_event.events = 0; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 460 | |
Christopher Faulet | e9b7072 | 2019-04-08 10:46:02 +0200 | [diff] [blame] | 461 | if (conn_is_back(conn)) { |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 462 | h1c->shut_timeout = h1c->timeout = proxy->timeout.server; |
| 463 | if (tick_isset(proxy->timeout.serverfin)) |
| 464 | h1c->shut_timeout = proxy->timeout.serverfin; |
| 465 | } else { |
| 466 | h1c->shut_timeout = h1c->timeout = proxy->timeout.client; |
| 467 | if (tick_isset(proxy->timeout.clientfin)) |
| 468 | h1c->shut_timeout = proxy->timeout.clientfin; |
| 469 | } |
| 470 | if (tick_isset(h1c->timeout)) { |
| 471 | t = task_new(tid_bit); |
| 472 | if (!t) |
| 473 | goto fail; |
| 474 | |
| 475 | h1c->task = t; |
| 476 | t->process = h1_timeout_task; |
| 477 | t->context = h1c; |
| 478 | t->expire = tick_add(now_ms, h1c->timeout); |
| 479 | } |
| 480 | |
Olivier Houchard | 985234d | 2019-06-13 17:54:33 +0200 | [diff] [blame] | 481 | if (!(conn->flags & CO_FL_CONNECTED) || (conn->flags & CO_FL_HANDSHAKE)) |
Christopher Faulet | 3b88b8d | 2018-10-26 17:36:03 +0200 | [diff] [blame] | 482 | h1c->flags |= H1C_F_CS_WAIT_CONN; |
| 483 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 484 | /* Always Create a new H1S */ |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 485 | if (!h1s_create(h1c, conn->ctx, sess)) |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 486 | goto fail; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 487 | |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 488 | conn->ctx = h1c; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 489 | |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 490 | |
| 491 | if (t) |
| 492 | task_queue(t); |
| 493 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 494 | /* Try to read, if nothing is available yet we'll just subscribe */ |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 495 | tasklet_wakeup(h1c->wait_event.tasklet); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 496 | |
| 497 | /* mux->wake will be called soon to complete the operation */ |
| 498 | return 0; |
| 499 | |
| 500 | fail: |
Willy Tarreau | f656279 | 2019-05-07 19:05:35 +0200 | [diff] [blame] | 501 | task_destroy(t); |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 502 | if (h1c->wait_event.tasklet) |
| 503 | tasklet_free(h1c->wait_event.tasklet); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 504 | pool_free(pool_head_h1c, h1c); |
| 505 | fail_h1c: |
| 506 | return -1; |
| 507 | } |
| 508 | |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 509 | /* release function. This one should be called to free all resources allocated |
| 510 | * to the mux. |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 511 | */ |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 512 | static void h1_release(struct h1c *h1c) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 513 | { |
Christopher Faulet | 61840e7 | 2019-04-15 09:33:32 +0200 | [diff] [blame] | 514 | struct connection *conn = NULL; |
Christopher Faulet | 39a96ee | 2019-04-08 10:52:21 +0200 | [diff] [blame] | 515 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 516 | if (h1c) { |
Christopher Faulet | 61840e7 | 2019-04-15 09:33:32 +0200 | [diff] [blame] | 517 | /* The connection must be aattached to this mux to be released */ |
| 518 | if (h1c->conn && h1c->conn->ctx == h1c) |
| 519 | conn = h1c->conn; |
| 520 | |
| 521 | if (conn && h1c->flags & H1C_F_UPG_H2C) { |
Christopher Faulet | 0ef372a | 2019-04-08 10:57:20 +0200 | [diff] [blame] | 522 | h1c->flags &= ~H1C_F_UPG_H2C; |
Olivier Houchard | 13f556e | 2019-07-03 13:08:18 +0200 | [diff] [blame] | 523 | /* Make sure we're no longer subscribed to anything */ |
| 524 | if (h1c->wait_event.events) |
| 525 | conn->xprt->unsubscribe(conn, conn->xprt_ctx, |
| 526 | h1c->wait_event.events, &h1c->wait_event); |
Olivier Houchard | 45c4437 | 2019-06-11 14:06:23 +0200 | [diff] [blame] | 527 | if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTX) != -1) { |
Christopher Faulet | 0ef372a | 2019-04-08 10:57:20 +0200 | [diff] [blame] | 528 | /* connection successfully upgraded to H2, this |
| 529 | * mux was already released */ |
| 530 | return; |
| 531 | } |
| 532 | sess_log(conn->owner); /* Log if the upgrade failed */ |
| 533 | } |
| 534 | |
Olivier Houchard | 45c4437 | 2019-06-11 14:06:23 +0200 | [diff] [blame] | 535 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 536 | if (!LIST_ISEMPTY(&h1c->buf_wait.list)) { |
| 537 | HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
| 538 | LIST_DEL(&h1c->buf_wait.list); |
| 539 | LIST_INIT(&h1c->buf_wait.list); |
| 540 | HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
| 541 | } |
| 542 | |
| 543 | h1_release_buf(h1c, &h1c->ibuf); |
| 544 | h1_release_buf(h1c, &h1c->obuf); |
| 545 | |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 546 | if (h1c->task) { |
| 547 | h1c->task->context = NULL; |
| 548 | task_wakeup(h1c->task, TASK_WOKEN_OTHER); |
| 549 | h1c->task = NULL; |
| 550 | } |
| 551 | |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 552 | if (h1c->wait_event.tasklet) |
| 553 | tasklet_free(h1c->wait_event.tasklet); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 554 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 555 | h1s_destroy(h1c->h1s); |
Olivier Houchard | 0e07937 | 2019-04-15 17:51:16 +0200 | [diff] [blame] | 556 | if (conn && h1c->wait_event.events != 0) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 557 | conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events, |
Olivier Houchard | 0e07937 | 2019-04-15 17:51:16 +0200 | [diff] [blame] | 558 | &h1c->wait_event); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 559 | pool_free(pool_head_h1c, h1c); |
| 560 | } |
| 561 | |
Christopher Faulet | 39a96ee | 2019-04-08 10:52:21 +0200 | [diff] [blame] | 562 | if (conn) { |
| 563 | conn->mux = NULL; |
| 564 | conn->ctx = NULL; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 565 | |
Christopher Faulet | 39a96ee | 2019-04-08 10:52:21 +0200 | [diff] [blame] | 566 | conn_stop_tracking(conn); |
| 567 | conn_full_close(conn); |
| 568 | if (conn->destroy_cb) |
| 569 | conn->destroy_cb(conn); |
| 570 | conn_free(conn); |
| 571 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 572 | } |
| 573 | |
| 574 | /******************************************************/ |
| 575 | /* functions below are for the H1 protocol processing */ |
| 576 | /******************************************************/ |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 577 | /* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is |
| 578 | * greater or equal to 1.1 |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 579 | */ |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 580 | 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] | 581 | { |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 582 | const char *p = HTX_SL_REQ_VPTR(sl); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 583 | |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 584 | if ((HTX_SL_REQ_VLEN(sl) == 8) && |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 585 | (*(p + 5) > '1' || |
| 586 | (*(p + 5) == '1' && *(p + 7) >= '1'))) |
| 587 | h1m->flags |= H1_MF_VER_11; |
| 588 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 589 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 590 | /* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is |
| 591 | * greater or equal to 1.1 |
| 592 | */ |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 593 | 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] | 594 | { |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 595 | const char *p = HTX_SL_RES_VPTR(sl); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 596 | |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 597 | if ((HTX_SL_RES_VLEN(sl) == 8) && |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 598 | (*(p + 5) > '1' || |
| 599 | (*(p + 5) == '1' && *(p + 7) >= '1'))) |
| 600 | h1m->flags |= H1_MF_VER_11; |
| 601 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 602 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 603 | /* |
| 604 | * Check the validity of the request version. If the version is valid, it |
| 605 | * returns 1. Otherwise, it returns 0. |
| 606 | */ |
| 607 | static int h1_process_req_vsn(struct h1s *h1s, struct h1m *h1m, union h1_sl sl) |
| 608 | { |
| 609 | struct h1c *h1c = h1s->h1c; |
| 610 | |
| 611 | /* RFC7230#2.6 has enforced the format of the HTTP version string to be |
| 612 | * exactly one digit "." one digit. This check may be disabled using |
| 613 | * option accept-invalid-http-request. |
| 614 | */ |
| 615 | if (!(h1c->px->options2 & PR_O2_REQBUG_OK)) { |
| 616 | if (sl.rq.v.len != 8) |
| 617 | return 0; |
| 618 | |
| 619 | if (*(sl.rq.v.ptr + 4) != '/' || |
| 620 | !isdigit((unsigned char)*(sl.rq.v.ptr + 5)) || |
| 621 | *(sl.rq.v.ptr + 6) != '.' || |
| 622 | !isdigit((unsigned char)*(sl.rq.v.ptr + 7))) |
| 623 | return 0; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 624 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 625 | else if (!sl.rq.v.len) { |
| 626 | /* try to convert HTTP/0.9 requests to HTTP/1.0 */ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 627 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 628 | /* RFC 1945 allows only GET for HTTP/0.9 requests */ |
| 629 | if (sl.rq.meth != HTTP_METH_GET) |
| 630 | return 0; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 631 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 632 | /* HTTP/0.9 requests *must* have a request URI, per RFC 1945 */ |
| 633 | if (!sl.rq.u.len) |
| 634 | return 0; |
| 635 | |
| 636 | /* Add HTTP version */ |
| 637 | sl.rq.v = ist("HTTP/1.0"); |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 638 | return 1; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 639 | } |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 640 | |
| 641 | if ((sl.rq.v.len == 8) && |
Christopher Faulet | aa75b3d | 2018-12-05 16:20:40 +0100 | [diff] [blame] | 642 | ((*(sl.rq.v.ptr + 5) > '1') || |
| 643 | ((*(sl.rq.v.ptr + 5) == '1') && (*(sl.rq.v.ptr + 7) >= '1')))) |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 644 | h1m->flags |= H1_MF_VER_11; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 645 | return 1; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 646 | } |
| 647 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 648 | /* |
| 649 | * Check the validity of the response version. If the version is valid, it |
| 650 | * returns 1. Otherwise, it returns 0. |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 651 | */ |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 652 | static int h1_process_res_vsn(struct h1s *h1s, struct h1m *h1m, union h1_sl sl) |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 653 | { |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 654 | struct h1c *h1c = h1s->h1c; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 655 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 656 | /* RFC7230#2.6 has enforced the format of the HTTP version string to be |
| 657 | * exactly one digit "." one digit. This check may be disabled using |
| 658 | * option accept-invalid-http-request. |
| 659 | */ |
| 660 | if (!(h1c->px->options2 & PR_O2_RSPBUG_OK)) { |
| 661 | if (sl.st.v.len != 8) |
| 662 | return 0; |
| 663 | |
| 664 | if (*(sl.st.v.ptr + 4) != '/' || |
| 665 | !isdigit((unsigned char)*(sl.st.v.ptr + 5)) || |
| 666 | *(sl.st.v.ptr + 6) != '.' || |
| 667 | !isdigit((unsigned char)*(sl.st.v.ptr + 7))) |
| 668 | return 0; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 669 | } |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 670 | |
| 671 | if ((sl.st.v.len == 8) && |
Christopher Faulet | aa75b3d | 2018-12-05 16:20:40 +0100 | [diff] [blame] | 672 | ((*(sl.st.v.ptr + 5) > '1') || |
| 673 | ((*(sl.st.v.ptr + 5) == '1') && (*(sl.st.v.ptr + 7) >= '1')))) |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 674 | h1m->flags |= H1_MF_VER_11; |
| 675 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 676 | return 1; |
| 677 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 678 | |
| 679 | /* Deduce the connection mode of the client connection, depending on the |
| 680 | * configuration and the H1 message flags. This function is called twice, the |
| 681 | * first time when the request is parsed and the second time when the response |
| 682 | * is parsed. |
| 683 | */ |
| 684 | static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m) |
| 685 | { |
| 686 | struct proxy *fe = h1s->h1c->px; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 687 | |
| 688 | if (h1m->flags & H1_MF_RESP) { |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 689 | /* Output direction: second pass */ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 690 | if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) || |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 691 | h1s->status == 101) { |
| 692 | /* Either we've established an explicit tunnel, or we're |
| 693 | * switching the protocol. In both cases, we're very unlikely to |
| 694 | * understand the next protocols. We have to switch to tunnel |
| 695 | * mode, so that we transfer the request and responses then let |
| 696 | * this protocol pass unmodified. When we later implement |
| 697 | * specific parsers for such protocols, we'll want to check the |
| 698 | * Upgrade header which contains information about that protocol |
| 699 | * for responses with status 101 (eg: see RFC2817 about TLS). |
| 700 | */ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 701 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN; |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 702 | } |
| 703 | else if (h1s->flags & H1S_F_WANT_KAL) { |
| 704 | /* By default the client is in KAL mode. CLOSE mode mean |
| 705 | * it is imposed by the client itself. So only change |
| 706 | * KAL mode here. */ |
| 707 | if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) { |
| 708 | /* no length known or explicit close => close */ |
| 709 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
| 710 | } |
| 711 | else if (!(h1m->flags & H1_MF_CONN_KAL) && |
| 712 | (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) { |
| 713 | /* no explict keep-alive and option httpclose => close */ |
| 714 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
| 715 | } |
| 716 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 717 | } |
| 718 | else { |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 719 | /* Input direction: first pass */ |
| 720 | if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) { |
| 721 | /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 722 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 723 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 724 | } |
| 725 | |
| 726 | /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */ |
| 727 | if (h1s->flags & H1S_F_WANT_KAL && fe->state == PR_STSTOPPED) |
| 728 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
| 729 | } |
| 730 | |
| 731 | /* Deduce the connection mode of the client connection, depending on the |
| 732 | * configuration and the H1 message flags. This function is called twice, the |
| 733 | * first time when the request is parsed and the second time when the response |
| 734 | * is parsed. |
| 735 | */ |
| 736 | static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m) |
| 737 | { |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 738 | struct session *sess = h1s->sess; |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 739 | struct proxy *be = h1s->h1c->px; |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 740 | int fe_flags = sess ? sess->fe->options : 0; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 741 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 742 | if (h1m->flags & H1_MF_RESP) { |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 743 | /* Input direction: second pass */ |
| 744 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 745 | if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) || |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 746 | h1s->status == 101) { |
| 747 | /* Either we've established an explicit tunnel, or we're |
| 748 | * switching the protocol. In both cases, we're very unlikely to |
| 749 | * understand the next protocols. We have to switch to tunnel |
| 750 | * mode, so that we transfer the request and responses then let |
| 751 | * this protocol pass unmodified. When we later implement |
| 752 | * specific parsers for such protocols, we'll want to check the |
| 753 | * Upgrade header which contains information about that protocol |
| 754 | * for responses with status 101 (eg: see RFC2817 about TLS). |
| 755 | */ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 756 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN; |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 757 | } |
| 758 | else if (h1s->flags & H1S_F_WANT_KAL) { |
| 759 | /* By default the server is in KAL mode. CLOSE mode mean |
| 760 | * it is imposed by haproxy itself. So only change KAL |
| 761 | * mode here. */ |
| 762 | if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO || |
| 763 | !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){ |
| 764 | /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */ |
| 765 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
| 766 | } |
| 767 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 768 | } |
Christopher Faulet | 7003378 | 2018-12-05 13:50:11 +0100 | [diff] [blame] | 769 | else { |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 770 | /* Output direction: first pass */ |
| 771 | if (h1m->flags & H1_MF_CONN_CLO) { |
| 772 | /* explicit close => close */ |
Christopher Faulet | 7003378 | 2018-12-05 13:50:11 +0100 | [diff] [blame] | 773 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 774 | } |
| 775 | else if (!(h1m->flags & H1_MF_CONN_KAL) && |
| 776 | ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL || |
| 777 | (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL || |
| 778 | (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO || |
| 779 | (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) { |
| 780 | /* no explicit keep-alive option httpclose/server-close => close */ |
| 781 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
| 782 | } |
Christopher Faulet | 7003378 | 2018-12-05 13:50:11 +0100 | [diff] [blame] | 783 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 784 | |
| 785 | /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */ |
| 786 | if (h1s->flags & H1S_F_WANT_KAL && be->state == PR_STSTOPPED) |
| 787 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 788 | } |
| 789 | |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 790 | 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] | 791 | { |
| 792 | struct proxy *px = h1s->h1c->px; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 793 | |
| 794 | /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage" |
| 795 | * token is found |
| 796 | */ |
| 797 | 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] | 798 | return; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 799 | |
| 800 | if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) { |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 801 | if (!(h1m->flags & H1_MF_VER_11)) |
| 802 | *conn_val = ist("keep-alive"); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 803 | } |
| 804 | else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */ |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 805 | if (h1m->flags & H1_MF_VER_11) |
| 806 | *conn_val = ist("close"); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 807 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 808 | } |
| 809 | |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 810 | 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] | 811 | { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 812 | /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage" |
| 813 | * token is found |
| 814 | */ |
| 815 | 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] | 816 | return; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 817 | |
| 818 | if (h1s->flags & H1S_F_WANT_KAL) { |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 819 | if (!(h1m->flags & H1_MF_VER_11) || |
| 820 | !((h1m->flags & h1s->req.flags) & H1_MF_VER_11)) |
| 821 | *conn_val = ist("keep-alive"); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 822 | } |
| 823 | else { /* H1S_F_WANT_CLO */ |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 824 | if (h1m->flags & H1_MF_VER_11) |
| 825 | *conn_val = ist("close"); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 826 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 827 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 828 | |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 829 | 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] | 830 | { |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 831 | if (!conn_is_back(h1s->h1c->conn)) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 832 | h1_set_cli_conn_mode(h1s, h1m); |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 833 | else |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 834 | h1_set_srv_conn_mode(h1s, h1m); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 835 | } |
| 836 | |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 837 | static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val) |
| 838 | { |
| 839 | if (!conn_is_back(h1s->h1c->conn)) |
| 840 | h1_set_cli_conn_mode(h1s, h1m); |
| 841 | else |
| 842 | h1_set_srv_conn_mode(h1s, h1m); |
| 843 | |
| 844 | if (!(h1m->flags & H1_MF_RESP)) |
| 845 | h1_update_req_conn_value(h1s, h1m, conn_val); |
| 846 | else |
| 847 | h1_update_res_conn_value(h1s, h1m, conn_val); |
| 848 | } |
Christopher Faulet | e44769b | 2018-11-29 23:01:45 +0100 | [diff] [blame] | 849 | |
Christopher Faulet | a99ff4d | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 850 | /* Try to adjust the case of the message header name using the global map |
| 851 | * <hdrs_map>. |
| 852 | */ |
| 853 | static void h1_adjust_case_outgoing_hdr(struct h1s *h1s, struct h1m *h1m, struct ist *name) |
| 854 | { |
| 855 | struct ebpt_node *node; |
| 856 | struct h1_hdr_entry *entry; |
| 857 | |
| 858 | /* No entry in the map, do nothing */ |
| 859 | if (eb_is_empty(&hdrs_map.map)) |
| 860 | return; |
| 861 | |
| 862 | /* No conversion fo the request headers */ |
| 863 | if (!(h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGSRV)) |
| 864 | return; |
| 865 | |
| 866 | /* No conversion fo the response headers */ |
| 867 | if ((h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGCLI)) |
| 868 | return; |
| 869 | |
| 870 | node = ebis_lookup_len(&hdrs_map.map, name->ptr, name->len); |
| 871 | if (!node) |
| 872 | return; |
| 873 | entry = container_of(node, struct h1_hdr_entry, node); |
| 874 | name->ptr = entry->name.ptr; |
| 875 | name->len = entry->name.len; |
| 876 | } |
| 877 | |
Christopher Faulet | e44769b | 2018-11-29 23:01:45 +0100 | [diff] [blame] | 878 | /* Append the description of what is present in error snapshot <es> into <out>. |
| 879 | * The description must be small enough to always fit in a buffer. The output |
| 880 | * buffer may be the trash so the trash must not be used inside this function. |
| 881 | */ |
| 882 | static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es) |
| 883 | { |
| 884 | chunk_appendf(out, |
Christopher Faulet | aa75b3d | 2018-12-05 16:20:40 +0100 | [diff] [blame] | 885 | " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n" |
| 886 | " H1 msg state %s(%d), H1 msg flags 0x%08x\n" |
| 887 | " H1 chunk len %lld bytes, H1 body len %lld bytes :\n", |
| 888 | es->ctx.h1.c_flags, es->ctx.h1.s_flags, |
| 889 | h1m_state_str(es->ctx.h1.state), es->ctx.h1.state, |
| 890 | 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] | 891 | } |
| 892 | /* |
| 893 | * Capture a bad request or response and archive it in the proxy's structure. |
| 894 | * By default it tries to report the error position as h1m->err_pos. However if |
| 895 | * this one is not set, it will then report h1m->next, which is the last known |
| 896 | * parsing point. The function is able to deal with wrapping buffers. It always |
| 897 | * displays buffers as a contiguous area starting at buf->p. The direction is |
| 898 | * determined thanks to the h1m's flags. |
| 899 | */ |
| 900 | static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s, |
| 901 | struct h1m *h1m, struct buffer *buf) |
| 902 | { |
Christopher Faulet | 8ec3d24 | 2020-10-15 17:19:46 +0200 | [diff] [blame] | 903 | struct session *sess = h1s->sess; |
Christopher Faulet | e44769b | 2018-11-29 23:01:45 +0100 | [diff] [blame] | 904 | struct proxy *proxy = h1c->px; |
| 905 | struct proxy *other_end = sess->fe; |
| 906 | union error_snapshot_ctx ctx; |
| 907 | |
Willy Tarreau | 598d7fc | 2018-12-18 18:10:38 +0100 | [diff] [blame] | 908 | if (h1s->cs->data && !(h1m->flags & H1_MF_RESP)) |
Christopher Faulet | e44769b | 2018-11-29 23:01:45 +0100 | [diff] [blame] | 909 | other_end = si_strm(h1s->cs->data)->be; |
| 910 | |
| 911 | /* http-specific part now */ |
| 912 | ctx.h1.state = h1m->state; |
| 913 | ctx.h1.c_flags = h1c->flags; |
| 914 | ctx.h1.s_flags = h1s->flags; |
| 915 | ctx.h1.m_flags = h1m->flags; |
| 916 | ctx.h1.m_clen = h1m->curr_len; |
| 917 | ctx.h1.m_blen = h1m->body_len; |
| 918 | |
| 919 | proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end, |
| 920 | h1c->conn->target, sess, buf, 0, 0, |
Christopher Faulet | aa75b3d | 2018-12-05 16:20:40 +0100 | [diff] [blame] | 921 | (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next, |
| 922 | &ctx, h1_show_error_snapshot); |
Christopher Faulet | e44769b | 2018-11-29 23:01:45 +0100 | [diff] [blame] | 923 | } |
| 924 | |
Christopher Faulet | adb2220 | 2018-12-12 10:32:09 +0100 | [diff] [blame] | 925 | /* Emit the chunksize followed by a CRLF in front of data of the buffer |
| 926 | * <buf>. It goes backwards and starts with the byte before the buffer's |
| 927 | * head. The caller is responsible for ensuring there is enough room left before |
| 928 | * the buffer's head for the string. |
| 929 | */ |
| 930 | static void h1_emit_chunk_size(struct buffer *buf, size_t chksz) |
| 931 | { |
| 932 | char *beg, *end; |
| 933 | |
| 934 | beg = end = b_head(buf); |
| 935 | *--beg = '\n'; |
| 936 | *--beg = '\r'; |
| 937 | do { |
| 938 | *--beg = hextab[chksz & 0xF]; |
| 939 | } while (chksz >>= 4); |
| 940 | buf->head -= (end - beg); |
| 941 | b_add(buf, end - beg); |
| 942 | } |
| 943 | |
| 944 | /* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for |
| 945 | * ensuring there is enough room left in the buffer for the string. */ |
| 946 | static void h1_emit_chunk_crlf(struct buffer *buf) |
| 947 | { |
| 948 | *(b_peek(buf, b_data(buf))) = '\r'; |
| 949 | *(b_peek(buf, b_data(buf) + 1)) = '\n'; |
| 950 | b_add(buf, 2); |
| 951 | } |
| 952 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 953 | /* |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 954 | * Switch the request to tunnel mode. This function must only be called for |
Christopher Faulet | ac4778c | 2019-11-15 11:14:23 +0100 | [diff] [blame] | 955 | * CONNECT requests. On the client side, if the response is not finished, the |
| 956 | * mux is mark as busy on input. |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 957 | */ |
| 958 | static void h1_set_req_tunnel_mode(struct h1s *h1s) |
| 959 | { |
| 960 | h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK); |
| 961 | h1s->req.state = H1_MSG_TUNNEL; |
Christopher Faulet | ac4778c | 2019-11-15 11:14:23 +0100 | [diff] [blame] | 962 | if (!conn_is_back(h1s->h1c->conn) && h1s->res.state < H1_MSG_DONE) |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 963 | h1s->h1c->flags |= H1C_F_IN_BUSY; |
Christopher Faulet | ac4778c | 2019-11-15 11:14:23 +0100 | [diff] [blame] | 964 | else if (h1s->h1c->flags & H1C_F_IN_BUSY) { |
| 965 | h1s->h1c->flags &= ~H1C_F_IN_BUSY; |
| 966 | tasklet_wakeup(h1s->h1c->wait_event.tasklet); |
| 967 | } |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 968 | } |
| 969 | |
| 970 | /* |
| 971 | * Switch the response to tunnel mode. This function must only be called on |
Christopher Faulet | ac4778c | 2019-11-15 11:14:23 +0100 | [diff] [blame] | 972 | * successfull replies to CONNECT requests or on protocol switching. In this |
| 973 | * last case, this function takes care to switch the request to tunnel mode if |
| 974 | * possible. On the server side, if the request is not finished, the mux is mark |
| 975 | * as busy on input. |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 976 | */ |
| 977 | static void h1_set_res_tunnel_mode(struct h1s *h1s) |
| 978 | { |
Christopher Faulet | ac4778c | 2019-11-15 11:14:23 +0100 | [diff] [blame] | 979 | /* On protocol switching, switch the request to tunnel mode if it is in |
| 980 | * DONE state. Otherwise we will wait the end of the request to switch |
| 981 | * it in tunnel mode. |
| 982 | */ |
| 983 | if (h1s->status == 101 && h1s->req.state == H1_MSG_DONE) { |
| 984 | h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK); |
| 985 | h1s->req.state = H1_MSG_TUNNEL; |
| 986 | } |
| 987 | |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 988 | h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK); |
| 989 | h1s->res.state = H1_MSG_TUNNEL; |
| 990 | if (conn_is_back(h1s->h1c->conn) && h1s->req.state < H1_MSG_DONE) |
| 991 | h1s->h1c->flags |= H1C_F_IN_BUSY; |
Christopher Faulet | ac4778c | 2019-11-15 11:14:23 +0100 | [diff] [blame] | 992 | else if (h1s->h1c->flags & H1C_F_IN_BUSY) { |
| 993 | h1s->h1c->flags &= ~H1C_F_IN_BUSY; |
| 994 | tasklet_wakeup(h1s->h1c->wait_event.tasklet); |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 995 | } |
| 996 | } |
| 997 | |
Christopher Faulet | 82f0160 | 2019-05-24 16:50:16 +0200 | [diff] [blame] | 998 | /* Estimate the size of the HTX headers after the parsing, including the EOH. */ |
| 999 | static size_t h1_eval_htx_hdrs_size(struct http_hdr *hdrs) |
| 1000 | { |
| 1001 | size_t sz = 0; |
| 1002 | int i; |
| 1003 | |
| 1004 | for (i = 0; hdrs[i].n.len; i++) |
| 1005 | sz += sizeof(struct htx_blk) + hdrs[i].n.len + hdrs[i].v.len; |
| 1006 | sz += sizeof(struct htx_blk) + 1; |
| 1007 | return sz; |
| 1008 | } |
| 1009 | |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1010 | /* Estimate the size of the HTX request after the parsing. */ |
| 1011 | static size_t h1_eval_htx_req_size(struct h1m *h1m, union h1_sl *h1sl, struct http_hdr *hdrs) |
| 1012 | { |
| 1013 | size_t sz; |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1014 | |
| 1015 | /* size of the HTX start-line */ |
Christopher Faulet | 1d76cef | 2019-09-03 16:16:50 +0200 | [diff] [blame] | 1016 | sz = sizeof(struct htx_blk) + sizeof(struct htx_sl) + h1sl->rq.m.len + h1sl->rq.u.len + h1sl->rq.v.len; |
Christopher Faulet | 82f0160 | 2019-05-24 16:50:16 +0200 | [diff] [blame] | 1017 | sz += h1_eval_htx_hdrs_size(hdrs); |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1018 | return sz; |
| 1019 | } |
| 1020 | |
| 1021 | /* Estimate the size of the HTX response after the parsing. */ |
| 1022 | static size_t h1_eval_htx_res_size(struct h1m *h1m, union h1_sl *h1sl, struct http_hdr *hdrs) |
| 1023 | { |
| 1024 | size_t sz; |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1025 | |
| 1026 | /* size of the HTX start-line */ |
Christopher Faulet | 1d76cef | 2019-09-03 16:16:50 +0200 | [diff] [blame] | 1027 | sz = sizeof(struct htx_blk) + sizeof(struct htx_sl) + h1sl->st.v.len + h1sl->st.c.len + h1sl->st.r.len; |
Christopher Faulet | 82f0160 | 2019-05-24 16:50:16 +0200 | [diff] [blame] | 1028 | sz += h1_eval_htx_hdrs_size(hdrs); |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1029 | return sz; |
| 1030 | } |
| 1031 | |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 1032 | /* |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1033 | * Add the EOM in the HTX message and switch the message to the DONE state. It |
| 1034 | * returns the number of bytes parsed if > 0, or 0 if iet couldn't proceed. This |
| 1035 | * functions is responsible to update the parser state <h1m>. It also add the |
| 1036 | * flag CS_FL_EOI on the CS. |
| 1037 | */ |
| 1038 | static size_t h1_process_eom(struct h1s *h1s, struct h1m *h1m, struct htx *htx, size_t max) |
| 1039 | { |
Willy Tarreau | 6203815 | 2019-08-23 09:29:29 +0200 | [diff] [blame] | 1040 | if (max < sizeof(struct htx_blk) + 1 || !htx_add_endof(htx, HTX_BLK_EOM)) { |
| 1041 | h1s->flags |= H1S_F_APPEND_EOM; |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1042 | return 0; |
Willy Tarreau | 6203815 | 2019-08-23 09:29:29 +0200 | [diff] [blame] | 1043 | } |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1044 | |
Willy Tarreau | 6203815 | 2019-08-23 09:29:29 +0200 | [diff] [blame] | 1045 | h1s->flags &= ~H1S_F_APPEND_EOM; |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1046 | h1m->state = H1_MSG_DONE; |
Christopher Faulet | 71a5a75 | 2021-02-08 17:18:01 +0100 | [diff] [blame] | 1047 | /* Set EOI on conn-stream in DONE state iff: |
| 1048 | * - it is a response |
| 1049 | * - it is a request but no a protocol upgrade nor a CONNECT |
| 1050 | * |
| 1051 | * If not set, Wait the response to do so or not depending on the status |
| 1052 | * code. |
| 1053 | */ |
| 1054 | if ((h1m->flags & H1_MF_RESP) || ((h1s->meth != HTTP_METH_CONNECT) && !(h1m->flags & H1_MF_CONN_UPG))) |
Christopher Faulet | 1cf96cd | 2020-12-07 18:21:27 +0100 | [diff] [blame] | 1055 | h1s->cs->flags |= CS_FL_EOI; |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1056 | return (sizeof(struct htx_blk) + 1); |
| 1057 | } |
| 1058 | |
| 1059 | /* |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1060 | * 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] | 1061 | * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR |
| 1062 | * flag and filling h1s->err_pos and h1s->err_state fields. This functions is |
Joseph Herlant | 30bc509 | 2018-11-25 10:52:20 -0800 | [diff] [blame] | 1063 | * responsible to update the parser state <h1m>. |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1064 | */ |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1065 | static size_t h1_process_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx, |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1066 | struct buffer *buf, size_t *ofs, size_t max) |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1067 | { |
Christopher Faulet | a39d8ad | 2019-05-15 15:54:39 +0200 | [diff] [blame] | 1068 | struct htx_sl *sl; |
Christopher Faulet | e4ab11b | 2019-06-11 15:05:37 +0200 | [diff] [blame] | 1069 | struct http_hdr hdrs[global.tune.max_http_hdr]; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 1070 | union h1_sl h1sl; |
| 1071 | unsigned int flags = HTX_SL_F_NONE; |
Christopher Faulet | a39d8ad | 2019-05-15 15:54:39 +0200 | [diff] [blame] | 1072 | size_t used; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1073 | int ret = 0; |
| 1074 | |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1075 | if (!max || !b_data(buf)) |
Christopher Faulet | d44ad5b | 2018-11-19 21:52:12 +0100 | [diff] [blame] | 1076 | goto end; |
| 1077 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1078 | /* Realing input buffer if necessary */ |
| 1079 | if (b_head(buf) + b_data(buf) > b_wrap(buf)) |
| 1080 | b_slow_realign(buf, trash.area, 0); |
| 1081 | |
Christopher Faulet | 842f41f | 2019-09-25 09:10:46 +0200 | [diff] [blame] | 1082 | if (!(h1s->flags & H1S_F_NOT_FIRST) && !(h1m->flags & H1_MF_RESP)) { |
Christopher Faulet | 0ef372a | 2019-04-08 10:57:20 +0200 | [diff] [blame] | 1083 | /* Try to match H2 preface before parsing the request headers. */ |
| 1084 | ret = b_isteq(buf, 0, b_data(buf), ist(H2_CONN_PREFACE)); |
| 1085 | if (ret > 0) |
| 1086 | goto h2c_upgrade; |
| 1087 | } |
| 1088 | |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1089 | ret = h1_headers_to_hdr_list(b_peek(buf, *ofs), b_tail(buf), |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 1090 | hdrs, sizeof(hdrs)/sizeof(hdrs[0]), h1m, &h1sl); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1091 | if (ret <= 0) { |
Willy Tarreau | 9a408ab | 2019-08-23 08:11:36 +0200 | [diff] [blame] | 1092 | /* Incomplete or invalid message. If the input buffer only |
| 1093 | * contains headers and is full, which is detected by it being |
| 1094 | * full and the offset to be zero, it's an error because |
| 1095 | * headers are too large to be handled by the parser. */ |
| 1096 | if (ret < 0 || (!ret && !*ofs && !buf_room_for_htx_data(buf))) |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1097 | goto error; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1098 | goto end; |
| 1099 | } |
| 1100 | |
Christopher Faulet | b4bad50 | 2019-10-11 14:22:00 +0200 | [diff] [blame] | 1101 | if (h1m->err_pos >= 0) { |
| 1102 | /* Maybe we found an error during the parsing while we were |
| 1103 | * configured not to block on that, so we have to capture it |
| 1104 | * now. |
| 1105 | */ |
| 1106 | h1_capture_bad_message(h1s->h1c, h1s, h1m, buf); |
| 1107 | } |
| 1108 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1109 | /* messages headers fully parsed, do some checks to prepare the body |
| 1110 | * parsing. |
| 1111 | */ |
| 1112 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1113 | /* Save the request's method or the response's status, check if the body |
| 1114 | * length is known and check the VSN validity */ |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1115 | if (!(h1m->flags & H1_MF_RESP)) { |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 1116 | h1s->meth = h1sl.rq.meth; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1117 | |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 1118 | /* By default, request have always a known length */ |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1119 | h1m->flags |= H1_MF_XFER_LEN; |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 1120 | |
| 1121 | if (h1s->meth == HTTP_METH_CONNECT) { |
| 1122 | /* Switch CONNECT requests to tunnel mode */ |
| 1123 | h1_set_req_tunnel_mode(h1s); |
| 1124 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1125 | |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 1126 | if (!h1_process_req_vsn(h1s, h1m, h1sl)) { |
| 1127 | h1m->err_pos = h1sl.rq.v.ptr - b_head(buf); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1128 | h1m->err_state = h1m->state; |
| 1129 | goto vsn_error; |
| 1130 | } |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1131 | } |
| 1132 | else { |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 1133 | h1s->status = h1sl.st.status; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1134 | |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 1135 | if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) || |
| 1136 | h1s->status == 101) { |
| 1137 | /* Switch successfull replies to CONNECT requests and |
| 1138 | * protocol switching to tunnel mode. */ |
| 1139 | h1_set_res_tunnel_mode(h1s); |
| 1140 | } |
| 1141 | else if ((h1s->meth == HTTP_METH_HEAD) || |
| 1142 | (h1s->status >= 100 && h1s->status < 200) || |
| 1143 | (h1s->status == 204) || (h1s->status == 304)) { |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 1144 | /* Responses known to have no body. */ |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1145 | h1m->flags &= ~(H1_MF_CLEN|H1_MF_CHNK); |
| 1146 | h1m->flags |= H1_MF_XFER_LEN; |
| 1147 | h1m->curr_len = h1m->body_len = 0; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1148 | } |
| 1149 | else if (h1m->flags & (H1_MF_CLEN|H1_MF_CHNK)) { |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 1150 | /* Responses with a known body length. */ |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1151 | h1m->flags |= H1_MF_XFER_LEN; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1152 | } |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 1153 | else { |
| 1154 | /* Responses with an unknown body length */ |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1155 | h1m->state = H1_MSG_TUNNEL; |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 1156 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1157 | |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 1158 | if (!h1_process_res_vsn(h1s, h1m, h1sl)) { |
| 1159 | h1m->err_pos = h1sl.st.v.ptr - b_head(buf); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1160 | h1m->err_state = h1m->state; |
| 1161 | goto vsn_error; |
| 1162 | } |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1163 | } |
| 1164 | |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 1165 | /* Set HTX start-line flags */ |
| 1166 | if (h1m->flags & H1_MF_VER_11) |
| 1167 | flags |= HTX_SL_F_VER_11; |
| 1168 | if (h1m->flags & H1_MF_XFER_ENC) |
| 1169 | flags |= HTX_SL_F_XFER_ENC; |
| 1170 | if (h1m->flags & H1_MF_XFER_LEN) { |
| 1171 | flags |= HTX_SL_F_XFER_LEN; |
| 1172 | if (h1m->flags & H1_MF_CHNK) |
| 1173 | flags |= HTX_SL_F_CHNK; |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 1174 | else if (h1m->flags & H1_MF_CLEN) { |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 1175 | flags |= HTX_SL_F_CLEN; |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 1176 | if (h1m->body_len == 0) |
| 1177 | flags |= HTX_SL_F_BODYLESS; |
| 1178 | } |
| 1179 | else |
Christopher Faulet | b2db4fa | 2018-11-27 16:51:09 +0100 | [diff] [blame] | 1180 | flags |= HTX_SL_F_BODYLESS; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 1181 | } |
| 1182 | |
Christopher Faulet | a39d8ad | 2019-05-15 15:54:39 +0200 | [diff] [blame] | 1183 | used = htx_used_space(htx); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1184 | if (!(h1m->flags & H1_MF_RESP)) { |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 1185 | if (h1_eval_htx_req_size(h1m, &h1sl, hdrs) > max) { |
| 1186 | if (htx_is_empty(htx)) |
| 1187 | goto error; |
| 1188 | h1m_init_req(h1m); |
| 1189 | h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR); |
| 1190 | ret = 0; |
| 1191 | goto end; |
| 1192 | } |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1193 | |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 1194 | sl = htx_add_stline(htx, HTX_BLK_REQ_SL, flags, h1sl.rq.m, h1sl.rq.u, h1sl.rq.v); |
| 1195 | if (!sl || !htx_add_all_headers(htx, hdrs)) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1196 | goto error; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 1197 | sl->info.req.meth = h1s->meth; |
Christopher Faulet | 42993a8 | 2019-06-14 10:31:25 +0200 | [diff] [blame] | 1198 | |
| 1199 | /* Check if the uri contains an explicit scheme and if it is |
| 1200 | * "http" or "https". */ |
| 1201 | if (h1sl.rq.u.len && h1sl.rq.u.ptr[0] != '/') { |
| 1202 | sl->flags |= HTX_SL_F_HAS_SCHM; |
| 1203 | if (h1sl.rq.u.len > 4 && (h1sl.rq.u.ptr[0] | 0x20) == 'h') |
| 1204 | sl->flags |= ((h1sl.rq.u.ptr[4] == ':') ? HTX_SL_F_SCHM_HTTP : HTX_SL_F_SCHM_HTTPS); |
| 1205 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1206 | } |
| 1207 | else { |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 1208 | if (h1_eval_htx_res_size(h1m, &h1sl, hdrs) > max) { |
| 1209 | if (htx_is_empty(htx)) |
| 1210 | goto error; |
| 1211 | h1m_init_res(h1m); |
| 1212 | h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR); |
| 1213 | ret = 0; |
| 1214 | goto end; |
| 1215 | } |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1216 | |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 1217 | flags |= HTX_SL_F_IS_RESP; |
| 1218 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, h1sl.st.v, h1sl.st.c, h1sl.st.r); |
| 1219 | if (!sl || !htx_add_all_headers(htx, hdrs)) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1220 | goto error; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 1221 | sl->info.res.status = h1s->status; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1222 | } |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 1223 | |
Christopher Faulet | a39d8ad | 2019-05-15 15:54:39 +0200 | [diff] [blame] | 1224 | /* Set bytes used in the HTX mesage for the headers now */ |
| 1225 | sl->hdrs_bytes = htx_used_space(htx) - used; |
| 1226 | |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1227 | h1_process_input_conn_mode(h1s, h1m, htx); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1228 | |
| 1229 | /* If body length cannot be determined, set htx->extra to |
| 1230 | * ULLONG_MAX. This value is impossible in other cases. |
| 1231 | */ |
| 1232 | htx->extra = ((h1m->flags & H1_MF_XFER_LEN) ? h1m->curr_len : ULLONG_MAX); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1233 | *ofs += ret; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1234 | end: |
| 1235 | return ret; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1236 | |
| 1237 | error: |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1238 | h1m->err_state = h1m->state; |
| 1239 | h1m->err_pos = h1m->next; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1240 | vsn_error: |
| 1241 | h1s->flags |= (!(h1m->flags & H1_MF_RESP) ? H1S_F_REQ_ERROR : H1S_F_RES_ERROR); |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 1242 | h1s->cs->flags |= CS_FL_EOI; |
| 1243 | htx->flags |= HTX_FL_PARSING_ERROR; |
Christopher Faulet | e44769b | 2018-11-29 23:01:45 +0100 | [diff] [blame] | 1244 | h1_capture_bad_message(h1s->h1c, h1s, h1m, buf); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1245 | ret = 0; |
| 1246 | goto end; |
Christopher Faulet | 0ef372a | 2019-04-08 10:57:20 +0200 | [diff] [blame] | 1247 | |
| 1248 | h2c_upgrade: |
| 1249 | h1s->h1c->flags |= H1C_F_UPG_H2C; |
Christopher Faulet | 8e9e3ef | 2019-05-17 09:14:10 +0200 | [diff] [blame] | 1250 | h1s->cs->flags |= CS_FL_EOI; |
Christopher Faulet | 0ef372a | 2019-04-08 10:57:20 +0200 | [diff] [blame] | 1251 | htx->flags |= HTX_FL_UPGRADE; |
| 1252 | ret = 0; |
| 1253 | goto end; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1254 | } |
| 1255 | |
| 1256 | /* |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1257 | * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it |
| 1258 | * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1259 | * and filling h1s->err_pos and h1s->err_state fields. This functions is |
Joseph Herlant | 30bc509 | 2018-11-25 10:52:20 -0800 | [diff] [blame] | 1260 | * responsible to update the parser state <h1m>. |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1261 | */ |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1262 | static size_t h1_process_data(struct h1s *h1s, struct h1m *h1m, struct htx *htx, |
Christopher Faulet | aa75b3d | 2018-12-05 16:20:40 +0100 | [diff] [blame] | 1263 | struct buffer *buf, size_t *ofs, size_t max, |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1264 | struct buffer *htxbuf) |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1265 | { |
| 1266 | size_t total = 0; |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1267 | int32_t ret = 0; |
Christopher Faulet | afe5784 | 2019-01-21 11:55:02 +0100 | [diff] [blame] | 1268 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1269 | if (h1m->flags & H1_MF_XFER_LEN) { |
| 1270 | if (h1m->flags & H1_MF_CLEN) { |
| 1271 | /* content-length: read only h2m->body_len */ |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1272 | ret = htx_get_max_blksz(htx, max); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1273 | if ((uint64_t)ret > h1m->curr_len) |
| 1274 | ret = h1m->curr_len; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1275 | if (ret > b_contig_data(buf, *ofs)) |
| 1276 | ret = b_contig_data(buf, *ofs); |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1277 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1278 | if (ret) { |
Willy Tarreau | 78f548f | 2018-12-05 10:02:39 +0100 | [diff] [blame] | 1279 | /* very often with large files we'll face the following |
| 1280 | * situation : |
| 1281 | * - htx is empty and points to <htxbuf> |
| 1282 | * - ret == buf->data |
| 1283 | * - buf->head == sizeof(struct htx) |
| 1284 | * => we can swap the buffers and place an htx header into |
| 1285 | * the target buffer instead |
| 1286 | */ |
Willy Tarreau | 0a7ef02 | 2019-05-28 10:30:11 +0200 | [diff] [blame] | 1287 | int32_t try = ret; |
| 1288 | |
Willy Tarreau | 78f548f | 2018-12-05 10:02:39 +0100 | [diff] [blame] | 1289 | if (unlikely(htx_is_empty(htx) && ret == b_data(buf) && |
| 1290 | !*ofs && b_head_ofs(buf) == sizeof(struct htx))) { |
| 1291 | void *raw_area = buf->area; |
| 1292 | void *htx_area = htxbuf->area; |
| 1293 | struct htx_blk *blk; |
| 1294 | |
| 1295 | buf->area = htx_area; |
| 1296 | htxbuf->area = raw_area; |
| 1297 | htx = (struct htx *)htxbuf->area; |
| 1298 | htx->size = htxbuf->size - sizeof(*htx); |
| 1299 | htx_reset(htx); |
| 1300 | b_set_data(htxbuf, b_size(htxbuf)); |
| 1301 | |
| 1302 | blk = htx_add_blk(htx, HTX_BLK_DATA, ret); |
| 1303 | blk->info += ret; |
| 1304 | /* nothing else to do, the old buffer now contains an |
| 1305 | * empty pre-initialized HTX header |
| 1306 | */ |
| 1307 | } |
Willy Tarreau | 0a7ef02 | 2019-05-28 10:30:11 +0200 | [diff] [blame] | 1308 | else { |
| 1309 | ret = htx_add_data(htx, ist2(b_peek(buf, *ofs), try)); |
| 1310 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1311 | h1m->curr_len -= ret; |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1312 | max -= sizeof(struct htx_blk) + ret; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1313 | *ofs += ret; |
| 1314 | total += ret; |
Willy Tarreau | 0a7ef02 | 2019-05-28 10:30:11 +0200 | [diff] [blame] | 1315 | if (ret < try) |
| 1316 | goto end; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1317 | } |
| 1318 | |
| 1319 | if (!h1m->curr_len) { |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1320 | if (!h1_process_eom(h1s, h1m, htx, max)) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1321 | goto end; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1322 | } |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1323 | } |
| 1324 | else if (h1m->flags & H1_MF_CHNK) { |
| 1325 | new_chunk: |
| 1326 | /* te:chunked : parse chunks */ |
| 1327 | if (h1m->state == H1_MSG_CHUNK_CRLF) { |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1328 | ret = h1_skip_chunk_crlf(buf, *ofs, b_data(buf)); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1329 | if (ret <= 0) |
| 1330 | goto end; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1331 | h1m->state = H1_MSG_CHUNK_SIZE; |
| 1332 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1333 | *ofs += ret; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1334 | total += ret; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1335 | } |
| 1336 | |
| 1337 | if (h1m->state == H1_MSG_CHUNK_SIZE) { |
| 1338 | unsigned int chksz; |
| 1339 | |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1340 | ret = h1_parse_chunk_size(buf, *ofs, b_data(buf), &chksz); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1341 | if (ret <= 0) |
| 1342 | goto end; |
Christopher Faulet | 54b5e21 | 2019-06-04 10:08:28 +0200 | [diff] [blame] | 1343 | h1m->state = ((!chksz) ? H1_MSG_TRAILERS : H1_MSG_DATA); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1344 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1345 | h1m->curr_len = chksz; |
| 1346 | h1m->body_len += chksz; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1347 | *ofs += ret; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1348 | total += ret; |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1349 | |
| 1350 | if (!h1m->curr_len) |
| 1351 | goto end; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1352 | } |
| 1353 | |
| 1354 | if (h1m->state == H1_MSG_DATA) { |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1355 | ret = htx_get_max_blksz(htx, max); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1356 | if ((uint64_t)ret > h1m->curr_len) |
| 1357 | ret = h1m->curr_len; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1358 | if (ret > b_contig_data(buf, *ofs)) |
| 1359 | ret = b_contig_data(buf, *ofs); |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1360 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1361 | if (ret) { |
Willy Tarreau | 0a7ef02 | 2019-05-28 10:30:11 +0200 | [diff] [blame] | 1362 | int32_t try = ret; |
| 1363 | |
| 1364 | ret = htx_add_data(htx, ist2(b_peek(buf, *ofs), try)); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1365 | h1m->curr_len -= ret; |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1366 | max -= sizeof(struct htx_blk) + ret; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1367 | *ofs += ret; |
| 1368 | total += ret; |
Willy Tarreau | 0a7ef02 | 2019-05-28 10:30:11 +0200 | [diff] [blame] | 1369 | if (ret < try) |
| 1370 | goto end; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1371 | } |
| 1372 | if (!h1m->curr_len) { |
| 1373 | h1m->state = H1_MSG_CHUNK_CRLF; |
| 1374 | goto new_chunk; |
| 1375 | } |
| 1376 | goto end; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1377 | } |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1378 | } |
| 1379 | else { |
| 1380 | /* XFER_LEN is set but not CLEN nor CHNK, it means there |
| 1381 | * is no body. Switch the message in DONE state |
| 1382 | */ |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1383 | if (!h1_process_eom(h1s, h1m, htx, max)) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1384 | goto end; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1385 | } |
| 1386 | } |
| 1387 | else { |
| 1388 | /* no content length, read till SHUTW */ |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1389 | ret = htx_get_max_blksz(htx, max); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1390 | if (ret > b_contig_data(buf, *ofs)) |
| 1391 | ret = b_contig_data(buf, *ofs); |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1392 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1393 | if (ret) { |
Willy Tarreau | 0a7ef02 | 2019-05-28 10:30:11 +0200 | [diff] [blame] | 1394 | int32_t try = ret; |
| 1395 | |
| 1396 | ret = htx_add_data(htx, ist2(b_peek(buf, *ofs), try)); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1397 | |
Olivier Houchard | cf42d5a | 2018-12-04 17:41:58 +0100 | [diff] [blame] | 1398 | *ofs += ret; |
| 1399 | total = ret; |
Willy Tarreau | 0a7ef02 | 2019-05-28 10:30:11 +0200 | [diff] [blame] | 1400 | if (ret < try) |
| 1401 | goto end; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1402 | } |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1403 | } |
| 1404 | |
| 1405 | end: |
| 1406 | if (ret < 0) { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1407 | h1s->flags |= (!(h1m->flags & H1_MF_RESP) ? H1S_F_REQ_ERROR : H1S_F_RES_ERROR); |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 1408 | h1s->cs->flags |= CS_FL_EOI; |
| 1409 | htx->flags |= HTX_FL_PARSING_ERROR; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1410 | h1m->err_state = h1m->state; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1411 | h1m->err_pos = *ofs + max + ret; |
Christopher Faulet | e44769b | 2018-11-29 23:01:45 +0100 | [diff] [blame] | 1412 | h1_capture_bad_message(h1s->h1c, h1s, h1m, buf); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1413 | return 0; |
| 1414 | } |
Willy Tarreau | 7e9dd73 | 2020-01-17 16:19:34 +0100 | [diff] [blame] | 1415 | |
Christopher Faulet | afadc9a | 2020-07-03 14:51:15 +0200 | [diff] [blame] | 1416 | if (h1s->cs && !(h1m->flags & H1_MF_CHNK) && |
| 1417 | ((h1m->state == H1_MSG_DATA && h1m->curr_len) || (h1m->state == H1_MSG_TUNNEL))) |
Willy Tarreau | 7e9dd73 | 2020-01-17 16:19:34 +0100 | [diff] [blame] | 1418 | h1s->cs->flags |= CS_FL_MAY_SPLICE; |
| 1419 | else if (h1s->cs) |
| 1420 | h1s->cs->flags &= ~CS_FL_MAY_SPLICE; |
| 1421 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1422 | /* update htx->extra, only when the body length is known */ |
| 1423 | if (h1m->flags & H1_MF_XFER_LEN) |
| 1424 | htx->extra = h1m->curr_len; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1425 | return total; |
| 1426 | } |
| 1427 | |
| 1428 | /* |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1429 | * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if |
| 1430 | * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR |
| 1431 | * flag and filling h1s->err_pos and h1s->err_state fields. This functions is |
| 1432 | * responsible to update the parser state <h1m>. |
| 1433 | */ |
| 1434 | static size_t h1_process_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx, |
| 1435 | struct buffer *buf, size_t *ofs, size_t max) |
| 1436 | { |
Christopher Faulet | e4ab11b | 2019-06-11 15:05:37 +0200 | [diff] [blame] | 1437 | struct http_hdr hdrs[global.tune.max_http_hdr]; |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1438 | struct h1m tlr_h1m; |
| 1439 | int ret = 0; |
| 1440 | |
| 1441 | if (!max || !b_data(buf)) |
| 1442 | goto end; |
| 1443 | |
| 1444 | /* Realing input buffer if necessary */ |
| 1445 | if (b_peek(buf, *ofs) > b_tail(buf)) |
| 1446 | b_slow_realign(buf, trash.area, 0); |
| 1447 | |
| 1448 | tlr_h1m.flags = (H1_MF_NO_PHDR|H1_MF_HDRS_ONLY); |
| 1449 | ret = h1_headers_to_hdr_list(b_peek(buf, *ofs), b_tail(buf), |
| 1450 | hdrs, sizeof(hdrs)/sizeof(hdrs[0]), &tlr_h1m, NULL); |
| 1451 | if (ret <= 0) { |
Willy Tarreau | 9a408ab | 2019-08-23 08:11:36 +0200 | [diff] [blame] | 1452 | /* Incomplete or invalid trailers. If the input buffer only |
| 1453 | * contains trailers and is full, which is detected by it being |
| 1454 | * full and the offset to be zero, it's an error because |
| 1455 | * trailers are too large to be handled by the parser. */ |
| 1456 | if (ret < 0 || (!ret && !*ofs && !buf_room_for_htx_data(buf))) |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1457 | goto error; |
| 1458 | goto end; |
| 1459 | } |
| 1460 | |
| 1461 | /* messages trailers fully parsed. */ |
| 1462 | if (h1_eval_htx_hdrs_size(hdrs) > max) { |
| 1463 | if (htx_is_empty(htx)) |
| 1464 | goto error; |
| 1465 | ret = 0; |
| 1466 | goto end; |
| 1467 | } |
| 1468 | |
| 1469 | if (!htx_add_all_trailers(htx, hdrs)) |
| 1470 | goto error; |
| 1471 | |
| 1472 | *ofs += ret; |
| 1473 | h1s->flags |= H1S_F_HAVE_I_TLR; |
| 1474 | end: |
| 1475 | return ret; |
| 1476 | |
| 1477 | error: |
| 1478 | h1m->err_state = h1m->state; |
| 1479 | h1m->err_pos = h1m->next; |
| 1480 | h1s->flags |= (!(h1m->flags & H1_MF_RESP) ? H1S_F_REQ_ERROR : H1S_F_RES_ERROR); |
| 1481 | h1s->cs->flags |= CS_FL_EOI; |
| 1482 | htx->flags |= HTX_FL_PARSING_ERROR; |
| 1483 | h1_capture_bad_message(h1s->h1c, h1s, h1m, buf); |
| 1484 | ret = 0; |
| 1485 | goto end; |
| 1486 | } |
| 1487 | |
| 1488 | /* |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1489 | * 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] | 1490 | * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if |
| 1491 | * it couldn't proceed. |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1492 | */ |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1493 | static size_t h1_process_input(struct h1c *h1c, struct buffer *buf, size_t count) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1494 | { |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1495 | struct h1s *h1s = h1c->h1s; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1496 | struct h1m *h1m; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1497 | struct htx *htx; |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1498 | size_t ret, data; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1499 | size_t total = 0; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1500 | int errflag; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1501 | |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1502 | htx = htx_from_buf(buf); |
Willy Tarreau | 3a6190f | 2018-12-16 08:29:56 +0100 | [diff] [blame] | 1503 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1504 | if (!conn_is_back(h1c->conn)) { |
| 1505 | h1m = &h1s->req; |
| 1506 | errflag = H1S_F_REQ_ERROR; |
| 1507 | } |
| 1508 | else { |
| 1509 | h1m = &h1s->res; |
| 1510 | errflag = H1S_F_RES_ERROR; |
| 1511 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1512 | |
Christopher Faulet | 7402776 | 2019-02-26 14:45:05 +0100 | [diff] [blame] | 1513 | data = htx->data; |
Christopher Faulet | cd9f6a7 | 2019-07-04 21:22:34 +0200 | [diff] [blame] | 1514 | if (h1s->flags & errflag) |
| 1515 | goto end; |
| 1516 | |
Christopher Faulet | d44ad5b | 2018-11-19 21:52:12 +0100 | [diff] [blame] | 1517 | do { |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1518 | size_t used = htx_used_space(htx); |
| 1519 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1520 | if (h1m->state <= H1_MSG_LAST_LF) { |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1521 | ret = h1_process_headers(h1s, h1m, htx, &h1c->ibuf, &total, count); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1522 | if (!ret) |
| 1523 | break; |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 1524 | if ((h1m->flags & H1_MF_RESP) && |
| 1525 | h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) { |
| 1526 | h1m_init_res(&h1s->res); |
| 1527 | h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR); |
| 1528 | } |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1529 | } |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1530 | else if (h1m->state < H1_MSG_TRAILERS) { |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1531 | ret = h1_process_data(h1s, h1m, htx, &h1c->ibuf, &total, count, buf); |
Willy Tarreau | 78f548f | 2018-12-05 10:02:39 +0100 | [diff] [blame] | 1532 | htx = htx_from_buf(buf); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1533 | if (!ret) |
| 1534 | break; |
| 1535 | } |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1536 | else if (h1m->state == H1_MSG_TRAILERS) { |
| 1537 | if (!(h1s->flags & H1S_F_HAVE_I_TLR)) { |
| 1538 | ret = h1_process_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count); |
| 1539 | if (!ret) |
| 1540 | break; |
| 1541 | } |
Christopher Faulet | 1021e72 | 2019-09-03 21:55:14 +0200 | [diff] [blame] | 1542 | else if (!h1_process_eom(h1s, h1m, htx, count)) |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1543 | break; |
| 1544 | } |
Christopher Faulet | cb55f48 | 2018-12-10 11:56:47 +0100 | [diff] [blame] | 1545 | else if (h1m->state == H1_MSG_DONE) { |
Christopher Faulet | ac4778c | 2019-11-15 11:14:23 +0100 | [diff] [blame] | 1546 | if (!(h1m->flags & H1_MF_RESP) && h1s->status == 101) |
| 1547 | h1_set_req_tunnel_mode(h1s); |
Christopher Faulet | affe0cb | 2020-07-10 10:01:26 +0200 | [diff] [blame] | 1548 | else if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) { |
Christopher Faulet | 2f320ee | 2019-04-16 20:26:53 +0200 | [diff] [blame] | 1549 | h1c->flags |= H1C_F_IN_BUSY; |
Christopher Faulet | affe0cb | 2020-07-10 10:01:26 +0200 | [diff] [blame] | 1550 | break; |
| 1551 | } |
| 1552 | else |
| 1553 | break; |
Christopher Faulet | cb55f48 | 2018-12-10 11:56:47 +0100 | [diff] [blame] | 1554 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1555 | else if (h1m->state == H1_MSG_TUNNEL) { |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1556 | ret = h1_process_data(h1s, h1m, htx, &h1c->ibuf, &total, count, buf); |
Willy Tarreau | 78f548f | 2018-12-05 10:02:39 +0100 | [diff] [blame] | 1557 | htx = htx_from_buf(buf); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1558 | if (!ret) |
| 1559 | break; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1560 | } |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1561 | else { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1562 | h1s->flags |= errflag; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1563 | break; |
| 1564 | } |
| 1565 | |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1566 | count -= htx_used_space(htx) - used; |
Christopher Faulet | 98e2bc2 | 2019-09-03 16:26:15 +0200 | [diff] [blame] | 1567 | } while (!(h1s->flags & errflag)); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1568 | |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1569 | if (h1s->flags & errflag) |
| 1570 | goto parsing_err; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1571 | |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1572 | b_del(&h1c->ibuf, total); |
| 1573 | |
| 1574 | end: |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 1575 | htx_to_buf(htx, buf); |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1576 | ret = htx->data - data; |
Willy Tarreau | 45f2b89 | 2018-12-05 07:59:27 +0100 | [diff] [blame] | 1577 | 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] | 1578 | h1c->flags &= ~H1C_F_IN_FULL; |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 1579 | tasklet_wakeup(h1c->wait_event.tasklet); |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1580 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1581 | |
Christopher Faulet | cf56b99 | 2018-12-11 16:12:31 +0100 | [diff] [blame] | 1582 | h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM); |
| 1583 | |
Christopher Faulet | cdc90e9 | 2019-03-28 13:28:46 +0100 | [diff] [blame] | 1584 | if (!b_data(&h1c->ibuf)) |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1585 | h1_release_buf(h1c, &h1c->ibuf); |
Christopher Faulet | a882a46 | 2019-12-06 15:59:05 +0100 | [diff] [blame] | 1586 | |
| 1587 | if ((h1s_data_pending(h1s) && !htx_is_empty(htx)) || (h1s->flags & H1S_F_APPEND_EOM)) |
Christopher Faulet | cf56b99 | 2018-12-11 16:12:31 +0100 | [diff] [blame] | 1588 | h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM; |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1589 | |
Willy Tarreau | 6203815 | 2019-08-23 09:29:29 +0200 | [diff] [blame] | 1590 | if (((h1s->flags & (H1S_F_REOS|H1S_F_APPEND_EOM)) == H1S_F_REOS) && |
| 1591 | (!h1s_data_pending(h1s) || htx_is_empty(htx))) { |
Christopher Faulet | f6ce9d6 | 2018-12-10 15:30:06 +0100 | [diff] [blame] | 1592 | h1s->cs->flags |= CS_FL_EOS; |
Christopher Faulet | 2692238 | 2019-03-08 15:13:41 +0100 | [diff] [blame] | 1593 | if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE) |
Christopher Faulet | b8d2ee0 | 2019-02-25 15:29:51 +0100 | [diff] [blame] | 1594 | h1s->cs->flags |= CS_FL_ERROR; |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1595 | } |
Christopher Faulet | f6ce9d6 | 2018-12-10 15:30:06 +0100 | [diff] [blame] | 1596 | |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 1597 | return ret; |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1598 | |
| 1599 | parsing_err: |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1600 | b_reset(&h1c->ibuf); |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 1601 | htx_to_buf(htx, buf); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1602 | return 0; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1603 | } |
| 1604 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1605 | /* |
| 1606 | * Process outgoing data. It parses data and transfer them from the channel buffer into |
| 1607 | * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or |
| 1608 | * 0 if it couldn't proceed. |
| 1609 | */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1610 | static size_t h1_process_output(struct h1c *h1c, struct buffer *buf, size_t count) |
| 1611 | { |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1612 | struct h1s *h1s = h1c->h1s; |
| 1613 | struct h1m *h1m; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1614 | struct htx *chn_htx; |
| 1615 | struct htx_blk *blk; |
Christopher Faulet | 65fc1dc | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 1616 | struct buffer tmp; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1617 | size_t total = 0; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1618 | int errflag; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1619 | |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1620 | if (!count) |
| 1621 | goto end; |
Willy Tarreau | 37dd54d | 2018-12-15 14:48:31 +0100 | [diff] [blame] | 1622 | |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 1623 | chn_htx = htxbuf(buf); |
Willy Tarreau | 37dd54d | 2018-12-15 14:48:31 +0100 | [diff] [blame] | 1624 | if (htx_is_empty(chn_htx)) |
| 1625 | goto end; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1626 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1627 | if (!h1_get_buf(h1c, &h1c->obuf)) { |
| 1628 | h1c->flags |= H1C_F_OUT_ALLOC; |
| 1629 | goto end; |
| 1630 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1631 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1632 | if (!conn_is_back(h1c->conn)) { |
| 1633 | h1m = &h1s->res; |
| 1634 | errflag = H1S_F_RES_ERROR; |
| 1635 | } |
| 1636 | else { |
| 1637 | h1m = &h1s->req; |
| 1638 | errflag = H1S_F_REQ_ERROR; |
| 1639 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1640 | |
Christopher Faulet | cd9f6a7 | 2019-07-04 21:22:34 +0200 | [diff] [blame] | 1641 | if (h1s->flags & errflag) |
| 1642 | goto end; |
| 1643 | |
Willy Tarreau | 37dd54d | 2018-12-15 14:48:31 +0100 | [diff] [blame] | 1644 | /* the htx is non-empty thus has at least one block */ |
Willy Tarreau | 3815b22 | 2018-12-11 19:50:43 +0100 | [diff] [blame] | 1645 | blk = htx_get_head_blk(chn_htx); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1646 | |
Willy Tarreau | 3815b22 | 2018-12-11 19:50:43 +0100 | [diff] [blame] | 1647 | /* Perform some optimizations to reduce the number of buffer copies. |
| 1648 | * First, if the mux's buffer is empty and the htx area contains |
| 1649 | * exactly one data block of the same size as the requested count, |
| 1650 | * then it's possible to simply swap the caller's buffer with the |
| 1651 | * mux's output buffer and adjust offsets and length to match the |
| 1652 | * entire DATA HTX block in the middle. In this case we perform a |
| 1653 | * true zero-copy operation from end-to-end. This is the situation |
| 1654 | * that happens all the time with large files. Second, if this is not |
| 1655 | * possible, but the mux's output buffer is empty, we still have an |
| 1656 | * opportunity to avoid the copy to the intermediary buffer, by making |
| 1657 | * the intermediary buffer's area point to the output buffer's area. |
| 1658 | * In this case we want to skip the HTX header to make sure that copies |
| 1659 | * remain aligned and that this operation remains possible all the |
| 1660 | * time. This goes for headers, data blocks and any data extracted from |
| 1661 | * the HTX blocks. |
Willy Tarreau | c5efa33 | 2018-12-05 11:19:27 +0100 | [diff] [blame] | 1662 | */ |
| 1663 | if (!b_data(&h1c->obuf)) { |
Willy Tarreau | 3815b22 | 2018-12-11 19:50:43 +0100 | [diff] [blame] | 1664 | if (chn_htx->used == 1 && |
Willy Tarreau | 37dd54d | 2018-12-15 14:48:31 +0100 | [diff] [blame] | 1665 | htx_get_blk_type(blk) == HTX_BLK_DATA && |
Willy Tarreau | 3815b22 | 2018-12-11 19:50:43 +0100 | [diff] [blame] | 1666 | htx_get_blk_value(chn_htx, blk).len == count) { |
| 1667 | void *old_area = h1c->obuf.area; |
| 1668 | |
| 1669 | h1c->obuf.area = buf->area; |
Christopher Faulet | 65fc1dc | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 1670 | h1c->obuf.head = sizeof(struct htx) + blk->addr; |
Willy Tarreau | 3815b22 | 2018-12-11 19:50:43 +0100 | [diff] [blame] | 1671 | h1c->obuf.data = count; |
| 1672 | |
| 1673 | buf->area = old_area; |
| 1674 | buf->data = buf->head = 0; |
Christopher Faulet | adb2220 | 2018-12-12 10:32:09 +0100 | [diff] [blame] | 1675 | |
| 1676 | /* The message is chunked. We need to emit the chunk |
| 1677 | * size. We have at least the size of the struct htx to |
| 1678 | * write the chunk envelope. It should be enough. |
| 1679 | */ |
| 1680 | if (h1m->flags & H1_MF_CHNK) { |
| 1681 | h1_emit_chunk_size(&h1c->obuf, count); |
| 1682 | h1_emit_chunk_crlf(&h1c->obuf); |
| 1683 | } |
| 1684 | |
Willy Tarreau | 3815b22 | 2018-12-11 19:50:43 +0100 | [diff] [blame] | 1685 | total += count; |
| 1686 | goto out; |
| 1687 | } |
Christopher Faulet | 65fc1dc | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 1688 | tmp.area = h1c->obuf.area + h1c->obuf.head; |
Willy Tarreau | c5efa33 | 2018-12-05 11:19:27 +0100 | [diff] [blame] | 1689 | } |
Christopher Faulet | 65fc1dc | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 1690 | else |
| 1691 | tmp.area = trash.area; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1692 | |
Christopher Faulet | 65fc1dc | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 1693 | tmp.data = 0; |
| 1694 | tmp.size = b_room(&h1c->obuf); |
Christopher Faulet | b2e8416 | 2018-12-06 11:39:49 +0100 | [diff] [blame] | 1695 | while (count && !(h1s->flags & errflag) && blk) { |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 1696 | struct htx_sl *sl; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1697 | struct ist n, v; |
Christopher Faulet | b2e8416 | 2018-12-06 11:39:49 +0100 | [diff] [blame] | 1698 | enum htx_blk_type type = htx_get_blk_type(blk); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1699 | uint32_t sz = htx_get_blksz(blk); |
Christopher Faulet | b2e8416 | 2018-12-06 11:39:49 +0100 | [diff] [blame] | 1700 | uint32_t vlen; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1701 | |
Christopher Faulet | b2e8416 | 2018-12-06 11:39:49 +0100 | [diff] [blame] | 1702 | vlen = sz; |
| 1703 | if (vlen > count) { |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1704 | if (type != HTX_BLK_DATA) |
Christopher Faulet | 85fc6ef | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 1705 | goto full; |
Christopher Faulet | b2e8416 | 2018-12-06 11:39:49 +0100 | [diff] [blame] | 1706 | vlen = count; |
| 1707 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1708 | |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 1709 | if (type == HTX_BLK_UNUSED) |
| 1710 | goto nextblk; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1711 | |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 1712 | switch (h1m->state) { |
| 1713 | case H1_MSG_RQBEFORE: |
| 1714 | if (type != HTX_BLK_REQ_SL) |
| 1715 | goto error; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1716 | sl = htx_get_blk_ptr(chn_htx, blk); |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 1717 | h1s->meth = sl->info.req.meth; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1718 | h1_parse_req_vsn(h1m, sl); |
Christopher Faulet | 65fc1dc | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 1719 | if (!htx_reqline_to_h1(sl, &tmp)) |
Christopher Faulet | 85fc6ef | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 1720 | goto full; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1721 | h1m->flags |= H1_MF_XFER_LEN; |
Christopher Faulet | 1f890dd | 2019-02-18 10:33:16 +0100 | [diff] [blame] | 1722 | if (sl->flags & HTX_SL_F_BODYLESS) |
| 1723 | h1m->flags |= H1_MF_CLEN; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1724 | h1m->state = H1_MSG_HDR_FIRST; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1725 | break; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1726 | |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 1727 | case H1_MSG_RPBEFORE: |
| 1728 | if (type != HTX_BLK_RES_SL) |
| 1729 | goto error; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1730 | sl = htx_get_blk_ptr(chn_htx, blk); |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 1731 | h1s->status = sl->info.res.status; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1732 | h1_parse_res_vsn(h1m, sl); |
Christopher Faulet | 65fc1dc | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 1733 | if (!htx_stline_to_h1(sl, &tmp)) |
Christopher Faulet | 85fc6ef | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 1734 | goto full; |
Christopher Faulet | 0359911 | 2018-11-27 11:21:21 +0100 | [diff] [blame] | 1735 | if (sl->flags & HTX_SL_F_XFER_LEN) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1736 | h1m->flags |= H1_MF_XFER_LEN; |
Christopher Faulet | d1ebb1e | 2018-11-28 16:32:50 +0100 | [diff] [blame] | 1737 | if (sl->info.res.status < 200 && |
| 1738 | (sl->info.res.status == 100 || sl->info.res.status >= 102)) |
Christopher Faulet | ada34b6 | 2019-05-24 16:36:43 +0200 | [diff] [blame] | 1739 | h1s->flags |= H1S_F_HAVE_O_CONN; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1740 | h1m->state = H1_MSG_HDR_FIRST; |
| 1741 | break; |
| 1742 | |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 1743 | case H1_MSG_HDR_FIRST: |
| 1744 | case H1_MSG_HDR_NAME: |
| 1745 | case H1_MSG_HDR_L2_LWS: |
| 1746 | if (type == HTX_BLK_EOH) |
| 1747 | goto last_lf; |
| 1748 | if (type != HTX_BLK_HDR) |
| 1749 | goto error; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1750 | h1m->state = H1_MSG_HDR_NAME; |
| 1751 | n = htx_get_blk_name(chn_htx, blk); |
| 1752 | v = htx_get_blk_value(chn_htx, blk); |
| 1753 | |
| 1754 | if (isteqi(n, ist("transfer-encoding"))) |
| 1755 | h1_parse_xfer_enc_header(h1m, v); |
Willy Tarreau | 27cd223 | 2019-01-03 21:52:42 +0100 | [diff] [blame] | 1756 | else if (isteqi(n, ist("content-length"))) { |
Christopher Faulet | 5220ef2 | 2019-03-27 15:44:56 +0100 | [diff] [blame] | 1757 | /* Only skip C-L header with invalid value. */ |
| 1758 | if (h1_parse_cont_len_header(h1m, &v) < 0) |
Willy Tarreau | 27cd223 | 2019-01-03 21:52:42 +0100 | [diff] [blame] | 1759 | goto skip_hdr; |
| 1760 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1761 | else if (isteqi(n, ist("connection"))) { |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1762 | h1_parse_connection_header(h1m, &v); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1763 | if (!v.len) |
| 1764 | goto skip_hdr; |
| 1765 | } |
| 1766 | |
Christopher Faulet | a99ff4d | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 1767 | /* Try to adjust the case of the header name */ |
| 1768 | if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV)) |
| 1769 | h1_adjust_case_outgoing_hdr(h1s, h1m, &n); |
Christopher Faulet | 65fc1dc | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 1770 | if (!htx_hdr_to_h1(n, v, &tmp)) |
Christopher Faulet | 85fc6ef | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 1771 | goto full; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1772 | skip_hdr: |
| 1773 | h1m->state = H1_MSG_HDR_L2_LWS; |
| 1774 | break; |
| 1775 | |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 1776 | case H1_MSG_LAST_LF: |
| 1777 | if (type != HTX_BLK_EOH) |
| 1778 | goto error; |
| 1779 | last_lf: |
Christopher Faulet | ada34b6 | 2019-05-24 16:36:43 +0200 | [diff] [blame] | 1780 | h1m->state = H1_MSG_LAST_LF; |
| 1781 | if (!(h1s->flags & H1S_F_HAVE_O_CONN)) { |
Christopher Faulet | d1ebb1e | 2018-11-28 16:32:50 +0100 | [diff] [blame] | 1782 | /* There is no "Connection:" header and |
| 1783 | * it the conn_mode must be |
| 1784 | * processed. So do it */ |
Christopher Faulet | 661bfc3 | 2019-06-17 14:07:46 +0200 | [diff] [blame] | 1785 | n = ist("connection"); |
Christopher Faulet | d1ebb1e | 2018-11-28 16:32:50 +0100 | [diff] [blame] | 1786 | v = ist(""); |
Christopher Faulet | b992af0 | 2019-03-28 15:42:24 +0100 | [diff] [blame] | 1787 | h1_process_output_conn_mode(h1s, h1m, &v); |
Christopher Faulet | d1ebb1e | 2018-11-28 16:32:50 +0100 | [diff] [blame] | 1788 | if (v.len) { |
Christopher Faulet | a99ff4d | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 1789 | /* Try to adjust the case of the header name */ |
| 1790 | if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV)) |
| 1791 | h1_adjust_case_outgoing_hdr(h1s, h1m, &n); |
Christopher Faulet | 65fc1dc | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 1792 | if (!htx_hdr_to_h1(n, v, &tmp)) |
Christopher Faulet | 85fc6ef | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 1793 | goto full; |
Christopher Faulet | d1ebb1e | 2018-11-28 16:32:50 +0100 | [diff] [blame] | 1794 | } |
Christopher Faulet | ada34b6 | 2019-05-24 16:36:43 +0200 | [diff] [blame] | 1795 | h1s->flags |= H1S_F_HAVE_O_CONN; |
Christopher Faulet | d1ebb1e | 2018-11-28 16:32:50 +0100 | [diff] [blame] | 1796 | } |
Willy Tarreau | 4710d20 | 2019-01-03 17:39:54 +0100 | [diff] [blame] | 1797 | |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 1798 | if ((h1s->meth != HTTP_METH_CONNECT && |
| 1799 | (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] | 1800 | (H1_MF_VER_11|H1_MF_XFER_LEN)) || |
| 1801 | (h1s->status >= 200 && h1s->status != 204 && h1s->status != 304 && |
| 1802 | h1s->meth != HTTP_METH_HEAD && !(h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) && |
| 1803 | (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) == |
| 1804 | (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) { |
Willy Tarreau | 4710d20 | 2019-01-03 17:39:54 +0100 | [diff] [blame] | 1805 | /* chunking needed but header not seen */ |
Christopher Faulet | e5addb0 | 2019-10-04 10:23:51 +0200 | [diff] [blame] | 1806 | n = ist("transfer-encoding"); |
| 1807 | v = ist("chunked"); |
| 1808 | if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV)) |
| 1809 | h1_adjust_case_outgoing_hdr(h1s, h1m, &n); |
| 1810 | if (!htx_hdr_to_h1(n, v, &tmp)) |
Christopher Faulet | 85fc6ef | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 1811 | goto full; |
Willy Tarreau | 4710d20 | 2019-01-03 17:39:54 +0100 | [diff] [blame] | 1812 | h1m->flags |= H1_MF_CHNK; |
| 1813 | } |
| 1814 | |
Christopher Faulet | 65fc1dc | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 1815 | if (!chunk_memcat(&tmp, "\r\n", 2)) |
Christopher Faulet | 85fc6ef | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 1816 | goto full; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1817 | |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 1818 | if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) { |
| 1819 | /* a CONNECT request is sent to the server. Switch it to tunnel mode. */ |
| 1820 | h1_set_req_tunnel_mode(h1s); |
| 1821 | } |
Christopher Faulet | ac4778c | 2019-11-15 11:14:23 +0100 | [diff] [blame] | 1822 | else if ((h1m->flags & H1_MF_RESP) && |
| 1823 | ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) || h1s->status == 101)) { |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 1824 | /* a successfull reply to a CONNECT or a protocol switching is sent |
Christopher Faulet | ac4778c | 2019-11-15 11:14:23 +0100 | [diff] [blame] | 1825 | * to the client. Switch the response to tunnel mode. |
| 1826 | */ |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 1827 | h1_set_res_tunnel_mode(h1s); |
| 1828 | } |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 1829 | else if ((h1m->flags & H1_MF_RESP) && |
| 1830 | h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) { |
| 1831 | h1m_init_res(&h1s->res); |
| 1832 | h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR); |
Christopher Faulet | ada34b6 | 2019-05-24 16:36:43 +0200 | [diff] [blame] | 1833 | h1s->flags &= ~H1S_F_HAVE_O_CONN; |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 1834 | } |
Christopher Faulet | 33d58b5 | 2019-07-01 16:17:30 +0200 | [diff] [blame] | 1835 | else if ((h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_HEAD) |
| 1836 | h1m->state = H1_MSG_DONE; |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 1837 | else |
| 1838 | h1m->state = H1_MSG_DATA; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1839 | break; |
| 1840 | |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 1841 | case H1_MSG_DATA: |
Christopher Faulet | aaa2506 | 2019-07-04 17:12:12 +0200 | [diff] [blame] | 1842 | case H1_MSG_TUNNEL: |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1843 | if (type == HTX_BLK_EOM) { |
| 1844 | /* Chunked message without explicit trailers */ |
| 1845 | if (h1m->flags & H1_MF_CHNK) { |
Christopher Faulet | 65fc1dc | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 1846 | if (!chunk_memcat(&tmp, "0\r\n\r\n", 5)) |
Christopher Faulet | 85fc6ef | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 1847 | goto full; |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1848 | } |
| 1849 | goto done; |
| 1850 | } |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1851 | else if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) { |
Christopher Faulet | 5213168 | 2019-06-27 17:40:14 +0200 | [diff] [blame] | 1852 | /* If the message is not chunked, never |
| 1853 | * add the last chunk. */ |
| 1854 | if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3)) |
Christopher Faulet | 85fc6ef | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 1855 | goto full; |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 1856 | goto trailers; |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1857 | } |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 1858 | else if (type != HTX_BLK_DATA) |
| 1859 | goto error; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1860 | v = htx_get_blk_value(chn_htx, blk); |
Christopher Faulet | b2e8416 | 2018-12-06 11:39:49 +0100 | [diff] [blame] | 1861 | v.len = vlen; |
Christopher Faulet | 65fc1dc | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 1862 | if (!htx_data_to_h1(v, &tmp, !!(h1m->flags & H1_MF_CHNK))) |
Christopher Faulet | 85fc6ef | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 1863 | goto full; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1864 | break; |
| 1865 | |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 1866 | case H1_MSG_TRAILERS: |
| 1867 | if (type == HTX_BLK_EOM) |
| 1868 | goto done; |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1869 | else if (type != HTX_BLK_TLR && type != HTX_BLK_EOT) |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 1870 | goto error; |
| 1871 | trailers: |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1872 | h1m->state = H1_MSG_TRAILERS; |
Christopher Faulet | 5213168 | 2019-06-27 17:40:14 +0200 | [diff] [blame] | 1873 | /* If the message is not chunked, ignore |
| 1874 | * trailers. It may happen with H2 messages. */ |
| 1875 | if (!(h1m->flags & H1_MF_CHNK)) |
| 1876 | break; |
| 1877 | |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1878 | if (type == HTX_BLK_EOT) { |
Christopher Faulet | 65fc1dc | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 1879 | if (!chunk_memcat(&tmp, "\r\n", 2)) |
Christopher Faulet | 85fc6ef | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 1880 | goto full; |
Christopher Faulet | 3218821 | 2018-11-20 18:21:43 +0100 | [diff] [blame] | 1881 | } |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1882 | else { // HTX_BLK_TLR |
| 1883 | n = htx_get_blk_name(chn_htx, blk); |
| 1884 | v = htx_get_blk_value(chn_htx, blk); |
Christopher Faulet | a99ff4d | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 1885 | |
| 1886 | /* Try to adjust the case of the header name */ |
| 1887 | if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV)) |
| 1888 | h1_adjust_case_outgoing_hdr(h1s, h1m, &n); |
Christopher Faulet | 65fc1dc | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 1889 | if (!htx_hdr_to_h1(n, v, &tmp)) |
Christopher Faulet | 85fc6ef | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 1890 | goto full; |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1891 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1892 | break; |
| 1893 | |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 1894 | case H1_MSG_DONE: |
| 1895 | if (type != HTX_BLK_EOM) |
| 1896 | goto error; |
| 1897 | done: |
| 1898 | h1m->state = H1_MSG_DONE; |
Christopher Faulet | ac4778c | 2019-11-15 11:14:23 +0100 | [diff] [blame] | 1899 | if (!(h1m->flags & H1_MF_RESP) && h1s->status == 101) |
| 1900 | h1_set_req_tunnel_mode(h1s); |
| 1901 | else if (h1s->h1c->flags & H1C_F_IN_BUSY) { |
Christopher Faulet | cd67bff | 2019-06-14 16:54:15 +0200 | [diff] [blame] | 1902 | h1s->h1c->flags &= ~H1C_F_IN_BUSY; |
| 1903 | tasklet_wakeup(h1s->h1c->wait_event.tasklet); |
| 1904 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1905 | break; |
| 1906 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1907 | default: |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 1908 | error: |
Christopher Faulet | c431df8 | 2019-06-26 15:16:28 +0200 | [diff] [blame] | 1909 | /* Unexpected error during output processing */ |
| 1910 | chn_htx->flags |= HTX_FL_PARSING_ERROR; |
Christopher Faulet | a2ea158 | 2019-05-28 10:35:18 +0200 | [diff] [blame] | 1911 | h1s->flags |= errflag; |
Christopher Faulet | c431df8 | 2019-06-26 15:16:28 +0200 | [diff] [blame] | 1912 | h1c->flags |= H1C_F_CS_ERROR; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1913 | break; |
| 1914 | } |
Christopher Faulet | 94b2c76 | 2019-05-24 15:28:57 +0200 | [diff] [blame] | 1915 | |
| 1916 | nextblk: |
Christopher Faulet | b2e8416 | 2018-12-06 11:39:49 +0100 | [diff] [blame] | 1917 | total += vlen; |
| 1918 | count -= vlen; |
| 1919 | if (sz == vlen) |
| 1920 | blk = htx_remove_blk(chn_htx, blk); |
| 1921 | else { |
| 1922 | htx_cut_data_blk(chn_htx, blk, vlen); |
| 1923 | break; |
| 1924 | } |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1925 | } |
| 1926 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1927 | copy: |
Willy Tarreau | c5efa33 | 2018-12-05 11:19:27 +0100 | [diff] [blame] | 1928 | /* when the output buffer is empty, tmp shares the same area so that we |
| 1929 | * only have to update pointers and lengths. |
| 1930 | */ |
Christopher Faulet | 65fc1dc | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 1931 | if (tmp.area == h1c->obuf.area + h1c->obuf.head) |
| 1932 | h1c->obuf.data = tmp.data; |
Willy Tarreau | c5efa33 | 2018-12-05 11:19:27 +0100 | [diff] [blame] | 1933 | else |
Christopher Faulet | 65fc1dc | 2019-06-25 21:41:02 +0200 | [diff] [blame] | 1934 | b_putblk(&h1c->obuf, tmp.area, tmp.data); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1935 | |
Willy Tarreau | 3815b22 | 2018-12-11 19:50:43 +0100 | [diff] [blame] | 1936 | htx_to_buf(chn_htx, buf); |
| 1937 | out: |
Christopher Faulet | 1cf96cd | 2020-12-07 18:21:27 +0100 | [diff] [blame] | 1938 | /* Both the request and the response reached the DONE state. So set EOI |
| 1939 | * flag on the conn-stream. Most of time, the flag will already be set, |
| 1940 | * except for protocol upgrades. |
| 1941 | */ |
| 1942 | if (h1s->cs && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) |
| 1943 | h1s->cs->flags |= CS_FL_EOI; |
| 1944 | |
Willy Tarreau | 45f2b89 | 2018-12-05 07:59:27 +0100 | [diff] [blame] | 1945 | if (!buf_room_for_htx_data(&h1c->obuf)) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1946 | h1c->flags |= H1C_F_OUT_FULL; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1947 | end: |
| 1948 | return total; |
Christopher Faulet | 85fc6ef | 2019-10-14 14:17:00 +0200 | [diff] [blame] | 1949 | |
| 1950 | full: |
| 1951 | h1c->flags |= H1C_F_OUT_FULL; |
| 1952 | goto copy; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1953 | } |
| 1954 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1955 | /*********************************************************/ |
| 1956 | /* functions below are I/O callbacks from the connection */ |
| 1957 | /*********************************************************/ |
Christopher Faulet | e17fa2f | 2018-12-11 16:25:36 +0100 | [diff] [blame] | 1958 | static void h1_wake_stream_for_recv(struct h1s *h1s) |
| 1959 | { |
| 1960 | if (h1s && h1s->recv_wait) { |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 1961 | h1s->recv_wait->events &= ~SUB_RETRY_RECV; |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 1962 | tasklet_wakeup(h1s->recv_wait->tasklet); |
Christopher Faulet | e17fa2f | 2018-12-11 16:25:36 +0100 | [diff] [blame] | 1963 | h1s->recv_wait = NULL; |
| 1964 | } |
| 1965 | } |
| 1966 | static void h1_wake_stream_for_send(struct h1s *h1s) |
| 1967 | { |
| 1968 | if (h1s && h1s->send_wait) { |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 1969 | h1s->send_wait->events &= ~SUB_RETRY_SEND; |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 1970 | tasklet_wakeup(h1s->send_wait->tasklet); |
Christopher Faulet | e17fa2f | 2018-12-11 16:25:36 +0100 | [diff] [blame] | 1971 | h1s->send_wait = NULL; |
| 1972 | } |
| 1973 | } |
| 1974 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1975 | /* |
| 1976 | * Attempt to read data, and subscribe if none available |
| 1977 | */ |
| 1978 | static int h1_recv(struct h1c *h1c) |
| 1979 | { |
| 1980 | struct connection *conn = h1c->conn; |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 1981 | struct h1s *h1s = h1c->h1s; |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 1982 | size_t ret = 0, max; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1983 | int rcvd = 0; |
| 1984 | |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 1985 | if (h1c->wait_event.events & SUB_RETRY_RECV) |
Christopher Faulet | c386a88 | 2018-12-04 16:06:28 +0100 | [diff] [blame] | 1986 | return (b_data(&h1c->ibuf)); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1987 | |
Olivier Houchard | 5b06cb3 | 2019-08-13 15:21:59 +0200 | [diff] [blame] | 1988 | if (!(conn->flags & CO_FL_ERROR) && h1c->flags & H1C_F_CS_WAIT_CONN) |
Willy Tarreau | d58f27f | 2019-06-03 10:12:22 +0200 | [diff] [blame] | 1989 | return 0; |
Willy Tarreau | d58f27f | 2019-06-03 10:12:22 +0200 | [diff] [blame] | 1990 | |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 1991 | if (!h1_recv_allowed(h1c)) { |
| 1992 | rcvd = 1; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1993 | goto end; |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 1994 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1995 | |
Christopher Faulet | f7d5ff3 | 2019-04-16 13:55:08 +0200 | [diff] [blame] | 1996 | if (!h1_get_buf(h1c, &h1c->ibuf)) { |
| 1997 | h1c->flags |= H1C_F_IN_ALLOC; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1998 | goto end; |
| 1999 | } |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 2000 | |
Christopher Faulet | f7d5ff3 | 2019-04-16 13:55:08 +0200 | [diff] [blame] | 2001 | if (h1s && (h1s->flags & (H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA))) { |
Willy Tarreau | fbdf90a | 2019-06-03 13:42:54 +0200 | [diff] [blame] | 2002 | if (!h1s_data_pending(h1s)) |
Christopher Faulet | f7d5ff3 | 2019-04-16 13:55:08 +0200 | [diff] [blame] | 2003 | h1_wake_stream_for_recv(h1s); |
| 2004 | rcvd = 1; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2005 | goto end; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2006 | } |
| 2007 | |
Olivier Houchard | 29a22bc | 2018-12-04 18:16:45 +0100 | [diff] [blame] | 2008 | /* |
| 2009 | * If we only have a small amount of data, realign it, |
| 2010 | * it's probably cheaper than doing 2 recv() calls. |
| 2011 | */ |
| 2012 | if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128) |
| 2013 | b_slow_realign(&h1c->ibuf, trash.area, 0); |
| 2014 | |
Willy Tarreau | 45f2b89 | 2018-12-05 07:59:27 +0100 | [diff] [blame] | 2015 | max = buf_room_for_htx_data(&h1c->ibuf); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2016 | if (max) { |
| 2017 | h1c->flags &= ~H1C_F_IN_FULL; |
Willy Tarreau | 78f548f | 2018-12-05 10:02:39 +0100 | [diff] [blame] | 2018 | |
Willy Tarreau | e0f24ee | 2018-12-14 10:51:23 +0100 | [diff] [blame] | 2019 | b_realign_if_empty(&h1c->ibuf); |
Willy Tarreau | 78f548f | 2018-12-05 10:02:39 +0100 | [diff] [blame] | 2020 | if (!b_data(&h1c->ibuf)) { |
| 2021 | /* try to pre-align the buffer like the rxbufs will be |
| 2022 | * to optimize memory copies. |
| 2023 | */ |
Willy Tarreau | 78f548f | 2018-12-05 10:02:39 +0100 | [diff] [blame] | 2024 | h1c->ibuf.head = sizeof(struct htx); |
| 2025 | } |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 2026 | ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, 0); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2027 | } |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 2028 | if (ret > 0) { |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2029 | rcvd = 1; |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 2030 | if (h1s && h1s->cs) { |
Christopher Faulet | 37e3607 | 2018-12-04 15:54:12 +0100 | [diff] [blame] | 2031 | h1s->cs->flags |= (CS_FL_READ_PARTIAL|CS_FL_RCV_MORE); |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 2032 | if (h1s->csinfo.t_idle == -1) |
| 2033 | h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake; |
| 2034 | } |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 2035 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2036 | |
Christopher Faulet | cf56b99 | 2018-12-11 16:12:31 +0100 | [diff] [blame] | 2037 | if (!h1_recv_allowed(h1c) || !buf_room_for_htx_data(&h1c->ibuf)) { |
Christopher Faulet | 81d4843 | 2018-11-19 21:22:43 +0100 | [diff] [blame] | 2038 | rcvd = 1; |
Christopher Faulet | cf56b99 | 2018-12-11 16:12:31 +0100 | [diff] [blame] | 2039 | goto end; |
| 2040 | } |
| 2041 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 2042 | conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2043 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2044 | end: |
Christopher Faulet | e17fa2f | 2018-12-11 16:25:36 +0100 | [diff] [blame] | 2045 | if (ret > 0 || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn)) |
| 2046 | h1_wake_stream_for_recv(h1s); |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 2047 | |
Willy Tarreau | c493c9c | 2019-06-03 14:18:22 +0200 | [diff] [blame] | 2048 | if (conn_xprt_read0_pending(conn) && h1s) { |
| 2049 | h1s->flags |= H1S_F_REOS; |
Willy Tarreau | fbdf90a | 2019-06-03 13:42:54 +0200 | [diff] [blame] | 2050 | rcvd = 1; |
| 2051 | } |
| 2052 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2053 | if (!b_data(&h1c->ibuf)) |
| 2054 | h1_release_buf(h1c, &h1c->ibuf); |
Willy Tarreau | 45f2b89 | 2018-12-05 07:59:27 +0100 | [diff] [blame] | 2055 | else if (!buf_room_for_htx_data(&h1c->ibuf)) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2056 | h1c->flags |= H1C_F_IN_FULL; |
| 2057 | return rcvd; |
| 2058 | } |
| 2059 | |
| 2060 | |
| 2061 | /* |
| 2062 | * Try to send data if possible |
| 2063 | */ |
| 2064 | static int h1_send(struct h1c *h1c) |
| 2065 | { |
| 2066 | struct connection *conn = h1c->conn; |
| 2067 | unsigned int flags = 0; |
| 2068 | size_t ret; |
| 2069 | int sent = 0; |
| 2070 | |
| 2071 | if (conn->flags & CO_FL_ERROR) |
| 2072 | return 0; |
| 2073 | |
Christopher Faulet | 3b88b8d | 2018-10-26 17:36:03 +0200 | [diff] [blame] | 2074 | if (h1c->flags & H1C_F_CS_WAIT_CONN) { |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2075 | if (!(h1c->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 2076 | conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event); |
Christopher Faulet | 3b88b8d | 2018-10-26 17:36:03 +0200 | [diff] [blame] | 2077 | return 0; |
| 2078 | } |
| 2079 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2080 | if (!b_data(&h1c->obuf)) |
| 2081 | goto end; |
| 2082 | |
| 2083 | if (h1c->flags & H1C_F_OUT_FULL) |
| 2084 | flags |= CO_SFL_MSG_MORE; |
| 2085 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 2086 | 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] | 2087 | if (ret > 0) { |
| 2088 | h1c->flags &= ~H1C_F_OUT_FULL; |
| 2089 | b_del(&h1c->obuf, ret); |
| 2090 | sent = 1; |
| 2091 | } |
| 2092 | |
Christopher Faulet | 145aa47 | 2018-12-06 10:56:20 +0100 | [diff] [blame] | 2093 | if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) { |
| 2094 | /* error or output closed, nothing to send, clear the buffer to release it */ |
| 2095 | b_reset(&h1c->obuf); |
| 2096 | } |
| 2097 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2098 | end: |
Christopher Faulet | e17fa2f | 2018-12-11 16:25:36 +0100 | [diff] [blame] | 2099 | if (!(h1c->flags & H1C_F_OUT_FULL)) |
| 2100 | h1_wake_stream_for_send(h1c->h1s); |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 2101 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2102 | /* We're done, no more to send */ |
| 2103 | if (!b_data(&h1c->obuf)) { |
| 2104 | h1_release_buf(h1c, &h1c->obuf); |
| 2105 | if (h1c->flags & H1C_F_CS_SHUTW_NOW) |
Christopher Faulet | 666a0c4 | 2019-01-08 11:12:04 +0100 | [diff] [blame] | 2106 | h1_shutw_conn(conn, CS_SHW_NORMAL); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2107 | } |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2108 | else if (!(h1c->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 2109 | conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2110 | |
| 2111 | return sent; |
| 2112 | } |
| 2113 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2114 | |
| 2115 | /* callback called on any event by the connection handler. |
| 2116 | * It applies changes and returns zero, or < 0 if it wants immediate |
| 2117 | * destruction of the connection. |
| 2118 | */ |
| 2119 | static int h1_process(struct h1c * h1c) |
| 2120 | { |
| 2121 | struct connection *conn = h1c->conn; |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 2122 | struct h1s *h1s = h1c->h1s; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2123 | |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 2124 | if (!conn->ctx) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2125 | return -1; |
| 2126 | |
Christopher Faulet | 3b88b8d | 2018-10-26 17:36:03 +0200 | [diff] [blame] | 2127 | if (h1c->flags & H1C_F_CS_WAIT_CONN) { |
Olivier Houchard | 690e0f0 | 2019-06-11 16:37:24 +0200 | [diff] [blame] | 2128 | if (!(conn->flags & (CO_FL_CONNECTED|CO_FL_ERROR)) || |
Olivier Houchard | 6063003 | 2019-06-13 17:37:00 +0200 | [diff] [blame] | 2129 | (!(conn->flags & CO_FL_ERROR) && (conn->flags & CO_FL_HANDSHAKE))) |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 2130 | goto end; |
| 2131 | h1c->flags &= ~H1C_F_CS_WAIT_CONN; |
Christopher Faulet | a0883e6 | 2018-12-11 16:26:50 +0100 | [diff] [blame] | 2132 | h1_wake_stream_for_send(h1s); |
Christopher Faulet | 3b88b8d | 2018-10-26 17:36:03 +0200 | [diff] [blame] | 2133 | } |
| 2134 | |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 2135 | if (!h1s) { |
Christopher Faulet | 470438c | 2019-07-11 15:40:25 +0200 | [diff] [blame] | 2136 | if (h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTDOWN) || |
Christopher Faulet | e31a0f1 | 2019-12-05 10:23:37 +0100 | [diff] [blame] | 2137 | conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH)) |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 2138 | goto release; |
Christopher Faulet | e31a0f1 | 2019-12-05 10:23:37 +0100 | [diff] [blame] | 2139 | if (!conn_is_back(conn) && (h1c->flags & H1C_F_CS_IDLE)) { |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 2140 | if (!h1s_create(h1c, NULL, NULL)) |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 2141 | goto release; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2142 | } |
Christopher Faulet | 1a7ad7a | 2018-12-04 16:10:44 +0100 | [diff] [blame] | 2143 | else |
Olivier Houchard | e728478 | 2018-12-06 18:54:54 +0100 | [diff] [blame] | 2144 | goto end; |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 2145 | h1s = h1c->h1s; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2146 | } |
| 2147 | |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 2148 | if (b_data(&h1c->ibuf) && h1s->csinfo.t_idle == -1) |
| 2149 | h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake; |
| 2150 | |
Willy Tarreau | c493c9c | 2019-06-03 14:18:22 +0200 | [diff] [blame] | 2151 | if (conn_xprt_read0_pending(conn)) |
| 2152 | h1s->flags |= H1S_F_REOS; |
| 2153 | |
Willy Tarreau | fbdf90a | 2019-06-03 13:42:54 +0200 | [diff] [blame] | 2154 | if (!h1s_data_pending(h1s) && h1s && h1s->cs && h1s->cs->data_cb->wake && |
Willy Tarreau | c493c9c | 2019-06-03 14:18:22 +0200 | [diff] [blame] | 2155 | (h1s->flags & H1S_F_REOS || h1c->flags & H1C_F_CS_ERROR || |
Olivier Houchard | 32d75ed | 2019-01-14 17:27:23 +0100 | [diff] [blame] | 2156 | conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH))) { |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 2157 | if (h1c->flags & H1C_F_CS_ERROR || conn->flags & CO_FL_ERROR) |
Willy Tarreau | c493c9c | 2019-06-03 14:18:22 +0200 | [diff] [blame] | 2158 | h1s->cs->flags |= CS_FL_ERROR; |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 2159 | h1s->cs->data_cb->wake(h1s->cs); |
| 2160 | } |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 2161 | end: |
Christopher Faulet | b576206 | 2020-08-05 11:31:16 +0200 | [diff] [blame] | 2162 | h1_refresh_timeout(h1c); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2163 | return 0; |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 2164 | |
| 2165 | release: |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 2166 | h1_release(h1c); |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 2167 | return -1; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2168 | } |
| 2169 | |
| 2170 | static struct task *h1_io_cb(struct task *t, void *ctx, unsigned short status) |
| 2171 | { |
| 2172 | struct h1c *h1c = ctx; |
| 2173 | int ret = 0; |
| 2174 | |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2175 | if (!(h1c->wait_event.events & SUB_RETRY_SEND)) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2176 | ret = h1_send(h1c); |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2177 | if (!(h1c->wait_event.events & SUB_RETRY_RECV)) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2178 | ret |= h1_recv(h1c); |
Christopher Faulet | 81d4843 | 2018-11-19 21:22:43 +0100 | [diff] [blame] | 2179 | if (ret || !h1c->h1s) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2180 | h1_process(h1c); |
| 2181 | return NULL; |
| 2182 | } |
| 2183 | |
Olivier Houchard | 9a86fcb | 2018-12-11 16:47:14 +0100 | [diff] [blame] | 2184 | static void h1_reset(struct connection *conn) |
| 2185 | { |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 2186 | struct h1c *h1c = conn->ctx; |
Olivier Houchard | 9a86fcb | 2018-12-11 16:47:14 +0100 | [diff] [blame] | 2187 | |
| 2188 | /* Reset the flags, and let the mux know we're waiting for a connection */ |
| 2189 | h1c->flags = H1C_F_CS_WAIT_CONN; |
| 2190 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2191 | |
| 2192 | static int h1_wake(struct connection *conn) |
| 2193 | { |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 2194 | struct h1c *h1c = conn->ctx; |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 2195 | int ret; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2196 | |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 2197 | h1_send(h1c); |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 2198 | ret = h1_process(h1c); |
| 2199 | if (ret == 0) { |
| 2200 | struct h1s *h1s = h1c->h1s; |
| 2201 | |
| 2202 | if (h1s && h1s->cs && h1s->cs->data_cb->wake) |
| 2203 | ret = h1s->cs->data_cb->wake(h1s->cs); |
| 2204 | } |
| 2205 | return ret; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2206 | } |
| 2207 | |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 2208 | /* Connection timeout management. The principle is that if there's no receipt |
| 2209 | * nor sending for a certain amount of time, the connection is closed. |
| 2210 | */ |
| 2211 | static struct task *h1_timeout_task(struct task *t, void *context, unsigned short state) |
| 2212 | { |
| 2213 | struct h1c *h1c = context; |
| 2214 | int expired = tick_is_expired(t->expire, now_ms); |
| 2215 | |
| 2216 | if (!expired && h1c) |
| 2217 | return t; |
| 2218 | |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 2219 | task_destroy(t); |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 2220 | |
| 2221 | if (!h1c) { |
| 2222 | /* resources were already deleted */ |
| 2223 | return NULL; |
| 2224 | } |
| 2225 | |
| 2226 | h1c->task = NULL; |
| 2227 | /* If a stream is still attached to the mux, just set an error and wait |
| 2228 | * for the stream's timeout. Otherwise, release the mux. This is only ok |
| 2229 | * because same timeouts are used. |
| 2230 | */ |
| 2231 | if (h1c->h1s && h1c->h1s->cs) |
| 2232 | h1c->flags |= H1C_F_CS_ERROR; |
| 2233 | else |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 2234 | h1_release(h1c); |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 2235 | return NULL; |
| 2236 | } |
| 2237 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2238 | /*******************************************/ |
| 2239 | /* functions below are used by the streams */ |
| 2240 | /*******************************************/ |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 2241 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2242 | /* |
| 2243 | * Attach a new stream to a connection |
| 2244 | * (Used for outgoing connections) |
| 2245 | */ |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 2246 | static struct conn_stream *h1_attach(struct connection *conn, struct session *sess) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2247 | { |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 2248 | struct h1c *h1c = conn->ctx; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2249 | struct conn_stream *cs = NULL; |
| 2250 | struct h1s *h1s; |
| 2251 | |
| 2252 | if (h1c->flags & H1C_F_CS_ERROR) |
| 2253 | goto end; |
| 2254 | |
| 2255 | cs = cs_new(h1c->conn); |
| 2256 | if (!cs) |
| 2257 | goto end; |
| 2258 | |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 2259 | h1s = h1s_create(h1c, cs, sess); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2260 | if (h1s == NULL) |
| 2261 | goto end; |
| 2262 | |
| 2263 | return cs; |
| 2264 | end: |
| 2265 | cs_free(cs); |
| 2266 | return NULL; |
| 2267 | } |
| 2268 | |
| 2269 | /* Retrieves a valid conn_stream from this connection, or returns NULL. For |
| 2270 | * this mux, it's easy as we can only store a single conn_stream. |
| 2271 | */ |
| 2272 | static const struct conn_stream *h1_get_first_cs(const struct connection *conn) |
| 2273 | { |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 2274 | struct h1c *h1c = conn->ctx; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2275 | struct h1s *h1s = h1c->h1s; |
| 2276 | |
| 2277 | if (h1s) |
| 2278 | return h1s->cs; |
| 2279 | |
| 2280 | return NULL; |
| 2281 | } |
| 2282 | |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 2283 | static void h1_destroy(void *ctx) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2284 | { |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 2285 | struct h1c *h1c = ctx; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2286 | |
Christopher Faulet | 39a96ee | 2019-04-08 10:52:21 +0200 | [diff] [blame] | 2287 | if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c) |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 2288 | h1_release(h1c); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2289 | } |
| 2290 | |
| 2291 | /* |
| 2292 | * Detach the stream from the connection and possibly release the connection. |
| 2293 | */ |
| 2294 | static void h1_detach(struct conn_stream *cs) |
| 2295 | { |
| 2296 | struct h1s *h1s = cs->ctx; |
| 2297 | struct h1c *h1c; |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 2298 | struct session *sess; |
Olivier Houchard | 8a78690 | 2018-12-15 16:05:40 +0100 | [diff] [blame] | 2299 | int is_not_first; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2300 | |
| 2301 | cs->ctx = NULL; |
| 2302 | if (!h1s) |
| 2303 | return; |
| 2304 | |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 2305 | sess = h1s->sess; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2306 | h1c = h1s->h1c; |
| 2307 | h1s->cs = NULL; |
| 2308 | |
Olivier Houchard | 8a78690 | 2018-12-15 16:05:40 +0100 | [diff] [blame] | 2309 | is_not_first = h1s->flags & H1S_F_NOT_FIRST; |
| 2310 | h1s_destroy(h1s); |
| 2311 | |
Christopher Faulet | e31a0f1 | 2019-12-05 10:23:37 +0100 | [diff] [blame] | 2312 | if (conn_is_back(h1c->conn) && (h1c->flags & H1C_F_CS_IDLE)) { |
Christopher Faulet | 0bf28f8 | 2019-07-19 14:51:06 +0200 | [diff] [blame] | 2313 | /* If there are any excess server data in the input buffer, |
| 2314 | * release it and close the connection ASAP (some data may |
| 2315 | * remain in the output buffer). This happens if a server sends |
| 2316 | * invalid responses. So in such case, we don't want to reuse |
| 2317 | * the connection |
Christopher Faulet | 39e679b | 2019-07-19 11:34:08 +0200 | [diff] [blame] | 2318 | */ |
Christopher Faulet | 0bf28f8 | 2019-07-19 14:51:06 +0200 | [diff] [blame] | 2319 | if (b_data(&h1c->ibuf)) { |
| 2320 | h1_release_buf(h1c, &h1c->ibuf); |
Christopher Faulet | e31a0f1 | 2019-12-05 10:23:37 +0100 | [diff] [blame] | 2321 | h1c->flags = (h1c->flags & ~H1C_F_CS_IDLE) | H1C_F_CS_SHUTW_NOW; |
Christopher Faulet | 0bf28f8 | 2019-07-19 14:51:06 +0200 | [diff] [blame] | 2322 | goto release; |
| 2323 | } |
Christopher Faulet | 39e679b | 2019-07-19 11:34:08 +0200 | [diff] [blame] | 2324 | |
Christopher Faulet | 9400a39 | 2018-11-23 23:10:39 +0100 | [diff] [blame] | 2325 | /* Never ever allow to reuse a connection from a non-reuse backend */ |
Olivier Houchard | 44d5914 | 2018-12-13 18:46:22 +0100 | [diff] [blame] | 2326 | if ((h1c->px->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR) |
Christopher Faulet | 9400a39 | 2018-11-23 23:10:39 +0100 | [diff] [blame] | 2327 | h1c->conn->flags |= CO_FL_PRIVATE; |
| 2328 | |
Olivier Houchard | 44d5914 | 2018-12-13 18:46:22 +0100 | [diff] [blame] | 2329 | if (!(h1c->conn->owner)) { |
Olivier Houchard | f502aca | 2018-12-14 19:42:40 +0100 | [diff] [blame] | 2330 | h1c->conn->owner = sess; |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 2331 | if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) { |
| 2332 | h1c->conn->owner = NULL; |
| 2333 | if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn)) |
| 2334 | /* The server doesn't want it, let's kill the connection right away */ |
Olivier Houchard | 109ba13 | 2020-02-14 13:23:45 +0100 | [diff] [blame] | 2335 | h1c->conn->mux->destroy(h1c); |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 2336 | else |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 2337 | tasklet_wakeup(h1c->wait_event.tasklet); |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 2338 | return; |
Olivier Houchard | 351411f | 2018-12-27 17:20:54 +0100 | [diff] [blame] | 2339 | } |
Olivier Houchard | 44d5914 | 2018-12-13 18:46:22 +0100 | [diff] [blame] | 2340 | } |
Olivier Houchard | a4d4fdf | 2018-12-14 19:27:06 +0100 | [diff] [blame] | 2341 | if (h1c->conn->owner == sess) { |
| 2342 | int ret = session_check_idle_conn(sess, h1c->conn); |
| 2343 | if (ret == -1) |
| 2344 | /* The connection got destroyed, let's leave */ |
| 2345 | return; |
| 2346 | else if (ret == 1) { |
| 2347 | /* The connection was added to the server list, |
| 2348 | * wake the task so we can subscribe to events |
| 2349 | */ |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 2350 | tasklet_wakeup(h1c->wait_event.tasklet); |
Olivier Houchard | a4d4fdf | 2018-12-14 19:27:06 +0100 | [diff] [blame] | 2351 | return; |
| 2352 | } |
| 2353 | } |
Christopher Faulet | 9400a39 | 2018-11-23 23:10:39 +0100 | [diff] [blame] | 2354 | /* we're in keep-alive with an idle connection, monitor it if not already done */ |
Olivier Houchard | 44d5914 | 2018-12-13 18:46:22 +0100 | [diff] [blame] | 2355 | if (LIST_ISEMPTY(&h1c->conn->list)) { |
Christopher Faulet | 9400a39 | 2018-11-23 23:10:39 +0100 | [diff] [blame] | 2356 | struct server *srv = objt_server(h1c->conn->target); |
| 2357 | |
| 2358 | if (srv) { |
| 2359 | if (h1c->conn->flags & CO_FL_PRIVATE) |
| 2360 | LIST_ADD(&srv->priv_conns[tid], &h1c->conn->list); |
Olivier Houchard | 8a78690 | 2018-12-15 16:05:40 +0100 | [diff] [blame] | 2361 | else if (is_not_first) |
Christopher Faulet | 9400a39 | 2018-11-23 23:10:39 +0100 | [diff] [blame] | 2362 | LIST_ADD(&srv->safe_conns[tid], &h1c->conn->list); |
| 2363 | else |
| 2364 | LIST_ADD(&srv->idle_conns[tid], &h1c->conn->list); |
| 2365 | } |
| 2366 | } |
| 2367 | } |
| 2368 | |
Christopher Faulet | 0bf28f8 | 2019-07-19 14:51:06 +0200 | [diff] [blame] | 2369 | release: |
Christopher Faulet | 9fa93f6 | 2019-06-28 17:41:42 +0200 | [diff] [blame] | 2370 | /* We don't want to close right now unless the connection is in error or shut down for writes */ |
Christopher Faulet | 470438c | 2019-07-11 15:40:25 +0200 | [diff] [blame] | 2371 | if ((h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTDOWN|H1C_F_UPG_H2C)) || |
| 2372 | (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) || |
| 2373 | ((h1c->flags & H1C_F_CS_SHUTW_NOW) && !b_data(&h1c->obuf)) || |
| 2374 | !h1c->conn->owner) |
Christopher Faulet | 73c1207 | 2019-04-08 11:23:22 +0200 | [diff] [blame] | 2375 | h1_release(h1c); |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 2376 | else { |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 2377 | tasklet_wakeup(h1c->wait_event.tasklet); |
Christopher Faulet | b576206 | 2020-08-05 11:31:16 +0200 | [diff] [blame] | 2378 | h1_refresh_timeout(h1c); |
Christopher Faulet | b8093cf | 2019-01-03 16:27:28 +0100 | [diff] [blame] | 2379 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2380 | } |
| 2381 | |
| 2382 | |
| 2383 | static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode) |
| 2384 | { |
| 2385 | struct h1s *h1s = cs->ctx; |
Christopher Faulet | 7f36636 | 2019-04-08 10:51:20 +0200 | [diff] [blame] | 2386 | struct h1c *h1c; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2387 | |
| 2388 | if (!h1s) |
| 2389 | return; |
Christopher Faulet | 7f36636 | 2019-04-08 10:51:20 +0200 | [diff] [blame] | 2390 | h1c = h1s->h1c; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2391 | |
Christopher Faulet | 7f36636 | 2019-04-08 10:51:20 +0200 | [diff] [blame] | 2392 | if ((cs->flags & CS_FL_KILL_CONN) || (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) |
| 2393 | goto do_shutr; |
| 2394 | |
Christopher Faulet | 0ef372a | 2019-04-08 10:57:20 +0200 | [diff] [blame] | 2395 | if ((h1c->flags & H1C_F_UPG_H2C) || (h1s->flags & H1S_F_WANT_KAL)) |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2396 | return; |
| 2397 | |
Christopher Faulet | 7f36636 | 2019-04-08 10:51:20 +0200 | [diff] [blame] | 2398 | do_shutr: |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2399 | /* NOTE: Be sure to handle abort (cf. h2_shutr) */ |
| 2400 | if (cs->flags & CS_FL_SHR) |
| 2401 | return; |
| 2402 | if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 2403 | cs->conn->xprt->shutr(cs->conn, cs->conn->xprt_ctx, |
Christopher Faulet | f36e72b | 2019-12-05 11:18:31 +0100 | [diff] [blame] | 2404 | (mode == CS_SHR_DRAIN)); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2405 | } |
| 2406 | |
| 2407 | static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode) |
| 2408 | { |
| 2409 | struct h1s *h1s = cs->ctx; |
| 2410 | struct h1c *h1c; |
| 2411 | |
| 2412 | if (!h1s) |
| 2413 | return; |
| 2414 | h1c = h1s->h1c; |
| 2415 | |
Christopher Faulet | 7f36636 | 2019-04-08 10:51:20 +0200 | [diff] [blame] | 2416 | if ((cs->flags & CS_FL_KILL_CONN) || (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) |
| 2417 | goto do_shutw; |
Olivier Houchard | d2e88c7 | 2018-12-19 15:55:23 +0100 | [diff] [blame] | 2418 | |
Christopher Faulet | 0ef372a | 2019-04-08 10:57:20 +0200 | [diff] [blame] | 2419 | if ((h1c->flags & H1C_F_UPG_H2C) || |
| 2420 | ((h1s->flags & H1S_F_WANT_KAL) && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)) |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2421 | return; |
| 2422 | |
Christopher Faulet | 7f36636 | 2019-04-08 10:51:20 +0200 | [diff] [blame] | 2423 | do_shutw: |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2424 | h1c->flags |= H1C_F_CS_SHUTW_NOW; |
| 2425 | if ((cs->flags & CS_FL_SHW) || b_data(&h1c->obuf)) |
| 2426 | return; |
| 2427 | |
Christopher Faulet | 666a0c4 | 2019-01-08 11:12:04 +0100 | [diff] [blame] | 2428 | h1_shutw_conn(cs->conn, mode); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2429 | } |
| 2430 | |
Christopher Faulet | 666a0c4 | 2019-01-08 11:12:04 +0100 | [diff] [blame] | 2431 | static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2432 | { |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 2433 | struct h1c *h1c = conn->ctx; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2434 | |
Christopher Faulet | 666a0c4 | 2019-01-08 11:12:04 +0100 | [diff] [blame] | 2435 | conn_xprt_shutw(conn); |
| 2436 | conn_sock_shutw(conn, (mode == CS_SHW_NORMAL)); |
Christopher Faulet | f36e72b | 2019-12-05 11:18:31 +0100 | [diff] [blame] | 2437 | h1c->flags = (h1c->flags & ~H1C_F_CS_SHUTW_NOW) | H1C_F_CS_SHUTDOWN; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2438 | } |
| 2439 | |
| 2440 | /* Called from the upper layer, to unsubscribe to events */ |
| 2441 | static int h1_unsubscribe(struct conn_stream *cs, int event_type, void *param) |
| 2442 | { |
| 2443 | struct wait_event *sw; |
| 2444 | struct h1s *h1s = cs->ctx; |
| 2445 | |
| 2446 | if (!h1s) |
| 2447 | return 0; |
| 2448 | |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2449 | if (event_type & SUB_RETRY_RECV) { |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2450 | sw = param; |
Olivier Houchard | 00b8f7c | 2019-05-14 18:02:23 +0200 | [diff] [blame] | 2451 | BUG_ON(h1s->recv_wait != sw); |
| 2452 | sw->events &= ~SUB_RETRY_RECV; |
| 2453 | h1s->recv_wait = NULL; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2454 | } |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2455 | if (event_type & SUB_RETRY_SEND) { |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2456 | sw = param; |
Olivier Houchard | 00b8f7c | 2019-05-14 18:02:23 +0200 | [diff] [blame] | 2457 | BUG_ON(h1s->send_wait != sw); |
| 2458 | sw->events &= ~SUB_RETRY_SEND; |
| 2459 | h1s->send_wait = NULL; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2460 | } |
| 2461 | return 0; |
| 2462 | } |
| 2463 | |
| 2464 | /* Called from the upper layer, to subscribe to events, such as being able to send */ |
| 2465 | static int h1_subscribe(struct conn_stream *cs, int event_type, void *param) |
| 2466 | { |
| 2467 | struct wait_event *sw; |
| 2468 | struct h1s *h1s = cs->ctx; |
| 2469 | |
| 2470 | if (!h1s) |
| 2471 | return -1; |
| 2472 | |
| 2473 | switch (event_type) { |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2474 | case SUB_RETRY_RECV: |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2475 | sw = param; |
Olivier Houchard | 00b8f7c | 2019-05-14 18:02:23 +0200 | [diff] [blame] | 2476 | BUG_ON(h1s->recv_wait != NULL || (sw->events & SUB_RETRY_RECV)); |
| 2477 | sw->events |= SUB_RETRY_RECV; |
| 2478 | h1s->recv_wait = sw; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2479 | return 0; |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2480 | case SUB_RETRY_SEND: |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2481 | sw = param; |
Olivier Houchard | 00b8f7c | 2019-05-14 18:02:23 +0200 | [diff] [blame] | 2482 | BUG_ON(h1s->send_wait != NULL || (sw->events & SUB_RETRY_SEND)); |
| 2483 | sw->events |= SUB_RETRY_SEND; |
| 2484 | h1s->send_wait = sw; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2485 | return 0; |
| 2486 | default: |
| 2487 | break; |
| 2488 | } |
| 2489 | return -1; |
| 2490 | } |
| 2491 | |
| 2492 | /* Called from the upper layer, to receive data */ |
| 2493 | static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags) |
| 2494 | { |
| 2495 | struct h1s *h1s = cs->ctx; |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 2496 | struct h1c *h1c = h1s->h1c; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2497 | size_t ret = 0; |
| 2498 | |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 2499 | if (!(h1c->flags & H1C_F_IN_ALLOC)) |
Christopher Faulet | 30db3d7 | 2019-05-17 15:35:33 +0200 | [diff] [blame] | 2500 | ret = h1_process_input(h1c, buf, count); |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 2501 | |
Christopher Faulet | e18777b | 2019-04-16 16:46:36 +0200 | [diff] [blame] | 2502 | if (flags & CO_RFL_BUF_FLUSH) { |
| 2503 | struct h1m *h1m = (!conn_is_back(cs->conn) ? &h1s->req : &h1s->res); |
| 2504 | |
Christopher Faulet | afadc9a | 2020-07-03 14:51:15 +0200 | [diff] [blame] | 2505 | if (h1m->state == H1_MSG_TUNNEL || (h1m->state == H1_MSG_DATA && h1m->curr_len)) |
Christopher Faulet | e18777b | 2019-04-16 16:46:36 +0200 | [diff] [blame] | 2506 | h1s->flags |= H1S_F_BUF_FLUSH; |
| 2507 | } |
Olivier Houchard | cd5da7a | 2019-08-22 18:34:25 +0200 | [diff] [blame] | 2508 | else { |
Christopher Faulet | 0528ae2 | 2020-07-03 15:12:00 +0200 | [diff] [blame] | 2509 | if (ret) |
| 2510 | h1s->flags &= ~H1S_F_SPLICED_DATA; |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2511 | if (!(h1c->wait_event.events & SUB_RETRY_RECV)) |
Christopher Faulet | d2a762f | 2020-07-24 16:31:14 +0200 | [diff] [blame] | 2512 | tasklet_wakeup(h1c->wait_event.tasklet); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2513 | } |
| 2514 | return ret; |
| 2515 | } |
| 2516 | |
| 2517 | |
| 2518 | /* Called from the upper layer, to send data */ |
| 2519 | static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags) |
| 2520 | { |
| 2521 | struct h1s *h1s = cs->ctx; |
| 2522 | struct h1c *h1c; |
Christopher Faulet | 5d37dac | 2018-11-22 10:58:42 +0100 | [diff] [blame] | 2523 | size_t total = 0; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2524 | |
| 2525 | if (!h1s) |
Christopher Faulet | 5d37dac | 2018-11-22 10:58:42 +0100 | [diff] [blame] | 2526 | return 0; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2527 | |
| 2528 | h1c = h1s->h1c; |
Christopher Faulet | 3b88b8d | 2018-10-26 17:36:03 +0200 | [diff] [blame] | 2529 | if (h1c->flags & H1C_F_CS_WAIT_CONN) |
| 2530 | return 0; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2531 | |
Christopher Faulet | c31872f | 2019-06-04 22:09:36 +0200 | [diff] [blame] | 2532 | while (count) { |
Christopher Faulet | 5d37dac | 2018-11-22 10:58:42 +0100 | [diff] [blame] | 2533 | size_t ret = 0; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2534 | |
Christopher Faulet | 5d37dac | 2018-11-22 10:58:42 +0100 | [diff] [blame] | 2535 | if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC))) |
| 2536 | ret = h1_process_output(h1c, buf, count); |
| 2537 | if (!ret) |
| 2538 | break; |
| 2539 | total += ret; |
Christopher Faulet | c31872f | 2019-06-04 22:09:36 +0200 | [diff] [blame] | 2540 | count -= ret; |
Olivier Houchard | a101286 | 2020-01-15 19:13:32 +0100 | [diff] [blame] | 2541 | if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c)) |
Christopher Faulet | 5d37dac | 2018-11-22 10:58:42 +0100 | [diff] [blame] | 2542 | break; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2543 | } |
Christopher Faulet | b576206 | 2020-08-05 11:31:16 +0200 | [diff] [blame] | 2544 | h1_refresh_timeout(h1c); |
Christopher Faulet | 5d37dac | 2018-11-22 10:58:42 +0100 | [diff] [blame] | 2545 | return total; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2546 | } |
| 2547 | |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 2548 | #if defined(USE_LINUX_SPLICE) |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 2549 | /* Send and get, using splicing */ |
| 2550 | static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count) |
| 2551 | { |
| 2552 | struct h1s *h1s = cs->ctx; |
| 2553 | struct h1m *h1m = (!conn_is_back(cs->conn) ? &h1s->req : &h1s->res); |
| 2554 | int ret = 0; |
| 2555 | |
Christopher Faulet | 2c411be | 2019-11-05 16:24:27 +0100 | [diff] [blame] | 2556 | if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) { |
Christopher Faulet | e18777b | 2019-04-16 16:46:36 +0200 | [diff] [blame] | 2557 | h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA); |
Christopher Faulet | 1146f97 | 2019-05-29 14:35:24 +0200 | [diff] [blame] | 2558 | if (!(h1s->h1c->wait_event.events & SUB_RETRY_RECV)) |
| 2559 | cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_RECV, &h1s->h1c->wait_event); |
Christopher Faulet | e18777b | 2019-04-16 16:46:36 +0200 | [diff] [blame] | 2560 | goto end; |
| 2561 | } |
| 2562 | |
Willy Tarreau | fbdf90a | 2019-06-03 13:42:54 +0200 | [diff] [blame] | 2563 | if (h1s_data_pending(h1s)) { |
Christopher Faulet | d44ad5b | 2018-11-19 21:52:12 +0100 | [diff] [blame] | 2564 | h1s->flags |= H1S_F_BUF_FLUSH; |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 2565 | goto end; |
Christopher Faulet | d44ad5b | 2018-11-19 21:52:12 +0100 | [diff] [blame] | 2566 | } |
| 2567 | |
| 2568 | h1s->flags &= ~H1S_F_BUF_FLUSH; |
| 2569 | h1s->flags |= H1S_F_SPLICED_DATA; |
Christopher Faulet | 8e8168a | 2020-07-03 15:02:25 +0200 | [diff] [blame] | 2570 | |
| 2571 | if (!h1_recv_allowed(h1s->h1c)) |
| 2572 | goto end; |
| 2573 | |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 2574 | if (h1m->state == H1_MSG_DATA && count > h1m->curr_len) |
| 2575 | count = h1m->curr_len; |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 2576 | ret = cs->conn->xprt->rcv_pipe(cs->conn, cs->conn->xprt_ctx, pipe, count); |
Christopher Faulet | 290988a | 2020-07-24 16:13:12 +0200 | [diff] [blame] | 2577 | if (ret <= 0) |
| 2578 | h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA); |
| 2579 | else if (h1m->state == H1_MSG_DATA) { |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 2580 | h1m->curr_len -= ret; |
Christopher Faulet | e18777b | 2019-04-16 16:46:36 +0200 | [diff] [blame] | 2581 | if (!h1m->curr_len) |
| 2582 | h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA); |
| 2583 | } |
| 2584 | |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 2585 | end: |
Christopher Faulet | 038ad81 | 2019-04-17 11:03:22 +0200 | [diff] [blame] | 2586 | if (conn_xprt_read0_pending(cs->conn)) { |
Willy Tarreau | c493c9c | 2019-06-03 14:18:22 +0200 | [diff] [blame] | 2587 | h1s->flags |= H1S_F_REOS; |
Christopher Faulet | ac4778c | 2019-11-15 11:14:23 +0100 | [diff] [blame] | 2588 | h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA); |
Christopher Faulet | 038ad81 | 2019-04-17 11:03:22 +0200 | [diff] [blame] | 2589 | } |
Willy Tarreau | 7e9dd73 | 2020-01-17 16:19:34 +0100 | [diff] [blame] | 2590 | |
Christopher Faulet | e0ca6ad | 2020-07-07 10:56:40 +0200 | [diff] [blame] | 2591 | if ((h1s->flags & H1S_F_REOS) || |
| 2592 | (h1m->state != H1_MSG_TUNNEL && h1m->state != H1_MSG_DATA) || |
Christopher Faulet | afadc9a | 2020-07-03 14:51:15 +0200 | [diff] [blame] | 2593 | (h1m->state == H1_MSG_DATA && !h1m->curr_len)) |
Willy Tarreau | 7e9dd73 | 2020-01-17 16:19:34 +0100 | [diff] [blame] | 2594 | cs->flags &= ~CS_FL_MAY_SPLICE; |
| 2595 | |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 2596 | return ret; |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 2597 | } |
| 2598 | |
| 2599 | static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe) |
| 2600 | { |
| 2601 | struct h1s *h1s = cs->ctx; |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 2602 | int ret = 0; |
| 2603 | |
| 2604 | if (b_data(&h1s->h1c->obuf)) |
| 2605 | goto end; |
| 2606 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 2607 | ret = cs->conn->xprt->snd_pipe(cs->conn, cs->conn->xprt_ctx, pipe); |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 2608 | end: |
Christopher Faulet | d44ad5b | 2018-11-19 21:52:12 +0100 | [diff] [blame] | 2609 | if (pipe->data) { |
Willy Tarreau | 4f6516d | 2018-12-19 13:59:17 +0100 | [diff] [blame] | 2610 | if (!(h1s->h1c->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 2611 | cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_SEND, &h1s->h1c->wait_event); |
Christopher Faulet | d44ad5b | 2018-11-19 21:52:12 +0100 | [diff] [blame] | 2612 | } |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 2613 | return ret; |
| 2614 | } |
| 2615 | #endif |
| 2616 | |
Olivier Houchard | 198d129 | 2019-10-25 16:19:26 +0200 | [diff] [blame] | 2617 | static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output) |
| 2618 | { |
| 2619 | int ret = 0; |
| 2620 | switch (mux_ctl) { |
| 2621 | case MUX_STATUS: |
| 2622 | if (conn->flags & CO_FL_CONNECTED) |
| 2623 | ret |= MUX_STATUS_READY; |
| 2624 | return ret; |
| 2625 | default: |
| 2626 | return -1; |
| 2627 | } |
| 2628 | } |
| 2629 | |
Olivier Houchard | a8f6b43 | 2018-12-21 15:20:29 +0100 | [diff] [blame] | 2630 | /* for debugging with CLI's "show fd" command */ |
| 2631 | static void h1_show_fd(struct buffer *msg, struct connection *conn) |
| 2632 | { |
| 2633 | struct h1c *h1c = conn->ctx; |
| 2634 | struct h1s *h1s = h1c->h1s; |
| 2635 | |
Christopher Faulet | f376a31 | 2019-01-04 15:16:06 +0100 | [diff] [blame] | 2636 | chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u", |
| 2637 | h1c->flags, h1c->wait_event.events, |
Olivier Houchard | a8f6b43 | 2018-12-21 15:20:29 +0100 | [diff] [blame] | 2638 | (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf), |
| 2639 | (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf), |
| 2640 | (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf), |
| 2641 | (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf)); |
| 2642 | |
| 2643 | if (h1s) { |
| 2644 | char *method; |
| 2645 | |
| 2646 | if (h1s->meth < HTTP_METH_OTHER) |
| 2647 | method = http_known_methods[h1s->meth].ptr; |
| 2648 | else |
| 2649 | method = "UNKNOWN"; |
| 2650 | chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s" |
| 2651 | " .meth=%s status=%d", |
| 2652 | h1s, h1s->flags, |
| 2653 | h1m_state_str(h1s->req.state), |
| 2654 | h1m_state_str(h1s->res.state), method, h1s->status); |
| 2655 | if (h1s->cs) |
| 2656 | chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p", |
| 2657 | h1s->cs->flags, h1s->cs->data); |
| 2658 | } |
Christopher Faulet | a99ff4d | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 2659 | } |
| 2660 | |
| 2661 | |
| 2662 | /* Add an entry in the headers map. Returns -1 on error and 0 on success. */ |
| 2663 | static int add_hdr_case_adjust(const char *from, const char *to, char **err) |
| 2664 | { |
| 2665 | struct h1_hdr_entry *entry; |
| 2666 | |
| 2667 | /* Be sure there is a non-empty <to> */ |
| 2668 | if (!strlen(to)) { |
| 2669 | memprintf(err, "expect <to>"); |
| 2670 | return -1; |
| 2671 | } |
| 2672 | |
| 2673 | /* Be sure only the case differs between <from> and <to> */ |
| 2674 | if (strcasecmp(from, to)) { |
| 2675 | memprintf(err, "<from> and <to> must not differ execpt the case"); |
| 2676 | return -1; |
| 2677 | } |
| 2678 | |
| 2679 | /* Be sure <from> does not already existsin the tree */ |
| 2680 | if (ebis_lookup(&hdrs_map.map, from)) { |
| 2681 | memprintf(err, "duplicate entry '%s'", from); |
| 2682 | return -1; |
| 2683 | } |
| 2684 | |
| 2685 | /* Create the entry and insert it in the tree */ |
| 2686 | entry = malloc(sizeof(*entry)); |
| 2687 | if (!entry) { |
| 2688 | memprintf(err, "out of memory"); |
| 2689 | return -1; |
| 2690 | } |
| 2691 | |
| 2692 | entry->node.key = strdup(from); |
| 2693 | entry->name.ptr = strdup(to); |
| 2694 | entry->name.len = strlen(to); |
| 2695 | if (!entry->node.key || !entry->name.ptr) { |
| 2696 | free(entry->node.key); |
| 2697 | free(entry->name.ptr); |
| 2698 | free(entry); |
| 2699 | memprintf(err, "out of memory"); |
| 2700 | return -1; |
| 2701 | } |
| 2702 | ebis_insert(&hdrs_map.map, &entry->node); |
| 2703 | return 0; |
| 2704 | } |
| 2705 | |
| 2706 | static void h1_hdeaders_case_adjust_deinit() |
| 2707 | { |
| 2708 | struct ebpt_node *node, *next; |
| 2709 | struct h1_hdr_entry *entry; |
| 2710 | |
| 2711 | node = ebpt_first(&hdrs_map.map); |
| 2712 | while (node) { |
| 2713 | next = ebpt_next(node); |
| 2714 | ebpt_delete(node); |
| 2715 | entry = container_of(node, struct h1_hdr_entry, node); |
| 2716 | free(entry->node.key); |
| 2717 | free(entry->name.ptr); |
| 2718 | free(entry); |
| 2719 | node = next; |
| 2720 | } |
| 2721 | free(hdrs_map.name); |
Olivier Houchard | a8f6b43 | 2018-12-21 15:20:29 +0100 | [diff] [blame] | 2722 | } |
| 2723 | |
Christopher Faulet | a99ff4d | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 2724 | static int cfg_h1_headers_case_adjust_postparser() |
| 2725 | { |
| 2726 | FILE *file = NULL; |
| 2727 | char *c, *key_beg, *key_end, *value_beg, *value_end; |
| 2728 | char *err; |
| 2729 | int rc, line = 0, err_code = 0; |
| 2730 | |
| 2731 | if (!hdrs_map.name) |
| 2732 | goto end; |
| 2733 | |
| 2734 | file = fopen(hdrs_map.name, "r"); |
| 2735 | if (!file) { |
| 2736 | ha_alert("config : h1-outgoing-headers-case-adjust-file '%s': failed to open file.\n", |
| 2737 | hdrs_map.name); |
| 2738 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2739 | goto end; |
| 2740 | } |
| 2741 | |
| 2742 | /* now parse all lines. The file may contain only two header name per |
| 2743 | * line, separated by spaces. All heading and trailing spaces will be |
| 2744 | * ignored. Lines starting with a # are ignored. |
| 2745 | */ |
| 2746 | while (fgets(trash.area, trash.size, file) != NULL) { |
| 2747 | line++; |
| 2748 | c = trash.area; |
| 2749 | |
| 2750 | /* strip leading spaces and tabs */ |
| 2751 | while (*c == ' ' || *c == '\t') |
| 2752 | c++; |
| 2753 | |
| 2754 | /* ignore emptu lines, or lines beginning with a dash */ |
| 2755 | if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n') |
| 2756 | continue; |
| 2757 | |
| 2758 | /* look for the end of the key */ |
| 2759 | key_beg = c; |
| 2760 | while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r') |
| 2761 | c++; |
| 2762 | key_end = c; |
| 2763 | |
| 2764 | /* strip middle spaces and tabs */ |
| 2765 | while (*c == ' ' || *c == '\t') |
| 2766 | c++; |
| 2767 | |
| 2768 | /* look for the end of the value, it is the end of the line */ |
| 2769 | value_beg = c; |
| 2770 | while (*c && *c != '\n' && *c != '\r') |
| 2771 | c++; |
| 2772 | value_end = c; |
| 2773 | |
| 2774 | /* trim possibly trailing spaces and tabs */ |
| 2775 | while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t')) |
| 2776 | value_end--; |
| 2777 | |
| 2778 | /* set final \0 and check entries */ |
| 2779 | *key_end = '\0'; |
| 2780 | *value_end = '\0'; |
| 2781 | |
| 2782 | err = NULL; |
| 2783 | rc = add_hdr_case_adjust(key_beg, value_beg, &err); |
| 2784 | if (rc < 0) { |
Christopher Faulet | a99ff4d | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 2785 | ha_alert("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n", |
| 2786 | hdrs_map.name, err, line); |
| 2787 | err_code |= ERR_ALERT | ERR_FATAL; |
Christopher Faulet | 27f2017 | 2019-07-30 16:51:42 +0200 | [diff] [blame] | 2788 | free(err); |
Christopher Faulet | a99ff4d | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 2789 | goto end; |
| 2790 | } |
| 2791 | if (rc > 0) { |
Christopher Faulet | a99ff4d | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 2792 | ha_warning("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n", |
| 2793 | hdrs_map.name, err, line); |
| 2794 | err_code |= ERR_WARN; |
Christopher Faulet | 27f2017 | 2019-07-30 16:51:42 +0200 | [diff] [blame] | 2795 | free(err); |
Christopher Faulet | a99ff4d | 2019-07-22 16:18:24 +0200 | [diff] [blame] | 2796 | } |
| 2797 | } |
| 2798 | |
| 2799 | end: |
| 2800 | if (file) |
| 2801 | fclose(file); |
| 2802 | hap_register_post_deinit(h1_hdeaders_case_adjust_deinit); |
| 2803 | return err_code; |
| 2804 | } |
| 2805 | |
| 2806 | |
| 2807 | /* config parser for global "h1-outgoing-header-case-adjust" */ |
| 2808 | static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx, |
| 2809 | struct proxy *defpx, const char *file, int line, |
| 2810 | char **err) |
| 2811 | { |
| 2812 | if (too_many_args(2, args, err, NULL)) |
| 2813 | return -1; |
| 2814 | if (!*(args[1]) || !*(args[2])) { |
| 2815 | memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]); |
| 2816 | return -1; |
| 2817 | } |
| 2818 | return add_hdr_case_adjust(args[1], args[2], err); |
| 2819 | } |
| 2820 | |
| 2821 | /* config parser for global "h1-outgoing-headers-case-adjust-file" */ |
| 2822 | static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx, |
| 2823 | struct proxy *defpx, const char *file, int line, |
| 2824 | char **err) |
| 2825 | { |
| 2826 | if (too_many_args(1, args, err, NULL)) |
| 2827 | return -1; |
| 2828 | if (!*(args[1])) { |
| 2829 | memprintf(err, "'%s' expects <file> as argument.", args[0]); |
| 2830 | return -1; |
| 2831 | } |
| 2832 | free(hdrs_map.name); |
| 2833 | hdrs_map.name = strdup(args[1]); |
| 2834 | return 0; |
| 2835 | } |
| 2836 | |
| 2837 | |
| 2838 | /* config keyword parsers */ |
| 2839 | static struct cfg_kw_list cfg_kws = {{ }, { |
| 2840 | { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust }, |
| 2841 | { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file }, |
| 2842 | { 0, NULL, NULL }, |
| 2843 | } |
| 2844 | }; |
| 2845 | |
| 2846 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 2847 | REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser); |
| 2848 | |
| 2849 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2850 | /****************************************/ |
| 2851 | /* MUX initialization and instanciation */ |
| 2852 | /****************************************/ |
| 2853 | |
| 2854 | /* The mux operations */ |
Willy Tarreau | f77a158 | 2019-01-10 10:00:08 +0100 | [diff] [blame] | 2855 | static const struct mux_ops mux_h1_ops = { |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2856 | .init = h1_init, |
| 2857 | .wake = h1_wake, |
| 2858 | .attach = h1_attach, |
| 2859 | .get_first_cs = h1_get_first_cs, |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 2860 | .get_cs_info = h1_get_cs_info, |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2861 | .detach = h1_detach, |
| 2862 | .destroy = h1_destroy, |
| 2863 | .avail_streams = h1_avail_streams, |
Willy Tarreau | 00f18a3 | 2019-01-26 12:19:01 +0100 | [diff] [blame] | 2864 | .used_streams = h1_used_streams, |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2865 | .rcv_buf = h1_rcv_buf, |
| 2866 | .snd_buf = h1_snd_buf, |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 2867 | #if defined(USE_LINUX_SPLICE) |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 2868 | .rcv_pipe = h1_rcv_pipe, |
| 2869 | .snd_pipe = h1_snd_pipe, |
| 2870 | #endif |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2871 | .subscribe = h1_subscribe, |
| 2872 | .unsubscribe = h1_unsubscribe, |
| 2873 | .shutr = h1_shutr, |
| 2874 | .shutw = h1_shutw, |
Olivier Houchard | a8f6b43 | 2018-12-21 15:20:29 +0100 | [diff] [blame] | 2875 | .show_fd = h1_show_fd, |
Olivier Houchard | 9a86fcb | 2018-12-11 16:47:14 +0100 | [diff] [blame] | 2876 | .reset = h1_reset, |
Olivier Houchard | 198d129 | 2019-10-25 16:19:26 +0200 | [diff] [blame] | 2877 | .ctl = h1_ctl, |
Christopher Faulet | 9f38f5a | 2019-04-03 09:53:32 +0200 | [diff] [blame] | 2878 | .flags = MX_FL_HTX, |
Willy Tarreau | 0a7a4fb | 2019-05-22 11:36:54 +0200 | [diff] [blame] | 2879 | .name = "H1", |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2880 | }; |
| 2881 | |
| 2882 | |
| 2883 | /* this mux registers default HTX proto */ |
| 2884 | static struct mux_proto_list mux_proto_htx = |
| 2885 | { .token = IST(""), .mode = PROTO_MODE_HTX, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops }; |
| 2886 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 2887 | INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_htx); |
| 2888 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2889 | /* |
| 2890 | * Local variables: |
| 2891 | * c-indent-level: 8 |
| 2892 | * c-basic-offset: 8 |
| 2893 | * End: |
| 2894 | */ |