blob: 89d9b7b6516ce7ac4d6e25da77e89ee25c515c00 [file] [log] [blame]
Christopher Faulet51dbc942018-09-13 09:05:15 +02001/*
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 Tarreauafba57a2018-12-11 13:44:24 +010014#include <common/h1.h>
Christopher Faulet0ef372a2019-04-08 10:57:20 +020015#include <common/h2.h>
Willy Tarreaub96b77e2018-12-11 10:22:41 +010016#include <common/htx.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010017#include <common/initcall.h>
Christopher Faulet51dbc942018-09-13 09:05:15 +020018
Christopher Faulet1be55f92018-10-02 15:59:23 +020019#include <types/pipe.h>
Christopher Fauletf2824e62018-10-01 12:12:37 +020020#include <types/proxy.h>
21#include <types/session.h>
22
Christopher Faulet51dbc942018-09-13 09:05:15 +020023#include <proto/connection.h>
Christopher Faulet9768c262018-10-22 09:34:31 +020024#include <proto/http_htx.h>
Christopher Faulet129817b2018-09-20 16:14:40 +020025#include <proto/log.h>
Olivier Houchard44d59142018-12-13 18:46:22 +010026#include <proto/session.h>
Christopher Faulet51dbc942018-09-13 09:05:15 +020027#include <proto/stream.h>
28#include <proto/stream_interface.h>
29
30/*
31 * H1 Connection flags (32 bits)
32 */
33#define H1C_F_NONE 0x00000000
34
35/* Flags indicating why writing output data are blocked */
36#define H1C_F_OUT_ALLOC 0x00000001 /* mux is blocked on lack of output buffer */
37#define H1C_F_OUT_FULL 0x00000002 /* mux is blocked on output buffer full */
38/* 0x00000004 - 0x00000008 unused */
39
40/* Flags indicating why reading input data are blocked. */
41#define H1C_F_IN_ALLOC 0x00000010 /* mux is blocked on lack of input buffer */
42#define H1C_F_IN_FULL 0x00000020 /* mux is blocked on input buffer full */
Christopher Fauletcb55f482018-12-10 11:56:47 +010043#define H1C_F_IN_BUSY 0x00000040
Christopher Faulet539e0292018-11-19 10:40:09 +010044/* 0x00000040 - 0x00000800 unused */
Christopher Faulet51dbc942018-09-13 09:05:15 +020045
46#define H1C_F_CS_ERROR 0x00001000 /* connection must be closed ASAP because an error occurred */
47#define H1C_F_CS_SHUTW_NOW 0x00002000 /* connection must be shut down for writes ASAP */
Christopher Faulet666a0c42019-01-08 11:12:04 +010048#define H1C_F_CS_SHUTDOWN 0x00004000 /* connection is shut down for read and writes */
Christopher Faulet3b88b8d2018-10-26 17:36:03 +020049#define H1C_F_CS_WAIT_CONN 0x00008000 /* waiting for the connection establishment */
Christopher Faulet51dbc942018-09-13 09:05:15 +020050
Christopher Fauletf2824e62018-10-01 12:12:37 +020051#define H1C_F_WAIT_NEXT_REQ 0x00010000 /* waiting for the next request to start, use keep-alive timeout */
Christopher Faulet0ef372a2019-04-08 10:57:20 +020052#define H1C_F_UPG_H2C 0x00020000 /* set if an upgrade to h2 should be done */
Christopher Faulet129817b2018-09-20 16:14:40 +020053
Christopher Faulet51dbc942018-09-13 09:05:15 +020054/*
55 * H1 Stream flags (32 bits)
56 */
Christopher Faulet129817b2018-09-20 16:14:40 +020057#define H1S_F_NONE 0x00000000
58#define H1S_F_ERROR 0x00000001 /* An error occurred on the H1 stream */
Christopher Fauletf2824e62018-10-01 12:12:37 +020059#define H1S_F_REQ_ERROR 0x00000002 /* An error occurred during the request parsing/xfer */
60#define H1S_F_RES_ERROR 0x00000004 /* An error occurred during the response parsing/xfer */
Willy Tarreauc493c9c2019-06-03 14:18:22 +020061#define H1S_F_REOS 0x00000008 /* End of input stream seen even if not delivered yet */
Christopher Fauletf2824e62018-10-01 12:12:37 +020062#define H1S_F_WANT_KAL 0x00000010
63#define H1S_F_WANT_TUN 0x00000020
64#define H1S_F_WANT_CLO 0x00000040
65#define H1S_F_WANT_MSK 0x00000070
66#define H1S_F_NOT_FIRST 0x00000080 /* The H1 stream is not the first one */
Christopher Faulet539e0292018-11-19 10:40:09 +010067#define H1S_F_BUF_FLUSH 0x00000100 /* Flush input buffer and don't read more data */
Christopher Fauletd44ad5b2018-11-19 21:52:12 +010068#define H1S_F_SPLICED_DATA 0x00000200 /* Set when the kernel splicing is in used */
Willy Tarreau34d23482019-01-03 17:46:56 +010069#define H1S_F_HAVE_I_TLR 0x00000800 /* Set during input process to know the trailers were processed */
Christopher Faulet2d7c5392019-06-03 10:41:26 +020070/* 0x00001000 .. 0x00002000 unused */
Christopher Fauletada34b62019-05-24 16:36:43 +020071#define H1S_F_HAVE_O_CONN 0x00004000 /* Set during output process to know connection mode was processed */
Christopher Faulet51dbc942018-09-13 09:05:15 +020072
73/* H1 connection descriptor */
Christopher Faulet51dbc942018-09-13 09:05:15 +020074struct h1c {
75 struct connection *conn;
76 struct proxy *px;
77 uint32_t flags; /* Connection flags: H1C_F_* */
78
79 struct buffer ibuf; /* Input buffer to store data before parsing */
80 struct buffer obuf; /* Output buffer to store data after reformatting */
81
82 struct buffer_wait buf_wait; /* Wait list for buffer allocation */
83 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
84
85 struct h1s *h1s; /* H1 stream descriptor */
Christopher Fauletb8093cf2019-01-03 16:27:28 +010086 struct task *task; /* timeout management task */
87 int timeout; /* idle timeout duration in ticks */
88 int shut_timeout; /* idle timeout duration in ticks after stream shutdown */
Christopher Faulet51dbc942018-09-13 09:05:15 +020089};
90
91/* H1 stream descriptor */
92struct h1s {
93 struct h1c *h1c;
94 struct conn_stream *cs;
Christopher Fauletfeb11742018-11-29 15:12:34 +010095 struct cs_info csinfo; /* CS info, only used for client connections */
96 uint32_t flags; /* Connection flags: H1S_F_* */
Christopher Faulet51dbc942018-09-13 09:05:15 +020097
Christopher Faulet51dbc942018-09-13 09:05:15 +020098 struct wait_event *recv_wait; /* Address of the wait_event the conn_stream associated is waiting on */
99 struct wait_event *send_wait; /* Address of the wait_event the conn_stream associated is waiting on */
Christopher Faulet129817b2018-09-20 16:14:40 +0200100
Olivier Houchardf502aca2018-12-14 19:42:40 +0100101 struct session *sess; /* Associated session */
Christopher Faulet129817b2018-09-20 16:14:40 +0200102 struct h1m req;
103 struct h1m res;
104
105 enum http_meth_t meth; /* HTTP resquest method */
106 uint16_t status; /* HTTP response status */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200107};
108
109/* the h1c and h1s pools */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100110DECLARE_STATIC_POOL(pool_head_h1c, "h1c", sizeof(struct h1c));
111DECLARE_STATIC_POOL(pool_head_h1s, "h1s", sizeof(struct h1s));
Christopher Faulet51dbc942018-09-13 09:05:15 +0200112
Christopher Faulet51dbc942018-09-13 09:05:15 +0200113static int h1_recv(struct h1c *h1c);
114static int h1_send(struct h1c *h1c);
115static int h1_process(struct h1c *h1c);
116static struct task *h1_io_cb(struct task *t, void *ctx, unsigned short state);
Christopher Faulet666a0c42019-01-08 11:12:04 +0100117static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100118static struct task *h1_timeout_task(struct task *t, void *context, unsigned short state);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200119
120/*****************************************************/
121/* functions below are for dynamic buffer management */
122/*****************************************************/
123/*
124 * Indicates whether or not the we may call the h1_recv() function to
125 * attempt to receive data into the buffer and/or parse pending data. The
126 * condition is a bit complex due to some API limits for now. The rules are the
127 * following :
128 * - if an error or a shutdown was detected on the connection and the buffer
129 * is empty, we must not attempt to receive
130 * - if the input buffer failed to be allocated, we must not try to receive
131 * and we know there is nothing pending
132 * - if no flag indicates a blocking condition, we may attempt to receive,
133 * regardless of whether the input buffer is full or not, so that only de
134 * receiving part decides whether or not to block. This is needed because
135 * the connection API indeed prevents us from re-enabling receipt that is
136 * already enabled in a polled state, so we must always immediately stop as
137 * soon as the mux can't proceed so as never to hit an end of read with data
138 * pending in the buffers.
139 * - otherwise must may not attempt to receive
140 */
141static inline int h1_recv_allowed(const struct h1c *h1c)
142{
Christopher Faulet666a0c42019-01-08 11:12:04 +0100143 if (b_data(&h1c->ibuf) == 0 && (h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTDOWN)))
Christopher Faulet51dbc942018-09-13 09:05:15 +0200144 return 0;
145
Christopher Fauletcf56b992018-12-11 16:12:31 +0100146 if (h1c->conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(h1c->conn))
147 return 0;
148
Christopher Fauletcb55f482018-12-10 11:56:47 +0100149 if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL|H1C_F_IN_BUSY)))
Christopher Faulet51dbc942018-09-13 09:05:15 +0200150 return 1;
151
152 return 0;
153}
154
155/*
156 * Tries to grab a buffer and to re-enables processing on mux <target>. The h1
157 * flags are used to figure what buffer was requested. It returns 1 if the
158 * allocation succeeds, in which case the connection is woken up, or 0 if it's
159 * impossible to wake up and we prefer to be woken up later.
160 */
161static int h1_buf_available(void *target)
162{
163 struct h1c *h1c = target;
164
165 if ((h1c->flags & H1C_F_IN_ALLOC) && b_alloc_margin(&h1c->ibuf, 0)) {
166 h1c->flags &= ~H1C_F_IN_ALLOC;
167 if (h1_recv_allowed(h1c))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200168 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200169 return 1;
170 }
171
172 if ((h1c->flags & H1C_F_OUT_ALLOC) && b_alloc_margin(&h1c->obuf, 0)) {
173 h1c->flags &= ~H1C_F_OUT_ALLOC;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200174 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200175 return 1;
176 }
177
Christopher Faulet51dbc942018-09-13 09:05:15 +0200178 return 0;
179}
180
181/*
182 * Allocate a buffer. If if fails, it adds the mux in buffer wait queue.
183 */
184static inline struct buffer *h1_get_buf(struct h1c *h1c, struct buffer *bptr)
185{
186 struct buffer *buf = NULL;
187
188 if (likely(LIST_ISEMPTY(&h1c->buf_wait.list)) &&
189 unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) {
190 h1c->buf_wait.target = h1c;
191 h1c->buf_wait.wakeup_cb = h1_buf_available;
192 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
193 LIST_ADDQ(&buffer_wq, &h1c->buf_wait.list);
194 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
195 __conn_xprt_stop_recv(h1c->conn);
196 }
197 return buf;
198}
199
200/*
201 * Release a buffer, if any, and try to wake up entities waiting in the buffer
202 * wait queue.
203 */
204static inline void h1_release_buf(struct h1c *h1c, struct buffer *bptr)
205{
206 if (bptr->size) {
207 b_free(bptr);
208 offer_buffers(h1c->buf_wait.target, tasks_run_queue);
209 }
210}
211
Willy Tarreau00f18a32019-01-26 12:19:01 +0100212/* returns the number of streams in use on a connection to figure if it's
213 * idle or not. We can't have an h1s without a CS so checking h1s is fine,
214 * as the caller will want to know if it was the last one after a detach().
215 */
216static int h1_used_streams(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200217{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100218 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200219
Willy Tarreau00f18a32019-01-26 12:19:01 +0100220 return h1c->h1s ? 1 : 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200221}
222
Willy Tarreau00f18a32019-01-26 12:19:01 +0100223/* returns the number of streams still available on a connection */
224static int h1_avail_streams(struct connection *conn)
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100225{
Willy Tarreau00f18a32019-01-26 12:19:01 +0100226 return 1 - h1_used_streams(conn);
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100227}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200228
Willy Tarreau00f18a32019-01-26 12:19:01 +0100229
Christopher Faulet51dbc942018-09-13 09:05:15 +0200230/*****************************************************************/
231/* functions below are dedicated to the mux setup and management */
232/*****************************************************************/
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200233
234/* returns non-zero if there are input data pending for stream h1s. */
235static inline size_t h1s_data_pending(const struct h1s *h1s)
236{
237 const struct h1m *h1m;
238
239 h1m = conn_is_back(h1s->h1c->conn) ? &h1s->res : &h1s->req;
240 if (h1m->state == H1_MSG_DONE)
241 return 0; // data not for this stream (e.g. pipelining)
242
243 return b_data(&h1s->h1c->ibuf);
244}
245
Christopher Faulet47365272018-10-31 17:40:50 +0100246static struct conn_stream *h1s_new_cs(struct h1s *h1s)
247{
248 struct conn_stream *cs;
249
250 cs = cs_new(h1s->h1c->conn);
251 if (!cs)
252 goto err;
253 h1s->cs = cs;
254 cs->ctx = h1s;
255
256 if (h1s->flags & H1S_F_NOT_FIRST)
257 cs->flags |= CS_FL_NOT_FIRST;
258
259 if (stream_create_from_cs(cs) < 0)
260 goto err;
261 return cs;
262
263 err:
264 cs_free(cs);
265 h1s->cs = NULL;
266 return NULL;
267}
268
Olivier Houchardf502aca2018-12-14 19:42:40 +0100269static struct h1s *h1s_create(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200270{
271 struct h1s *h1s;
272
273 h1s = pool_alloc(pool_head_h1s);
274 if (!h1s)
Christopher Faulet47365272018-10-31 17:40:50 +0100275 goto fail;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200276
277 h1s->h1c = h1c;
278 h1c->h1s = h1s;
279
Olivier Houchardf502aca2018-12-14 19:42:40 +0100280 h1s->sess = sess;
281
Christopher Faulet51dbc942018-09-13 09:05:15 +0200282 h1s->cs = NULL;
Christopher Fauletb992af02019-03-28 15:42:24 +0100283 h1s->flags = H1S_F_WANT_KAL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200284
285 h1s->recv_wait = NULL;
286 h1s->send_wait = NULL;
Christopher Faulet129817b2018-09-20 16:14:40 +0200287
288 h1m_init_req(&h1s->req);
Christopher Fauletb992af02019-03-28 15:42:24 +0100289 h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +0200290
Christopher Faulet129817b2018-09-20 16:14:40 +0200291 h1m_init_res(&h1s->res);
Christopher Fauletb992af02019-03-28 15:42:24 +0100292 h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet129817b2018-09-20 16:14:40 +0200293
294 h1s->status = 0;
295 h1s->meth = HTTP_METH_OTHER;
296
Christopher Faulet47365272018-10-31 17:40:50 +0100297 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
298 h1s->flags |= H1S_F_NOT_FIRST;
299 h1c->flags &= ~H1C_F_WAIT_NEXT_REQ;
300
Christopher Faulet129817b2018-09-20 16:14:40 +0200301 if (!conn_is_back(h1c->conn)) {
302 if (h1c->px->options2 & PR_O2_REQBUG_OK)
303 h1s->req.err_pos = -1;
Christopher Faulete9b70722019-04-08 10:46:02 +0200304
305 /* For frontend connections we should always have a session */
306 if (!sess)
307 sess = h1c->conn->owner;
308
309 h1s->csinfo.create_date = sess->accept_date;
310 h1s->csinfo.tv_create = sess->tv_accept;
311 h1s->csinfo.t_handshake = sess->t_handshake;
312 h1s->csinfo.t_idle = -1;
Christopher Faulet129817b2018-09-20 16:14:40 +0200313 }
314 else {
315 if (h1c->px->options2 & PR_O2_RSPBUG_OK)
316 h1s->res.err_pos = -1;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200317
Christopher Fauletfeb11742018-11-29 15:12:34 +0100318 h1s->csinfo.create_date = date;
319 h1s->csinfo.tv_create = now;
320 h1s->csinfo.t_handshake = 0;
321 h1s->csinfo.t_idle = -1;
Christopher Faulete9b70722019-04-08 10:46:02 +0200322 }
Christopher Fauletfeb11742018-11-29 15:12:34 +0100323
Christopher Faulete9b70722019-04-08 10:46:02 +0200324 /* If a conn_stream already exists, attach it to this H1S. Otherwise we
325 * create a new one.
326 */
327 if (cs) {
Christopher Fauletf2824e62018-10-01 12:12:37 +0200328 cs->ctx = h1s;
329 h1s->cs = cs;
330 }
Christopher Faulet47365272018-10-31 17:40:50 +0100331 else {
332 cs = h1s_new_cs(h1s);
333 if (!cs)
334 goto fail;
335 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200336 return h1s;
Christopher Faulet47365272018-10-31 17:40:50 +0100337
338 fail:
339 pool_free(pool_head_h1s, h1s);
340 return NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200341}
342
343static void h1s_destroy(struct h1s *h1s)
344{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200345 if (h1s) {
346 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200347
Christopher Fauletf2824e62018-10-01 12:12:37 +0200348 h1c->h1s = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200349
Christopher Fauletf2824e62018-10-01 12:12:37 +0200350 if (h1s->recv_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100351 h1s->recv_wait->events &= ~SUB_RETRY_RECV;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200352 if (h1s->send_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100353 h1s->send_wait->events &= ~SUB_RETRY_SEND;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200354
Christopher Fauletcb55f482018-12-10 11:56:47 +0100355 h1c->flags &= ~H1C_F_IN_BUSY;
Christopher Faulet47365272018-10-31 17:40:50 +0100356 h1c->flags |= H1C_F_WAIT_NEXT_REQ;
357 if (h1s->flags & (H1S_F_REQ_ERROR|H1S_F_RES_ERROR))
358 h1c->flags |= H1C_F_CS_ERROR;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200359 pool_free(pool_head_h1s, h1s);
360 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200361}
362
Christopher Fauletfeb11742018-11-29 15:12:34 +0100363static const struct cs_info *h1_get_cs_info(struct conn_stream *cs)
364{
365 struct h1s *h1s = cs->ctx;
366
367 if (h1s && !conn_is_back(cs->conn))
368 return &h1s->csinfo;
369 return NULL;
370}
371
Christopher Faulet51dbc942018-09-13 09:05:15 +0200372/*
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200373 * Initialize the mux once it's attached. It is expected that conn->ctx points
374 * to the existing conn_stream (for outgoing connections or for incoming onces
375 * during a mux upgrade) or NULL (for incoming ones during the connexion
376 * establishment). <input> is always used as Input buffer and may contain
377 * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on
378 * error.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200379 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200380static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess,
381 struct buffer *input)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200382{
Christopher Faulet51dbc942018-09-13 09:05:15 +0200383 struct h1c *h1c;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100384 struct task *t = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200385
386 h1c = pool_alloc(pool_head_h1c);
387 if (!h1c)
388 goto fail_h1c;
389 h1c->conn = conn;
390 h1c->px = proxy;
391
392 h1c->flags = H1C_F_NONE;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200393 h1c->ibuf = *input;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200394 h1c->obuf = BUF_NULL;
395 h1c->h1s = NULL;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200396 h1c->task = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200397
Christopher Faulet51dbc942018-09-13 09:05:15 +0200398 LIST_INIT(&h1c->buf_wait.list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200399 h1c->wait_event.tasklet = tasklet_new();
400 if (!h1c->wait_event.tasklet)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200401 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200402 h1c->wait_event.tasklet->process = h1_io_cb;
403 h1c->wait_event.tasklet->context = h1c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100404 h1c->wait_event.events = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200405
Christopher Faulete9b70722019-04-08 10:46:02 +0200406 if (conn_is_back(conn)) {
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100407 h1c->shut_timeout = h1c->timeout = proxy->timeout.server;
408 if (tick_isset(proxy->timeout.serverfin))
409 h1c->shut_timeout = proxy->timeout.serverfin;
410 } else {
411 h1c->shut_timeout = h1c->timeout = proxy->timeout.client;
412 if (tick_isset(proxy->timeout.clientfin))
413 h1c->shut_timeout = proxy->timeout.clientfin;
414 }
415 if (tick_isset(h1c->timeout)) {
416 t = task_new(tid_bit);
417 if (!t)
418 goto fail;
419
420 h1c->task = t;
421 t->process = h1_timeout_task;
422 t->context = h1c;
423 t->expire = tick_add(now_ms, h1c->timeout);
424 }
425
Olivier Houchard985234d2019-06-13 17:54:33 +0200426 if (!(conn->flags & CO_FL_CONNECTED) || (conn->flags & CO_FL_HANDSHAKE))
Christopher Faulet3b88b8d2018-10-26 17:36:03 +0200427 h1c->flags |= H1C_F_CS_WAIT_CONN;
428
Christopher Fauletf2824e62018-10-01 12:12:37 +0200429 /* Always Create a new H1S */
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100430 if (!h1s_create(h1c, conn->ctx, sess))
Christopher Fauletf2824e62018-10-01 12:12:37 +0200431 goto fail;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200432
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100433 conn->ctx = h1c;
Christopher Faulet129817b2018-09-20 16:14:40 +0200434
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100435
436 if (t)
437 task_queue(t);
438
Christopher Faulet51dbc942018-09-13 09:05:15 +0200439 /* Try to read, if nothing is available yet we'll just subscribe */
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200440 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200441
442 /* mux->wake will be called soon to complete the operation */
443 return 0;
444
445 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200446 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200447 if (h1c->wait_event.tasklet)
448 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200449 pool_free(pool_head_h1c, h1c);
450 fail_h1c:
451 return -1;
452}
453
Christopher Faulet73c12072019-04-08 11:23:22 +0200454/* release function. This one should be called to free all resources allocated
455 * to the mux.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200456 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200457static void h1_release(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200458{
Christopher Faulet61840e72019-04-15 09:33:32 +0200459 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200460
Christopher Faulet51dbc942018-09-13 09:05:15 +0200461 if (h1c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200462 /* The connection must be aattached to this mux to be released */
463 if (h1c->conn && h1c->conn->ctx == h1c)
464 conn = h1c->conn;
465
466 if (conn && h1c->flags & H1C_F_UPG_H2C) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200467 h1c->flags &= ~H1C_F_UPG_H2C;
Olivier Houchard2ab3dad2019-07-03 13:08:18 +0200468 /* Make sure we're no longer subscribed to anything */
469 if (h1c->wait_event.events)
470 conn->xprt->unsubscribe(conn, conn->xprt_ctx,
471 h1c->wait_event.events, &h1c->wait_event);
Olivier Houchard45c44372019-06-11 14:06:23 +0200472 if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTX) != -1) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200473 /* connection successfully upgraded to H2, this
474 * mux was already released */
475 return;
476 }
477 sess_log(conn->owner); /* Log if the upgrade failed */
478 }
479
Olivier Houchard45c44372019-06-11 14:06:23 +0200480
Christopher Faulet51dbc942018-09-13 09:05:15 +0200481 if (!LIST_ISEMPTY(&h1c->buf_wait.list)) {
482 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
483 LIST_DEL(&h1c->buf_wait.list);
484 LIST_INIT(&h1c->buf_wait.list);
485 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
486 }
487
488 h1_release_buf(h1c, &h1c->ibuf);
489 h1_release_buf(h1c, &h1c->obuf);
490
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100491 if (h1c->task) {
492 h1c->task->context = NULL;
493 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
494 h1c->task = NULL;
495 }
496
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200497 if (h1c->wait_event.tasklet)
498 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200499
Christopher Fauletf2824e62018-10-01 12:12:37 +0200500 h1s_destroy(h1c->h1s);
Olivier Houchard0e079372019-04-15 17:51:16 +0200501 if (conn && h1c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100502 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events,
Olivier Houchard0e079372019-04-15 17:51:16 +0200503 &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200504 pool_free(pool_head_h1c, h1c);
505 }
506
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200507 if (conn) {
508 conn->mux = NULL;
509 conn->ctx = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200510
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200511 conn_stop_tracking(conn);
512 conn_full_close(conn);
513 if (conn->destroy_cb)
514 conn->destroy_cb(conn);
515 conn_free(conn);
516 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200517}
518
519/******************************************************/
520/* functions below are for the H1 protocol processing */
521/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +0200522/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
523 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +0200524 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100525static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200526{
Christopher Faulet570d1612018-11-26 11:13:57 +0100527 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +0200528
Christopher Faulet570d1612018-11-26 11:13:57 +0100529 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200530 (*(p + 5) > '1' ||
531 (*(p + 5) == '1' && *(p + 7) >= '1')))
532 h1m->flags |= H1_MF_VER_11;
533}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200534
Christopher Faulet9768c262018-10-22 09:34:31 +0200535/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
536 * greater or equal to 1.1
537 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100538static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +0200539{
Christopher Faulet570d1612018-11-26 11:13:57 +0100540 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200541
Christopher Faulet570d1612018-11-26 11:13:57 +0100542 if ((HTX_SL_RES_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200543 (*(p + 5) > '1' ||
544 (*(p + 5) == '1' && *(p + 7) >= '1')))
545 h1m->flags |= H1_MF_VER_11;
546}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200547
Christopher Faulet9768c262018-10-22 09:34:31 +0200548/*
549 * Check the validity of the request version. If the version is valid, it
550 * returns 1. Otherwise, it returns 0.
551 */
552static int h1_process_req_vsn(struct h1s *h1s, struct h1m *h1m, union h1_sl sl)
553{
554 struct h1c *h1c = h1s->h1c;
555
556 /* RFC7230#2.6 has enforced the format of the HTTP version string to be
557 * exactly one digit "." one digit. This check may be disabled using
558 * option accept-invalid-http-request.
559 */
560 if (!(h1c->px->options2 & PR_O2_REQBUG_OK)) {
561 if (sl.rq.v.len != 8)
562 return 0;
563
564 if (*(sl.rq.v.ptr + 4) != '/' ||
565 !isdigit((unsigned char)*(sl.rq.v.ptr + 5)) ||
566 *(sl.rq.v.ptr + 6) != '.' ||
567 !isdigit((unsigned char)*(sl.rq.v.ptr + 7)))
568 return 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200569 }
Christopher Faulet9768c262018-10-22 09:34:31 +0200570 else if (!sl.rq.v.len) {
571 /* try to convert HTTP/0.9 requests to HTTP/1.0 */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200572
Christopher Faulet9768c262018-10-22 09:34:31 +0200573 /* RFC 1945 allows only GET for HTTP/0.9 requests */
574 if (sl.rq.meth != HTTP_METH_GET)
575 return 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200576
Christopher Faulet9768c262018-10-22 09:34:31 +0200577 /* HTTP/0.9 requests *must* have a request URI, per RFC 1945 */
578 if (!sl.rq.u.len)
579 return 0;
580
581 /* Add HTTP version */
582 sl.rq.v = ist("HTTP/1.0");
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100583 return 1;
Christopher Faulet9768c262018-10-22 09:34:31 +0200584 }
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100585
586 if ((sl.rq.v.len == 8) &&
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100587 ((*(sl.rq.v.ptr + 5) > '1') ||
588 ((*(sl.rq.v.ptr + 5) == '1') && (*(sl.rq.v.ptr + 7) >= '1'))))
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100589 h1m->flags |= H1_MF_VER_11;
Christopher Faulet9768c262018-10-22 09:34:31 +0200590 return 1;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200591}
592
Christopher Faulet9768c262018-10-22 09:34:31 +0200593/*
594 * Check the validity of the response version. If the version is valid, it
595 * returns 1. Otherwise, it returns 0.
Christopher Fauletf2824e62018-10-01 12:12:37 +0200596 */
Christopher Faulet9768c262018-10-22 09:34:31 +0200597static int h1_process_res_vsn(struct h1s *h1s, struct h1m *h1m, union h1_sl sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200598{
Christopher Faulet9768c262018-10-22 09:34:31 +0200599 struct h1c *h1c = h1s->h1c;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200600
Christopher Faulet9768c262018-10-22 09:34:31 +0200601 /* RFC7230#2.6 has enforced the format of the HTTP version string to be
602 * exactly one digit "." one digit. This check may be disabled using
603 * option accept-invalid-http-request.
604 */
605 if (!(h1c->px->options2 & PR_O2_RSPBUG_OK)) {
606 if (sl.st.v.len != 8)
607 return 0;
608
609 if (*(sl.st.v.ptr + 4) != '/' ||
610 !isdigit((unsigned char)*(sl.st.v.ptr + 5)) ||
611 *(sl.st.v.ptr + 6) != '.' ||
612 !isdigit((unsigned char)*(sl.st.v.ptr + 7)))
613 return 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200614 }
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100615
616 if ((sl.st.v.len == 8) &&
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100617 ((*(sl.st.v.ptr + 5) > '1') ||
618 ((*(sl.st.v.ptr + 5) == '1') && (*(sl.st.v.ptr + 7) >= '1'))))
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100619 h1m->flags |= H1_MF_VER_11;
620
Christopher Faulet9768c262018-10-22 09:34:31 +0200621 return 1;
622}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200623
624/* Deduce the connection mode of the client connection, depending on the
625 * configuration and the H1 message flags. This function is called twice, the
626 * first time when the request is parsed and the second time when the response
627 * is parsed.
628 */
629static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
630{
631 struct proxy *fe = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200632
633 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100634 /* Output direction: second pass */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200635 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) ||
Christopher Fauletb992af02019-03-28 15:42:24 +0100636 h1s->status == 101) {
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 */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200646 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Fauletb992af02019-03-28 15:42:24 +0100647 }
648 else if (h1s->flags & H1S_F_WANT_KAL) {
649 /* By default the client is in KAL mode. CLOSE mode mean
650 * it is imposed by the client itself. So only change
651 * KAL mode here. */
652 if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) {
653 /* no length known or explicit close => close */
654 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
655 }
656 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
657 (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) {
658 /* no explict keep-alive and option httpclose => close */
659 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
660 }
661 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200662 }
663 else {
Christopher Fauletb992af02019-03-28 15:42:24 +0100664 /* Input direction: first pass */
665 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) {
666 /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/
Christopher Fauletf2824e62018-10-01 12:12:37 +0200667 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Fauletb992af02019-03-28 15:42:24 +0100668 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200669 }
670
671 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */
672 if (h1s->flags & H1S_F_WANT_KAL && fe->state == PR_STSTOPPED)
673 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
674}
675
676/* Deduce the connection mode of the client connection, depending on the
677 * configuration and the H1 message flags. This function is called twice, the
678 * first time when the request is parsed and the second time when the response
679 * is parsed.
680 */
681static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
682{
Olivier Houchardf502aca2018-12-14 19:42:40 +0100683 struct session *sess = h1s->sess;
Christopher Fauletb992af02019-03-28 15:42:24 +0100684 struct proxy *be = h1s->h1c->px;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100685 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200686
Christopher Fauletf2824e62018-10-01 12:12:37 +0200687 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100688 /* Input direction: second pass */
689
Christopher Fauletf2824e62018-10-01 12:12:37 +0200690 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) ||
Christopher Fauletb992af02019-03-28 15:42:24 +0100691 h1s->status == 101) {
692 /* Either we've established an explicit tunnel, or we're
693 * switching the protocol. In both cases, we're very unlikely to
694 * understand the next protocols. We have to switch to tunnel
695 * mode, so that we transfer the request and responses then let
696 * this protocol pass unmodified. When we later implement
697 * specific parsers for such protocols, we'll want to check the
698 * Upgrade header which contains information about that protocol
699 * for responses with status 101 (eg: see RFC2817 about TLS).
700 */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200701 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Fauletb992af02019-03-28 15:42:24 +0100702 }
703 else if (h1s->flags & H1S_F_WANT_KAL) {
704 /* By default the server is in KAL mode. CLOSE mode mean
705 * it is imposed by haproxy itself. So only change KAL
706 * mode here. */
707 if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO ||
708 !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){
709 /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */
710 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
711 }
712 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200713 }
Christopher Faulet70033782018-12-05 13:50:11 +0100714 else {
Christopher Fauletb992af02019-03-28 15:42:24 +0100715 /* Output direction: first pass */
716 if (h1m->flags & H1_MF_CONN_CLO) {
717 /* explicit close => close */
Christopher Faulet70033782018-12-05 13:50:11 +0100718 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Fauletb992af02019-03-28 15:42:24 +0100719 }
720 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
721 ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
722 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
723 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
724 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) {
725 /* no explicit keep-alive option httpclose/server-close => close */
726 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
727 }
Christopher Faulet70033782018-12-05 13:50:11 +0100728 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200729
730 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
731 if (h1s->flags & H1S_F_WANT_KAL && be->state == PR_STSTOPPED)
732 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200733}
734
Christopher Fauletb992af02019-03-28 15:42:24 +0100735static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200736{
737 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200738
739 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
740 * token is found
741 */
742 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +0200743 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200744
745 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100746 if (!(h1m->flags & H1_MF_VER_11))
747 *conn_val = ist("keep-alive");
Christopher Fauletf2824e62018-10-01 12:12:37 +0200748 }
749 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Fauletb992af02019-03-28 15:42:24 +0100750 if (h1m->flags & H1_MF_VER_11)
751 *conn_val = ist("close");
Christopher Fauletf2824e62018-10-01 12:12:37 +0200752 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200753}
754
Christopher Fauletb992af02019-03-28 15:42:24 +0100755static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200756{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200757 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
758 * token is found
759 */
760 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +0200761 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200762
763 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100764 if (!(h1m->flags & H1_MF_VER_11) ||
765 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11))
766 *conn_val = ist("keep-alive");
Christopher Fauletf2824e62018-10-01 12:12:37 +0200767 }
768 else { /* H1S_F_WANT_CLO */
Christopher Fauletb992af02019-03-28 15:42:24 +0100769 if (h1m->flags & H1_MF_VER_11)
770 *conn_val = ist("close");
Christopher Fauletf2824e62018-10-01 12:12:37 +0200771 }
Christopher Faulet9768c262018-10-22 09:34:31 +0200772}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200773
Christopher Fauletb992af02019-03-28 15:42:24 +0100774static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
Christopher Faulet9768c262018-10-22 09:34:31 +0200775{
Christopher Fauletb992af02019-03-28 15:42:24 +0100776 if (!conn_is_back(h1s->h1c->conn))
Christopher Faulet9768c262018-10-22 09:34:31 +0200777 h1_set_cli_conn_mode(h1s, h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +0100778 else
Christopher Faulet9768c262018-10-22 09:34:31 +0200779 h1_set_srv_conn_mode(h1s, h1m);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200780}
781
Christopher Fauletb992af02019-03-28 15:42:24 +0100782static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
783{
784 if (!conn_is_back(h1s->h1c->conn))
785 h1_set_cli_conn_mode(h1s, h1m);
786 else
787 h1_set_srv_conn_mode(h1s, h1m);
788
789 if (!(h1m->flags & H1_MF_RESP))
790 h1_update_req_conn_value(h1s, h1m, conn_val);
791 else
792 h1_update_res_conn_value(h1s, h1m, conn_val);
793}
Christopher Faulete44769b2018-11-29 23:01:45 +0100794
795/* Append the description of what is present in error snapshot <es> into <out>.
796 * The description must be small enough to always fit in a buffer. The output
797 * buffer may be the trash so the trash must not be used inside this function.
798 */
799static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
800{
801 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100802 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
803 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
804 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
805 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
806 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
807 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +0100808}
809/*
810 * Capture a bad request or response and archive it in the proxy's structure.
811 * By default it tries to report the error position as h1m->err_pos. However if
812 * this one is not set, it will then report h1m->next, which is the last known
813 * parsing point. The function is able to deal with wrapping buffers. It always
814 * displays buffers as a contiguous area starting at buf->p. The direction is
815 * determined thanks to the h1m's flags.
816 */
817static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
818 struct h1m *h1m, struct buffer *buf)
819{
820 struct session *sess = h1c->conn->owner;
821 struct proxy *proxy = h1c->px;
822 struct proxy *other_end = sess->fe;
823 union error_snapshot_ctx ctx;
824
Willy Tarreau598d7fc2018-12-18 18:10:38 +0100825 if (h1s->cs->data && !(h1m->flags & H1_MF_RESP))
Christopher Faulete44769b2018-11-29 23:01:45 +0100826 other_end = si_strm(h1s->cs->data)->be;
827
828 /* http-specific part now */
829 ctx.h1.state = h1m->state;
830 ctx.h1.c_flags = h1c->flags;
831 ctx.h1.s_flags = h1s->flags;
832 ctx.h1.m_flags = h1m->flags;
833 ctx.h1.m_clen = h1m->curr_len;
834 ctx.h1.m_blen = h1m->body_len;
835
836 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
837 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100838 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
839 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +0100840}
841
Christopher Fauletadb22202018-12-12 10:32:09 +0100842/* Emit the chunksize followed by a CRLF in front of data of the buffer
843 * <buf>. It goes backwards and starts with the byte before the buffer's
844 * head. The caller is responsible for ensuring there is enough room left before
845 * the buffer's head for the string.
846 */
847static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
848{
849 char *beg, *end;
850
851 beg = end = b_head(buf);
852 *--beg = '\n';
853 *--beg = '\r';
854 do {
855 *--beg = hextab[chksz & 0xF];
856 } while (chksz >>= 4);
857 buf->head -= (end - beg);
858 b_add(buf, end - beg);
859}
860
861/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
862 * ensuring there is enough room left in the buffer for the string. */
863static void h1_emit_chunk_crlf(struct buffer *buf)
864{
865 *(b_peek(buf, b_data(buf))) = '\r';
866 *(b_peek(buf, b_data(buf) + 1)) = '\n';
867 b_add(buf, 2);
868}
869
Christopher Faulet129817b2018-09-20 16:14:40 +0200870/*
Christopher Fauletc62c2b92019-03-28 11:41:39 +0100871 * Switch the request to tunnel mode. This function must only be called for
872 * CONNECT requests. On the client side, the mux is mark as busy on input,
873 * waiting the response.
874 */
875static void h1_set_req_tunnel_mode(struct h1s *h1s)
876{
877 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
878 h1s->req.state = H1_MSG_TUNNEL;
879 if (!conn_is_back(h1s->h1c->conn))
880 h1s->h1c->flags |= H1C_F_IN_BUSY;
881}
882
883/*
884 * Switch the response to tunnel mode. This function must only be called on
885 * successfull replies to CONNECT requests or on protocol switching. On the
886 * server side, if the request is not finished, the mux is mark as busy on
887 * input. Otherwise the request is also switch to tunnel mode.
888 */
889static void h1_set_res_tunnel_mode(struct h1s *h1s)
890{
891 h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
892 h1s->res.state = H1_MSG_TUNNEL;
893 if (conn_is_back(h1s->h1c->conn) && h1s->req.state < H1_MSG_DONE)
894 h1s->h1c->flags |= H1C_F_IN_BUSY;
895 else {
896 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
897 h1s->req.state = H1_MSG_TUNNEL;
898 if (h1s->h1c->flags & H1C_F_IN_BUSY) {
899 h1s->h1c->flags &= ~H1C_F_IN_BUSY;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200900 tasklet_wakeup(h1s->h1c->wait_event.tasklet);
Christopher Fauletc62c2b92019-03-28 11:41:39 +0100901 }
902 }
903}
904
Christopher Faulet82f01602019-05-24 16:50:16 +0200905/* Estimate the size of the HTX headers after the parsing, including the EOH. */
906static size_t h1_eval_htx_hdrs_size(struct http_hdr *hdrs)
907{
908 size_t sz = 0;
909 int i;
910
911 for (i = 0; hdrs[i].n.len; i++)
912 sz += sizeof(struct htx_blk) + hdrs[i].n.len + hdrs[i].v.len;
913 sz += sizeof(struct htx_blk) + 1;
914 return sz;
915}
916
Christopher Faulet30db3d72019-05-17 15:35:33 +0200917/* Estimate the size of the HTX request after the parsing. */
918static size_t h1_eval_htx_req_size(struct h1m *h1m, union h1_sl *h1sl, struct http_hdr *hdrs)
919{
920 size_t sz;
Christopher Faulet30db3d72019-05-17 15:35:33 +0200921
922 /* size of the HTX start-line */
923 sz = sizeof(struct htx_sl) + h1sl->rq.m.len + h1sl->rq.u.len + h1sl->rq.v.len;
Christopher Faulet82f01602019-05-24 16:50:16 +0200924 sz += h1_eval_htx_hdrs_size(hdrs);
Christopher Faulet30db3d72019-05-17 15:35:33 +0200925 return sz;
926}
927
928/* Estimate the size of the HTX response after the parsing. */
929static size_t h1_eval_htx_res_size(struct h1m *h1m, union h1_sl *h1sl, struct http_hdr *hdrs)
930{
931 size_t sz;
Christopher Faulet30db3d72019-05-17 15:35:33 +0200932
933 /* size of the HTX start-line */
934 sz = sizeof(struct htx_sl) + h1sl->st.v.len + h1sl->st.c.len + h1sl->st.r.len;
Christopher Faulet82f01602019-05-24 16:50:16 +0200935 sz += h1_eval_htx_hdrs_size(hdrs);
Christopher Faulet30db3d72019-05-17 15:35:33 +0200936 return sz;
937}
938
Christopher Fauletc62c2b92019-03-28 11:41:39 +0100939/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +0200940 * Add the EOM in the HTX message and switch the message to the DONE state. It
941 * returns the number of bytes parsed if > 0, or 0 if iet couldn't proceed. This
942 * functions is responsible to update the parser state <h1m>. It also add the
943 * flag CS_FL_EOI on the CS.
944 */
945static size_t h1_process_eom(struct h1s *h1s, struct h1m *h1m, struct htx *htx, size_t max)
946{
947 if (max < sizeof(struct htx_blk) + 1 || !htx_add_endof(htx, HTX_BLK_EOM))
948 return 0;
949
950 h1m->state = H1_MSG_DONE;
951 h1s->cs->flags |= CS_FL_EOI;
952 return (sizeof(struct htx_blk) + 1);
953}
954
955/*
Christopher Faulet129817b2018-09-20 16:14:40 +0200956 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +0200957 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
958 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
Joseph Herlant30bc5092018-11-25 10:52:20 -0800959 * responsible to update the parser state <h1m>.
Christopher Faulet129817b2018-09-20 16:14:40 +0200960 */
Christopher Faulet9768c262018-10-22 09:34:31 +0200961static size_t h1_process_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
Christopher Fauletf2824e62018-10-01 12:12:37 +0200962 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +0200963{
Christopher Fauleta39d8ad2019-05-15 15:54:39 +0200964 struct htx_sl *sl;
Christopher Faulete4ab11b2019-06-11 15:05:37 +0200965 struct http_hdr hdrs[global.tune.max_http_hdr];
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100966 union h1_sl h1sl;
967 unsigned int flags = HTX_SL_F_NONE;
Christopher Fauleta39d8ad2019-05-15 15:54:39 +0200968 size_t used;
Christopher Faulet129817b2018-09-20 16:14:40 +0200969 int ret = 0;
970
Christopher Faulet30db3d72019-05-17 15:35:33 +0200971 if (!max || !b_data(buf))
Christopher Fauletd44ad5b2018-11-19 21:52:12 +0100972 goto end;
973
Christopher Faulet129817b2018-09-20 16:14:40 +0200974 /* Realing input buffer if necessary */
975 if (b_head(buf) + b_data(buf) > b_wrap(buf))
976 b_slow_realign(buf, trash.area, 0);
977
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200978 if (!(h1m->flags & H1_MF_RESP)) {
979 /* Try to match H2 preface before parsing the request headers. */
980 ret = b_isteq(buf, 0, b_data(buf), ist(H2_CONN_PREFACE));
981 if (ret > 0)
982 goto h2c_upgrade;
983 }
984
Christopher Faulet30db3d72019-05-17 15:35:33 +0200985 ret = h1_headers_to_hdr_list(b_peek(buf, *ofs), b_tail(buf),
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100986 hdrs, sizeof(hdrs)/sizeof(hdrs[0]), h1m, &h1sl);
Christopher Faulet129817b2018-09-20 16:14:40 +0200987 if (ret <= 0) {
988 /* Incomplete or invalid message. If the buffer is full, it's an
989 * error because headers are too large to be handled by the
990 * parser. */
Christopher Faulete5438b72019-06-26 14:56:27 +0200991 if (ret < 0 || (!ret && !buf_room_for_htx_data(buf)))
Christopher Fauletf2824e62018-10-01 12:12:37 +0200992 goto error;
Christopher Faulet129817b2018-09-20 16:14:40 +0200993 goto end;
994 }
995
996 /* messages headers fully parsed, do some checks to prepare the body
997 * parsing.
998 */
999
Christopher Faulet9768c262018-10-22 09:34:31 +02001000 /* Save the request's method or the response's status, check if the body
1001 * length is known and check the VSN validity */
Christopher Faulet129817b2018-09-20 16:14:40 +02001002 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001003 h1s->meth = h1sl.rq.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001004
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001005 /* By default, request have always a known length */
Christopher Faulet129817b2018-09-20 16:14:40 +02001006 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001007
1008 if (h1s->meth == HTTP_METH_CONNECT) {
1009 /* Switch CONNECT requests to tunnel mode */
1010 h1_set_req_tunnel_mode(h1s);
1011 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001012
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001013 if (!h1_process_req_vsn(h1s, h1m, h1sl)) {
1014 h1m->err_pos = h1sl.rq.v.ptr - b_head(buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001015 h1m->err_state = h1m->state;
1016 goto vsn_error;
1017 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001018 }
1019 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001020 h1s->status = h1sl.st.status;
Christopher Faulet129817b2018-09-20 16:14:40 +02001021
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001022 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) ||
1023 h1s->status == 101) {
1024 /* Switch successfull replies to CONNECT requests and
1025 * protocol switching to tunnel mode. */
1026 h1_set_res_tunnel_mode(h1s);
1027 }
1028 else if ((h1s->meth == HTTP_METH_HEAD) ||
1029 (h1s->status >= 100 && h1s->status < 200) ||
1030 (h1s->status == 204) || (h1s->status == 304)) {
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001031 /* Responses known to have no body. */
Christopher Faulet129817b2018-09-20 16:14:40 +02001032 h1m->flags &= ~(H1_MF_CLEN|H1_MF_CHNK);
1033 h1m->flags |= H1_MF_XFER_LEN;
1034 h1m->curr_len = h1m->body_len = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001035 }
1036 else if (h1m->flags & (H1_MF_CLEN|H1_MF_CHNK)) {
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001037 /* Responses with a known body length. */
Christopher Faulet129817b2018-09-20 16:14:40 +02001038 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet129817b2018-09-20 16:14:40 +02001039 }
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001040 else {
1041 /* Responses with an unknown body length */
Christopher Faulet129817b2018-09-20 16:14:40 +02001042 h1m->state = H1_MSG_TUNNEL;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001043 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001044
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001045 if (!h1_process_res_vsn(h1s, h1m, h1sl)) {
1046 h1m->err_pos = h1sl.st.v.ptr - b_head(buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001047 h1m->err_state = h1m->state;
1048 goto vsn_error;
1049 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001050 }
1051
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001052 /* Set HTX start-line flags */
1053 if (h1m->flags & H1_MF_VER_11)
1054 flags |= HTX_SL_F_VER_11;
1055 if (h1m->flags & H1_MF_XFER_ENC)
1056 flags |= HTX_SL_F_XFER_ENC;
1057 if (h1m->flags & H1_MF_XFER_LEN) {
1058 flags |= HTX_SL_F_XFER_LEN;
1059 if (h1m->flags & H1_MF_CHNK)
1060 flags |= HTX_SL_F_CHNK;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001061 else if (h1m->flags & H1_MF_CLEN) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001062 flags |= HTX_SL_F_CLEN;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001063 if (h1m->body_len == 0)
1064 flags |= HTX_SL_F_BODYLESS;
1065 }
1066 else
Christopher Fauletb2db4fa2018-11-27 16:51:09 +01001067 flags |= HTX_SL_F_BODYLESS;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001068 }
1069
Christopher Fauleta39d8ad2019-05-15 15:54:39 +02001070 used = htx_used_space(htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001071 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001072 if (h1_eval_htx_req_size(h1m, &h1sl, hdrs) > max) {
1073 if (htx_is_empty(htx))
1074 goto error;
1075 h1m_init_req(h1m);
1076 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
1077 ret = 0;
1078 goto end;
1079 }
Christopher Faulet30db3d72019-05-17 15:35:33 +02001080
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001081 sl = htx_add_stline(htx, HTX_BLK_REQ_SL, flags, h1sl.rq.m, h1sl.rq.u, h1sl.rq.v);
1082 if (!sl || !htx_add_all_headers(htx, hdrs))
Christopher Faulet9768c262018-10-22 09:34:31 +02001083 goto error;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001084 sl->info.req.meth = h1s->meth;
Christopher Faulet42993a82019-06-14 10:31:25 +02001085
1086 /* Check if the uri contains an explicit scheme and if it is
1087 * "http" or "https". */
1088 if (h1sl.rq.u.len && h1sl.rq.u.ptr[0] != '/') {
1089 sl->flags |= HTX_SL_F_HAS_SCHM;
1090 if (h1sl.rq.u.len > 4 && (h1sl.rq.u.ptr[0] | 0x20) == 'h')
1091 sl->flags |= ((h1sl.rq.u.ptr[4] == ':') ? HTX_SL_F_SCHM_HTTP : HTX_SL_F_SCHM_HTTPS);
1092 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001093 }
1094 else {
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001095 if (h1_eval_htx_res_size(h1m, &h1sl, hdrs) > max) {
1096 if (htx_is_empty(htx))
1097 goto error;
1098 h1m_init_res(h1m);
1099 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
1100 ret = 0;
1101 goto end;
1102 }
Christopher Faulet30db3d72019-05-17 15:35:33 +02001103
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001104 flags |= HTX_SL_F_IS_RESP;
1105 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, h1sl.st.v, h1sl.st.c, h1sl.st.r);
1106 if (!sl || !htx_add_all_headers(htx, hdrs))
Christopher Faulet9768c262018-10-22 09:34:31 +02001107 goto error;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001108 sl->info.res.status = h1s->status;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001109 }
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001110
Christopher Fauleta39d8ad2019-05-15 15:54:39 +02001111 /* Set bytes used in the HTX mesage for the headers now */
1112 sl->hdrs_bytes = htx_used_space(htx) - used;
1113
Christopher Fauletb992af02019-03-28 15:42:24 +01001114 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001115
1116 /* If body length cannot be determined, set htx->extra to
1117 * ULLONG_MAX. This value is impossible in other cases.
1118 */
1119 htx->extra = ((h1m->flags & H1_MF_XFER_LEN) ? h1m->curr_len : ULLONG_MAX);
Christopher Faulet9768c262018-10-22 09:34:31 +02001120 *ofs += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001121 end:
1122 return ret;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001123
1124 error:
Christopher Fauletf2824e62018-10-01 12:12:37 +02001125 h1m->err_state = h1m->state;
1126 h1m->err_pos = h1m->next;
Christopher Faulet9768c262018-10-22 09:34:31 +02001127 vsn_error:
1128 h1s->flags |= (!(h1m->flags & H1_MF_RESP) ? H1S_F_REQ_ERROR : H1S_F_RES_ERROR);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001129 h1s->cs->flags |= CS_FL_EOI;
1130 htx->flags |= HTX_FL_PARSING_ERROR;
Christopher Faulete44769b2018-11-29 23:01:45 +01001131 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001132 ret = 0;
1133 goto end;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001134
1135 h2c_upgrade:
1136 h1s->h1c->flags |= H1C_F_UPG_H2C;
Christopher Faulet8e9e3ef2019-05-17 09:14:10 +02001137 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001138 htx->flags |= HTX_FL_UPGRADE;
1139 ret = 0;
1140 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001141}
1142
1143/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001144 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
1145 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag
Christopher Faulet129817b2018-09-20 16:14:40 +02001146 * and filling h1s->err_pos and h1s->err_state fields. This functions is
Joseph Herlant30bc5092018-11-25 10:52:20 -08001147 * responsible to update the parser state <h1m>.
Christopher Faulet129817b2018-09-20 16:14:40 +02001148 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001149static size_t h1_process_data(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001150 struct buffer *buf, size_t *ofs, size_t max,
Christopher Faulet30db3d72019-05-17 15:35:33 +02001151 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001152{
1153 size_t total = 0;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001154 int32_t ret = 0;
Christopher Fauletafe57842019-01-21 11:55:02 +01001155
Christopher Faulet129817b2018-09-20 16:14:40 +02001156 if (h1m->flags & H1_MF_XFER_LEN) {
1157 if (h1m->flags & H1_MF_CLEN) {
1158 /* content-length: read only h2m->body_len */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001159 ret = htx_get_max_blksz(htx, max);
Christopher Faulet129817b2018-09-20 16:14:40 +02001160 if ((uint64_t)ret > h1m->curr_len)
1161 ret = h1m->curr_len;
Christopher Faulet9768c262018-10-22 09:34:31 +02001162 if (ret > b_contig_data(buf, *ofs))
1163 ret = b_contig_data(buf, *ofs);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001164
Christopher Faulet9768c262018-10-22 09:34:31 +02001165 if (ret) {
Willy Tarreau78f548f2018-12-05 10:02:39 +01001166 /* very often with large files we'll face the following
1167 * situation :
1168 * - htx is empty and points to <htxbuf>
1169 * - ret == buf->data
1170 * - buf->head == sizeof(struct htx)
1171 * => we can swap the buffers and place an htx header into
1172 * the target buffer instead
1173 */
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001174 int32_t try = ret;
1175
Willy Tarreau78f548f2018-12-05 10:02:39 +01001176 if (unlikely(htx_is_empty(htx) && ret == b_data(buf) &&
1177 !*ofs && b_head_ofs(buf) == sizeof(struct htx))) {
1178 void *raw_area = buf->area;
1179 void *htx_area = htxbuf->area;
1180 struct htx_blk *blk;
1181
1182 buf->area = htx_area;
1183 htxbuf->area = raw_area;
1184 htx = (struct htx *)htxbuf->area;
1185 htx->size = htxbuf->size - sizeof(*htx);
1186 htx_reset(htx);
1187 b_set_data(htxbuf, b_size(htxbuf));
1188
1189 blk = htx_add_blk(htx, HTX_BLK_DATA, ret);
1190 blk->info += ret;
1191 /* nothing else to do, the old buffer now contains an
1192 * empty pre-initialized HTX header
1193 */
1194 }
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001195 else {
1196 ret = htx_add_data(htx, ist2(b_peek(buf, *ofs), try));
1197 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001198 h1m->curr_len -= ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001199 max -= sizeof(struct htx_blk) + ret;
Christopher Faulet9768c262018-10-22 09:34:31 +02001200 *ofs += ret;
1201 total += ret;
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001202 if (ret < try)
1203 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001204 }
1205
1206 if (!h1m->curr_len) {
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001207 if (!h1_process_eom(h1s, h1m, htx, max))
Christopher Faulet9768c262018-10-22 09:34:31 +02001208 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001209 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001210 }
1211 else if (h1m->flags & H1_MF_CHNK) {
1212 new_chunk:
1213 /* te:chunked : parse chunks */
1214 if (h1m->state == H1_MSG_CHUNK_CRLF) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001215 ret = h1_skip_chunk_crlf(buf, *ofs, b_data(buf));
Christopher Faulet129817b2018-09-20 16:14:40 +02001216 if (ret <= 0)
1217 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001218 h1m->state = H1_MSG_CHUNK_SIZE;
1219
Christopher Fauletf2824e62018-10-01 12:12:37 +02001220 *ofs += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001221 total += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001222 }
1223
1224 if (h1m->state == H1_MSG_CHUNK_SIZE) {
1225 unsigned int chksz;
1226
Christopher Faulet30db3d72019-05-17 15:35:33 +02001227 ret = h1_parse_chunk_size(buf, *ofs, b_data(buf), &chksz);
Christopher Faulet129817b2018-09-20 16:14:40 +02001228 if (ret <= 0)
1229 goto end;
Christopher Faulet54b5e212019-06-04 10:08:28 +02001230 h1m->state = ((!chksz) ? H1_MSG_TRAILERS : H1_MSG_DATA);
Christopher Faulet9768c262018-10-22 09:34:31 +02001231
Christopher Faulet129817b2018-09-20 16:14:40 +02001232 h1m->curr_len = chksz;
1233 h1m->body_len += chksz;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001234 *ofs += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001235 total += ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001236
1237 if (!h1m->curr_len)
1238 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001239 }
1240
1241 if (h1m->state == H1_MSG_DATA) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001242 ret = htx_get_max_blksz(htx, max);
Christopher Faulet129817b2018-09-20 16:14:40 +02001243 if ((uint64_t)ret > h1m->curr_len)
1244 ret = h1m->curr_len;
Christopher Faulet9768c262018-10-22 09:34:31 +02001245 if (ret > b_contig_data(buf, *ofs))
1246 ret = b_contig_data(buf, *ofs);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001247
Christopher Faulet9768c262018-10-22 09:34:31 +02001248 if (ret) {
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001249 int32_t try = ret;
1250
1251 ret = htx_add_data(htx, ist2(b_peek(buf, *ofs), try));
Christopher Faulet9768c262018-10-22 09:34:31 +02001252 h1m->curr_len -= ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001253 max -= sizeof(struct htx_blk) + ret;
Christopher Faulet9768c262018-10-22 09:34:31 +02001254 *ofs += ret;
1255 total += ret;
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001256 if (ret < try)
1257 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001258 }
1259 if (!h1m->curr_len) {
1260 h1m->state = H1_MSG_CHUNK_CRLF;
1261 goto new_chunk;
1262 }
1263 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001264 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001265 }
1266 else {
1267 /* XFER_LEN is set but not CLEN nor CHNK, it means there
1268 * is no body. Switch the message in DONE state
1269 */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001270 if (!h1_process_eom(h1s, h1m, htx, max))
Christopher Faulet9768c262018-10-22 09:34:31 +02001271 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001272 }
1273 }
1274 else {
1275 /* no content length, read till SHUTW */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001276 ret = htx_get_max_blksz(htx, max);
Christopher Faulet9768c262018-10-22 09:34:31 +02001277 if (ret > b_contig_data(buf, *ofs))
1278 ret = b_contig_data(buf, *ofs);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001279
Christopher Faulet9768c262018-10-22 09:34:31 +02001280 if (ret) {
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001281 int32_t try = ret;
1282
1283 ret = htx_add_data(htx, ist2(b_peek(buf, *ofs), try));
Christopher Faulet9768c262018-10-22 09:34:31 +02001284
Olivier Houchardcf42d5a2018-12-04 17:41:58 +01001285 *ofs += ret;
1286 total = ret;
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001287 if (ret < try)
1288 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001289 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001290 }
1291
1292 end:
1293 if (ret < 0) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001294 h1s->flags |= (!(h1m->flags & H1_MF_RESP) ? H1S_F_REQ_ERROR : H1S_F_RES_ERROR);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001295 h1s->cs->flags |= CS_FL_EOI;
1296 htx->flags |= HTX_FL_PARSING_ERROR;
Christopher Faulet129817b2018-09-20 16:14:40 +02001297 h1m->err_state = h1m->state;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001298 h1m->err_pos = *ofs + max + ret;
Christopher Faulete44769b2018-11-29 23:01:45 +01001299 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet129817b2018-09-20 16:14:40 +02001300 return 0;
1301 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001302 /* update htx->extra, only when the body length is known */
1303 if (h1m->flags & H1_MF_XFER_LEN)
1304 htx->extra = h1m->curr_len;
Christopher Faulet129817b2018-09-20 16:14:40 +02001305 return total;
1306}
1307
1308/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001309 * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if
1310 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1311 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
1312 * responsible to update the parser state <h1m>.
1313 */
1314static size_t h1_process_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1315 struct buffer *buf, size_t *ofs, size_t max)
1316{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02001317 struct http_hdr hdrs[global.tune.max_http_hdr];
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001318 struct h1m tlr_h1m;
1319 int ret = 0;
1320
1321 if (!max || !b_data(buf))
1322 goto end;
1323
1324 /* Realing input buffer if necessary */
1325 if (b_peek(buf, *ofs) > b_tail(buf))
1326 b_slow_realign(buf, trash.area, 0);
1327
1328 tlr_h1m.flags = (H1_MF_NO_PHDR|H1_MF_HDRS_ONLY);
1329 ret = h1_headers_to_hdr_list(b_peek(buf, *ofs), b_tail(buf),
1330 hdrs, sizeof(hdrs)/sizeof(hdrs[0]), &tlr_h1m, NULL);
1331 if (ret <= 0) {
1332 /* Incomplete or invalid trailers. If the buffer is full, it's
1333 * an error because traliers are too large to be handled by the
1334 * parser. */
1335 if (ret < 0 || (!ret && !buf_room_for_htx_data(buf)))
1336 goto error;
1337 goto end;
1338 }
1339
1340 /* messages trailers fully parsed. */
1341 if (h1_eval_htx_hdrs_size(hdrs) > max) {
1342 if (htx_is_empty(htx))
1343 goto error;
1344 ret = 0;
1345 goto end;
1346 }
1347
1348 if (!htx_add_all_trailers(htx, hdrs))
1349 goto error;
1350
1351 *ofs += ret;
1352 h1s->flags |= H1S_F_HAVE_I_TLR;
1353 end:
1354 return ret;
1355
1356 error:
1357 h1m->err_state = h1m->state;
1358 h1m->err_pos = h1m->next;
1359 h1s->flags |= (!(h1m->flags & H1_MF_RESP) ? H1S_F_REQ_ERROR : H1S_F_RES_ERROR);
1360 h1s->cs->flags |= CS_FL_EOI;
1361 htx->flags |= HTX_FL_PARSING_ERROR;
1362 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1363 ret = 0;
1364 goto end;
1365}
1366
1367/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001368 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001369 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1370 * it couldn't proceed.
Christopher Faulet129817b2018-09-20 16:14:40 +02001371 */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001372static size_t h1_process_input(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001373{
Christopher Faulet539e0292018-11-19 10:40:09 +01001374 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001375 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001376 struct htx *htx;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001377 size_t ret, data;
Christopher Faulet129817b2018-09-20 16:14:40 +02001378 size_t total = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001379 int errflag;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001380
Christopher Faulet539e0292018-11-19 10:40:09 +01001381 htx = htx_from_buf(buf);
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001382
Christopher Fauletf2824e62018-10-01 12:12:37 +02001383 if (!conn_is_back(h1c->conn)) {
1384 h1m = &h1s->req;
1385 errflag = H1S_F_REQ_ERROR;
1386 }
1387 else {
1388 h1m = &h1s->res;
1389 errflag = H1S_F_RES_ERROR;
1390 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001391
Christopher Faulet74027762019-02-26 14:45:05 +01001392 data = htx->data;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001393 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001394 size_t used = htx_used_space(htx);
1395
Christopher Faulet129817b2018-09-20 16:14:40 +02001396 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001397 ret = h1_process_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001398 if (!ret)
1399 break;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001400 if ((h1m->flags & H1_MF_RESP) &&
1401 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1402 h1m_init_res(&h1s->res);
1403 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
1404 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001405 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001406 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001407 ret = h1_process_data(h1s, h1m, htx, &h1c->ibuf, &total, count, buf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01001408 htx = htx_from_buf(buf);
Christopher Faulet129817b2018-09-20 16:14:40 +02001409 if (!ret)
1410 break;
1411 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001412 else if (h1m->state == H1_MSG_TRAILERS) {
1413 if (!(h1s->flags & H1S_F_HAVE_I_TLR)) {
1414 ret = h1_process_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
1415 if (!ret)
1416 break;
1417 }
1418 if (!h1_process_eom(h1s, h1m, htx, count))
1419 break;
1420 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001421 else if (h1m->state == H1_MSG_DONE) {
Christopher Faulet2f320ee2019-04-16 20:26:53 +02001422 if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE)
1423 h1c->flags |= H1C_F_IN_BUSY;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001424 break;
Christopher Fauletcb55f482018-12-10 11:56:47 +01001425 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001426 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001427 ret = h1_process_data(h1s, h1m, htx, &h1c->ibuf, &total, count, buf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01001428 htx = htx_from_buf(buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001429 if (!ret)
1430 break;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001431 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001432 else {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001433 h1s->flags |= errflag;
Christopher Faulet129817b2018-09-20 16:14:40 +02001434 break;
1435 }
1436
Christopher Faulet30db3d72019-05-17 15:35:33 +02001437 count -= htx_used_space(htx) - used;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001438 } while (!(h1s->flags & errflag) && count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001439
Christopher Faulet47365272018-10-31 17:40:50 +01001440 if (h1s->flags & errflag)
1441 goto parsing_err;
Christopher Faulet129817b2018-09-20 16:14:40 +02001442
Christopher Faulet539e0292018-11-19 10:40:09 +01001443 b_del(&h1c->ibuf, total);
1444
1445 end:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001446 htx_to_buf(htx, buf);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001447 ret = htx->data - data;
Willy Tarreau45f2b892018-12-05 07:59:27 +01001448 if (h1c->flags & H1C_F_IN_FULL && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001449 h1c->flags &= ~H1C_F_IN_FULL;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001450 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet47365272018-10-31 17:40:50 +01001451 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001452
Christopher Fauletcf56b992018-12-11 16:12:31 +01001453 h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
1454
Christopher Fauletcdc90e92019-03-28 13:28:46 +01001455 if (!b_data(&h1c->ibuf))
Christopher Faulet539e0292018-11-19 10:40:09 +01001456 h1_release_buf(h1c, &h1c->ibuf);
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02001457 else if (h1s_data_pending(h1s) && !htx_is_empty(htx))
Christopher Fauletcf56b992018-12-11 16:12:31 +01001458 h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM;
Christopher Faulet539e0292018-11-19 10:40:09 +01001459
Willy Tarreauc493c9c2019-06-03 14:18:22 +02001460 if ((h1s->flags & H1S_F_REOS) && (!h1s_data_pending(h1s) || htx_is_empty(htx))) {
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001461 h1s->cs->flags |= CS_FL_EOS;
Christopher Faulet26922382019-03-08 15:13:41 +01001462 if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE)
Christopher Fauletb8d2ee02019-02-25 15:29:51 +01001463 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet539e0292018-11-19 10:40:09 +01001464 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001465
Christopher Faulet30db3d72019-05-17 15:35:33 +02001466 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001467
1468 parsing_err:
Christopher Faulet47365272018-10-31 17:40:50 +01001469 b_reset(&h1c->ibuf);
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001470 htx_to_buf(htx, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001471 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001472}
1473
Christopher Faulet129817b2018-09-20 16:14:40 +02001474/*
1475 * Process outgoing data. It parses data and transfer them from the channel buffer into
1476 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1477 * 0 if it couldn't proceed.
1478 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02001479static size_t h1_process_output(struct h1c *h1c, struct buffer *buf, size_t count)
1480{
Christopher Faulet129817b2018-09-20 16:14:40 +02001481 struct h1s *h1s = h1c->h1s;
1482 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001483 struct htx *chn_htx;
1484 struct htx_blk *blk;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001485 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001486 size_t total = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001487 int errflag;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001488
Christopher Faulet47365272018-10-31 17:40:50 +01001489 if (!count)
1490 goto end;
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001491
Christopher Faulet94b2c762019-05-24 15:28:57 +02001492 chn_htx = htxbuf(buf);
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001493 if (htx_is_empty(chn_htx))
1494 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001495
Christopher Faulet51dbc942018-09-13 09:05:15 +02001496 if (!h1_get_buf(h1c, &h1c->obuf)) {
1497 h1c->flags |= H1C_F_OUT_ALLOC;
1498 goto end;
1499 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001500
Christopher Fauletf2824e62018-10-01 12:12:37 +02001501 if (!conn_is_back(h1c->conn)) {
1502 h1m = &h1s->res;
1503 errflag = H1S_F_RES_ERROR;
1504 }
1505 else {
1506 h1m = &h1s->req;
1507 errflag = H1S_F_REQ_ERROR;
1508 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001509
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001510 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001511 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001512
Willy Tarreau3815b222018-12-11 19:50:43 +01001513 /* Perform some optimizations to reduce the number of buffer copies.
1514 * First, if the mux's buffer is empty and the htx area contains
1515 * exactly one data block of the same size as the requested count,
1516 * then it's possible to simply swap the caller's buffer with the
1517 * mux's output buffer and adjust offsets and length to match the
1518 * entire DATA HTX block in the middle. In this case we perform a
1519 * true zero-copy operation from end-to-end. This is the situation
1520 * that happens all the time with large files. Second, if this is not
1521 * possible, but the mux's output buffer is empty, we still have an
1522 * opportunity to avoid the copy to the intermediary buffer, by making
1523 * the intermediary buffer's area point to the output buffer's area.
1524 * In this case we want to skip the HTX header to make sure that copies
1525 * remain aligned and that this operation remains possible all the
1526 * time. This goes for headers, data blocks and any data extracted from
1527 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01001528 */
1529 if (!b_data(&h1c->obuf)) {
Willy Tarreau3815b222018-12-11 19:50:43 +01001530 if (chn_htx->used == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001531 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01001532 htx_get_blk_value(chn_htx, blk).len == count) {
1533 void *old_area = h1c->obuf.area;
1534
1535 h1c->obuf.area = buf->area;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001536 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01001537 h1c->obuf.data = count;
1538
1539 buf->area = old_area;
1540 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01001541
1542 /* The message is chunked. We need to emit the chunk
1543 * size. We have at least the size of the struct htx to
1544 * write the chunk envelope. It should be enough.
1545 */
1546 if (h1m->flags & H1_MF_CHNK) {
1547 h1_emit_chunk_size(&h1c->obuf, count);
1548 h1_emit_chunk_crlf(&h1c->obuf);
1549 }
1550
Willy Tarreau3815b222018-12-11 19:50:43 +01001551 total += count;
1552 goto out;
1553 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001554 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001555 }
Christopher Fauletc2518a52019-06-25 21:41:02 +02001556 else
1557 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02001558
Christopher Fauletc2518a52019-06-25 21:41:02 +02001559 tmp.data = 0;
1560 tmp.size = b_room(&h1c->obuf);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001561 while (count && !(h1s->flags & errflag) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01001562 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02001563 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001564 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02001565 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001566 uint32_t vlen;
Christopher Faulet9768c262018-10-22 09:34:31 +02001567
Christopher Fauletb2e84162018-12-06 11:39:49 +01001568 vlen = sz;
1569 if (vlen > count) {
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001570 if (type != HTX_BLK_DATA)
Christopher Fauletb2e84162018-12-06 11:39:49 +01001571 goto copy;
1572 vlen = count;
1573 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001574
Christopher Faulet94b2c762019-05-24 15:28:57 +02001575 if (type == HTX_BLK_UNUSED)
1576 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02001577
Christopher Faulet94b2c762019-05-24 15:28:57 +02001578 switch (h1m->state) {
1579 case H1_MSG_RQBEFORE:
1580 if (type != HTX_BLK_REQ_SL)
1581 goto error;
Christopher Faulet9768c262018-10-22 09:34:31 +02001582 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001583 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001584 h1_parse_req_vsn(h1m, sl);
Christopher Fauletc2518a52019-06-25 21:41:02 +02001585 if (!htx_reqline_to_h1(sl, &tmp))
Christopher Faulet9768c262018-10-22 09:34:31 +02001586 goto copy;
1587 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01001588 if (sl->flags & HTX_SL_F_BODYLESS)
1589 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001590 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet129817b2018-09-20 16:14:40 +02001591 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02001592
Christopher Faulet94b2c762019-05-24 15:28:57 +02001593 case H1_MSG_RPBEFORE:
1594 if (type != HTX_BLK_RES_SL)
1595 goto error;
Christopher Faulet9768c262018-10-22 09:34:31 +02001596 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001597 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02001598 h1_parse_res_vsn(h1m, sl);
Christopher Fauletc2518a52019-06-25 21:41:02 +02001599 if (!htx_stline_to_h1(sl, &tmp))
Christopher Faulet9768c262018-10-22 09:34:31 +02001600 goto copy;
Christopher Faulet03599112018-11-27 11:21:21 +01001601 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02001602 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001603 if (sl->info.res.status < 200 &&
1604 (sl->info.res.status == 100 || sl->info.res.status >= 102))
Christopher Fauletada34b62019-05-24 16:36:43 +02001605 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001606 h1m->state = H1_MSG_HDR_FIRST;
1607 break;
1608
Christopher Faulet94b2c762019-05-24 15:28:57 +02001609 case H1_MSG_HDR_FIRST:
1610 case H1_MSG_HDR_NAME:
1611 case H1_MSG_HDR_L2_LWS:
1612 if (type == HTX_BLK_EOH)
1613 goto last_lf;
1614 if (type != HTX_BLK_HDR)
1615 goto error;
Christopher Faulet9768c262018-10-22 09:34:31 +02001616 h1m->state = H1_MSG_HDR_NAME;
1617 n = htx_get_blk_name(chn_htx, blk);
1618 v = htx_get_blk_value(chn_htx, blk);
1619
1620 if (isteqi(n, ist("transfer-encoding")))
1621 h1_parse_xfer_enc_header(h1m, v);
Willy Tarreau27cd2232019-01-03 21:52:42 +01001622 else if (isteqi(n, ist("content-length"))) {
Christopher Faulet5220ef22019-03-27 15:44:56 +01001623 /* Only skip C-L header with invalid value. */
1624 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01001625 goto skip_hdr;
1626 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001627 else if (isteqi(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001628 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02001629 if (!v.len)
1630 goto skip_hdr;
1631 }
1632
Christopher Fauletc2518a52019-06-25 21:41:02 +02001633 if (!htx_hdr_to_h1(n, v, &tmp))
Christopher Faulet9768c262018-10-22 09:34:31 +02001634 goto copy;
1635 skip_hdr:
1636 h1m->state = H1_MSG_HDR_L2_LWS;
1637 break;
1638
Christopher Faulet94b2c762019-05-24 15:28:57 +02001639 case H1_MSG_LAST_LF:
1640 if (type != HTX_BLK_EOH)
1641 goto error;
1642 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02001643 h1m->state = H1_MSG_LAST_LF;
1644 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001645 /* There is no "Connection:" header and
1646 * it the conn_mode must be
1647 * processed. So do it */
Christopher Fauleta110ecb2019-06-17 14:07:46 +02001648 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001649 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01001650 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001651 if (v.len) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02001652 if (!htx_hdr_to_h1(n, v, &tmp))
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001653 goto copy;
1654 }
Christopher Fauletada34b62019-05-24 16:36:43 +02001655 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001656 }
Willy Tarreau4710d202019-01-03 17:39:54 +01001657
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001658 if ((h1s->meth != HTTP_METH_CONNECT &&
1659 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
Christopher Faulet1f890dd2019-02-18 10:33:16 +01001660 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
1661 (h1s->status >= 200 && h1s->status != 204 && h1s->status != 304 &&
1662 h1s->meth != HTTP_METH_HEAD && !(h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) &&
1663 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
1664 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01001665 /* chunking needed but header not seen */
Christopher Fauletc2518a52019-06-25 21:41:02 +02001666 if (!chunk_memcat(&tmp, "transfer-encoding: chunked\r\n", 28))
Willy Tarreau4710d202019-01-03 17:39:54 +01001667 goto copy;
1668 h1m->flags |= H1_MF_CHNK;
1669 }
1670
Christopher Fauletc2518a52019-06-25 21:41:02 +02001671 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Faulet9768c262018-10-22 09:34:31 +02001672 goto copy;
1673
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001674 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
1675 /* a CONNECT request is sent to the server. Switch it to tunnel mode. */
1676 h1_set_req_tunnel_mode(h1s);
1677 }
1678 else if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) || h1s->status == 101) {
1679 /* a successfull reply to a CONNECT or a protocol switching is sent
1680 * to the client . Switch the response to tunnel mode. */
1681 h1_set_res_tunnel_mode(h1s);
1682 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001683 else if ((h1m->flags & H1_MF_RESP) &&
1684 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1685 h1m_init_res(&h1s->res);
1686 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02001687 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001688 }
Christopher Fauletb8fc3042019-07-01 16:17:30 +02001689 else if ((h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_HEAD)
1690 h1m->state = H1_MSG_DONE;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001691 else
1692 h1m->state = H1_MSG_DATA;
Christopher Faulet9768c262018-10-22 09:34:31 +02001693 break;
1694
Christopher Faulet94b2c762019-05-24 15:28:57 +02001695 case H1_MSG_DATA:
Christopher Fauletf8db73e2019-07-04 17:12:12 +02001696 case H1_MSG_TUNNEL:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001697 if (type == HTX_BLK_EOM) {
1698 /* Chunked message without explicit trailers */
1699 if (h1m->flags & H1_MF_CHNK) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02001700 if (!chunk_memcat(&tmp, "0\r\n\r\n", 5))
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001701 goto copy;
1702 }
1703 goto done;
1704 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001705 else if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet5433a0b2019-06-27 17:40:14 +02001706 /* If the message is not chunked, never
1707 * add the last chunk. */
1708 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Faulet94b2c762019-05-24 15:28:57 +02001709 goto copy;
Christopher Faulet94b2c762019-05-24 15:28:57 +02001710 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001711 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02001712 else if (type != HTX_BLK_DATA)
1713 goto error;
Christopher Faulet9768c262018-10-22 09:34:31 +02001714 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001715 v.len = vlen;
Christopher Fauletc2518a52019-06-25 21:41:02 +02001716 if (!htx_data_to_h1(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Faulet9768c262018-10-22 09:34:31 +02001717 goto copy;
1718 break;
1719
Christopher Faulet94b2c762019-05-24 15:28:57 +02001720 case H1_MSG_TRAILERS:
1721 if (type == HTX_BLK_EOM)
1722 goto done;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001723 else if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02001724 goto error;
1725 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02001726 h1m->state = H1_MSG_TRAILERS;
Christopher Faulet5433a0b2019-06-27 17:40:14 +02001727 /* If the message is not chunked, ignore
1728 * trailers. It may happen with H2 messages. */
1729 if (!(h1m->flags & H1_MF_CHNK))
1730 break;
1731
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001732 if (type == HTX_BLK_EOT) {
Christopher Fauletc2518a52019-06-25 21:41:02 +02001733 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Faulet32188212018-11-20 18:21:43 +01001734 goto copy;
Christopher Faulet32188212018-11-20 18:21:43 +01001735 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001736 else { // HTX_BLK_TLR
1737 n = htx_get_blk_name(chn_htx, blk);
1738 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletc2518a52019-06-25 21:41:02 +02001739 if (!htx_hdr_to_h1(n, v, &tmp))
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001740 goto copy;
1741 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001742 break;
1743
Christopher Faulet94b2c762019-05-24 15:28:57 +02001744 case H1_MSG_DONE:
1745 if (type != HTX_BLK_EOM)
1746 goto error;
1747 done:
1748 h1m->state = H1_MSG_DONE;
Christopher Fauletcd67bff2019-06-14 16:54:15 +02001749 if (h1s->h1c->flags & H1C_F_IN_BUSY) {
1750 h1s->h1c->flags &= ~H1C_F_IN_BUSY;
1751 tasklet_wakeup(h1s->h1c->wait_event.tasklet);
1752 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001753 break;
1754
Christopher Faulet9768c262018-10-22 09:34:31 +02001755 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02001756 error:
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02001757 /* Unexpected error during output processing */
1758 chn_htx->flags |= HTX_FL_PARSING_ERROR;
Christopher Fauleta2ea1582019-05-28 10:35:18 +02001759 h1s->flags |= errflag;
Christopher Fauletd87d3fa2019-06-26 15:16:28 +02001760 h1c->flags |= H1C_F_CS_ERROR;
Christopher Faulet9768c262018-10-22 09:34:31 +02001761 break;
1762 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02001763
1764 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01001765 total += vlen;
1766 count -= vlen;
1767 if (sz == vlen)
1768 blk = htx_remove_blk(chn_htx, blk);
1769 else {
1770 htx_cut_data_blk(chn_htx, blk, vlen);
1771 break;
1772 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001773 }
1774
Christopher Faulet9768c262018-10-22 09:34:31 +02001775 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01001776 /* when the output buffer is empty, tmp shares the same area so that we
1777 * only have to update pointers and lengths.
1778 */
Christopher Fauletc2518a52019-06-25 21:41:02 +02001779 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
1780 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001781 else
Christopher Fauletc2518a52019-06-25 21:41:02 +02001782 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001783
Willy Tarreau3815b222018-12-11 19:50:43 +01001784 htx_to_buf(chn_htx, buf);
1785 out:
Willy Tarreau45f2b892018-12-05 07:59:27 +01001786 if (!buf_room_for_htx_data(&h1c->obuf))
Christopher Faulet51dbc942018-09-13 09:05:15 +02001787 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001788 end:
1789 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001790}
1791
Christopher Faulet51dbc942018-09-13 09:05:15 +02001792/*********************************************************/
1793/* functions below are I/O callbacks from the connection */
1794/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001795static void h1_wake_stream_for_recv(struct h1s *h1s)
1796{
1797 if (h1s && h1s->recv_wait) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001798 h1s->recv_wait->events &= ~SUB_RETRY_RECV;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001799 tasklet_wakeup(h1s->recv_wait->tasklet);
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001800 h1s->recv_wait = NULL;
1801 }
1802}
1803static void h1_wake_stream_for_send(struct h1s *h1s)
1804{
1805 if (h1s && h1s->send_wait) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001806 h1s->send_wait->events &= ~SUB_RETRY_SEND;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001807 tasklet_wakeup(h1s->send_wait->tasklet);
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001808 h1s->send_wait = NULL;
1809 }
1810}
1811
Christopher Faulet51dbc942018-09-13 09:05:15 +02001812/*
1813 * Attempt to read data, and subscribe if none available
1814 */
1815static int h1_recv(struct h1c *h1c)
1816{
1817 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01001818 struct h1s *h1s = h1c->h1s;
Olivier Houchard75159a92018-12-03 18:46:09 +01001819 size_t ret = 0, max;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001820 int rcvd = 0;
1821
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001822 if (h1c->wait_event.events & SUB_RETRY_RECV)
Christopher Fauletc386a882018-12-04 16:06:28 +01001823 return (b_data(&h1c->ibuf));
Christopher Faulet51dbc942018-09-13 09:05:15 +02001824
Olivier Houchard92d093d2019-06-11 16:36:33 +02001825 if (!(conn->flags & CO_FL_ERROR) && h1c->flags & H1C_F_CS_WAIT_CONN) {
Willy Tarreaud58f27f2019-06-03 10:12:22 +02001826 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
1827 return 0;
1828 }
1829
Olivier Houchard75159a92018-12-03 18:46:09 +01001830 if (!h1_recv_allowed(h1c)) {
1831 rcvd = 1;
Christopher Faulet9768c262018-10-22 09:34:31 +02001832 goto end;
Olivier Houchard75159a92018-12-03 18:46:09 +01001833 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001834
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02001835 if (!h1_get_buf(h1c, &h1c->ibuf)) {
1836 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet9768c262018-10-22 09:34:31 +02001837 goto end;
1838 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02001839
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02001840 if (h1s && (h1s->flags & (H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA))) {
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02001841 if (!h1s_data_pending(h1s))
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02001842 h1_wake_stream_for_recv(h1s);
1843 rcvd = 1;
Christopher Faulet9768c262018-10-22 09:34:31 +02001844 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001845 }
1846
Olivier Houchard29a22bc2018-12-04 18:16:45 +01001847 /*
1848 * If we only have a small amount of data, realign it,
1849 * it's probably cheaper than doing 2 recv() calls.
1850 */
1851 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
1852 b_slow_realign(&h1c->ibuf, trash.area, 0);
1853
Willy Tarreau45f2b892018-12-05 07:59:27 +01001854 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001855 if (max) {
1856 h1c->flags &= ~H1C_F_IN_FULL;
Willy Tarreau78f548f2018-12-05 10:02:39 +01001857
Willy Tarreaue0f24ee2018-12-14 10:51:23 +01001858 b_realign_if_empty(&h1c->ibuf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01001859 if (!b_data(&h1c->ibuf)) {
1860 /* try to pre-align the buffer like the rxbufs will be
1861 * to optimize memory copies.
1862 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01001863 h1c->ibuf.head = sizeof(struct htx);
1864 }
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001865 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, 0);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001866 }
Christopher Faulet47365272018-10-31 17:40:50 +01001867 if (ret > 0) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02001868 rcvd = 1;
Christopher Fauletfeb11742018-11-29 15:12:34 +01001869 if (h1s && h1s->cs) {
Christopher Faulet37e36072018-12-04 15:54:12 +01001870 h1s->cs->flags |= (CS_FL_READ_PARTIAL|CS_FL_RCV_MORE);
Christopher Fauletfeb11742018-11-29 15:12:34 +01001871 if (h1s->csinfo.t_idle == -1)
1872 h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake;
1873 }
Christopher Faulet47365272018-10-31 17:40:50 +01001874 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001875
Christopher Fauletcf56b992018-12-11 16:12:31 +01001876 if (!h1_recv_allowed(h1c) || !buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet81d48432018-11-19 21:22:43 +01001877 rcvd = 1;
Christopher Fauletcf56b992018-12-11 16:12:31 +01001878 goto end;
1879 }
1880
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001881 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001882
Christopher Faulet9768c262018-10-22 09:34:31 +02001883 end:
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001884 if (ret > 0 || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn))
1885 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01001886
Willy Tarreauc493c9c2019-06-03 14:18:22 +02001887 if (conn_xprt_read0_pending(conn) && h1s) {
1888 h1s->flags |= H1S_F_REOS;
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02001889 rcvd = 1;
1890 }
1891
Christopher Faulet51dbc942018-09-13 09:05:15 +02001892 if (!b_data(&h1c->ibuf))
1893 h1_release_buf(h1c, &h1c->ibuf);
Willy Tarreau45f2b892018-12-05 07:59:27 +01001894 else if (!buf_room_for_htx_data(&h1c->ibuf))
Christopher Faulet51dbc942018-09-13 09:05:15 +02001895 h1c->flags |= H1C_F_IN_FULL;
1896 return rcvd;
1897}
1898
1899
1900/*
1901 * Try to send data if possible
1902 */
1903static int h1_send(struct h1c *h1c)
1904{
1905 struct connection *conn = h1c->conn;
1906 unsigned int flags = 0;
1907 size_t ret;
1908 int sent = 0;
1909
1910 if (conn->flags & CO_FL_ERROR)
1911 return 0;
1912
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02001913 if (h1c->flags & H1C_F_CS_WAIT_CONN) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001914 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001915 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02001916 return 0;
1917 }
1918
Christopher Faulet51dbc942018-09-13 09:05:15 +02001919 if (!b_data(&h1c->obuf))
1920 goto end;
1921
1922 if (h1c->flags & H1C_F_OUT_FULL)
1923 flags |= CO_SFL_MSG_MORE;
1924
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001925 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001926 if (ret > 0) {
1927 h1c->flags &= ~H1C_F_OUT_FULL;
1928 b_del(&h1c->obuf, ret);
1929 sent = 1;
1930 }
1931
Christopher Faulet145aa472018-12-06 10:56:20 +01001932 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
1933 /* error or output closed, nothing to send, clear the buffer to release it */
1934 b_reset(&h1c->obuf);
1935 }
1936
Christopher Faulet51dbc942018-09-13 09:05:15 +02001937 end:
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001938 if (!(h1c->flags & H1C_F_OUT_FULL))
1939 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01001940
Christopher Faulet51dbc942018-09-13 09:05:15 +02001941 /* We're done, no more to send */
1942 if (!b_data(&h1c->obuf)) {
1943 h1_release_buf(h1c, &h1c->obuf);
1944 if (h1c->flags & H1C_F_CS_SHUTW_NOW)
Christopher Faulet666a0c42019-01-08 11:12:04 +01001945 h1_shutw_conn(conn, CS_SHW_NORMAL);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001946 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001947 else if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001948 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001949
1950 return sent;
1951}
1952
Christopher Faulet51dbc942018-09-13 09:05:15 +02001953
1954/* callback called on any event by the connection handler.
1955 * It applies changes and returns zero, or < 0 if it wants immediate
1956 * destruction of the connection.
1957 */
1958static int h1_process(struct h1c * h1c)
1959{
1960 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01001961 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001962
Willy Tarreau3d2ee552018-12-19 14:12:10 +01001963 if (!conn->ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001964 return -1;
1965
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02001966 if (h1c->flags & H1C_F_CS_WAIT_CONN) {
Olivier Houchard690e0f02019-06-11 16:37:24 +02001967 if (!(conn->flags & (CO_FL_CONNECTED|CO_FL_ERROR)) ||
Olivier Houchard60630032019-06-13 17:37:00 +02001968 (!(conn->flags & CO_FL_ERROR) && (conn->flags & CO_FL_HANDSHAKE)))
Christopher Faulet539e0292018-11-19 10:40:09 +01001969 goto end;
1970 h1c->flags &= ~H1C_F_CS_WAIT_CONN;
Christopher Fauleta0883e62018-12-11 16:26:50 +01001971 h1_wake_stream_for_send(h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02001972 }
1973
Christopher Fauletfeb11742018-11-29 15:12:34 +01001974 if (!h1s) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001975 if (h1c->flags & H1C_F_CS_ERROR ||
Olivier Houchard32d75ed2019-01-14 17:27:23 +01001976 conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH) ||
Christopher Faulet539e0292018-11-19 10:40:09 +01001977 conn_xprt_read0_pending(conn))
1978 goto release;
Christopher Faulet666a0c42019-01-08 11:12:04 +01001979 if (!conn_is_back(conn) && !(h1c->flags & (H1C_F_CS_SHUTW_NOW|H1C_F_CS_SHUTDOWN))) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01001980 if (!h1s_create(h1c, NULL, NULL))
Christopher Faulet539e0292018-11-19 10:40:09 +01001981 goto release;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001982 }
Christopher Faulet1a7ad7a2018-12-04 16:10:44 +01001983 else
Olivier Houcharde7284782018-12-06 18:54:54 +01001984 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01001985 h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001986 }
1987
Christopher Fauletfeb11742018-11-29 15:12:34 +01001988 if (b_data(&h1c->ibuf) && h1s->csinfo.t_idle == -1)
1989 h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake;
1990
Willy Tarreauc493c9c2019-06-03 14:18:22 +02001991 if (conn_xprt_read0_pending(conn))
1992 h1s->flags |= H1S_F_REOS;
1993
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02001994 if (!h1s_data_pending(h1s) && h1s && h1s->cs && h1s->cs->data_cb->wake &&
Willy Tarreauc493c9c2019-06-03 14:18:22 +02001995 (h1s->flags & H1S_F_REOS || h1c->flags & H1C_F_CS_ERROR ||
Olivier Houchard32d75ed2019-01-14 17:27:23 +01001996 conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH))) {
Olivier Houchard75159a92018-12-03 18:46:09 +01001997 if (h1c->flags & H1C_F_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc493c9c2019-06-03 14:18:22 +02001998 h1s->cs->flags |= CS_FL_ERROR;
Olivier Houchard75159a92018-12-03 18:46:09 +01001999 h1s->cs->data_cb->wake(h1s->cs);
2000 }
Christopher Faulet47365272018-10-31 17:40:50 +01002001 end:
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002002 if (h1c->task) {
2003 h1c->task->expire = TICK_ETERNITY;
2004 if (b_data(&h1c->obuf)) {
Christopher Faulet666a0c42019-01-08 11:12:04 +01002005 h1c->task->expire = tick_add(now_ms, ((h1c->flags & (H1C_F_CS_SHUTW_NOW|H1C_F_CS_SHUTDOWN))
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002006 ? h1c->shut_timeout
2007 : h1c->timeout));
2008 task_queue(h1c->task);
2009 }
2010 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002011 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01002012
2013 release:
Christopher Faulet73c12072019-04-08 11:23:22 +02002014 h1_release(h1c);
Christopher Faulet539e0292018-11-19 10:40:09 +01002015 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002016}
2017
2018static struct task *h1_io_cb(struct task *t, void *ctx, unsigned short status)
2019{
2020 struct h1c *h1c = ctx;
2021 int ret = 0;
2022
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002023 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002024 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002025 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002026 ret |= h1_recv(h1c);
Christopher Faulet81d48432018-11-19 21:22:43 +01002027 if (ret || !h1c->h1s)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002028 h1_process(h1c);
2029 return NULL;
2030}
2031
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002032static void h1_reset(struct connection *conn)
2033{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002034 struct h1c *h1c = conn->ctx;
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002035
2036 /* Reset the flags, and let the mux know we're waiting for a connection */
2037 h1c->flags = H1C_F_CS_WAIT_CONN;
2038}
Christopher Faulet51dbc942018-09-13 09:05:15 +02002039
2040static int h1_wake(struct connection *conn)
2041{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002042 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01002043 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002044
Christopher Faulet539e0292018-11-19 10:40:09 +01002045 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01002046 ret = h1_process(h1c);
2047 if (ret == 0) {
2048 struct h1s *h1s = h1c->h1s;
2049
2050 if (h1s && h1s->cs && h1s->cs->data_cb->wake)
2051 ret = h1s->cs->data_cb->wake(h1s->cs);
2052 }
2053 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002054}
2055
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002056/* Connection timeout management. The principle is that if there's no receipt
2057 * nor sending for a certain amount of time, the connection is closed.
2058 */
2059static struct task *h1_timeout_task(struct task *t, void *context, unsigned short state)
2060{
2061 struct h1c *h1c = context;
2062 int expired = tick_is_expired(t->expire, now_ms);
2063
2064 if (!expired && h1c)
2065 return t;
2066
Olivier Houchard3f795f72019-04-17 22:51:06 +02002067 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002068
2069 if (!h1c) {
2070 /* resources were already deleted */
2071 return NULL;
2072 }
2073
2074 h1c->task = NULL;
2075 /* If a stream is still attached to the mux, just set an error and wait
2076 * for the stream's timeout. Otherwise, release the mux. This is only ok
2077 * because same timeouts are used.
2078 */
2079 if (h1c->h1s && h1c->h1s->cs)
2080 h1c->flags |= H1C_F_CS_ERROR;
2081 else
Christopher Faulet73c12072019-04-08 11:23:22 +02002082 h1_release(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002083 return NULL;
2084}
2085
Christopher Faulet51dbc942018-09-13 09:05:15 +02002086/*******************************************/
2087/* functions below are used by the streams */
2088/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02002089
Christopher Faulet51dbc942018-09-13 09:05:15 +02002090/*
2091 * Attach a new stream to a connection
2092 * (Used for outgoing connections)
2093 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01002094static struct conn_stream *h1_attach(struct connection *conn, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002095{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002096 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002097 struct conn_stream *cs = NULL;
2098 struct h1s *h1s;
2099
2100 if (h1c->flags & H1C_F_CS_ERROR)
2101 goto end;
2102
2103 cs = cs_new(h1c->conn);
2104 if (!cs)
2105 goto end;
2106
Olivier Houchardf502aca2018-12-14 19:42:40 +01002107 h1s = h1s_create(h1c, cs, sess);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002108 if (h1s == NULL)
2109 goto end;
2110
2111 return cs;
2112 end:
2113 cs_free(cs);
2114 return NULL;
2115}
2116
2117/* Retrieves a valid conn_stream from this connection, or returns NULL. For
2118 * this mux, it's easy as we can only store a single conn_stream.
2119 */
2120static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
2121{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002122 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002123 struct h1s *h1s = h1c->h1s;
2124
2125 if (h1s)
2126 return h1s->cs;
2127
2128 return NULL;
2129}
2130
Christopher Faulet73c12072019-04-08 11:23:22 +02002131static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002132{
Christopher Faulet73c12072019-04-08 11:23:22 +02002133 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002134
Christopher Faulet39a96ee2019-04-08 10:52:21 +02002135 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02002136 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002137}
2138
2139/*
2140 * Detach the stream from the connection and possibly release the connection.
2141 */
2142static void h1_detach(struct conn_stream *cs)
2143{
2144 struct h1s *h1s = cs->ctx;
2145 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01002146 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01002147 int has_keepalive;
2148 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002149
2150 cs->ctx = NULL;
2151 if (!h1s)
2152 return;
2153
Olivier Houchardf502aca2018-12-14 19:42:40 +01002154 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002155 h1c = h1s->h1c;
2156 h1s->cs = NULL;
2157
Olivier Houchard8a786902018-12-15 16:05:40 +01002158 has_keepalive = h1s->flags & H1S_F_WANT_KAL;
2159 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
2160 h1s_destroy(h1s);
2161
2162 if (conn_is_back(h1c->conn) && has_keepalive &&
Olivier Houchard44d59142018-12-13 18:46:22 +01002163 !(h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Faulet9400a392018-11-23 23:10:39 +01002164 /* Never ever allow to reuse a connection from a non-reuse backend */
Olivier Houchard44d59142018-12-13 18:46:22 +01002165 if ((h1c->px->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
Christopher Faulet9400a392018-11-23 23:10:39 +01002166 h1c->conn->flags |= CO_FL_PRIVATE;
2167
Olivier Houchard44d59142018-12-13 18:46:22 +01002168 if (!(h1c->conn->owner)) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01002169 h1c->conn->owner = sess;
Olivier Houchard351411f2018-12-27 17:20:54 +01002170 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
2171 h1c->conn->owner = NULL;
2172 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn))
2173 /* The server doesn't want it, let's kill the connection right away */
2174 h1c->conn->mux->destroy(h1c->conn);
2175 else
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002176 tasklet_wakeup(h1c->wait_event.tasklet);
Olivier Houchard351411f2018-12-27 17:20:54 +01002177 return;
2178
2179 }
Olivier Houchard44d59142018-12-13 18:46:22 +01002180 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002181 if (h1c->conn->owner == sess) {
2182 int ret = session_check_idle_conn(sess, h1c->conn);
2183 if (ret == -1)
2184 /* The connection got destroyed, let's leave */
2185 return;
2186 else if (ret == 1) {
2187 /* The connection was added to the server list,
2188 * wake the task so we can subscribe to events
2189 */
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002190 tasklet_wakeup(h1c->wait_event.tasklet);
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002191 return;
2192 }
2193 }
Christopher Faulet9400a392018-11-23 23:10:39 +01002194 /* we're in keep-alive with an idle connection, monitor it if not already done */
Olivier Houchard44d59142018-12-13 18:46:22 +01002195 if (LIST_ISEMPTY(&h1c->conn->list)) {
Christopher Faulet9400a392018-11-23 23:10:39 +01002196 struct server *srv = objt_server(h1c->conn->target);
2197
2198 if (srv) {
2199 if (h1c->conn->flags & CO_FL_PRIVATE)
2200 LIST_ADD(&srv->priv_conns[tid], &h1c->conn->list);
Olivier Houchard8a786902018-12-15 16:05:40 +01002201 else if (is_not_first)
Christopher Faulet9400a392018-11-23 23:10:39 +01002202 LIST_ADD(&srv->safe_conns[tid], &h1c->conn->list);
2203 else
2204 LIST_ADD(&srv->idle_conns[tid], &h1c->conn->list);
2205 }
2206 }
2207 }
2208
Christopher Faulet3ac0f432019-06-28 17:41:42 +02002209 /* We don't want to close right now unless the connection is in error or shut down for writes */
2210 if ((h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTW_NOW|H1C_F_CS_SHUTDOWN|H1C_F_UPG_H2C)) ||
2211 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) || !h1c->conn->owner)
Christopher Faulet73c12072019-04-08 11:23:22 +02002212 h1_release(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002213 else {
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002214 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002215 if (h1c->task) {
2216 h1c->task->expire = TICK_ETERNITY;
2217 if (b_data(&h1c->obuf)) {
Christopher Faulet666a0c42019-01-08 11:12:04 +01002218 h1c->task->expire = tick_add(now_ms, ((h1c->flags & (H1C_F_CS_SHUTW_NOW|H1C_F_CS_SHUTDOWN))
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002219 ? h1c->shut_timeout
2220 : h1c->timeout));
2221 task_queue(h1c->task);
2222 }
2223 }
2224 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002225}
2226
2227
2228static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
2229{
2230 struct h1s *h1s = cs->ctx;
Christopher Faulet7f366362019-04-08 10:51:20 +02002231 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002232
2233 if (!h1s)
2234 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02002235 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002236
Christopher Faulet7f366362019-04-08 10:51:20 +02002237 if ((cs->flags & CS_FL_KILL_CONN) || (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)))
2238 goto do_shutr;
2239
Christopher Faulet0ef372a2019-04-08 10:57:20 +02002240 if ((h1c->flags & H1C_F_UPG_H2C) || (h1s->flags & H1S_F_WANT_KAL))
Christopher Fauletf2824e62018-10-01 12:12:37 +02002241 return;
2242
Christopher Faulet7f366362019-04-08 10:51:20 +02002243 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002244 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
2245 if (cs->flags & CS_FL_SHR)
2246 return;
2247 if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002248 cs->conn->xprt->shutr(cs->conn, cs->conn->xprt_ctx,
2249 (mode == CS_SHR_DRAIN));
Christopher Faulet666a0c42019-01-08 11:12:04 +01002250 if ((cs->conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH)) == (CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH))
Christopher Faulet7f366362019-04-08 10:51:20 +02002251 h1c->flags = (h1c->flags & ~H1C_F_CS_SHUTW_NOW) | H1C_F_CS_SHUTDOWN;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002252}
2253
2254static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
2255{
2256 struct h1s *h1s = cs->ctx;
2257 struct h1c *h1c;
2258
2259 if (!h1s)
2260 return;
2261 h1c = h1s->h1c;
2262
Christopher Faulet7f366362019-04-08 10:51:20 +02002263 if ((cs->flags & CS_FL_KILL_CONN) || (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)))
2264 goto do_shutw;
Olivier Houchardd2e88c72018-12-19 15:55:23 +01002265
Christopher Faulet0ef372a2019-04-08 10:57:20 +02002266 if ((h1c->flags & H1C_F_UPG_H2C) ||
2267 ((h1s->flags & H1S_F_WANT_KAL) && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE))
Christopher Fauletf2824e62018-10-01 12:12:37 +02002268 return;
2269
Christopher Faulet7f366362019-04-08 10:51:20 +02002270 do_shutw:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002271 h1c->flags |= H1C_F_CS_SHUTW_NOW;
2272 if ((cs->flags & CS_FL_SHW) || b_data(&h1c->obuf))
2273 return;
2274
Christopher Faulet666a0c42019-01-08 11:12:04 +01002275 h1_shutw_conn(cs->conn, mode);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002276}
2277
Christopher Faulet666a0c42019-01-08 11:12:04 +01002278static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002279{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002280 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002281
Christopher Faulet666a0c42019-01-08 11:12:04 +01002282 conn_xprt_shutw(conn);
2283 conn_sock_shutw(conn, (mode == CS_SHW_NORMAL));
2284 if ((conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH)) == (CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH))
2285 h1c->flags = (h1c->flags & ~H1C_F_CS_SHUTW_NOW) | H1C_F_CS_SHUTDOWN;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002286}
2287
2288/* Called from the upper layer, to unsubscribe to events */
2289static int h1_unsubscribe(struct conn_stream *cs, int event_type, void *param)
2290{
2291 struct wait_event *sw;
2292 struct h1s *h1s = cs->ctx;
2293
2294 if (!h1s)
2295 return 0;
2296
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002297 if (event_type & SUB_RETRY_RECV) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002298 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002299 BUG_ON(h1s->recv_wait != sw);
2300 sw->events &= ~SUB_RETRY_RECV;
2301 h1s->recv_wait = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002302 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002303 if (event_type & SUB_RETRY_SEND) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002304 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002305 BUG_ON(h1s->send_wait != sw);
2306 sw->events &= ~SUB_RETRY_SEND;
2307 h1s->send_wait = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002308 }
2309 return 0;
2310}
2311
2312/* Called from the upper layer, to subscribe to events, such as being able to send */
2313static int h1_subscribe(struct conn_stream *cs, int event_type, void *param)
2314{
2315 struct wait_event *sw;
2316 struct h1s *h1s = cs->ctx;
2317
2318 if (!h1s)
2319 return -1;
2320
2321 switch (event_type) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002322 case SUB_RETRY_RECV:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002323 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002324 BUG_ON(h1s->recv_wait != NULL || (sw->events & SUB_RETRY_RECV));
2325 sw->events |= SUB_RETRY_RECV;
2326 h1s->recv_wait = sw;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002327 return 0;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002328 case SUB_RETRY_SEND:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002329 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002330 BUG_ON(h1s->send_wait != NULL || (sw->events & SUB_RETRY_SEND));
2331 sw->events |= SUB_RETRY_SEND;
2332 h1s->send_wait = sw;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002333 return 0;
2334 default:
2335 break;
2336 }
2337 return -1;
2338}
2339
2340/* Called from the upper layer, to receive data */
2341static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
2342{
2343 struct h1s *h1s = cs->ctx;
Christopher Faulet539e0292018-11-19 10:40:09 +01002344 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002345 size_t ret = 0;
2346
Christopher Faulet539e0292018-11-19 10:40:09 +01002347 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet30db3d72019-05-17 15:35:33 +02002348 ret = h1_process_input(h1c, buf, count);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002349
Christopher Faulete18777b2019-04-16 16:46:36 +02002350 if (flags & CO_RFL_BUF_FLUSH) {
2351 struct h1m *h1m = (!conn_is_back(cs->conn) ? &h1s->req : &h1s->res);
2352
2353 if (h1m->state != H1_MSG_TUNNEL || (h1m->state == H1_MSG_DATA && h1m->curr_len))
2354 h1s->flags |= H1S_F_BUF_FLUSH;
2355 }
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002356 else if (ret > 0 || (h1s->flags & H1S_F_SPLICED_DATA)) {
2357 h1s->flags &= ~H1S_F_SPLICED_DATA;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002358 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002359 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002360 }
2361 return ret;
2362}
2363
2364
2365/* Called from the upper layer, to send data */
2366static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
2367{
2368 struct h1s *h1s = cs->ctx;
2369 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002370 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002371
2372 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002373 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002374
2375 h1c = h1s->h1c;
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002376 if (h1c->flags & H1C_F_CS_WAIT_CONN)
2377 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002378
Christopher Fauletc31872f2019-06-04 22:09:36 +02002379 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002380 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002381
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002382 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
2383 ret = h1_process_output(h1c, buf, count);
2384 if (!ret)
2385 break;
2386 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02002387 count -= ret;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002388 if (!h1_send(h1c))
2389 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002390 }
Christopher Fauletf96c3222018-11-20 18:38:01 +01002391
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002392 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002393}
2394
Willy Tarreaue5733232019-05-22 19:24:06 +02002395#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02002396/* Send and get, using splicing */
2397static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
2398{
2399 struct h1s *h1s = cs->ctx;
2400 struct h1m *h1m = (!conn_is_back(cs->conn) ? &h1s->req : &h1s->res);
2401 int ret = 0;
2402
Christopher Faulet1146f972019-05-29 14:35:24 +02002403 if (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL) {
Christopher Faulete18777b2019-04-16 16:46:36 +02002404 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
Christopher Faulet1146f972019-05-29 14:35:24 +02002405 if (!(h1s->h1c->wait_event.events & SUB_RETRY_RECV))
2406 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_RECV, &h1s->h1c->wait_event);
Christopher Faulete18777b2019-04-16 16:46:36 +02002407 goto end;
2408 }
2409
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002410 if (h1s_data_pending(h1s)) {
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002411 h1s->flags |= H1S_F_BUF_FLUSH;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002412 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002413 }
2414
2415 h1s->flags &= ~H1S_F_BUF_FLUSH;
2416 h1s->flags |= H1S_F_SPLICED_DATA;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002417 if (h1m->state == H1_MSG_DATA && count > h1m->curr_len)
2418 count = h1m->curr_len;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002419 ret = cs->conn->xprt->rcv_pipe(cs->conn, cs->conn->xprt_ctx, pipe, count);
Christopher Faulet1146f972019-05-29 14:35:24 +02002420 if (h1m->state == H1_MSG_DATA && ret >= 0) {
Christopher Faulet1be55f92018-10-02 15:59:23 +02002421 h1m->curr_len -= ret;
Christopher Faulete18777b2019-04-16 16:46:36 +02002422 if (!h1m->curr_len)
2423 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
2424 }
2425
Christopher Faulet1be55f92018-10-02 15:59:23 +02002426 end:
Christopher Faulet038ad812019-04-17 11:03:22 +02002427 if (conn_xprt_read0_pending(cs->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002428 h1s->flags |= H1S_F_REOS;
Christopher Faulet038ad812019-04-17 11:03:22 +02002429 if (!pipe->data)
2430 cs->flags |= CS_FL_EOS;
2431 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002432 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002433}
2434
2435static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
2436{
2437 struct h1s *h1s = cs->ctx;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002438 int ret = 0;
2439
2440 if (b_data(&h1s->h1c->obuf))
2441 goto end;
2442
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002443 ret = cs->conn->xprt->snd_pipe(cs->conn, cs->conn->xprt_ctx, pipe);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002444 end:
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002445 if (pipe->data) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002446 if (!(h1s->h1c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002447 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_SEND, &h1s->h1c->wait_event);
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002448 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002449 return ret;
2450}
2451#endif
2452
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002453/* for debugging with CLI's "show fd" command */
2454static void h1_show_fd(struct buffer *msg, struct connection *conn)
2455{
2456 struct h1c *h1c = conn->ctx;
2457 struct h1s *h1s = h1c->h1s;
2458
Christopher Fauletf376a312019-01-04 15:16:06 +01002459 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
2460 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002461 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
2462 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
2463 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
2464 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
2465
2466 if (h1s) {
2467 char *method;
2468
2469 if (h1s->meth < HTTP_METH_OTHER)
2470 method = http_known_methods[h1s->meth].ptr;
2471 else
2472 method = "UNKNOWN";
2473 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
2474 " .meth=%s status=%d",
2475 h1s, h1s->flags,
2476 h1m_state_str(h1s->req.state),
2477 h1m_state_str(h1s->res.state), method, h1s->status);
2478 if (h1s->cs)
2479 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
2480 h1s->cs->flags, h1s->cs->data);
2481 }
2482}
2483
Christopher Faulet51dbc942018-09-13 09:05:15 +02002484/****************************************/
2485/* MUX initialization and instanciation */
2486/****************************************/
2487
2488/* The mux operations */
Willy Tarreauf77a1582019-01-10 10:00:08 +01002489static const struct mux_ops mux_h1_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002490 .init = h1_init,
2491 .wake = h1_wake,
2492 .attach = h1_attach,
2493 .get_first_cs = h1_get_first_cs,
Christopher Fauletfeb11742018-11-29 15:12:34 +01002494 .get_cs_info = h1_get_cs_info,
Christopher Faulet51dbc942018-09-13 09:05:15 +02002495 .detach = h1_detach,
2496 .destroy = h1_destroy,
2497 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01002498 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02002499 .rcv_buf = h1_rcv_buf,
2500 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02002501#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02002502 .rcv_pipe = h1_rcv_pipe,
2503 .snd_pipe = h1_snd_pipe,
2504#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02002505 .subscribe = h1_subscribe,
2506 .unsubscribe = h1_unsubscribe,
2507 .shutr = h1_shutr,
2508 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002509 .show_fd = h1_show_fd,
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002510 .reset = h1_reset,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02002511 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02002512 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02002513};
2514
2515
2516/* this mux registers default HTX proto */
2517static struct mux_proto_list mux_proto_htx =
2518{ .token = IST(""), .mode = PROTO_MODE_HTX, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
2519
Willy Tarreau0108d902018-11-25 19:14:37 +01002520INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_htx);
2521
Christopher Faulet51dbc942018-09-13 09:05:15 +02002522/*
2523 * Local variables:
2524 * c-indent-level: 8
2525 * c-basic-offset: 8
2526 * End:
2527 */