blob: 947e1930c83035b57e2be801ddd5dc69ea738e9a [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 */
Christopher Faulet539e0292018-11-19 10:40:09 +010061/* 0x00000008 unused */
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_EOD 0x00000400 /* Set during input process to know the last empty chunk was processed */
70#define H1S_F_HAVE_I_TLR 0x00000800 /* Set during input process to know the trailers were processed */
71#define H1S_F_HAVE_O_EOD 0x00001000 /* Set during output process to know the last empty chunk was processed */
72#define H1S_F_HAVE_O_TLR 0x00002000 /* Set during output process to know the trailers were processed */
Christopher Faulet51dbc942018-09-13 09:05:15 +020073
74/* H1 connection descriptor */
Christopher Faulet51dbc942018-09-13 09:05:15 +020075struct h1c {
76 struct connection *conn;
77 struct proxy *px;
78 uint32_t flags; /* Connection flags: H1C_F_* */
79
80 struct buffer ibuf; /* Input buffer to store data before parsing */
81 struct buffer obuf; /* Output buffer to store data after reformatting */
82
83 struct buffer_wait buf_wait; /* Wait list for buffer allocation */
84 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
85
86 struct h1s *h1s; /* H1 stream descriptor */
Christopher Fauletb8093cf2019-01-03 16:27:28 +010087 struct task *task; /* timeout management task */
88 int timeout; /* idle timeout duration in ticks */
89 int shut_timeout; /* idle timeout duration in ticks after stream shutdown */
Christopher Faulet51dbc942018-09-13 09:05:15 +020090};
91
92/* H1 stream descriptor */
93struct h1s {
94 struct h1c *h1c;
95 struct conn_stream *cs;
Christopher Fauletfeb11742018-11-29 15:12:34 +010096 struct cs_info csinfo; /* CS info, only used for client connections */
97 uint32_t flags; /* Connection flags: H1S_F_* */
Christopher Faulet51dbc942018-09-13 09:05:15 +020098
Christopher Faulet51dbc942018-09-13 09:05:15 +020099 struct wait_event *recv_wait; /* Address of the wait_event the conn_stream associated is waiting on */
100 struct wait_event *send_wait; /* Address of the wait_event the conn_stream associated is waiting on */
Christopher Faulet129817b2018-09-20 16:14:40 +0200101
Olivier Houchardf502aca2018-12-14 19:42:40 +0100102 struct session *sess; /* Associated session */
Christopher Faulet129817b2018-09-20 16:14:40 +0200103 struct h1m req;
104 struct h1m res;
105
106 enum http_meth_t meth; /* HTTP resquest method */
107 uint16_t status; /* HTTP response status */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200108};
109
110/* the h1c and h1s pools */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100111DECLARE_STATIC_POOL(pool_head_h1c, "h1c", sizeof(struct h1c));
112DECLARE_STATIC_POOL(pool_head_h1s, "h1s", sizeof(struct h1s));
Christopher Faulet51dbc942018-09-13 09:05:15 +0200113
Christopher Faulet51dbc942018-09-13 09:05:15 +0200114static int h1_recv(struct h1c *h1c);
115static int h1_send(struct h1c *h1c);
116static int h1_process(struct h1c *h1c);
117static struct task *h1_io_cb(struct task *t, void *ctx, unsigned short state);
Christopher Faulet666a0c42019-01-08 11:12:04 +0100118static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100119static struct task *h1_timeout_task(struct task *t, void *context, unsigned short state);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200120
121/*****************************************************/
122/* functions below are for dynamic buffer management */
123/*****************************************************/
124/*
125 * Indicates whether or not the we may call the h1_recv() function to
126 * attempt to receive data into the buffer and/or parse pending data. The
127 * condition is a bit complex due to some API limits for now. The rules are the
128 * following :
129 * - if an error or a shutdown was detected on the connection and the buffer
130 * is empty, we must not attempt to receive
131 * - if the input buffer failed to be allocated, we must not try to receive
132 * and we know there is nothing pending
133 * - if no flag indicates a blocking condition, we may attempt to receive,
134 * regardless of whether the input buffer is full or not, so that only de
135 * receiving part decides whether or not to block. This is needed because
136 * the connection API indeed prevents us from re-enabling receipt that is
137 * already enabled in a polled state, so we must always immediately stop as
138 * soon as the mux can't proceed so as never to hit an end of read with data
139 * pending in the buffers.
140 * - otherwise must may not attempt to receive
141 */
142static inline int h1_recv_allowed(const struct h1c *h1c)
143{
Christopher Faulet666a0c42019-01-08 11:12:04 +0100144 if (b_data(&h1c->ibuf) == 0 && (h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTDOWN)))
Christopher Faulet51dbc942018-09-13 09:05:15 +0200145 return 0;
146
Christopher Fauletcf56b992018-12-11 16:12:31 +0100147 if (h1c->conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(h1c->conn))
148 return 0;
149
Christopher Fauletcb55f482018-12-10 11:56:47 +0100150 if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL|H1C_F_IN_BUSY)))
Christopher Faulet51dbc942018-09-13 09:05:15 +0200151 return 1;
152
153 return 0;
154}
155
156/*
157 * Tries to grab a buffer and to re-enables processing on mux <target>. The h1
158 * flags are used to figure what buffer was requested. It returns 1 if the
159 * allocation succeeds, in which case the connection is woken up, or 0 if it's
160 * impossible to wake up and we prefer to be woken up later.
161 */
162static int h1_buf_available(void *target)
163{
164 struct h1c *h1c = target;
165
166 if ((h1c->flags & H1C_F_IN_ALLOC) && b_alloc_margin(&h1c->ibuf, 0)) {
167 h1c->flags &= ~H1C_F_IN_ALLOC;
168 if (h1_recv_allowed(h1c))
169 tasklet_wakeup(h1c->wait_event.task);
170 return 1;
171 }
172
173 if ((h1c->flags & H1C_F_OUT_ALLOC) && b_alloc_margin(&h1c->obuf, 0)) {
174 h1c->flags &= ~H1C_F_OUT_ALLOC;
175 tasklet_wakeup(h1c->wait_event.task);
176 return 1;
177 }
178
Christopher Faulet51dbc942018-09-13 09:05:15 +0200179 return 0;
180}
181
182/*
183 * Allocate a buffer. If if fails, it adds the mux in buffer wait queue.
184 */
185static inline struct buffer *h1_get_buf(struct h1c *h1c, struct buffer *bptr)
186{
187 struct buffer *buf = NULL;
188
189 if (likely(LIST_ISEMPTY(&h1c->buf_wait.list)) &&
190 unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) {
191 h1c->buf_wait.target = h1c;
192 h1c->buf_wait.wakeup_cb = h1_buf_available;
193 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
194 LIST_ADDQ(&buffer_wq, &h1c->buf_wait.list);
195 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
196 __conn_xprt_stop_recv(h1c->conn);
197 }
198 return buf;
199}
200
201/*
202 * Release a buffer, if any, and try to wake up entities waiting in the buffer
203 * wait queue.
204 */
205static inline void h1_release_buf(struct h1c *h1c, struct buffer *bptr)
206{
207 if (bptr->size) {
208 b_free(bptr);
209 offer_buffers(h1c->buf_wait.target, tasks_run_queue);
210 }
211}
212
Willy Tarreau00f18a32019-01-26 12:19:01 +0100213/* returns the number of streams in use on a connection to figure if it's
214 * idle or not. We can't have an h1s without a CS so checking h1s is fine,
215 * as the caller will want to know if it was the last one after a detach().
216 */
217static int h1_used_streams(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200218{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100219 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200220
Willy Tarreau00f18a32019-01-26 12:19:01 +0100221 return h1c->h1s ? 1 : 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200222}
223
Willy Tarreau00f18a32019-01-26 12:19:01 +0100224/* returns the number of streams still available on a connection */
225static int h1_avail_streams(struct connection *conn)
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100226{
Willy Tarreau00f18a32019-01-26 12:19:01 +0100227 return 1 - h1_used_streams(conn);
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100228}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200229
Willy Tarreau00f18a32019-01-26 12:19:01 +0100230
Christopher Faulet51dbc942018-09-13 09:05:15 +0200231/*****************************************************************/
232/* functions below are dedicated to the mux setup and management */
233/*****************************************************************/
Christopher Faulet47365272018-10-31 17:40:50 +0100234static struct conn_stream *h1s_new_cs(struct h1s *h1s)
235{
236 struct conn_stream *cs;
237
238 cs = cs_new(h1s->h1c->conn);
239 if (!cs)
240 goto err;
241 h1s->cs = cs;
242 cs->ctx = h1s;
243
244 if (h1s->flags & H1S_F_NOT_FIRST)
245 cs->flags |= CS_FL_NOT_FIRST;
246
247 if (stream_create_from_cs(cs) < 0)
248 goto err;
249 return cs;
250
251 err:
252 cs_free(cs);
253 h1s->cs = NULL;
254 return NULL;
255}
256
Olivier Houchardf502aca2018-12-14 19:42:40 +0100257static struct h1s *h1s_create(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200258{
259 struct h1s *h1s;
260
261 h1s = pool_alloc(pool_head_h1s);
262 if (!h1s)
Christopher Faulet47365272018-10-31 17:40:50 +0100263 goto fail;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200264
265 h1s->h1c = h1c;
266 h1c->h1s = h1s;
267
Olivier Houchardf502aca2018-12-14 19:42:40 +0100268 h1s->sess = sess;
269
Christopher Faulet51dbc942018-09-13 09:05:15 +0200270 h1s->cs = NULL;
Christopher Fauletb992af02019-03-28 15:42:24 +0100271 h1s->flags = H1S_F_WANT_KAL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200272
273 h1s->recv_wait = NULL;
274 h1s->send_wait = NULL;
Christopher Faulet129817b2018-09-20 16:14:40 +0200275
276 h1m_init_req(&h1s->req);
Christopher Fauletb992af02019-03-28 15:42:24 +0100277 h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +0200278
Christopher Faulet129817b2018-09-20 16:14:40 +0200279 h1m_init_res(&h1s->res);
Christopher Fauletb992af02019-03-28 15:42:24 +0100280 h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet129817b2018-09-20 16:14:40 +0200281
282 h1s->status = 0;
283 h1s->meth = HTTP_METH_OTHER;
284
Christopher Faulet47365272018-10-31 17:40:50 +0100285 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
286 h1s->flags |= H1S_F_NOT_FIRST;
287 h1c->flags &= ~H1C_F_WAIT_NEXT_REQ;
288
Christopher Faulet129817b2018-09-20 16:14:40 +0200289 if (!conn_is_back(h1c->conn)) {
290 if (h1c->px->options2 & PR_O2_REQBUG_OK)
291 h1s->req.err_pos = -1;
Christopher Faulete9b70722019-04-08 10:46:02 +0200292
293 /* For frontend connections we should always have a session */
294 if (!sess)
295 sess = h1c->conn->owner;
296
297 h1s->csinfo.create_date = sess->accept_date;
298 h1s->csinfo.tv_create = sess->tv_accept;
299 h1s->csinfo.t_handshake = sess->t_handshake;
300 h1s->csinfo.t_idle = -1;
Christopher Faulet129817b2018-09-20 16:14:40 +0200301 }
302 else {
303 if (h1c->px->options2 & PR_O2_RSPBUG_OK)
304 h1s->res.err_pos = -1;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200305
Christopher Fauletfeb11742018-11-29 15:12:34 +0100306 h1s->csinfo.create_date = date;
307 h1s->csinfo.tv_create = now;
308 h1s->csinfo.t_handshake = 0;
309 h1s->csinfo.t_idle = -1;
Christopher Faulete9b70722019-04-08 10:46:02 +0200310 }
Christopher Fauletfeb11742018-11-29 15:12:34 +0100311
Christopher Faulete9b70722019-04-08 10:46:02 +0200312 /* If a conn_stream already exists, attach it to this H1S. Otherwise we
313 * create a new one.
314 */
315 if (cs) {
Christopher Fauletf2824e62018-10-01 12:12:37 +0200316 cs->ctx = h1s;
317 h1s->cs = cs;
318 }
Christopher Faulet47365272018-10-31 17:40:50 +0100319 else {
320 cs = h1s_new_cs(h1s);
321 if (!cs)
322 goto fail;
323 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200324 return h1s;
Christopher Faulet47365272018-10-31 17:40:50 +0100325
326 fail:
327 pool_free(pool_head_h1s, h1s);
328 return NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200329}
330
331static void h1s_destroy(struct h1s *h1s)
332{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200333 if (h1s) {
334 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200335
Christopher Fauletf2824e62018-10-01 12:12:37 +0200336 h1c->h1s = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200337
Christopher Fauletf2824e62018-10-01 12:12:37 +0200338 if (h1s->recv_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100339 h1s->recv_wait->events &= ~SUB_RETRY_RECV;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200340 if (h1s->send_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100341 h1s->send_wait->events &= ~SUB_RETRY_SEND;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200342
Christopher Fauletcb55f482018-12-10 11:56:47 +0100343 h1c->flags &= ~H1C_F_IN_BUSY;
Christopher Faulet47365272018-10-31 17:40:50 +0100344 h1c->flags |= H1C_F_WAIT_NEXT_REQ;
345 if (h1s->flags & (H1S_F_REQ_ERROR|H1S_F_RES_ERROR))
346 h1c->flags |= H1C_F_CS_ERROR;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200347 pool_free(pool_head_h1s, h1s);
348 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200349}
350
Christopher Fauletfeb11742018-11-29 15:12:34 +0100351static const struct cs_info *h1_get_cs_info(struct conn_stream *cs)
352{
353 struct h1s *h1s = cs->ctx;
354
355 if (h1s && !conn_is_back(cs->conn))
356 return &h1s->csinfo;
357 return NULL;
358}
359
Christopher Faulet51dbc942018-09-13 09:05:15 +0200360/*
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200361 * Initialize the mux once it's attached. It is expected that conn->ctx points
362 * to the existing conn_stream (for outgoing connections or for incoming onces
363 * during a mux upgrade) or NULL (for incoming ones during the connexion
364 * establishment). <input> is always used as Input buffer and may contain
365 * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on
366 * error.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200367 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200368static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess,
369 struct buffer *input)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200370{
Christopher Faulet51dbc942018-09-13 09:05:15 +0200371 struct h1c *h1c;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100372 struct task *t = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200373
374 h1c = pool_alloc(pool_head_h1c);
375 if (!h1c)
376 goto fail_h1c;
377 h1c->conn = conn;
378 h1c->px = proxy;
379
380 h1c->flags = H1C_F_NONE;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200381 h1c->ibuf = *input;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200382 h1c->obuf = BUF_NULL;
383 h1c->h1s = NULL;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200384 h1c->task = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200385
Christopher Faulet51dbc942018-09-13 09:05:15 +0200386 LIST_INIT(&h1c->buf_wait.list);
387 h1c->wait_event.task = tasklet_new();
388 if (!h1c->wait_event.task)
389 goto fail;
390 h1c->wait_event.task->process = h1_io_cb;
391 h1c->wait_event.task->context = h1c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100392 h1c->wait_event.events = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200393
Christopher Faulete9b70722019-04-08 10:46:02 +0200394 if (conn_is_back(conn)) {
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100395 h1c->shut_timeout = h1c->timeout = proxy->timeout.server;
396 if (tick_isset(proxy->timeout.serverfin))
397 h1c->shut_timeout = proxy->timeout.serverfin;
398 } else {
399 h1c->shut_timeout = h1c->timeout = proxy->timeout.client;
400 if (tick_isset(proxy->timeout.clientfin))
401 h1c->shut_timeout = proxy->timeout.clientfin;
402 }
403 if (tick_isset(h1c->timeout)) {
404 t = task_new(tid_bit);
405 if (!t)
406 goto fail;
407
408 h1c->task = t;
409 t->process = h1_timeout_task;
410 t->context = h1c;
411 t->expire = tick_add(now_ms, h1c->timeout);
412 }
413
Christopher Faulet3b88b8d2018-10-26 17:36:03 +0200414 if (!(conn->flags & CO_FL_CONNECTED))
415 h1c->flags |= H1C_F_CS_WAIT_CONN;
416
Christopher Fauletf2824e62018-10-01 12:12:37 +0200417 /* Always Create a new H1S */
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100418 if (!h1s_create(h1c, conn->ctx, sess))
Christopher Fauletf2824e62018-10-01 12:12:37 +0200419 goto fail;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200420
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100421 conn->ctx = h1c;
Christopher Faulet129817b2018-09-20 16:14:40 +0200422
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100423
424 if (t)
425 task_queue(t);
426
Christopher Faulet51dbc942018-09-13 09:05:15 +0200427 /* Try to read, if nothing is available yet we'll just subscribe */
Olivier Houchard9b960a82019-01-04 16:51:40 +0100428 tasklet_wakeup(h1c->wait_event.task);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200429
430 /* mux->wake will be called soon to complete the operation */
431 return 0;
432
433 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200434 task_destroy(t);
Christopher Faulet47365272018-10-31 17:40:50 +0100435 if (h1c->wait_event.task)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200436 tasklet_free(h1c->wait_event.task);
437 pool_free(pool_head_h1c, h1c);
438 fail_h1c:
439 return -1;
440}
441
Christopher Faulet73c12072019-04-08 11:23:22 +0200442/* release function. This one should be called to free all resources allocated
443 * to the mux.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200444 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200445static void h1_release(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200446{
Christopher Faulet61840e72019-04-15 09:33:32 +0200447 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200448
Christopher Faulet51dbc942018-09-13 09:05:15 +0200449 if (h1c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200450 /* The connection must be aattached to this mux to be released */
451 if (h1c->conn && h1c->conn->ctx == h1c)
452 conn = h1c->conn;
453
454 if (conn && h1c->flags & H1C_F_UPG_H2C) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200455 h1c->flags &= ~H1C_F_UPG_H2C;
456 if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTX) != -1) {
457 /* connection successfully upgraded to H2, this
458 * mux was already released */
459 return;
460 }
461 sess_log(conn->owner); /* Log if the upgrade failed */
462 }
463
Christopher Faulet61840e72019-04-15 09:33:32 +0200464
Christopher Faulet51dbc942018-09-13 09:05:15 +0200465 if (!LIST_ISEMPTY(&h1c->buf_wait.list)) {
466 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
467 LIST_DEL(&h1c->buf_wait.list);
468 LIST_INIT(&h1c->buf_wait.list);
469 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
470 }
471
472 h1_release_buf(h1c, &h1c->ibuf);
473 h1_release_buf(h1c, &h1c->obuf);
474
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100475 if (h1c->task) {
476 h1c->task->context = NULL;
477 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
478 h1c->task = NULL;
479 }
480
Christopher Faulet51dbc942018-09-13 09:05:15 +0200481 if (h1c->wait_event.task)
482 tasklet_free(h1c->wait_event.task);
483
Christopher Fauletf2824e62018-10-01 12:12:37 +0200484 h1s_destroy(h1c->h1s);
Olivier Houchard0e079372019-04-15 17:51:16 +0200485 if (conn && h1c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100486 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events,
Olivier Houchard0e079372019-04-15 17:51:16 +0200487 &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200488 pool_free(pool_head_h1c, h1c);
489 }
490
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200491 if (conn) {
492 conn->mux = NULL;
493 conn->ctx = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200494
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200495 conn_stop_tracking(conn);
496 conn_full_close(conn);
497 if (conn->destroy_cb)
498 conn->destroy_cb(conn);
499 conn_free(conn);
500 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200501}
502
503/******************************************************/
504/* functions below are for the H1 protocol processing */
505/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +0200506/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
507 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +0200508 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100509static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200510{
Christopher Faulet570d1612018-11-26 11:13:57 +0100511 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +0200512
Christopher Faulet570d1612018-11-26 11:13:57 +0100513 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200514 (*(p + 5) > '1' ||
515 (*(p + 5) == '1' && *(p + 7) >= '1')))
516 h1m->flags |= H1_MF_VER_11;
517}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200518
Christopher Faulet9768c262018-10-22 09:34:31 +0200519/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
520 * greater or equal to 1.1
521 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100522static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +0200523{
Christopher Faulet570d1612018-11-26 11:13:57 +0100524 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200525
Christopher Faulet570d1612018-11-26 11:13:57 +0100526 if ((HTX_SL_RES_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200527 (*(p + 5) > '1' ||
528 (*(p + 5) == '1' && *(p + 7) >= '1')))
529 h1m->flags |= H1_MF_VER_11;
530}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200531
Christopher Faulet9768c262018-10-22 09:34:31 +0200532/*
533 * Check the validity of the request version. If the version is valid, it
534 * returns 1. Otherwise, it returns 0.
535 */
536static int h1_process_req_vsn(struct h1s *h1s, struct h1m *h1m, union h1_sl sl)
537{
538 struct h1c *h1c = h1s->h1c;
539
540 /* RFC7230#2.6 has enforced the format of the HTTP version string to be
541 * exactly one digit "." one digit. This check may be disabled using
542 * option accept-invalid-http-request.
543 */
544 if (!(h1c->px->options2 & PR_O2_REQBUG_OK)) {
545 if (sl.rq.v.len != 8)
546 return 0;
547
548 if (*(sl.rq.v.ptr + 4) != '/' ||
549 !isdigit((unsigned char)*(sl.rq.v.ptr + 5)) ||
550 *(sl.rq.v.ptr + 6) != '.' ||
551 !isdigit((unsigned char)*(sl.rq.v.ptr + 7)))
552 return 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200553 }
Christopher Faulet9768c262018-10-22 09:34:31 +0200554 else if (!sl.rq.v.len) {
555 /* try to convert HTTP/0.9 requests to HTTP/1.0 */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200556
Christopher Faulet9768c262018-10-22 09:34:31 +0200557 /* RFC 1945 allows only GET for HTTP/0.9 requests */
558 if (sl.rq.meth != HTTP_METH_GET)
559 return 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200560
Christopher Faulet9768c262018-10-22 09:34:31 +0200561 /* HTTP/0.9 requests *must* have a request URI, per RFC 1945 */
562 if (!sl.rq.u.len)
563 return 0;
564
565 /* Add HTTP version */
566 sl.rq.v = ist("HTTP/1.0");
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100567 return 1;
Christopher Faulet9768c262018-10-22 09:34:31 +0200568 }
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100569
570 if ((sl.rq.v.len == 8) &&
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100571 ((*(sl.rq.v.ptr + 5) > '1') ||
572 ((*(sl.rq.v.ptr + 5) == '1') && (*(sl.rq.v.ptr + 7) >= '1'))))
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100573 h1m->flags |= H1_MF_VER_11;
Christopher Faulet9768c262018-10-22 09:34:31 +0200574 return 1;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200575}
576
Christopher Faulet9768c262018-10-22 09:34:31 +0200577/*
578 * Check the validity of the response version. If the version is valid, it
579 * returns 1. Otherwise, it returns 0.
Christopher Fauletf2824e62018-10-01 12:12:37 +0200580 */
Christopher Faulet9768c262018-10-22 09:34:31 +0200581static int h1_process_res_vsn(struct h1s *h1s, struct h1m *h1m, union h1_sl sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200582{
Christopher Faulet9768c262018-10-22 09:34:31 +0200583 struct h1c *h1c = h1s->h1c;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200584
Christopher Faulet9768c262018-10-22 09:34:31 +0200585 /* RFC7230#2.6 has enforced the format of the HTTP version string to be
586 * exactly one digit "." one digit. This check may be disabled using
587 * option accept-invalid-http-request.
588 */
589 if (!(h1c->px->options2 & PR_O2_RSPBUG_OK)) {
590 if (sl.st.v.len != 8)
591 return 0;
592
593 if (*(sl.st.v.ptr + 4) != '/' ||
594 !isdigit((unsigned char)*(sl.st.v.ptr + 5)) ||
595 *(sl.st.v.ptr + 6) != '.' ||
596 !isdigit((unsigned char)*(sl.st.v.ptr + 7)))
597 return 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200598 }
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100599
600 if ((sl.st.v.len == 8) &&
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100601 ((*(sl.st.v.ptr + 5) > '1') ||
602 ((*(sl.st.v.ptr + 5) == '1') && (*(sl.st.v.ptr + 7) >= '1'))))
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100603 h1m->flags |= H1_MF_VER_11;
604
Christopher Faulet9768c262018-10-22 09:34:31 +0200605 return 1;
606}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200607
608/* Deduce the connection mode of the client connection, depending on the
609 * configuration and the H1 message flags. This function is called twice, the
610 * first time when the request is parsed and the second time when the response
611 * is parsed.
612 */
613static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
614{
615 struct proxy *fe = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200616
617 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100618 /* Output direction: second pass */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200619 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) ||
Christopher Fauletb992af02019-03-28 15:42:24 +0100620 h1s->status == 101) {
621 /* Either we've established an explicit tunnel, or we're
622 * switching the protocol. In both cases, we're very unlikely to
623 * understand the next protocols. We have to switch to tunnel
624 * mode, so that we transfer the request and responses then let
625 * this protocol pass unmodified. When we later implement
626 * specific parsers for such protocols, we'll want to check the
627 * Upgrade header which contains information about that protocol
628 * for responses with status 101 (eg: see RFC2817 about TLS).
629 */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200630 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Fauletb992af02019-03-28 15:42:24 +0100631 }
632 else if (h1s->flags & H1S_F_WANT_KAL) {
633 /* By default the client is in KAL mode. CLOSE mode mean
634 * it is imposed by the client itself. So only change
635 * KAL mode here. */
636 if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) {
637 /* no length known or explicit close => close */
638 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
639 }
640 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
641 (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) {
642 /* no explict keep-alive and option httpclose => close */
643 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
644 }
645 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200646 }
647 else {
Christopher Fauletb992af02019-03-28 15:42:24 +0100648 /* Input direction: first pass */
649 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) {
650 /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/
Christopher Fauletf2824e62018-10-01 12:12:37 +0200651 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Fauletb992af02019-03-28 15:42:24 +0100652 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200653 }
654
655 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */
656 if (h1s->flags & H1S_F_WANT_KAL && fe->state == PR_STSTOPPED)
657 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
658}
659
660/* Deduce the connection mode of the client connection, depending on the
661 * configuration and the H1 message flags. This function is called twice, the
662 * first time when the request is parsed and the second time when the response
663 * is parsed.
664 */
665static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
666{
Olivier Houchardf502aca2018-12-14 19:42:40 +0100667 struct session *sess = h1s->sess;
Christopher Fauletb992af02019-03-28 15:42:24 +0100668 struct proxy *be = h1s->h1c->px;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100669 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200670
Christopher Fauletf2824e62018-10-01 12:12:37 +0200671 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100672 /* Input direction: second pass */
673
Christopher Fauletf2824e62018-10-01 12:12:37 +0200674 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) ||
Christopher Fauletb992af02019-03-28 15:42:24 +0100675 h1s->status == 101) {
676 /* Either we've established an explicit tunnel, or we're
677 * switching the protocol. In both cases, we're very unlikely to
678 * understand the next protocols. We have to switch to tunnel
679 * mode, so that we transfer the request and responses then let
680 * this protocol pass unmodified. When we later implement
681 * specific parsers for such protocols, we'll want to check the
682 * Upgrade header which contains information about that protocol
683 * for responses with status 101 (eg: see RFC2817 about TLS).
684 */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200685 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Fauletb992af02019-03-28 15:42:24 +0100686 }
687 else if (h1s->flags & H1S_F_WANT_KAL) {
688 /* By default the server is in KAL mode. CLOSE mode mean
689 * it is imposed by haproxy itself. So only change KAL
690 * mode here. */
691 if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO ||
692 !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){
693 /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */
694 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
695 }
696 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200697 }
Christopher Faulet70033782018-12-05 13:50:11 +0100698 else {
Christopher Fauletb992af02019-03-28 15:42:24 +0100699 /* Output direction: first pass */
700 if (h1m->flags & H1_MF_CONN_CLO) {
701 /* explicit close => close */
Christopher Faulet70033782018-12-05 13:50:11 +0100702 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Fauletb992af02019-03-28 15:42:24 +0100703 }
704 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
705 ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
706 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
707 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
708 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) {
709 /* no explicit keep-alive option httpclose/server-close => close */
710 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
711 }
Christopher Faulet70033782018-12-05 13:50:11 +0100712 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200713
714 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
715 if (h1s->flags & H1S_F_WANT_KAL && be->state == PR_STSTOPPED)
716 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200717}
718
Christopher Fauletb992af02019-03-28 15:42:24 +0100719static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200720{
721 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200722
723 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
724 * token is found
725 */
726 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +0200727 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200728
729 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100730 if (!(h1m->flags & H1_MF_VER_11))
731 *conn_val = ist("keep-alive");
Christopher Fauletf2824e62018-10-01 12:12:37 +0200732 }
733 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Fauletb992af02019-03-28 15:42:24 +0100734 if (h1m->flags & H1_MF_VER_11)
735 *conn_val = ist("close");
Christopher Fauletf2824e62018-10-01 12:12:37 +0200736 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200737}
738
Christopher Fauletb992af02019-03-28 15:42:24 +0100739static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200740{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200741 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
742 * token is found
743 */
744 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +0200745 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200746
747 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100748 if (!(h1m->flags & H1_MF_VER_11) ||
749 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11))
750 *conn_val = ist("keep-alive");
Christopher Fauletf2824e62018-10-01 12:12:37 +0200751 }
752 else { /* H1S_F_WANT_CLO */
Christopher Fauletb992af02019-03-28 15:42:24 +0100753 if (h1m->flags & H1_MF_VER_11)
754 *conn_val = ist("close");
Christopher Fauletf2824e62018-10-01 12:12:37 +0200755 }
Christopher Faulet9768c262018-10-22 09:34:31 +0200756}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200757
Christopher Fauletb992af02019-03-28 15:42:24 +0100758static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
Christopher Faulet9768c262018-10-22 09:34:31 +0200759{
Christopher Fauletb992af02019-03-28 15:42:24 +0100760 if (!conn_is_back(h1s->h1c->conn))
Christopher Faulet9768c262018-10-22 09:34:31 +0200761 h1_set_cli_conn_mode(h1s, h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +0100762 else
Christopher Faulet9768c262018-10-22 09:34:31 +0200763 h1_set_srv_conn_mode(h1s, h1m);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200764}
765
Christopher Fauletb992af02019-03-28 15:42:24 +0100766static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
767{
768 if (!conn_is_back(h1s->h1c->conn))
769 h1_set_cli_conn_mode(h1s, h1m);
770 else
771 h1_set_srv_conn_mode(h1s, h1m);
772
773 if (!(h1m->flags & H1_MF_RESP))
774 h1_update_req_conn_value(h1s, h1m, conn_val);
775 else
776 h1_update_res_conn_value(h1s, h1m, conn_val);
777}
Christopher Faulete44769b2018-11-29 23:01:45 +0100778
779/* Append the description of what is present in error snapshot <es> into <out>.
780 * The description must be small enough to always fit in a buffer. The output
781 * buffer may be the trash so the trash must not be used inside this function.
782 */
783static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
784{
785 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100786 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
787 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
788 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
789 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
790 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
791 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +0100792}
793/*
794 * Capture a bad request or response and archive it in the proxy's structure.
795 * By default it tries to report the error position as h1m->err_pos. However if
796 * this one is not set, it will then report h1m->next, which is the last known
797 * parsing point. The function is able to deal with wrapping buffers. It always
798 * displays buffers as a contiguous area starting at buf->p. The direction is
799 * determined thanks to the h1m's flags.
800 */
801static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
802 struct h1m *h1m, struct buffer *buf)
803{
804 struct session *sess = h1c->conn->owner;
805 struct proxy *proxy = h1c->px;
806 struct proxy *other_end = sess->fe;
807 union error_snapshot_ctx ctx;
808
Willy Tarreau598d7fc2018-12-18 18:10:38 +0100809 if (h1s->cs->data && !(h1m->flags & H1_MF_RESP))
Christopher Faulete44769b2018-11-29 23:01:45 +0100810 other_end = si_strm(h1s->cs->data)->be;
811
812 /* http-specific part now */
813 ctx.h1.state = h1m->state;
814 ctx.h1.c_flags = h1c->flags;
815 ctx.h1.s_flags = h1s->flags;
816 ctx.h1.m_flags = h1m->flags;
817 ctx.h1.m_clen = h1m->curr_len;
818 ctx.h1.m_blen = h1m->body_len;
819
820 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
821 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100822 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
823 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +0100824}
825
Christopher Fauletadb22202018-12-12 10:32:09 +0100826/* Emit the chunksize followed by a CRLF in front of data of the buffer
827 * <buf>. It goes backwards and starts with the byte before the buffer's
828 * head. The caller is responsible for ensuring there is enough room left before
829 * the buffer's head for the string.
830 */
831static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
832{
833 char *beg, *end;
834
835 beg = end = b_head(buf);
836 *--beg = '\n';
837 *--beg = '\r';
838 do {
839 *--beg = hextab[chksz & 0xF];
840 } while (chksz >>= 4);
841 buf->head -= (end - beg);
842 b_add(buf, end - beg);
843}
844
845/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
846 * ensuring there is enough room left in the buffer for the string. */
847static void h1_emit_chunk_crlf(struct buffer *buf)
848{
849 *(b_peek(buf, b_data(buf))) = '\r';
850 *(b_peek(buf, b_data(buf) + 1)) = '\n';
851 b_add(buf, 2);
852}
853
Christopher Faulet129817b2018-09-20 16:14:40 +0200854/*
Christopher Fauletc62c2b92019-03-28 11:41:39 +0100855 * Switch the request to tunnel mode. This function must only be called for
856 * CONNECT requests. On the client side, the mux is mark as busy on input,
857 * waiting the response.
858 */
859static void h1_set_req_tunnel_mode(struct h1s *h1s)
860{
861 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
862 h1s->req.state = H1_MSG_TUNNEL;
863 if (!conn_is_back(h1s->h1c->conn))
864 h1s->h1c->flags |= H1C_F_IN_BUSY;
865}
866
867/*
868 * Switch the response to tunnel mode. This function must only be called on
869 * successfull replies to CONNECT requests or on protocol switching. On the
870 * server side, if the request is not finished, the mux is mark as busy on
871 * input. Otherwise the request is also switch to tunnel mode.
872 */
873static void h1_set_res_tunnel_mode(struct h1s *h1s)
874{
875 h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
876 h1s->res.state = H1_MSG_TUNNEL;
877 if (conn_is_back(h1s->h1c->conn) && h1s->req.state < H1_MSG_DONE)
878 h1s->h1c->flags |= H1C_F_IN_BUSY;
879 else {
880 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
881 h1s->req.state = H1_MSG_TUNNEL;
882 if (h1s->h1c->flags & H1C_F_IN_BUSY) {
883 h1s->h1c->flags &= ~H1C_F_IN_BUSY;
884 tasklet_wakeup(h1s->h1c->wait_event.task);
885 }
886 }
887}
888
Christopher Faulet30db3d72019-05-17 15:35:33 +0200889/* Estimate the size of the HTX request after the parsing. */
890static size_t h1_eval_htx_req_size(struct h1m *h1m, union h1_sl *h1sl, struct http_hdr *hdrs)
891{
892 size_t sz;
893 int i;
894
895 /* size of the HTX start-line */
896 sz = sizeof(struct htx_sl) + h1sl->rq.m.len + h1sl->rq.u.len + h1sl->rq.v.len;
897
898 /* size of all HTX headers */
899 for (i = 0; hdrs[i].n.len; i++)
900 sz += sizeof(struct htx_blk) + hdrs[i].n.len + hdrs[i].v.len;
901
902 /* size of the EOH */
903 sz += sizeof(struct htx_blk) + 1;
904
905 /* size of the EOM */
906 if (h1m->state == H1_MSG_DONE)
907 sz += sizeof(struct htx_blk) + 1;
908
909 return sz;
910}
911
912/* Estimate the size of the HTX response after the parsing. */
913static size_t h1_eval_htx_res_size(struct h1m *h1m, union h1_sl *h1sl, struct http_hdr *hdrs)
914{
915 size_t sz;
916 int i;
917
918 /* size of the HTX start-line */
919 sz = sizeof(struct htx_sl) + h1sl->st.v.len + h1sl->st.c.len + h1sl->st.r.len;
920
921 /* size of all HTX headers */
922 for (i = 0; hdrs[i].n.len; i++)
923 sz += sizeof(struct htx_blk) + hdrs[i].n.len + hdrs[i].v.len;
924
925 /* size of the EOH */
926 sz += sizeof(struct htx_blk) + 1;
927
928 /* size of the EOM */
929 if (h1m->state == H1_MSG_DONE)
930 sz += sizeof(struct htx_blk) + 1;
931
932 return sz;
933}
934
Christopher Fauletc62c2b92019-03-28 11:41:39 +0100935/*
Christopher Fauletcdc90e92019-03-28 13:28:46 +0100936 * Handle 100-Continue responses or any other informational 1xx responses which
937 * is non-final. In such case, this function reset the response parser. It is
938 * the caller responsibility to call this function when appropriate.
939 */
940static void h1_handle_1xx_response(struct h1s *h1s, struct h1m *h1m)
941{
942 if ((h1m->flags & H1_MF_RESP) && h1m->state == H1_MSG_DONE &&
943 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
944 h1m_init_res(&h1s->res);
Christopher Fauletb992af02019-03-28 15:42:24 +0100945 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletcdc90e92019-03-28 13:28:46 +0100946 h1s->h1c->flags &= ~H1C_F_IN_BUSY;
947 }
948}
949
950/*
Christopher Faulet129817b2018-09-20 16:14:40 +0200951 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +0200952 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
953 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
Joseph Herlant30bc5092018-11-25 10:52:20 -0800954 * responsible to update the parser state <h1m>.
Christopher Faulet129817b2018-09-20 16:14:40 +0200955 */
Christopher Faulet9768c262018-10-22 09:34:31 +0200956static size_t h1_process_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
Christopher Fauletf2824e62018-10-01 12:12:37 +0200957 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +0200958{
Christopher Fauleta39d8ad2019-05-15 15:54:39 +0200959 struct htx_sl *sl;
Christopher Faulet129817b2018-09-20 16:14:40 +0200960 struct http_hdr hdrs[MAX_HTTP_HDR];
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100961 union h1_sl h1sl;
962 unsigned int flags = HTX_SL_F_NONE;
Christopher Fauleta39d8ad2019-05-15 15:54:39 +0200963 size_t used;
Christopher Faulet129817b2018-09-20 16:14:40 +0200964 int ret = 0;
965
Christopher Faulet30db3d72019-05-17 15:35:33 +0200966 if (!max || !b_data(buf))
Christopher Fauletd44ad5b2018-11-19 21:52:12 +0100967 goto end;
968
Christopher Faulet129817b2018-09-20 16:14:40 +0200969 /* Realing input buffer if necessary */
970 if (b_head(buf) + b_data(buf) > b_wrap(buf))
971 b_slow_realign(buf, trash.area, 0);
972
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200973 if (!(h1m->flags & H1_MF_RESP)) {
974 /* Try to match H2 preface before parsing the request headers. */
975 ret = b_isteq(buf, 0, b_data(buf), ist(H2_CONN_PREFACE));
976 if (ret > 0)
977 goto h2c_upgrade;
978 }
979
Christopher Faulet30db3d72019-05-17 15:35:33 +0200980 ret = h1_headers_to_hdr_list(b_peek(buf, *ofs), b_tail(buf),
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100981 hdrs, sizeof(hdrs)/sizeof(hdrs[0]), h1m, &h1sl);
Christopher Faulet129817b2018-09-20 16:14:40 +0200982 if (ret <= 0) {
983 /* Incomplete or invalid message. If the buffer is full, it's an
984 * error because headers are too large to be handled by the
985 * parser. */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200986 if (ret < 0 || (!ret && b_full(buf)))
987 goto error;
Christopher Faulet129817b2018-09-20 16:14:40 +0200988 goto end;
989 }
990
991 /* messages headers fully parsed, do some checks to prepare the body
992 * parsing.
993 */
994
Christopher Faulet9768c262018-10-22 09:34:31 +0200995 /* Save the request's method or the response's status, check if the body
996 * length is known and check the VSN validity */
Christopher Faulet129817b2018-09-20 16:14:40 +0200997 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100998 h1s->meth = h1sl.rq.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +0200999
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001000 /* By default, request have always a known length */
Christopher Faulet129817b2018-09-20 16:14:40 +02001001 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001002
1003 if (h1s->meth == HTTP_METH_CONNECT) {
1004 /* Switch CONNECT requests to tunnel mode */
1005 h1_set_req_tunnel_mode(h1s);
1006 }
1007 else if (!(h1m->flags & H1_MF_CHNK) && !h1m->body_len) {
1008 /* Switch requests with no body to done. */
Christopher Faulet129817b2018-09-20 16:14:40 +02001009 h1m->state = H1_MSG_DONE;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001010 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001011
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001012 if (!h1_process_req_vsn(h1s, h1m, h1sl)) {
1013 h1m->err_pos = h1sl.rq.v.ptr - b_head(buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001014 h1m->err_state = h1m->state;
1015 goto vsn_error;
1016 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001017 }
1018 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001019 h1s->status = h1sl.st.status;
Christopher Faulet129817b2018-09-20 16:14:40 +02001020
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001021 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) ||
1022 h1s->status == 101) {
1023 /* Switch successfull replies to CONNECT requests and
1024 * protocol switching to tunnel mode. */
1025 h1_set_res_tunnel_mode(h1s);
1026 }
1027 else if ((h1s->meth == HTTP_METH_HEAD) ||
1028 (h1s->status >= 100 && h1s->status < 200) ||
1029 (h1s->status == 204) || (h1s->status == 304)) {
1030 /* Switch responses without body to done. */
Christopher Faulet129817b2018-09-20 16:14:40 +02001031 h1m->flags &= ~(H1_MF_CLEN|H1_MF_CHNK);
1032 h1m->flags |= H1_MF_XFER_LEN;
1033 h1m->curr_len = h1m->body_len = 0;
1034 h1m->state = H1_MSG_DONE;
1035 }
1036 else if (h1m->flags & (H1_MF_CLEN|H1_MF_CHNK)) {
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001037 /* Responses with a known body length. Switch requests
1038 * with no body to done. */
Christopher Faulet129817b2018-09-20 16:14:40 +02001039 h1m->flags |= H1_MF_XFER_LEN;
1040 if ((h1m->flags & H1_MF_CLEN) && !h1m->body_len)
1041 h1m->state = H1_MSG_DONE;
1042 }
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001043 else {
1044 /* Responses with an unknown body length */
Christopher Faulet129817b2018-09-20 16:14:40 +02001045 h1m->state = H1_MSG_TUNNEL;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001046 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001047
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001048 if (!h1_process_res_vsn(h1s, h1m, h1sl)) {
1049 h1m->err_pos = h1sl.st.v.ptr - b_head(buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001050 h1m->err_state = h1m->state;
1051 goto vsn_error;
1052 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001053 }
1054
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001055 /* Set HTX start-line flags */
1056 if (h1m->flags & H1_MF_VER_11)
1057 flags |= HTX_SL_F_VER_11;
1058 if (h1m->flags & H1_MF_XFER_ENC)
1059 flags |= HTX_SL_F_XFER_ENC;
1060 if (h1m->flags & H1_MF_XFER_LEN) {
1061 flags |= HTX_SL_F_XFER_LEN;
1062 if (h1m->flags & H1_MF_CHNK)
1063 flags |= HTX_SL_F_CHNK;
1064 else if (h1m->flags & H1_MF_CLEN)
1065 flags |= HTX_SL_F_CLEN;
Christopher Fauletb2db4fa2018-11-27 16:51:09 +01001066 if (h1m->state == H1_MSG_DONE)
1067 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 Faulet30db3d72019-05-17 15:35:33 +02001072 if (h1_eval_htx_req_size(h1m, &h1sl, hdrs) > max)
1073 goto error;
1074
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001075 sl = htx_add_stline(htx, HTX_BLK_REQ_SL, flags, h1sl.rq.m, h1sl.rq.u, h1sl.rq.v);
1076 if (!sl || !htx_add_all_headers(htx, hdrs))
Christopher Faulet9768c262018-10-22 09:34:31 +02001077 goto error;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001078 sl->info.req.meth = h1s->meth;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001079 }
1080 else {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001081 if (h1_eval_htx_res_size(h1m, &h1sl, hdrs) > max)
1082 goto error;
1083
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001084 flags |= HTX_SL_F_IS_RESP;
1085 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, h1sl.st.v, h1sl.st.c, h1sl.st.r);
1086 if (!sl || !htx_add_all_headers(htx, hdrs))
Christopher Faulet9768c262018-10-22 09:34:31 +02001087 goto error;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001088 sl->info.res.status = h1s->status;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001089 }
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001090
Christopher Fauleta39d8ad2019-05-15 15:54:39 +02001091 /* Set bytes used in the HTX mesage for the headers now */
1092 sl->hdrs_bytes = htx_used_space(htx) - used;
1093
1094
Christopher Fauletdbe2cb42019-03-22 14:09:41 +01001095 if (h1m->state == H1_MSG_DONE) {
Christopher Faulet9768c262018-10-22 09:34:31 +02001096 if (!htx_add_endof(htx, HTX_BLK_EOM))
1097 goto error;
Christopher Fauletdbe2cb42019-03-22 14:09:41 +01001098 h1s->cs->flags |= CS_FL_EOI;
1099 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001100
Christopher Fauletb992af02019-03-28 15:42:24 +01001101 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001102
1103 /* If body length cannot be determined, set htx->extra to
1104 * ULLONG_MAX. This value is impossible in other cases.
1105 */
1106 htx->extra = ((h1m->flags & H1_MF_XFER_LEN) ? h1m->curr_len : ULLONG_MAX);
Christopher Faulet9768c262018-10-22 09:34:31 +02001107 *ofs += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001108 end:
1109 return ret;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001110
1111 error:
Christopher Fauletf2824e62018-10-01 12:12:37 +02001112 h1m->err_state = h1m->state;
1113 h1m->err_pos = h1m->next;
Christopher Faulet9768c262018-10-22 09:34:31 +02001114 vsn_error:
1115 h1s->flags |= (!(h1m->flags & H1_MF_RESP) ? H1S_F_REQ_ERROR : H1S_F_RES_ERROR);
Christopher Faulete44769b2018-11-29 23:01:45 +01001116 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001117 ret = 0;
1118 goto end;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001119
1120 h2c_upgrade:
1121 h1s->h1c->flags |= H1C_F_UPG_H2C;
Christopher Faulet8e9e3ef2019-05-17 09:14:10 +02001122 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001123 htx->flags |= HTX_FL_UPGRADE;
1124 ret = 0;
1125 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001126}
1127
1128/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001129 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
1130 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag
Christopher Faulet129817b2018-09-20 16:14:40 +02001131 * and filling h1s->err_pos and h1s->err_state fields. This functions is
Joseph Herlant30bc5092018-11-25 10:52:20 -08001132 * responsible to update the parser state <h1m>.
Christopher Faulet129817b2018-09-20 16:14:40 +02001133 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001134static size_t h1_process_data(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001135 struct buffer *buf, size_t *ofs, size_t max,
Christopher Faulet30db3d72019-05-17 15:35:33 +02001136 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001137{
1138 size_t total = 0;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001139 int32_t ret = 0;
Christopher Fauletafe57842019-01-21 11:55:02 +01001140
Christopher Faulet129817b2018-09-20 16:14:40 +02001141 if (h1m->flags & H1_MF_XFER_LEN) {
1142 if (h1m->flags & H1_MF_CLEN) {
1143 /* content-length: read only h2m->body_len */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001144 ret = htx_get_max_blksz(htx, max);
Christopher Faulet129817b2018-09-20 16:14:40 +02001145 if ((uint64_t)ret > h1m->curr_len)
1146 ret = h1m->curr_len;
Christopher Faulet9768c262018-10-22 09:34:31 +02001147 if (ret > b_contig_data(buf, *ofs))
1148 ret = b_contig_data(buf, *ofs);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001149
Christopher Faulet9768c262018-10-22 09:34:31 +02001150 if (ret) {
Willy Tarreau78f548f2018-12-05 10:02:39 +01001151 /* very often with large files we'll face the following
1152 * situation :
1153 * - htx is empty and points to <htxbuf>
1154 * - ret == buf->data
1155 * - buf->head == sizeof(struct htx)
1156 * => we can swap the buffers and place an htx header into
1157 * the target buffer instead
1158 */
1159 if (unlikely(htx_is_empty(htx) && ret == b_data(buf) &&
1160 !*ofs && b_head_ofs(buf) == sizeof(struct htx))) {
1161 void *raw_area = buf->area;
1162 void *htx_area = htxbuf->area;
1163 struct htx_blk *blk;
1164
1165 buf->area = htx_area;
1166 htxbuf->area = raw_area;
1167 htx = (struct htx *)htxbuf->area;
1168 htx->size = htxbuf->size - sizeof(*htx);
1169 htx_reset(htx);
1170 b_set_data(htxbuf, b_size(htxbuf));
1171
1172 blk = htx_add_blk(htx, HTX_BLK_DATA, ret);
1173 blk->info += ret;
1174 /* nothing else to do, the old buffer now contains an
1175 * empty pre-initialized HTX header
1176 */
1177 }
1178 else if (!htx_add_data(htx, ist2(b_peek(buf, *ofs), ret)))
Christopher Faulet9768c262018-10-22 09:34:31 +02001179 goto end;
1180 h1m->curr_len -= ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001181 max -= sizeof(struct htx_blk) + ret;
Christopher Faulet9768c262018-10-22 09:34:31 +02001182 *ofs += ret;
1183 total += ret;
1184 }
1185
1186 if (!h1m->curr_len) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001187 if (max < sizeof(struct htx_blk) + 1 || !htx_add_endof(htx, HTX_BLK_EOM))
Christopher Faulet9768c262018-10-22 09:34:31 +02001188 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001189 h1m->state = H1_MSG_DONE;
Christopher Fauletdbe2cb42019-03-22 14:09:41 +01001190 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet9768c262018-10-22 09:34:31 +02001191 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001192 }
1193 else if (h1m->flags & H1_MF_CHNK) {
1194 new_chunk:
1195 /* te:chunked : parse chunks */
1196 if (h1m->state == H1_MSG_CHUNK_CRLF) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001197 ret = h1_skip_chunk_crlf(buf, *ofs, b_data(buf));
Christopher Faulet129817b2018-09-20 16:14:40 +02001198 if (ret <= 0)
1199 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001200 h1m->state = H1_MSG_CHUNK_SIZE;
1201
Christopher Fauletf2824e62018-10-01 12:12:37 +02001202 *ofs += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001203 total += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001204 }
1205
1206 if (h1m->state == H1_MSG_CHUNK_SIZE) {
1207 unsigned int chksz;
1208
Christopher Faulet30db3d72019-05-17 15:35:33 +02001209 ret = h1_parse_chunk_size(buf, *ofs, b_data(buf), &chksz);
Christopher Faulet129817b2018-09-20 16:14:40 +02001210 if (ret <= 0)
1211 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001212 if (!chksz) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001213 if (max < sizeof(struct htx_blk) + 1 || !htx_add_endof(htx, HTX_BLK_EOD))
Christopher Faulet9768c262018-10-22 09:34:31 +02001214 goto end;
Willy Tarreau34d23482019-01-03 17:46:56 +01001215 h1s->flags |= H1S_F_HAVE_I_EOD;
Christopher Faulet9768c262018-10-22 09:34:31 +02001216 h1m->state = H1_MSG_TRAILERS;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001217 max -= sizeof(struct htx_blk) + 1;
Christopher Faulet9768c262018-10-22 09:34:31 +02001218 }
1219 else
1220 h1m->state = H1_MSG_DATA;
1221
Christopher Faulet129817b2018-09-20 16:14:40 +02001222 h1m->curr_len = chksz;
1223 h1m->body_len += chksz;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001224 *ofs += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001225 total += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001226 }
1227
1228 if (h1m->state == H1_MSG_DATA) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001229 ret = htx_get_max_blksz(htx, max);
Christopher Faulet129817b2018-09-20 16:14:40 +02001230 if ((uint64_t)ret > h1m->curr_len)
1231 ret = h1m->curr_len;
Christopher Faulet9768c262018-10-22 09:34:31 +02001232 if (ret > b_contig_data(buf, *ofs))
1233 ret = b_contig_data(buf, *ofs);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001234
Christopher Faulet9768c262018-10-22 09:34:31 +02001235 if (ret) {
1236 if (!htx_add_data(htx, ist2(b_peek(buf, *ofs), ret)))
1237 goto end;
1238 h1m->curr_len -= ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001239 max -= sizeof(struct htx_blk) + ret;
Christopher Faulet9768c262018-10-22 09:34:31 +02001240 *ofs += ret;
1241 total += ret;
1242 }
1243 if (!h1m->curr_len) {
1244 h1m->state = H1_MSG_CHUNK_CRLF;
1245 goto new_chunk;
1246 }
1247 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001248 }
1249
1250 if (h1m->state == H1_MSG_TRAILERS) {
Christopher Faulet17276482018-11-22 11:44:35 +01001251 /* Trailers were alread parsed, only the EOM
1252 * need to be added */
Willy Tarreau34d23482019-01-03 17:46:56 +01001253 if (h1s->flags & H1S_F_HAVE_I_TLR)
Christopher Faulet17276482018-11-22 11:44:35 +01001254 goto skip_tlr_parsing;
1255
Christopher Faulet30db3d72019-05-17 15:35:33 +02001256 ret = htx_get_max_blksz(htx, max);
1257 ret = h1_measure_trailers(buf, *ofs, ret);
1258 if (ret <= 0) {
1259 if (!ret && b_full(buf))
1260 ret = -1;
Christopher Faulet129817b2018-09-20 16:14:40 +02001261 goto end;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001262 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001263
1264 /* Realing input buffer if tailers wrap. For now
1265 * this is a workaroung. Because trailers are
1266 * not split on CRLF, like headers, there is no
1267 * way to know where to split it when trailers
1268 * wrap. This is a limitation of
1269 * h1_measure_trailers.
1270 */
1271 if (b_peek(buf, *ofs) > b_peek(buf, *ofs + ret))
1272 b_slow_realign(buf, trash.area, 0);
1273
1274 if (!htx_add_trailer(htx, ist2(b_peek(buf, *ofs), ret)))
1275 goto end;
Willy Tarreau34d23482019-01-03 17:46:56 +01001276 h1s->flags |= H1S_F_HAVE_I_TLR;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001277 max -= sizeof(struct htx_blk) + ret;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001278 *ofs += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001279 total += ret;
Christopher Faulet9768c262018-10-22 09:34:31 +02001280
Christopher Faulet17276482018-11-22 11:44:35 +01001281 skip_tlr_parsing:
Christopher Faulet30db3d72019-05-17 15:35:33 +02001282 if (max < sizeof(struct htx_blk) + 1 || !htx_add_endof(htx, HTX_BLK_EOM))
Christopher Faulet9768c262018-10-22 09:34:31 +02001283 goto end;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001284 max -= sizeof(struct htx_blk) + 1;
Christopher Faulet129817b2018-09-20 16:14:40 +02001285 h1m->state = H1_MSG_DONE;
Christopher Fauletdbe2cb42019-03-22 14:09:41 +01001286 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet129817b2018-09-20 16:14:40 +02001287 }
1288 }
1289 else {
1290 /* XFER_LEN is set but not CLEN nor CHNK, it means there
1291 * is no body. Switch the message in DONE state
1292 */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001293 if (max < sizeof(struct htx_blk) + 1 || !htx_add_endof(htx, HTX_BLK_EOM))
Christopher Faulet9768c262018-10-22 09:34:31 +02001294 goto end;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001295 max -= sizeof(struct htx_blk) + 1;
Christopher Faulet129817b2018-09-20 16:14:40 +02001296 h1m->state = H1_MSG_DONE;
Christopher Fauletdbe2cb42019-03-22 14:09:41 +01001297 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet129817b2018-09-20 16:14:40 +02001298 }
1299 }
1300 else {
1301 /* no content length, read till SHUTW */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001302 ret = htx_get_max_blksz(htx, max);
Christopher Faulet9768c262018-10-22 09:34:31 +02001303 if (ret > b_contig_data(buf, *ofs))
1304 ret = b_contig_data(buf, *ofs);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001305
Christopher Faulet9768c262018-10-22 09:34:31 +02001306 if (ret) {
1307 if (!htx_add_data(htx, ist2(b_peek(buf, *ofs), ret)))
1308 goto end;
1309
Olivier Houchardcf42d5a2018-12-04 17:41:58 +01001310 *ofs += ret;
1311 total = ret;
Christopher Faulet9768c262018-10-22 09:34:31 +02001312 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001313 }
1314
1315 end:
1316 if (ret < 0) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001317 h1s->flags |= (!(h1m->flags & H1_MF_RESP) ? H1S_F_REQ_ERROR : H1S_F_RES_ERROR);
Christopher Faulet129817b2018-09-20 16:14:40 +02001318 h1m->err_state = h1m->state;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001319 h1m->err_pos = *ofs + max + ret;
Christopher Faulete44769b2018-11-29 23:01:45 +01001320 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet129817b2018-09-20 16:14:40 +02001321 return 0;
1322 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001323 /* update htx->extra, only when the body length is known */
1324 if (h1m->flags & H1_MF_XFER_LEN)
1325 htx->extra = h1m->curr_len;
Christopher Faulet129817b2018-09-20 16:14:40 +02001326 return total;
1327}
1328
1329/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001330 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001331 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1332 * it couldn't proceed.
Christopher Faulet129817b2018-09-20 16:14:40 +02001333 */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001334static size_t h1_process_input(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001335{
Christopher Faulet539e0292018-11-19 10:40:09 +01001336 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001337 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001338 struct htx *htx;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001339 size_t ret, data;
Christopher Faulet129817b2018-09-20 16:14:40 +02001340 size_t total = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001341 int errflag;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001342
Christopher Faulet539e0292018-11-19 10:40:09 +01001343 htx = htx_from_buf(buf);
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001344
Christopher Fauletf2824e62018-10-01 12:12:37 +02001345 if (!conn_is_back(h1c->conn)) {
1346 h1m = &h1s->req;
1347 errflag = H1S_F_REQ_ERROR;
1348 }
1349 else {
1350 h1m = &h1s->res;
1351 errflag = H1S_F_RES_ERROR;
1352 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001353
Christopher Faulet74027762019-02-26 14:45:05 +01001354 data = htx->data;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001355 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001356 size_t used = htx_used_space(htx);
1357
Christopher Faulet129817b2018-09-20 16:14:40 +02001358 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001359 ret = h1_process_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001360 if (!ret)
1361 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02001362 }
1363 else if (h1m->state <= H1_MSG_TRAILERS) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001364 ret = h1_process_data(h1s, h1m, htx, &h1c->ibuf, &total, count, buf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01001365 htx = htx_from_buf(buf);
Christopher Faulet129817b2018-09-20 16:14:40 +02001366 if (!ret)
1367 break;
1368 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001369 else if (h1m->state == H1_MSG_DONE) {
Christopher Faulet2f320ee2019-04-16 20:26:53 +02001370 if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE)
1371 h1c->flags |= H1C_F_IN_BUSY;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001372 break;
Christopher Fauletcb55f482018-12-10 11:56:47 +01001373 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001374 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001375 ret = h1_process_data(h1s, h1m, htx, &h1c->ibuf, &total, count, buf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01001376 htx = htx_from_buf(buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001377 if (!ret)
1378 break;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001379 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001380 else {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001381 h1s->flags |= errflag;
Christopher Faulet129817b2018-09-20 16:14:40 +02001382 break;
1383 }
1384
Christopher Faulet30db3d72019-05-17 15:35:33 +02001385 count -= htx_used_space(htx) - used;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001386 } while (!(h1s->flags & errflag) && count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001387
Christopher Faulet47365272018-10-31 17:40:50 +01001388 if (h1s->flags & errflag)
1389 goto parsing_err;
Christopher Faulet129817b2018-09-20 16:14:40 +02001390
Christopher Faulet539e0292018-11-19 10:40:09 +01001391 b_del(&h1c->ibuf, total);
1392
1393 end:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001394 htx_to_buf(htx, buf);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001395 ret = htx->data - data;
Willy Tarreau45f2b892018-12-05 07:59:27 +01001396 if (h1c->flags & H1C_F_IN_FULL && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001397 h1c->flags &= ~H1C_F_IN_FULL;
1398 tasklet_wakeup(h1c->wait_event.task);
Christopher Faulet47365272018-10-31 17:40:50 +01001399 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001400
Christopher Fauletcf56b992018-12-11 16:12:31 +01001401 h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
1402
Christopher Fauletcdc90e92019-03-28 13:28:46 +01001403 if (!b_data(&h1c->ibuf))
Christopher Faulet539e0292018-11-19 10:40:09 +01001404 h1_release_buf(h1c, &h1c->ibuf);
Christopher Fauletcf56b992018-12-11 16:12:31 +01001405 else if (!htx_is_empty(htx))
1406 h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM;
Christopher Faulet539e0292018-11-19 10:40:09 +01001407
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001408 if ((h1s->cs->flags & CS_FL_REOS) && (!b_data(&h1c->ibuf) || htx_is_empty(htx))) {
1409 h1s->cs->flags |= CS_FL_EOS;
Christopher Faulet26922382019-03-08 15:13:41 +01001410 if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE)
Christopher Fauletb8d2ee02019-02-25 15:29:51 +01001411 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet539e0292018-11-19 10:40:09 +01001412 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001413
Christopher Faulet30db3d72019-05-17 15:35:33 +02001414 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001415
1416 parsing_err:
Christopher Faulet47365272018-10-31 17:40:50 +01001417 b_reset(&h1c->ibuf);
Christopher Faulet539e0292018-11-19 10:40:09 +01001418 htx->flags |= HTX_FL_PARSING_ERROR;
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001419 htx_to_buf(htx, buf);
Christopher Faulet8e9e3ef2019-05-17 09:14:10 +02001420 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet9768c262018-10-22 09:34:31 +02001421 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001422}
1423
Christopher Faulet129817b2018-09-20 16:14:40 +02001424/*
1425 * Process outgoing data. It parses data and transfer them from the channel buffer into
1426 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1427 * 0 if it couldn't proceed.
1428 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02001429static size_t h1_process_output(struct h1c *h1c, struct buffer *buf, size_t count)
1430{
Christopher Faulet129817b2018-09-20 16:14:40 +02001431 struct h1s *h1s = h1c->h1s;
1432 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001433 struct htx *chn_htx;
1434 struct htx_blk *blk;
1435 struct buffer *tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001436 size_t total = 0;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001437 int process_conn_mode = 1; /* If still 1 on EOH, process the connection mode */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001438 int errflag;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001439
Christopher Faulet47365272018-10-31 17:40:50 +01001440 if (!count)
1441 goto end;
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001442
Christopher Faulet9768c262018-10-22 09:34:31 +02001443 chn_htx = htx_from_buf(buf);
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001444 if (htx_is_empty(chn_htx))
1445 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001446
Christopher Faulet51dbc942018-09-13 09:05:15 +02001447 if (!h1_get_buf(h1c, &h1c->obuf)) {
1448 h1c->flags |= H1C_F_OUT_ALLOC;
1449 goto end;
1450 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001451
Christopher Fauletf2824e62018-10-01 12:12:37 +02001452 if (!conn_is_back(h1c->conn)) {
1453 h1m = &h1s->res;
1454 errflag = H1S_F_RES_ERROR;
1455 }
1456 else {
1457 h1m = &h1s->req;
1458 errflag = H1S_F_REQ_ERROR;
1459 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001460
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001461 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001462 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001463
1464 tmp = get_trash_chunk();
Willy Tarreauc5efa332018-12-05 11:19:27 +01001465
Willy Tarreau3815b222018-12-11 19:50:43 +01001466 /* Perform some optimizations to reduce the number of buffer copies.
1467 * First, if the mux's buffer is empty and the htx area contains
1468 * exactly one data block of the same size as the requested count,
1469 * then it's possible to simply swap the caller's buffer with the
1470 * mux's output buffer and adjust offsets and length to match the
1471 * entire DATA HTX block in the middle. In this case we perform a
1472 * true zero-copy operation from end-to-end. This is the situation
1473 * that happens all the time with large files. Second, if this is not
1474 * possible, but the mux's output buffer is empty, we still have an
1475 * opportunity to avoid the copy to the intermediary buffer, by making
1476 * the intermediary buffer's area point to the output buffer's area.
1477 * In this case we want to skip the HTX header to make sure that copies
1478 * remain aligned and that this operation remains possible all the
1479 * time. This goes for headers, data blocks and any data extracted from
1480 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01001481 */
1482 if (!b_data(&h1c->obuf)) {
Olivier Houchard84cca662018-12-14 16:28:08 +01001483 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01001484
1485 if (chn_htx->used == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001486 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01001487 htx_get_blk_value(chn_htx, blk).len == count) {
1488 void *old_area = h1c->obuf.area;
1489
1490 h1c->obuf.area = buf->area;
1491 h1c->obuf.data = count;
1492
1493 buf->area = old_area;
1494 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01001495
1496 /* The message is chunked. We need to emit the chunk
1497 * size. We have at least the size of the struct htx to
1498 * write the chunk envelope. It should be enough.
1499 */
1500 if (h1m->flags & H1_MF_CHNK) {
1501 h1_emit_chunk_size(&h1c->obuf, count);
1502 h1_emit_chunk_crlf(&h1c->obuf);
1503 }
1504
Willy Tarreau3815b222018-12-11 19:50:43 +01001505 total += count;
1506 goto out;
1507 }
Willy Tarreauc5efa332018-12-05 11:19:27 +01001508 tmp->area = h1c->obuf.area + h1c->obuf.head;
1509 }
1510
Christopher Faulet9768c262018-10-22 09:34:31 +02001511 tmp->size = b_room(&h1c->obuf);
1512
Christopher Fauletb2e84162018-12-06 11:39:49 +01001513 while (count && !(h1s->flags & errflag) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01001514 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02001515 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001516 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02001517 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001518 uint32_t vlen;
Christopher Faulet9768c262018-10-22 09:34:31 +02001519
Christopher Fauletb2e84162018-12-06 11:39:49 +01001520 vlen = sz;
1521 if (vlen > count) {
1522 if (type != HTX_BLK_DATA && type != HTX_BLK_TLR)
1523 goto copy;
1524 vlen = count;
1525 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001526
Christopher Fauletb2e84162018-12-06 11:39:49 +01001527 switch (type) {
Christopher Faulet9768c262018-10-22 09:34:31 +02001528 case HTX_BLK_UNUSED:
Christopher Faulet129817b2018-09-20 16:14:40 +02001529 break;
Christopher Faulet9768c262018-10-22 09:34:31 +02001530
1531 case HTX_BLK_REQ_SL:
Christopher Faulet66229af2018-11-28 16:06:57 +01001532 h1m_init_req(h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +01001533 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +02001534 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001535 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001536 h1_parse_req_vsn(h1m, sl);
Christopher Fauletc59ff232018-12-03 13:58:44 +01001537 if (!htx_reqline_to_h1(sl, tmp))
Christopher Faulet9768c262018-10-22 09:34:31 +02001538 goto copy;
1539 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01001540 if (sl->flags & HTX_SL_F_BODYLESS)
1541 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001542 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet129817b2018-09-20 16:14:40 +02001543 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02001544
Christopher Faulet9768c262018-10-22 09:34:31 +02001545 case HTX_BLK_RES_SL:
Christopher Faulet66229af2018-11-28 16:06:57 +01001546 h1m_init_res(h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +01001547 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +02001548 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001549 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02001550 h1_parse_res_vsn(h1m, sl);
Christopher Fauletc59ff232018-12-03 13:58:44 +01001551 if (!htx_stline_to_h1(sl, tmp))
Christopher Faulet9768c262018-10-22 09:34:31 +02001552 goto copy;
Christopher Faulet03599112018-11-27 11:21:21 +01001553 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02001554 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001555 if (sl->info.res.status < 200 &&
1556 (sl->info.res.status == 100 || sl->info.res.status >= 102))
1557 process_conn_mode = 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02001558 h1m->state = H1_MSG_HDR_FIRST;
1559 break;
1560
1561 case HTX_BLK_HDR:
Christopher Faulet9768c262018-10-22 09:34:31 +02001562 h1m->state = H1_MSG_HDR_NAME;
1563 n = htx_get_blk_name(chn_htx, blk);
1564 v = htx_get_blk_value(chn_htx, blk);
1565
1566 if (isteqi(n, ist("transfer-encoding")))
1567 h1_parse_xfer_enc_header(h1m, v);
Willy Tarreau27cd2232019-01-03 21:52:42 +01001568 else if (isteqi(n, ist("content-length"))) {
Christopher Faulet5220ef22019-03-27 15:44:56 +01001569 /* Only skip C-L header with invalid value. */
1570 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01001571 goto skip_hdr;
1572 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001573 else if (isteqi(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001574 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02001575 if (!v.len)
1576 goto skip_hdr;
1577 }
1578
Christopher Fauletc59ff232018-12-03 13:58:44 +01001579 if (!htx_hdr_to_h1(n, v, tmp))
Christopher Faulet9768c262018-10-22 09:34:31 +02001580 goto copy;
1581 skip_hdr:
1582 h1m->state = H1_MSG_HDR_L2_LWS;
1583 break;
1584
1585 case HTX_BLK_PHDR:
1586 /* not implemented yet */
1587 h1m->flags |= errflag;
1588 break;
1589
1590 case HTX_BLK_EOH:
Christopher Fauletde68b132018-12-10 11:21:47 +01001591 if (h1m->state != H1_MSG_LAST_LF && process_conn_mode) {
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001592 /* There is no "Connection:" header and
1593 * it the conn_mode must be
1594 * processed. So do it */
1595 n = ist("Connection");
1596 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01001597 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001598 if (v.len) {
Christopher Fauletc59ff232018-12-03 13:58:44 +01001599 if (!htx_hdr_to_h1(n, v, tmp))
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001600 goto copy;
1601 }
Christopher Fauletb992af02019-03-28 15:42:24 +01001602 process_conn_mode = 0;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001603 }
Willy Tarreau4710d202019-01-03 17:39:54 +01001604
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001605 if ((h1s->meth != HTTP_METH_CONNECT &&
1606 (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 +01001607 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
1608 (h1s->status >= 200 && h1s->status != 204 && h1s->status != 304 &&
1609 h1s->meth != HTTP_METH_HEAD && !(h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) &&
1610 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
1611 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01001612 /* chunking needed but header not seen */
1613 if (!chunk_memcat(tmp, "transfer-encoding: chunked\r\n", 28))
1614 goto copy;
1615 h1m->flags |= H1_MF_CHNK;
1616 }
1617
Christopher Faulet9768c262018-10-22 09:34:31 +02001618 h1m->state = H1_MSG_LAST_LF;
1619 if (!chunk_memcat(tmp, "\r\n", 2))
1620 goto copy;
1621
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001622 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
1623 /* a CONNECT request is sent to the server. Switch it to tunnel mode. */
1624 h1_set_req_tunnel_mode(h1s);
1625 }
1626 else if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) || h1s->status == 101) {
1627 /* a successfull reply to a CONNECT or a protocol switching is sent
1628 * to the client . Switch the response to tunnel mode. */
1629 h1_set_res_tunnel_mode(h1s);
1630 }
1631 else
1632 h1m->state = H1_MSG_DATA;
Christopher Faulet9768c262018-10-22 09:34:31 +02001633 break;
1634
1635 case HTX_BLK_DATA:
1636 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001637 v.len = vlen;
Christopher Fauletc59ff232018-12-03 13:58:44 +01001638 if (!htx_data_to_h1(v, tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Faulet9768c262018-10-22 09:34:31 +02001639 goto copy;
1640 break;
1641
1642 case HTX_BLK_EOD:
1643 if (!chunk_memcat(tmp, "0\r\n", 3))
1644 goto copy;
Willy Tarreau34d23482019-01-03 17:46:56 +01001645 h1s->flags |= H1S_F_HAVE_O_EOD;
Christopher Faulet9768c262018-10-22 09:34:31 +02001646 h1m->state = H1_MSG_TRAILERS;
1647 break;
1648
1649 case HTX_BLK_TLR:
Willy Tarreau34d23482019-01-03 17:46:56 +01001650 if (!(h1s->flags & H1S_F_HAVE_O_EOD)) {
Christopher Faulet32188212018-11-20 18:21:43 +01001651 if (!chunk_memcat(tmp, "0\r\n", 3))
1652 goto copy;
Willy Tarreau34d23482019-01-03 17:46:56 +01001653 h1s->flags |= H1S_F_HAVE_O_EOD;
Christopher Faulet32188212018-11-20 18:21:43 +01001654 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001655 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001656 v.len = vlen;
Christopher Fauletc59ff232018-12-03 13:58:44 +01001657 if (!htx_trailer_to_h1(v, tmp))
Christopher Faulet9768c262018-10-22 09:34:31 +02001658 goto copy;
Willy Tarreau34d23482019-01-03 17:46:56 +01001659 h1s->flags |= H1S_F_HAVE_O_TLR;
Christopher Faulet9768c262018-10-22 09:34:31 +02001660 break;
1661
1662 case HTX_BLK_EOM:
Christopher Faulet32188212018-11-20 18:21:43 +01001663 if ((h1m->flags & H1_MF_CHNK)) {
Willy Tarreau34d23482019-01-03 17:46:56 +01001664 if (!(h1s->flags & H1S_F_HAVE_O_EOD)) {
Christopher Faulet32188212018-11-20 18:21:43 +01001665 if (!chunk_memcat(tmp, "0\r\n", 3))
1666 goto copy;
Willy Tarreau34d23482019-01-03 17:46:56 +01001667 h1s->flags |= H1S_F_HAVE_O_EOD;
Christopher Faulet32188212018-11-20 18:21:43 +01001668 }
Willy Tarreau34d23482019-01-03 17:46:56 +01001669 if (!(h1s->flags & H1S_F_HAVE_O_TLR)) {
Christopher Faulet32188212018-11-20 18:21:43 +01001670 if (!chunk_memcat(tmp, "\r\n", 2))
1671 goto copy;
Willy Tarreau34d23482019-01-03 17:46:56 +01001672 h1s->flags |= H1S_F_HAVE_O_TLR;
Christopher Faulet32188212018-11-20 18:21:43 +01001673 }
1674 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001675 h1m->state = H1_MSG_DONE;
1676 break;
1677
Christopher Faulet9768c262018-10-22 09:34:31 +02001678 default:
1679 h1m->flags |= errflag;
1680 break;
1681 }
Christopher Fauletb2e84162018-12-06 11:39:49 +01001682 total += vlen;
1683 count -= vlen;
1684 if (sz == vlen)
1685 blk = htx_remove_blk(chn_htx, blk);
1686 else {
1687 htx_cut_data_blk(chn_htx, blk, vlen);
1688 break;
1689 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001690 }
1691
Christopher Fauletcdc90e92019-03-28 13:28:46 +01001692 if (htx_is_empty(chn_htx))
1693 h1_handle_1xx_response(h1s, h1m);
1694
Christopher Faulet9768c262018-10-22 09:34:31 +02001695 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01001696 /* when the output buffer is empty, tmp shares the same area so that we
1697 * only have to update pointers and lengths.
1698 */
Willy Tarreaub57af612019-01-23 20:43:53 +01001699 if (tmp->area == h1c->obuf.area + h1c->obuf.head)
Willy Tarreauc5efa332018-12-05 11:19:27 +01001700 h1c->obuf.data = tmp->data;
1701 else
1702 b_putblk(&h1c->obuf, tmp->area, tmp->data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001703
Willy Tarreau3815b222018-12-11 19:50:43 +01001704 htx_to_buf(chn_htx, buf);
1705 out:
Willy Tarreau45f2b892018-12-05 07:59:27 +01001706 if (!buf_room_for_htx_data(&h1c->obuf))
Christopher Faulet51dbc942018-09-13 09:05:15 +02001707 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001708 end:
1709 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001710}
1711
Christopher Faulet51dbc942018-09-13 09:05:15 +02001712/*********************************************************/
1713/* functions below are I/O callbacks from the connection */
1714/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001715static void h1_wake_stream_for_recv(struct h1s *h1s)
1716{
1717 if (h1s && h1s->recv_wait) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001718 h1s->recv_wait->events &= ~SUB_RETRY_RECV;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001719 tasklet_wakeup(h1s->recv_wait->task);
1720 h1s->recv_wait = NULL;
1721 }
1722}
1723static void h1_wake_stream_for_send(struct h1s *h1s)
1724{
1725 if (h1s && h1s->send_wait) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001726 h1s->send_wait->events &= ~SUB_RETRY_SEND;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001727 tasklet_wakeup(h1s->send_wait->task);
1728 h1s->send_wait = NULL;
1729 }
1730}
1731
Christopher Faulet51dbc942018-09-13 09:05:15 +02001732/*
1733 * Attempt to read data, and subscribe if none available
1734 */
1735static int h1_recv(struct h1c *h1c)
1736{
1737 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01001738 struct h1s *h1s = h1c->h1s;
Olivier Houchard75159a92018-12-03 18:46:09 +01001739 size_t ret = 0, max;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001740 int rcvd = 0;
1741
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001742 if (h1c->wait_event.events & SUB_RETRY_RECV)
Christopher Fauletc386a882018-12-04 16:06:28 +01001743 return (b_data(&h1c->ibuf));
Christopher Faulet51dbc942018-09-13 09:05:15 +02001744
Olivier Houchard75159a92018-12-03 18:46:09 +01001745 if (!h1_recv_allowed(h1c)) {
1746 rcvd = 1;
Christopher Faulet9768c262018-10-22 09:34:31 +02001747 goto end;
Olivier Houchard75159a92018-12-03 18:46:09 +01001748 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001749
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02001750 if (!h1_get_buf(h1c, &h1c->ibuf)) {
1751 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet9768c262018-10-22 09:34:31 +02001752 goto end;
1753 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02001754
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02001755 if (h1s && (h1s->flags & (H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA))) {
1756 if (!b_data(&h1c->ibuf))
1757 h1_wake_stream_for_recv(h1s);
1758 rcvd = 1;
Christopher Faulet9768c262018-10-22 09:34:31 +02001759 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001760 }
1761
Olivier Houchard29a22bc2018-12-04 18:16:45 +01001762 /*
1763 * If we only have a small amount of data, realign it,
1764 * it's probably cheaper than doing 2 recv() calls.
1765 */
1766 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
1767 b_slow_realign(&h1c->ibuf, trash.area, 0);
1768
Willy Tarreau45f2b892018-12-05 07:59:27 +01001769 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001770 if (max) {
1771 h1c->flags &= ~H1C_F_IN_FULL;
Willy Tarreau78f548f2018-12-05 10:02:39 +01001772
Willy Tarreaue0f24ee2018-12-14 10:51:23 +01001773 b_realign_if_empty(&h1c->ibuf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01001774 if (!b_data(&h1c->ibuf)) {
1775 /* try to pre-align the buffer like the rxbufs will be
1776 * to optimize memory copies.
1777 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01001778 h1c->ibuf.head = sizeof(struct htx);
1779 }
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001780 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, 0);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001781 }
Christopher Faulet47365272018-10-31 17:40:50 +01001782 if (ret > 0) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02001783 rcvd = 1;
Christopher Fauletfeb11742018-11-29 15:12:34 +01001784 if (h1s && h1s->cs) {
Christopher Faulet37e36072018-12-04 15:54:12 +01001785 h1s->cs->flags |= (CS_FL_READ_PARTIAL|CS_FL_RCV_MORE);
Christopher Fauletfeb11742018-11-29 15:12:34 +01001786 if (h1s->csinfo.t_idle == -1)
1787 h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake;
1788 }
Christopher Faulet47365272018-10-31 17:40:50 +01001789 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001790
Christopher Fauletcf56b992018-12-11 16:12:31 +01001791 if (!h1_recv_allowed(h1c) || !buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet81d48432018-11-19 21:22:43 +01001792 rcvd = 1;
Christopher Fauletcf56b992018-12-11 16:12:31 +01001793 goto end;
1794 }
1795
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001796 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001797
Christopher Faulet9768c262018-10-22 09:34:31 +02001798 end:
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001799 if (ret > 0 || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn))
1800 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01001801
Christopher Faulete6b39942018-12-07 09:42:49 +01001802 if (conn_xprt_read0_pending(conn) && h1s && h1s->cs)
Christopher Faulet87a8f352019-03-22 14:51:36 +01001803 h1s->cs->flags |= CS_FL_REOS;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001804 if (!b_data(&h1c->ibuf))
1805 h1_release_buf(h1c, &h1c->ibuf);
Willy Tarreau45f2b892018-12-05 07:59:27 +01001806 else if (!buf_room_for_htx_data(&h1c->ibuf))
Christopher Faulet51dbc942018-09-13 09:05:15 +02001807 h1c->flags |= H1C_F_IN_FULL;
1808 return rcvd;
1809}
1810
1811
1812/*
1813 * Try to send data if possible
1814 */
1815static int h1_send(struct h1c *h1c)
1816{
1817 struct connection *conn = h1c->conn;
1818 unsigned int flags = 0;
1819 size_t ret;
1820 int sent = 0;
1821
1822 if (conn->flags & CO_FL_ERROR)
1823 return 0;
1824
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02001825 if (h1c->flags & H1C_F_CS_WAIT_CONN) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001826 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001827 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02001828 return 0;
1829 }
1830
Christopher Faulet51dbc942018-09-13 09:05:15 +02001831 if (!b_data(&h1c->obuf))
1832 goto end;
1833
1834 if (h1c->flags & H1C_F_OUT_FULL)
1835 flags |= CO_SFL_MSG_MORE;
1836
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001837 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001838 if (ret > 0) {
1839 h1c->flags &= ~H1C_F_OUT_FULL;
1840 b_del(&h1c->obuf, ret);
1841 sent = 1;
1842 }
1843
Christopher Faulet145aa472018-12-06 10:56:20 +01001844 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
1845 /* error or output closed, nothing to send, clear the buffer to release it */
1846 b_reset(&h1c->obuf);
1847 }
1848
Christopher Faulet51dbc942018-09-13 09:05:15 +02001849 end:
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001850 if (!(h1c->flags & H1C_F_OUT_FULL))
1851 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01001852
Christopher Faulet51dbc942018-09-13 09:05:15 +02001853 /* We're done, no more to send */
1854 if (!b_data(&h1c->obuf)) {
1855 h1_release_buf(h1c, &h1c->obuf);
1856 if (h1c->flags & H1C_F_CS_SHUTW_NOW)
Christopher Faulet666a0c42019-01-08 11:12:04 +01001857 h1_shutw_conn(conn, CS_SHW_NORMAL);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001858 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001859 else if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001860 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001861
1862 return sent;
1863}
1864
Christopher Faulet51dbc942018-09-13 09:05:15 +02001865
1866/* callback called on any event by the connection handler.
1867 * It applies changes and returns zero, or < 0 if it wants immediate
1868 * destruction of the connection.
1869 */
1870static int h1_process(struct h1c * h1c)
1871{
1872 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01001873 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001874
Willy Tarreau3d2ee552018-12-19 14:12:10 +01001875 if (!conn->ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001876 return -1;
1877
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02001878 if (h1c->flags & H1C_F_CS_WAIT_CONN) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001879 if (!(conn->flags & (CO_FL_CONNECTED|CO_FL_ERROR)))
1880 goto end;
1881 h1c->flags &= ~H1C_F_CS_WAIT_CONN;
Christopher Fauleta0883e62018-12-11 16:26:50 +01001882 h1_wake_stream_for_send(h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02001883 }
1884
Christopher Fauletfeb11742018-11-29 15:12:34 +01001885 if (!h1s) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001886 if (h1c->flags & H1C_F_CS_ERROR ||
Olivier Houchard32d75ed2019-01-14 17:27:23 +01001887 conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH) ||
Christopher Faulet539e0292018-11-19 10:40:09 +01001888 conn_xprt_read0_pending(conn))
1889 goto release;
Christopher Faulet666a0c42019-01-08 11:12:04 +01001890 if (!conn_is_back(conn) && !(h1c->flags & (H1C_F_CS_SHUTW_NOW|H1C_F_CS_SHUTDOWN))) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01001891 if (!h1s_create(h1c, NULL, NULL))
Christopher Faulet539e0292018-11-19 10:40:09 +01001892 goto release;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001893 }
Christopher Faulet1a7ad7a2018-12-04 16:10:44 +01001894 else
Olivier Houcharde7284782018-12-06 18:54:54 +01001895 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01001896 h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001897 }
1898
Christopher Fauletfeb11742018-11-29 15:12:34 +01001899 if (b_data(&h1c->ibuf) && h1s->csinfo.t_idle == -1)
1900 h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake;
1901
Olivier Houchard75159a92018-12-03 18:46:09 +01001902 if (!b_data(&h1c->ibuf) && h1s && h1s->cs && h1s->cs->data_cb->wake &&
1903 (conn_xprt_read0_pending(conn) || h1c->flags & H1C_F_CS_ERROR ||
Olivier Houchard32d75ed2019-01-14 17:27:23 +01001904 conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH))) {
Olivier Houchard75159a92018-12-03 18:46:09 +01001905 int flags = 0;
1906
1907 if (h1c->flags & H1C_F_CS_ERROR || conn->flags & CO_FL_ERROR)
1908 flags |= CS_FL_ERROR;
1909 if (conn_xprt_read0_pending(conn))
Christopher Faulet87a8f352019-03-22 14:51:36 +01001910 flags |= CS_FL_REOS;
Olivier Houchard75159a92018-12-03 18:46:09 +01001911 h1s->cs->flags |= flags;
1912 h1s->cs->data_cb->wake(h1s->cs);
1913 }
Christopher Faulet47365272018-10-31 17:40:50 +01001914 end:
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001915 if (h1c->task) {
1916 h1c->task->expire = TICK_ETERNITY;
1917 if (b_data(&h1c->obuf)) {
Christopher Faulet666a0c42019-01-08 11:12:04 +01001918 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 +01001919 ? h1c->shut_timeout
1920 : h1c->timeout));
1921 task_queue(h1c->task);
1922 }
1923 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001924 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01001925
1926 release:
Christopher Faulet73c12072019-04-08 11:23:22 +02001927 h1_release(h1c);
Christopher Faulet539e0292018-11-19 10:40:09 +01001928 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001929}
1930
1931static struct task *h1_io_cb(struct task *t, void *ctx, unsigned short status)
1932{
1933 struct h1c *h1c = ctx;
1934 int ret = 0;
1935
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001936 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02001937 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001938 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02001939 ret |= h1_recv(h1c);
Christopher Faulet81d48432018-11-19 21:22:43 +01001940 if (ret || !h1c->h1s)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001941 h1_process(h1c);
1942 return NULL;
1943}
1944
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01001945static void h1_reset(struct connection *conn)
1946{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01001947 struct h1c *h1c = conn->ctx;
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01001948
1949 /* Reset the flags, and let the mux know we're waiting for a connection */
1950 h1c->flags = H1C_F_CS_WAIT_CONN;
1951}
Christopher Faulet51dbc942018-09-13 09:05:15 +02001952
1953static int h1_wake(struct connection *conn)
1954{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01001955 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01001956 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001957
Christopher Faulet539e0292018-11-19 10:40:09 +01001958 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01001959 ret = h1_process(h1c);
1960 if (ret == 0) {
1961 struct h1s *h1s = h1c->h1s;
1962
1963 if (h1s && h1s->cs && h1s->cs->data_cb->wake)
1964 ret = h1s->cs->data_cb->wake(h1s->cs);
1965 }
1966 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001967}
1968
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001969/* Connection timeout management. The principle is that if there's no receipt
1970 * nor sending for a certain amount of time, the connection is closed.
1971 */
1972static struct task *h1_timeout_task(struct task *t, void *context, unsigned short state)
1973{
1974 struct h1c *h1c = context;
1975 int expired = tick_is_expired(t->expire, now_ms);
1976
1977 if (!expired && h1c)
1978 return t;
1979
Olivier Houchard3f795f72019-04-17 22:51:06 +02001980 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001981
1982 if (!h1c) {
1983 /* resources were already deleted */
1984 return NULL;
1985 }
1986
1987 h1c->task = NULL;
1988 /* If a stream is still attached to the mux, just set an error and wait
1989 * for the stream's timeout. Otherwise, release the mux. This is only ok
1990 * because same timeouts are used.
1991 */
1992 if (h1c->h1s && h1c->h1s->cs)
1993 h1c->flags |= H1C_F_CS_ERROR;
1994 else
Christopher Faulet73c12072019-04-08 11:23:22 +02001995 h1_release(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001996 return NULL;
1997}
1998
Christopher Faulet51dbc942018-09-13 09:05:15 +02001999/*******************************************/
2000/* functions below are used by the streams */
2001/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02002002
Christopher Faulet51dbc942018-09-13 09:05:15 +02002003/*
2004 * Attach a new stream to a connection
2005 * (Used for outgoing connections)
2006 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01002007static struct conn_stream *h1_attach(struct connection *conn, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002008{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002009 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002010 struct conn_stream *cs = NULL;
2011 struct h1s *h1s;
2012
2013 if (h1c->flags & H1C_F_CS_ERROR)
2014 goto end;
2015
2016 cs = cs_new(h1c->conn);
2017 if (!cs)
2018 goto end;
2019
Olivier Houchardf502aca2018-12-14 19:42:40 +01002020 h1s = h1s_create(h1c, cs, sess);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002021 if (h1s == NULL)
2022 goto end;
2023
2024 return cs;
2025 end:
2026 cs_free(cs);
2027 return NULL;
2028}
2029
2030/* Retrieves a valid conn_stream from this connection, or returns NULL. For
2031 * this mux, it's easy as we can only store a single conn_stream.
2032 */
2033static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
2034{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002035 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002036 struct h1s *h1s = h1c->h1s;
2037
2038 if (h1s)
2039 return h1s->cs;
2040
2041 return NULL;
2042}
2043
Christopher Faulet73c12072019-04-08 11:23:22 +02002044static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002045{
Christopher Faulet73c12072019-04-08 11:23:22 +02002046 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002047
Christopher Faulet39a96ee2019-04-08 10:52:21 +02002048 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02002049 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002050}
2051
2052/*
2053 * Detach the stream from the connection and possibly release the connection.
2054 */
2055static void h1_detach(struct conn_stream *cs)
2056{
2057 struct h1s *h1s = cs->ctx;
2058 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01002059 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01002060 int has_keepalive;
2061 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002062
2063 cs->ctx = NULL;
2064 if (!h1s)
2065 return;
2066
Olivier Houchardf502aca2018-12-14 19:42:40 +01002067 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002068 h1c = h1s->h1c;
2069 h1s->cs = NULL;
2070
Olivier Houchard8a786902018-12-15 16:05:40 +01002071 has_keepalive = h1s->flags & H1S_F_WANT_KAL;
2072 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
2073 h1s_destroy(h1s);
2074
2075 if (conn_is_back(h1c->conn) && has_keepalive &&
Olivier Houchard44d59142018-12-13 18:46:22 +01002076 !(h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Faulet9400a392018-11-23 23:10:39 +01002077 /* Never ever allow to reuse a connection from a non-reuse backend */
Olivier Houchard44d59142018-12-13 18:46:22 +01002078 if ((h1c->px->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
Christopher Faulet9400a392018-11-23 23:10:39 +01002079 h1c->conn->flags |= CO_FL_PRIVATE;
2080
Olivier Houchard44d59142018-12-13 18:46:22 +01002081 if (!(h1c->conn->owner)) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01002082 h1c->conn->owner = sess;
Olivier Houchard351411f2018-12-27 17:20:54 +01002083 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
2084 h1c->conn->owner = NULL;
2085 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn))
2086 /* The server doesn't want it, let's kill the connection right away */
2087 h1c->conn->mux->destroy(h1c->conn);
2088 else
2089 tasklet_wakeup(h1c->wait_event.task);
2090 return;
2091
2092 }
Olivier Houchard44d59142018-12-13 18:46:22 +01002093 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002094 if (h1c->conn->owner == sess) {
2095 int ret = session_check_idle_conn(sess, h1c->conn);
2096 if (ret == -1)
2097 /* The connection got destroyed, let's leave */
2098 return;
2099 else if (ret == 1) {
2100 /* The connection was added to the server list,
2101 * wake the task so we can subscribe to events
2102 */
2103 tasklet_wakeup(h1c->wait_event.task);
2104 return;
2105 }
2106 }
Christopher Faulet9400a392018-11-23 23:10:39 +01002107 /* we're in keep-alive with an idle connection, monitor it if not already done */
Olivier Houchard44d59142018-12-13 18:46:22 +01002108 if (LIST_ISEMPTY(&h1c->conn->list)) {
Christopher Faulet9400a392018-11-23 23:10:39 +01002109 struct server *srv = objt_server(h1c->conn->target);
2110
2111 if (srv) {
2112 if (h1c->conn->flags & CO_FL_PRIVATE)
2113 LIST_ADD(&srv->priv_conns[tid], &h1c->conn->list);
Olivier Houchard8a786902018-12-15 16:05:40 +01002114 else if (is_not_first)
Christopher Faulet9400a392018-11-23 23:10:39 +01002115 LIST_ADD(&srv->safe_conns[tid], &h1c->conn->list);
2116 else
2117 LIST_ADD(&srv->idle_conns[tid], &h1c->conn->list);
2118 }
2119 }
2120 }
2121
Christopher Faulet51dbc942018-09-13 09:05:15 +02002122 /* We don't want to close right now unless the connection is in error */
Christopher Faulet0ef372a2019-04-08 10:57:20 +02002123 if ((h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTDOWN|H1C_F_UPG_H2C)) ||
Olivier Houchard7ccff1a2018-12-03 16:33:19 +01002124 (h1c->conn->flags & CO_FL_ERROR) || !h1c->conn->owner)
Christopher Faulet73c12072019-04-08 11:23:22 +02002125 h1_release(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002126 else {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002127 tasklet_wakeup(h1c->wait_event.task);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002128 if (h1c->task) {
2129 h1c->task->expire = TICK_ETERNITY;
2130 if (b_data(&h1c->obuf)) {
Christopher Faulet666a0c42019-01-08 11:12:04 +01002131 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 +01002132 ? h1c->shut_timeout
2133 : h1c->timeout));
2134 task_queue(h1c->task);
2135 }
2136 }
2137 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002138}
2139
2140
2141static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
2142{
2143 struct h1s *h1s = cs->ctx;
Christopher Faulet7f366362019-04-08 10:51:20 +02002144 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002145
2146 if (!h1s)
2147 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02002148 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002149
Christopher Faulet7f366362019-04-08 10:51:20 +02002150 if ((cs->flags & CS_FL_KILL_CONN) || (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)))
2151 goto do_shutr;
2152
Christopher Faulet0ef372a2019-04-08 10:57:20 +02002153 if ((h1c->flags & H1C_F_UPG_H2C) || (h1s->flags & H1S_F_WANT_KAL))
Christopher Fauletf2824e62018-10-01 12:12:37 +02002154 return;
2155
Christopher Faulet7f366362019-04-08 10:51:20 +02002156 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002157 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
2158 if (cs->flags & CS_FL_SHR)
2159 return;
2160 if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002161 cs->conn->xprt->shutr(cs->conn, cs->conn->xprt_ctx,
2162 (mode == CS_SHR_DRAIN));
Christopher Faulet666a0c42019-01-08 11:12:04 +01002163 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 +02002164 h1c->flags = (h1c->flags & ~H1C_F_CS_SHUTW_NOW) | H1C_F_CS_SHUTDOWN;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002165}
2166
2167static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
2168{
2169 struct h1s *h1s = cs->ctx;
2170 struct h1c *h1c;
2171
2172 if (!h1s)
2173 return;
2174 h1c = h1s->h1c;
2175
Christopher Faulet7f366362019-04-08 10:51:20 +02002176 if ((cs->flags & CS_FL_KILL_CONN) || (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)))
2177 goto do_shutw;
Olivier Houchardd2e88c72018-12-19 15:55:23 +01002178
Christopher Faulet0ef372a2019-04-08 10:57:20 +02002179 if ((h1c->flags & H1C_F_UPG_H2C) ||
2180 ((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 +02002181 return;
2182
Christopher Faulet7f366362019-04-08 10:51:20 +02002183 do_shutw:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002184 h1c->flags |= H1C_F_CS_SHUTW_NOW;
2185 if ((cs->flags & CS_FL_SHW) || b_data(&h1c->obuf))
2186 return;
2187
Christopher Faulet666a0c42019-01-08 11:12:04 +01002188 h1_shutw_conn(cs->conn, mode);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002189}
2190
Christopher Faulet666a0c42019-01-08 11:12:04 +01002191static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002192{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002193 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002194
Christopher Faulet666a0c42019-01-08 11:12:04 +01002195 conn_xprt_shutw(conn);
2196 conn_sock_shutw(conn, (mode == CS_SHW_NORMAL));
2197 if ((conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH)) == (CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH))
2198 h1c->flags = (h1c->flags & ~H1C_F_CS_SHUTW_NOW) | H1C_F_CS_SHUTDOWN;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002199}
2200
2201/* Called from the upper layer, to unsubscribe to events */
2202static int h1_unsubscribe(struct conn_stream *cs, int event_type, void *param)
2203{
2204 struct wait_event *sw;
2205 struct h1s *h1s = cs->ctx;
2206
2207 if (!h1s)
2208 return 0;
2209
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002210 if (event_type & SUB_RETRY_RECV) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002211 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002212 BUG_ON(h1s->recv_wait != sw);
2213 sw->events &= ~SUB_RETRY_RECV;
2214 h1s->recv_wait = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002215 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002216 if (event_type & SUB_RETRY_SEND) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002217 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002218 BUG_ON(h1s->send_wait != sw);
2219 sw->events &= ~SUB_RETRY_SEND;
2220 h1s->send_wait = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002221 }
2222 return 0;
2223}
2224
2225/* Called from the upper layer, to subscribe to events, such as being able to send */
2226static int h1_subscribe(struct conn_stream *cs, int event_type, void *param)
2227{
2228 struct wait_event *sw;
2229 struct h1s *h1s = cs->ctx;
2230
2231 if (!h1s)
2232 return -1;
2233
2234 switch (event_type) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002235 case SUB_RETRY_RECV:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002236 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002237 BUG_ON(h1s->recv_wait != NULL || (sw->events & SUB_RETRY_RECV));
2238 sw->events |= SUB_RETRY_RECV;
2239 h1s->recv_wait = sw;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002240 return 0;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002241 case SUB_RETRY_SEND:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002242 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002243 BUG_ON(h1s->send_wait != NULL || (sw->events & SUB_RETRY_SEND));
2244 sw->events |= SUB_RETRY_SEND;
2245 h1s->send_wait = sw;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002246 return 0;
2247 default:
2248 break;
2249 }
2250 return -1;
2251}
2252
2253/* Called from the upper layer, to receive data */
2254static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
2255{
2256 struct h1s *h1s = cs->ctx;
Christopher Faulet539e0292018-11-19 10:40:09 +01002257 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002258 size_t ret = 0;
2259
Christopher Faulet539e0292018-11-19 10:40:09 +01002260 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet30db3d72019-05-17 15:35:33 +02002261 ret = h1_process_input(h1c, buf, count);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002262
Christopher Faulete18777b2019-04-16 16:46:36 +02002263 if (flags & CO_RFL_BUF_FLUSH) {
2264 struct h1m *h1m = (!conn_is_back(cs->conn) ? &h1s->req : &h1s->res);
2265
2266 if (h1m->state != H1_MSG_TUNNEL || (h1m->state == H1_MSG_DATA && h1m->curr_len))
2267 h1s->flags |= H1S_F_BUF_FLUSH;
2268 }
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002269 else if (ret > 0 || (h1s->flags & H1S_F_SPLICED_DATA)) {
2270 h1s->flags &= ~H1S_F_SPLICED_DATA;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002271 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet539e0292018-11-19 10:40:09 +01002272 tasklet_wakeup(h1c->wait_event.task);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002273 }
2274 return ret;
2275}
2276
2277
2278/* Called from the upper layer, to send data */
2279static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
2280{
2281 struct h1s *h1s = cs->ctx;
2282 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002283 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002284
2285 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002286 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002287
2288 h1c = h1s->h1c;
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002289 if (h1c->flags & H1C_F_CS_WAIT_CONN)
2290 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002291
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002292 while (total != count) {
2293 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002294
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002295 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
2296 ret = h1_process_output(h1c, buf, count);
2297 if (!ret)
2298 break;
2299 total += ret;
2300 if (!h1_send(h1c))
2301 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002302 }
Christopher Fauletf96c3222018-11-20 18:38:01 +01002303
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002304 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002305}
2306
Willy Tarreaue5733232019-05-22 19:24:06 +02002307#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02002308/* Send and get, using splicing */
2309static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
2310{
2311 struct h1s *h1s = cs->ctx;
2312 struct h1m *h1m = (!conn_is_back(cs->conn) ? &h1s->req : &h1s->res);
2313 int ret = 0;
2314
Christopher Faulete18777b2019-04-16 16:46:36 +02002315 if ((h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL) ||
2316 (h1m->state == H1_MSG_DATA && !h1m->curr_len)) {
2317 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002318 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_RECV, &h1s->h1c->wait_event);
Christopher Faulete18777b2019-04-16 16:46:36 +02002319 goto end;
2320 }
2321
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002322 if (b_data(&h1s->h1c->ibuf)) {
2323 h1s->flags |= H1S_F_BUF_FLUSH;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002324 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002325 }
2326
2327 h1s->flags &= ~H1S_F_BUF_FLUSH;
2328 h1s->flags |= H1S_F_SPLICED_DATA;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002329 if (h1m->state == H1_MSG_DATA && count > h1m->curr_len)
2330 count = h1m->curr_len;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002331 ret = cs->conn->xprt->rcv_pipe(cs->conn, cs->conn->xprt_ctx, pipe, count);
Christopher Faulete18777b2019-04-16 16:46:36 +02002332 if (h1m->state == H1_MSG_DATA && ret > 0) {
Christopher Faulet1be55f92018-10-02 15:59:23 +02002333 h1m->curr_len -= ret;
Christopher Faulete18777b2019-04-16 16:46:36 +02002334 if (!h1m->curr_len)
2335 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
2336 }
2337
Christopher Faulet1be55f92018-10-02 15:59:23 +02002338 end:
Christopher Faulet038ad812019-04-17 11:03:22 +02002339 if (conn_xprt_read0_pending(cs->conn)) {
2340 cs->flags |= CS_FL_REOS;
2341 if (!pipe->data)
2342 cs->flags |= CS_FL_EOS;
2343 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002344 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002345}
2346
2347static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
2348{
2349 struct h1s *h1s = cs->ctx;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002350 int ret = 0;
2351
2352 if (b_data(&h1s->h1c->obuf))
2353 goto end;
2354
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002355 ret = cs->conn->xprt->snd_pipe(cs->conn, cs->conn->xprt_ctx, pipe);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002356 end:
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002357 if (pipe->data) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002358 if (!(h1s->h1c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002359 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_SEND, &h1s->h1c->wait_event);
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002360 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002361 return ret;
2362}
2363#endif
2364
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002365/* for debugging with CLI's "show fd" command */
2366static void h1_show_fd(struct buffer *msg, struct connection *conn)
2367{
2368 struct h1c *h1c = conn->ctx;
2369 struct h1s *h1s = h1c->h1s;
2370
Christopher Fauletf376a312019-01-04 15:16:06 +01002371 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
2372 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002373 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
2374 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
2375 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
2376 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
2377
2378 if (h1s) {
2379 char *method;
2380
2381 if (h1s->meth < HTTP_METH_OTHER)
2382 method = http_known_methods[h1s->meth].ptr;
2383 else
2384 method = "UNKNOWN";
2385 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
2386 " .meth=%s status=%d",
2387 h1s, h1s->flags,
2388 h1m_state_str(h1s->req.state),
2389 h1m_state_str(h1s->res.state), method, h1s->status);
2390 if (h1s->cs)
2391 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
2392 h1s->cs->flags, h1s->cs->data);
2393 }
2394}
2395
Christopher Faulet51dbc942018-09-13 09:05:15 +02002396/****************************************/
2397/* MUX initialization and instanciation */
2398/****************************************/
2399
2400/* The mux operations */
Willy Tarreauf77a1582019-01-10 10:00:08 +01002401static const struct mux_ops mux_h1_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002402 .init = h1_init,
2403 .wake = h1_wake,
2404 .attach = h1_attach,
2405 .get_first_cs = h1_get_first_cs,
Christopher Fauletfeb11742018-11-29 15:12:34 +01002406 .get_cs_info = h1_get_cs_info,
Christopher Faulet51dbc942018-09-13 09:05:15 +02002407 .detach = h1_detach,
2408 .destroy = h1_destroy,
2409 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01002410 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02002411 .rcv_buf = h1_rcv_buf,
2412 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02002413#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02002414 .rcv_pipe = h1_rcv_pipe,
2415 .snd_pipe = h1_snd_pipe,
2416#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02002417 .subscribe = h1_subscribe,
2418 .unsubscribe = h1_unsubscribe,
2419 .shutr = h1_shutr,
2420 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002421 .show_fd = h1_show_fd,
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002422 .reset = h1_reset,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02002423 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02002424 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02002425};
2426
2427
2428/* this mux registers default HTX proto */
2429static struct mux_proto_list mux_proto_htx =
2430{ .token = IST(""), .mode = PROTO_MODE_HTX, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
2431
Willy Tarreau0108d902018-11-25 19:14:37 +01002432INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_htx);
2433
Christopher Faulet51dbc942018-09-13 09:05:15 +02002434/*
2435 * Local variables:
2436 * c-indent-level: 8
2437 * c-basic-offset: 8
2438 * End:
2439 */