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 | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 14 | #include <common/initcall.h> |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 15 | |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 16 | #include <types/pipe.h> |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 17 | #include <types/proxy.h> |
| 18 | #include <types/session.h> |
| 19 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 20 | #include <proto/connection.h> |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 21 | #include <proto/h1.h> |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 22 | #include <proto/http_htx.h> |
| 23 | #include <proto/htx.h> |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 24 | #include <proto/log.h> |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 25 | #include <proto/stream.h> |
| 26 | #include <proto/stream_interface.h> |
| 27 | |
| 28 | /* |
| 29 | * H1 Connection flags (32 bits) |
| 30 | */ |
| 31 | #define H1C_F_NONE 0x00000000 |
| 32 | |
| 33 | /* Flags indicating why writing output data are blocked */ |
| 34 | #define H1C_F_OUT_ALLOC 0x00000001 /* mux is blocked on lack of output buffer */ |
| 35 | #define H1C_F_OUT_FULL 0x00000002 /* mux is blocked on output buffer full */ |
| 36 | /* 0x00000004 - 0x00000008 unused */ |
| 37 | |
| 38 | /* Flags indicating why reading input data are blocked. */ |
| 39 | #define H1C_F_IN_ALLOC 0x00000010 /* mux is blocked on lack of input buffer */ |
| 40 | #define H1C_F_IN_FULL 0x00000020 /* mux is blocked on input buffer full */ |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 41 | /* 0x00000040 - 0x00000800 unused */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 42 | |
| 43 | #define H1C_F_CS_ERROR 0x00001000 /* connection must be closed ASAP because an error occurred */ |
| 44 | #define H1C_F_CS_SHUTW_NOW 0x00002000 /* connection must be shut down for writes ASAP */ |
| 45 | #define H1C_F_CS_SHUTW 0x00004000 /* connection is already shut down */ |
Christopher Faulet | 3b88b8d | 2018-10-26 17:36:03 +0200 | [diff] [blame] | 46 | #define H1C_F_CS_WAIT_CONN 0x00008000 /* waiting for the connection establishment */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 47 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 48 | #define H1C_F_WAIT_NEXT_REQ 0x00010000 /* waiting for the next request to start, use keep-alive timeout */ |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 49 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 50 | /* |
| 51 | * H1 Stream flags (32 bits) |
| 52 | */ |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 53 | #define H1S_F_NONE 0x00000000 |
| 54 | #define H1S_F_ERROR 0x00000001 /* An error occurred on the H1 stream */ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 55 | #define H1S_F_REQ_ERROR 0x00000002 /* An error occurred during the request parsing/xfer */ |
| 56 | #define H1S_F_RES_ERROR 0x00000004 /* An error occurred during the response parsing/xfer */ |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 57 | /* 0x00000008 unused */ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 58 | #define H1S_F_WANT_KAL 0x00000010 |
| 59 | #define H1S_F_WANT_TUN 0x00000020 |
| 60 | #define H1S_F_WANT_CLO 0x00000040 |
| 61 | #define H1S_F_WANT_MSK 0x00000070 |
| 62 | #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] | 63 | #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] | 64 | #define H1S_F_SPLICED_DATA 0x00000200 /* Set when the kernel splicing is in used */ |
Christopher Faulet | 3218821 | 2018-11-20 18:21:43 +0100 | [diff] [blame] | 65 | #define H1S_F_HAVE_EOD 0x00000400 /* Set during input/output process to know the last empty chunk was processed */ |
| 66 | #define H1S_F_HAVE_TLR 0x00000800 /* Set during input/output process to know the trailers were processed */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 67 | |
| 68 | /* H1 connection descriptor */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 69 | struct h1c { |
| 70 | struct connection *conn; |
| 71 | struct proxy *px; |
| 72 | uint32_t flags; /* Connection flags: H1C_F_* */ |
| 73 | |
| 74 | struct buffer ibuf; /* Input buffer to store data before parsing */ |
| 75 | struct buffer obuf; /* Output buffer to store data after reformatting */ |
| 76 | |
| 77 | struct buffer_wait buf_wait; /* Wait list for buffer allocation */ |
| 78 | struct wait_event wait_event; /* To be used if we're waiting for I/Os */ |
| 79 | |
| 80 | struct h1s *h1s; /* H1 stream descriptor */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 81 | }; |
| 82 | |
| 83 | /* H1 stream descriptor */ |
| 84 | struct h1s { |
| 85 | struct h1c *h1c; |
| 86 | struct conn_stream *cs; |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 87 | struct cs_info csinfo; /* CS info, only used for client connections */ |
| 88 | uint32_t flags; /* Connection flags: H1S_F_* */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 89 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 90 | struct wait_event *recv_wait; /* Address of the wait_event the conn_stream associated is waiting on */ |
| 91 | 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] | 92 | |
| 93 | struct h1m req; |
| 94 | struct h1m res; |
| 95 | |
| 96 | enum http_meth_t meth; /* HTTP resquest method */ |
| 97 | uint16_t status; /* HTTP response status */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 98 | }; |
| 99 | |
| 100 | /* the h1c and h1s pools */ |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 101 | DECLARE_STATIC_POOL(pool_head_h1c, "h1c", sizeof(struct h1c)); |
| 102 | DECLARE_STATIC_POOL(pool_head_h1s, "h1s", sizeof(struct h1s)); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 103 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 104 | static int h1_recv(struct h1c *h1c); |
| 105 | static int h1_send(struct h1c *h1c); |
| 106 | static int h1_process(struct h1c *h1c); |
| 107 | static struct task *h1_io_cb(struct task *t, void *ctx, unsigned short state); |
| 108 | static void h1_shutw_conn(struct connection *conn); |
| 109 | |
| 110 | /*****************************************************/ |
| 111 | /* functions below are for dynamic buffer management */ |
| 112 | /*****************************************************/ |
| 113 | /* |
| 114 | * Indicates whether or not the we may call the h1_recv() function to |
| 115 | * attempt to receive data into the buffer and/or parse pending data. The |
| 116 | * condition is a bit complex due to some API limits for now. The rules are the |
| 117 | * following : |
| 118 | * - if an error or a shutdown was detected on the connection and the buffer |
| 119 | * is empty, we must not attempt to receive |
| 120 | * - if the input buffer failed to be allocated, we must not try to receive |
| 121 | * and we know there is nothing pending |
| 122 | * - if no flag indicates a blocking condition, we may attempt to receive, |
| 123 | * regardless of whether the input buffer is full or not, so that only de |
| 124 | * receiving part decides whether or not to block. This is needed because |
| 125 | * the connection API indeed prevents us from re-enabling receipt that is |
| 126 | * already enabled in a polled state, so we must always immediately stop as |
| 127 | * soon as the mux can't proceed so as never to hit an end of read with data |
| 128 | * pending in the buffers. |
| 129 | * - otherwise must may not attempt to receive |
| 130 | */ |
| 131 | static inline int h1_recv_allowed(const struct h1c *h1c) |
| 132 | { |
| 133 | if (b_data(&h1c->ibuf) == 0 && |
Christopher Faulet | 7e346f3 | 2018-11-20 17:13:52 +0100 | [diff] [blame] | 134 | (h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTW) || |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 135 | h1c->conn->flags & CO_FL_ERROR || |
| 136 | conn_xprt_read0_pending(h1c->conn))) |
| 137 | return 0; |
| 138 | |
| 139 | if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL))) |
| 140 | return 1; |
| 141 | |
| 142 | return 0; |
| 143 | } |
| 144 | |
| 145 | /* |
| 146 | * Tries to grab a buffer and to re-enables processing on mux <target>. The h1 |
| 147 | * flags are used to figure what buffer was requested. It returns 1 if the |
| 148 | * allocation succeeds, in which case the connection is woken up, or 0 if it's |
| 149 | * impossible to wake up and we prefer to be woken up later. |
| 150 | */ |
| 151 | static int h1_buf_available(void *target) |
| 152 | { |
| 153 | struct h1c *h1c = target; |
| 154 | |
| 155 | if ((h1c->flags & H1C_F_IN_ALLOC) && b_alloc_margin(&h1c->ibuf, 0)) { |
| 156 | h1c->flags &= ~H1C_F_IN_ALLOC; |
| 157 | if (h1_recv_allowed(h1c)) |
| 158 | tasklet_wakeup(h1c->wait_event.task); |
| 159 | return 1; |
| 160 | } |
| 161 | |
| 162 | if ((h1c->flags & H1C_F_OUT_ALLOC) && b_alloc_margin(&h1c->obuf, 0)) { |
| 163 | h1c->flags &= ~H1C_F_OUT_ALLOC; |
| 164 | tasklet_wakeup(h1c->wait_event.task); |
| 165 | return 1; |
| 166 | } |
| 167 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 168 | return 0; |
| 169 | } |
| 170 | |
| 171 | /* |
| 172 | * Allocate a buffer. If if fails, it adds the mux in buffer wait queue. |
| 173 | */ |
| 174 | static inline struct buffer *h1_get_buf(struct h1c *h1c, struct buffer *bptr) |
| 175 | { |
| 176 | struct buffer *buf = NULL; |
| 177 | |
| 178 | if (likely(LIST_ISEMPTY(&h1c->buf_wait.list)) && |
| 179 | unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) { |
| 180 | h1c->buf_wait.target = h1c; |
| 181 | h1c->buf_wait.wakeup_cb = h1_buf_available; |
| 182 | HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
| 183 | LIST_ADDQ(&buffer_wq, &h1c->buf_wait.list); |
| 184 | HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
| 185 | __conn_xprt_stop_recv(h1c->conn); |
| 186 | } |
| 187 | return buf; |
| 188 | } |
| 189 | |
| 190 | /* |
| 191 | * Release a buffer, if any, and try to wake up entities waiting in the buffer |
| 192 | * wait queue. |
| 193 | */ |
| 194 | static inline void h1_release_buf(struct h1c *h1c, struct buffer *bptr) |
| 195 | { |
| 196 | if (bptr->size) { |
| 197 | b_free(bptr); |
| 198 | offer_buffers(h1c->buf_wait.target, tasks_run_queue); |
| 199 | } |
| 200 | } |
| 201 | |
| 202 | static int h1_avail_streams(struct connection *conn) |
| 203 | { |
| 204 | struct h1c *h1c = conn->mux_ctx; |
| 205 | |
| 206 | return h1c->h1s ? 0 : 1; |
| 207 | } |
| 208 | |
Olivier Houchard | 8defe4b | 2018-12-02 01:31:17 +0100 | [diff] [blame] | 209 | static int h1_max_streams(struct connection *conn) |
| 210 | { |
| 211 | return 1; |
| 212 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 213 | |
| 214 | /*****************************************************************/ |
| 215 | /* functions below are dedicated to the mux setup and management */ |
| 216 | /*****************************************************************/ |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 217 | static struct conn_stream *h1s_new_cs(struct h1s *h1s) |
| 218 | { |
| 219 | struct conn_stream *cs; |
| 220 | |
| 221 | cs = cs_new(h1s->h1c->conn); |
| 222 | if (!cs) |
| 223 | goto err; |
| 224 | h1s->cs = cs; |
| 225 | cs->ctx = h1s; |
| 226 | |
| 227 | if (h1s->flags & H1S_F_NOT_FIRST) |
| 228 | cs->flags |= CS_FL_NOT_FIRST; |
| 229 | |
| 230 | if (stream_create_from_cs(cs) < 0) |
| 231 | goto err; |
| 232 | return cs; |
| 233 | |
| 234 | err: |
| 235 | cs_free(cs); |
| 236 | h1s->cs = NULL; |
| 237 | return NULL; |
| 238 | } |
| 239 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 240 | static struct h1s *h1s_create(struct h1c *h1c, struct conn_stream *cs) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 241 | { |
| 242 | struct h1s *h1s; |
| 243 | |
| 244 | h1s = pool_alloc(pool_head_h1s); |
| 245 | if (!h1s) |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 246 | goto fail; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 247 | |
| 248 | h1s->h1c = h1c; |
| 249 | h1c->h1s = h1s; |
| 250 | |
| 251 | h1s->cs = NULL; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 252 | h1s->flags = H1S_F_NONE; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 253 | |
| 254 | h1s->recv_wait = NULL; |
| 255 | h1s->send_wait = NULL; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 256 | |
| 257 | h1m_init_req(&h1s->req); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 258 | h1s->req.flags |= H1_MF_NO_PHDR; |
| 259 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 260 | h1m_init_res(&h1s->res); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 261 | h1s->res.flags |= H1_MF_NO_PHDR; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 262 | |
| 263 | h1s->status = 0; |
| 264 | h1s->meth = HTTP_METH_OTHER; |
| 265 | |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 266 | if (h1c->flags & H1C_F_WAIT_NEXT_REQ) |
| 267 | h1s->flags |= H1S_F_NOT_FIRST; |
| 268 | h1c->flags &= ~H1C_F_WAIT_NEXT_REQ; |
| 269 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 270 | if (!conn_is_back(h1c->conn)) { |
| 271 | if (h1c->px->options2 & PR_O2_REQBUG_OK) |
| 272 | h1s->req.err_pos = -1; |
| 273 | } |
| 274 | else { |
| 275 | if (h1c->px->options2 & PR_O2_RSPBUG_OK) |
| 276 | h1s->res.err_pos = -1; |
| 277 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 278 | |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 279 | /* If a conn_stream already exists, attach it to this H1S. Otherwise we |
| 280 | * create a new one. |
| 281 | */ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 282 | if (cs) { |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 283 | h1s->csinfo.create_date = date; |
| 284 | h1s->csinfo.tv_create = now; |
| 285 | h1s->csinfo.t_handshake = 0; |
| 286 | h1s->csinfo.t_idle = -1; |
| 287 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 288 | cs->ctx = h1s; |
| 289 | h1s->cs = cs; |
| 290 | } |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 291 | else { |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 292 | struct session *sess = h1c->conn->owner; |
| 293 | |
| 294 | h1s->csinfo.create_date = sess->accept_date; |
| 295 | h1s->csinfo.tv_create = sess->tv_accept; |
| 296 | h1s->csinfo.t_handshake = sess->t_handshake; |
| 297 | h1s->csinfo.t_idle = -1; |
| 298 | |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 299 | cs = h1s_new_cs(h1s); |
| 300 | if (!cs) |
| 301 | goto fail; |
| 302 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 303 | return h1s; |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 304 | |
| 305 | fail: |
| 306 | pool_free(pool_head_h1s, h1s); |
| 307 | return NULL; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | static void h1s_destroy(struct h1s *h1s) |
| 311 | { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 312 | if (h1s) { |
| 313 | struct h1c *h1c = h1s->h1c; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 314 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 315 | h1c->h1s = NULL; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 316 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 317 | if (h1s->recv_wait != NULL) |
| 318 | h1s->recv_wait->wait_reason &= ~SUB_CAN_RECV; |
| 319 | if (h1s->send_wait != NULL) |
| 320 | h1s->send_wait->wait_reason &= ~SUB_CAN_SEND; |
| 321 | |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 322 | h1c->flags |= H1C_F_WAIT_NEXT_REQ; |
| 323 | if (h1s->flags & (H1S_F_REQ_ERROR|H1S_F_RES_ERROR)) |
| 324 | h1c->flags |= H1C_F_CS_ERROR; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 325 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 326 | cs_free(h1s->cs); |
| 327 | pool_free(pool_head_h1s, h1s); |
| 328 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 329 | } |
| 330 | |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 331 | static const struct cs_info *h1_get_cs_info(struct conn_stream *cs) |
| 332 | { |
| 333 | struct h1s *h1s = cs->ctx; |
| 334 | |
| 335 | if (h1s && !conn_is_back(cs->conn)) |
| 336 | return &h1s->csinfo; |
| 337 | return NULL; |
| 338 | } |
| 339 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 340 | /* |
| 341 | * Initialize the mux once it's attached. It is expected that conn->mux_ctx |
| 342 | * points to the existing conn_stream (for outgoing connections) or NULL (for |
| 343 | * incoming ones). Returns < 0 on error. |
| 344 | */ |
| 345 | static int h1_init(struct connection *conn, struct proxy *proxy) |
| 346 | { |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 347 | struct h1c *h1c; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 348 | |
| 349 | h1c = pool_alloc(pool_head_h1c); |
| 350 | if (!h1c) |
| 351 | goto fail_h1c; |
| 352 | h1c->conn = conn; |
| 353 | h1c->px = proxy; |
| 354 | |
| 355 | h1c->flags = H1C_F_NONE; |
| 356 | h1c->ibuf = BUF_NULL; |
| 357 | h1c->obuf = BUF_NULL; |
| 358 | h1c->h1s = NULL; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 359 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 360 | LIST_INIT(&h1c->buf_wait.list); |
| 361 | h1c->wait_event.task = tasklet_new(); |
| 362 | if (!h1c->wait_event.task) |
| 363 | goto fail; |
| 364 | h1c->wait_event.task->process = h1_io_cb; |
| 365 | h1c->wait_event.task->context = h1c; |
| 366 | h1c->wait_event.wait_reason = 0; |
| 367 | |
Christopher Faulet | 3b88b8d | 2018-10-26 17:36:03 +0200 | [diff] [blame] | 368 | if (!(conn->flags & CO_FL_CONNECTED)) |
| 369 | h1c->flags |= H1C_F_CS_WAIT_CONN; |
| 370 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 371 | /* Always Create a new H1S */ |
| 372 | if (!h1s_create(h1c, conn->mux_ctx)) |
| 373 | goto fail; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 374 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 375 | conn->mux_ctx = h1c; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 376 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 377 | /* Try to read, if nothing is available yet we'll just subscribe */ |
| 378 | if (h1_recv(h1c)) |
| 379 | h1_process(h1c); |
| 380 | |
| 381 | /* mux->wake will be called soon to complete the operation */ |
| 382 | return 0; |
| 383 | |
| 384 | fail: |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 385 | if (h1c->wait_event.task) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 386 | tasklet_free(h1c->wait_event.task); |
| 387 | pool_free(pool_head_h1c, h1c); |
| 388 | fail_h1c: |
| 389 | return -1; |
| 390 | } |
| 391 | |
| 392 | |
| 393 | /* release function for a connection. This one should be called to free all |
| 394 | * resources allocated to the mux. |
| 395 | */ |
| 396 | static void h1_release(struct connection *conn) |
| 397 | { |
| 398 | struct h1c *h1c = conn->mux_ctx; |
| 399 | |
| 400 | LIST_DEL(&conn->list); |
| 401 | |
| 402 | if (h1c) { |
| 403 | if (!LIST_ISEMPTY(&h1c->buf_wait.list)) { |
| 404 | HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
| 405 | LIST_DEL(&h1c->buf_wait.list); |
| 406 | LIST_INIT(&h1c->buf_wait.list); |
| 407 | HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock); |
| 408 | } |
| 409 | |
| 410 | h1_release_buf(h1c, &h1c->ibuf); |
| 411 | h1_release_buf(h1c, &h1c->obuf); |
| 412 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 413 | if (h1c->wait_event.task) |
| 414 | tasklet_free(h1c->wait_event.task); |
| 415 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 416 | h1s_destroy(h1c->h1s); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 417 | if (h1c->wait_event.wait_reason != 0) |
| 418 | conn->xprt->unsubscribe(conn, h1c->wait_event.wait_reason, |
| 419 | &h1c->wait_event); |
| 420 | pool_free(pool_head_h1c, h1c); |
| 421 | } |
| 422 | |
| 423 | conn->mux = NULL; |
| 424 | conn->mux_ctx = NULL; |
| 425 | |
| 426 | conn_stop_tracking(conn); |
| 427 | conn_full_close(conn); |
| 428 | if (conn->destroy_cb) |
| 429 | conn->destroy_cb(conn); |
| 430 | conn_free(conn); |
| 431 | } |
| 432 | |
| 433 | /******************************************************/ |
| 434 | /* functions below are for the H1 protocol processing */ |
| 435 | /******************************************************/ |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 436 | /* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is |
| 437 | * greater or equal to 1.1 |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 438 | */ |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 439 | 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] | 440 | { |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 441 | const char *p = HTX_SL_REQ_VPTR(sl); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 442 | |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 443 | if ((HTX_SL_REQ_VLEN(sl) == 8) && |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 444 | (*(p + 5) > '1' || |
| 445 | (*(p + 5) == '1' && *(p + 7) >= '1'))) |
| 446 | h1m->flags |= H1_MF_VER_11; |
| 447 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 448 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 449 | /* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is |
| 450 | * greater or equal to 1.1 |
| 451 | */ |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 452 | 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] | 453 | { |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 454 | const char *p = HTX_SL_RES_VPTR(sl); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 455 | |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 456 | if ((HTX_SL_RES_VLEN(sl) == 8) && |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 457 | (*(p + 5) > '1' || |
| 458 | (*(p + 5) == '1' && *(p + 7) >= '1'))) |
| 459 | h1m->flags |= H1_MF_VER_11; |
| 460 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 461 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 462 | /* |
| 463 | * Check the validity of the request version. If the version is valid, it |
| 464 | * returns 1. Otherwise, it returns 0. |
| 465 | */ |
| 466 | static int h1_process_req_vsn(struct h1s *h1s, struct h1m *h1m, union h1_sl sl) |
| 467 | { |
| 468 | struct h1c *h1c = h1s->h1c; |
| 469 | |
| 470 | /* RFC7230#2.6 has enforced the format of the HTTP version string to be |
| 471 | * exactly one digit "." one digit. This check may be disabled using |
| 472 | * option accept-invalid-http-request. |
| 473 | */ |
| 474 | if (!(h1c->px->options2 & PR_O2_REQBUG_OK)) { |
| 475 | if (sl.rq.v.len != 8) |
| 476 | return 0; |
| 477 | |
| 478 | if (*(sl.rq.v.ptr + 4) != '/' || |
| 479 | !isdigit((unsigned char)*(sl.rq.v.ptr + 5)) || |
| 480 | *(sl.rq.v.ptr + 6) != '.' || |
| 481 | !isdigit((unsigned char)*(sl.rq.v.ptr + 7))) |
| 482 | return 0; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 483 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 484 | else if (!sl.rq.v.len) { |
| 485 | /* try to convert HTTP/0.9 requests to HTTP/1.0 */ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 486 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 487 | /* RFC 1945 allows only GET for HTTP/0.9 requests */ |
| 488 | if (sl.rq.meth != HTTP_METH_GET) |
| 489 | return 0; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 490 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 491 | /* HTTP/0.9 requests *must* have a request URI, per RFC 1945 */ |
| 492 | if (!sl.rq.u.len) |
| 493 | return 0; |
| 494 | |
| 495 | /* Add HTTP version */ |
| 496 | sl.rq.v = ist("HTTP/1.0"); |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 497 | return 1; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 498 | } |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 499 | |
| 500 | if ((sl.rq.v.len == 8) && |
Christopher Faulet | aa75b3d | 2018-12-05 16:20:40 +0100 | [diff] [blame] | 501 | ((*(sl.rq.v.ptr + 5) > '1') || |
| 502 | ((*(sl.rq.v.ptr + 5) == '1') && (*(sl.rq.v.ptr + 7) >= '1')))) |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 503 | h1m->flags |= H1_MF_VER_11; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 504 | return 1; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 505 | } |
| 506 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 507 | /* |
| 508 | * Check the validity of the response version. If the version is valid, it |
| 509 | * returns 1. Otherwise, it returns 0. |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 510 | */ |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 511 | 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] | 512 | { |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 513 | struct h1c *h1c = h1s->h1c; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 514 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 515 | /* RFC7230#2.6 has enforced the format of the HTTP version string to be |
| 516 | * exactly one digit "." one digit. This check may be disabled using |
| 517 | * option accept-invalid-http-request. |
| 518 | */ |
| 519 | if (!(h1c->px->options2 & PR_O2_RSPBUG_OK)) { |
| 520 | if (sl.st.v.len != 8) |
| 521 | return 0; |
| 522 | |
| 523 | if (*(sl.st.v.ptr + 4) != '/' || |
| 524 | !isdigit((unsigned char)*(sl.st.v.ptr + 5)) || |
| 525 | *(sl.st.v.ptr + 6) != '.' || |
| 526 | !isdigit((unsigned char)*(sl.st.v.ptr + 7))) |
| 527 | return 0; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 528 | } |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 529 | |
| 530 | if ((sl.st.v.len == 8) && |
Christopher Faulet | aa75b3d | 2018-12-05 16:20:40 +0100 | [diff] [blame] | 531 | ((*(sl.st.v.ptr + 5) > '1') || |
| 532 | ((*(sl.st.v.ptr + 5) == '1') && (*(sl.st.v.ptr + 7) >= '1')))) |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 533 | h1m->flags |= H1_MF_VER_11; |
| 534 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 535 | return 1; |
| 536 | } |
| 537 | /* Remove all "Connection:" headers from the HTX message <htx> */ |
| 538 | static void h1_remove_conn_hdrs(struct h1m *h1m, struct htx *htx) |
| 539 | { |
| 540 | struct ist hdr = {.ptr = "Connection", .len = 10}; |
| 541 | struct http_hdr_ctx ctx; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 542 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 543 | while (http_find_header(htx, hdr, &ctx, 1)) |
| 544 | http_remove_header(htx, &ctx); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 545 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 546 | h1m->flags &= ~(H1_MF_CONN_KAL|H1_MF_CONN_CLO); |
| 547 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 548 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 549 | /* Add a "Connection:" header with the value <value> into the HTX message |
| 550 | * <htx>. |
| 551 | */ |
| 552 | static void h1_add_conn_hdr(struct h1m *h1m, struct htx *htx, struct ist value) |
| 553 | { |
| 554 | struct ist hdr = {.ptr = "Connection", .len = 10}; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 555 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 556 | http_add_header(htx, hdr, value); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 557 | } |
| 558 | |
| 559 | /* Deduce the connection mode of the client connection, depending on the |
| 560 | * configuration and the H1 message flags. This function is called twice, the |
| 561 | * first time when the request is parsed and the second time when the response |
| 562 | * is parsed. |
| 563 | */ |
| 564 | static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m) |
| 565 | { |
| 566 | struct proxy *fe = h1s->h1c->px; |
| 567 | int flag = H1S_F_WANT_KAL; /* For client connection: server-close == keepalive */ |
| 568 | |
| 569 | /* Tunnel mode can only by set on the frontend */ |
| 570 | if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN) |
| 571 | flag = H1S_F_WANT_TUN; |
| 572 | else if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) |
| 573 | flag = H1S_F_WANT_CLO; |
| 574 | |
| 575 | /* flags order: CLO > SCL > TUN > KAL */ |
| 576 | if ((h1s->flags & H1S_F_WANT_MSK) < flag) |
| 577 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | flag; |
| 578 | |
| 579 | if (h1m->flags & H1_MF_RESP) { |
| 580 | /* Either we've established an explicit tunnel, or we're |
| 581 | * switching the protocol. In both cases, we're very unlikely to |
| 582 | * understand the next protocols. We have to switch to tunnel |
| 583 | * mode, so that we transfer the request and responses then let |
| 584 | * this protocol pass unmodified. When we later implement |
| 585 | * specific parsers for such protocols, we'll want to check the |
| 586 | * Upgrade header which contains information about that protocol |
| 587 | * for responses with status 101 (eg: see RFC2817 about TLS). |
| 588 | */ |
| 589 | if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) || |
| 590 | h1s->status == 101) |
| 591 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN; |
Christopher Faulet | bd44ca6 | 2018-11-29 09:55:22 +0100 | [diff] [blame] | 592 | else if (!(h1m->flags & H1_MF_XFER_LEN) || /* no length known => close */ |
| 593 | (h1m->flags & H1_MF_CONN_CLO && h1s->req.state != H1_MSG_DONE)) /*explicit close and unfinished request */ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 594 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
| 595 | } |
| 596 | else { |
| 597 | if (h1s->flags & H1S_F_WANT_KAL && |
| 598 | (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || /* no KA in HTTP/1.0 */ |
| 599 | h1m->flags & H1_MF_CONN_CLO)) /* explicit close */ |
| 600 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
| 601 | } |
| 602 | |
| 603 | /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */ |
| 604 | if (h1s->flags & H1S_F_WANT_KAL && fe->state == PR_STSTOPPED) |
| 605 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
| 606 | } |
| 607 | |
| 608 | /* Deduce the connection mode of the client connection, depending on the |
| 609 | * configuration and the H1 message flags. This function is called twice, the |
| 610 | * first time when the request is parsed and the second time when the response |
| 611 | * is parsed. |
| 612 | */ |
| 613 | static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m) |
| 614 | { |
Christopher Faulet | a1692f5 | 2018-11-22 10:19:50 +0100 | [diff] [blame] | 615 | struct h1c *h1c = h1s->h1c; |
| 616 | struct session *sess = h1c->conn->owner; |
| 617 | struct proxy *fe = sess->fe; |
| 618 | struct proxy *be = h1c->px; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 619 | int flag = H1S_F_WANT_KAL; |
| 620 | |
| 621 | /* Tunnel mode can only by set on the frontend */ |
| 622 | if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN) |
| 623 | flag = H1S_F_WANT_TUN; |
| 624 | |
| 625 | /* For the server connection: server-close == httpclose */ |
| 626 | if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL || |
| 627 | (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL || |
| 628 | (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO || |
| 629 | (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) |
| 630 | flag = H1S_F_WANT_CLO; |
| 631 | |
| 632 | /* flags order: CLO > SCL > TUN > KAL */ |
| 633 | if ((h1s->flags & H1S_F_WANT_MSK) < flag) |
| 634 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | flag; |
| 635 | |
| 636 | if (h1m->flags & H1_MF_RESP) { |
| 637 | /* Either we've established an explicit tunnel, or we're |
| 638 | * switching the protocol. In both cases, we're very unlikely to |
| 639 | * understand the next protocols. We have to switch to tunnel |
| 640 | * mode, so that we transfer the request and responses then let |
| 641 | * this protocol pass unmodified. When we later implement |
| 642 | * specific parsers for such protocols, we'll want to check the |
| 643 | * Upgrade header which contains information about that protocol |
| 644 | * for responses with status 101 (eg: see RFC2817 about TLS). |
| 645 | */ |
| 646 | if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) || |
| 647 | h1s->status == 101) |
| 648 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN; |
| 649 | else if (!(h1m->flags & H1_MF_XFER_LEN)) /* no length known => close */ |
| 650 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
| 651 | else if (h1s->flags & H1S_F_WANT_KAL && |
| 652 | (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || /* no KA in HTTP/1.0 */ |
| 653 | h1m->flags & H1_MF_CONN_CLO)) /* explicit close */ |
| 654 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
| 655 | } |
Christopher Faulet | 7003378 | 2018-12-05 13:50:11 +0100 | [diff] [blame] | 656 | else { |
| 657 | if (h1s->flags & H1S_F_WANT_KAL && |
| 658 | (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || /* no KA in HTTP/1.0 */ |
| 659 | h1m->flags & H1_MF_CONN_CLO)) /* explicit close */ |
| 660 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
| 661 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 662 | |
| 663 | /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */ |
| 664 | if (h1s->flags & H1S_F_WANT_KAL && be->state == PR_STSTOPPED) |
| 665 | h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 666 | } |
| 667 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 668 | static void h1_update_req_conn_hdr(struct h1s *h1s, struct h1m *h1m, |
| 669 | struct htx *htx, struct ist *conn_val) |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 670 | { |
| 671 | struct proxy *px = h1s->h1c->px; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 672 | |
| 673 | /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage" |
| 674 | * token is found |
| 675 | */ |
| 676 | 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] | 677 | return; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 678 | |
| 679 | if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) { |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 680 | if (h1m->flags & H1_MF_CONN_CLO) { |
| 681 | if (conn_val) |
| 682 | *conn_val = ist(""); |
| 683 | if (htx) |
| 684 | h1_remove_conn_hdrs(h1m, htx); |
| 685 | } |
| 686 | if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))) { |
| 687 | if (conn_val) |
| 688 | *conn_val = ist("keep-alive"); |
| 689 | if (htx) |
| 690 | h1_add_conn_hdr(h1m, htx, ist("keep-alive")); |
| 691 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 692 | } |
| 693 | else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */ |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 694 | if (h1m->flags & H1_MF_CONN_KAL) { |
| 695 | if (conn_val) |
| 696 | *conn_val = ist(""); |
| 697 | if (htx) |
| 698 | h1_remove_conn_hdrs(h1m, htx); |
| 699 | } |
| 700 | if ((h1m->flags & (H1_MF_VER_11|H1_MF_CONN_CLO)) == H1_MF_VER_11) { |
| 701 | if (conn_val) |
| 702 | *conn_val = ist("close"); |
| 703 | if (htx) |
| 704 | h1_add_conn_hdr(h1m, htx, ist("close")); |
| 705 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 706 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 707 | } |
| 708 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 709 | static void h1_update_res_conn_hdr(struct h1s *h1s, struct h1m *h1m, |
| 710 | struct htx *htx, struct ist *conn_val) |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 711 | { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 712 | /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage" |
| 713 | * token is found |
| 714 | */ |
| 715 | 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] | 716 | return; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 717 | |
| 718 | if (h1s->flags & H1S_F_WANT_KAL) { |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 719 | if (h1m->flags & H1_MF_CONN_CLO) { |
| 720 | if (conn_val) |
| 721 | *conn_val = ist(""); |
| 722 | if (htx) |
| 723 | h1_remove_conn_hdrs(h1m, htx); |
| 724 | } |
| 725 | if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))) { |
| 726 | if (conn_val) |
| 727 | *conn_val = ist("keep-alive"); |
| 728 | if (htx) |
| 729 | h1_add_conn_hdr(h1m, htx, ist("keep-alive")); |
| 730 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 731 | } |
| 732 | else { /* H1S_F_WANT_CLO */ |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 733 | if (h1m->flags & H1_MF_CONN_KAL) { |
| 734 | if (conn_val) |
| 735 | *conn_val = ist(""); |
| 736 | if (htx) |
| 737 | h1_remove_conn_hdrs(h1m, htx); |
| 738 | } |
| 739 | if ((h1m->flags & (H1_MF_VER_11|H1_MF_CONN_CLO)) == H1_MF_VER_11) { |
| 740 | if (conn_val) |
| 741 | *conn_val = ist("close"); |
| 742 | if (htx) |
| 743 | h1_add_conn_hdr(h1m, htx, ist("close")); |
| 744 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 745 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 746 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 747 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 748 | /* Set the right connection mode and update "Connection:" header if |
| 749 | * needed. <htx> and <conn_val> can be NULL. When <htx> is not NULL, the HTX |
| 750 | * message is updated accordingly. When <conn_val> is not NULL, it is set with |
| 751 | * the new header value. |
| 752 | */ |
| 753 | static void h1_process_conn_mode(struct h1s *h1s, struct h1m *h1m, |
| 754 | struct htx *htx, struct ist *conn_val) |
| 755 | { |
| 756 | if (!conn_is_back(h1s->h1c->conn)) { |
| 757 | h1_set_cli_conn_mode(h1s, h1m); |
| 758 | if (h1m->flags & H1_MF_RESP) |
| 759 | h1_update_res_conn_hdr(h1s, h1m, htx, conn_val); |
| 760 | } |
| 761 | else { |
| 762 | h1_set_srv_conn_mode(h1s, h1m); |
| 763 | if (!(h1m->flags & H1_MF_RESP)) |
| 764 | h1_update_req_conn_hdr(h1s, h1m, htx, conn_val); |
| 765 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 766 | } |
| 767 | |
Christopher Faulet | e44769b | 2018-11-29 23:01:45 +0100 | [diff] [blame] | 768 | |
| 769 | /* Append the description of what is present in error snapshot <es> into <out>. |
| 770 | * The description must be small enough to always fit in a buffer. The output |
| 771 | * buffer may be the trash so the trash must not be used inside this function. |
| 772 | */ |
| 773 | static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es) |
| 774 | { |
| 775 | chunk_appendf(out, |
Christopher Faulet | aa75b3d | 2018-12-05 16:20:40 +0100 | [diff] [blame] | 776 | " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n" |
| 777 | " H1 msg state %s(%d), H1 msg flags 0x%08x\n" |
| 778 | " H1 chunk len %lld bytes, H1 body len %lld bytes :\n", |
| 779 | es->ctx.h1.c_flags, es->ctx.h1.s_flags, |
| 780 | h1m_state_str(es->ctx.h1.state), es->ctx.h1.state, |
| 781 | 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] | 782 | } |
| 783 | /* |
| 784 | * Capture a bad request or response and archive it in the proxy's structure. |
| 785 | * By default it tries to report the error position as h1m->err_pos. However if |
| 786 | * this one is not set, it will then report h1m->next, which is the last known |
| 787 | * parsing point. The function is able to deal with wrapping buffers. It always |
| 788 | * displays buffers as a contiguous area starting at buf->p. The direction is |
| 789 | * determined thanks to the h1m's flags. |
| 790 | */ |
| 791 | static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s, |
| 792 | struct h1m *h1m, struct buffer *buf) |
| 793 | { |
| 794 | struct session *sess = h1c->conn->owner; |
| 795 | struct proxy *proxy = h1c->px; |
| 796 | struct proxy *other_end = sess->fe; |
| 797 | union error_snapshot_ctx ctx; |
| 798 | |
| 799 | if (h1s->cs->data) |
| 800 | other_end = si_strm(h1s->cs->data)->be; |
| 801 | |
| 802 | /* http-specific part now */ |
| 803 | ctx.h1.state = h1m->state; |
| 804 | ctx.h1.c_flags = h1c->flags; |
| 805 | ctx.h1.s_flags = h1s->flags; |
| 806 | ctx.h1.m_flags = h1m->flags; |
| 807 | ctx.h1.m_clen = h1m->curr_len; |
| 808 | ctx.h1.m_blen = h1m->body_len; |
| 809 | |
| 810 | proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end, |
| 811 | h1c->conn->target, sess, buf, 0, 0, |
Christopher Faulet | aa75b3d | 2018-12-05 16:20:40 +0100 | [diff] [blame] | 812 | (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next, |
| 813 | &ctx, h1_show_error_snapshot); |
Christopher Faulet | e44769b | 2018-11-29 23:01:45 +0100 | [diff] [blame] | 814 | } |
| 815 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 816 | /* |
| 817 | * 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] | 818 | * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR |
| 819 | * 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] | 820 | * responsible to update the parser state <h1m>. |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 821 | */ |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 822 | 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] | 823 | struct buffer *buf, size_t *ofs, size_t max) |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 824 | { |
| 825 | struct http_hdr hdrs[MAX_HTTP_HDR]; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 826 | union h1_sl h1sl; |
| 827 | unsigned int flags = HTX_SL_F_NONE; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 828 | int ret = 0; |
| 829 | |
Christopher Faulet | d44ad5b | 2018-11-19 21:52:12 +0100 | [diff] [blame] | 830 | if (!max) |
| 831 | goto end; |
| 832 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 833 | /* Realing input buffer if necessary */ |
| 834 | if (b_head(buf) + b_data(buf) > b_wrap(buf)) |
| 835 | b_slow_realign(buf, trash.area, 0); |
| 836 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 837 | ret = h1_headers_to_hdr_list(b_peek(buf, *ofs), b_peek(buf, *ofs) + max, |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 838 | hdrs, sizeof(hdrs)/sizeof(hdrs[0]), h1m, &h1sl); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 839 | if (ret <= 0) { |
| 840 | /* Incomplete or invalid message. If the buffer is full, it's an |
| 841 | * error because headers are too large to be handled by the |
| 842 | * parser. */ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 843 | if (ret < 0 || (!ret && b_full(buf))) |
| 844 | goto error; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 845 | goto end; |
| 846 | } |
| 847 | |
| 848 | /* messages headers fully parsed, do some checks to prepare the body |
| 849 | * parsing. |
| 850 | */ |
| 851 | |
| 852 | /* Be sure to keep some space to do headers rewritting */ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 853 | if (ret > (b_size(buf) - global.tune.maxrewrite)) |
| 854 | goto error; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 855 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 856 | /* Save the request's method or the response's status, check if the body |
| 857 | * length is known and check the VSN validity */ |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 858 | if (!(h1m->flags & H1_MF_RESP)) { |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 859 | h1s->meth = h1sl.rq.meth; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 860 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 861 | /* Request have always a known length */ |
| 862 | h1m->flags |= H1_MF_XFER_LEN; |
| 863 | if (!(h1m->flags & H1_MF_CHNK) && !h1m->body_len) |
| 864 | h1m->state = H1_MSG_DONE; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 865 | |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 866 | if (!h1_process_req_vsn(h1s, h1m, h1sl)) { |
| 867 | h1m->err_pos = h1sl.rq.v.ptr - b_head(buf); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 868 | h1m->err_state = h1m->state; |
| 869 | goto vsn_error; |
| 870 | } |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 871 | } |
| 872 | else { |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 873 | h1s->status = h1sl.st.status; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 874 | |
| 875 | if ((h1s->meth == HTTP_METH_HEAD) || |
| 876 | (h1s->status >= 100 && h1s->status < 200) || |
| 877 | (h1s->status == 204) || (h1s->status == 304) || |
| 878 | (h1s->meth == HTTP_METH_CONNECT && h1s->status == 200)) { |
| 879 | h1m->flags &= ~(H1_MF_CLEN|H1_MF_CHNK); |
| 880 | h1m->flags |= H1_MF_XFER_LEN; |
| 881 | h1m->curr_len = h1m->body_len = 0; |
| 882 | h1m->state = H1_MSG_DONE; |
| 883 | } |
| 884 | else if (h1m->flags & (H1_MF_CLEN|H1_MF_CHNK)) { |
| 885 | h1m->flags |= H1_MF_XFER_LEN; |
| 886 | if ((h1m->flags & H1_MF_CLEN) && !h1m->body_len) |
| 887 | h1m->state = H1_MSG_DONE; |
| 888 | } |
| 889 | else |
| 890 | h1m->state = H1_MSG_TUNNEL; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 891 | |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 892 | if (!h1_process_res_vsn(h1s, h1m, h1sl)) { |
| 893 | h1m->err_pos = h1sl.st.v.ptr - b_head(buf); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 894 | h1m->err_state = h1m->state; |
| 895 | goto vsn_error; |
| 896 | } |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 897 | } |
| 898 | |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 899 | /* Set HTX start-line flags */ |
| 900 | if (h1m->flags & H1_MF_VER_11) |
| 901 | flags |= HTX_SL_F_VER_11; |
| 902 | if (h1m->flags & H1_MF_XFER_ENC) |
| 903 | flags |= HTX_SL_F_XFER_ENC; |
| 904 | if (h1m->flags & H1_MF_XFER_LEN) { |
| 905 | flags |= HTX_SL_F_XFER_LEN; |
| 906 | if (h1m->flags & H1_MF_CHNK) |
| 907 | flags |= HTX_SL_F_CHNK; |
| 908 | else if (h1m->flags & H1_MF_CLEN) |
| 909 | flags |= HTX_SL_F_CLEN; |
Christopher Faulet | b2db4fa | 2018-11-27 16:51:09 +0100 | [diff] [blame] | 910 | if (h1m->state == H1_MSG_DONE) |
| 911 | flags |= HTX_SL_F_BODYLESS; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 912 | } |
| 913 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 914 | if (!(h1m->flags & H1_MF_RESP)) { |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 915 | struct htx_sl *sl; |
| 916 | |
| 917 | sl = htx_add_stline(htx, HTX_BLK_REQ_SL, flags, h1sl.rq.m, h1sl.rq.u, h1sl.rq.v); |
| 918 | if (!sl || !htx_add_all_headers(htx, hdrs)) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 919 | goto error; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 920 | sl->info.req.meth = h1s->meth; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 921 | } |
| 922 | else { |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 923 | struct htx_sl *sl; |
| 924 | |
| 925 | flags |= HTX_SL_F_IS_RESP; |
| 926 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, h1sl.st.v, h1sl.st.c, h1sl.st.r); |
| 927 | if (!sl || !htx_add_all_headers(htx, hdrs)) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 928 | goto error; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 929 | sl->info.res.status = h1s->status; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 930 | } |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 931 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 932 | if (h1m->state == H1_MSG_DONE) |
| 933 | if (!htx_add_endof(htx, HTX_BLK_EOM)) |
| 934 | goto error; |
| 935 | |
| 936 | h1_process_conn_mode(h1s, h1m, htx, NULL); |
| 937 | |
| 938 | /* If body length cannot be determined, set htx->extra to |
| 939 | * ULLONG_MAX. This value is impossible in other cases. |
| 940 | */ |
| 941 | htx->extra = ((h1m->flags & H1_MF_XFER_LEN) ? h1m->curr_len : ULLONG_MAX); |
| 942 | |
| 943 | /* Recheck there is enough space to do headers rewritting */ |
| 944 | if (htx_used_space(htx) > b_size(buf) - global.tune.maxrewrite) |
| 945 | goto error; |
| 946 | |
| 947 | *ofs += ret; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 948 | end: |
| 949 | return ret; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 950 | |
| 951 | error: |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 952 | h1m->err_state = h1m->state; |
| 953 | h1m->err_pos = h1m->next; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 954 | vsn_error: |
| 955 | h1s->flags |= (!(h1m->flags & H1_MF_RESP) ? H1S_F_REQ_ERROR : H1S_F_RES_ERROR); |
Christopher Faulet | e44769b | 2018-11-29 23:01:45 +0100 | [diff] [blame] | 956 | h1_capture_bad_message(h1s->h1c, h1s, h1m, buf); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 957 | ret = 0; |
| 958 | goto end; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 959 | } |
| 960 | |
| 961 | /* |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 962 | * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it |
| 963 | * 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] | 964 | * 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] | 965 | * responsible to update the parser state <h1m>. |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 966 | */ |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 967 | 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] | 968 | struct buffer *buf, size_t *ofs, size_t max, |
| 969 | struct buffer *htxbuf) |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 970 | { |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 971 | uint32_t data_space = htx_free_data_space(htx); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 972 | size_t total = 0; |
| 973 | int ret = 0; |
| 974 | |
| 975 | if (h1m->flags & H1_MF_XFER_LEN) { |
| 976 | if (h1m->flags & H1_MF_CLEN) { |
| 977 | /* content-length: read only h2m->body_len */ |
| 978 | ret = max; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 979 | if (ret > data_space) |
| 980 | ret = data_space; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 981 | if ((uint64_t)ret > h1m->curr_len) |
| 982 | ret = h1m->curr_len; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 983 | if (ret > b_contig_data(buf, *ofs)) |
| 984 | ret = b_contig_data(buf, *ofs); |
| 985 | if (ret) { |
Willy Tarreau | 78f548f | 2018-12-05 10:02:39 +0100 | [diff] [blame] | 986 | /* very often with large files we'll face the following |
| 987 | * situation : |
| 988 | * - htx is empty and points to <htxbuf> |
| 989 | * - ret == buf->data |
| 990 | * - buf->head == sizeof(struct htx) |
| 991 | * => we can swap the buffers and place an htx header into |
| 992 | * the target buffer instead |
| 993 | */ |
| 994 | if (unlikely(htx_is_empty(htx) && ret == b_data(buf) && |
| 995 | !*ofs && b_head_ofs(buf) == sizeof(struct htx))) { |
| 996 | void *raw_area = buf->area; |
| 997 | void *htx_area = htxbuf->area; |
| 998 | struct htx_blk *blk; |
| 999 | |
| 1000 | buf->area = htx_area; |
| 1001 | htxbuf->area = raw_area; |
| 1002 | htx = (struct htx *)htxbuf->area; |
| 1003 | htx->size = htxbuf->size - sizeof(*htx); |
| 1004 | htx_reset(htx); |
| 1005 | b_set_data(htxbuf, b_size(htxbuf)); |
| 1006 | |
| 1007 | blk = htx_add_blk(htx, HTX_BLK_DATA, ret); |
| 1008 | blk->info += ret; |
| 1009 | /* nothing else to do, the old buffer now contains an |
| 1010 | * empty pre-initialized HTX header |
| 1011 | */ |
| 1012 | } |
| 1013 | else if (!htx_add_data(htx, ist2(b_peek(buf, *ofs), ret))) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1014 | goto end; |
| 1015 | h1m->curr_len -= ret; |
| 1016 | *ofs += ret; |
| 1017 | total += ret; |
| 1018 | } |
| 1019 | |
| 1020 | if (!h1m->curr_len) { |
| 1021 | if (!htx_add_endof(htx, HTX_BLK_EOM)) |
| 1022 | goto end; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1023 | h1m->state = H1_MSG_DONE; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1024 | } |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1025 | } |
| 1026 | else if (h1m->flags & H1_MF_CHNK) { |
| 1027 | new_chunk: |
| 1028 | /* te:chunked : parse chunks */ |
| 1029 | if (h1m->state == H1_MSG_CHUNK_CRLF) { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1030 | ret = h1_skip_chunk_crlf(buf, *ofs, *ofs + max); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1031 | if (ret <= 0) |
| 1032 | goto end; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1033 | h1m->state = H1_MSG_CHUNK_SIZE; |
| 1034 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1035 | max -= ret; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1036 | *ofs += ret; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1037 | total += ret; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1038 | } |
| 1039 | |
| 1040 | if (h1m->state == H1_MSG_CHUNK_SIZE) { |
| 1041 | unsigned int chksz; |
| 1042 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1043 | ret = h1_parse_chunk_size(buf, *ofs, *ofs + max, &chksz); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1044 | if (ret <= 0) |
| 1045 | goto end; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1046 | if (!chksz) { |
| 1047 | if (!htx_add_endof(htx, HTX_BLK_EOD)) |
| 1048 | goto end; |
Christopher Faulet | 1727648 | 2018-11-22 11:44:35 +0100 | [diff] [blame] | 1049 | h1s->flags |= H1S_F_HAVE_EOD; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1050 | h1m->state = H1_MSG_TRAILERS; |
| 1051 | } |
| 1052 | else |
| 1053 | h1m->state = H1_MSG_DATA; |
| 1054 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1055 | h1m->curr_len = chksz; |
| 1056 | h1m->body_len += chksz; |
| 1057 | max -= ret; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1058 | *ofs += ret; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1059 | total += ret; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1060 | } |
| 1061 | |
| 1062 | if (h1m->state == H1_MSG_DATA) { |
| 1063 | ret = max; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1064 | if (ret > data_space) |
| 1065 | ret = data_space; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1066 | if ((uint64_t)ret > h1m->curr_len) |
| 1067 | ret = h1m->curr_len; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1068 | if (ret > b_contig_data(buf, *ofs)) |
| 1069 | ret = b_contig_data(buf, *ofs); |
| 1070 | if (ret) { |
| 1071 | if (!htx_add_data(htx, ist2(b_peek(buf, *ofs), ret))) |
| 1072 | goto end; |
| 1073 | h1m->curr_len -= ret; |
| 1074 | max -= ret; |
| 1075 | *ofs += ret; |
| 1076 | total += ret; |
| 1077 | } |
| 1078 | if (!h1m->curr_len) { |
| 1079 | h1m->state = H1_MSG_CHUNK_CRLF; |
| 1080 | goto new_chunk; |
| 1081 | } |
| 1082 | goto end; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1083 | } |
| 1084 | |
| 1085 | if (h1m->state == H1_MSG_TRAILERS) { |
Christopher Faulet | 1727648 | 2018-11-22 11:44:35 +0100 | [diff] [blame] | 1086 | /* Trailers were alread parsed, only the EOM |
| 1087 | * need to be added */ |
| 1088 | if (h1s->flags & H1S_F_HAVE_TLR) |
| 1089 | goto skip_tlr_parsing; |
| 1090 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1091 | ret = h1_measure_trailers(buf, *ofs, *ofs + max); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1092 | if (ret > data_space) |
| 1093 | ret = (htx_is_empty(htx) ? -1 : 0); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1094 | if (ret <= 0) |
| 1095 | goto end; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1096 | |
| 1097 | /* Realing input buffer if tailers wrap. For now |
| 1098 | * this is a workaroung. Because trailers are |
| 1099 | * not split on CRLF, like headers, there is no |
| 1100 | * way to know where to split it when trailers |
| 1101 | * wrap. This is a limitation of |
| 1102 | * h1_measure_trailers. |
| 1103 | */ |
| 1104 | if (b_peek(buf, *ofs) > b_peek(buf, *ofs + ret)) |
| 1105 | b_slow_realign(buf, trash.area, 0); |
| 1106 | |
| 1107 | if (!htx_add_trailer(htx, ist2(b_peek(buf, *ofs), ret))) |
| 1108 | goto end; |
Christopher Faulet | 1727648 | 2018-11-22 11:44:35 +0100 | [diff] [blame] | 1109 | h1s->flags |= H1S_F_HAVE_TLR; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1110 | max -= ret; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1111 | *ofs += ret; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1112 | total += ret; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1113 | |
Christopher Faulet | 1727648 | 2018-11-22 11:44:35 +0100 | [diff] [blame] | 1114 | skip_tlr_parsing: |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1115 | if (!htx_add_endof(htx, HTX_BLK_EOM)) |
| 1116 | goto end; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1117 | h1m->state = H1_MSG_DONE; |
| 1118 | } |
| 1119 | } |
| 1120 | else { |
| 1121 | /* XFER_LEN is set but not CLEN nor CHNK, it means there |
| 1122 | * is no body. Switch the message in DONE state |
| 1123 | */ |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1124 | if (!htx_add_endof(htx, HTX_BLK_EOM)) |
| 1125 | goto end; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1126 | h1m->state = H1_MSG_DONE; |
| 1127 | } |
| 1128 | } |
| 1129 | else { |
| 1130 | /* no content length, read till SHUTW */ |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1131 | ret = max; |
| 1132 | if (ret > data_space) |
| 1133 | ret = data_space; |
| 1134 | if (ret > b_contig_data(buf, *ofs)) |
| 1135 | ret = b_contig_data(buf, *ofs); |
| 1136 | if (ret) { |
| 1137 | if (!htx_add_data(htx, ist2(b_peek(buf, *ofs), ret))) |
| 1138 | goto end; |
| 1139 | |
Olivier Houchard | cf42d5a | 2018-12-04 17:41:58 +0100 | [diff] [blame] | 1140 | *ofs += ret; |
| 1141 | total = ret; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1142 | } |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1143 | } |
| 1144 | |
| 1145 | end: |
| 1146 | if (ret < 0) { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1147 | h1s->flags |= (!(h1m->flags & H1_MF_RESP) ? H1S_F_REQ_ERROR : H1S_F_RES_ERROR); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1148 | h1m->err_state = h1m->state; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1149 | h1m->err_pos = *ofs + max + ret; |
Christopher Faulet | e44769b | 2018-11-29 23:01:45 +0100 | [diff] [blame] | 1150 | h1_capture_bad_message(h1s->h1c, h1s, h1m, buf); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1151 | return 0; |
| 1152 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1153 | /* update htx->extra, only when the body length is known */ |
| 1154 | if (h1m->flags & H1_MF_XFER_LEN) |
| 1155 | htx->extra = h1m->curr_len; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1156 | return total; |
| 1157 | } |
| 1158 | |
| 1159 | /* |
| 1160 | * Synchronize the request and the response before reseting them. Except for 1xx |
| 1161 | * responses, we wait that the request and the response are in DONE state and |
| 1162 | * that all data are forwarded for both. For 1xx responses, only the response is |
| 1163 | * reset, waiting the final one. Many 1xx messages can be sent. |
| 1164 | */ |
| 1165 | static void h1_sync_messages(struct h1c *h1c) |
| 1166 | { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1167 | struct h1s *h1s = h1c->h1s; |
| 1168 | |
| 1169 | if (!h1s) |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1170 | return; |
| 1171 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1172 | if (h1s->res.state == H1_MSG_DONE && |
| 1173 | (h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) && |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1174 | (conn_is_back(h1c->conn) || !b_data(&h1c->obuf))) { |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1175 | /* For 100-Continue response or any other informational 1xx |
| 1176 | * response which is non-final, don't reset the request, the |
| 1177 | * transaction is not finished. We take care the response was |
| 1178 | * transferred before. |
| 1179 | */ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1180 | h1m_init_res(&h1s->res); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1181 | h1s->res.flags |= H1_MF_NO_PHDR; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1182 | } |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1183 | else if (!b_data(&h1c->obuf) && |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1184 | h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) { |
| 1185 | if (h1s->flags & H1S_F_WANT_TUN) { |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1186 | h1m_init_req(&h1s->req); |
| 1187 | h1m_init_res(&h1s->res); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1188 | h1s->req.state = H1_MSG_TUNNEL; |
| 1189 | h1s->res.state = H1_MSG_TUNNEL; |
| 1190 | } |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1191 | } |
| 1192 | } |
| 1193 | |
| 1194 | /* |
| 1195 | * 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] | 1196 | * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if |
| 1197 | * it couldn't proceed. |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1198 | */ |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1199 | static size_t h1_process_input(struct h1c *h1c, struct buffer *buf, int flags) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1200 | { |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1201 | struct h1s *h1s = h1c->h1s; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1202 | struct h1m *h1m; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1203 | struct htx *htx; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1204 | size_t total = 0; |
| 1205 | size_t ret = 0; |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1206 | size_t count, max; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1207 | int errflag; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1208 | |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1209 | htx = htx_from_buf(buf); |
| 1210 | count = b_data(&h1c->ibuf); |
| 1211 | max = htx_free_space(htx); |
| 1212 | if (flags & CO_RFL_KEEP_RSV) { |
| 1213 | if (max < global.tune.maxrewrite) |
| 1214 | goto end; |
| 1215 | max -= global.tune.maxrewrite; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1216 | } |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1217 | if (count > max) |
| 1218 | count = max; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1219 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1220 | if (!conn_is_back(h1c->conn)) { |
| 1221 | h1m = &h1s->req; |
| 1222 | errflag = H1S_F_REQ_ERROR; |
| 1223 | } |
| 1224 | else { |
| 1225 | h1m = &h1s->res; |
| 1226 | errflag = H1S_F_RES_ERROR; |
| 1227 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1228 | |
Christopher Faulet | d44ad5b | 2018-11-19 21:52:12 +0100 | [diff] [blame] | 1229 | do { |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1230 | if (h1m->state <= H1_MSG_LAST_LF) { |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1231 | ret = h1_process_headers(h1s, h1m, htx, &h1c->ibuf, &total, count); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1232 | if (!ret) |
| 1233 | break; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1234 | } |
| 1235 | else if (h1m->state <= H1_MSG_TRAILERS) { |
Willy Tarreau | 78f548f | 2018-12-05 10:02:39 +0100 | [diff] [blame] | 1236 | ret = h1_process_data(h1s, h1m, htx, &h1c->ibuf, &total, count, buf); |
| 1237 | htx = htx_from_buf(buf); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1238 | if (!ret) |
| 1239 | break; |
| 1240 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1241 | else if (h1m->state == H1_MSG_DONE) |
| 1242 | break; |
| 1243 | else if (h1m->state == H1_MSG_TUNNEL) { |
Willy Tarreau | 78f548f | 2018-12-05 10:02:39 +0100 | [diff] [blame] | 1244 | ret = h1_process_data(h1s, h1m, htx, &h1c->ibuf, &total, count, buf); |
| 1245 | htx = htx_from_buf(buf); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1246 | if (!ret) |
| 1247 | break; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1248 | } |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1249 | else { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1250 | h1s->flags |= errflag; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1251 | break; |
| 1252 | } |
| 1253 | |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1254 | count -= ret; |
Christopher Faulet | d44ad5b | 2018-11-19 21:52:12 +0100 | [diff] [blame] | 1255 | } while (!(h1s->flags & errflag) && count); |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1256 | |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1257 | if (h1s->flags & errflag) |
| 1258 | goto parsing_err; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1259 | |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1260 | b_del(&h1c->ibuf, total); |
| 1261 | |
| 1262 | end: |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 1263 | htx_to_buf(htx, buf); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1264 | |
Willy Tarreau | 45f2b89 | 2018-12-05 07:59:27 +0100 | [diff] [blame] | 1265 | 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] | 1266 | h1c->flags &= ~H1C_F_IN_FULL; |
| 1267 | tasklet_wakeup(h1c->wait_event.task); |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1268 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1269 | |
Christopher Faulet | 9c38840 | 2018-11-19 21:54:26 +0100 | [diff] [blame] | 1270 | if (b_data(&h1c->ibuf)) { |
| 1271 | if (!htx_is_empty(htx)) |
Olivier Houchard | d247be0 | 2018-12-06 16:22:29 +0100 | [diff] [blame] | 1272 | h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM; |
Christopher Faulet | 9c38840 | 2018-11-19 21:54:26 +0100 | [diff] [blame] | 1273 | } |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1274 | else { |
| 1275 | h1_release_buf(h1c, &h1c->ibuf); |
| 1276 | h1_sync_messages(h1c); |
| 1277 | |
Olivier Houchard | d247be0 | 2018-12-06 16:22:29 +0100 | [diff] [blame] | 1278 | h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM); |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1279 | if (h1s->cs->flags & CS_FL_REOS) |
| 1280 | h1s->cs->flags |= CS_FL_EOS; |
| 1281 | } |
| 1282 | return total; |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1283 | |
| 1284 | parsing_err: |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1285 | b_reset(&h1c->ibuf); |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1286 | htx->flags |= HTX_FL_PARSING_ERROR; |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 1287 | htx_to_buf(htx, buf); |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1288 | h1s->cs->flags |= CS_FL_EOS; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1289 | return 0; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1290 | } |
| 1291 | |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1292 | /* |
| 1293 | * Process outgoing data. It parses data and transfer them from the channel buffer into |
| 1294 | * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or |
| 1295 | * 0 if it couldn't proceed. |
| 1296 | */ |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1297 | static size_t h1_process_output(struct h1c *h1c, struct buffer *buf, size_t count) |
| 1298 | { |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1299 | struct h1s *h1s = h1c->h1s; |
| 1300 | struct h1m *h1m; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1301 | struct htx *chn_htx; |
| 1302 | struct htx_blk *blk; |
| 1303 | struct buffer *tmp; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1304 | size_t total = 0; |
Christopher Faulet | d1ebb1e | 2018-11-28 16:32:50 +0100 | [diff] [blame] | 1305 | int process_conn_mode = 1; /* If still 1 on EOH, process the connection mode */ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1306 | int errflag; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1307 | |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1308 | if (!count) |
| 1309 | goto end; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1310 | chn_htx = htx_from_buf(buf); |
| 1311 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1312 | if (!h1_get_buf(h1c, &h1c->obuf)) { |
| 1313 | h1c->flags |= H1C_F_OUT_ALLOC; |
| 1314 | goto end; |
| 1315 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1316 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1317 | if (!conn_is_back(h1c->conn)) { |
| 1318 | h1m = &h1s->res; |
| 1319 | errflag = H1S_F_RES_ERROR; |
| 1320 | } |
| 1321 | else { |
| 1322 | h1m = &h1s->req; |
| 1323 | errflag = H1S_F_REQ_ERROR; |
| 1324 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1325 | |
| 1326 | |
| 1327 | tmp = get_trash_chunk(); |
Willy Tarreau | c5efa33 | 2018-12-05 11:19:27 +0100 | [diff] [blame] | 1328 | |
| 1329 | /* pre-align the output buffer like the HTX in case it's empty. In this |
| 1330 | * case since it's aligned we don't need to use the temporary trash. |
| 1331 | */ |
| 1332 | if (!b_data(&h1c->obuf)) { |
| 1333 | h1c->obuf.head = sizeof(struct htx); |
| 1334 | tmp->area = h1c->obuf.area + h1c->obuf.head; |
| 1335 | } |
| 1336 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1337 | tmp->size = b_room(&h1c->obuf); |
| 1338 | |
| 1339 | blk = htx_get_head_blk(chn_htx); |
Christopher Faulet | b2e8416 | 2018-12-06 11:39:49 +0100 | [diff] [blame] | 1340 | while (count && !(h1s->flags & errflag) && blk) { |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 1341 | struct htx_sl *sl; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1342 | struct ist n, v; |
Christopher Faulet | b2e8416 | 2018-12-06 11:39:49 +0100 | [diff] [blame] | 1343 | enum htx_blk_type type = htx_get_blk_type(blk); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1344 | uint32_t sz = htx_get_blksz(blk); |
Christopher Faulet | b2e8416 | 2018-12-06 11:39:49 +0100 | [diff] [blame] | 1345 | uint32_t vlen; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1346 | |
Christopher Faulet | b2e8416 | 2018-12-06 11:39:49 +0100 | [diff] [blame] | 1347 | vlen = sz; |
| 1348 | if (vlen > count) { |
| 1349 | if (type != HTX_BLK_DATA && type != HTX_BLK_TLR) |
| 1350 | goto copy; |
| 1351 | vlen = count; |
| 1352 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1353 | |
Christopher Faulet | b2e8416 | 2018-12-06 11:39:49 +0100 | [diff] [blame] | 1354 | switch (type) { |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1355 | case HTX_BLK_UNUSED: |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1356 | break; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1357 | |
| 1358 | case HTX_BLK_REQ_SL: |
Christopher Faulet | 66229af | 2018-11-28 16:06:57 +0100 | [diff] [blame] | 1359 | h1m_init_req(h1m); |
| 1360 | h1m->flags |= H1_MF_NO_PHDR; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1361 | sl = htx_get_blk_ptr(chn_htx, blk); |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 1362 | h1s->meth = sl->info.req.meth; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1363 | h1_parse_req_vsn(h1m, sl); |
Christopher Faulet | c59ff23 | 2018-12-03 13:58:44 +0100 | [diff] [blame] | 1364 | if (!htx_reqline_to_h1(sl, tmp)) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1365 | goto copy; |
| 1366 | h1m->flags |= H1_MF_XFER_LEN; |
| 1367 | h1m->state = H1_MSG_HDR_FIRST; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1368 | break; |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1369 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1370 | case HTX_BLK_RES_SL: |
Christopher Faulet | 66229af | 2018-11-28 16:06:57 +0100 | [diff] [blame] | 1371 | h1m_init_res(h1m); |
| 1372 | h1m->flags |= H1_MF_NO_PHDR; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1373 | sl = htx_get_blk_ptr(chn_htx, blk); |
Christopher Faulet | 570d161 | 2018-11-26 11:13:57 +0100 | [diff] [blame] | 1374 | h1s->status = sl->info.res.status; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1375 | h1_parse_res_vsn(h1m, sl); |
Christopher Faulet | c59ff23 | 2018-12-03 13:58:44 +0100 | [diff] [blame] | 1376 | if (!htx_stline_to_h1(sl, tmp)) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1377 | goto copy; |
Christopher Faulet | 0359911 | 2018-11-27 11:21:21 +0100 | [diff] [blame] | 1378 | if (sl->flags & HTX_SL_F_XFER_LEN) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1379 | h1m->flags |= H1_MF_XFER_LEN; |
Christopher Faulet | d1ebb1e | 2018-11-28 16:32:50 +0100 | [diff] [blame] | 1380 | if (sl->info.res.status < 200 && |
| 1381 | (sl->info.res.status == 100 || sl->info.res.status >= 102)) |
| 1382 | process_conn_mode = 0; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1383 | h1m->state = H1_MSG_HDR_FIRST; |
| 1384 | break; |
| 1385 | |
| 1386 | case HTX_BLK_HDR: |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1387 | h1m->state = H1_MSG_HDR_NAME; |
| 1388 | n = htx_get_blk_name(chn_htx, blk); |
| 1389 | v = htx_get_blk_value(chn_htx, blk); |
| 1390 | |
| 1391 | if (isteqi(n, ist("transfer-encoding"))) |
| 1392 | h1_parse_xfer_enc_header(h1m, v); |
| 1393 | else if (isteqi(n, ist("connection"))) { |
| 1394 | h1_parse_connection_header(h1m, v); |
| 1395 | h1_process_conn_mode(h1s, h1m, NULL, &v); |
Christopher Faulet | d1ebb1e | 2018-11-28 16:32:50 +0100 | [diff] [blame] | 1396 | process_conn_mode = 0; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1397 | if (!v.len) |
| 1398 | goto skip_hdr; |
| 1399 | } |
| 1400 | |
Christopher Faulet | c59ff23 | 2018-12-03 13:58:44 +0100 | [diff] [blame] | 1401 | if (!htx_hdr_to_h1(n, v, tmp)) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1402 | goto copy; |
| 1403 | skip_hdr: |
| 1404 | h1m->state = H1_MSG_HDR_L2_LWS; |
| 1405 | break; |
| 1406 | |
| 1407 | case HTX_BLK_PHDR: |
| 1408 | /* not implemented yet */ |
| 1409 | h1m->flags |= errflag; |
| 1410 | break; |
| 1411 | |
| 1412 | case HTX_BLK_EOH: |
Christopher Faulet | d1ebb1e | 2018-11-28 16:32:50 +0100 | [diff] [blame] | 1413 | if (h1m->state == H1_MSG_HDR_L2_LWS && process_conn_mode) { |
| 1414 | /* There is no "Connection:" header and |
| 1415 | * it the conn_mode must be |
| 1416 | * processed. So do it */ |
| 1417 | n = ist("Connection"); |
| 1418 | v = ist(""); |
| 1419 | h1_process_conn_mode(h1s, h1m, NULL, &v); |
| 1420 | process_conn_mode = 0; |
| 1421 | if (v.len) { |
Christopher Faulet | c59ff23 | 2018-12-03 13:58:44 +0100 | [diff] [blame] | 1422 | if (!htx_hdr_to_h1(n, v, tmp)) |
Christopher Faulet | d1ebb1e | 2018-11-28 16:32:50 +0100 | [diff] [blame] | 1423 | goto copy; |
| 1424 | } |
| 1425 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1426 | h1m->state = H1_MSG_LAST_LF; |
| 1427 | if (!chunk_memcat(tmp, "\r\n", 2)) |
| 1428 | goto copy; |
| 1429 | |
| 1430 | h1m->state = H1_MSG_DATA; |
| 1431 | break; |
| 1432 | |
| 1433 | case HTX_BLK_DATA: |
| 1434 | v = htx_get_blk_value(chn_htx, blk); |
Christopher Faulet | b2e8416 | 2018-12-06 11:39:49 +0100 | [diff] [blame] | 1435 | v.len = vlen; |
Christopher Faulet | c59ff23 | 2018-12-03 13:58:44 +0100 | [diff] [blame] | 1436 | if (!htx_data_to_h1(v, tmp, !!(h1m->flags & H1_MF_CHNK))) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1437 | goto copy; |
| 1438 | break; |
| 1439 | |
| 1440 | case HTX_BLK_EOD: |
| 1441 | if (!chunk_memcat(tmp, "0\r\n", 3)) |
| 1442 | goto copy; |
Christopher Faulet | 3218821 | 2018-11-20 18:21:43 +0100 | [diff] [blame] | 1443 | h1s->flags |= H1S_F_HAVE_EOD; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1444 | h1m->state = H1_MSG_TRAILERS; |
| 1445 | break; |
| 1446 | |
| 1447 | case HTX_BLK_TLR: |
Christopher Faulet | 3218821 | 2018-11-20 18:21:43 +0100 | [diff] [blame] | 1448 | if (!(h1s->flags & H1S_F_HAVE_EOD)) { |
| 1449 | if (!chunk_memcat(tmp, "0\r\n", 3)) |
| 1450 | goto copy; |
| 1451 | h1s->flags |= H1S_F_HAVE_EOD; |
| 1452 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1453 | v = htx_get_blk_value(chn_htx, blk); |
Christopher Faulet | b2e8416 | 2018-12-06 11:39:49 +0100 | [diff] [blame] | 1454 | v.len = vlen; |
Christopher Faulet | c59ff23 | 2018-12-03 13:58:44 +0100 | [diff] [blame] | 1455 | if (!htx_trailer_to_h1(v, tmp)) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1456 | goto copy; |
Christopher Faulet | 3218821 | 2018-11-20 18:21:43 +0100 | [diff] [blame] | 1457 | h1s->flags |= H1S_F_HAVE_TLR; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1458 | break; |
| 1459 | |
| 1460 | case HTX_BLK_EOM: |
Christopher Faulet | 3218821 | 2018-11-20 18:21:43 +0100 | [diff] [blame] | 1461 | if ((h1m->flags & H1_MF_CHNK)) { |
| 1462 | if (!(h1s->flags & H1S_F_HAVE_EOD)) { |
| 1463 | if (!chunk_memcat(tmp, "0\r\n", 3)) |
| 1464 | goto copy; |
| 1465 | h1s->flags |= H1S_F_HAVE_EOD; |
| 1466 | } |
| 1467 | if (!(h1s->flags & H1S_F_HAVE_TLR)) { |
| 1468 | if (!chunk_memcat(tmp, "\r\n", 2)) |
| 1469 | goto copy; |
| 1470 | h1s->flags |= H1S_F_HAVE_TLR; |
| 1471 | } |
| 1472 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1473 | h1m->state = H1_MSG_DONE; |
| 1474 | break; |
| 1475 | |
| 1476 | case HTX_BLK_OOB: |
| 1477 | v = htx_get_blk_value(chn_htx, blk); |
| 1478 | if (!chunk_memcat(tmp, v.ptr, v.len)) |
| 1479 | goto copy; |
| 1480 | break; |
| 1481 | |
| 1482 | default: |
| 1483 | h1m->flags |= errflag; |
| 1484 | break; |
| 1485 | } |
Christopher Faulet | b2e8416 | 2018-12-06 11:39:49 +0100 | [diff] [blame] | 1486 | total += vlen; |
| 1487 | count -= vlen; |
| 1488 | if (sz == vlen) |
| 1489 | blk = htx_remove_blk(chn_htx, blk); |
| 1490 | else { |
| 1491 | htx_cut_data_blk(chn_htx, blk, vlen); |
| 1492 | break; |
| 1493 | } |
Christopher Faulet | 129817b | 2018-09-20 16:14:40 +0200 | [diff] [blame] | 1494 | } |
| 1495 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1496 | copy: |
Willy Tarreau | c5efa33 | 2018-12-05 11:19:27 +0100 | [diff] [blame] | 1497 | /* when the output buffer is empty, tmp shares the same area so that we |
| 1498 | * only have to update pointers and lengths. |
| 1499 | */ |
| 1500 | if (tmp->area == h1c->obuf.area) |
| 1501 | h1c->obuf.data = tmp->data; |
| 1502 | else |
| 1503 | b_putblk(&h1c->obuf, tmp->area, tmp->data); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1504 | |
Willy Tarreau | 45f2b89 | 2018-12-05 07:59:27 +0100 | [diff] [blame] | 1505 | if (!buf_room_for_htx_data(&h1c->obuf)) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1506 | h1c->flags |= H1C_F_OUT_FULL; |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 1507 | htx_to_buf(chn_htx, buf); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1508 | end: |
| 1509 | return total; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1510 | } |
| 1511 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1512 | /*********************************************************/ |
| 1513 | /* functions below are I/O callbacks from the connection */ |
| 1514 | /*********************************************************/ |
| 1515 | /* |
| 1516 | * Attempt to read data, and subscribe if none available |
| 1517 | */ |
| 1518 | static int h1_recv(struct h1c *h1c) |
| 1519 | { |
| 1520 | struct connection *conn = h1c->conn; |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 1521 | struct h1s *h1s = h1c->h1s; |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 1522 | size_t ret = 0, max; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1523 | int rcvd = 0; |
| 1524 | |
| 1525 | if (h1c->wait_event.wait_reason & SUB_CAN_RECV) |
Christopher Faulet | c386a88 | 2018-12-04 16:06:28 +0100 | [diff] [blame] | 1526 | return (b_data(&h1c->ibuf)); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1527 | |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 1528 | if (!h1_recv_allowed(h1c)) { |
| 1529 | rcvd = 1; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1530 | goto end; |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 1531 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1532 | |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 1533 | if (h1s && (h1s->flags & (H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA))) { |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1534 | rcvd = 1; |
| 1535 | goto end; |
| 1536 | } |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 1537 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1538 | if (!h1_get_buf(h1c, &h1c->ibuf)) { |
| 1539 | h1c->flags |= H1C_F_IN_ALLOC; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1540 | goto end; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1541 | } |
| 1542 | |
Olivier Houchard | 29a22bc | 2018-12-04 18:16:45 +0100 | [diff] [blame] | 1543 | /* |
| 1544 | * If we only have a small amount of data, realign it, |
| 1545 | * it's probably cheaper than doing 2 recv() calls. |
| 1546 | */ |
| 1547 | if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128) |
| 1548 | b_slow_realign(&h1c->ibuf, trash.area, 0); |
| 1549 | |
Willy Tarreau | 45f2b89 | 2018-12-05 07:59:27 +0100 | [diff] [blame] | 1550 | max = buf_room_for_htx_data(&h1c->ibuf); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1551 | if (max) { |
Willy Tarreau | 78f548f | 2018-12-05 10:02:39 +0100 | [diff] [blame] | 1552 | int aligned = 0; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1553 | h1c->flags &= ~H1C_F_IN_FULL; |
Willy Tarreau | 78f548f | 2018-12-05 10:02:39 +0100 | [diff] [blame] | 1554 | |
| 1555 | if (!b_data(&h1c->ibuf)) { |
| 1556 | /* try to pre-align the buffer like the rxbufs will be |
| 1557 | * to optimize memory copies. |
| 1558 | */ |
| 1559 | h1c->ibuf.data = sizeof(struct htx); |
| 1560 | aligned = 1; |
| 1561 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1562 | ret = conn->xprt->rcv_buf(conn, &h1c->ibuf, max, 0); |
Willy Tarreau | 78f548f | 2018-12-05 10:02:39 +0100 | [diff] [blame] | 1563 | if (aligned) { |
| 1564 | h1c->ibuf.data -= sizeof(struct htx); |
| 1565 | h1c->ibuf.head = sizeof(struct htx); |
| 1566 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1567 | } |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1568 | if (ret > 0) { |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1569 | rcvd = 1; |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 1570 | if (h1s && h1s->cs) { |
Christopher Faulet | 37e3607 | 2018-12-04 15:54:12 +0100 | [diff] [blame] | 1571 | h1s->cs->flags |= (CS_FL_READ_PARTIAL|CS_FL_RCV_MORE); |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 1572 | if (h1s->csinfo.t_idle == -1) |
| 1573 | h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake; |
| 1574 | } |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1575 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1576 | |
Willy Tarreau | 45f2b89 | 2018-12-05 07:59:27 +0100 | [diff] [blame] | 1577 | if (h1_recv_allowed(h1c) && buf_room_for_htx_data(&h1c->ibuf)) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1578 | conn->xprt->subscribe(conn, SUB_CAN_RECV, &h1c->wait_event); |
Christopher Faulet | 81d4843 | 2018-11-19 21:22:43 +0100 | [diff] [blame] | 1579 | else |
| 1580 | rcvd = 1; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1581 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1582 | end: |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 1583 | if ((ret > 0 || (conn->flags & CO_FL_ERROR) || |
| 1584 | conn_xprt_read0_pending(conn)) && h1s && h1s->recv_wait) { |
| 1585 | h1s->recv_wait->wait_reason &= ~SUB_CAN_RECV; |
| 1586 | tasklet_wakeup(h1s->recv_wait->task); |
| 1587 | h1s->recv_wait = NULL; |
| 1588 | |
| 1589 | } |
Christopher Faulet | e6b3994 | 2018-12-07 09:42:49 +0100 | [diff] [blame] | 1590 | if (conn_xprt_read0_pending(conn) && h1s && h1s->cs) |
Olivier Houchard | 6a2d334 | 2018-12-06 17:41:26 +0100 | [diff] [blame] | 1591 | h1s->cs->flags |= CS_FL_REOS; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1592 | if (!b_data(&h1c->ibuf)) |
| 1593 | h1_release_buf(h1c, &h1c->ibuf); |
Willy Tarreau | 45f2b89 | 2018-12-05 07:59:27 +0100 | [diff] [blame] | 1594 | else if (!buf_room_for_htx_data(&h1c->ibuf)) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1595 | h1c->flags |= H1C_F_IN_FULL; |
| 1596 | return rcvd; |
| 1597 | } |
| 1598 | |
| 1599 | |
| 1600 | /* |
| 1601 | * Try to send data if possible |
| 1602 | */ |
| 1603 | static int h1_send(struct h1c *h1c) |
| 1604 | { |
| 1605 | struct connection *conn = h1c->conn; |
| 1606 | unsigned int flags = 0; |
| 1607 | size_t ret; |
| 1608 | int sent = 0; |
| 1609 | |
| 1610 | if (conn->flags & CO_FL_ERROR) |
| 1611 | return 0; |
| 1612 | |
Christopher Faulet | 3b88b8d | 2018-10-26 17:36:03 +0200 | [diff] [blame] | 1613 | if (h1c->flags & H1C_F_CS_WAIT_CONN) { |
| 1614 | if (!(h1c->wait_event.wait_reason & SUB_CAN_SEND)) |
| 1615 | conn->xprt->subscribe(conn, SUB_CAN_SEND, &h1c->wait_event); |
| 1616 | return 0; |
| 1617 | } |
| 1618 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1619 | if (!b_data(&h1c->obuf)) |
| 1620 | goto end; |
| 1621 | |
| 1622 | if (h1c->flags & H1C_F_OUT_FULL) |
| 1623 | flags |= CO_SFL_MSG_MORE; |
| 1624 | |
| 1625 | ret = conn->xprt->snd_buf(conn, &h1c->obuf, b_data(&h1c->obuf), flags); |
| 1626 | if (ret > 0) { |
| 1627 | h1c->flags &= ~H1C_F_OUT_FULL; |
| 1628 | b_del(&h1c->obuf, ret); |
| 1629 | sent = 1; |
| 1630 | } |
| 1631 | |
Christopher Faulet | 145aa47 | 2018-12-06 10:56:20 +0100 | [diff] [blame] | 1632 | if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) { |
| 1633 | /* error or output closed, nothing to send, clear the buffer to release it */ |
| 1634 | b_reset(&h1c->obuf); |
| 1635 | } |
| 1636 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1637 | end: |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 1638 | if (!(h1c->flags & H1C_F_OUT_FULL) && h1c->h1s && h1c->h1s->send_wait) { |
| 1639 | struct h1s *h1s = h1c->h1s; |
| 1640 | |
| 1641 | h1s->send_wait->wait_reason &= ~SUB_CAN_SEND; |
| 1642 | tasklet_wakeup(h1s->send_wait->task); |
| 1643 | h1s->send_wait = NULL; |
| 1644 | } |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1645 | /* We're done, no more to send */ |
| 1646 | if (!b_data(&h1c->obuf)) { |
| 1647 | h1_release_buf(h1c, &h1c->obuf); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1648 | h1_sync_messages(h1c); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1649 | if (h1c->flags & H1C_F_CS_SHUTW_NOW) |
| 1650 | h1_shutw_conn(conn); |
| 1651 | } |
| 1652 | else if (!(h1c->wait_event.wait_reason & SUB_CAN_SEND)) |
| 1653 | conn->xprt->subscribe(conn, SUB_CAN_SEND, &h1c->wait_event); |
| 1654 | |
| 1655 | return sent; |
| 1656 | } |
| 1657 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1658 | |
| 1659 | /* callback called on any event by the connection handler. |
| 1660 | * It applies changes and returns zero, or < 0 if it wants immediate |
| 1661 | * destruction of the connection. |
| 1662 | */ |
| 1663 | static int h1_process(struct h1c * h1c) |
| 1664 | { |
| 1665 | struct connection *conn = h1c->conn; |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 1666 | struct h1s *h1s = h1c->h1s; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1667 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1668 | if (!conn->mux_ctx) |
| 1669 | return -1; |
| 1670 | |
Christopher Faulet | 3b88b8d | 2018-10-26 17:36:03 +0200 | [diff] [blame] | 1671 | if (h1c->flags & H1C_F_CS_WAIT_CONN) { |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1672 | if (!(conn->flags & (CO_FL_CONNECTED|CO_FL_ERROR))) |
| 1673 | goto end; |
| 1674 | h1c->flags &= ~H1C_F_CS_WAIT_CONN; |
Christopher Faulet | 3b88b8d | 2018-10-26 17:36:03 +0200 | [diff] [blame] | 1675 | } |
| 1676 | |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 1677 | if (!h1s) { |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1678 | if (h1c->flags & H1C_F_CS_ERROR || |
| 1679 | conn->flags & CO_FL_ERROR || |
| 1680 | conn_xprt_read0_pending(conn)) |
| 1681 | goto release; |
Christopher Faulet | 81d4843 | 2018-11-19 21:22:43 +0100 | [diff] [blame] | 1682 | if (!conn_is_back(conn) && !(h1c->flags & (H1C_F_CS_SHUTW_NOW|H1C_F_CS_SHUTW))) { |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1683 | if (!h1s_create(h1c, NULL)) |
| 1684 | goto release; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1685 | } |
Christopher Faulet | 1a7ad7a | 2018-12-04 16:10:44 +0100 | [diff] [blame] | 1686 | else |
Olivier Houchard | e728478 | 2018-12-06 18:54:54 +0100 | [diff] [blame] | 1687 | goto end; |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 1688 | h1s = h1c->h1s; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1689 | } |
| 1690 | |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 1691 | if (b_data(&h1c->ibuf) && h1s->csinfo.t_idle == -1) |
| 1692 | h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake; |
| 1693 | |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 1694 | if (!b_data(&h1c->ibuf) && h1s && h1s->cs && h1s->cs->data_cb->wake && |
| 1695 | (conn_xprt_read0_pending(conn) || h1c->flags & H1C_F_CS_ERROR || |
| 1696 | conn->flags & CO_FL_ERROR)) { |
| 1697 | int flags = 0; |
| 1698 | |
| 1699 | if (h1c->flags & H1C_F_CS_ERROR || conn->flags & CO_FL_ERROR) |
| 1700 | flags |= CS_FL_ERROR; |
| 1701 | if (conn_xprt_read0_pending(conn)) |
| 1702 | flags |= CS_FL_REOS; |
| 1703 | h1s->cs->flags |= flags; |
| 1704 | h1s->cs->data_cb->wake(h1s->cs); |
| 1705 | } |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1706 | end: |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1707 | return 0; |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1708 | |
| 1709 | release: |
| 1710 | h1_release(conn); |
| 1711 | return -1; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1712 | } |
| 1713 | |
| 1714 | static struct task *h1_io_cb(struct task *t, void *ctx, unsigned short status) |
| 1715 | { |
| 1716 | struct h1c *h1c = ctx; |
| 1717 | int ret = 0; |
| 1718 | |
| 1719 | if (!(h1c->wait_event.wait_reason & SUB_CAN_SEND)) |
| 1720 | ret = h1_send(h1c); |
| 1721 | if (!(h1c->wait_event.wait_reason & SUB_CAN_RECV)) |
| 1722 | ret |= h1_recv(h1c); |
Christopher Faulet | 81d4843 | 2018-11-19 21:22:43 +0100 | [diff] [blame] | 1723 | if (ret || !h1c->h1s) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1724 | h1_process(h1c); |
| 1725 | return NULL; |
| 1726 | } |
| 1727 | |
| 1728 | |
| 1729 | static int h1_wake(struct connection *conn) |
| 1730 | { |
| 1731 | struct h1c *h1c = conn->mux_ctx; |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 1732 | int ret; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1733 | |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1734 | h1_send(h1c); |
Olivier Houchard | 75159a9 | 2018-12-03 18:46:09 +0100 | [diff] [blame] | 1735 | ret = h1_process(h1c); |
| 1736 | if (ret == 0) { |
| 1737 | struct h1s *h1s = h1c->h1s; |
| 1738 | |
| 1739 | if (h1s && h1s->cs && h1s->cs->data_cb->wake) |
| 1740 | ret = h1s->cs->data_cb->wake(h1s->cs); |
| 1741 | } |
| 1742 | return ret; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1743 | } |
| 1744 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1745 | /*******************************************/ |
| 1746 | /* functions below are used by the streams */ |
| 1747 | /*******************************************/ |
| 1748 | /* |
| 1749 | * Attach a new stream to a connection |
| 1750 | * (Used for outgoing connections) |
| 1751 | */ |
| 1752 | static struct conn_stream *h1_attach(struct connection *conn) |
| 1753 | { |
| 1754 | struct h1c *h1c = conn->mux_ctx; |
| 1755 | struct conn_stream *cs = NULL; |
| 1756 | struct h1s *h1s; |
| 1757 | |
| 1758 | if (h1c->flags & H1C_F_CS_ERROR) |
| 1759 | goto end; |
| 1760 | |
| 1761 | cs = cs_new(h1c->conn); |
| 1762 | if (!cs) |
| 1763 | goto end; |
| 1764 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1765 | h1s = h1s_create(h1c, cs); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1766 | if (h1s == NULL) |
| 1767 | goto end; |
| 1768 | |
| 1769 | return cs; |
| 1770 | end: |
| 1771 | cs_free(cs); |
| 1772 | return NULL; |
| 1773 | } |
| 1774 | |
| 1775 | /* Retrieves a valid conn_stream from this connection, or returns NULL. For |
| 1776 | * this mux, it's easy as we can only store a single conn_stream. |
| 1777 | */ |
| 1778 | static const struct conn_stream *h1_get_first_cs(const struct connection *conn) |
| 1779 | { |
| 1780 | struct h1c *h1c = conn->mux_ctx; |
| 1781 | struct h1s *h1s = h1c->h1s; |
| 1782 | |
| 1783 | if (h1s) |
| 1784 | return h1s->cs; |
| 1785 | |
| 1786 | return NULL; |
| 1787 | } |
| 1788 | |
| 1789 | static void h1_destroy(struct connection *conn) |
| 1790 | { |
| 1791 | struct h1c *h1c = conn->mux_ctx; |
| 1792 | |
| 1793 | if (!h1c->h1s) |
| 1794 | h1_release(conn); |
| 1795 | } |
| 1796 | |
| 1797 | /* |
| 1798 | * Detach the stream from the connection and possibly release the connection. |
| 1799 | */ |
| 1800 | static void h1_detach(struct conn_stream *cs) |
| 1801 | { |
| 1802 | struct h1s *h1s = cs->ctx; |
| 1803 | struct h1c *h1c; |
| 1804 | |
| 1805 | cs->ctx = NULL; |
| 1806 | if (!h1s) |
| 1807 | return; |
| 1808 | |
| 1809 | h1c = h1s->h1c; |
| 1810 | h1s->cs = NULL; |
| 1811 | |
Olivier Houchard | 7ccff1a | 2018-12-03 16:33:19 +0100 | [diff] [blame] | 1812 | if (conn_is_back(h1c->conn) && (h1s->flags & H1S_F_WANT_KAL) && h1c->conn->owner) { |
Christopher Faulet | 9400a39 | 2018-11-23 23:10:39 +0100 | [diff] [blame] | 1813 | /* Never ever allow to reuse a connection from a non-reuse backend */ |
| 1814 | if (h1c->conn && (h1c->px->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR) |
| 1815 | h1c->conn->flags |= CO_FL_PRIVATE; |
| 1816 | |
| 1817 | /* we're in keep-alive with an idle connection, monitor it if not already done */ |
| 1818 | if (h1c->conn && LIST_ISEMPTY(&h1c->conn->list)) { |
| 1819 | struct server *srv = objt_server(h1c->conn->target); |
| 1820 | |
| 1821 | if (srv) { |
| 1822 | if (h1c->conn->flags & CO_FL_PRIVATE) |
| 1823 | LIST_ADD(&srv->priv_conns[tid], &h1c->conn->list); |
| 1824 | else if (h1s->flags & H1S_F_NOT_FIRST) |
| 1825 | LIST_ADD(&srv->safe_conns[tid], &h1c->conn->list); |
| 1826 | else |
| 1827 | LIST_ADD(&srv->idle_conns[tid], &h1c->conn->list); |
| 1828 | } |
| 1829 | } |
| 1830 | } |
| 1831 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1832 | h1s_destroy(h1s); |
| 1833 | |
| 1834 | /* We don't want to close right now unless the connection is in error */ |
| 1835 | if ((h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTW)) || |
Olivier Houchard | 7ccff1a | 2018-12-03 16:33:19 +0100 | [diff] [blame] | 1836 | (h1c->conn->flags & CO_FL_ERROR) || !h1c->conn->owner) |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1837 | h1_release(h1c->conn); |
| 1838 | else |
| 1839 | tasklet_wakeup(h1c->wait_event.task); |
| 1840 | } |
| 1841 | |
| 1842 | |
| 1843 | static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode) |
| 1844 | { |
| 1845 | struct h1s *h1s = cs->ctx; |
| 1846 | |
| 1847 | if (!h1s) |
| 1848 | return; |
| 1849 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1850 | if ((h1s->flags & H1S_F_WANT_KAL) && !(cs->flags & (CS_FL_REOS|CS_FL_EOS))) |
| 1851 | return; |
| 1852 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1853 | /* NOTE: Be sure to handle abort (cf. h2_shutr) */ |
| 1854 | if (cs->flags & CS_FL_SHR) |
| 1855 | return; |
| 1856 | if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr) |
| 1857 | cs->conn->xprt->shutr(cs->conn, (mode == CS_SHR_DRAIN)); |
| 1858 | if (cs->flags & CS_FL_SHW) { |
| 1859 | h1s->h1c->flags = (h1s->h1c->flags & ~H1C_F_CS_SHUTW_NOW) | H1C_F_CS_SHUTW; |
| 1860 | conn_full_close(cs->conn); |
| 1861 | } |
| 1862 | } |
| 1863 | |
| 1864 | static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode) |
| 1865 | { |
| 1866 | struct h1s *h1s = cs->ctx; |
| 1867 | struct h1c *h1c; |
| 1868 | |
| 1869 | if (!h1s) |
| 1870 | return; |
| 1871 | h1c = h1s->h1c; |
| 1872 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1873 | if ((h1s->flags & H1S_F_WANT_KAL) && |
| 1874 | !(cs->flags & (CS_FL_REOS|CS_FL_EOS)) && |
| 1875 | h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) |
| 1876 | return; |
| 1877 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1878 | h1c->flags |= H1C_F_CS_SHUTW_NOW; |
| 1879 | if ((cs->flags & CS_FL_SHW) || b_data(&h1c->obuf)) |
| 1880 | return; |
| 1881 | |
| 1882 | h1_shutw_conn(cs->conn); |
| 1883 | } |
| 1884 | |
| 1885 | static void h1_shutw_conn(struct connection *conn) |
| 1886 | { |
| 1887 | struct h1c *h1c = conn->mux_ctx; |
| 1888 | |
| 1889 | if (conn_xprt_ready(conn) && conn->xprt->shutw) |
| 1890 | conn->xprt->shutw(conn, 1); |
| 1891 | if (!(conn->flags & CO_FL_SOCK_RD_SH)) |
| 1892 | conn_sock_shutw(conn, 1); |
| 1893 | else { |
| 1894 | h1c->flags = (h1c->flags & ~H1C_F_CS_SHUTW_NOW) | H1C_F_CS_SHUTW; |
| 1895 | conn_full_close(conn); |
| 1896 | } |
| 1897 | } |
| 1898 | |
| 1899 | /* Called from the upper layer, to unsubscribe to events */ |
| 1900 | static int h1_unsubscribe(struct conn_stream *cs, int event_type, void *param) |
| 1901 | { |
| 1902 | struct wait_event *sw; |
| 1903 | struct h1s *h1s = cs->ctx; |
| 1904 | |
| 1905 | if (!h1s) |
| 1906 | return 0; |
| 1907 | |
| 1908 | if (event_type & SUB_CAN_RECV) { |
| 1909 | sw = param; |
| 1910 | if (h1s->recv_wait == sw) { |
| 1911 | sw->wait_reason &= ~SUB_CAN_RECV; |
| 1912 | h1s->recv_wait = NULL; |
| 1913 | } |
| 1914 | } |
| 1915 | if (event_type & SUB_CAN_SEND) { |
| 1916 | sw = param; |
| 1917 | if (h1s->send_wait == sw) { |
| 1918 | sw->wait_reason &= ~SUB_CAN_SEND; |
| 1919 | h1s->send_wait = NULL; |
| 1920 | } |
| 1921 | } |
| 1922 | return 0; |
| 1923 | } |
| 1924 | |
| 1925 | /* Called from the upper layer, to subscribe to events, such as being able to send */ |
| 1926 | static int h1_subscribe(struct conn_stream *cs, int event_type, void *param) |
| 1927 | { |
| 1928 | struct wait_event *sw; |
| 1929 | struct h1s *h1s = cs->ctx; |
| 1930 | |
| 1931 | if (!h1s) |
| 1932 | return -1; |
| 1933 | |
| 1934 | switch (event_type) { |
| 1935 | case SUB_CAN_RECV: |
| 1936 | sw = param; |
| 1937 | if (!(sw->wait_reason & SUB_CAN_RECV)) { |
| 1938 | sw->wait_reason |= SUB_CAN_RECV; |
| 1939 | sw->handle = h1s; |
| 1940 | h1s->recv_wait = sw; |
| 1941 | } |
| 1942 | return 0; |
| 1943 | case SUB_CAN_SEND: |
| 1944 | sw = param; |
| 1945 | if (!(sw->wait_reason & SUB_CAN_SEND)) { |
| 1946 | sw->wait_reason |= SUB_CAN_SEND; |
| 1947 | sw->handle = h1s; |
| 1948 | h1s->send_wait = sw; |
| 1949 | } |
| 1950 | return 0; |
| 1951 | default: |
| 1952 | break; |
| 1953 | } |
| 1954 | return -1; |
| 1955 | } |
| 1956 | |
| 1957 | /* Called from the upper layer, to receive data */ |
| 1958 | static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags) |
| 1959 | { |
| 1960 | struct h1s *h1s = cs->ctx; |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1961 | struct h1c *h1c = h1s->h1c; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1962 | size_t ret = 0; |
| 1963 | |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1964 | if (!(h1c->flags & H1C_F_IN_ALLOC)) |
| 1965 | ret = h1_process_input(h1c, buf, flags); |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 1966 | |
| 1967 | if (flags & CO_RFL_BUF_FLUSH) |
| 1968 | h1s->flags |= H1S_F_BUF_FLUSH; |
Christopher Faulet | d44ad5b | 2018-11-19 21:52:12 +0100 | [diff] [blame] | 1969 | else if (ret > 0 || (h1s->flags & H1S_F_SPLICED_DATA)) { |
| 1970 | h1s->flags &= ~H1S_F_SPLICED_DATA; |
Christopher Faulet | 539e029 | 2018-11-19 10:40:09 +0100 | [diff] [blame] | 1971 | if (!(h1c->wait_event.wait_reason & SUB_CAN_RECV)) |
| 1972 | tasklet_wakeup(h1c->wait_event.task); |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1973 | } |
| 1974 | return ret; |
| 1975 | } |
| 1976 | |
| 1977 | |
| 1978 | /* Called from the upper layer, to send data */ |
| 1979 | static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags) |
| 1980 | { |
| 1981 | struct h1s *h1s = cs->ctx; |
| 1982 | struct h1c *h1c; |
Christopher Faulet | 5d37dac | 2018-11-22 10:58:42 +0100 | [diff] [blame] | 1983 | size_t total = 0; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1984 | |
| 1985 | if (!h1s) |
Christopher Faulet | 5d37dac | 2018-11-22 10:58:42 +0100 | [diff] [blame] | 1986 | return 0; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1987 | |
| 1988 | h1c = h1s->h1c; |
Christopher Faulet | 3b88b8d | 2018-10-26 17:36:03 +0200 | [diff] [blame] | 1989 | if (h1c->flags & H1C_F_CS_WAIT_CONN) |
| 1990 | return 0; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1991 | |
Christopher Faulet | 5d37dac | 2018-11-22 10:58:42 +0100 | [diff] [blame] | 1992 | while (total != count) { |
| 1993 | size_t ret = 0; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 1994 | |
Christopher Faulet | 5d37dac | 2018-11-22 10:58:42 +0100 | [diff] [blame] | 1995 | if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC))) |
| 1996 | ret = h1_process_output(h1c, buf, count); |
| 1997 | if (!ret) |
| 1998 | break; |
| 1999 | total += ret; |
| 2000 | if (!h1_send(h1c)) |
| 2001 | break; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2002 | } |
Christopher Faulet | f96c322 | 2018-11-20 18:38:01 +0100 | [diff] [blame] | 2003 | |
Christopher Faulet | 5d37dac | 2018-11-22 10:58:42 +0100 | [diff] [blame] | 2004 | return total; |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2005 | } |
| 2006 | |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 2007 | #if defined(CONFIG_HAP_LINUX_SPLICE) |
| 2008 | /* Send and get, using splicing */ |
| 2009 | static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count) |
| 2010 | { |
| 2011 | struct h1s *h1s = cs->ctx; |
| 2012 | struct h1m *h1m = (!conn_is_back(cs->conn) ? &h1s->req : &h1s->res); |
| 2013 | int ret = 0; |
| 2014 | |
Christopher Faulet | d44ad5b | 2018-11-19 21:52:12 +0100 | [diff] [blame] | 2015 | if (b_data(&h1s->h1c->ibuf)) { |
| 2016 | h1s->flags |= H1S_F_BUF_FLUSH; |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 2017 | goto end; |
Christopher Faulet | d44ad5b | 2018-11-19 21:52:12 +0100 | [diff] [blame] | 2018 | } |
| 2019 | |
| 2020 | h1s->flags &= ~H1S_F_BUF_FLUSH; |
| 2021 | h1s->flags |= H1S_F_SPLICED_DATA; |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 2022 | if (h1m->state == H1_MSG_DATA && count > h1m->curr_len) |
| 2023 | count = h1m->curr_len; |
| 2024 | ret = cs->conn->xprt->rcv_pipe(cs->conn, pipe, count); |
| 2025 | if (h1m->state == H1_MSG_DATA && ret > 0) |
| 2026 | h1m->curr_len -= ret; |
| 2027 | end: |
| 2028 | return ret; |
| 2029 | |
| 2030 | } |
| 2031 | |
| 2032 | static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe) |
| 2033 | { |
| 2034 | struct h1s *h1s = cs->ctx; |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 2035 | int ret = 0; |
| 2036 | |
| 2037 | if (b_data(&h1s->h1c->obuf)) |
| 2038 | goto end; |
| 2039 | |
| 2040 | ret = cs->conn->xprt->snd_pipe(cs->conn, pipe); |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 2041 | end: |
Christopher Faulet | d44ad5b | 2018-11-19 21:52:12 +0100 | [diff] [blame] | 2042 | if (pipe->data) { |
| 2043 | if (!(h1s->h1c->wait_event.wait_reason & SUB_CAN_SEND)) |
| 2044 | cs->conn->xprt->subscribe(cs->conn, SUB_CAN_SEND, &h1s->h1c->wait_event); |
| 2045 | } |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 2046 | return ret; |
| 2047 | } |
| 2048 | #endif |
| 2049 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2050 | /****************************************/ |
| 2051 | /* MUX initialization and instanciation */ |
| 2052 | /****************************************/ |
| 2053 | |
| 2054 | /* The mux operations */ |
| 2055 | const struct mux_ops mux_h1_ops = { |
| 2056 | .init = h1_init, |
| 2057 | .wake = h1_wake, |
| 2058 | .attach = h1_attach, |
| 2059 | .get_first_cs = h1_get_first_cs, |
Christopher Faulet | feb1174 | 2018-11-29 15:12:34 +0100 | [diff] [blame] | 2060 | .get_cs_info = h1_get_cs_info, |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2061 | .detach = h1_detach, |
| 2062 | .destroy = h1_destroy, |
| 2063 | .avail_streams = h1_avail_streams, |
Olivier Houchard | 8defe4b | 2018-12-02 01:31:17 +0100 | [diff] [blame] | 2064 | .max_streams = h1_max_streams, |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2065 | .rcv_buf = h1_rcv_buf, |
| 2066 | .snd_buf = h1_snd_buf, |
Christopher Faulet | 1be55f9 | 2018-10-02 15:59:23 +0200 | [diff] [blame] | 2067 | #if defined(CONFIG_HAP_LINUX_SPLICE) |
| 2068 | .rcv_pipe = h1_rcv_pipe, |
| 2069 | .snd_pipe = h1_snd_pipe, |
| 2070 | #endif |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2071 | .subscribe = h1_subscribe, |
| 2072 | .unsubscribe = h1_unsubscribe, |
| 2073 | .shutr = h1_shutr, |
| 2074 | .shutw = h1_shutw, |
| 2075 | .flags = MX_FL_NONE, |
| 2076 | .name = "h1", |
| 2077 | }; |
| 2078 | |
| 2079 | |
| 2080 | /* this mux registers default HTX proto */ |
| 2081 | static struct mux_proto_list mux_proto_htx = |
| 2082 | { .token = IST(""), .mode = PROTO_MODE_HTX, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops }; |
| 2083 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 2084 | INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_htx); |
| 2085 | |
Christopher Faulet | 51dbc94 | 2018-09-13 09:05:15 +0200 | [diff] [blame] | 2086 | /* |
| 2087 | * Local variables: |
| 2088 | * c-indent-level: 8 |
| 2089 | * c-basic-offset: 8 |
| 2090 | * End: |
| 2091 | */ |