blob: c46146f7d3e0baec6434ac20ec9c0bb793aa92da [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 Fauleta99ff4d2019-07-22 16:18:24 +020019#include <ebistree.h>
20
Christopher Faulet1be55f92018-10-02 15:59:23 +020021#include <types/pipe.h>
Christopher Fauletf2824e62018-10-01 12:12:37 +020022#include <types/proxy.h>
23#include <types/session.h>
24
Christopher Faulet51dbc942018-09-13 09:05:15 +020025#include <proto/connection.h>
Christopher Faulet9768c262018-10-22 09:34:31 +020026#include <proto/http_htx.h>
Christopher Faulet129817b2018-09-20 16:14:40 +020027#include <proto/log.h>
Olivier Houchard44d59142018-12-13 18:46:22 +010028#include <proto/session.h>
Christopher Faulet51dbc942018-09-13 09:05:15 +020029#include <proto/stream.h>
30#include <proto/stream_interface.h>
31
32/*
33 * H1 Connection flags (32 bits)
34 */
35#define H1C_F_NONE 0x00000000
36
37/* Flags indicating why writing output data are blocked */
38#define H1C_F_OUT_ALLOC 0x00000001 /* mux is blocked on lack of output buffer */
39#define H1C_F_OUT_FULL 0x00000002 /* mux is blocked on output buffer full */
40/* 0x00000004 - 0x00000008 unused */
41
42/* Flags indicating why reading input data are blocked. */
43#define H1C_F_IN_ALLOC 0x00000010 /* mux is blocked on lack of input buffer */
44#define H1C_F_IN_FULL 0x00000020 /* mux is blocked on input buffer full */
Christopher Fauletf36e72b2019-12-05 11:18:31 +010045#define H1C_F_IN_BUSY 0x00000040 /* mux is blocked on input waiting the other side */
Christopher Faulete31a0f12019-12-05 10:23:37 +010046/* 0x00000040 - 0x00000400 unused */
Christopher Faulet51dbc942018-09-13 09:05:15 +020047
Christopher Faulete31a0f12019-12-05 10:23:37 +010048#define H1C_F_CS_WAIT_CONN 0x00000800 /* waiting for the connection establishment */
Christopher Faulet51dbc942018-09-13 09:05:15 +020049#define H1C_F_CS_ERROR 0x00001000 /* connection must be closed ASAP because an error occurred */
50#define H1C_F_CS_SHUTW_NOW 0x00002000 /* connection must be shut down for writes ASAP */
Christopher Fauletf36e72b2019-12-05 11:18:31 +010051#define H1C_F_CS_SHUTDOWN 0x00004000 /* connection is shut down */
Christopher Faulete31a0f12019-12-05 10:23:37 +010052#define H1C_F_CS_IDLE 0x00008000 /* connection is idle and may be reused
53 * (exclusive to all H1C_F_CS flags and never set when an h1s is attached) */
Christopher Faulet51dbc942018-09-13 09:05:15 +020054
Christopher Fauletf2824e62018-10-01 12:12:37 +020055#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 +020056#define H1C_F_UPG_H2C 0x00020000 /* set if an upgrade to h2 should be done */
Christopher Faulet129817b2018-09-20 16:14:40 +020057
Christopher Faulet51dbc942018-09-13 09:05:15 +020058/*
59 * H1 Stream flags (32 bits)
60 */
Christopher Faulet129817b2018-09-20 16:14:40 +020061#define H1S_F_NONE 0x00000000
62#define H1S_F_ERROR 0x00000001 /* An error occurred on the H1 stream */
Christopher Fauletf2824e62018-10-01 12:12:37 +020063#define H1S_F_REQ_ERROR 0x00000002 /* An error occurred during the request parsing/xfer */
64#define H1S_F_RES_ERROR 0x00000004 /* An error occurred during the response parsing/xfer */
Willy Tarreauc493c9c2019-06-03 14:18:22 +020065#define H1S_F_REOS 0x00000008 /* End of input stream seen even if not delivered yet */
Christopher Fauletf2824e62018-10-01 12:12:37 +020066#define H1S_F_WANT_KAL 0x00000010
67#define H1S_F_WANT_TUN 0x00000020
68#define H1S_F_WANT_CLO 0x00000040
69#define H1S_F_WANT_MSK 0x00000070
70#define H1S_F_NOT_FIRST 0x00000080 /* The H1 stream is not the first one */
Christopher Faulet539e0292018-11-19 10:40:09 +010071#define H1S_F_BUF_FLUSH 0x00000100 /* Flush input buffer and don't read more data */
Christopher Fauletd44ad5b2018-11-19 21:52:12 +010072#define H1S_F_SPLICED_DATA 0x00000200 /* Set when the kernel splicing is in used */
Willy Tarreau34d23482019-01-03 17:46:56 +010073#define H1S_F_HAVE_I_TLR 0x00000800 /* Set during input process to know the trailers were processed */
Willy Tarreau62038152019-08-23 09:29:29 +020074#define H1S_F_APPEND_EOM 0x00001000 /* Send EOM to the HTX buffer */
75/* 0x00002000 .. 0x00002000 unused */
Christopher Fauletada34b62019-05-24 16:36:43 +020076#define H1S_F_HAVE_O_CONN 0x00004000 /* Set during output process to know connection mode was processed */
Christopher Faulet51dbc942018-09-13 09:05:15 +020077
78/* H1 connection descriptor */
Christopher Faulet51dbc942018-09-13 09:05:15 +020079struct h1c {
80 struct connection *conn;
81 struct proxy *px;
82 uint32_t flags; /* Connection flags: H1C_F_* */
83
84 struct buffer ibuf; /* Input buffer to store data before parsing */
85 struct buffer obuf; /* Output buffer to store data after reformatting */
86
87 struct buffer_wait buf_wait; /* Wait list for buffer allocation */
88 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
89
90 struct h1s *h1s; /* H1 stream descriptor */
Christopher Fauletb8093cf2019-01-03 16:27:28 +010091 struct task *task; /* timeout management task */
92 int timeout; /* idle timeout duration in ticks */
93 int shut_timeout; /* idle timeout duration in ticks after stream shutdown */
Christopher Faulet51dbc942018-09-13 09:05:15 +020094};
95
96/* H1 stream descriptor */
97struct h1s {
98 struct h1c *h1c;
99 struct conn_stream *cs;
Christopher Fauletfeb11742018-11-29 15:12:34 +0100100 struct cs_info csinfo; /* CS info, only used for client connections */
101 uint32_t flags; /* Connection flags: H1S_F_* */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200102
Christopher Faulet51dbc942018-09-13 09:05:15 +0200103 struct wait_event *recv_wait; /* Address of the wait_event the conn_stream associated is waiting on */
104 struct wait_event *send_wait; /* Address of the wait_event the conn_stream associated is waiting on */
Christopher Faulet129817b2018-09-20 16:14:40 +0200105
Olivier Houchardf502aca2018-12-14 19:42:40 +0100106 struct session *sess; /* Associated session */
Christopher Faulet129817b2018-09-20 16:14:40 +0200107 struct h1m req;
108 struct h1m res;
109
110 enum http_meth_t meth; /* HTTP resquest method */
111 uint16_t status; /* HTTP response status */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200112};
113
Christopher Fauleta99ff4d2019-07-22 16:18:24 +0200114/* Map of headers used to convert outgoing headers */
115struct h1_hdrs_map {
116 char *name;
117 struct eb_root map;
118};
119
120/* An entry in a headers map */
121struct h1_hdr_entry {
122 struct ist name;
123 struct ebpt_node node;
124};
125
126/* Declare the headers map */
127static struct h1_hdrs_map hdrs_map = { .name = NULL, .map = EB_ROOT };
128
129
Christopher Faulet51dbc942018-09-13 09:05:15 +0200130/* the h1c and h1s pools */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100131DECLARE_STATIC_POOL(pool_head_h1c, "h1c", sizeof(struct h1c));
132DECLARE_STATIC_POOL(pool_head_h1s, "h1s", sizeof(struct h1s));
Christopher Faulet51dbc942018-09-13 09:05:15 +0200133
Christopher Faulet51dbc942018-09-13 09:05:15 +0200134static int h1_recv(struct h1c *h1c);
135static int h1_send(struct h1c *h1c);
136static int h1_process(struct h1c *h1c);
137static struct task *h1_io_cb(struct task *t, void *ctx, unsigned short state);
Christopher Faulet666a0c42019-01-08 11:12:04 +0100138static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100139static struct task *h1_timeout_task(struct task *t, void *context, unsigned short state);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200140
141/*****************************************************/
142/* functions below are for dynamic buffer management */
143/*****************************************************/
144/*
Christopher Faulet7caf1502019-12-05 12:30:55 +0100145 * Indicates whether or not we may receive data. The rules are the following :
146 * - if an error or a shutdown for reads was detected on the connection we
147 must not attempt to receive
148 * - if the input buffer failed to be allocated or is full , we must not try
149 * to receive
150 * - if he input processing is busy waiting for the output side, we may
151 * attemp to receive
Christopher Faulet51dbc942018-09-13 09:05:15 +0200152 * - otherwise must may not attempt to receive
153 */
154static inline int h1_recv_allowed(const struct h1c *h1c)
155{
Christopher Faulet7caf1502019-12-05 12:30:55 +0100156 if (h1c->flags & H1C_F_CS_ERROR)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200157 return 0;
158
Christopher Faulet7caf1502019-12-05 12:30:55 +0100159 if (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH))
Christopher Fauletcf56b992018-12-11 16:12:31 +0100160 return 0;
161
Christopher Faulet366312a2021-04-08 18:34:30 +0200162 if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL)))
Christopher Faulet51dbc942018-09-13 09:05:15 +0200163 return 1;
164
165 return 0;
166}
167
168/*
169 * Tries to grab a buffer and to re-enables processing on mux <target>. The h1
170 * flags are used to figure what buffer was requested. It returns 1 if the
171 * allocation succeeds, in which case the connection is woken up, or 0 if it's
172 * impossible to wake up and we prefer to be woken up later.
173 */
174static int h1_buf_available(void *target)
175{
176 struct h1c *h1c = target;
177
178 if ((h1c->flags & H1C_F_IN_ALLOC) && b_alloc_margin(&h1c->ibuf, 0)) {
179 h1c->flags &= ~H1C_F_IN_ALLOC;
180 if (h1_recv_allowed(h1c))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200181 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200182 return 1;
183 }
184
185 if ((h1c->flags & H1C_F_OUT_ALLOC) && b_alloc_margin(&h1c->obuf, 0)) {
186 h1c->flags &= ~H1C_F_OUT_ALLOC;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200187 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200188 return 1;
189 }
190
Christopher Faulet51dbc942018-09-13 09:05:15 +0200191 return 0;
192}
193
194/*
195 * Allocate a buffer. If if fails, it adds the mux in buffer wait queue.
196 */
197static inline struct buffer *h1_get_buf(struct h1c *h1c, struct buffer *bptr)
198{
199 struct buffer *buf = NULL;
200
201 if (likely(LIST_ISEMPTY(&h1c->buf_wait.list)) &&
202 unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) {
203 h1c->buf_wait.target = h1c;
204 h1c->buf_wait.wakeup_cb = h1_buf_available;
205 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
206 LIST_ADDQ(&buffer_wq, &h1c->buf_wait.list);
207 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
208 __conn_xprt_stop_recv(h1c->conn);
209 }
210 return buf;
211}
212
213/*
214 * Release a buffer, if any, and try to wake up entities waiting in the buffer
215 * wait queue.
216 */
217static inline void h1_release_buf(struct h1c *h1c, struct buffer *bptr)
218{
219 if (bptr->size) {
220 b_free(bptr);
221 offer_buffers(h1c->buf_wait.target, tasks_run_queue);
222 }
223}
224
Christopher Faulete31a0f12019-12-05 10:23:37 +0100225/* returns the number of streams in use on a connection to figure if it's idle
226 * or not. We rely on H1C_F_CS_IDLE to know if the connection is in-use or
227 * not. This flag is only set when no H1S is attached and when the previous
228 * stream, if any, was fully terminated without any error and in K/A mode.
Willy Tarreau00f18a32019-01-26 12:19:01 +0100229 */
230static int h1_used_streams(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200231{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100232 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200233
Christopher Faulete31a0f12019-12-05 10:23:37 +0100234 return ((h1c->flags & H1C_F_CS_IDLE) ? 0 : 1);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200235}
236
Willy Tarreau00f18a32019-01-26 12:19:01 +0100237/* returns the number of streams still available on a connection */
238static int h1_avail_streams(struct connection *conn)
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100239{
Willy Tarreau00f18a32019-01-26 12:19:01 +0100240 return 1 - h1_used_streams(conn);
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100241}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200242
Christopher Fauletb5762062020-08-05 11:31:16 +0200243/* Refresh the h1c task timeout if necessary */
244static void h1_refresh_timeout(struct h1c *h1c)
245{
246 if (h1c->task) {
247 h1c->task->expire = TICK_ETERNITY;
Willy Tarreau08144582020-09-08 15:40:57 +0200248 if (h1c->flags & H1C_F_CS_SHUTDOWN) {
249 /* half-closed connections switch to clientfin/serverfin
250 * timeouts so that we don't hang too long on clients
251 * that have gone away (especially in tunnel mode).
252 */
253 h1c->task->expire = tick_add(now_ms, h1c->shut_timeout);
254 task_queue(h1c->task);
255 } else if ((!h1c->h1s && !conn_is_back(h1c->conn)) || b_data(&h1c->obuf)) {
Christopher Fauletb5762062020-08-05 11:31:16 +0200256 /* front connections waiting for a stream, as well as any connection with
257 * pending data, need a timeout.
258 */
Willy Tarreau08144582020-09-08 15:40:57 +0200259 h1c->task->expire = tick_add(now_ms, ((h1c->flags & H1C_F_CS_SHUTW_NOW)
Christopher Fauletb5762062020-08-05 11:31:16 +0200260 ? h1c->shut_timeout
261 : h1c->timeout));
262 task_queue(h1c->task);
263 }
264 }
265}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200266/*****************************************************************/
267/* functions below are dedicated to the mux setup and management */
268/*****************************************************************/
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200269
270/* returns non-zero if there are input data pending for stream h1s. */
271static inline size_t h1s_data_pending(const struct h1s *h1s)
272{
273 const struct h1m *h1m;
274
275 h1m = conn_is_back(h1s->h1c->conn) ? &h1s->res : &h1s->req;
276 if (h1m->state == H1_MSG_DONE)
277 return 0; // data not for this stream (e.g. pipelining)
278
279 return b_data(&h1s->h1c->ibuf);
280}
281
Christopher Faulet47365272018-10-31 17:40:50 +0100282static struct conn_stream *h1s_new_cs(struct h1s *h1s)
283{
284 struct conn_stream *cs;
285
286 cs = cs_new(h1s->h1c->conn);
287 if (!cs)
288 goto err;
289 h1s->cs = cs;
290 cs->ctx = h1s;
291
292 if (h1s->flags & H1S_F_NOT_FIRST)
293 cs->flags |= CS_FL_NOT_FIRST;
294
Willy Tarreau7e9dd732020-01-17 16:19:34 +0100295 if (global.tune.options & GTUNE_USE_SPLICE)
296 cs->flags |= CS_FL_MAY_SPLICE;
297
Christopher Faulet47365272018-10-31 17:40:50 +0100298 if (stream_create_from_cs(cs) < 0)
299 goto err;
300 return cs;
301
302 err:
303 cs_free(cs);
304 h1s->cs = NULL;
305 return NULL;
306}
307
Olivier Houchardf502aca2018-12-14 19:42:40 +0100308static struct h1s *h1s_create(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200309{
310 struct h1s *h1s;
311
312 h1s = pool_alloc(pool_head_h1s);
313 if (!h1s)
Christopher Faulet47365272018-10-31 17:40:50 +0100314 goto fail;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200315
316 h1s->h1c = h1c;
317 h1c->h1s = h1s;
318
Olivier Houchardf502aca2018-12-14 19:42:40 +0100319 h1s->sess = sess;
320
Christopher Faulet51dbc942018-09-13 09:05:15 +0200321 h1s->cs = NULL;
Christopher Fauletb992af02019-03-28 15:42:24 +0100322 h1s->flags = H1S_F_WANT_KAL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200323
324 h1s->recv_wait = NULL;
325 h1s->send_wait = NULL;
Christopher Faulet129817b2018-09-20 16:14:40 +0200326
327 h1m_init_req(&h1s->req);
Christopher Fauletb992af02019-03-28 15:42:24 +0100328 h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +0200329
Christopher Faulet129817b2018-09-20 16:14:40 +0200330 h1m_init_res(&h1s->res);
Christopher Fauletb992af02019-03-28 15:42:24 +0100331 h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet129817b2018-09-20 16:14:40 +0200332
333 h1s->status = 0;
334 h1s->meth = HTTP_METH_OTHER;
335
Christopher Faulet47365272018-10-31 17:40:50 +0100336 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
337 h1s->flags |= H1S_F_NOT_FIRST;
Christopher Faulete31a0f12019-12-05 10:23:37 +0100338 h1c->flags &= ~(H1C_F_CS_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Faulet47365272018-10-31 17:40:50 +0100339
Christopher Faulet129817b2018-09-20 16:14:40 +0200340 if (!conn_is_back(h1c->conn)) {
341 if (h1c->px->options2 & PR_O2_REQBUG_OK)
342 h1s->req.err_pos = -1;
Christopher Faulete9b70722019-04-08 10:46:02 +0200343
344 /* For frontend connections we should always have a session */
345 if (!sess)
Christopher Faulet823613c2020-09-30 15:00:13 +0200346 h1s->sess = sess = h1c->conn->owner;
Christopher Faulete9b70722019-04-08 10:46:02 +0200347
Dave Pirottecf67ec52019-07-10 13:57:38 +0000348 /* Timers for subsequent sessions on the same HTTP 1.x connection
349 * measure from `now`, not from the connection accept time */
350 if (h1s->flags & H1S_F_NOT_FIRST) {
351 h1s->csinfo.create_date = date;
352 h1s->csinfo.tv_create = now;
353 h1s->csinfo.t_handshake = 0;
354 h1s->csinfo.t_idle = -1;
355 }
356 else {
357 h1s->csinfo.create_date = sess->accept_date;
358 h1s->csinfo.tv_create = sess->tv_accept;
359 h1s->csinfo.t_handshake = sess->t_handshake;
360 h1s->csinfo.t_idle = -1;
361 }
Christopher Faulet129817b2018-09-20 16:14:40 +0200362 }
363 else {
364 if (h1c->px->options2 & PR_O2_RSPBUG_OK)
365 h1s->res.err_pos = -1;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200366
Christopher Fauletfeb11742018-11-29 15:12:34 +0100367 h1s->csinfo.create_date = date;
368 h1s->csinfo.tv_create = now;
369 h1s->csinfo.t_handshake = 0;
370 h1s->csinfo.t_idle = -1;
Christopher Faulete9b70722019-04-08 10:46:02 +0200371 }
Christopher Fauletfeb11742018-11-29 15:12:34 +0100372
Christopher Faulete9b70722019-04-08 10:46:02 +0200373 /* If a conn_stream already exists, attach it to this H1S. Otherwise we
374 * create a new one.
375 */
376 if (cs) {
Christopher Fauletf2824e62018-10-01 12:12:37 +0200377 cs->ctx = h1s;
378 h1s->cs = cs;
379 }
Christopher Faulet47365272018-10-31 17:40:50 +0100380 else {
381 cs = h1s_new_cs(h1s);
382 if (!cs)
383 goto fail;
384 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200385 return h1s;
Christopher Faulet47365272018-10-31 17:40:50 +0100386
387 fail:
388 pool_free(pool_head_h1s, h1s);
389 return NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200390}
391
392static void h1s_destroy(struct h1s *h1s)
393{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200394 if (h1s) {
395 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200396
Christopher Fauletf2824e62018-10-01 12:12:37 +0200397 h1c->h1s = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200398
Christopher Fauletf2824e62018-10-01 12:12:37 +0200399 if (h1s->recv_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100400 h1s->recv_wait->events &= ~SUB_RETRY_RECV;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200401 if (h1s->send_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100402 h1s->send_wait->events &= ~SUB_RETRY_SEND;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200403
Christopher Fauletcb55f482018-12-10 11:56:47 +0100404 h1c->flags &= ~H1C_F_IN_BUSY;
Christopher Faulet47365272018-10-31 17:40:50 +0100405 if (h1s->flags & (H1S_F_REQ_ERROR|H1S_F_RES_ERROR))
406 h1c->flags |= H1C_F_CS_ERROR;
Christopher Faulete31a0f12019-12-05 10:23:37 +0100407
408 if (!(h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTW_NOW|H1C_F_CS_SHUTDOWN)) && /* No error/shutdown on h1c */
409 !(h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH)) && /* No error/shutdown on conn */
410 (h1s->flags & H1S_F_WANT_KAL) && /* K/A possible */
411 h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) { /* req/res in DONE state */
412 h1c->flags |= (H1C_F_CS_IDLE|H1C_F_WAIT_NEXT_REQ);
413 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200414 pool_free(pool_head_h1s, h1s);
415 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200416}
417
Christopher Fauletfeb11742018-11-29 15:12:34 +0100418static const struct cs_info *h1_get_cs_info(struct conn_stream *cs)
419{
420 struct h1s *h1s = cs->ctx;
421
422 if (h1s && !conn_is_back(cs->conn))
423 return &h1s->csinfo;
424 return NULL;
425}
426
Christopher Faulet51dbc942018-09-13 09:05:15 +0200427/*
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200428 * Initialize the mux once it's attached. It is expected that conn->ctx points
429 * to the existing conn_stream (for outgoing connections or for incoming onces
430 * during a mux upgrade) or NULL (for incoming ones during the connexion
431 * establishment). <input> is always used as Input buffer and may contain
432 * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on
433 * error.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200434 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200435static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess,
436 struct buffer *input)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200437{
Christopher Faulet51dbc942018-09-13 09:05:15 +0200438 struct h1c *h1c;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100439 struct task *t = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200440
441 h1c = pool_alloc(pool_head_h1c);
442 if (!h1c)
443 goto fail_h1c;
444 h1c->conn = conn;
445 h1c->px = proxy;
446
Christopher Faulete31a0f12019-12-05 10:23:37 +0100447 h1c->flags = H1C_F_CS_IDLE;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200448 h1c->ibuf = *input;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200449 h1c->obuf = BUF_NULL;
450 h1c->h1s = NULL;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200451 h1c->task = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200452
Christopher Faulet51dbc942018-09-13 09:05:15 +0200453 LIST_INIT(&h1c->buf_wait.list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200454 h1c->wait_event.tasklet = tasklet_new();
455 if (!h1c->wait_event.tasklet)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200456 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200457 h1c->wait_event.tasklet->process = h1_io_cb;
458 h1c->wait_event.tasklet->context = h1c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100459 h1c->wait_event.events = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200460
Christopher Faulete9b70722019-04-08 10:46:02 +0200461 if (conn_is_back(conn)) {
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100462 h1c->shut_timeout = h1c->timeout = proxy->timeout.server;
463 if (tick_isset(proxy->timeout.serverfin))
464 h1c->shut_timeout = proxy->timeout.serverfin;
465 } else {
466 h1c->shut_timeout = h1c->timeout = proxy->timeout.client;
467 if (tick_isset(proxy->timeout.clientfin))
468 h1c->shut_timeout = proxy->timeout.clientfin;
469 }
470 if (tick_isset(h1c->timeout)) {
471 t = task_new(tid_bit);
472 if (!t)
473 goto fail;
474
475 h1c->task = t;
476 t->process = h1_timeout_task;
477 t->context = h1c;
478 t->expire = tick_add(now_ms, h1c->timeout);
479 }
480
Olivier Houchard985234d2019-06-13 17:54:33 +0200481 if (!(conn->flags & CO_FL_CONNECTED) || (conn->flags & CO_FL_HANDSHAKE))
Christopher Faulet3b88b8d2018-10-26 17:36:03 +0200482 h1c->flags |= H1C_F_CS_WAIT_CONN;
483
Christopher Fauletf2824e62018-10-01 12:12:37 +0200484 /* Always Create a new H1S */
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100485 if (!h1s_create(h1c, conn->ctx, sess))
Christopher Fauletf2824e62018-10-01 12:12:37 +0200486 goto fail;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200487
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100488 conn->ctx = h1c;
Christopher Faulet129817b2018-09-20 16:14:40 +0200489
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100490
491 if (t)
492 task_queue(t);
493
Christopher Faulet51dbc942018-09-13 09:05:15 +0200494 /* Try to read, if nothing is available yet we'll just subscribe */
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200495 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200496
497 /* mux->wake will be called soon to complete the operation */
498 return 0;
499
500 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200501 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200502 if (h1c->wait_event.tasklet)
503 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200504 pool_free(pool_head_h1c, h1c);
505 fail_h1c:
506 return -1;
507}
508
Christopher Faulet73c12072019-04-08 11:23:22 +0200509/* release function. This one should be called to free all resources allocated
510 * to the mux.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200511 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200512static void h1_release(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200513{
Christopher Faulet61840e72019-04-15 09:33:32 +0200514 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200515
Christopher Faulet51dbc942018-09-13 09:05:15 +0200516 if (h1c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200517 /* The connection must be aattached to this mux to be released */
518 if (h1c->conn && h1c->conn->ctx == h1c)
519 conn = h1c->conn;
520
521 if (conn && h1c->flags & H1C_F_UPG_H2C) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200522 h1c->flags &= ~H1C_F_UPG_H2C;
Olivier Houchard13f556e2019-07-03 13:08:18 +0200523 /* Make sure we're no longer subscribed to anything */
524 if (h1c->wait_event.events)
525 conn->xprt->unsubscribe(conn, conn->xprt_ctx,
526 h1c->wait_event.events, &h1c->wait_event);
Olivier Houchard45c44372019-06-11 14:06:23 +0200527 if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTX) != -1) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200528 /* connection successfully upgraded to H2, this
529 * mux was already released */
530 return;
531 }
532 sess_log(conn->owner); /* Log if the upgrade failed */
533 }
534
Olivier Houchard45c44372019-06-11 14:06:23 +0200535
Christopher Faulet51dbc942018-09-13 09:05:15 +0200536 if (!LIST_ISEMPTY(&h1c->buf_wait.list)) {
537 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
538 LIST_DEL(&h1c->buf_wait.list);
539 LIST_INIT(&h1c->buf_wait.list);
540 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
541 }
542
543 h1_release_buf(h1c, &h1c->ibuf);
544 h1_release_buf(h1c, &h1c->obuf);
545
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100546 if (h1c->task) {
547 h1c->task->context = NULL;
548 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
549 h1c->task = NULL;
550 }
551
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200552 if (h1c->wait_event.tasklet)
553 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200554
Christopher Fauletf2824e62018-10-01 12:12:37 +0200555 h1s_destroy(h1c->h1s);
Olivier Houchard0e079372019-04-15 17:51:16 +0200556 if (conn && h1c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100557 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events,
Olivier Houchard0e079372019-04-15 17:51:16 +0200558 &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200559 pool_free(pool_head_h1c, h1c);
560 }
561
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200562 if (conn) {
563 conn->mux = NULL;
564 conn->ctx = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200565
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200566 conn_stop_tracking(conn);
567 conn_full_close(conn);
568 if (conn->destroy_cb)
569 conn->destroy_cb(conn);
570 conn_free(conn);
571 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200572}
573
574/******************************************************/
575/* functions below are for the H1 protocol processing */
576/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +0200577/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
578 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +0200579 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100580static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200581{
Christopher Faulet570d1612018-11-26 11:13:57 +0100582 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +0200583
Christopher Faulet570d1612018-11-26 11:13:57 +0100584 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200585 (*(p + 5) > '1' ||
586 (*(p + 5) == '1' && *(p + 7) >= '1')))
587 h1m->flags |= H1_MF_VER_11;
588}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200589
Christopher Faulet9768c262018-10-22 09:34:31 +0200590/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
591 * greater or equal to 1.1
592 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100593static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +0200594{
Christopher Faulet570d1612018-11-26 11:13:57 +0100595 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200596
Christopher Faulet570d1612018-11-26 11:13:57 +0100597 if ((HTX_SL_RES_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200598 (*(p + 5) > '1' ||
599 (*(p + 5) == '1' && *(p + 7) >= '1')))
600 h1m->flags |= H1_MF_VER_11;
601}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200602
Christopher Faulet9768c262018-10-22 09:34:31 +0200603/*
604 * Check the validity of the request version. If the version is valid, it
605 * returns 1. Otherwise, it returns 0.
606 */
607static int h1_process_req_vsn(struct h1s *h1s, struct h1m *h1m, union h1_sl sl)
608{
609 struct h1c *h1c = h1s->h1c;
610
611 /* RFC7230#2.6 has enforced the format of the HTTP version string to be
612 * exactly one digit "." one digit. This check may be disabled using
613 * option accept-invalid-http-request.
614 */
615 if (!(h1c->px->options2 & PR_O2_REQBUG_OK)) {
616 if (sl.rq.v.len != 8)
617 return 0;
618
619 if (*(sl.rq.v.ptr + 4) != '/' ||
620 !isdigit((unsigned char)*(sl.rq.v.ptr + 5)) ||
621 *(sl.rq.v.ptr + 6) != '.' ||
622 !isdigit((unsigned char)*(sl.rq.v.ptr + 7)))
623 return 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200624 }
Christopher Faulet9768c262018-10-22 09:34:31 +0200625 else if (!sl.rq.v.len) {
626 /* try to convert HTTP/0.9 requests to HTTP/1.0 */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200627
Christopher Faulet9768c262018-10-22 09:34:31 +0200628 /* RFC 1945 allows only GET for HTTP/0.9 requests */
629 if (sl.rq.meth != HTTP_METH_GET)
630 return 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200631
Christopher Faulet9768c262018-10-22 09:34:31 +0200632 /* HTTP/0.9 requests *must* have a request URI, per RFC 1945 */
633 if (!sl.rq.u.len)
634 return 0;
635
636 /* Add HTTP version */
637 sl.rq.v = ist("HTTP/1.0");
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100638 return 1;
Christopher Faulet9768c262018-10-22 09:34:31 +0200639 }
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100640
641 if ((sl.rq.v.len == 8) &&
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100642 ((*(sl.rq.v.ptr + 5) > '1') ||
643 ((*(sl.rq.v.ptr + 5) == '1') && (*(sl.rq.v.ptr + 7) >= '1'))))
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100644 h1m->flags |= H1_MF_VER_11;
Christopher Faulet9768c262018-10-22 09:34:31 +0200645 return 1;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200646}
647
Christopher Faulet9768c262018-10-22 09:34:31 +0200648/*
649 * Check the validity of the response version. If the version is valid, it
650 * returns 1. Otherwise, it returns 0.
Christopher Fauletf2824e62018-10-01 12:12:37 +0200651 */
Christopher Faulet9768c262018-10-22 09:34:31 +0200652static int h1_process_res_vsn(struct h1s *h1s, struct h1m *h1m, union h1_sl sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200653{
Christopher Faulet9768c262018-10-22 09:34:31 +0200654 struct h1c *h1c = h1s->h1c;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200655
Christopher Faulet9768c262018-10-22 09:34:31 +0200656 /* RFC7230#2.6 has enforced the format of the HTTP version string to be
657 * exactly one digit "." one digit. This check may be disabled using
658 * option accept-invalid-http-request.
659 */
660 if (!(h1c->px->options2 & PR_O2_RSPBUG_OK)) {
661 if (sl.st.v.len != 8)
662 return 0;
663
664 if (*(sl.st.v.ptr + 4) != '/' ||
665 !isdigit((unsigned char)*(sl.st.v.ptr + 5)) ||
666 *(sl.st.v.ptr + 6) != '.' ||
667 !isdigit((unsigned char)*(sl.st.v.ptr + 7)))
668 return 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200669 }
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100670
671 if ((sl.st.v.len == 8) &&
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100672 ((*(sl.st.v.ptr + 5) > '1') ||
673 ((*(sl.st.v.ptr + 5) == '1') && (*(sl.st.v.ptr + 7) >= '1'))))
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100674 h1m->flags |= H1_MF_VER_11;
675
Christopher Faulet9768c262018-10-22 09:34:31 +0200676 return 1;
677}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200678
679/* Deduce the connection mode of the client connection, depending on the
680 * configuration and the H1 message flags. This function is called twice, the
681 * first time when the request is parsed and the second time when the response
682 * is parsed.
683 */
684static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
685{
686 struct proxy *fe = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200687
688 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100689 /* Output direction: second pass */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200690 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) ||
Christopher Fauletb992af02019-03-28 15:42:24 +0100691 h1s->status == 101) {
692 /* Either we've established an explicit tunnel, or we're
693 * switching the protocol. In both cases, we're very unlikely to
694 * understand the next protocols. We have to switch to tunnel
695 * mode, so that we transfer the request and responses then let
696 * this protocol pass unmodified. When we later implement
697 * specific parsers for such protocols, we'll want to check the
698 * Upgrade header which contains information about that protocol
699 * for responses with status 101 (eg: see RFC2817 about TLS).
700 */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200701 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Fauletb992af02019-03-28 15:42:24 +0100702 }
703 else if (h1s->flags & H1S_F_WANT_KAL) {
704 /* By default the client is in KAL mode. CLOSE mode mean
705 * it is imposed by the client itself. So only change
706 * KAL mode here. */
707 if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) {
708 /* no length known or explicit close => close */
709 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
710 }
711 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
712 (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) {
713 /* no explict keep-alive and option httpclose => close */
714 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
715 }
716 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200717 }
718 else {
Christopher Fauletb992af02019-03-28 15:42:24 +0100719 /* Input direction: first pass */
720 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) {
721 /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/
Christopher Fauletf2824e62018-10-01 12:12:37 +0200722 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Fauletb992af02019-03-28 15:42:24 +0100723 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200724 }
725
726 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */
727 if (h1s->flags & H1S_F_WANT_KAL && fe->state == PR_STSTOPPED)
728 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
729}
730
731/* Deduce the connection mode of the client connection, depending on the
732 * configuration and the H1 message flags. This function is called twice, the
733 * first time when the request is parsed and the second time when the response
734 * is parsed.
735 */
736static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
737{
Olivier Houchardf502aca2018-12-14 19:42:40 +0100738 struct session *sess = h1s->sess;
Christopher Fauletb992af02019-03-28 15:42:24 +0100739 struct proxy *be = h1s->h1c->px;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100740 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200741
Christopher Fauletf2824e62018-10-01 12:12:37 +0200742 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100743 /* Input direction: second pass */
744
Christopher Fauletf2824e62018-10-01 12:12:37 +0200745 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) ||
Christopher Fauletb992af02019-03-28 15:42:24 +0100746 h1s->status == 101) {
747 /* Either we've established an explicit tunnel, or we're
748 * switching the protocol. In both cases, we're very unlikely to
749 * understand the next protocols. We have to switch to tunnel
750 * mode, so that we transfer the request and responses then let
751 * this protocol pass unmodified. When we later implement
752 * specific parsers for such protocols, we'll want to check the
753 * Upgrade header which contains information about that protocol
754 * for responses with status 101 (eg: see RFC2817 about TLS).
755 */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200756 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Fauletb992af02019-03-28 15:42:24 +0100757 }
758 else if (h1s->flags & H1S_F_WANT_KAL) {
759 /* By default the server is in KAL mode. CLOSE mode mean
760 * it is imposed by haproxy itself. So only change KAL
761 * mode here. */
762 if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO ||
763 !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){
764 /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */
765 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
766 }
767 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200768 }
Christopher Faulet70033782018-12-05 13:50:11 +0100769 else {
Christopher Fauletb992af02019-03-28 15:42:24 +0100770 /* Output direction: first pass */
771 if (h1m->flags & H1_MF_CONN_CLO) {
772 /* explicit close => close */
Christopher Faulet70033782018-12-05 13:50:11 +0100773 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Fauletb992af02019-03-28 15:42:24 +0100774 }
775 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
776 ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
777 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
778 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
779 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) {
780 /* no explicit keep-alive option httpclose/server-close => close */
781 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
782 }
Christopher Faulet70033782018-12-05 13:50:11 +0100783 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200784
785 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
786 if (h1s->flags & H1S_F_WANT_KAL && be->state == PR_STSTOPPED)
787 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200788}
789
Christopher Fauletb992af02019-03-28 15:42:24 +0100790static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200791{
792 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200793
794 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
795 * token is found
796 */
797 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +0200798 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200799
800 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100801 if (!(h1m->flags & H1_MF_VER_11))
802 *conn_val = ist("keep-alive");
Christopher Fauletf2824e62018-10-01 12:12:37 +0200803 }
804 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Fauletb992af02019-03-28 15:42:24 +0100805 if (h1m->flags & H1_MF_VER_11)
806 *conn_val = ist("close");
Christopher Fauletf2824e62018-10-01 12:12:37 +0200807 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200808}
809
Christopher Fauletb992af02019-03-28 15:42:24 +0100810static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200811{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200812 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
813 * token is found
814 */
815 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +0200816 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200817
818 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100819 if (!(h1m->flags & H1_MF_VER_11) ||
820 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11))
821 *conn_val = ist("keep-alive");
Christopher Fauletf2824e62018-10-01 12:12:37 +0200822 }
823 else { /* H1S_F_WANT_CLO */
Christopher Fauletb992af02019-03-28 15:42:24 +0100824 if (h1m->flags & H1_MF_VER_11)
825 *conn_val = ist("close");
Christopher Fauletf2824e62018-10-01 12:12:37 +0200826 }
Christopher Faulet9768c262018-10-22 09:34:31 +0200827}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200828
Christopher Fauletb992af02019-03-28 15:42:24 +0100829static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
Christopher Faulet9768c262018-10-22 09:34:31 +0200830{
Christopher Fauletb992af02019-03-28 15:42:24 +0100831 if (!conn_is_back(h1s->h1c->conn))
Christopher Faulet9768c262018-10-22 09:34:31 +0200832 h1_set_cli_conn_mode(h1s, h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +0100833 else
Christopher Faulet9768c262018-10-22 09:34:31 +0200834 h1_set_srv_conn_mode(h1s, h1m);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200835}
836
Christopher Fauletb992af02019-03-28 15:42:24 +0100837static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
838{
839 if (!conn_is_back(h1s->h1c->conn))
840 h1_set_cli_conn_mode(h1s, h1m);
841 else
842 h1_set_srv_conn_mode(h1s, h1m);
843
844 if (!(h1m->flags & H1_MF_RESP))
845 h1_update_req_conn_value(h1s, h1m, conn_val);
846 else
847 h1_update_res_conn_value(h1s, h1m, conn_val);
848}
Christopher Faulete44769b2018-11-29 23:01:45 +0100849
Christopher Fauleta99ff4d2019-07-22 16:18:24 +0200850/* Try to adjust the case of the message header name using the global map
851 * <hdrs_map>.
852 */
853static void h1_adjust_case_outgoing_hdr(struct h1s *h1s, struct h1m *h1m, struct ist *name)
854{
855 struct ebpt_node *node;
856 struct h1_hdr_entry *entry;
857
858 /* No entry in the map, do nothing */
859 if (eb_is_empty(&hdrs_map.map))
860 return;
861
862 /* No conversion fo the request headers */
863 if (!(h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGSRV))
864 return;
865
866 /* No conversion fo the response headers */
867 if ((h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGCLI))
868 return;
869
870 node = ebis_lookup_len(&hdrs_map.map, name->ptr, name->len);
871 if (!node)
872 return;
873 entry = container_of(node, struct h1_hdr_entry, node);
874 name->ptr = entry->name.ptr;
875 name->len = entry->name.len;
876}
877
Christopher Faulete44769b2018-11-29 23:01:45 +0100878/* Append the description of what is present in error snapshot <es> into <out>.
879 * The description must be small enough to always fit in a buffer. The output
880 * buffer may be the trash so the trash must not be used inside this function.
881 */
882static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
883{
884 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100885 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
886 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
887 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
888 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
889 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
890 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +0100891}
892/*
893 * Capture a bad request or response and archive it in the proxy's structure.
894 * By default it tries to report the error position as h1m->err_pos. However if
895 * this one is not set, it will then report h1m->next, which is the last known
896 * parsing point. The function is able to deal with wrapping buffers. It always
897 * displays buffers as a contiguous area starting at buf->p. The direction is
898 * determined thanks to the h1m's flags.
899 */
900static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
901 struct h1m *h1m, struct buffer *buf)
902{
Christopher Faulet8ec3d242020-10-15 17:19:46 +0200903 struct session *sess = h1s->sess;
Christopher Faulete44769b2018-11-29 23:01:45 +0100904 struct proxy *proxy = h1c->px;
905 struct proxy *other_end = sess->fe;
906 union error_snapshot_ctx ctx;
907
Willy Tarreau598d7fc2018-12-18 18:10:38 +0100908 if (h1s->cs->data && !(h1m->flags & H1_MF_RESP))
Christopher Faulete44769b2018-11-29 23:01:45 +0100909 other_end = si_strm(h1s->cs->data)->be;
910
911 /* http-specific part now */
912 ctx.h1.state = h1m->state;
913 ctx.h1.c_flags = h1c->flags;
914 ctx.h1.s_flags = h1s->flags;
915 ctx.h1.m_flags = h1m->flags;
916 ctx.h1.m_clen = h1m->curr_len;
917 ctx.h1.m_blen = h1m->body_len;
918
919 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
920 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100921 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
922 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +0100923}
924
Christopher Fauletadb22202018-12-12 10:32:09 +0100925/* Emit the chunksize followed by a CRLF in front of data of the buffer
926 * <buf>. It goes backwards and starts with the byte before the buffer's
927 * head. The caller is responsible for ensuring there is enough room left before
928 * the buffer's head for the string.
929 */
930static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
931{
932 char *beg, *end;
933
934 beg = end = b_head(buf);
935 *--beg = '\n';
936 *--beg = '\r';
937 do {
938 *--beg = hextab[chksz & 0xF];
939 } while (chksz >>= 4);
940 buf->head -= (end - beg);
941 b_add(buf, end - beg);
942}
943
944/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
945 * ensuring there is enough room left in the buffer for the string. */
946static void h1_emit_chunk_crlf(struct buffer *buf)
947{
948 *(b_peek(buf, b_data(buf))) = '\r';
949 *(b_peek(buf, b_data(buf) + 1)) = '\n';
950 b_add(buf, 2);
951}
952
Christopher Faulet129817b2018-09-20 16:14:40 +0200953/*
Christopher Fauletc62c2b92019-03-28 11:41:39 +0100954 * Switch the request to tunnel mode. This function must only be called for
Christopher Fauletac4778c2019-11-15 11:14:23 +0100955 * CONNECT requests. On the client side, if the response is not finished, the
956 * mux is mark as busy on input.
Christopher Fauletc62c2b92019-03-28 11:41:39 +0100957 */
958static void h1_set_req_tunnel_mode(struct h1s *h1s)
959{
960 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
961 h1s->req.state = H1_MSG_TUNNEL;
Christopher Fauletac4778c2019-11-15 11:14:23 +0100962 if (!conn_is_back(h1s->h1c->conn) && h1s->res.state < H1_MSG_DONE)
Christopher Fauletc62c2b92019-03-28 11:41:39 +0100963 h1s->h1c->flags |= H1C_F_IN_BUSY;
Christopher Fauletac4778c2019-11-15 11:14:23 +0100964 else if (h1s->h1c->flags & H1C_F_IN_BUSY) {
965 h1s->h1c->flags &= ~H1C_F_IN_BUSY;
966 tasklet_wakeup(h1s->h1c->wait_event.tasklet);
967 }
Christopher Fauletc62c2b92019-03-28 11:41:39 +0100968}
969
970/*
971 * Switch the response to tunnel mode. This function must only be called on
Christopher Fauletac4778c2019-11-15 11:14:23 +0100972 * successfull replies to CONNECT requests or on protocol switching. In this
973 * last case, this function takes care to switch the request to tunnel mode if
974 * possible. On the server side, if the request is not finished, the mux is mark
975 * as busy on input.
Christopher Fauletc62c2b92019-03-28 11:41:39 +0100976 */
977static void h1_set_res_tunnel_mode(struct h1s *h1s)
978{
Christopher Fauletac4778c2019-11-15 11:14:23 +0100979 /* On protocol switching, switch the request to tunnel mode if it is in
980 * DONE state. Otherwise we will wait the end of the request to switch
981 * it in tunnel mode.
982 */
983 if (h1s->status == 101 && h1s->req.state == H1_MSG_DONE) {
984 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
985 h1s->req.state = H1_MSG_TUNNEL;
986 }
987
Christopher Fauletc62c2b92019-03-28 11:41:39 +0100988 h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
989 h1s->res.state = H1_MSG_TUNNEL;
990 if (conn_is_back(h1s->h1c->conn) && h1s->req.state < H1_MSG_DONE)
991 h1s->h1c->flags |= H1C_F_IN_BUSY;
Christopher Fauletac4778c2019-11-15 11:14:23 +0100992 else if (h1s->h1c->flags & H1C_F_IN_BUSY) {
993 h1s->h1c->flags &= ~H1C_F_IN_BUSY;
994 tasklet_wakeup(h1s->h1c->wait_event.tasklet);
Christopher Fauletc62c2b92019-03-28 11:41:39 +0100995 }
996}
997
Christopher Faulet82f01602019-05-24 16:50:16 +0200998/* Estimate the size of the HTX headers after the parsing, including the EOH. */
999static size_t h1_eval_htx_hdrs_size(struct http_hdr *hdrs)
1000{
1001 size_t sz = 0;
1002 int i;
1003
1004 for (i = 0; hdrs[i].n.len; i++)
1005 sz += sizeof(struct htx_blk) + hdrs[i].n.len + hdrs[i].v.len;
1006 sz += sizeof(struct htx_blk) + 1;
1007 return sz;
1008}
1009
Christopher Faulet30db3d72019-05-17 15:35:33 +02001010/* Estimate the size of the HTX request after the parsing. */
1011static size_t h1_eval_htx_req_size(struct h1m *h1m, union h1_sl *h1sl, struct http_hdr *hdrs)
1012{
1013 size_t sz;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001014
1015 /* size of the HTX start-line */
Christopher Faulet1d76cef2019-09-03 16:16:50 +02001016 sz = sizeof(struct htx_blk) + sizeof(struct htx_sl) + h1sl->rq.m.len + h1sl->rq.u.len + h1sl->rq.v.len;
Christopher Faulet82f01602019-05-24 16:50:16 +02001017 sz += h1_eval_htx_hdrs_size(hdrs);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001018 return sz;
1019}
1020
1021/* Estimate the size of the HTX response after the parsing. */
1022static size_t h1_eval_htx_res_size(struct h1m *h1m, union h1_sl *h1sl, struct http_hdr *hdrs)
1023{
1024 size_t sz;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001025
1026 /* size of the HTX start-line */
Christopher Faulet1d76cef2019-09-03 16:16:50 +02001027 sz = sizeof(struct htx_blk) + sizeof(struct htx_sl) + h1sl->st.v.len + h1sl->st.c.len + h1sl->st.r.len;
Christopher Faulet82f01602019-05-24 16:50:16 +02001028 sz += h1_eval_htx_hdrs_size(hdrs);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001029 return sz;
1030}
1031
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001032/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001033 * Add the EOM in the HTX message and switch the message to the DONE state. It
1034 * returns the number of bytes parsed if > 0, or 0 if iet couldn't proceed. This
1035 * functions is responsible to update the parser state <h1m>. It also add the
1036 * flag CS_FL_EOI on the CS.
1037 */
1038static size_t h1_process_eom(struct h1s *h1s, struct h1m *h1m, struct htx *htx, size_t max)
1039{
Willy Tarreau62038152019-08-23 09:29:29 +02001040 if (max < sizeof(struct htx_blk) + 1 || !htx_add_endof(htx, HTX_BLK_EOM)) {
1041 h1s->flags |= H1S_F_APPEND_EOM;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001042 return 0;
Willy Tarreau62038152019-08-23 09:29:29 +02001043 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001044
Willy Tarreau62038152019-08-23 09:29:29 +02001045 h1s->flags &= ~H1S_F_APPEND_EOM;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001046 h1m->state = H1_MSG_DONE;
Christopher Faulet71a5a752021-02-08 17:18:01 +01001047 /* Set EOI on conn-stream in DONE state iff:
1048 * - it is a response
1049 * - it is a request but no a protocol upgrade nor a CONNECT
1050 *
1051 * If not set, Wait the response to do so or not depending on the status
1052 * code.
1053 */
1054 if ((h1m->flags & H1_MF_RESP) || ((h1s->meth != HTTP_METH_CONNECT) && !(h1m->flags & H1_MF_CONN_UPG)))
Christopher Faulet1cf96cd2020-12-07 18:21:27 +01001055 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001056 return (sizeof(struct htx_blk) + 1);
1057}
1058
1059/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001060 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +02001061 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1062 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
Joseph Herlant30bc5092018-11-25 10:52:20 -08001063 * responsible to update the parser state <h1m>.
Christopher Faulet129817b2018-09-20 16:14:40 +02001064 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001065static size_t h1_process_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
Christopher Fauletf2824e62018-10-01 12:12:37 +02001066 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +02001067{
Christopher Fauleta39d8ad2019-05-15 15:54:39 +02001068 struct htx_sl *sl;
Christopher Faulete4ab11b2019-06-11 15:05:37 +02001069 struct http_hdr hdrs[global.tune.max_http_hdr];
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001070 union h1_sl h1sl;
1071 unsigned int flags = HTX_SL_F_NONE;
Christopher Fauleta39d8ad2019-05-15 15:54:39 +02001072 size_t used;
Christopher Faulet129817b2018-09-20 16:14:40 +02001073 int ret = 0;
1074
Christopher Faulet30db3d72019-05-17 15:35:33 +02001075 if (!max || !b_data(buf))
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001076 goto end;
1077
Christopher Faulet129817b2018-09-20 16:14:40 +02001078 /* Realing input buffer if necessary */
1079 if (b_head(buf) + b_data(buf) > b_wrap(buf))
1080 b_slow_realign(buf, trash.area, 0);
1081
Christopher Faulet842f41f2019-09-25 09:10:46 +02001082 if (!(h1s->flags & H1S_F_NOT_FIRST) && !(h1m->flags & H1_MF_RESP)) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001083 /* Try to match H2 preface before parsing the request headers. */
1084 ret = b_isteq(buf, 0, b_data(buf), ist(H2_CONN_PREFACE));
1085 if (ret > 0)
1086 goto h2c_upgrade;
1087 }
1088
Christopher Faulet30db3d72019-05-17 15:35:33 +02001089 ret = h1_headers_to_hdr_list(b_peek(buf, *ofs), b_tail(buf),
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001090 hdrs, sizeof(hdrs)/sizeof(hdrs[0]), h1m, &h1sl);
Christopher Faulet129817b2018-09-20 16:14:40 +02001091 if (ret <= 0) {
Willy Tarreau9a408ab2019-08-23 08:11:36 +02001092 /* Incomplete or invalid message. If the input buffer only
1093 * contains headers and is full, which is detected by it being
1094 * full and the offset to be zero, it's an error because
1095 * headers are too large to be handled by the parser. */
1096 if (ret < 0 || (!ret && !*ofs && !buf_room_for_htx_data(buf)))
Christopher Fauletf2824e62018-10-01 12:12:37 +02001097 goto error;
Christopher Faulet129817b2018-09-20 16:14:40 +02001098 goto end;
1099 }
1100
Christopher Fauletb4bad502019-10-11 14:22:00 +02001101 if (h1m->err_pos >= 0) {
1102 /* Maybe we found an error during the parsing while we were
1103 * configured not to block on that, so we have to capture it
1104 * now.
1105 */
1106 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1107 }
1108
Christopher Faulet129817b2018-09-20 16:14:40 +02001109 /* messages headers fully parsed, do some checks to prepare the body
1110 * parsing.
1111 */
1112
Christopher Faulet9768c262018-10-22 09:34:31 +02001113 /* Save the request's method or the response's status, check if the body
1114 * length is known and check the VSN validity */
Christopher Faulet129817b2018-09-20 16:14:40 +02001115 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001116 h1s->meth = h1sl.rq.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001117
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001118 /* By default, request have always a known length */
Christopher Faulet129817b2018-09-20 16:14:40 +02001119 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001120
1121 if (h1s->meth == HTTP_METH_CONNECT) {
1122 /* Switch CONNECT requests to tunnel mode */
1123 h1_set_req_tunnel_mode(h1s);
1124 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001125
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001126 if (!h1_process_req_vsn(h1s, h1m, h1sl)) {
1127 h1m->err_pos = h1sl.rq.v.ptr - b_head(buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001128 h1m->err_state = h1m->state;
1129 goto vsn_error;
1130 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001131 }
1132 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001133 h1s->status = h1sl.st.status;
Christopher Faulet129817b2018-09-20 16:14:40 +02001134
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001135 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) ||
1136 h1s->status == 101) {
1137 /* Switch successfull replies to CONNECT requests and
1138 * protocol switching to tunnel mode. */
1139 h1_set_res_tunnel_mode(h1s);
1140 }
1141 else if ((h1s->meth == HTTP_METH_HEAD) ||
1142 (h1s->status >= 100 && h1s->status < 200) ||
1143 (h1s->status == 204) || (h1s->status == 304)) {
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001144 /* Responses known to have no body. */
Christopher Faulet129817b2018-09-20 16:14:40 +02001145 h1m->flags &= ~(H1_MF_CLEN|H1_MF_CHNK);
1146 h1m->flags |= H1_MF_XFER_LEN;
1147 h1m->curr_len = h1m->body_len = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001148 }
1149 else if (h1m->flags & (H1_MF_CLEN|H1_MF_CHNK)) {
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001150 /* Responses with a known body length. */
Christopher Faulet129817b2018-09-20 16:14:40 +02001151 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet129817b2018-09-20 16:14:40 +02001152 }
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001153 else {
1154 /* Responses with an unknown body length */
Christopher Faulet129817b2018-09-20 16:14:40 +02001155 h1m->state = H1_MSG_TUNNEL;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001156 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001157
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001158 if (!h1_process_res_vsn(h1s, h1m, h1sl)) {
1159 h1m->err_pos = h1sl.st.v.ptr - b_head(buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001160 h1m->err_state = h1m->state;
1161 goto vsn_error;
1162 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001163 }
1164
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001165 /* Set HTX start-line flags */
1166 if (h1m->flags & H1_MF_VER_11)
1167 flags |= HTX_SL_F_VER_11;
1168 if (h1m->flags & H1_MF_XFER_ENC)
1169 flags |= HTX_SL_F_XFER_ENC;
1170 if (h1m->flags & H1_MF_XFER_LEN) {
1171 flags |= HTX_SL_F_XFER_LEN;
1172 if (h1m->flags & H1_MF_CHNK)
1173 flags |= HTX_SL_F_CHNK;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001174 else if (h1m->flags & H1_MF_CLEN) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001175 flags |= HTX_SL_F_CLEN;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001176 if (h1m->body_len == 0)
1177 flags |= HTX_SL_F_BODYLESS;
1178 }
1179 else
Christopher Fauletb2db4fa2018-11-27 16:51:09 +01001180 flags |= HTX_SL_F_BODYLESS;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001181 }
1182
Christopher Fauleta39d8ad2019-05-15 15:54:39 +02001183 used = htx_used_space(htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001184 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001185 if (h1_eval_htx_req_size(h1m, &h1sl, hdrs) > max) {
1186 if (htx_is_empty(htx))
1187 goto error;
1188 h1m_init_req(h1m);
1189 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
1190 ret = 0;
1191 goto end;
1192 }
Christopher Faulet30db3d72019-05-17 15:35:33 +02001193
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001194 sl = htx_add_stline(htx, HTX_BLK_REQ_SL, flags, h1sl.rq.m, h1sl.rq.u, h1sl.rq.v);
1195 if (!sl || !htx_add_all_headers(htx, hdrs))
Christopher Faulet9768c262018-10-22 09:34:31 +02001196 goto error;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001197 sl->info.req.meth = h1s->meth;
Christopher Faulet42993a82019-06-14 10:31:25 +02001198
1199 /* Check if the uri contains an explicit scheme and if it is
1200 * "http" or "https". */
1201 if (h1sl.rq.u.len && h1sl.rq.u.ptr[0] != '/') {
1202 sl->flags |= HTX_SL_F_HAS_SCHM;
1203 if (h1sl.rq.u.len > 4 && (h1sl.rq.u.ptr[0] | 0x20) == 'h')
1204 sl->flags |= ((h1sl.rq.u.ptr[4] == ':') ? HTX_SL_F_SCHM_HTTP : HTX_SL_F_SCHM_HTTPS);
1205 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001206 }
1207 else {
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001208 if (h1_eval_htx_res_size(h1m, &h1sl, hdrs) > max) {
1209 if (htx_is_empty(htx))
1210 goto error;
1211 h1m_init_res(h1m);
1212 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
1213 ret = 0;
1214 goto end;
1215 }
Christopher Faulet30db3d72019-05-17 15:35:33 +02001216
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001217 flags |= HTX_SL_F_IS_RESP;
1218 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, h1sl.st.v, h1sl.st.c, h1sl.st.r);
1219 if (!sl || !htx_add_all_headers(htx, hdrs))
Christopher Faulet9768c262018-10-22 09:34:31 +02001220 goto error;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001221 sl->info.res.status = h1s->status;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001222 }
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001223
Christopher Fauleta39d8ad2019-05-15 15:54:39 +02001224 /* Set bytes used in the HTX mesage for the headers now */
1225 sl->hdrs_bytes = htx_used_space(htx) - used;
1226
Christopher Fauletb992af02019-03-28 15:42:24 +01001227 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001228
1229 /* If body length cannot be determined, set htx->extra to
1230 * ULLONG_MAX. This value is impossible in other cases.
1231 */
1232 htx->extra = ((h1m->flags & H1_MF_XFER_LEN) ? h1m->curr_len : ULLONG_MAX);
Christopher Faulet9768c262018-10-22 09:34:31 +02001233 *ofs += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001234 end:
1235 return ret;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001236
1237 error:
Christopher Fauletf2824e62018-10-01 12:12:37 +02001238 h1m->err_state = h1m->state;
1239 h1m->err_pos = h1m->next;
Christopher Faulet9768c262018-10-22 09:34:31 +02001240 vsn_error:
1241 h1s->flags |= (!(h1m->flags & H1_MF_RESP) ? H1S_F_REQ_ERROR : H1S_F_RES_ERROR);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001242 h1s->cs->flags |= CS_FL_EOI;
1243 htx->flags |= HTX_FL_PARSING_ERROR;
Christopher Faulete44769b2018-11-29 23:01:45 +01001244 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001245 ret = 0;
1246 goto end;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001247
1248 h2c_upgrade:
1249 h1s->h1c->flags |= H1C_F_UPG_H2C;
Christopher Faulet8e9e3ef2019-05-17 09:14:10 +02001250 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001251 htx->flags |= HTX_FL_UPGRADE;
1252 ret = 0;
1253 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001254}
1255
1256/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001257 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
1258 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag
Christopher Faulet129817b2018-09-20 16:14:40 +02001259 * and filling h1s->err_pos and h1s->err_state fields. This functions is
Joseph Herlant30bc5092018-11-25 10:52:20 -08001260 * responsible to update the parser state <h1m>.
Christopher Faulet129817b2018-09-20 16:14:40 +02001261 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001262static size_t h1_process_data(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001263 struct buffer *buf, size_t *ofs, size_t max,
Christopher Faulet30db3d72019-05-17 15:35:33 +02001264 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001265{
1266 size_t total = 0;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001267 int32_t ret = 0;
Christopher Fauletafe57842019-01-21 11:55:02 +01001268
Christopher Faulet129817b2018-09-20 16:14:40 +02001269 if (h1m->flags & H1_MF_XFER_LEN) {
1270 if (h1m->flags & H1_MF_CLEN) {
1271 /* content-length: read only h2m->body_len */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001272 ret = htx_get_max_blksz(htx, max);
Christopher Faulet129817b2018-09-20 16:14:40 +02001273 if ((uint64_t)ret > h1m->curr_len)
1274 ret = h1m->curr_len;
Christopher Faulet9768c262018-10-22 09:34:31 +02001275 if (ret > b_contig_data(buf, *ofs))
1276 ret = b_contig_data(buf, *ofs);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001277
Christopher Faulet9768c262018-10-22 09:34:31 +02001278 if (ret) {
Willy Tarreau78f548f2018-12-05 10:02:39 +01001279 /* very often with large files we'll face the following
1280 * situation :
1281 * - htx is empty and points to <htxbuf>
1282 * - ret == buf->data
1283 * - buf->head == sizeof(struct htx)
1284 * => we can swap the buffers and place an htx header into
1285 * the target buffer instead
1286 */
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001287 int32_t try = ret;
1288
Willy Tarreau78f548f2018-12-05 10:02:39 +01001289 if (unlikely(htx_is_empty(htx) && ret == b_data(buf) &&
1290 !*ofs && b_head_ofs(buf) == sizeof(struct htx))) {
1291 void *raw_area = buf->area;
1292 void *htx_area = htxbuf->area;
1293 struct htx_blk *blk;
1294
1295 buf->area = htx_area;
1296 htxbuf->area = raw_area;
1297 htx = (struct htx *)htxbuf->area;
1298 htx->size = htxbuf->size - sizeof(*htx);
1299 htx_reset(htx);
1300 b_set_data(htxbuf, b_size(htxbuf));
1301
1302 blk = htx_add_blk(htx, HTX_BLK_DATA, ret);
1303 blk->info += ret;
1304 /* nothing else to do, the old buffer now contains an
1305 * empty pre-initialized HTX header
1306 */
1307 }
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001308 else {
1309 ret = htx_add_data(htx, ist2(b_peek(buf, *ofs), try));
1310 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001311 h1m->curr_len -= ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001312 max -= sizeof(struct htx_blk) + ret;
Christopher Faulet9768c262018-10-22 09:34:31 +02001313 *ofs += ret;
1314 total += ret;
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001315 if (ret < try)
1316 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001317 }
1318
1319 if (!h1m->curr_len) {
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001320 if (!h1_process_eom(h1s, h1m, htx, max))
Christopher Faulet9768c262018-10-22 09:34:31 +02001321 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001322 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001323 }
1324 else if (h1m->flags & H1_MF_CHNK) {
1325 new_chunk:
1326 /* te:chunked : parse chunks */
1327 if (h1m->state == H1_MSG_CHUNK_CRLF) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001328 ret = h1_skip_chunk_crlf(buf, *ofs, b_data(buf));
Christopher Faulet129817b2018-09-20 16:14:40 +02001329 if (ret <= 0)
1330 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001331 h1m->state = H1_MSG_CHUNK_SIZE;
1332
Christopher Fauletf2824e62018-10-01 12:12:37 +02001333 *ofs += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001334 total += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001335 }
1336
1337 if (h1m->state == H1_MSG_CHUNK_SIZE) {
1338 unsigned int chksz;
1339
Christopher Faulet30db3d72019-05-17 15:35:33 +02001340 ret = h1_parse_chunk_size(buf, *ofs, b_data(buf), &chksz);
Christopher Faulet129817b2018-09-20 16:14:40 +02001341 if (ret <= 0)
1342 goto end;
Christopher Faulet54b5e212019-06-04 10:08:28 +02001343 h1m->state = ((!chksz) ? H1_MSG_TRAILERS : H1_MSG_DATA);
Christopher Faulet9768c262018-10-22 09:34:31 +02001344
Christopher Faulet129817b2018-09-20 16:14:40 +02001345 h1m->curr_len = chksz;
1346 h1m->body_len += chksz;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001347 *ofs += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001348 total += ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001349
1350 if (!h1m->curr_len)
1351 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001352 }
1353
1354 if (h1m->state == H1_MSG_DATA) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001355 ret = htx_get_max_blksz(htx, max);
Christopher Faulet129817b2018-09-20 16:14:40 +02001356 if ((uint64_t)ret > h1m->curr_len)
1357 ret = h1m->curr_len;
Christopher Faulet9768c262018-10-22 09:34:31 +02001358 if (ret > b_contig_data(buf, *ofs))
1359 ret = b_contig_data(buf, *ofs);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001360
Christopher Faulet9768c262018-10-22 09:34:31 +02001361 if (ret) {
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001362 int32_t try = ret;
1363
1364 ret = htx_add_data(htx, ist2(b_peek(buf, *ofs), try));
Christopher Faulet9768c262018-10-22 09:34:31 +02001365 h1m->curr_len -= ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001366 max -= sizeof(struct htx_blk) + ret;
Christopher Faulet9768c262018-10-22 09:34:31 +02001367 *ofs += ret;
1368 total += ret;
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001369 if (ret < try)
1370 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001371 }
1372 if (!h1m->curr_len) {
1373 h1m->state = H1_MSG_CHUNK_CRLF;
1374 goto new_chunk;
1375 }
1376 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001377 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001378 }
1379 else {
1380 /* XFER_LEN is set but not CLEN nor CHNK, it means there
1381 * is no body. Switch the message in DONE state
1382 */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001383 if (!h1_process_eom(h1s, h1m, htx, max))
Christopher Faulet9768c262018-10-22 09:34:31 +02001384 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001385 }
1386 }
1387 else {
1388 /* no content length, read till SHUTW */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001389 ret = htx_get_max_blksz(htx, max);
Christopher Faulet9768c262018-10-22 09:34:31 +02001390 if (ret > b_contig_data(buf, *ofs))
1391 ret = b_contig_data(buf, *ofs);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001392
Christopher Faulet9768c262018-10-22 09:34:31 +02001393 if (ret) {
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001394 int32_t try = ret;
1395
1396 ret = htx_add_data(htx, ist2(b_peek(buf, *ofs), try));
Christopher Faulet9768c262018-10-22 09:34:31 +02001397
Olivier Houchardcf42d5a2018-12-04 17:41:58 +01001398 *ofs += ret;
1399 total = ret;
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001400 if (ret < try)
1401 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001402 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001403 }
1404
1405 end:
1406 if (ret < 0) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001407 h1s->flags |= (!(h1m->flags & H1_MF_RESP) ? H1S_F_REQ_ERROR : H1S_F_RES_ERROR);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001408 h1s->cs->flags |= CS_FL_EOI;
1409 htx->flags |= HTX_FL_PARSING_ERROR;
Christopher Faulet129817b2018-09-20 16:14:40 +02001410 h1m->err_state = h1m->state;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001411 h1m->err_pos = *ofs + max + ret;
Christopher Faulete44769b2018-11-29 23:01:45 +01001412 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet129817b2018-09-20 16:14:40 +02001413 return 0;
1414 }
Willy Tarreau7e9dd732020-01-17 16:19:34 +01001415
Christopher Fauletafadc9a2020-07-03 14:51:15 +02001416 if (h1s->cs && !(h1m->flags & H1_MF_CHNK) &&
1417 ((h1m->state == H1_MSG_DATA && h1m->curr_len) || (h1m->state == H1_MSG_TUNNEL)))
Willy Tarreau7e9dd732020-01-17 16:19:34 +01001418 h1s->cs->flags |= CS_FL_MAY_SPLICE;
1419 else if (h1s->cs)
1420 h1s->cs->flags &= ~CS_FL_MAY_SPLICE;
1421
Christopher Faulet9768c262018-10-22 09:34:31 +02001422 /* update htx->extra, only when the body length is known */
1423 if (h1m->flags & H1_MF_XFER_LEN)
1424 htx->extra = h1m->curr_len;
Christopher Faulet129817b2018-09-20 16:14:40 +02001425 return total;
1426}
1427
1428/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001429 * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if
1430 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1431 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
1432 * responsible to update the parser state <h1m>.
1433 */
1434static size_t h1_process_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1435 struct buffer *buf, size_t *ofs, size_t max)
1436{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02001437 struct http_hdr hdrs[global.tune.max_http_hdr];
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001438 struct h1m tlr_h1m;
1439 int ret = 0;
1440
1441 if (!max || !b_data(buf))
1442 goto end;
1443
1444 /* Realing input buffer if necessary */
1445 if (b_peek(buf, *ofs) > b_tail(buf))
1446 b_slow_realign(buf, trash.area, 0);
1447
1448 tlr_h1m.flags = (H1_MF_NO_PHDR|H1_MF_HDRS_ONLY);
1449 ret = h1_headers_to_hdr_list(b_peek(buf, *ofs), b_tail(buf),
1450 hdrs, sizeof(hdrs)/sizeof(hdrs[0]), &tlr_h1m, NULL);
1451 if (ret <= 0) {
Willy Tarreau9a408ab2019-08-23 08:11:36 +02001452 /* Incomplete or invalid trailers. If the input buffer only
1453 * contains trailers and is full, which is detected by it being
1454 * full and the offset to be zero, it's an error because
1455 * trailers are too large to be handled by the parser. */
1456 if (ret < 0 || (!ret && !*ofs && !buf_room_for_htx_data(buf)))
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001457 goto error;
1458 goto end;
1459 }
1460
1461 /* messages trailers fully parsed. */
1462 if (h1_eval_htx_hdrs_size(hdrs) > max) {
1463 if (htx_is_empty(htx))
1464 goto error;
1465 ret = 0;
1466 goto end;
1467 }
1468
1469 if (!htx_add_all_trailers(htx, hdrs))
1470 goto error;
1471
1472 *ofs += ret;
1473 h1s->flags |= H1S_F_HAVE_I_TLR;
1474 end:
1475 return ret;
1476
1477 error:
1478 h1m->err_state = h1m->state;
1479 h1m->err_pos = h1m->next;
1480 h1s->flags |= (!(h1m->flags & H1_MF_RESP) ? H1S_F_REQ_ERROR : H1S_F_RES_ERROR);
1481 h1s->cs->flags |= CS_FL_EOI;
1482 htx->flags |= HTX_FL_PARSING_ERROR;
1483 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1484 ret = 0;
1485 goto end;
1486}
1487
1488/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001489 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001490 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1491 * it couldn't proceed.
Christopher Faulet129817b2018-09-20 16:14:40 +02001492 */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001493static size_t h1_process_input(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001494{
Christopher Faulet539e0292018-11-19 10:40:09 +01001495 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001496 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001497 struct htx *htx;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001498 size_t ret, data;
Christopher Faulet129817b2018-09-20 16:14:40 +02001499 size_t total = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001500 int errflag;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001501
Christopher Faulet539e0292018-11-19 10:40:09 +01001502 htx = htx_from_buf(buf);
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001503
Christopher Fauletf2824e62018-10-01 12:12:37 +02001504 if (!conn_is_back(h1c->conn)) {
1505 h1m = &h1s->req;
1506 errflag = H1S_F_REQ_ERROR;
1507 }
1508 else {
1509 h1m = &h1s->res;
1510 errflag = H1S_F_RES_ERROR;
1511 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001512
Christopher Faulet74027762019-02-26 14:45:05 +01001513 data = htx->data;
Christopher Fauletcd9f6a72019-07-04 21:22:34 +02001514 if (h1s->flags & errflag)
1515 goto end;
1516
Christopher Faulet366312a2021-04-08 18:34:30 +02001517 if (h1c->flags & H1C_F_IN_BUSY)
1518 goto end;
1519
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001520 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001521 size_t used = htx_used_space(htx);
1522
Christopher Faulet129817b2018-09-20 16:14:40 +02001523 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001524 ret = h1_process_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001525 if (!ret)
1526 break;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001527 if ((h1m->flags & H1_MF_RESP) &&
1528 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1529 h1m_init_res(&h1s->res);
1530 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
1531 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001532 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001533 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001534 ret = h1_process_data(h1s, h1m, htx, &h1c->ibuf, &total, count, buf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01001535 htx = htx_from_buf(buf);
Christopher Faulet129817b2018-09-20 16:14:40 +02001536 if (!ret)
1537 break;
1538 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001539 else if (h1m->state == H1_MSG_TRAILERS) {
1540 if (!(h1s->flags & H1S_F_HAVE_I_TLR)) {
1541 ret = h1_process_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
1542 if (!ret)
1543 break;
1544 }
Christopher Faulet1021e722019-09-03 21:55:14 +02001545 else if (!h1_process_eom(h1s, h1m, htx, count))
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001546 break;
1547 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001548 else if (h1m->state == H1_MSG_DONE) {
Christopher Fauletac4778c2019-11-15 11:14:23 +01001549 if (!(h1m->flags & H1_MF_RESP) && h1s->status == 101)
1550 h1_set_req_tunnel_mode(h1s);
Christopher Faulet6d2abd72021-02-22 08:11:59 +01001551 else if ((h1m->flags & H1_MF_RESP) && h1s->req.state == H1_MSG_TUNNEL)
1552 h1s->req.state = H1_MSG_DONE;
Christopher Fauletaffe0cb2020-07-10 10:01:26 +02001553 else if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) {
Christopher Faulet2f320ee2019-04-16 20:26:53 +02001554 h1c->flags |= H1C_F_IN_BUSY;
Christopher Fauletaffe0cb2020-07-10 10:01:26 +02001555 break;
1556 }
1557 else
1558 break;
Christopher Fauletcb55f482018-12-10 11:56:47 +01001559 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001560 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001561 ret = h1_process_data(h1s, h1m, htx, &h1c->ibuf, &total, count, buf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01001562 htx = htx_from_buf(buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001563 if (!ret)
1564 break;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001565 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001566 else {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001567 h1s->flags |= errflag;
Christopher Faulet129817b2018-09-20 16:14:40 +02001568 break;
1569 }
1570
Christopher Faulet30db3d72019-05-17 15:35:33 +02001571 count -= htx_used_space(htx) - used;
Christopher Faulet98e2bc22019-09-03 16:26:15 +02001572 } while (!(h1s->flags & errflag));
Christopher Faulet129817b2018-09-20 16:14:40 +02001573
Christopher Faulet47365272018-10-31 17:40:50 +01001574 if (h1s->flags & errflag)
1575 goto parsing_err;
Christopher Faulet129817b2018-09-20 16:14:40 +02001576
Christopher Faulet539e0292018-11-19 10:40:09 +01001577 b_del(&h1c->ibuf, total);
1578
1579 end:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001580 htx_to_buf(htx, buf);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001581 ret = htx->data - data;
Willy Tarreau45f2b892018-12-05 07:59:27 +01001582 if (h1c->flags & H1C_F_IN_FULL && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001583 h1c->flags &= ~H1C_F_IN_FULL;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001584 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet47365272018-10-31 17:40:50 +01001585 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001586
Christopher Fauletcf56b992018-12-11 16:12:31 +01001587 h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
1588
Christopher Fauletcdc90e92019-03-28 13:28:46 +01001589 if (!b_data(&h1c->ibuf))
Christopher Faulet539e0292018-11-19 10:40:09 +01001590 h1_release_buf(h1c, &h1c->ibuf);
Christopher Fauleta882a462019-12-06 15:59:05 +01001591
1592 if ((h1s_data_pending(h1s) && !htx_is_empty(htx)) || (h1s->flags & H1S_F_APPEND_EOM))
Christopher Fauletcf56b992018-12-11 16:12:31 +01001593 h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM;
Christopher Faulet539e0292018-11-19 10:40:09 +01001594
Willy Tarreau62038152019-08-23 09:29:29 +02001595 if (((h1s->flags & (H1S_F_REOS|H1S_F_APPEND_EOM)) == H1S_F_REOS) &&
1596 (!h1s_data_pending(h1s) || htx_is_empty(htx))) {
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001597 h1s->cs->flags |= CS_FL_EOS;
Christopher Faulet26922382019-03-08 15:13:41 +01001598 if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE)
Christopher Fauletb8d2ee02019-02-25 15:29:51 +01001599 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet539e0292018-11-19 10:40:09 +01001600 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001601
Christopher Faulet30db3d72019-05-17 15:35:33 +02001602 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001603
1604 parsing_err:
Christopher Faulet47365272018-10-31 17:40:50 +01001605 b_reset(&h1c->ibuf);
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001606 htx_to_buf(htx, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001607 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001608}
1609
Christopher Faulet129817b2018-09-20 16:14:40 +02001610/*
1611 * Process outgoing data. It parses data and transfer them from the channel buffer into
1612 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1613 * 0 if it couldn't proceed.
1614 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02001615static size_t h1_process_output(struct h1c *h1c, struct buffer *buf, size_t count)
1616{
Christopher Faulet129817b2018-09-20 16:14:40 +02001617 struct h1s *h1s = h1c->h1s;
1618 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001619 struct htx *chn_htx;
1620 struct htx_blk *blk;
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001621 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001622 size_t total = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001623 int errflag;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001624
Christopher Faulet47365272018-10-31 17:40:50 +01001625 if (!count)
1626 goto end;
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001627
Christopher Faulet94b2c762019-05-24 15:28:57 +02001628 chn_htx = htxbuf(buf);
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001629 if (htx_is_empty(chn_htx))
1630 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001631
Christopher Faulet51dbc942018-09-13 09:05:15 +02001632 if (!h1_get_buf(h1c, &h1c->obuf)) {
1633 h1c->flags |= H1C_F_OUT_ALLOC;
1634 goto end;
1635 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001636
Christopher Fauletf2824e62018-10-01 12:12:37 +02001637 if (!conn_is_back(h1c->conn)) {
1638 h1m = &h1s->res;
1639 errflag = H1S_F_RES_ERROR;
1640 }
1641 else {
1642 h1m = &h1s->req;
1643 errflag = H1S_F_REQ_ERROR;
1644 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001645
Christopher Fauletcd9f6a72019-07-04 21:22:34 +02001646 if (h1s->flags & errflag)
1647 goto end;
1648
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001649 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001650 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001651
Willy Tarreau3815b222018-12-11 19:50:43 +01001652 /* Perform some optimizations to reduce the number of buffer copies.
1653 * First, if the mux's buffer is empty and the htx area contains
1654 * exactly one data block of the same size as the requested count,
1655 * then it's possible to simply swap the caller's buffer with the
1656 * mux's output buffer and adjust offsets and length to match the
1657 * entire DATA HTX block in the middle. In this case we perform a
1658 * true zero-copy operation from end-to-end. This is the situation
1659 * that happens all the time with large files. Second, if this is not
1660 * possible, but the mux's output buffer is empty, we still have an
1661 * opportunity to avoid the copy to the intermediary buffer, by making
1662 * the intermediary buffer's area point to the output buffer's area.
1663 * In this case we want to skip the HTX header to make sure that copies
1664 * remain aligned and that this operation remains possible all the
1665 * time. This goes for headers, data blocks and any data extracted from
1666 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01001667 */
1668 if (!b_data(&h1c->obuf)) {
Willy Tarreau3815b222018-12-11 19:50:43 +01001669 if (chn_htx->used == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001670 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01001671 htx_get_blk_value(chn_htx, blk).len == count) {
1672 void *old_area = h1c->obuf.area;
1673
1674 h1c->obuf.area = buf->area;
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001675 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01001676 h1c->obuf.data = count;
1677
1678 buf->area = old_area;
1679 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01001680
1681 /* The message is chunked. We need to emit the chunk
1682 * size. We have at least the size of the struct htx to
1683 * write the chunk envelope. It should be enough.
1684 */
1685 if (h1m->flags & H1_MF_CHNK) {
1686 h1_emit_chunk_size(&h1c->obuf, count);
1687 h1_emit_chunk_crlf(&h1c->obuf);
1688 }
1689
Willy Tarreau3815b222018-12-11 19:50:43 +01001690 total += count;
1691 goto out;
1692 }
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001693 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001694 }
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001695 else
1696 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02001697
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001698 tmp.data = 0;
1699 tmp.size = b_room(&h1c->obuf);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001700 while (count && !(h1s->flags & errflag) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01001701 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02001702 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001703 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02001704 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001705 uint32_t vlen;
Christopher Faulet9768c262018-10-22 09:34:31 +02001706
Christopher Fauletb2e84162018-12-06 11:39:49 +01001707 vlen = sz;
1708 if (vlen > count) {
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001709 if (type != HTX_BLK_DATA)
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001710 goto full;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001711 vlen = count;
1712 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001713
Christopher Faulet94b2c762019-05-24 15:28:57 +02001714 if (type == HTX_BLK_UNUSED)
1715 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02001716
Christopher Faulet94b2c762019-05-24 15:28:57 +02001717 switch (h1m->state) {
1718 case H1_MSG_RQBEFORE:
1719 if (type != HTX_BLK_REQ_SL)
1720 goto error;
Christopher Faulet9768c262018-10-22 09:34:31 +02001721 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001722 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001723 h1_parse_req_vsn(h1m, sl);
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001724 if (!htx_reqline_to_h1(sl, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001725 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001726 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01001727 if (sl->flags & HTX_SL_F_BODYLESS)
1728 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001729 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet129817b2018-09-20 16:14:40 +02001730 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02001731
Christopher Faulet94b2c762019-05-24 15:28:57 +02001732 case H1_MSG_RPBEFORE:
1733 if (type != HTX_BLK_RES_SL)
1734 goto error;
Christopher Faulet9768c262018-10-22 09:34:31 +02001735 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001736 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02001737 h1_parse_res_vsn(h1m, sl);
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001738 if (!htx_stline_to_h1(sl, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001739 goto full;
Christopher Faulet03599112018-11-27 11:21:21 +01001740 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02001741 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001742 if (sl->info.res.status < 200 &&
1743 (sl->info.res.status == 100 || sl->info.res.status >= 102))
Christopher Fauletada34b62019-05-24 16:36:43 +02001744 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001745 h1m->state = H1_MSG_HDR_FIRST;
1746 break;
1747
Christopher Faulet94b2c762019-05-24 15:28:57 +02001748 case H1_MSG_HDR_FIRST:
1749 case H1_MSG_HDR_NAME:
1750 case H1_MSG_HDR_L2_LWS:
1751 if (type == HTX_BLK_EOH)
1752 goto last_lf;
1753 if (type != HTX_BLK_HDR)
1754 goto error;
Christopher Faulet9768c262018-10-22 09:34:31 +02001755 h1m->state = H1_MSG_HDR_NAME;
1756 n = htx_get_blk_name(chn_htx, blk);
1757 v = htx_get_blk_value(chn_htx, blk);
1758
1759 if (isteqi(n, ist("transfer-encoding")))
1760 h1_parse_xfer_enc_header(h1m, v);
Willy Tarreau27cd2232019-01-03 21:52:42 +01001761 else if (isteqi(n, ist("content-length"))) {
Christopher Faulet5220ef22019-03-27 15:44:56 +01001762 /* Only skip C-L header with invalid value. */
1763 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01001764 goto skip_hdr;
1765 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001766 else if (isteqi(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001767 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02001768 if (!v.len)
1769 goto skip_hdr;
1770 }
1771
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02001772 /* Try to adjust the case of the header name */
1773 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1774 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001775 if (!htx_hdr_to_h1(n, v, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001776 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001777 skip_hdr:
1778 h1m->state = H1_MSG_HDR_L2_LWS;
1779 break;
1780
Christopher Faulet94b2c762019-05-24 15:28:57 +02001781 case H1_MSG_LAST_LF:
1782 if (type != HTX_BLK_EOH)
1783 goto error;
1784 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02001785 h1m->state = H1_MSG_LAST_LF;
1786 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001787 /* There is no "Connection:" header and
1788 * it the conn_mode must be
1789 * processed. So do it */
Christopher Faulet661bfc32019-06-17 14:07:46 +02001790 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001791 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01001792 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001793 if (v.len) {
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02001794 /* Try to adjust the case of the header name */
1795 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1796 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001797 if (!htx_hdr_to_h1(n, v, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001798 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001799 }
Christopher Fauletada34b62019-05-24 16:36:43 +02001800 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001801 }
Willy Tarreau4710d202019-01-03 17:39:54 +01001802
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001803 if ((h1s->meth != HTTP_METH_CONNECT &&
1804 (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 +01001805 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
1806 (h1s->status >= 200 && h1s->status != 204 && h1s->status != 304 &&
1807 h1s->meth != HTTP_METH_HEAD && !(h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) &&
1808 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
1809 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01001810 /* chunking needed but header not seen */
Christopher Faulete5addb02019-10-04 10:23:51 +02001811 n = ist("transfer-encoding");
1812 v = ist("chunked");
1813 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1814 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
1815 if (!htx_hdr_to_h1(n, v, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001816 goto full;
Willy Tarreau4710d202019-01-03 17:39:54 +01001817 h1m->flags |= H1_MF_CHNK;
1818 }
1819
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001820 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001821 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001822
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001823 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
1824 /* a CONNECT request is sent to the server. Switch it to tunnel mode. */
1825 h1_set_req_tunnel_mode(h1s);
1826 }
Christopher Fauletac4778c2019-11-15 11:14:23 +01001827 else if ((h1m->flags & H1_MF_RESP) &&
1828 ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) || h1s->status == 101)) {
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001829 /* a successfull reply to a CONNECT or a protocol switching is sent
Christopher Fauletac4778c2019-11-15 11:14:23 +01001830 * to the client. Switch the response to tunnel mode.
1831 */
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001832 h1_set_res_tunnel_mode(h1s);
1833 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001834 else if ((h1m->flags & H1_MF_RESP) &&
1835 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1836 h1m_init_res(&h1s->res);
1837 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02001838 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001839 }
Christopher Faulet33d58b52019-07-01 16:17:30 +02001840 else if ((h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_HEAD)
1841 h1m->state = H1_MSG_DONE;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001842 else
1843 h1m->state = H1_MSG_DATA;
Christopher Faulet9768c262018-10-22 09:34:31 +02001844 break;
1845
Christopher Faulet94b2c762019-05-24 15:28:57 +02001846 case H1_MSG_DATA:
Christopher Fauletaaa25062019-07-04 17:12:12 +02001847 case H1_MSG_TUNNEL:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001848 if (type == HTX_BLK_EOM) {
1849 /* Chunked message without explicit trailers */
1850 if (h1m->flags & H1_MF_CHNK) {
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001851 if (!chunk_memcat(&tmp, "0\r\n\r\n", 5))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001852 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001853 }
1854 goto done;
1855 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001856 else if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet52131682019-06-27 17:40:14 +02001857 /* If the message is not chunked, never
1858 * add the last chunk. */
1859 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001860 goto full;
Christopher Faulet94b2c762019-05-24 15:28:57 +02001861 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001862 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02001863 else if (type != HTX_BLK_DATA)
1864 goto error;
Christopher Faulet9768c262018-10-22 09:34:31 +02001865 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001866 v.len = vlen;
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001867 if (!htx_data_to_h1(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001868 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001869 break;
1870
Christopher Faulet94b2c762019-05-24 15:28:57 +02001871 case H1_MSG_TRAILERS:
1872 if (type == HTX_BLK_EOM)
1873 goto done;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001874 else if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02001875 goto error;
1876 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02001877 h1m->state = H1_MSG_TRAILERS;
Christopher Faulet52131682019-06-27 17:40:14 +02001878 /* If the message is not chunked, ignore
1879 * trailers. It may happen with H2 messages. */
1880 if (!(h1m->flags & H1_MF_CHNK))
1881 break;
1882
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001883 if (type == HTX_BLK_EOT) {
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001884 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001885 goto full;
Christopher Faulet32188212018-11-20 18:21:43 +01001886 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001887 else { // HTX_BLK_TLR
1888 n = htx_get_blk_name(chn_htx, blk);
1889 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02001890
1891 /* Try to adjust the case of the header name */
1892 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1893 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001894 if (!htx_hdr_to_h1(n, v, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001895 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001896 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001897 break;
1898
Christopher Faulet94b2c762019-05-24 15:28:57 +02001899 case H1_MSG_DONE:
1900 if (type != HTX_BLK_EOM)
1901 goto error;
1902 done:
1903 h1m->state = H1_MSG_DONE;
Christopher Fauletac4778c2019-11-15 11:14:23 +01001904 if (!(h1m->flags & H1_MF_RESP) && h1s->status == 101)
1905 h1_set_req_tunnel_mode(h1s);
Christopher Faulet6d2abd72021-02-22 08:11:59 +01001906 else if ((h1m->flags & H1_MF_RESP) && h1s->req.state == H1_MSG_TUNNEL)
1907 h1s->req.state = H1_MSG_DONE;
1908
1909 if (h1s->h1c->flags & H1C_F_IN_BUSY) {
Christopher Fauletcd67bff2019-06-14 16:54:15 +02001910 h1s->h1c->flags &= ~H1C_F_IN_BUSY;
1911 tasklet_wakeup(h1s->h1c->wait_event.tasklet);
1912 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001913 break;
1914
Christopher Faulet9768c262018-10-22 09:34:31 +02001915 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02001916 error:
Christopher Fauletc431df82019-06-26 15:16:28 +02001917 /* Unexpected error during output processing */
1918 chn_htx->flags |= HTX_FL_PARSING_ERROR;
Christopher Fauleta2ea1582019-05-28 10:35:18 +02001919 h1s->flags |= errflag;
Christopher Fauletc431df82019-06-26 15:16:28 +02001920 h1c->flags |= H1C_F_CS_ERROR;
Christopher Faulet9768c262018-10-22 09:34:31 +02001921 break;
1922 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02001923
1924 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01001925 total += vlen;
1926 count -= vlen;
1927 if (sz == vlen)
1928 blk = htx_remove_blk(chn_htx, blk);
1929 else {
1930 htx_cut_data_blk(chn_htx, blk, vlen);
1931 break;
1932 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001933 }
1934
Christopher Faulet9768c262018-10-22 09:34:31 +02001935 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01001936 /* when the output buffer is empty, tmp shares the same area so that we
1937 * only have to update pointers and lengths.
1938 */
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001939 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
1940 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001941 else
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001942 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001943
Willy Tarreau3815b222018-12-11 19:50:43 +01001944 htx_to_buf(chn_htx, buf);
1945 out:
Christopher Faulet1cf96cd2020-12-07 18:21:27 +01001946 /* Both the request and the response reached the DONE state. So set EOI
1947 * flag on the conn-stream. Most of time, the flag will already be set,
1948 * except for protocol upgrades.
1949 */
1950 if (h1s->cs && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)
1951 h1s->cs->flags |= CS_FL_EOI;
1952
Willy Tarreau45f2b892018-12-05 07:59:27 +01001953 if (!buf_room_for_htx_data(&h1c->obuf))
Christopher Faulet51dbc942018-09-13 09:05:15 +02001954 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001955 end:
1956 return total;
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001957
1958 full:
1959 h1c->flags |= H1C_F_OUT_FULL;
1960 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001961}
1962
Christopher Faulet51dbc942018-09-13 09:05:15 +02001963/*********************************************************/
1964/* functions below are I/O callbacks from the connection */
1965/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001966static void h1_wake_stream_for_recv(struct h1s *h1s)
1967{
1968 if (h1s && h1s->recv_wait) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001969 h1s->recv_wait->events &= ~SUB_RETRY_RECV;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001970 tasklet_wakeup(h1s->recv_wait->tasklet);
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001971 h1s->recv_wait = NULL;
1972 }
1973}
1974static void h1_wake_stream_for_send(struct h1s *h1s)
1975{
1976 if (h1s && h1s->send_wait) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001977 h1s->send_wait->events &= ~SUB_RETRY_SEND;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001978 tasklet_wakeup(h1s->send_wait->tasklet);
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001979 h1s->send_wait = NULL;
1980 }
1981}
1982
Christopher Faulet51dbc942018-09-13 09:05:15 +02001983/*
1984 * Attempt to read data, and subscribe if none available
1985 */
1986static int h1_recv(struct h1c *h1c)
1987{
1988 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01001989 struct h1s *h1s = h1c->h1s;
Olivier Houchard75159a92018-12-03 18:46:09 +01001990 size_t ret = 0, max;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001991 int rcvd = 0;
1992
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001993 if (h1c->wait_event.events & SUB_RETRY_RECV)
Christopher Fauletc386a882018-12-04 16:06:28 +01001994 return (b_data(&h1c->ibuf));
Christopher Faulet51dbc942018-09-13 09:05:15 +02001995
Olivier Houchard5b06cb32019-08-13 15:21:59 +02001996 if (!(conn->flags & CO_FL_ERROR) && h1c->flags & H1C_F_CS_WAIT_CONN)
Willy Tarreaud58f27f2019-06-03 10:12:22 +02001997 return 0;
Willy Tarreaud58f27f2019-06-03 10:12:22 +02001998
Olivier Houchard75159a92018-12-03 18:46:09 +01001999 if (!h1_recv_allowed(h1c)) {
2000 rcvd = 1;
Christopher Faulet9768c262018-10-22 09:34:31 +02002001 goto end;
Olivier Houchard75159a92018-12-03 18:46:09 +01002002 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002003
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02002004 if (!h1_get_buf(h1c, &h1c->ibuf)) {
2005 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet9768c262018-10-22 09:34:31 +02002006 goto end;
2007 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002008
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02002009 if (h1s && (h1s->flags & (H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA))) {
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002010 if (!h1s_data_pending(h1s))
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02002011 h1_wake_stream_for_recv(h1s);
2012 rcvd = 1;
Christopher Faulet9768c262018-10-22 09:34:31 +02002013 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002014 }
2015
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002016 /*
2017 * If we only have a small amount of data, realign it,
2018 * it's probably cheaper than doing 2 recv() calls.
2019 */
2020 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
2021 b_slow_realign(&h1c->ibuf, trash.area, 0);
2022
Willy Tarreau45f2b892018-12-05 07:59:27 +01002023 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002024 if (max) {
2025 h1c->flags &= ~H1C_F_IN_FULL;
Willy Tarreau78f548f2018-12-05 10:02:39 +01002026
Willy Tarreaue0f24ee2018-12-14 10:51:23 +01002027 b_realign_if_empty(&h1c->ibuf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01002028 if (!b_data(&h1c->ibuf)) {
2029 /* try to pre-align the buffer like the rxbufs will be
2030 * to optimize memory copies.
2031 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01002032 h1c->ibuf.head = sizeof(struct htx);
2033 }
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002034 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, 0);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002035 }
Christopher Faulet47365272018-10-31 17:40:50 +01002036 if (ret > 0) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002037 rcvd = 1;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002038 if (h1s && h1s->cs) {
Christopher Faulet37e36072018-12-04 15:54:12 +01002039 h1s->cs->flags |= (CS_FL_READ_PARTIAL|CS_FL_RCV_MORE);
Christopher Fauletfeb11742018-11-29 15:12:34 +01002040 if (h1s->csinfo.t_idle == -1)
2041 h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake;
2042 }
Christopher Faulet47365272018-10-31 17:40:50 +01002043 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002044
Christopher Fauletcf56b992018-12-11 16:12:31 +01002045 if (!h1_recv_allowed(h1c) || !buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet81d48432018-11-19 21:22:43 +01002046 rcvd = 1;
Christopher Fauletcf56b992018-12-11 16:12:31 +01002047 goto end;
2048 }
2049
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002050 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002051
Christopher Faulet9768c262018-10-22 09:34:31 +02002052 end:
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002053 if (ret > 0 || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn))
2054 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002055
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002056 if (conn_xprt_read0_pending(conn) && h1s) {
2057 h1s->flags |= H1S_F_REOS;
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002058 rcvd = 1;
2059 }
2060
Christopher Faulet51dbc942018-09-13 09:05:15 +02002061 if (!b_data(&h1c->ibuf))
2062 h1_release_buf(h1c, &h1c->ibuf);
Willy Tarreau45f2b892018-12-05 07:59:27 +01002063 else if (!buf_room_for_htx_data(&h1c->ibuf))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002064 h1c->flags |= H1C_F_IN_FULL;
2065 return rcvd;
2066}
2067
2068
2069/*
2070 * Try to send data if possible
2071 */
2072static int h1_send(struct h1c *h1c)
2073{
2074 struct connection *conn = h1c->conn;
2075 unsigned int flags = 0;
2076 size_t ret;
2077 int sent = 0;
2078
2079 if (conn->flags & CO_FL_ERROR)
2080 return 0;
2081
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002082 if (h1c->flags & H1C_F_CS_WAIT_CONN) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002083 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002084 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002085 return 0;
2086 }
2087
Christopher Faulet51dbc942018-09-13 09:05:15 +02002088 if (!b_data(&h1c->obuf))
2089 goto end;
2090
2091 if (h1c->flags & H1C_F_OUT_FULL)
2092 flags |= CO_SFL_MSG_MORE;
2093
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002094 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002095 if (ret > 0) {
2096 h1c->flags &= ~H1C_F_OUT_FULL;
2097 b_del(&h1c->obuf, ret);
2098 sent = 1;
2099 }
2100
Christopher Faulet145aa472018-12-06 10:56:20 +01002101 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
2102 /* error or output closed, nothing to send, clear the buffer to release it */
2103 b_reset(&h1c->obuf);
2104 }
2105
Christopher Faulet51dbc942018-09-13 09:05:15 +02002106 end:
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002107 if (!(h1c->flags & H1C_F_OUT_FULL))
2108 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002109
Christopher Faulet51dbc942018-09-13 09:05:15 +02002110 /* We're done, no more to send */
2111 if (!b_data(&h1c->obuf)) {
2112 h1_release_buf(h1c, &h1c->obuf);
2113 if (h1c->flags & H1C_F_CS_SHUTW_NOW)
Christopher Faulet666a0c42019-01-08 11:12:04 +01002114 h1_shutw_conn(conn, CS_SHW_NORMAL);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002115 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002116 else if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002117 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002118
2119 return sent;
2120}
2121
Christopher Faulet51dbc942018-09-13 09:05:15 +02002122
2123/* callback called on any event by the connection handler.
2124 * It applies changes and returns zero, or < 0 if it wants immediate
2125 * destruction of the connection.
2126 */
2127static int h1_process(struct h1c * h1c)
2128{
2129 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002130 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002131
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002132 if (!conn->ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002133 return -1;
2134
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002135 if (h1c->flags & H1C_F_CS_WAIT_CONN) {
Olivier Houchard690e0f02019-06-11 16:37:24 +02002136 if (!(conn->flags & (CO_FL_CONNECTED|CO_FL_ERROR)) ||
Olivier Houchard60630032019-06-13 17:37:00 +02002137 (!(conn->flags & CO_FL_ERROR) && (conn->flags & CO_FL_HANDSHAKE)))
Christopher Faulet539e0292018-11-19 10:40:09 +01002138 goto end;
2139 h1c->flags &= ~H1C_F_CS_WAIT_CONN;
Christopher Fauleta0883e62018-12-11 16:26:50 +01002140 h1_wake_stream_for_send(h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002141 }
2142
Christopher Fauletfeb11742018-11-29 15:12:34 +01002143 if (!h1s) {
Christopher Faulet470438c2019-07-11 15:40:25 +02002144 if (h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTDOWN) ||
Christopher Faulete31a0f12019-12-05 10:23:37 +01002145 conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH))
Christopher Faulet539e0292018-11-19 10:40:09 +01002146 goto release;
Christopher Faulete31a0f12019-12-05 10:23:37 +01002147 if (!conn_is_back(conn) && (h1c->flags & H1C_F_CS_IDLE)) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01002148 if (!h1s_create(h1c, NULL, NULL))
Christopher Faulet539e0292018-11-19 10:40:09 +01002149 goto release;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002150 }
Christopher Faulet25c047b2021-04-19 19:57:43 +02002151 else if (conn_is_back(conn) && (h1c->flags & H1C_F_CS_IDLE) && b_data(&h1c->ibuf))
2152 goto release;
Christopher Faulet1a7ad7a2018-12-04 16:10:44 +01002153 else
Olivier Houcharde7284782018-12-06 18:54:54 +01002154 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002155 h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002156 }
2157
Christopher Fauletfeb11742018-11-29 15:12:34 +01002158 if (b_data(&h1c->ibuf) && h1s->csinfo.t_idle == -1)
2159 h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake;
2160
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002161 if (conn_xprt_read0_pending(conn))
2162 h1s->flags |= H1S_F_REOS;
2163
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002164 if (!h1s_data_pending(h1s) && h1s && h1s->cs && h1s->cs->data_cb->wake &&
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002165 (h1s->flags & H1S_F_REOS || h1c->flags & H1C_F_CS_ERROR ||
Olivier Houchard32d75ed2019-01-14 17:27:23 +01002166 conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH))) {
Olivier Houchard75159a92018-12-03 18:46:09 +01002167 if (h1c->flags & H1C_F_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002168 h1s->cs->flags |= CS_FL_ERROR;
Olivier Houchard75159a92018-12-03 18:46:09 +01002169 h1s->cs->data_cb->wake(h1s->cs);
2170 }
Christopher Faulet47365272018-10-31 17:40:50 +01002171 end:
Christopher Fauletb5762062020-08-05 11:31:16 +02002172 h1_refresh_timeout(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002173 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01002174
2175 release:
Christopher Faulet73c12072019-04-08 11:23:22 +02002176 h1_release(h1c);
Christopher Faulet539e0292018-11-19 10:40:09 +01002177 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002178}
2179
2180static struct task *h1_io_cb(struct task *t, void *ctx, unsigned short status)
2181{
2182 struct h1c *h1c = ctx;
2183 int ret = 0;
2184
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002185 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002186 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002187 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002188 ret |= h1_recv(h1c);
Christopher Faulet81d48432018-11-19 21:22:43 +01002189 if (ret || !h1c->h1s)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002190 h1_process(h1c);
2191 return NULL;
2192}
2193
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002194static void h1_reset(struct connection *conn)
2195{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002196 struct h1c *h1c = conn->ctx;
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002197
2198 /* Reset the flags, and let the mux know we're waiting for a connection */
2199 h1c->flags = H1C_F_CS_WAIT_CONN;
2200}
Christopher Faulet51dbc942018-09-13 09:05:15 +02002201
2202static int h1_wake(struct connection *conn)
2203{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002204 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01002205 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002206
Christopher Faulet539e0292018-11-19 10:40:09 +01002207 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01002208 ret = h1_process(h1c);
2209 if (ret == 0) {
2210 struct h1s *h1s = h1c->h1s;
2211
2212 if (h1s && h1s->cs && h1s->cs->data_cb->wake)
2213 ret = h1s->cs->data_cb->wake(h1s->cs);
2214 }
2215 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002216}
2217
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002218/* Connection timeout management. The principle is that if there's no receipt
2219 * nor sending for a certain amount of time, the connection is closed.
2220 */
2221static struct task *h1_timeout_task(struct task *t, void *context, unsigned short state)
2222{
2223 struct h1c *h1c = context;
2224 int expired = tick_is_expired(t->expire, now_ms);
2225
2226 if (!expired && h1c)
2227 return t;
2228
Olivier Houchard3f795f72019-04-17 22:51:06 +02002229 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002230
2231 if (!h1c) {
2232 /* resources were already deleted */
2233 return NULL;
2234 }
2235
2236 h1c->task = NULL;
2237 /* If a stream is still attached to the mux, just set an error and wait
2238 * for the stream's timeout. Otherwise, release the mux. This is only ok
2239 * because same timeouts are used.
2240 */
2241 if (h1c->h1s && h1c->h1s->cs)
2242 h1c->flags |= H1C_F_CS_ERROR;
2243 else
Christopher Faulet73c12072019-04-08 11:23:22 +02002244 h1_release(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002245 return NULL;
2246}
2247
Christopher Faulet51dbc942018-09-13 09:05:15 +02002248/*******************************************/
2249/* functions below are used by the streams */
2250/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02002251
Christopher Faulet51dbc942018-09-13 09:05:15 +02002252/*
2253 * Attach a new stream to a connection
2254 * (Used for outgoing connections)
2255 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01002256static struct conn_stream *h1_attach(struct connection *conn, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002257{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002258 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002259 struct conn_stream *cs = NULL;
2260 struct h1s *h1s;
2261
2262 if (h1c->flags & H1C_F_CS_ERROR)
2263 goto end;
2264
2265 cs = cs_new(h1c->conn);
2266 if (!cs)
2267 goto end;
2268
Olivier Houchardf502aca2018-12-14 19:42:40 +01002269 h1s = h1s_create(h1c, cs, sess);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002270 if (h1s == NULL)
2271 goto end;
2272
2273 return cs;
2274 end:
2275 cs_free(cs);
2276 return NULL;
2277}
2278
2279/* Retrieves a valid conn_stream from this connection, or returns NULL. For
2280 * this mux, it's easy as we can only store a single conn_stream.
2281 */
2282static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
2283{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002284 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002285 struct h1s *h1s = h1c->h1s;
2286
2287 if (h1s)
2288 return h1s->cs;
2289
2290 return NULL;
2291}
2292
Christopher Faulet73c12072019-04-08 11:23:22 +02002293static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002294{
Christopher Faulet73c12072019-04-08 11:23:22 +02002295 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002296
Christopher Faulet39a96ee2019-04-08 10:52:21 +02002297 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02002298 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002299}
2300
2301/*
2302 * Detach the stream from the connection and possibly release the connection.
2303 */
2304static void h1_detach(struct conn_stream *cs)
2305{
2306 struct h1s *h1s = cs->ctx;
2307 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01002308 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01002309 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002310
2311 cs->ctx = NULL;
2312 if (!h1s)
2313 return;
2314
Olivier Houchardf502aca2018-12-14 19:42:40 +01002315 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002316 h1c = h1s->h1c;
2317 h1s->cs = NULL;
2318
Olivier Houchard8a786902018-12-15 16:05:40 +01002319 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
2320 h1s_destroy(h1s);
2321
Christopher Faulete31a0f12019-12-05 10:23:37 +01002322 if (conn_is_back(h1c->conn) && (h1c->flags & H1C_F_CS_IDLE)) {
Christopher Faulet0bf28f82019-07-19 14:51:06 +02002323 /* If there are any excess server data in the input buffer,
2324 * release it and close the connection ASAP (some data may
2325 * remain in the output buffer). This happens if a server sends
2326 * invalid responses. So in such case, we don't want to reuse
2327 * the connection
Christopher Faulet39e679b2019-07-19 11:34:08 +02002328 */
Christopher Faulet0bf28f82019-07-19 14:51:06 +02002329 if (b_data(&h1c->ibuf)) {
2330 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulete31a0f12019-12-05 10:23:37 +01002331 h1c->flags = (h1c->flags & ~H1C_F_CS_IDLE) | H1C_F_CS_SHUTW_NOW;
Christopher Faulet0bf28f82019-07-19 14:51:06 +02002332 goto release;
2333 }
Christopher Faulet39e679b2019-07-19 11:34:08 +02002334
Christopher Faulet9400a392018-11-23 23:10:39 +01002335 /* Never ever allow to reuse a connection from a non-reuse backend */
Olivier Houchard44d59142018-12-13 18:46:22 +01002336 if ((h1c->px->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
Christopher Faulet9400a392018-11-23 23:10:39 +01002337 h1c->conn->flags |= CO_FL_PRIVATE;
2338
Olivier Houchard44d59142018-12-13 18:46:22 +01002339 if (!(h1c->conn->owner)) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01002340 h1c->conn->owner = sess;
Olivier Houchard351411f2018-12-27 17:20:54 +01002341 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
2342 h1c->conn->owner = NULL;
2343 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn))
2344 /* The server doesn't want it, let's kill the connection right away */
Olivier Houchard109ba132020-02-14 13:23:45 +01002345 h1c->conn->mux->destroy(h1c);
Olivier Houchard351411f2018-12-27 17:20:54 +01002346 else
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002347 tasklet_wakeup(h1c->wait_event.tasklet);
Olivier Houchard351411f2018-12-27 17:20:54 +01002348 return;
Olivier Houchard351411f2018-12-27 17:20:54 +01002349 }
Olivier Houchard44d59142018-12-13 18:46:22 +01002350 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002351 if (h1c->conn->owner == sess) {
2352 int ret = session_check_idle_conn(sess, h1c->conn);
2353 if (ret == -1)
2354 /* The connection got destroyed, let's leave */
2355 return;
2356 else if (ret == 1) {
2357 /* The connection was added to the server list,
2358 * wake the task so we can subscribe to events
2359 */
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002360 tasklet_wakeup(h1c->wait_event.tasklet);
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002361 return;
2362 }
2363 }
Christopher Faulet9400a392018-11-23 23:10:39 +01002364 /* we're in keep-alive with an idle connection, monitor it if not already done */
Olivier Houchard44d59142018-12-13 18:46:22 +01002365 if (LIST_ISEMPTY(&h1c->conn->list)) {
Christopher Faulet9400a392018-11-23 23:10:39 +01002366 struct server *srv = objt_server(h1c->conn->target);
2367
2368 if (srv) {
2369 if (h1c->conn->flags & CO_FL_PRIVATE)
2370 LIST_ADD(&srv->priv_conns[tid], &h1c->conn->list);
Olivier Houchard8a786902018-12-15 16:05:40 +01002371 else if (is_not_first)
Christopher Faulet9400a392018-11-23 23:10:39 +01002372 LIST_ADD(&srv->safe_conns[tid], &h1c->conn->list);
2373 else
2374 LIST_ADD(&srv->idle_conns[tid], &h1c->conn->list);
2375 }
2376 }
2377 }
2378
Christopher Faulet0bf28f82019-07-19 14:51:06 +02002379 release:
Christopher Faulet9fa93f62019-06-28 17:41:42 +02002380 /* We don't want to close right now unless the connection is in error or shut down for writes */
Christopher Faulet470438c2019-07-11 15:40:25 +02002381 if ((h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTDOWN|H1C_F_UPG_H2C)) ||
2382 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
2383 ((h1c->flags & H1C_F_CS_SHUTW_NOW) && !b_data(&h1c->obuf)) ||
2384 !h1c->conn->owner)
Christopher Faulet73c12072019-04-08 11:23:22 +02002385 h1_release(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002386 else {
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002387 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Fauletb5762062020-08-05 11:31:16 +02002388 h1_refresh_timeout(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002389 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002390}
2391
2392
2393static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
2394{
2395 struct h1s *h1s = cs->ctx;
Christopher Faulet7f366362019-04-08 10:51:20 +02002396 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002397
2398 if (!h1s)
2399 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02002400 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002401
Christopher Faulet7f366362019-04-08 10:51:20 +02002402 if ((cs->flags & CS_FL_KILL_CONN) || (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)))
2403 goto do_shutr;
2404
Christopher Faulet0ef372a2019-04-08 10:57:20 +02002405 if ((h1c->flags & H1C_F_UPG_H2C) || (h1s->flags & H1S_F_WANT_KAL))
Christopher Fauletf2824e62018-10-01 12:12:37 +02002406 return;
2407
Christopher Faulet7f366362019-04-08 10:51:20 +02002408 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002409 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
2410 if (cs->flags & CS_FL_SHR)
2411 return;
2412 if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002413 cs->conn->xprt->shutr(cs->conn, cs->conn->xprt_ctx,
Christopher Fauletf36e72b2019-12-05 11:18:31 +01002414 (mode == CS_SHR_DRAIN));
Christopher Faulet51dbc942018-09-13 09:05:15 +02002415}
2416
2417static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
2418{
2419 struct h1s *h1s = cs->ctx;
2420 struct h1c *h1c;
2421
2422 if (!h1s)
2423 return;
2424 h1c = h1s->h1c;
2425
Christopher Faulet7f366362019-04-08 10:51:20 +02002426 if ((cs->flags & CS_FL_KILL_CONN) || (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)))
2427 goto do_shutw;
Olivier Houchardd2e88c72018-12-19 15:55:23 +01002428
Christopher Faulet0ef372a2019-04-08 10:57:20 +02002429 if ((h1c->flags & H1C_F_UPG_H2C) ||
2430 ((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 +02002431 return;
2432
Christopher Faulet7f366362019-04-08 10:51:20 +02002433 do_shutw:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002434 h1c->flags |= H1C_F_CS_SHUTW_NOW;
2435 if ((cs->flags & CS_FL_SHW) || b_data(&h1c->obuf))
2436 return;
2437
Christopher Faulet666a0c42019-01-08 11:12:04 +01002438 h1_shutw_conn(cs->conn, mode);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002439}
2440
Christopher Faulet666a0c42019-01-08 11:12:04 +01002441static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002442{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002443 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002444
Willy Tarreau8e545d32021-03-26 09:09:42 +01002445 if (conn->flags & CO_FL_SOCK_WR_SH)
2446 return;
2447
Christopher Faulet666a0c42019-01-08 11:12:04 +01002448 conn_xprt_shutw(conn);
2449 conn_sock_shutw(conn, (mode == CS_SHW_NORMAL));
Christopher Fauletf36e72b2019-12-05 11:18:31 +01002450 h1c->flags = (h1c->flags & ~H1C_F_CS_SHUTW_NOW) | H1C_F_CS_SHUTDOWN;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002451}
2452
2453/* Called from the upper layer, to unsubscribe to events */
2454static int h1_unsubscribe(struct conn_stream *cs, int event_type, void *param)
2455{
2456 struct wait_event *sw;
2457 struct h1s *h1s = cs->ctx;
2458
2459 if (!h1s)
2460 return 0;
2461
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002462 if (event_type & SUB_RETRY_RECV) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002463 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002464 BUG_ON(h1s->recv_wait != sw);
2465 sw->events &= ~SUB_RETRY_RECV;
2466 h1s->recv_wait = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002467 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002468 if (event_type & SUB_RETRY_SEND) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002469 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002470 BUG_ON(h1s->send_wait != sw);
2471 sw->events &= ~SUB_RETRY_SEND;
2472 h1s->send_wait = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002473 }
2474 return 0;
2475}
2476
2477/* Called from the upper layer, to subscribe to events, such as being able to send */
2478static int h1_subscribe(struct conn_stream *cs, int event_type, void *param)
2479{
2480 struct wait_event *sw;
2481 struct h1s *h1s = cs->ctx;
2482
2483 if (!h1s)
2484 return -1;
2485
2486 switch (event_type) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002487 case SUB_RETRY_RECV:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002488 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002489 BUG_ON(h1s->recv_wait != NULL || (sw->events & SUB_RETRY_RECV));
2490 sw->events |= SUB_RETRY_RECV;
2491 h1s->recv_wait = sw;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002492 return 0;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002493 case SUB_RETRY_SEND:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002494 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002495 BUG_ON(h1s->send_wait != NULL || (sw->events & SUB_RETRY_SEND));
2496 sw->events |= SUB_RETRY_SEND;
2497 h1s->send_wait = sw;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002498 return 0;
2499 default:
2500 break;
2501 }
2502 return -1;
2503}
2504
2505/* Called from the upper layer, to receive data */
2506static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
2507{
2508 struct h1s *h1s = cs->ctx;
Christopher Faulet539e0292018-11-19 10:40:09 +01002509 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002510 size_t ret = 0;
2511
Christopher Faulet539e0292018-11-19 10:40:09 +01002512 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet30db3d72019-05-17 15:35:33 +02002513 ret = h1_process_input(h1c, buf, count);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002514
Christopher Faulete18777b2019-04-16 16:46:36 +02002515 if (flags & CO_RFL_BUF_FLUSH) {
2516 struct h1m *h1m = (!conn_is_back(cs->conn) ? &h1s->req : &h1s->res);
2517
Christopher Fauletafadc9a2020-07-03 14:51:15 +02002518 if (h1m->state == H1_MSG_TUNNEL || (h1m->state == H1_MSG_DATA && h1m->curr_len))
Christopher Faulete18777b2019-04-16 16:46:36 +02002519 h1s->flags |= H1S_F_BUF_FLUSH;
2520 }
Olivier Houchardcd5da7a2019-08-22 18:34:25 +02002521 else {
Christopher Faulet0528ae22020-07-03 15:12:00 +02002522 if (ret)
2523 h1s->flags &= ~H1S_F_SPLICED_DATA;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002524 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Fauletd2a762f2020-07-24 16:31:14 +02002525 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002526 }
2527 return ret;
2528}
2529
2530
2531/* Called from the upper layer, to send data */
2532static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
2533{
2534 struct h1s *h1s = cs->ctx;
2535 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002536 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002537
2538 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002539 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002540
2541 h1c = h1s->h1c;
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002542 if (h1c->flags & H1C_F_CS_WAIT_CONN)
2543 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002544
Christopher Faulet192333e2021-03-01 17:46:32 +01002545 if (h1c->flags & H1C_F_CS_ERROR) {
2546 cs->flags |= CS_FL_ERROR;
2547 return 0;
2548 }
2549
Christopher Fauletc31872f2019-06-04 22:09:36 +02002550 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002551 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002552
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002553 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
2554 ret = h1_process_output(h1c, buf, count);
2555 if (!ret)
2556 break;
2557 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02002558 count -= ret;
Olivier Houcharda1012862020-01-15 19:13:32 +01002559 if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c))
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002560 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002561 }
Christopher Faulet192333e2021-03-01 17:46:32 +01002562
2563 if (h1c->flags & H1C_F_CS_ERROR)
2564 cs->flags |= CS_FL_ERROR;
2565
Christopher Fauletb5762062020-08-05 11:31:16 +02002566 h1_refresh_timeout(h1c);
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002567 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002568}
2569
Willy Tarreaue5733232019-05-22 19:24:06 +02002570#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02002571/* Send and get, using splicing */
2572static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
2573{
2574 struct h1s *h1s = cs->ctx;
2575 struct h1m *h1m = (!conn_is_back(cs->conn) ? &h1s->req : &h1s->res);
2576 int ret = 0;
2577
Christopher Faulet2c411be2019-11-05 16:24:27 +01002578 if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) {
Christopher Faulete18777b2019-04-16 16:46:36 +02002579 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
Christopher Faulet1146f972019-05-29 14:35:24 +02002580 if (!(h1s->h1c->wait_event.events & SUB_RETRY_RECV))
2581 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_RECV, &h1s->h1c->wait_event);
Christopher Faulete18777b2019-04-16 16:46:36 +02002582 goto end;
2583 }
2584
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002585 if (h1s_data_pending(h1s)) {
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002586 h1s->flags |= H1S_F_BUF_FLUSH;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002587 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002588 }
2589
2590 h1s->flags &= ~H1S_F_BUF_FLUSH;
2591 h1s->flags |= H1S_F_SPLICED_DATA;
Christopher Faulet8e8168a2020-07-03 15:02:25 +02002592
2593 if (!h1_recv_allowed(h1s->h1c))
2594 goto end;
2595
Christopher Faulet1be55f92018-10-02 15:59:23 +02002596 if (h1m->state == H1_MSG_DATA && count > h1m->curr_len)
2597 count = h1m->curr_len;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002598 ret = cs->conn->xprt->rcv_pipe(cs->conn, cs->conn->xprt_ctx, pipe, count);
Christopher Faulet290988a2020-07-24 16:13:12 +02002599 if (ret <= 0)
2600 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
2601 else if (h1m->state == H1_MSG_DATA) {
Christopher Faulet1be55f92018-10-02 15:59:23 +02002602 h1m->curr_len -= ret;
Christopher Faulete18777b2019-04-16 16:46:36 +02002603 if (!h1m->curr_len)
2604 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
2605 }
2606
Christopher Faulet1be55f92018-10-02 15:59:23 +02002607 end:
Christopher Faulet038ad812019-04-17 11:03:22 +02002608 if (conn_xprt_read0_pending(cs->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002609 h1s->flags |= H1S_F_REOS;
Christopher Fauletac4778c2019-11-15 11:14:23 +01002610 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
Christopher Faulet038ad812019-04-17 11:03:22 +02002611 }
Willy Tarreau7e9dd732020-01-17 16:19:34 +01002612
Christopher Faulete0ca6ad2020-07-07 10:56:40 +02002613 if ((h1s->flags & H1S_F_REOS) ||
2614 (h1m->state != H1_MSG_TUNNEL && h1m->state != H1_MSG_DATA) ||
Christopher Fauletafadc9a2020-07-03 14:51:15 +02002615 (h1m->state == H1_MSG_DATA && !h1m->curr_len))
Willy Tarreau7e9dd732020-01-17 16:19:34 +01002616 cs->flags &= ~CS_FL_MAY_SPLICE;
2617
Christopher Faulet1be55f92018-10-02 15:59:23 +02002618 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002619}
2620
2621static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
2622{
2623 struct h1s *h1s = cs->ctx;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002624 int ret = 0;
2625
2626 if (b_data(&h1s->h1c->obuf))
2627 goto end;
2628
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002629 ret = cs->conn->xprt->snd_pipe(cs->conn, cs->conn->xprt_ctx, pipe);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002630 end:
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002631 if (pipe->data) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002632 if (!(h1s->h1c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002633 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_SEND, &h1s->h1c->wait_event);
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002634 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002635 return ret;
2636}
2637#endif
2638
Olivier Houchard198d1292019-10-25 16:19:26 +02002639static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
2640{
2641 int ret = 0;
2642 switch (mux_ctl) {
2643 case MUX_STATUS:
2644 if (conn->flags & CO_FL_CONNECTED)
2645 ret |= MUX_STATUS_READY;
2646 return ret;
2647 default:
2648 return -1;
2649 }
2650}
2651
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002652/* for debugging with CLI's "show fd" command */
2653static void h1_show_fd(struct buffer *msg, struct connection *conn)
2654{
2655 struct h1c *h1c = conn->ctx;
2656 struct h1s *h1s = h1c->h1s;
2657
Christopher Fauletf376a312019-01-04 15:16:06 +01002658 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
2659 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002660 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
2661 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
2662 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
2663 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
2664
2665 if (h1s) {
2666 char *method;
2667
2668 if (h1s->meth < HTTP_METH_OTHER)
2669 method = http_known_methods[h1s->meth].ptr;
2670 else
2671 method = "UNKNOWN";
2672 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
2673 " .meth=%s status=%d",
2674 h1s, h1s->flags,
2675 h1m_state_str(h1s->req.state),
2676 h1m_state_str(h1s->res.state), method, h1s->status);
2677 if (h1s->cs)
2678 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
2679 h1s->cs->flags, h1s->cs->data);
2680 }
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002681}
2682
2683
2684/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
2685static int add_hdr_case_adjust(const char *from, const char *to, char **err)
2686{
2687 struct h1_hdr_entry *entry;
2688
2689 /* Be sure there is a non-empty <to> */
2690 if (!strlen(to)) {
2691 memprintf(err, "expect <to>");
2692 return -1;
2693 }
2694
2695 /* Be sure only the case differs between <from> and <to> */
2696 if (strcasecmp(from, to)) {
2697 memprintf(err, "<from> and <to> must not differ execpt the case");
2698 return -1;
2699 }
2700
2701 /* Be sure <from> does not already existsin the tree */
2702 if (ebis_lookup(&hdrs_map.map, from)) {
2703 memprintf(err, "duplicate entry '%s'", from);
2704 return -1;
2705 }
2706
2707 /* Create the entry and insert it in the tree */
2708 entry = malloc(sizeof(*entry));
2709 if (!entry) {
2710 memprintf(err, "out of memory");
2711 return -1;
2712 }
2713
2714 entry->node.key = strdup(from);
2715 entry->name.ptr = strdup(to);
2716 entry->name.len = strlen(to);
2717 if (!entry->node.key || !entry->name.ptr) {
2718 free(entry->node.key);
2719 free(entry->name.ptr);
2720 free(entry);
2721 memprintf(err, "out of memory");
2722 return -1;
2723 }
2724 ebis_insert(&hdrs_map.map, &entry->node);
2725 return 0;
2726}
2727
2728static void h1_hdeaders_case_adjust_deinit()
2729{
2730 struct ebpt_node *node, *next;
2731 struct h1_hdr_entry *entry;
2732
2733 node = ebpt_first(&hdrs_map.map);
2734 while (node) {
2735 next = ebpt_next(node);
2736 ebpt_delete(node);
2737 entry = container_of(node, struct h1_hdr_entry, node);
2738 free(entry->node.key);
2739 free(entry->name.ptr);
2740 free(entry);
2741 node = next;
2742 }
2743 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002744}
2745
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002746static int cfg_h1_headers_case_adjust_postparser()
2747{
2748 FILE *file = NULL;
2749 char *c, *key_beg, *key_end, *value_beg, *value_end;
2750 char *err;
2751 int rc, line = 0, err_code = 0;
2752
2753 if (!hdrs_map.name)
2754 goto end;
2755
2756 file = fopen(hdrs_map.name, "r");
2757 if (!file) {
2758 ha_alert("config : h1-outgoing-headers-case-adjust-file '%s': failed to open file.\n",
2759 hdrs_map.name);
2760 err_code |= ERR_ALERT | ERR_FATAL;
2761 goto end;
2762 }
2763
2764 /* now parse all lines. The file may contain only two header name per
2765 * line, separated by spaces. All heading and trailing spaces will be
2766 * ignored. Lines starting with a # are ignored.
2767 */
2768 while (fgets(trash.area, trash.size, file) != NULL) {
2769 line++;
2770 c = trash.area;
2771
2772 /* strip leading spaces and tabs */
2773 while (*c == ' ' || *c == '\t')
2774 c++;
2775
2776 /* ignore emptu lines, or lines beginning with a dash */
2777 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
2778 continue;
2779
2780 /* look for the end of the key */
2781 key_beg = c;
2782 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
2783 c++;
2784 key_end = c;
2785
2786 /* strip middle spaces and tabs */
2787 while (*c == ' ' || *c == '\t')
2788 c++;
2789
2790 /* look for the end of the value, it is the end of the line */
2791 value_beg = c;
2792 while (*c && *c != '\n' && *c != '\r')
2793 c++;
2794 value_end = c;
2795
2796 /* trim possibly trailing spaces and tabs */
2797 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
2798 value_end--;
2799
2800 /* set final \0 and check entries */
2801 *key_end = '\0';
2802 *value_end = '\0';
2803
2804 err = NULL;
2805 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
2806 if (rc < 0) {
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002807 ha_alert("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
2808 hdrs_map.name, err, line);
2809 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Faulet27f20172019-07-30 16:51:42 +02002810 free(err);
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002811 goto end;
2812 }
2813 if (rc > 0) {
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002814 ha_warning("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
2815 hdrs_map.name, err, line);
2816 err_code |= ERR_WARN;
Christopher Faulet27f20172019-07-30 16:51:42 +02002817 free(err);
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002818 }
2819 }
2820
2821 end:
2822 if (file)
2823 fclose(file);
2824 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
2825 return err_code;
2826}
2827
2828
2829/* config parser for global "h1-outgoing-header-case-adjust" */
2830static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
2831 struct proxy *defpx, const char *file, int line,
2832 char **err)
2833{
2834 if (too_many_args(2, args, err, NULL))
2835 return -1;
2836 if (!*(args[1]) || !*(args[2])) {
2837 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
2838 return -1;
2839 }
2840 return add_hdr_case_adjust(args[1], args[2], err);
2841}
2842
2843/* config parser for global "h1-outgoing-headers-case-adjust-file" */
2844static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
2845 struct proxy *defpx, const char *file, int line,
2846 char **err)
2847{
2848 if (too_many_args(1, args, err, NULL))
2849 return -1;
2850 if (!*(args[1])) {
2851 memprintf(err, "'%s' expects <file> as argument.", args[0]);
2852 return -1;
2853 }
2854 free(hdrs_map.name);
2855 hdrs_map.name = strdup(args[1]);
2856 return 0;
2857}
2858
2859
2860/* config keyword parsers */
2861static struct cfg_kw_list cfg_kws = {{ }, {
2862 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
2863 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
2864 { 0, NULL, NULL },
2865 }
2866};
2867
2868INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
2869REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
2870
2871
Christopher Faulet51dbc942018-09-13 09:05:15 +02002872/****************************************/
2873/* MUX initialization and instanciation */
2874/****************************************/
2875
2876/* The mux operations */
Willy Tarreauf77a1582019-01-10 10:00:08 +01002877static const struct mux_ops mux_h1_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002878 .init = h1_init,
2879 .wake = h1_wake,
2880 .attach = h1_attach,
2881 .get_first_cs = h1_get_first_cs,
Christopher Fauletfeb11742018-11-29 15:12:34 +01002882 .get_cs_info = h1_get_cs_info,
Christopher Faulet51dbc942018-09-13 09:05:15 +02002883 .detach = h1_detach,
2884 .destroy = h1_destroy,
2885 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01002886 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02002887 .rcv_buf = h1_rcv_buf,
2888 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02002889#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02002890 .rcv_pipe = h1_rcv_pipe,
2891 .snd_pipe = h1_snd_pipe,
2892#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02002893 .subscribe = h1_subscribe,
2894 .unsubscribe = h1_unsubscribe,
2895 .shutr = h1_shutr,
2896 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002897 .show_fd = h1_show_fd,
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002898 .reset = h1_reset,
Olivier Houchard198d1292019-10-25 16:19:26 +02002899 .ctl = h1_ctl,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02002900 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02002901 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02002902};
2903
2904
2905/* this mux registers default HTX proto */
2906static struct mux_proto_list mux_proto_htx =
2907{ .token = IST(""), .mode = PROTO_MODE_HTX, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
2908
Willy Tarreau0108d902018-11-25 19:14:37 +01002909INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_htx);
2910
Christopher Faulet51dbc942018-09-13 09:05:15 +02002911/*
2912 * Local variables:
2913 * c-indent-level: 8
2914 * c-basic-offset: 8
2915 * End:
2916 */