blob: d17626277c70ca1f414fb38b3eba981f6c5ed843 [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 Fauletcb55f482018-12-10 11:56:47 +0100162 if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL|H1C_F_IN_BUSY)))
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 Fauletd44ad5b2018-11-19 21:52:12 +01001517 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001518 size_t used = htx_used_space(htx);
1519
Christopher Faulet129817b2018-09-20 16:14:40 +02001520 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001521 ret = h1_process_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001522 if (!ret)
1523 break;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001524 if ((h1m->flags & H1_MF_RESP) &&
1525 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1526 h1m_init_res(&h1s->res);
1527 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
1528 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001529 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001530 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001531 ret = h1_process_data(h1s, h1m, htx, &h1c->ibuf, &total, count, buf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01001532 htx = htx_from_buf(buf);
Christopher Faulet129817b2018-09-20 16:14:40 +02001533 if (!ret)
1534 break;
1535 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001536 else if (h1m->state == H1_MSG_TRAILERS) {
1537 if (!(h1s->flags & H1S_F_HAVE_I_TLR)) {
1538 ret = h1_process_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
1539 if (!ret)
1540 break;
1541 }
Christopher Faulet1021e722019-09-03 21:55:14 +02001542 else if (!h1_process_eom(h1s, h1m, htx, count))
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001543 break;
1544 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001545 else if (h1m->state == H1_MSG_DONE) {
Christopher Fauletac4778c2019-11-15 11:14:23 +01001546 if (!(h1m->flags & H1_MF_RESP) && h1s->status == 101)
1547 h1_set_req_tunnel_mode(h1s);
Christopher Faulet6d2abd72021-02-22 08:11:59 +01001548 else if ((h1m->flags & H1_MF_RESP) && h1s->req.state == H1_MSG_TUNNEL)
1549 h1s->req.state = H1_MSG_DONE;
Christopher Fauletaffe0cb2020-07-10 10:01:26 +02001550 else if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) {
Christopher Faulet2f320ee2019-04-16 20:26:53 +02001551 h1c->flags |= H1C_F_IN_BUSY;
Christopher Fauletaffe0cb2020-07-10 10:01:26 +02001552 break;
1553 }
1554 else
1555 break;
Christopher Fauletcb55f482018-12-10 11:56:47 +01001556 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001557 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001558 ret = h1_process_data(h1s, h1m, htx, &h1c->ibuf, &total, count, buf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01001559 htx = htx_from_buf(buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001560 if (!ret)
1561 break;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001562 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001563 else {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001564 h1s->flags |= errflag;
Christopher Faulet129817b2018-09-20 16:14:40 +02001565 break;
1566 }
1567
Christopher Faulet30db3d72019-05-17 15:35:33 +02001568 count -= htx_used_space(htx) - used;
Christopher Faulet98e2bc22019-09-03 16:26:15 +02001569 } while (!(h1s->flags & errflag));
Christopher Faulet129817b2018-09-20 16:14:40 +02001570
Christopher Faulet47365272018-10-31 17:40:50 +01001571 if (h1s->flags & errflag)
1572 goto parsing_err;
Christopher Faulet129817b2018-09-20 16:14:40 +02001573
Christopher Faulet539e0292018-11-19 10:40:09 +01001574 b_del(&h1c->ibuf, total);
1575
1576 end:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001577 htx_to_buf(htx, buf);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001578 ret = htx->data - data;
Willy Tarreau45f2b892018-12-05 07:59:27 +01001579 if (h1c->flags & H1C_F_IN_FULL && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001580 h1c->flags &= ~H1C_F_IN_FULL;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001581 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet47365272018-10-31 17:40:50 +01001582 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001583
Christopher Fauletcf56b992018-12-11 16:12:31 +01001584 h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
1585
Christopher Fauletcdc90e92019-03-28 13:28:46 +01001586 if (!b_data(&h1c->ibuf))
Christopher Faulet539e0292018-11-19 10:40:09 +01001587 h1_release_buf(h1c, &h1c->ibuf);
Christopher Fauleta882a462019-12-06 15:59:05 +01001588
1589 if ((h1s_data_pending(h1s) && !htx_is_empty(htx)) || (h1s->flags & H1S_F_APPEND_EOM))
Christopher Fauletcf56b992018-12-11 16:12:31 +01001590 h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM;
Christopher Faulet539e0292018-11-19 10:40:09 +01001591
Willy Tarreau62038152019-08-23 09:29:29 +02001592 if (((h1s->flags & (H1S_F_REOS|H1S_F_APPEND_EOM)) == H1S_F_REOS) &&
1593 (!h1s_data_pending(h1s) || htx_is_empty(htx))) {
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001594 h1s->cs->flags |= CS_FL_EOS;
Christopher Faulet26922382019-03-08 15:13:41 +01001595 if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE)
Christopher Fauletb8d2ee02019-02-25 15:29:51 +01001596 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet539e0292018-11-19 10:40:09 +01001597 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001598
Christopher Faulet30db3d72019-05-17 15:35:33 +02001599 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001600
1601 parsing_err:
Christopher Faulet47365272018-10-31 17:40:50 +01001602 b_reset(&h1c->ibuf);
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001603 htx_to_buf(htx, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001604 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001605}
1606
Christopher Faulet129817b2018-09-20 16:14:40 +02001607/*
1608 * Process outgoing data. It parses data and transfer them from the channel buffer into
1609 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1610 * 0 if it couldn't proceed.
1611 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02001612static size_t h1_process_output(struct h1c *h1c, struct buffer *buf, size_t count)
1613{
Christopher Faulet129817b2018-09-20 16:14:40 +02001614 struct h1s *h1s = h1c->h1s;
1615 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001616 struct htx *chn_htx;
1617 struct htx_blk *blk;
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001618 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001619 size_t total = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001620 int errflag;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001621
Christopher Faulet47365272018-10-31 17:40:50 +01001622 if (!count)
1623 goto end;
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001624
Christopher Faulet94b2c762019-05-24 15:28:57 +02001625 chn_htx = htxbuf(buf);
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001626 if (htx_is_empty(chn_htx))
1627 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001628
Christopher Faulet51dbc942018-09-13 09:05:15 +02001629 if (!h1_get_buf(h1c, &h1c->obuf)) {
1630 h1c->flags |= H1C_F_OUT_ALLOC;
1631 goto end;
1632 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001633
Christopher Fauletf2824e62018-10-01 12:12:37 +02001634 if (!conn_is_back(h1c->conn)) {
1635 h1m = &h1s->res;
1636 errflag = H1S_F_RES_ERROR;
1637 }
1638 else {
1639 h1m = &h1s->req;
1640 errflag = H1S_F_REQ_ERROR;
1641 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001642
Christopher Fauletcd9f6a72019-07-04 21:22:34 +02001643 if (h1s->flags & errflag)
1644 goto end;
1645
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001646 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001647 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001648
Willy Tarreau3815b222018-12-11 19:50:43 +01001649 /* Perform some optimizations to reduce the number of buffer copies.
1650 * First, if the mux's buffer is empty and the htx area contains
1651 * exactly one data block of the same size as the requested count,
1652 * then it's possible to simply swap the caller's buffer with the
1653 * mux's output buffer and adjust offsets and length to match the
1654 * entire DATA HTX block in the middle. In this case we perform a
1655 * true zero-copy operation from end-to-end. This is the situation
1656 * that happens all the time with large files. Second, if this is not
1657 * possible, but the mux's output buffer is empty, we still have an
1658 * opportunity to avoid the copy to the intermediary buffer, by making
1659 * the intermediary buffer's area point to the output buffer's area.
1660 * In this case we want to skip the HTX header to make sure that copies
1661 * remain aligned and that this operation remains possible all the
1662 * time. This goes for headers, data blocks and any data extracted from
1663 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01001664 */
1665 if (!b_data(&h1c->obuf)) {
Willy Tarreau3815b222018-12-11 19:50:43 +01001666 if (chn_htx->used == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001667 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01001668 htx_get_blk_value(chn_htx, blk).len == count) {
1669 void *old_area = h1c->obuf.area;
1670
1671 h1c->obuf.area = buf->area;
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001672 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01001673 h1c->obuf.data = count;
1674
1675 buf->area = old_area;
1676 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01001677
1678 /* The message is chunked. We need to emit the chunk
1679 * size. We have at least the size of the struct htx to
1680 * write the chunk envelope. It should be enough.
1681 */
1682 if (h1m->flags & H1_MF_CHNK) {
1683 h1_emit_chunk_size(&h1c->obuf, count);
1684 h1_emit_chunk_crlf(&h1c->obuf);
1685 }
1686
Willy Tarreau3815b222018-12-11 19:50:43 +01001687 total += count;
1688 goto out;
1689 }
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001690 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001691 }
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001692 else
1693 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02001694
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001695 tmp.data = 0;
1696 tmp.size = b_room(&h1c->obuf);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001697 while (count && !(h1s->flags & errflag) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01001698 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02001699 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001700 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02001701 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001702 uint32_t vlen;
Christopher Faulet9768c262018-10-22 09:34:31 +02001703
Christopher Fauletb2e84162018-12-06 11:39:49 +01001704 vlen = sz;
1705 if (vlen > count) {
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001706 if (type != HTX_BLK_DATA)
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001707 goto full;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001708 vlen = count;
1709 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001710
Christopher Faulet94b2c762019-05-24 15:28:57 +02001711 if (type == HTX_BLK_UNUSED)
1712 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02001713
Christopher Faulet94b2c762019-05-24 15:28:57 +02001714 switch (h1m->state) {
1715 case H1_MSG_RQBEFORE:
1716 if (type != HTX_BLK_REQ_SL)
1717 goto error;
Christopher Faulet9768c262018-10-22 09:34:31 +02001718 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001719 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001720 h1_parse_req_vsn(h1m, sl);
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001721 if (!htx_reqline_to_h1(sl, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001722 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001723 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01001724 if (sl->flags & HTX_SL_F_BODYLESS)
1725 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001726 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet129817b2018-09-20 16:14:40 +02001727 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02001728
Christopher Faulet94b2c762019-05-24 15:28:57 +02001729 case H1_MSG_RPBEFORE:
1730 if (type != HTX_BLK_RES_SL)
1731 goto error;
Christopher Faulet9768c262018-10-22 09:34:31 +02001732 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001733 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02001734 h1_parse_res_vsn(h1m, sl);
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001735 if (!htx_stline_to_h1(sl, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001736 goto full;
Christopher Faulet03599112018-11-27 11:21:21 +01001737 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02001738 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001739 if (sl->info.res.status < 200 &&
1740 (sl->info.res.status == 100 || sl->info.res.status >= 102))
Christopher Fauletada34b62019-05-24 16:36:43 +02001741 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001742 h1m->state = H1_MSG_HDR_FIRST;
1743 break;
1744
Christopher Faulet94b2c762019-05-24 15:28:57 +02001745 case H1_MSG_HDR_FIRST:
1746 case H1_MSG_HDR_NAME:
1747 case H1_MSG_HDR_L2_LWS:
1748 if (type == HTX_BLK_EOH)
1749 goto last_lf;
1750 if (type != HTX_BLK_HDR)
1751 goto error;
Christopher Faulet9768c262018-10-22 09:34:31 +02001752 h1m->state = H1_MSG_HDR_NAME;
1753 n = htx_get_blk_name(chn_htx, blk);
1754 v = htx_get_blk_value(chn_htx, blk);
1755
1756 if (isteqi(n, ist("transfer-encoding")))
1757 h1_parse_xfer_enc_header(h1m, v);
Willy Tarreau27cd2232019-01-03 21:52:42 +01001758 else if (isteqi(n, ist("content-length"))) {
Christopher Faulet5220ef22019-03-27 15:44:56 +01001759 /* Only skip C-L header with invalid value. */
1760 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01001761 goto skip_hdr;
1762 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001763 else if (isteqi(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001764 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02001765 if (!v.len)
1766 goto skip_hdr;
1767 }
1768
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02001769 /* Try to adjust the case of the header name */
1770 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1771 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001772 if (!htx_hdr_to_h1(n, v, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001773 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001774 skip_hdr:
1775 h1m->state = H1_MSG_HDR_L2_LWS;
1776 break;
1777
Christopher Faulet94b2c762019-05-24 15:28:57 +02001778 case H1_MSG_LAST_LF:
1779 if (type != HTX_BLK_EOH)
1780 goto error;
1781 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02001782 h1m->state = H1_MSG_LAST_LF;
1783 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001784 /* There is no "Connection:" header and
1785 * it the conn_mode must be
1786 * processed. So do it */
Christopher Faulet661bfc32019-06-17 14:07:46 +02001787 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001788 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01001789 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001790 if (v.len) {
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02001791 /* Try to adjust the case of the header name */
1792 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1793 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001794 if (!htx_hdr_to_h1(n, v, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001795 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001796 }
Christopher Fauletada34b62019-05-24 16:36:43 +02001797 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001798 }
Willy Tarreau4710d202019-01-03 17:39:54 +01001799
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001800 if ((h1s->meth != HTTP_METH_CONNECT &&
1801 (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 +01001802 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
1803 (h1s->status >= 200 && h1s->status != 204 && h1s->status != 304 &&
1804 h1s->meth != HTTP_METH_HEAD && !(h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) &&
1805 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
1806 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01001807 /* chunking needed but header not seen */
Christopher Faulete5addb02019-10-04 10:23:51 +02001808 n = ist("transfer-encoding");
1809 v = ist("chunked");
1810 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1811 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
1812 if (!htx_hdr_to_h1(n, v, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001813 goto full;
Willy Tarreau4710d202019-01-03 17:39:54 +01001814 h1m->flags |= H1_MF_CHNK;
1815 }
1816
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001817 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001818 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001819
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001820 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
1821 /* a CONNECT request is sent to the server. Switch it to tunnel mode. */
1822 h1_set_req_tunnel_mode(h1s);
1823 }
Christopher Fauletac4778c2019-11-15 11:14:23 +01001824 else if ((h1m->flags & H1_MF_RESP) &&
1825 ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) || h1s->status == 101)) {
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001826 /* a successfull reply to a CONNECT or a protocol switching is sent
Christopher Fauletac4778c2019-11-15 11:14:23 +01001827 * to the client. Switch the response to tunnel mode.
1828 */
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001829 h1_set_res_tunnel_mode(h1s);
1830 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001831 else if ((h1m->flags & H1_MF_RESP) &&
1832 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1833 h1m_init_res(&h1s->res);
1834 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02001835 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001836 }
Christopher Faulet33d58b52019-07-01 16:17:30 +02001837 else if ((h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_HEAD)
1838 h1m->state = H1_MSG_DONE;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001839 else
1840 h1m->state = H1_MSG_DATA;
Christopher Faulet9768c262018-10-22 09:34:31 +02001841 break;
1842
Christopher Faulet94b2c762019-05-24 15:28:57 +02001843 case H1_MSG_DATA:
Christopher Fauletaaa25062019-07-04 17:12:12 +02001844 case H1_MSG_TUNNEL:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001845 if (type == HTX_BLK_EOM) {
1846 /* Chunked message without explicit trailers */
1847 if (h1m->flags & H1_MF_CHNK) {
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001848 if (!chunk_memcat(&tmp, "0\r\n\r\n", 5))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001849 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001850 }
1851 goto done;
1852 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001853 else if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet52131682019-06-27 17:40:14 +02001854 /* If the message is not chunked, never
1855 * add the last chunk. */
1856 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001857 goto full;
Christopher Faulet94b2c762019-05-24 15:28:57 +02001858 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001859 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02001860 else if (type != HTX_BLK_DATA)
1861 goto error;
Christopher Faulet9768c262018-10-22 09:34:31 +02001862 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001863 v.len = vlen;
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001864 if (!htx_data_to_h1(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001865 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001866 break;
1867
Christopher Faulet94b2c762019-05-24 15:28:57 +02001868 case H1_MSG_TRAILERS:
1869 if (type == HTX_BLK_EOM)
1870 goto done;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001871 else if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02001872 goto error;
1873 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02001874 h1m->state = H1_MSG_TRAILERS;
Christopher Faulet52131682019-06-27 17:40:14 +02001875 /* If the message is not chunked, ignore
1876 * trailers. It may happen with H2 messages. */
1877 if (!(h1m->flags & H1_MF_CHNK))
1878 break;
1879
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001880 if (type == HTX_BLK_EOT) {
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001881 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001882 goto full;
Christopher Faulet32188212018-11-20 18:21:43 +01001883 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001884 else { // HTX_BLK_TLR
1885 n = htx_get_blk_name(chn_htx, blk);
1886 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02001887
1888 /* Try to adjust the case of the header name */
1889 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1890 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001891 if (!htx_hdr_to_h1(n, v, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001892 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001893 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001894 break;
1895
Christopher Faulet94b2c762019-05-24 15:28:57 +02001896 case H1_MSG_DONE:
1897 if (type != HTX_BLK_EOM)
1898 goto error;
1899 done:
1900 h1m->state = H1_MSG_DONE;
Christopher Fauletac4778c2019-11-15 11:14:23 +01001901 if (!(h1m->flags & H1_MF_RESP) && h1s->status == 101)
1902 h1_set_req_tunnel_mode(h1s);
Christopher Faulet6d2abd72021-02-22 08:11:59 +01001903 else if ((h1m->flags & H1_MF_RESP) && h1s->req.state == H1_MSG_TUNNEL)
1904 h1s->req.state = H1_MSG_DONE;
1905
1906 if (h1s->h1c->flags & H1C_F_IN_BUSY) {
Christopher Fauletcd67bff2019-06-14 16:54:15 +02001907 h1s->h1c->flags &= ~H1C_F_IN_BUSY;
1908 tasklet_wakeup(h1s->h1c->wait_event.tasklet);
1909 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001910 break;
1911
Christopher Faulet9768c262018-10-22 09:34:31 +02001912 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02001913 error:
Christopher Fauletc431df82019-06-26 15:16:28 +02001914 /* Unexpected error during output processing */
1915 chn_htx->flags |= HTX_FL_PARSING_ERROR;
Christopher Fauleta2ea1582019-05-28 10:35:18 +02001916 h1s->flags |= errflag;
Christopher Fauletc431df82019-06-26 15:16:28 +02001917 h1c->flags |= H1C_F_CS_ERROR;
Christopher Faulet9768c262018-10-22 09:34:31 +02001918 break;
1919 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02001920
1921 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01001922 total += vlen;
1923 count -= vlen;
1924 if (sz == vlen)
1925 blk = htx_remove_blk(chn_htx, blk);
1926 else {
1927 htx_cut_data_blk(chn_htx, blk, vlen);
1928 break;
1929 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001930 }
1931
Christopher Faulet9768c262018-10-22 09:34:31 +02001932 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01001933 /* when the output buffer is empty, tmp shares the same area so that we
1934 * only have to update pointers and lengths.
1935 */
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001936 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
1937 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001938 else
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001939 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001940
Willy Tarreau3815b222018-12-11 19:50:43 +01001941 htx_to_buf(chn_htx, buf);
1942 out:
Christopher Faulet1cf96cd2020-12-07 18:21:27 +01001943 /* Both the request and the response reached the DONE state. So set EOI
1944 * flag on the conn-stream. Most of time, the flag will already be set,
1945 * except for protocol upgrades.
1946 */
1947 if (h1s->cs && h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)
1948 h1s->cs->flags |= CS_FL_EOI;
1949
Willy Tarreau45f2b892018-12-05 07:59:27 +01001950 if (!buf_room_for_htx_data(&h1c->obuf))
Christopher Faulet51dbc942018-09-13 09:05:15 +02001951 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001952 end:
1953 return total;
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001954
1955 full:
1956 h1c->flags |= H1C_F_OUT_FULL;
1957 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001958}
1959
Christopher Faulet51dbc942018-09-13 09:05:15 +02001960/*********************************************************/
1961/* functions below are I/O callbacks from the connection */
1962/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001963static void h1_wake_stream_for_recv(struct h1s *h1s)
1964{
1965 if (h1s && h1s->recv_wait) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001966 h1s->recv_wait->events &= ~SUB_RETRY_RECV;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001967 tasklet_wakeup(h1s->recv_wait->tasklet);
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001968 h1s->recv_wait = NULL;
1969 }
1970}
1971static void h1_wake_stream_for_send(struct h1s *h1s)
1972{
1973 if (h1s && h1s->send_wait) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001974 h1s->send_wait->events &= ~SUB_RETRY_SEND;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001975 tasklet_wakeup(h1s->send_wait->tasklet);
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001976 h1s->send_wait = NULL;
1977 }
1978}
1979
Christopher Faulet51dbc942018-09-13 09:05:15 +02001980/*
1981 * Attempt to read data, and subscribe if none available
1982 */
1983static int h1_recv(struct h1c *h1c)
1984{
1985 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01001986 struct h1s *h1s = h1c->h1s;
Olivier Houchard75159a92018-12-03 18:46:09 +01001987 size_t ret = 0, max;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001988 int rcvd = 0;
1989
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001990 if (h1c->wait_event.events & SUB_RETRY_RECV)
Christopher Fauletc386a882018-12-04 16:06:28 +01001991 return (b_data(&h1c->ibuf));
Christopher Faulet51dbc942018-09-13 09:05:15 +02001992
Olivier Houchard5b06cb32019-08-13 15:21:59 +02001993 if (!(conn->flags & CO_FL_ERROR) && h1c->flags & H1C_F_CS_WAIT_CONN)
Willy Tarreaud58f27f2019-06-03 10:12:22 +02001994 return 0;
Willy Tarreaud58f27f2019-06-03 10:12:22 +02001995
Olivier Houchard75159a92018-12-03 18:46:09 +01001996 if (!h1_recv_allowed(h1c)) {
1997 rcvd = 1;
Christopher Faulet9768c262018-10-22 09:34:31 +02001998 goto end;
Olivier Houchard75159a92018-12-03 18:46:09 +01001999 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002000
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02002001 if (!h1_get_buf(h1c, &h1c->ibuf)) {
2002 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet9768c262018-10-22 09:34:31 +02002003 goto end;
2004 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002005
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02002006 if (h1s && (h1s->flags & (H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA))) {
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002007 if (!h1s_data_pending(h1s))
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02002008 h1_wake_stream_for_recv(h1s);
2009 rcvd = 1;
Christopher Faulet9768c262018-10-22 09:34:31 +02002010 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002011 }
2012
Olivier Houchard29a22bc2018-12-04 18:16:45 +01002013 /*
2014 * If we only have a small amount of data, realign it,
2015 * it's probably cheaper than doing 2 recv() calls.
2016 */
2017 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
2018 b_slow_realign(&h1c->ibuf, trash.area, 0);
2019
Willy Tarreau45f2b892018-12-05 07:59:27 +01002020 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002021 if (max) {
2022 h1c->flags &= ~H1C_F_IN_FULL;
Willy Tarreau78f548f2018-12-05 10:02:39 +01002023
Willy Tarreaue0f24ee2018-12-14 10:51:23 +01002024 b_realign_if_empty(&h1c->ibuf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01002025 if (!b_data(&h1c->ibuf)) {
2026 /* try to pre-align the buffer like the rxbufs will be
2027 * to optimize memory copies.
2028 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01002029 h1c->ibuf.head = sizeof(struct htx);
2030 }
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002031 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, 0);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002032 }
Christopher Faulet47365272018-10-31 17:40:50 +01002033 if (ret > 0) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002034 rcvd = 1;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002035 if (h1s && h1s->cs) {
Christopher Faulet37e36072018-12-04 15:54:12 +01002036 h1s->cs->flags |= (CS_FL_READ_PARTIAL|CS_FL_RCV_MORE);
Christopher Fauletfeb11742018-11-29 15:12:34 +01002037 if (h1s->csinfo.t_idle == -1)
2038 h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake;
2039 }
Christopher Faulet47365272018-10-31 17:40:50 +01002040 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002041
Christopher Fauletcf56b992018-12-11 16:12:31 +01002042 if (!h1_recv_allowed(h1c) || !buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet81d48432018-11-19 21:22:43 +01002043 rcvd = 1;
Christopher Fauletcf56b992018-12-11 16:12:31 +01002044 goto end;
2045 }
2046
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002047 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002048
Christopher Faulet9768c262018-10-22 09:34:31 +02002049 end:
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002050 if (ret > 0 || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn))
2051 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002052
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002053 if (conn_xprt_read0_pending(conn) && h1s) {
2054 h1s->flags |= H1S_F_REOS;
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002055 rcvd = 1;
2056 }
2057
Christopher Faulet51dbc942018-09-13 09:05:15 +02002058 if (!b_data(&h1c->ibuf))
2059 h1_release_buf(h1c, &h1c->ibuf);
Willy Tarreau45f2b892018-12-05 07:59:27 +01002060 else if (!buf_room_for_htx_data(&h1c->ibuf))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002061 h1c->flags |= H1C_F_IN_FULL;
2062 return rcvd;
2063}
2064
2065
2066/*
2067 * Try to send data if possible
2068 */
2069static int h1_send(struct h1c *h1c)
2070{
2071 struct connection *conn = h1c->conn;
2072 unsigned int flags = 0;
2073 size_t ret;
2074 int sent = 0;
2075
2076 if (conn->flags & CO_FL_ERROR)
2077 return 0;
2078
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002079 if (h1c->flags & H1C_F_CS_WAIT_CONN) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002080 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002081 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002082 return 0;
2083 }
2084
Christopher Faulet51dbc942018-09-13 09:05:15 +02002085 if (!b_data(&h1c->obuf))
2086 goto end;
2087
2088 if (h1c->flags & H1C_F_OUT_FULL)
2089 flags |= CO_SFL_MSG_MORE;
2090
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002091 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002092 if (ret > 0) {
2093 h1c->flags &= ~H1C_F_OUT_FULL;
2094 b_del(&h1c->obuf, ret);
2095 sent = 1;
2096 }
2097
Christopher Faulet145aa472018-12-06 10:56:20 +01002098 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
2099 /* error or output closed, nothing to send, clear the buffer to release it */
2100 b_reset(&h1c->obuf);
2101 }
2102
Christopher Faulet51dbc942018-09-13 09:05:15 +02002103 end:
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002104 if (!(h1c->flags & H1C_F_OUT_FULL))
2105 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002106
Christopher Faulet51dbc942018-09-13 09:05:15 +02002107 /* We're done, no more to send */
2108 if (!b_data(&h1c->obuf)) {
2109 h1_release_buf(h1c, &h1c->obuf);
2110 if (h1c->flags & H1C_F_CS_SHUTW_NOW)
Christopher Faulet666a0c42019-01-08 11:12:04 +01002111 h1_shutw_conn(conn, CS_SHW_NORMAL);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002112 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002113 else if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002114 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002115
2116 return sent;
2117}
2118
Christopher Faulet51dbc942018-09-13 09:05:15 +02002119
2120/* callback called on any event by the connection handler.
2121 * It applies changes and returns zero, or < 0 if it wants immediate
2122 * destruction of the connection.
2123 */
2124static int h1_process(struct h1c * h1c)
2125{
2126 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002127 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002128
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002129 if (!conn->ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002130 return -1;
2131
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002132 if (h1c->flags & H1C_F_CS_WAIT_CONN) {
Olivier Houchard690e0f02019-06-11 16:37:24 +02002133 if (!(conn->flags & (CO_FL_CONNECTED|CO_FL_ERROR)) ||
Olivier Houchard60630032019-06-13 17:37:00 +02002134 (!(conn->flags & CO_FL_ERROR) && (conn->flags & CO_FL_HANDSHAKE)))
Christopher Faulet539e0292018-11-19 10:40:09 +01002135 goto end;
2136 h1c->flags &= ~H1C_F_CS_WAIT_CONN;
Christopher Fauleta0883e62018-12-11 16:26:50 +01002137 h1_wake_stream_for_send(h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002138 }
2139
Christopher Fauletfeb11742018-11-29 15:12:34 +01002140 if (!h1s) {
Christopher Faulet470438c2019-07-11 15:40:25 +02002141 if (h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTDOWN) ||
Christopher Faulete31a0f12019-12-05 10:23:37 +01002142 conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH))
Christopher Faulet539e0292018-11-19 10:40:09 +01002143 goto release;
Christopher Faulete31a0f12019-12-05 10:23:37 +01002144 if (!conn_is_back(conn) && (h1c->flags & H1C_F_CS_IDLE)) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01002145 if (!h1s_create(h1c, NULL, NULL))
Christopher Faulet539e0292018-11-19 10:40:09 +01002146 goto release;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002147 }
Christopher Faulet1a7ad7a2018-12-04 16:10:44 +01002148 else
Olivier Houcharde7284782018-12-06 18:54:54 +01002149 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002150 h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002151 }
2152
Christopher Fauletfeb11742018-11-29 15:12:34 +01002153 if (b_data(&h1c->ibuf) && h1s->csinfo.t_idle == -1)
2154 h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake;
2155
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002156 if (conn_xprt_read0_pending(conn))
2157 h1s->flags |= H1S_F_REOS;
2158
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002159 if (!h1s_data_pending(h1s) && h1s && h1s->cs && h1s->cs->data_cb->wake &&
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002160 (h1s->flags & H1S_F_REOS || h1c->flags & H1C_F_CS_ERROR ||
Olivier Houchard32d75ed2019-01-14 17:27:23 +01002161 conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH))) {
Olivier Houchard75159a92018-12-03 18:46:09 +01002162 if (h1c->flags & H1C_F_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002163 h1s->cs->flags |= CS_FL_ERROR;
Olivier Houchard75159a92018-12-03 18:46:09 +01002164 h1s->cs->data_cb->wake(h1s->cs);
2165 }
Christopher Faulet47365272018-10-31 17:40:50 +01002166 end:
Christopher Fauletb5762062020-08-05 11:31:16 +02002167 h1_refresh_timeout(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002168 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01002169
2170 release:
Christopher Faulet73c12072019-04-08 11:23:22 +02002171 h1_release(h1c);
Christopher Faulet539e0292018-11-19 10:40:09 +01002172 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002173}
2174
2175static struct task *h1_io_cb(struct task *t, void *ctx, unsigned short status)
2176{
2177 struct h1c *h1c = ctx;
2178 int ret = 0;
2179
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002180 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002181 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002182 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002183 ret |= h1_recv(h1c);
Christopher Faulet81d48432018-11-19 21:22:43 +01002184 if (ret || !h1c->h1s)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002185 h1_process(h1c);
2186 return NULL;
2187}
2188
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002189static void h1_reset(struct connection *conn)
2190{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002191 struct h1c *h1c = conn->ctx;
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002192
2193 /* Reset the flags, and let the mux know we're waiting for a connection */
2194 h1c->flags = H1C_F_CS_WAIT_CONN;
2195}
Christopher Faulet51dbc942018-09-13 09:05:15 +02002196
2197static int h1_wake(struct connection *conn)
2198{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002199 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01002200 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002201
Christopher Faulet539e0292018-11-19 10:40:09 +01002202 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01002203 ret = h1_process(h1c);
2204 if (ret == 0) {
2205 struct h1s *h1s = h1c->h1s;
2206
2207 if (h1s && h1s->cs && h1s->cs->data_cb->wake)
2208 ret = h1s->cs->data_cb->wake(h1s->cs);
2209 }
2210 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002211}
2212
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002213/* Connection timeout management. The principle is that if there's no receipt
2214 * nor sending for a certain amount of time, the connection is closed.
2215 */
2216static struct task *h1_timeout_task(struct task *t, void *context, unsigned short state)
2217{
2218 struct h1c *h1c = context;
2219 int expired = tick_is_expired(t->expire, now_ms);
2220
2221 if (!expired && h1c)
2222 return t;
2223
Olivier Houchard3f795f72019-04-17 22:51:06 +02002224 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002225
2226 if (!h1c) {
2227 /* resources were already deleted */
2228 return NULL;
2229 }
2230
2231 h1c->task = NULL;
2232 /* If a stream is still attached to the mux, just set an error and wait
2233 * for the stream's timeout. Otherwise, release the mux. This is only ok
2234 * because same timeouts are used.
2235 */
2236 if (h1c->h1s && h1c->h1s->cs)
2237 h1c->flags |= H1C_F_CS_ERROR;
2238 else
Christopher Faulet73c12072019-04-08 11:23:22 +02002239 h1_release(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002240 return NULL;
2241}
2242
Christopher Faulet51dbc942018-09-13 09:05:15 +02002243/*******************************************/
2244/* functions below are used by the streams */
2245/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02002246
Christopher Faulet51dbc942018-09-13 09:05:15 +02002247/*
2248 * Attach a new stream to a connection
2249 * (Used for outgoing connections)
2250 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01002251static struct conn_stream *h1_attach(struct connection *conn, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002252{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002253 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002254 struct conn_stream *cs = NULL;
2255 struct h1s *h1s;
2256
2257 if (h1c->flags & H1C_F_CS_ERROR)
2258 goto end;
2259
2260 cs = cs_new(h1c->conn);
2261 if (!cs)
2262 goto end;
2263
Olivier Houchardf502aca2018-12-14 19:42:40 +01002264 h1s = h1s_create(h1c, cs, sess);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002265 if (h1s == NULL)
2266 goto end;
2267
2268 return cs;
2269 end:
2270 cs_free(cs);
2271 return NULL;
2272}
2273
2274/* Retrieves a valid conn_stream from this connection, or returns NULL. For
2275 * this mux, it's easy as we can only store a single conn_stream.
2276 */
2277static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
2278{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002279 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002280 struct h1s *h1s = h1c->h1s;
2281
2282 if (h1s)
2283 return h1s->cs;
2284
2285 return NULL;
2286}
2287
Christopher Faulet73c12072019-04-08 11:23:22 +02002288static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002289{
Christopher Faulet73c12072019-04-08 11:23:22 +02002290 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002291
Christopher Faulet39a96ee2019-04-08 10:52:21 +02002292 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02002293 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002294}
2295
2296/*
2297 * Detach the stream from the connection and possibly release the connection.
2298 */
2299static void h1_detach(struct conn_stream *cs)
2300{
2301 struct h1s *h1s = cs->ctx;
2302 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01002303 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01002304 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002305
2306 cs->ctx = NULL;
2307 if (!h1s)
2308 return;
2309
Olivier Houchardf502aca2018-12-14 19:42:40 +01002310 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002311 h1c = h1s->h1c;
2312 h1s->cs = NULL;
2313
Olivier Houchard8a786902018-12-15 16:05:40 +01002314 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
2315 h1s_destroy(h1s);
2316
Christopher Faulete31a0f12019-12-05 10:23:37 +01002317 if (conn_is_back(h1c->conn) && (h1c->flags & H1C_F_CS_IDLE)) {
Christopher Faulet0bf28f82019-07-19 14:51:06 +02002318 /* If there are any excess server data in the input buffer,
2319 * release it and close the connection ASAP (some data may
2320 * remain in the output buffer). This happens if a server sends
2321 * invalid responses. So in such case, we don't want to reuse
2322 * the connection
Christopher Faulet39e679b2019-07-19 11:34:08 +02002323 */
Christopher Faulet0bf28f82019-07-19 14:51:06 +02002324 if (b_data(&h1c->ibuf)) {
2325 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulete31a0f12019-12-05 10:23:37 +01002326 h1c->flags = (h1c->flags & ~H1C_F_CS_IDLE) | H1C_F_CS_SHUTW_NOW;
Christopher Faulet0bf28f82019-07-19 14:51:06 +02002327 goto release;
2328 }
Christopher Faulet39e679b2019-07-19 11:34:08 +02002329
Christopher Faulet9400a392018-11-23 23:10:39 +01002330 /* Never ever allow to reuse a connection from a non-reuse backend */
Olivier Houchard44d59142018-12-13 18:46:22 +01002331 if ((h1c->px->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
Christopher Faulet9400a392018-11-23 23:10:39 +01002332 h1c->conn->flags |= CO_FL_PRIVATE;
2333
Olivier Houchard44d59142018-12-13 18:46:22 +01002334 if (!(h1c->conn->owner)) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01002335 h1c->conn->owner = sess;
Olivier Houchard351411f2018-12-27 17:20:54 +01002336 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
2337 h1c->conn->owner = NULL;
2338 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn))
2339 /* The server doesn't want it, let's kill the connection right away */
Olivier Houchard109ba132020-02-14 13:23:45 +01002340 h1c->conn->mux->destroy(h1c);
Olivier Houchard351411f2018-12-27 17:20:54 +01002341 else
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002342 tasklet_wakeup(h1c->wait_event.tasklet);
Olivier Houchard351411f2018-12-27 17:20:54 +01002343 return;
Olivier Houchard351411f2018-12-27 17:20:54 +01002344 }
Olivier Houchard44d59142018-12-13 18:46:22 +01002345 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002346 if (h1c->conn->owner == sess) {
2347 int ret = session_check_idle_conn(sess, h1c->conn);
2348 if (ret == -1)
2349 /* The connection got destroyed, let's leave */
2350 return;
2351 else if (ret == 1) {
2352 /* The connection was added to the server list,
2353 * wake the task so we can subscribe to events
2354 */
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002355 tasklet_wakeup(h1c->wait_event.tasklet);
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002356 return;
2357 }
2358 }
Christopher Faulet9400a392018-11-23 23:10:39 +01002359 /* we're in keep-alive with an idle connection, monitor it if not already done */
Olivier Houchard44d59142018-12-13 18:46:22 +01002360 if (LIST_ISEMPTY(&h1c->conn->list)) {
Christopher Faulet9400a392018-11-23 23:10:39 +01002361 struct server *srv = objt_server(h1c->conn->target);
2362
2363 if (srv) {
2364 if (h1c->conn->flags & CO_FL_PRIVATE)
2365 LIST_ADD(&srv->priv_conns[tid], &h1c->conn->list);
Olivier Houchard8a786902018-12-15 16:05:40 +01002366 else if (is_not_first)
Christopher Faulet9400a392018-11-23 23:10:39 +01002367 LIST_ADD(&srv->safe_conns[tid], &h1c->conn->list);
2368 else
2369 LIST_ADD(&srv->idle_conns[tid], &h1c->conn->list);
2370 }
2371 }
2372 }
2373
Christopher Faulet0bf28f82019-07-19 14:51:06 +02002374 release:
Christopher Faulet9fa93f62019-06-28 17:41:42 +02002375 /* 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 +02002376 if ((h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTDOWN|H1C_F_UPG_H2C)) ||
2377 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
2378 ((h1c->flags & H1C_F_CS_SHUTW_NOW) && !b_data(&h1c->obuf)) ||
2379 !h1c->conn->owner)
Christopher Faulet73c12072019-04-08 11:23:22 +02002380 h1_release(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002381 else {
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002382 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Fauletb5762062020-08-05 11:31:16 +02002383 h1_refresh_timeout(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002384 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002385}
2386
2387
2388static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
2389{
2390 struct h1s *h1s = cs->ctx;
Christopher Faulet7f366362019-04-08 10:51:20 +02002391 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002392
2393 if (!h1s)
2394 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02002395 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002396
Christopher Faulet7f366362019-04-08 10:51:20 +02002397 if ((cs->flags & CS_FL_KILL_CONN) || (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)))
2398 goto do_shutr;
2399
Christopher Faulet0ef372a2019-04-08 10:57:20 +02002400 if ((h1c->flags & H1C_F_UPG_H2C) || (h1s->flags & H1S_F_WANT_KAL))
Christopher Fauletf2824e62018-10-01 12:12:37 +02002401 return;
2402
Christopher Faulet7f366362019-04-08 10:51:20 +02002403 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002404 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
2405 if (cs->flags & CS_FL_SHR)
2406 return;
2407 if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002408 cs->conn->xprt->shutr(cs->conn, cs->conn->xprt_ctx,
Christopher Fauletf36e72b2019-12-05 11:18:31 +01002409 (mode == CS_SHR_DRAIN));
Christopher Faulet51dbc942018-09-13 09:05:15 +02002410}
2411
2412static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
2413{
2414 struct h1s *h1s = cs->ctx;
2415 struct h1c *h1c;
2416
2417 if (!h1s)
2418 return;
2419 h1c = h1s->h1c;
2420
Christopher Faulet7f366362019-04-08 10:51:20 +02002421 if ((cs->flags & CS_FL_KILL_CONN) || (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)))
2422 goto do_shutw;
Olivier Houchardd2e88c72018-12-19 15:55:23 +01002423
Christopher Faulet0ef372a2019-04-08 10:57:20 +02002424 if ((h1c->flags & H1C_F_UPG_H2C) ||
2425 ((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 +02002426 return;
2427
Christopher Faulet7f366362019-04-08 10:51:20 +02002428 do_shutw:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002429 h1c->flags |= H1C_F_CS_SHUTW_NOW;
2430 if ((cs->flags & CS_FL_SHW) || b_data(&h1c->obuf))
2431 return;
2432
Christopher Faulet666a0c42019-01-08 11:12:04 +01002433 h1_shutw_conn(cs->conn, mode);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002434}
2435
Christopher Faulet666a0c42019-01-08 11:12:04 +01002436static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002437{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002438 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002439
Willy Tarreau8e545d32021-03-26 09:09:42 +01002440 if (conn->flags & CO_FL_SOCK_WR_SH)
2441 return;
2442
Christopher Faulet666a0c42019-01-08 11:12:04 +01002443 conn_xprt_shutw(conn);
2444 conn_sock_shutw(conn, (mode == CS_SHW_NORMAL));
Christopher Fauletf36e72b2019-12-05 11:18:31 +01002445 h1c->flags = (h1c->flags & ~H1C_F_CS_SHUTW_NOW) | H1C_F_CS_SHUTDOWN;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002446}
2447
2448/* Called from the upper layer, to unsubscribe to events */
2449static int h1_unsubscribe(struct conn_stream *cs, int event_type, void *param)
2450{
2451 struct wait_event *sw;
2452 struct h1s *h1s = cs->ctx;
2453
2454 if (!h1s)
2455 return 0;
2456
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002457 if (event_type & SUB_RETRY_RECV) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002458 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002459 BUG_ON(h1s->recv_wait != sw);
2460 sw->events &= ~SUB_RETRY_RECV;
2461 h1s->recv_wait = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002462 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002463 if (event_type & SUB_RETRY_SEND) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002464 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002465 BUG_ON(h1s->send_wait != sw);
2466 sw->events &= ~SUB_RETRY_SEND;
2467 h1s->send_wait = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002468 }
2469 return 0;
2470}
2471
2472/* Called from the upper layer, to subscribe to events, such as being able to send */
2473static int h1_subscribe(struct conn_stream *cs, int event_type, void *param)
2474{
2475 struct wait_event *sw;
2476 struct h1s *h1s = cs->ctx;
2477
2478 if (!h1s)
2479 return -1;
2480
2481 switch (event_type) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002482 case SUB_RETRY_RECV:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002483 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002484 BUG_ON(h1s->recv_wait != NULL || (sw->events & SUB_RETRY_RECV));
2485 sw->events |= SUB_RETRY_RECV;
2486 h1s->recv_wait = sw;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002487 return 0;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002488 case SUB_RETRY_SEND:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002489 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002490 BUG_ON(h1s->send_wait != NULL || (sw->events & SUB_RETRY_SEND));
2491 sw->events |= SUB_RETRY_SEND;
2492 h1s->send_wait = sw;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002493 return 0;
2494 default:
2495 break;
2496 }
2497 return -1;
2498}
2499
2500/* Called from the upper layer, to receive data */
2501static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
2502{
2503 struct h1s *h1s = cs->ctx;
Christopher Faulet539e0292018-11-19 10:40:09 +01002504 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002505 size_t ret = 0;
2506
Christopher Faulet539e0292018-11-19 10:40:09 +01002507 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet30db3d72019-05-17 15:35:33 +02002508 ret = h1_process_input(h1c, buf, count);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002509
Christopher Faulete18777b2019-04-16 16:46:36 +02002510 if (flags & CO_RFL_BUF_FLUSH) {
2511 struct h1m *h1m = (!conn_is_back(cs->conn) ? &h1s->req : &h1s->res);
2512
Christopher Fauletafadc9a2020-07-03 14:51:15 +02002513 if (h1m->state == H1_MSG_TUNNEL || (h1m->state == H1_MSG_DATA && h1m->curr_len))
Christopher Faulete18777b2019-04-16 16:46:36 +02002514 h1s->flags |= H1S_F_BUF_FLUSH;
2515 }
Olivier Houchardcd5da7a2019-08-22 18:34:25 +02002516 else {
Christopher Faulet0528ae22020-07-03 15:12:00 +02002517 if (ret)
2518 h1s->flags &= ~H1S_F_SPLICED_DATA;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002519 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Fauletd2a762f2020-07-24 16:31:14 +02002520 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002521 }
2522 return ret;
2523}
2524
2525
2526/* Called from the upper layer, to send data */
2527static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
2528{
2529 struct h1s *h1s = cs->ctx;
2530 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002531 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002532
2533 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002534 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002535
2536 h1c = h1s->h1c;
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002537 if (h1c->flags & H1C_F_CS_WAIT_CONN)
2538 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002539
Christopher Faulet192333e2021-03-01 17:46:32 +01002540 if (h1c->flags & H1C_F_CS_ERROR) {
2541 cs->flags |= CS_FL_ERROR;
2542 return 0;
2543 }
2544
Christopher Fauletc31872f2019-06-04 22:09:36 +02002545 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002546 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002547
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002548 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
2549 ret = h1_process_output(h1c, buf, count);
2550 if (!ret)
2551 break;
2552 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02002553 count -= ret;
Olivier Houcharda1012862020-01-15 19:13:32 +01002554 if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c))
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002555 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002556 }
Christopher Faulet192333e2021-03-01 17:46:32 +01002557
2558 if (h1c->flags & H1C_F_CS_ERROR)
2559 cs->flags |= CS_FL_ERROR;
2560
Christopher Fauletb5762062020-08-05 11:31:16 +02002561 h1_refresh_timeout(h1c);
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002562 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002563}
2564
Willy Tarreaue5733232019-05-22 19:24:06 +02002565#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02002566/* Send and get, using splicing */
2567static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
2568{
2569 struct h1s *h1s = cs->ctx;
2570 struct h1m *h1m = (!conn_is_back(cs->conn) ? &h1s->req : &h1s->res);
2571 int ret = 0;
2572
Christopher Faulet2c411be2019-11-05 16:24:27 +01002573 if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) {
Christopher Faulete18777b2019-04-16 16:46:36 +02002574 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
Christopher Faulet1146f972019-05-29 14:35:24 +02002575 if (!(h1s->h1c->wait_event.events & SUB_RETRY_RECV))
2576 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_RECV, &h1s->h1c->wait_event);
Christopher Faulete18777b2019-04-16 16:46:36 +02002577 goto end;
2578 }
2579
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002580 if (h1s_data_pending(h1s)) {
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002581 h1s->flags |= H1S_F_BUF_FLUSH;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002582 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002583 }
2584
2585 h1s->flags &= ~H1S_F_BUF_FLUSH;
2586 h1s->flags |= H1S_F_SPLICED_DATA;
Christopher Faulet8e8168a2020-07-03 15:02:25 +02002587
2588 if (!h1_recv_allowed(h1s->h1c))
2589 goto end;
2590
Christopher Faulet1be55f92018-10-02 15:59:23 +02002591 if (h1m->state == H1_MSG_DATA && count > h1m->curr_len)
2592 count = h1m->curr_len;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002593 ret = cs->conn->xprt->rcv_pipe(cs->conn, cs->conn->xprt_ctx, pipe, count);
Christopher Faulet290988a2020-07-24 16:13:12 +02002594 if (ret <= 0)
2595 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
2596 else if (h1m->state == H1_MSG_DATA) {
Christopher Faulet1be55f92018-10-02 15:59:23 +02002597 h1m->curr_len -= ret;
Christopher Faulete18777b2019-04-16 16:46:36 +02002598 if (!h1m->curr_len)
2599 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
2600 }
2601
Christopher Faulet1be55f92018-10-02 15:59:23 +02002602 end:
Christopher Faulet038ad812019-04-17 11:03:22 +02002603 if (conn_xprt_read0_pending(cs->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002604 h1s->flags |= H1S_F_REOS;
Christopher Fauletac4778c2019-11-15 11:14:23 +01002605 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
Christopher Faulet038ad812019-04-17 11:03:22 +02002606 }
Willy Tarreau7e9dd732020-01-17 16:19:34 +01002607
Christopher Faulete0ca6ad2020-07-07 10:56:40 +02002608 if ((h1s->flags & H1S_F_REOS) ||
2609 (h1m->state != H1_MSG_TUNNEL && h1m->state != H1_MSG_DATA) ||
Christopher Fauletafadc9a2020-07-03 14:51:15 +02002610 (h1m->state == H1_MSG_DATA && !h1m->curr_len))
Willy Tarreau7e9dd732020-01-17 16:19:34 +01002611 cs->flags &= ~CS_FL_MAY_SPLICE;
2612
Christopher Faulet1be55f92018-10-02 15:59:23 +02002613 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002614}
2615
2616static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
2617{
2618 struct h1s *h1s = cs->ctx;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002619 int ret = 0;
2620
2621 if (b_data(&h1s->h1c->obuf))
2622 goto end;
2623
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002624 ret = cs->conn->xprt->snd_pipe(cs->conn, cs->conn->xprt_ctx, pipe);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002625 end:
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002626 if (pipe->data) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002627 if (!(h1s->h1c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002628 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_SEND, &h1s->h1c->wait_event);
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002629 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002630 return ret;
2631}
2632#endif
2633
Olivier Houchard198d1292019-10-25 16:19:26 +02002634static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
2635{
2636 int ret = 0;
2637 switch (mux_ctl) {
2638 case MUX_STATUS:
2639 if (conn->flags & CO_FL_CONNECTED)
2640 ret |= MUX_STATUS_READY;
2641 return ret;
2642 default:
2643 return -1;
2644 }
2645}
2646
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002647/* for debugging with CLI's "show fd" command */
2648static void h1_show_fd(struct buffer *msg, struct connection *conn)
2649{
2650 struct h1c *h1c = conn->ctx;
2651 struct h1s *h1s = h1c->h1s;
2652
Christopher Fauletf376a312019-01-04 15:16:06 +01002653 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
2654 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002655 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
2656 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
2657 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
2658 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
2659
2660 if (h1s) {
2661 char *method;
2662
2663 if (h1s->meth < HTTP_METH_OTHER)
2664 method = http_known_methods[h1s->meth].ptr;
2665 else
2666 method = "UNKNOWN";
2667 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
2668 " .meth=%s status=%d",
2669 h1s, h1s->flags,
2670 h1m_state_str(h1s->req.state),
2671 h1m_state_str(h1s->res.state), method, h1s->status);
2672 if (h1s->cs)
2673 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
2674 h1s->cs->flags, h1s->cs->data);
2675 }
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002676}
2677
2678
2679/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
2680static int add_hdr_case_adjust(const char *from, const char *to, char **err)
2681{
2682 struct h1_hdr_entry *entry;
2683
2684 /* Be sure there is a non-empty <to> */
2685 if (!strlen(to)) {
2686 memprintf(err, "expect <to>");
2687 return -1;
2688 }
2689
2690 /* Be sure only the case differs between <from> and <to> */
2691 if (strcasecmp(from, to)) {
2692 memprintf(err, "<from> and <to> must not differ execpt the case");
2693 return -1;
2694 }
2695
2696 /* Be sure <from> does not already existsin the tree */
2697 if (ebis_lookup(&hdrs_map.map, from)) {
2698 memprintf(err, "duplicate entry '%s'", from);
2699 return -1;
2700 }
2701
2702 /* Create the entry and insert it in the tree */
2703 entry = malloc(sizeof(*entry));
2704 if (!entry) {
2705 memprintf(err, "out of memory");
2706 return -1;
2707 }
2708
2709 entry->node.key = strdup(from);
2710 entry->name.ptr = strdup(to);
2711 entry->name.len = strlen(to);
2712 if (!entry->node.key || !entry->name.ptr) {
2713 free(entry->node.key);
2714 free(entry->name.ptr);
2715 free(entry);
2716 memprintf(err, "out of memory");
2717 return -1;
2718 }
2719 ebis_insert(&hdrs_map.map, &entry->node);
2720 return 0;
2721}
2722
2723static void h1_hdeaders_case_adjust_deinit()
2724{
2725 struct ebpt_node *node, *next;
2726 struct h1_hdr_entry *entry;
2727
2728 node = ebpt_first(&hdrs_map.map);
2729 while (node) {
2730 next = ebpt_next(node);
2731 ebpt_delete(node);
2732 entry = container_of(node, struct h1_hdr_entry, node);
2733 free(entry->node.key);
2734 free(entry->name.ptr);
2735 free(entry);
2736 node = next;
2737 }
2738 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002739}
2740
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002741static int cfg_h1_headers_case_adjust_postparser()
2742{
2743 FILE *file = NULL;
2744 char *c, *key_beg, *key_end, *value_beg, *value_end;
2745 char *err;
2746 int rc, line = 0, err_code = 0;
2747
2748 if (!hdrs_map.name)
2749 goto end;
2750
2751 file = fopen(hdrs_map.name, "r");
2752 if (!file) {
2753 ha_alert("config : h1-outgoing-headers-case-adjust-file '%s': failed to open file.\n",
2754 hdrs_map.name);
2755 err_code |= ERR_ALERT | ERR_FATAL;
2756 goto end;
2757 }
2758
2759 /* now parse all lines. The file may contain only two header name per
2760 * line, separated by spaces. All heading and trailing spaces will be
2761 * ignored. Lines starting with a # are ignored.
2762 */
2763 while (fgets(trash.area, trash.size, file) != NULL) {
2764 line++;
2765 c = trash.area;
2766
2767 /* strip leading spaces and tabs */
2768 while (*c == ' ' || *c == '\t')
2769 c++;
2770
2771 /* ignore emptu lines, or lines beginning with a dash */
2772 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
2773 continue;
2774
2775 /* look for the end of the key */
2776 key_beg = c;
2777 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
2778 c++;
2779 key_end = c;
2780
2781 /* strip middle spaces and tabs */
2782 while (*c == ' ' || *c == '\t')
2783 c++;
2784
2785 /* look for the end of the value, it is the end of the line */
2786 value_beg = c;
2787 while (*c && *c != '\n' && *c != '\r')
2788 c++;
2789 value_end = c;
2790
2791 /* trim possibly trailing spaces and tabs */
2792 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
2793 value_end--;
2794
2795 /* set final \0 and check entries */
2796 *key_end = '\0';
2797 *value_end = '\0';
2798
2799 err = NULL;
2800 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
2801 if (rc < 0) {
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002802 ha_alert("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
2803 hdrs_map.name, err, line);
2804 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Faulet27f20172019-07-30 16:51:42 +02002805 free(err);
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002806 goto end;
2807 }
2808 if (rc > 0) {
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002809 ha_warning("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
2810 hdrs_map.name, err, line);
2811 err_code |= ERR_WARN;
Christopher Faulet27f20172019-07-30 16:51:42 +02002812 free(err);
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002813 }
2814 }
2815
2816 end:
2817 if (file)
2818 fclose(file);
2819 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
2820 return err_code;
2821}
2822
2823
2824/* config parser for global "h1-outgoing-header-case-adjust" */
2825static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
2826 struct proxy *defpx, const char *file, int line,
2827 char **err)
2828{
2829 if (too_many_args(2, args, err, NULL))
2830 return -1;
2831 if (!*(args[1]) || !*(args[2])) {
2832 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
2833 return -1;
2834 }
2835 return add_hdr_case_adjust(args[1], args[2], err);
2836}
2837
2838/* config parser for global "h1-outgoing-headers-case-adjust-file" */
2839static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
2840 struct proxy *defpx, const char *file, int line,
2841 char **err)
2842{
2843 if (too_many_args(1, args, err, NULL))
2844 return -1;
2845 if (!*(args[1])) {
2846 memprintf(err, "'%s' expects <file> as argument.", args[0]);
2847 return -1;
2848 }
2849 free(hdrs_map.name);
2850 hdrs_map.name = strdup(args[1]);
2851 return 0;
2852}
2853
2854
2855/* config keyword parsers */
2856static struct cfg_kw_list cfg_kws = {{ }, {
2857 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
2858 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
2859 { 0, NULL, NULL },
2860 }
2861};
2862
2863INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
2864REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
2865
2866
Christopher Faulet51dbc942018-09-13 09:05:15 +02002867/****************************************/
2868/* MUX initialization and instanciation */
2869/****************************************/
2870
2871/* The mux operations */
Willy Tarreauf77a1582019-01-10 10:00:08 +01002872static const struct mux_ops mux_h1_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002873 .init = h1_init,
2874 .wake = h1_wake,
2875 .attach = h1_attach,
2876 .get_first_cs = h1_get_first_cs,
Christopher Fauletfeb11742018-11-29 15:12:34 +01002877 .get_cs_info = h1_get_cs_info,
Christopher Faulet51dbc942018-09-13 09:05:15 +02002878 .detach = h1_detach,
2879 .destroy = h1_destroy,
2880 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01002881 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02002882 .rcv_buf = h1_rcv_buf,
2883 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02002884#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02002885 .rcv_pipe = h1_rcv_pipe,
2886 .snd_pipe = h1_snd_pipe,
2887#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02002888 .subscribe = h1_subscribe,
2889 .unsubscribe = h1_unsubscribe,
2890 .shutr = h1_shutr,
2891 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002892 .show_fd = h1_show_fd,
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002893 .reset = h1_reset,
Olivier Houchard198d1292019-10-25 16:19:26 +02002894 .ctl = h1_ctl,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02002895 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02002896 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02002897};
2898
2899
2900/* this mux registers default HTX proto */
2901static struct mux_proto_list mux_proto_htx =
2902{ .token = IST(""), .mode = PROTO_MODE_HTX, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
2903
Willy Tarreau0108d902018-11-25 19:14:37 +01002904INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_htx);
2905
Christopher Faulet51dbc942018-09-13 09:05:15 +02002906/*
2907 * Local variables:
2908 * c-indent-level: 8
2909 * c-basic-offset: 8
2910 * End:
2911 */