blob: 64f8355d1b6c7ad8fbf37bcaf256303636043e60 [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)
346 sess = h1c->conn->owner;
347
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{
903 struct session *sess = h1c->conn->owner;
904 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;
1047 h1s->cs->flags |= CS_FL_EOI;
1048 return (sizeof(struct htx_blk) + 1);
1049}
1050
1051/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001052 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +02001053 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1054 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
Joseph Herlant30bc5092018-11-25 10:52:20 -08001055 * responsible to update the parser state <h1m>.
Christopher Faulet129817b2018-09-20 16:14:40 +02001056 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001057static size_t h1_process_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
Christopher Fauletf2824e62018-10-01 12:12:37 +02001058 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +02001059{
Christopher Fauleta39d8ad2019-05-15 15:54:39 +02001060 struct htx_sl *sl;
Christopher Faulete4ab11b2019-06-11 15:05:37 +02001061 struct http_hdr hdrs[global.tune.max_http_hdr];
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001062 union h1_sl h1sl;
1063 unsigned int flags = HTX_SL_F_NONE;
Christopher Fauleta39d8ad2019-05-15 15:54:39 +02001064 size_t used;
Christopher Faulet129817b2018-09-20 16:14:40 +02001065 int ret = 0;
1066
Christopher Faulet30db3d72019-05-17 15:35:33 +02001067 if (!max || !b_data(buf))
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001068 goto end;
1069
Christopher Faulet129817b2018-09-20 16:14:40 +02001070 /* Realing input buffer if necessary */
1071 if (b_head(buf) + b_data(buf) > b_wrap(buf))
1072 b_slow_realign(buf, trash.area, 0);
1073
Christopher Faulet842f41f2019-09-25 09:10:46 +02001074 if (!(h1s->flags & H1S_F_NOT_FIRST) && !(h1m->flags & H1_MF_RESP)) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001075 /* Try to match H2 preface before parsing the request headers. */
1076 ret = b_isteq(buf, 0, b_data(buf), ist(H2_CONN_PREFACE));
1077 if (ret > 0)
1078 goto h2c_upgrade;
1079 }
1080
Christopher Faulet30db3d72019-05-17 15:35:33 +02001081 ret = h1_headers_to_hdr_list(b_peek(buf, *ofs), b_tail(buf),
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001082 hdrs, sizeof(hdrs)/sizeof(hdrs[0]), h1m, &h1sl);
Christopher Faulet129817b2018-09-20 16:14:40 +02001083 if (ret <= 0) {
Willy Tarreau9a408ab2019-08-23 08:11:36 +02001084 /* Incomplete or invalid message. If the input buffer only
1085 * contains headers and is full, which is detected by it being
1086 * full and the offset to be zero, it's an error because
1087 * headers are too large to be handled by the parser. */
1088 if (ret < 0 || (!ret && !*ofs && !buf_room_for_htx_data(buf)))
Christopher Fauletf2824e62018-10-01 12:12:37 +02001089 goto error;
Christopher Faulet129817b2018-09-20 16:14:40 +02001090 goto end;
1091 }
1092
Christopher Fauletb4bad502019-10-11 14:22:00 +02001093 if (h1m->err_pos >= 0) {
1094 /* Maybe we found an error during the parsing while we were
1095 * configured not to block on that, so we have to capture it
1096 * now.
1097 */
1098 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1099 }
1100
Christopher Faulet129817b2018-09-20 16:14:40 +02001101 /* messages headers fully parsed, do some checks to prepare the body
1102 * parsing.
1103 */
1104
Christopher Faulet9768c262018-10-22 09:34:31 +02001105 /* Save the request's method or the response's status, check if the body
1106 * length is known and check the VSN validity */
Christopher Faulet129817b2018-09-20 16:14:40 +02001107 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001108 h1s->meth = h1sl.rq.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001109
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001110 /* By default, request have always a known length */
Christopher Faulet129817b2018-09-20 16:14:40 +02001111 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001112
1113 if (h1s->meth == HTTP_METH_CONNECT) {
1114 /* Switch CONNECT requests to tunnel mode */
1115 h1_set_req_tunnel_mode(h1s);
1116 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001117
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001118 if (!h1_process_req_vsn(h1s, h1m, h1sl)) {
1119 h1m->err_pos = h1sl.rq.v.ptr - b_head(buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001120 h1m->err_state = h1m->state;
1121 goto vsn_error;
1122 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001123 }
1124 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001125 h1s->status = h1sl.st.status;
Christopher Faulet129817b2018-09-20 16:14:40 +02001126
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001127 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) ||
1128 h1s->status == 101) {
1129 /* Switch successfull replies to CONNECT requests and
1130 * protocol switching to tunnel mode. */
1131 h1_set_res_tunnel_mode(h1s);
1132 }
1133 else if ((h1s->meth == HTTP_METH_HEAD) ||
1134 (h1s->status >= 100 && h1s->status < 200) ||
1135 (h1s->status == 204) || (h1s->status == 304)) {
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001136 /* Responses known to have no body. */
Christopher Faulet129817b2018-09-20 16:14:40 +02001137 h1m->flags &= ~(H1_MF_CLEN|H1_MF_CHNK);
1138 h1m->flags |= H1_MF_XFER_LEN;
1139 h1m->curr_len = h1m->body_len = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001140 }
1141 else if (h1m->flags & (H1_MF_CLEN|H1_MF_CHNK)) {
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001142 /* Responses with a known body length. */
Christopher Faulet129817b2018-09-20 16:14:40 +02001143 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet129817b2018-09-20 16:14:40 +02001144 }
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001145 else {
1146 /* Responses with an unknown body length */
Christopher Faulet129817b2018-09-20 16:14:40 +02001147 h1m->state = H1_MSG_TUNNEL;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001148 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001149
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001150 if (!h1_process_res_vsn(h1s, h1m, h1sl)) {
1151 h1m->err_pos = h1sl.st.v.ptr - b_head(buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001152 h1m->err_state = h1m->state;
1153 goto vsn_error;
1154 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001155 }
1156
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001157 /* Set HTX start-line flags */
1158 if (h1m->flags & H1_MF_VER_11)
1159 flags |= HTX_SL_F_VER_11;
1160 if (h1m->flags & H1_MF_XFER_ENC)
1161 flags |= HTX_SL_F_XFER_ENC;
1162 if (h1m->flags & H1_MF_XFER_LEN) {
1163 flags |= HTX_SL_F_XFER_LEN;
1164 if (h1m->flags & H1_MF_CHNK)
1165 flags |= HTX_SL_F_CHNK;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001166 else if (h1m->flags & H1_MF_CLEN) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001167 flags |= HTX_SL_F_CLEN;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001168 if (h1m->body_len == 0)
1169 flags |= HTX_SL_F_BODYLESS;
1170 }
1171 else
Christopher Fauletb2db4fa2018-11-27 16:51:09 +01001172 flags |= HTX_SL_F_BODYLESS;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001173 }
1174
Christopher Fauleta39d8ad2019-05-15 15:54:39 +02001175 used = htx_used_space(htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001176 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001177 if (h1_eval_htx_req_size(h1m, &h1sl, hdrs) > max) {
1178 if (htx_is_empty(htx))
1179 goto error;
1180 h1m_init_req(h1m);
1181 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
1182 ret = 0;
1183 goto end;
1184 }
Christopher Faulet30db3d72019-05-17 15:35:33 +02001185
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001186 sl = htx_add_stline(htx, HTX_BLK_REQ_SL, flags, h1sl.rq.m, h1sl.rq.u, h1sl.rq.v);
1187 if (!sl || !htx_add_all_headers(htx, hdrs))
Christopher Faulet9768c262018-10-22 09:34:31 +02001188 goto error;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001189 sl->info.req.meth = h1s->meth;
Christopher Faulet42993a82019-06-14 10:31:25 +02001190
1191 /* Check if the uri contains an explicit scheme and if it is
1192 * "http" or "https". */
1193 if (h1sl.rq.u.len && h1sl.rq.u.ptr[0] != '/') {
1194 sl->flags |= HTX_SL_F_HAS_SCHM;
1195 if (h1sl.rq.u.len > 4 && (h1sl.rq.u.ptr[0] | 0x20) == 'h')
1196 sl->flags |= ((h1sl.rq.u.ptr[4] == ':') ? HTX_SL_F_SCHM_HTTP : HTX_SL_F_SCHM_HTTPS);
1197 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001198 }
1199 else {
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001200 if (h1_eval_htx_res_size(h1m, &h1sl, hdrs) > max) {
1201 if (htx_is_empty(htx))
1202 goto error;
1203 h1m_init_res(h1m);
1204 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
1205 ret = 0;
1206 goto end;
1207 }
Christopher Faulet30db3d72019-05-17 15:35:33 +02001208
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001209 flags |= HTX_SL_F_IS_RESP;
1210 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, h1sl.st.v, h1sl.st.c, h1sl.st.r);
1211 if (!sl || !htx_add_all_headers(htx, hdrs))
Christopher Faulet9768c262018-10-22 09:34:31 +02001212 goto error;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001213 sl->info.res.status = h1s->status;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001214 }
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001215
Christopher Fauleta39d8ad2019-05-15 15:54:39 +02001216 /* Set bytes used in the HTX mesage for the headers now */
1217 sl->hdrs_bytes = htx_used_space(htx) - used;
1218
Christopher Fauletb992af02019-03-28 15:42:24 +01001219 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001220
1221 /* If body length cannot be determined, set htx->extra to
1222 * ULLONG_MAX. This value is impossible in other cases.
1223 */
1224 htx->extra = ((h1m->flags & H1_MF_XFER_LEN) ? h1m->curr_len : ULLONG_MAX);
Christopher Faulet9768c262018-10-22 09:34:31 +02001225 *ofs += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001226 end:
1227 return ret;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001228
1229 error:
Christopher Fauletf2824e62018-10-01 12:12:37 +02001230 h1m->err_state = h1m->state;
1231 h1m->err_pos = h1m->next;
Christopher Faulet9768c262018-10-22 09:34:31 +02001232 vsn_error:
1233 h1s->flags |= (!(h1m->flags & H1_MF_RESP) ? H1S_F_REQ_ERROR : H1S_F_RES_ERROR);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001234 h1s->cs->flags |= CS_FL_EOI;
1235 htx->flags |= HTX_FL_PARSING_ERROR;
Christopher Faulete44769b2018-11-29 23:01:45 +01001236 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001237 ret = 0;
1238 goto end;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001239
1240 h2c_upgrade:
1241 h1s->h1c->flags |= H1C_F_UPG_H2C;
Christopher Faulet8e9e3ef2019-05-17 09:14:10 +02001242 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001243 htx->flags |= HTX_FL_UPGRADE;
1244 ret = 0;
1245 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001246}
1247
1248/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001249 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
1250 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag
Christopher Faulet129817b2018-09-20 16:14:40 +02001251 * and filling h1s->err_pos and h1s->err_state fields. This functions is
Joseph Herlant30bc5092018-11-25 10:52:20 -08001252 * responsible to update the parser state <h1m>.
Christopher Faulet129817b2018-09-20 16:14:40 +02001253 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001254static size_t h1_process_data(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001255 struct buffer *buf, size_t *ofs, size_t max,
Christopher Faulet30db3d72019-05-17 15:35:33 +02001256 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001257{
1258 size_t total = 0;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001259 int32_t ret = 0;
Christopher Fauletafe57842019-01-21 11:55:02 +01001260
Christopher Faulet129817b2018-09-20 16:14:40 +02001261 if (h1m->flags & H1_MF_XFER_LEN) {
1262 if (h1m->flags & H1_MF_CLEN) {
1263 /* content-length: read only h2m->body_len */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001264 ret = htx_get_max_blksz(htx, max);
Christopher Faulet129817b2018-09-20 16:14:40 +02001265 if ((uint64_t)ret > h1m->curr_len)
1266 ret = h1m->curr_len;
Christopher Faulet9768c262018-10-22 09:34:31 +02001267 if (ret > b_contig_data(buf, *ofs))
1268 ret = b_contig_data(buf, *ofs);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001269
Christopher Faulet9768c262018-10-22 09:34:31 +02001270 if (ret) {
Willy Tarreau78f548f2018-12-05 10:02:39 +01001271 /* very often with large files we'll face the following
1272 * situation :
1273 * - htx is empty and points to <htxbuf>
1274 * - ret == buf->data
1275 * - buf->head == sizeof(struct htx)
1276 * => we can swap the buffers and place an htx header into
1277 * the target buffer instead
1278 */
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001279 int32_t try = ret;
1280
Willy Tarreau78f548f2018-12-05 10:02:39 +01001281 if (unlikely(htx_is_empty(htx) && ret == b_data(buf) &&
1282 !*ofs && b_head_ofs(buf) == sizeof(struct htx))) {
1283 void *raw_area = buf->area;
1284 void *htx_area = htxbuf->area;
1285 struct htx_blk *blk;
1286
1287 buf->area = htx_area;
1288 htxbuf->area = raw_area;
1289 htx = (struct htx *)htxbuf->area;
1290 htx->size = htxbuf->size - sizeof(*htx);
1291 htx_reset(htx);
1292 b_set_data(htxbuf, b_size(htxbuf));
1293
1294 blk = htx_add_blk(htx, HTX_BLK_DATA, ret);
1295 blk->info += ret;
1296 /* nothing else to do, the old buffer now contains an
1297 * empty pre-initialized HTX header
1298 */
1299 }
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001300 else {
1301 ret = htx_add_data(htx, ist2(b_peek(buf, *ofs), try));
1302 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001303 h1m->curr_len -= ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001304 max -= sizeof(struct htx_blk) + ret;
Christopher Faulet9768c262018-10-22 09:34:31 +02001305 *ofs += ret;
1306 total += ret;
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001307 if (ret < try)
1308 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001309 }
1310
1311 if (!h1m->curr_len) {
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001312 if (!h1_process_eom(h1s, h1m, htx, max))
Christopher Faulet9768c262018-10-22 09:34:31 +02001313 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001314 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001315 }
1316 else if (h1m->flags & H1_MF_CHNK) {
1317 new_chunk:
1318 /* te:chunked : parse chunks */
1319 if (h1m->state == H1_MSG_CHUNK_CRLF) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001320 ret = h1_skip_chunk_crlf(buf, *ofs, b_data(buf));
Christopher Faulet129817b2018-09-20 16:14:40 +02001321 if (ret <= 0)
1322 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001323 h1m->state = H1_MSG_CHUNK_SIZE;
1324
Christopher Fauletf2824e62018-10-01 12:12:37 +02001325 *ofs += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001326 total += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001327 }
1328
1329 if (h1m->state == H1_MSG_CHUNK_SIZE) {
1330 unsigned int chksz;
1331
Christopher Faulet30db3d72019-05-17 15:35:33 +02001332 ret = h1_parse_chunk_size(buf, *ofs, b_data(buf), &chksz);
Christopher Faulet129817b2018-09-20 16:14:40 +02001333 if (ret <= 0)
1334 goto end;
Christopher Faulet54b5e212019-06-04 10:08:28 +02001335 h1m->state = ((!chksz) ? H1_MSG_TRAILERS : H1_MSG_DATA);
Christopher Faulet9768c262018-10-22 09:34:31 +02001336
Christopher Faulet129817b2018-09-20 16:14:40 +02001337 h1m->curr_len = chksz;
1338 h1m->body_len += chksz;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001339 *ofs += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001340 total += ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001341
1342 if (!h1m->curr_len)
1343 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001344 }
1345
1346 if (h1m->state == H1_MSG_DATA) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001347 ret = htx_get_max_blksz(htx, max);
Christopher Faulet129817b2018-09-20 16:14:40 +02001348 if ((uint64_t)ret > h1m->curr_len)
1349 ret = h1m->curr_len;
Christopher Faulet9768c262018-10-22 09:34:31 +02001350 if (ret > b_contig_data(buf, *ofs))
1351 ret = b_contig_data(buf, *ofs);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001352
Christopher Faulet9768c262018-10-22 09:34:31 +02001353 if (ret) {
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001354 int32_t try = ret;
1355
1356 ret = htx_add_data(htx, ist2(b_peek(buf, *ofs), try));
Christopher Faulet9768c262018-10-22 09:34:31 +02001357 h1m->curr_len -= ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001358 max -= sizeof(struct htx_blk) + ret;
Christopher Faulet9768c262018-10-22 09:34:31 +02001359 *ofs += ret;
1360 total += ret;
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001361 if (ret < try)
1362 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001363 }
1364 if (!h1m->curr_len) {
1365 h1m->state = H1_MSG_CHUNK_CRLF;
1366 goto new_chunk;
1367 }
1368 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001369 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001370 }
1371 else {
1372 /* XFER_LEN is set but not CLEN nor CHNK, it means there
1373 * is no body. Switch the message in DONE state
1374 */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001375 if (!h1_process_eom(h1s, h1m, htx, max))
Christopher Faulet9768c262018-10-22 09:34:31 +02001376 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001377 }
1378 }
1379 else {
1380 /* no content length, read till SHUTW */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001381 ret = htx_get_max_blksz(htx, max);
Christopher Faulet9768c262018-10-22 09:34:31 +02001382 if (ret > b_contig_data(buf, *ofs))
1383 ret = b_contig_data(buf, *ofs);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001384
Christopher Faulet9768c262018-10-22 09:34:31 +02001385 if (ret) {
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001386 int32_t try = ret;
1387
1388 ret = htx_add_data(htx, ist2(b_peek(buf, *ofs), try));
Christopher Faulet9768c262018-10-22 09:34:31 +02001389
Olivier Houchardcf42d5a2018-12-04 17:41:58 +01001390 *ofs += ret;
1391 total = ret;
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001392 if (ret < try)
1393 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001394 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001395 }
1396
1397 end:
1398 if (ret < 0) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001399 h1s->flags |= (!(h1m->flags & H1_MF_RESP) ? H1S_F_REQ_ERROR : H1S_F_RES_ERROR);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001400 h1s->cs->flags |= CS_FL_EOI;
1401 htx->flags |= HTX_FL_PARSING_ERROR;
Christopher Faulet129817b2018-09-20 16:14:40 +02001402 h1m->err_state = h1m->state;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001403 h1m->err_pos = *ofs + max + ret;
Christopher Faulete44769b2018-11-29 23:01:45 +01001404 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet129817b2018-09-20 16:14:40 +02001405 return 0;
1406 }
Willy Tarreau7e9dd732020-01-17 16:19:34 +01001407
Christopher Fauletafadc9a2020-07-03 14:51:15 +02001408 if (h1s->cs && !(h1m->flags & H1_MF_CHNK) &&
1409 ((h1m->state == H1_MSG_DATA && h1m->curr_len) || (h1m->state == H1_MSG_TUNNEL)))
Willy Tarreau7e9dd732020-01-17 16:19:34 +01001410 h1s->cs->flags |= CS_FL_MAY_SPLICE;
1411 else if (h1s->cs)
1412 h1s->cs->flags &= ~CS_FL_MAY_SPLICE;
1413
Christopher Faulet9768c262018-10-22 09:34:31 +02001414 /* update htx->extra, only when the body length is known */
1415 if (h1m->flags & H1_MF_XFER_LEN)
1416 htx->extra = h1m->curr_len;
Christopher Faulet129817b2018-09-20 16:14:40 +02001417 return total;
1418}
1419
1420/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001421 * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if
1422 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1423 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
1424 * responsible to update the parser state <h1m>.
1425 */
1426static size_t h1_process_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1427 struct buffer *buf, size_t *ofs, size_t max)
1428{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02001429 struct http_hdr hdrs[global.tune.max_http_hdr];
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001430 struct h1m tlr_h1m;
1431 int ret = 0;
1432
1433 if (!max || !b_data(buf))
1434 goto end;
1435
1436 /* Realing input buffer if necessary */
1437 if (b_peek(buf, *ofs) > b_tail(buf))
1438 b_slow_realign(buf, trash.area, 0);
1439
1440 tlr_h1m.flags = (H1_MF_NO_PHDR|H1_MF_HDRS_ONLY);
1441 ret = h1_headers_to_hdr_list(b_peek(buf, *ofs), b_tail(buf),
1442 hdrs, sizeof(hdrs)/sizeof(hdrs[0]), &tlr_h1m, NULL);
1443 if (ret <= 0) {
Willy Tarreau9a408ab2019-08-23 08:11:36 +02001444 /* Incomplete or invalid trailers. If the input buffer only
1445 * contains trailers and is full, which is detected by it being
1446 * full and the offset to be zero, it's an error because
1447 * trailers are too large to be handled by the parser. */
1448 if (ret < 0 || (!ret && !*ofs && !buf_room_for_htx_data(buf)))
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001449 goto error;
1450 goto end;
1451 }
1452
1453 /* messages trailers fully parsed. */
1454 if (h1_eval_htx_hdrs_size(hdrs) > max) {
1455 if (htx_is_empty(htx))
1456 goto error;
1457 ret = 0;
1458 goto end;
1459 }
1460
1461 if (!htx_add_all_trailers(htx, hdrs))
1462 goto error;
1463
1464 *ofs += ret;
1465 h1s->flags |= H1S_F_HAVE_I_TLR;
1466 end:
1467 return ret;
1468
1469 error:
1470 h1m->err_state = h1m->state;
1471 h1m->err_pos = h1m->next;
1472 h1s->flags |= (!(h1m->flags & H1_MF_RESP) ? H1S_F_REQ_ERROR : H1S_F_RES_ERROR);
1473 h1s->cs->flags |= CS_FL_EOI;
1474 htx->flags |= HTX_FL_PARSING_ERROR;
1475 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1476 ret = 0;
1477 goto end;
1478}
1479
1480/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001481 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001482 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1483 * it couldn't proceed.
Christopher Faulet129817b2018-09-20 16:14:40 +02001484 */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001485static size_t h1_process_input(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001486{
Christopher Faulet539e0292018-11-19 10:40:09 +01001487 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001488 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001489 struct htx *htx;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001490 size_t ret, data;
Christopher Faulet129817b2018-09-20 16:14:40 +02001491 size_t total = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001492 int errflag;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001493
Christopher Faulet539e0292018-11-19 10:40:09 +01001494 htx = htx_from_buf(buf);
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001495
Christopher Fauletf2824e62018-10-01 12:12:37 +02001496 if (!conn_is_back(h1c->conn)) {
1497 h1m = &h1s->req;
1498 errflag = H1S_F_REQ_ERROR;
1499 }
1500 else {
1501 h1m = &h1s->res;
1502 errflag = H1S_F_RES_ERROR;
1503 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001504
Christopher Faulet74027762019-02-26 14:45:05 +01001505 data = htx->data;
Christopher Fauletcd9f6a72019-07-04 21:22:34 +02001506 if (h1s->flags & errflag)
1507 goto end;
1508
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001509 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001510 size_t used = htx_used_space(htx);
1511
Christopher Faulet129817b2018-09-20 16:14:40 +02001512 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001513 ret = h1_process_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001514 if (!ret)
1515 break;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001516 if ((h1m->flags & H1_MF_RESP) &&
1517 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1518 h1m_init_res(&h1s->res);
1519 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
1520 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001521 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001522 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001523 ret = h1_process_data(h1s, h1m, htx, &h1c->ibuf, &total, count, buf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01001524 htx = htx_from_buf(buf);
Christopher Faulet129817b2018-09-20 16:14:40 +02001525 if (!ret)
1526 break;
1527 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001528 else if (h1m->state == H1_MSG_TRAILERS) {
1529 if (!(h1s->flags & H1S_F_HAVE_I_TLR)) {
1530 ret = h1_process_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
1531 if (!ret)
1532 break;
1533 }
Christopher Faulet1021e722019-09-03 21:55:14 +02001534 else if (!h1_process_eom(h1s, h1m, htx, count))
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001535 break;
1536 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001537 else if (h1m->state == H1_MSG_DONE) {
Christopher Fauletac4778c2019-11-15 11:14:23 +01001538 if (!(h1m->flags & H1_MF_RESP) && h1s->status == 101)
1539 h1_set_req_tunnel_mode(h1s);
Christopher Fauletaffe0cb2020-07-10 10:01:26 +02001540 else if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE) {
Christopher Faulet2f320ee2019-04-16 20:26:53 +02001541 h1c->flags |= H1C_F_IN_BUSY;
Christopher Fauletaffe0cb2020-07-10 10:01:26 +02001542 break;
1543 }
1544 else
1545 break;
Christopher Fauletcb55f482018-12-10 11:56:47 +01001546 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001547 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001548 ret = h1_process_data(h1s, h1m, htx, &h1c->ibuf, &total, count, buf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01001549 htx = htx_from_buf(buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001550 if (!ret)
1551 break;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001552 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001553 else {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001554 h1s->flags |= errflag;
Christopher Faulet129817b2018-09-20 16:14:40 +02001555 break;
1556 }
1557
Christopher Faulet30db3d72019-05-17 15:35:33 +02001558 count -= htx_used_space(htx) - used;
Christopher Faulet98e2bc22019-09-03 16:26:15 +02001559 } while (!(h1s->flags & errflag));
Christopher Faulet129817b2018-09-20 16:14:40 +02001560
Christopher Faulet47365272018-10-31 17:40:50 +01001561 if (h1s->flags & errflag)
1562 goto parsing_err;
Christopher Faulet129817b2018-09-20 16:14:40 +02001563
Christopher Faulet539e0292018-11-19 10:40:09 +01001564 b_del(&h1c->ibuf, total);
1565
1566 end:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001567 htx_to_buf(htx, buf);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001568 ret = htx->data - data;
Willy Tarreau45f2b892018-12-05 07:59:27 +01001569 if (h1c->flags & H1C_F_IN_FULL && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001570 h1c->flags &= ~H1C_F_IN_FULL;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001571 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet47365272018-10-31 17:40:50 +01001572 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001573
Christopher Fauletcf56b992018-12-11 16:12:31 +01001574 h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
1575
Christopher Fauletcdc90e92019-03-28 13:28:46 +01001576 if (!b_data(&h1c->ibuf))
Christopher Faulet539e0292018-11-19 10:40:09 +01001577 h1_release_buf(h1c, &h1c->ibuf);
Christopher Fauleta882a462019-12-06 15:59:05 +01001578
1579 if ((h1s_data_pending(h1s) && !htx_is_empty(htx)) || (h1s->flags & H1S_F_APPEND_EOM))
Christopher Fauletcf56b992018-12-11 16:12:31 +01001580 h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM;
Christopher Faulet539e0292018-11-19 10:40:09 +01001581
Willy Tarreau62038152019-08-23 09:29:29 +02001582 if (((h1s->flags & (H1S_F_REOS|H1S_F_APPEND_EOM)) == H1S_F_REOS) &&
1583 (!h1s_data_pending(h1s) || htx_is_empty(htx))) {
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001584 h1s->cs->flags |= CS_FL_EOS;
Christopher Faulet26922382019-03-08 15:13:41 +01001585 if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE)
Christopher Fauletb8d2ee02019-02-25 15:29:51 +01001586 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet539e0292018-11-19 10:40:09 +01001587 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001588
Christopher Faulet30db3d72019-05-17 15:35:33 +02001589 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001590
1591 parsing_err:
Christopher Faulet47365272018-10-31 17:40:50 +01001592 b_reset(&h1c->ibuf);
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001593 htx_to_buf(htx, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001594 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001595}
1596
Christopher Faulet129817b2018-09-20 16:14:40 +02001597/*
1598 * Process outgoing data. It parses data and transfer them from the channel buffer into
1599 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1600 * 0 if it couldn't proceed.
1601 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02001602static size_t h1_process_output(struct h1c *h1c, struct buffer *buf, size_t count)
1603{
Christopher Faulet129817b2018-09-20 16:14:40 +02001604 struct h1s *h1s = h1c->h1s;
1605 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001606 struct htx *chn_htx;
1607 struct htx_blk *blk;
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001608 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001609 size_t total = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001610 int errflag;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001611
Christopher Faulet47365272018-10-31 17:40:50 +01001612 if (!count)
1613 goto end;
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001614
Christopher Faulet94b2c762019-05-24 15:28:57 +02001615 chn_htx = htxbuf(buf);
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001616 if (htx_is_empty(chn_htx))
1617 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001618
Christopher Faulet51dbc942018-09-13 09:05:15 +02001619 if (!h1_get_buf(h1c, &h1c->obuf)) {
1620 h1c->flags |= H1C_F_OUT_ALLOC;
1621 goto end;
1622 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001623
Christopher Fauletf2824e62018-10-01 12:12:37 +02001624 if (!conn_is_back(h1c->conn)) {
1625 h1m = &h1s->res;
1626 errflag = H1S_F_RES_ERROR;
1627 }
1628 else {
1629 h1m = &h1s->req;
1630 errflag = H1S_F_REQ_ERROR;
1631 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001632
Christopher Fauletcd9f6a72019-07-04 21:22:34 +02001633 if (h1s->flags & errflag)
1634 goto end;
1635
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001636 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001637 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001638
Willy Tarreau3815b222018-12-11 19:50:43 +01001639 /* Perform some optimizations to reduce the number of buffer copies.
1640 * First, if the mux's buffer is empty and the htx area contains
1641 * exactly one data block of the same size as the requested count,
1642 * then it's possible to simply swap the caller's buffer with the
1643 * mux's output buffer and adjust offsets and length to match the
1644 * entire DATA HTX block in the middle. In this case we perform a
1645 * true zero-copy operation from end-to-end. This is the situation
1646 * that happens all the time with large files. Second, if this is not
1647 * possible, but the mux's output buffer is empty, we still have an
1648 * opportunity to avoid the copy to the intermediary buffer, by making
1649 * the intermediary buffer's area point to the output buffer's area.
1650 * In this case we want to skip the HTX header to make sure that copies
1651 * remain aligned and that this operation remains possible all the
1652 * time. This goes for headers, data blocks and any data extracted from
1653 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01001654 */
1655 if (!b_data(&h1c->obuf)) {
Willy Tarreau3815b222018-12-11 19:50:43 +01001656 if (chn_htx->used == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001657 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01001658 htx_get_blk_value(chn_htx, blk).len == count) {
1659 void *old_area = h1c->obuf.area;
1660
1661 h1c->obuf.area = buf->area;
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001662 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01001663 h1c->obuf.data = count;
1664
1665 buf->area = old_area;
1666 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01001667
1668 /* The message is chunked. We need to emit the chunk
1669 * size. We have at least the size of the struct htx to
1670 * write the chunk envelope. It should be enough.
1671 */
1672 if (h1m->flags & H1_MF_CHNK) {
1673 h1_emit_chunk_size(&h1c->obuf, count);
1674 h1_emit_chunk_crlf(&h1c->obuf);
1675 }
1676
Willy Tarreau3815b222018-12-11 19:50:43 +01001677 total += count;
1678 goto out;
1679 }
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001680 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001681 }
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001682 else
1683 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02001684
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001685 tmp.data = 0;
1686 tmp.size = b_room(&h1c->obuf);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001687 while (count && !(h1s->flags & errflag) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01001688 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02001689 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001690 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02001691 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001692 uint32_t vlen;
Christopher Faulet9768c262018-10-22 09:34:31 +02001693
Christopher Fauletb2e84162018-12-06 11:39:49 +01001694 vlen = sz;
1695 if (vlen > count) {
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001696 if (type != HTX_BLK_DATA)
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001697 goto full;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001698 vlen = count;
1699 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001700
Christopher Faulet94b2c762019-05-24 15:28:57 +02001701 if (type == HTX_BLK_UNUSED)
1702 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02001703
Christopher Faulet94b2c762019-05-24 15:28:57 +02001704 switch (h1m->state) {
1705 case H1_MSG_RQBEFORE:
1706 if (type != HTX_BLK_REQ_SL)
1707 goto error;
Christopher Faulet9768c262018-10-22 09:34:31 +02001708 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001709 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001710 h1_parse_req_vsn(h1m, sl);
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001711 if (!htx_reqline_to_h1(sl, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001712 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001713 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01001714 if (sl->flags & HTX_SL_F_BODYLESS)
1715 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001716 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet129817b2018-09-20 16:14:40 +02001717 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02001718
Christopher Faulet94b2c762019-05-24 15:28:57 +02001719 case H1_MSG_RPBEFORE:
1720 if (type != HTX_BLK_RES_SL)
1721 goto error;
Christopher Faulet9768c262018-10-22 09:34:31 +02001722 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001723 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02001724 h1_parse_res_vsn(h1m, sl);
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001725 if (!htx_stline_to_h1(sl, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001726 goto full;
Christopher Faulet03599112018-11-27 11:21:21 +01001727 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02001728 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001729 if (sl->info.res.status < 200 &&
1730 (sl->info.res.status == 100 || sl->info.res.status >= 102))
Christopher Fauletada34b62019-05-24 16:36:43 +02001731 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001732 h1m->state = H1_MSG_HDR_FIRST;
1733 break;
1734
Christopher Faulet94b2c762019-05-24 15:28:57 +02001735 case H1_MSG_HDR_FIRST:
1736 case H1_MSG_HDR_NAME:
1737 case H1_MSG_HDR_L2_LWS:
1738 if (type == HTX_BLK_EOH)
1739 goto last_lf;
1740 if (type != HTX_BLK_HDR)
1741 goto error;
Christopher Faulet9768c262018-10-22 09:34:31 +02001742 h1m->state = H1_MSG_HDR_NAME;
1743 n = htx_get_blk_name(chn_htx, blk);
1744 v = htx_get_blk_value(chn_htx, blk);
1745
1746 if (isteqi(n, ist("transfer-encoding")))
1747 h1_parse_xfer_enc_header(h1m, v);
Willy Tarreau27cd2232019-01-03 21:52:42 +01001748 else if (isteqi(n, ist("content-length"))) {
Christopher Faulet5220ef22019-03-27 15:44:56 +01001749 /* Only skip C-L header with invalid value. */
1750 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01001751 goto skip_hdr;
1752 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001753 else if (isteqi(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001754 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02001755 if (!v.len)
1756 goto skip_hdr;
1757 }
1758
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02001759 /* Try to adjust the case of the header name */
1760 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1761 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001762 if (!htx_hdr_to_h1(n, v, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001763 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001764 skip_hdr:
1765 h1m->state = H1_MSG_HDR_L2_LWS;
1766 break;
1767
Christopher Faulet94b2c762019-05-24 15:28:57 +02001768 case H1_MSG_LAST_LF:
1769 if (type != HTX_BLK_EOH)
1770 goto error;
1771 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02001772 h1m->state = H1_MSG_LAST_LF;
1773 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001774 /* There is no "Connection:" header and
1775 * it the conn_mode must be
1776 * processed. So do it */
Christopher Faulet661bfc32019-06-17 14:07:46 +02001777 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001778 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01001779 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001780 if (v.len) {
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02001781 /* Try to adjust the case of the header name */
1782 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1783 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001784 if (!htx_hdr_to_h1(n, v, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001785 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001786 }
Christopher Fauletada34b62019-05-24 16:36:43 +02001787 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001788 }
Willy Tarreau4710d202019-01-03 17:39:54 +01001789
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001790 if ((h1s->meth != HTTP_METH_CONNECT &&
1791 (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 +01001792 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
1793 (h1s->status >= 200 && h1s->status != 204 && h1s->status != 304 &&
1794 h1s->meth != HTTP_METH_HEAD && !(h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) &&
1795 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
1796 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01001797 /* chunking needed but header not seen */
Christopher Faulete5addb02019-10-04 10:23:51 +02001798 n = ist("transfer-encoding");
1799 v = ist("chunked");
1800 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1801 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
1802 if (!htx_hdr_to_h1(n, v, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001803 goto full;
Willy Tarreau4710d202019-01-03 17:39:54 +01001804 h1m->flags |= H1_MF_CHNK;
1805 }
1806
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001807 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001808 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001809
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001810 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
1811 /* a CONNECT request is sent to the server. Switch it to tunnel mode. */
1812 h1_set_req_tunnel_mode(h1s);
1813 }
Christopher Fauletac4778c2019-11-15 11:14:23 +01001814 else if ((h1m->flags & H1_MF_RESP) &&
1815 ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) || h1s->status == 101)) {
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001816 /* a successfull reply to a CONNECT or a protocol switching is sent
Christopher Fauletac4778c2019-11-15 11:14:23 +01001817 * to the client. Switch the response to tunnel mode.
1818 */
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001819 h1_set_res_tunnel_mode(h1s);
1820 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001821 else if ((h1m->flags & H1_MF_RESP) &&
1822 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1823 h1m_init_res(&h1s->res);
1824 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02001825 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001826 }
Christopher Faulet33d58b52019-07-01 16:17:30 +02001827 else if ((h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_HEAD)
1828 h1m->state = H1_MSG_DONE;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001829 else
1830 h1m->state = H1_MSG_DATA;
Christopher Faulet9768c262018-10-22 09:34:31 +02001831 break;
1832
Christopher Faulet94b2c762019-05-24 15:28:57 +02001833 case H1_MSG_DATA:
Christopher Fauletaaa25062019-07-04 17:12:12 +02001834 case H1_MSG_TUNNEL:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001835 if (type == HTX_BLK_EOM) {
1836 /* Chunked message without explicit trailers */
1837 if (h1m->flags & H1_MF_CHNK) {
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001838 if (!chunk_memcat(&tmp, "0\r\n\r\n", 5))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001839 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001840 }
1841 goto done;
1842 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001843 else if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet52131682019-06-27 17:40:14 +02001844 /* If the message is not chunked, never
1845 * add the last chunk. */
1846 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001847 goto full;
Christopher Faulet94b2c762019-05-24 15:28:57 +02001848 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001849 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02001850 else if (type != HTX_BLK_DATA)
1851 goto error;
Christopher Faulet9768c262018-10-22 09:34:31 +02001852 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001853 v.len = vlen;
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001854 if (!htx_data_to_h1(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001855 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001856 break;
1857
Christopher Faulet94b2c762019-05-24 15:28:57 +02001858 case H1_MSG_TRAILERS:
1859 if (type == HTX_BLK_EOM)
1860 goto done;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001861 else if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02001862 goto error;
1863 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02001864 h1m->state = H1_MSG_TRAILERS;
Christopher Faulet52131682019-06-27 17:40:14 +02001865 /* If the message is not chunked, ignore
1866 * trailers. It may happen with H2 messages. */
1867 if (!(h1m->flags & H1_MF_CHNK))
1868 break;
1869
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001870 if (type == HTX_BLK_EOT) {
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001871 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001872 goto full;
Christopher Faulet32188212018-11-20 18:21:43 +01001873 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001874 else { // HTX_BLK_TLR
1875 n = htx_get_blk_name(chn_htx, blk);
1876 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02001877
1878 /* Try to adjust the case of the header name */
1879 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1880 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001881 if (!htx_hdr_to_h1(n, v, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001882 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001883 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001884 break;
1885
Christopher Faulet94b2c762019-05-24 15:28:57 +02001886 case H1_MSG_DONE:
1887 if (type != HTX_BLK_EOM)
1888 goto error;
1889 done:
1890 h1m->state = H1_MSG_DONE;
Christopher Fauletac4778c2019-11-15 11:14:23 +01001891 if (!(h1m->flags & H1_MF_RESP) && h1s->status == 101)
1892 h1_set_req_tunnel_mode(h1s);
1893 else if (h1s->h1c->flags & H1C_F_IN_BUSY) {
Christopher Fauletcd67bff2019-06-14 16:54:15 +02001894 h1s->h1c->flags &= ~H1C_F_IN_BUSY;
1895 tasklet_wakeup(h1s->h1c->wait_event.tasklet);
1896 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001897 break;
1898
Christopher Faulet9768c262018-10-22 09:34:31 +02001899 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02001900 error:
Christopher Fauletc431df82019-06-26 15:16:28 +02001901 /* Unexpected error during output processing */
1902 chn_htx->flags |= HTX_FL_PARSING_ERROR;
Christopher Fauleta2ea1582019-05-28 10:35:18 +02001903 h1s->flags |= errflag;
Christopher Fauletc431df82019-06-26 15:16:28 +02001904 h1c->flags |= H1C_F_CS_ERROR;
Christopher Faulet9768c262018-10-22 09:34:31 +02001905 break;
1906 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02001907
1908 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01001909 total += vlen;
1910 count -= vlen;
1911 if (sz == vlen)
1912 blk = htx_remove_blk(chn_htx, blk);
1913 else {
1914 htx_cut_data_blk(chn_htx, blk, vlen);
1915 break;
1916 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001917 }
1918
Christopher Faulet9768c262018-10-22 09:34:31 +02001919 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01001920 /* when the output buffer is empty, tmp shares the same area so that we
1921 * only have to update pointers and lengths.
1922 */
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001923 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
1924 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001925 else
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001926 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001927
Willy Tarreau3815b222018-12-11 19:50:43 +01001928 htx_to_buf(chn_htx, buf);
1929 out:
Willy Tarreau45f2b892018-12-05 07:59:27 +01001930 if (!buf_room_for_htx_data(&h1c->obuf))
Christopher Faulet51dbc942018-09-13 09:05:15 +02001931 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001932 end:
1933 return total;
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001934
1935 full:
1936 h1c->flags |= H1C_F_OUT_FULL;
1937 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001938}
1939
Christopher Faulet51dbc942018-09-13 09:05:15 +02001940/*********************************************************/
1941/* functions below are I/O callbacks from the connection */
1942/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001943static void h1_wake_stream_for_recv(struct h1s *h1s)
1944{
1945 if (h1s && h1s->recv_wait) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001946 h1s->recv_wait->events &= ~SUB_RETRY_RECV;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001947 tasklet_wakeup(h1s->recv_wait->tasklet);
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001948 h1s->recv_wait = NULL;
1949 }
1950}
1951static void h1_wake_stream_for_send(struct h1s *h1s)
1952{
1953 if (h1s && h1s->send_wait) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001954 h1s->send_wait->events &= ~SUB_RETRY_SEND;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001955 tasklet_wakeup(h1s->send_wait->tasklet);
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001956 h1s->send_wait = NULL;
1957 }
1958}
1959
Christopher Faulet51dbc942018-09-13 09:05:15 +02001960/*
1961 * Attempt to read data, and subscribe if none available
1962 */
1963static int h1_recv(struct h1c *h1c)
1964{
1965 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01001966 struct h1s *h1s = h1c->h1s;
Olivier Houchard75159a92018-12-03 18:46:09 +01001967 size_t ret = 0, max;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001968 int rcvd = 0;
1969
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001970 if (h1c->wait_event.events & SUB_RETRY_RECV)
Christopher Fauletc386a882018-12-04 16:06:28 +01001971 return (b_data(&h1c->ibuf));
Christopher Faulet51dbc942018-09-13 09:05:15 +02001972
Olivier Houchard5b06cb32019-08-13 15:21:59 +02001973 if (!(conn->flags & CO_FL_ERROR) && h1c->flags & H1C_F_CS_WAIT_CONN)
Willy Tarreaud58f27f2019-06-03 10:12:22 +02001974 return 0;
Willy Tarreaud58f27f2019-06-03 10:12:22 +02001975
Olivier Houchard75159a92018-12-03 18:46:09 +01001976 if (!h1_recv_allowed(h1c)) {
1977 rcvd = 1;
Christopher Faulet9768c262018-10-22 09:34:31 +02001978 goto end;
Olivier Houchard75159a92018-12-03 18:46:09 +01001979 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001980
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02001981 if (!h1_get_buf(h1c, &h1c->ibuf)) {
1982 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet9768c262018-10-22 09:34:31 +02001983 goto end;
1984 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02001985
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02001986 if (h1s && (h1s->flags & (H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA))) {
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02001987 if (!h1s_data_pending(h1s))
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02001988 h1_wake_stream_for_recv(h1s);
1989 rcvd = 1;
Christopher Faulet9768c262018-10-22 09:34:31 +02001990 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001991 }
1992
Olivier Houchard29a22bc2018-12-04 18:16:45 +01001993 /*
1994 * If we only have a small amount of data, realign it,
1995 * it's probably cheaper than doing 2 recv() calls.
1996 */
1997 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
1998 b_slow_realign(&h1c->ibuf, trash.area, 0);
1999
Willy Tarreau45f2b892018-12-05 07:59:27 +01002000 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002001 if (max) {
2002 h1c->flags &= ~H1C_F_IN_FULL;
Willy Tarreau78f548f2018-12-05 10:02:39 +01002003
Willy Tarreaue0f24ee2018-12-14 10:51:23 +01002004 b_realign_if_empty(&h1c->ibuf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01002005 if (!b_data(&h1c->ibuf)) {
2006 /* try to pre-align the buffer like the rxbufs will be
2007 * to optimize memory copies.
2008 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01002009 h1c->ibuf.head = sizeof(struct htx);
2010 }
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002011 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, 0);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002012 }
Christopher Faulet47365272018-10-31 17:40:50 +01002013 if (ret > 0) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002014 rcvd = 1;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002015 if (h1s && h1s->cs) {
Christopher Faulet37e36072018-12-04 15:54:12 +01002016 h1s->cs->flags |= (CS_FL_READ_PARTIAL|CS_FL_RCV_MORE);
Christopher Fauletfeb11742018-11-29 15:12:34 +01002017 if (h1s->csinfo.t_idle == -1)
2018 h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake;
2019 }
Christopher Faulet47365272018-10-31 17:40:50 +01002020 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002021
Christopher Fauletcf56b992018-12-11 16:12:31 +01002022 if (!h1_recv_allowed(h1c) || !buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet81d48432018-11-19 21:22:43 +01002023 rcvd = 1;
Christopher Fauletcf56b992018-12-11 16:12:31 +01002024 goto end;
2025 }
2026
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002027 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002028
Christopher Faulet9768c262018-10-22 09:34:31 +02002029 end:
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002030 if (ret > 0 || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn))
2031 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002032
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002033 if (conn_xprt_read0_pending(conn) && h1s) {
2034 h1s->flags |= H1S_F_REOS;
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002035 rcvd = 1;
2036 }
2037
Christopher Faulet51dbc942018-09-13 09:05:15 +02002038 if (!b_data(&h1c->ibuf))
2039 h1_release_buf(h1c, &h1c->ibuf);
Willy Tarreau45f2b892018-12-05 07:59:27 +01002040 else if (!buf_room_for_htx_data(&h1c->ibuf))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002041 h1c->flags |= H1C_F_IN_FULL;
2042 return rcvd;
2043}
2044
2045
2046/*
2047 * Try to send data if possible
2048 */
2049static int h1_send(struct h1c *h1c)
2050{
2051 struct connection *conn = h1c->conn;
2052 unsigned int flags = 0;
2053 size_t ret;
2054 int sent = 0;
2055
2056 if (conn->flags & CO_FL_ERROR)
2057 return 0;
2058
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002059 if (h1c->flags & H1C_F_CS_WAIT_CONN) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002060 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002061 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002062 return 0;
2063 }
2064
Christopher Faulet51dbc942018-09-13 09:05:15 +02002065 if (!b_data(&h1c->obuf))
2066 goto end;
2067
2068 if (h1c->flags & H1C_F_OUT_FULL)
2069 flags |= CO_SFL_MSG_MORE;
2070
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002071 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002072 if (ret > 0) {
2073 h1c->flags &= ~H1C_F_OUT_FULL;
2074 b_del(&h1c->obuf, ret);
2075 sent = 1;
2076 }
2077
Christopher Faulet145aa472018-12-06 10:56:20 +01002078 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
2079 /* error or output closed, nothing to send, clear the buffer to release it */
2080 b_reset(&h1c->obuf);
2081 }
2082
Christopher Faulet51dbc942018-09-13 09:05:15 +02002083 end:
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002084 if (!(h1c->flags & H1C_F_OUT_FULL))
2085 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002086
Christopher Faulet51dbc942018-09-13 09:05:15 +02002087 /* We're done, no more to send */
2088 if (!b_data(&h1c->obuf)) {
2089 h1_release_buf(h1c, &h1c->obuf);
2090 if (h1c->flags & H1C_F_CS_SHUTW_NOW)
Christopher Faulet666a0c42019-01-08 11:12:04 +01002091 h1_shutw_conn(conn, CS_SHW_NORMAL);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002092 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002093 else if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002094 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002095
2096 return sent;
2097}
2098
Christopher Faulet51dbc942018-09-13 09:05:15 +02002099
2100/* callback called on any event by the connection handler.
2101 * It applies changes and returns zero, or < 0 if it wants immediate
2102 * destruction of the connection.
2103 */
2104static int h1_process(struct h1c * h1c)
2105{
2106 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002107 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002108
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002109 if (!conn->ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002110 return -1;
2111
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002112 if (h1c->flags & H1C_F_CS_WAIT_CONN) {
Olivier Houchard690e0f02019-06-11 16:37:24 +02002113 if (!(conn->flags & (CO_FL_CONNECTED|CO_FL_ERROR)) ||
Olivier Houchard60630032019-06-13 17:37:00 +02002114 (!(conn->flags & CO_FL_ERROR) && (conn->flags & CO_FL_HANDSHAKE)))
Christopher Faulet539e0292018-11-19 10:40:09 +01002115 goto end;
2116 h1c->flags &= ~H1C_F_CS_WAIT_CONN;
Christopher Fauleta0883e62018-12-11 16:26:50 +01002117 h1_wake_stream_for_send(h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002118 }
2119
Christopher Fauletfeb11742018-11-29 15:12:34 +01002120 if (!h1s) {
Christopher Faulet470438c2019-07-11 15:40:25 +02002121 if (h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTDOWN) ||
Christopher Faulete31a0f12019-12-05 10:23:37 +01002122 conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH))
Christopher Faulet539e0292018-11-19 10:40:09 +01002123 goto release;
Christopher Faulete31a0f12019-12-05 10:23:37 +01002124 if (!conn_is_back(conn) && (h1c->flags & H1C_F_CS_IDLE)) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01002125 if (!h1s_create(h1c, NULL, NULL))
Christopher Faulet539e0292018-11-19 10:40:09 +01002126 goto release;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002127 }
Christopher Faulet1a7ad7a2018-12-04 16:10:44 +01002128 else
Olivier Houcharde7284782018-12-06 18:54:54 +01002129 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002130 h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002131 }
2132
Christopher Fauletfeb11742018-11-29 15:12:34 +01002133 if (b_data(&h1c->ibuf) && h1s->csinfo.t_idle == -1)
2134 h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake;
2135
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002136 if (conn_xprt_read0_pending(conn))
2137 h1s->flags |= H1S_F_REOS;
2138
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002139 if (!h1s_data_pending(h1s) && h1s && h1s->cs && h1s->cs->data_cb->wake &&
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002140 (h1s->flags & H1S_F_REOS || h1c->flags & H1C_F_CS_ERROR ||
Olivier Houchard32d75ed2019-01-14 17:27:23 +01002141 conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH))) {
Olivier Houchard75159a92018-12-03 18:46:09 +01002142 if (h1c->flags & H1C_F_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002143 h1s->cs->flags |= CS_FL_ERROR;
Olivier Houchard75159a92018-12-03 18:46:09 +01002144 h1s->cs->data_cb->wake(h1s->cs);
2145 }
Christopher Faulet47365272018-10-31 17:40:50 +01002146 end:
Christopher Fauletb5762062020-08-05 11:31:16 +02002147 h1_refresh_timeout(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002148 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01002149
2150 release:
Christopher Faulet73c12072019-04-08 11:23:22 +02002151 h1_release(h1c);
Christopher Faulet539e0292018-11-19 10:40:09 +01002152 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002153}
2154
2155static struct task *h1_io_cb(struct task *t, void *ctx, unsigned short status)
2156{
2157 struct h1c *h1c = ctx;
2158 int ret = 0;
2159
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002160 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002161 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002162 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002163 ret |= h1_recv(h1c);
Christopher Faulet81d48432018-11-19 21:22:43 +01002164 if (ret || !h1c->h1s)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002165 h1_process(h1c);
2166 return NULL;
2167}
2168
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002169static void h1_reset(struct connection *conn)
2170{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002171 struct h1c *h1c = conn->ctx;
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002172
2173 /* Reset the flags, and let the mux know we're waiting for a connection */
2174 h1c->flags = H1C_F_CS_WAIT_CONN;
2175}
Christopher Faulet51dbc942018-09-13 09:05:15 +02002176
2177static int h1_wake(struct connection *conn)
2178{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002179 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01002180 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002181
Christopher Faulet539e0292018-11-19 10:40:09 +01002182 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01002183 ret = h1_process(h1c);
2184 if (ret == 0) {
2185 struct h1s *h1s = h1c->h1s;
2186
2187 if (h1s && h1s->cs && h1s->cs->data_cb->wake)
2188 ret = h1s->cs->data_cb->wake(h1s->cs);
2189 }
2190 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002191}
2192
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002193/* Connection timeout management. The principle is that if there's no receipt
2194 * nor sending for a certain amount of time, the connection is closed.
2195 */
2196static struct task *h1_timeout_task(struct task *t, void *context, unsigned short state)
2197{
2198 struct h1c *h1c = context;
2199 int expired = tick_is_expired(t->expire, now_ms);
2200
2201 if (!expired && h1c)
2202 return t;
2203
Olivier Houchard3f795f72019-04-17 22:51:06 +02002204 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002205
2206 if (!h1c) {
2207 /* resources were already deleted */
2208 return NULL;
2209 }
2210
2211 h1c->task = NULL;
2212 /* If a stream is still attached to the mux, just set an error and wait
2213 * for the stream's timeout. Otherwise, release the mux. This is only ok
2214 * because same timeouts are used.
2215 */
2216 if (h1c->h1s && h1c->h1s->cs)
2217 h1c->flags |= H1C_F_CS_ERROR;
2218 else
Christopher Faulet73c12072019-04-08 11:23:22 +02002219 h1_release(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002220 return NULL;
2221}
2222
Christopher Faulet51dbc942018-09-13 09:05:15 +02002223/*******************************************/
2224/* functions below are used by the streams */
2225/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02002226
Christopher Faulet51dbc942018-09-13 09:05:15 +02002227/*
2228 * Attach a new stream to a connection
2229 * (Used for outgoing connections)
2230 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01002231static struct conn_stream *h1_attach(struct connection *conn, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002232{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002233 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002234 struct conn_stream *cs = NULL;
2235 struct h1s *h1s;
2236
2237 if (h1c->flags & H1C_F_CS_ERROR)
2238 goto end;
2239
2240 cs = cs_new(h1c->conn);
2241 if (!cs)
2242 goto end;
2243
Olivier Houchardf502aca2018-12-14 19:42:40 +01002244 h1s = h1s_create(h1c, cs, sess);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002245 if (h1s == NULL)
2246 goto end;
2247
2248 return cs;
2249 end:
2250 cs_free(cs);
2251 return NULL;
2252}
2253
2254/* Retrieves a valid conn_stream from this connection, or returns NULL. For
2255 * this mux, it's easy as we can only store a single conn_stream.
2256 */
2257static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
2258{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002259 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002260 struct h1s *h1s = h1c->h1s;
2261
2262 if (h1s)
2263 return h1s->cs;
2264
2265 return NULL;
2266}
2267
Christopher Faulet73c12072019-04-08 11:23:22 +02002268static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002269{
Christopher Faulet73c12072019-04-08 11:23:22 +02002270 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002271
Christopher Faulet39a96ee2019-04-08 10:52:21 +02002272 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02002273 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002274}
2275
2276/*
2277 * Detach the stream from the connection and possibly release the connection.
2278 */
2279static void h1_detach(struct conn_stream *cs)
2280{
2281 struct h1s *h1s = cs->ctx;
2282 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01002283 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01002284 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002285
2286 cs->ctx = NULL;
2287 if (!h1s)
2288 return;
2289
Olivier Houchardf502aca2018-12-14 19:42:40 +01002290 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002291 h1c = h1s->h1c;
2292 h1s->cs = NULL;
2293
Olivier Houchard8a786902018-12-15 16:05:40 +01002294 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
2295 h1s_destroy(h1s);
2296
Christopher Faulete31a0f12019-12-05 10:23:37 +01002297 if (conn_is_back(h1c->conn) && (h1c->flags & H1C_F_CS_IDLE)) {
Christopher Faulet0bf28f82019-07-19 14:51:06 +02002298 /* If there are any excess server data in the input buffer,
2299 * release it and close the connection ASAP (some data may
2300 * remain in the output buffer). This happens if a server sends
2301 * invalid responses. So in such case, we don't want to reuse
2302 * the connection
Christopher Faulet39e679b2019-07-19 11:34:08 +02002303 */
Christopher Faulet0bf28f82019-07-19 14:51:06 +02002304 if (b_data(&h1c->ibuf)) {
2305 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulete31a0f12019-12-05 10:23:37 +01002306 h1c->flags = (h1c->flags & ~H1C_F_CS_IDLE) | H1C_F_CS_SHUTW_NOW;
Christopher Faulet0bf28f82019-07-19 14:51:06 +02002307 goto release;
2308 }
Christopher Faulet39e679b2019-07-19 11:34:08 +02002309
Christopher Faulet9400a392018-11-23 23:10:39 +01002310 /* Never ever allow to reuse a connection from a non-reuse backend */
Olivier Houchard44d59142018-12-13 18:46:22 +01002311 if ((h1c->px->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
Christopher Faulet9400a392018-11-23 23:10:39 +01002312 h1c->conn->flags |= CO_FL_PRIVATE;
2313
Olivier Houchard44d59142018-12-13 18:46:22 +01002314 if (!(h1c->conn->owner)) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01002315 h1c->conn->owner = sess;
Olivier Houchard351411f2018-12-27 17:20:54 +01002316 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
2317 h1c->conn->owner = NULL;
2318 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn))
2319 /* The server doesn't want it, let's kill the connection right away */
Olivier Houchard109ba132020-02-14 13:23:45 +01002320 h1c->conn->mux->destroy(h1c);
Olivier Houchard351411f2018-12-27 17:20:54 +01002321 else
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002322 tasklet_wakeup(h1c->wait_event.tasklet);
Olivier Houchard351411f2018-12-27 17:20:54 +01002323 return;
Olivier Houchard351411f2018-12-27 17:20:54 +01002324 }
Olivier Houchard44d59142018-12-13 18:46:22 +01002325 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002326 if (h1c->conn->owner == sess) {
2327 int ret = session_check_idle_conn(sess, h1c->conn);
2328 if (ret == -1)
2329 /* The connection got destroyed, let's leave */
2330 return;
2331 else if (ret == 1) {
2332 /* The connection was added to the server list,
2333 * wake the task so we can subscribe to events
2334 */
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002335 tasklet_wakeup(h1c->wait_event.tasklet);
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002336 return;
2337 }
2338 }
Christopher Faulet9400a392018-11-23 23:10:39 +01002339 /* we're in keep-alive with an idle connection, monitor it if not already done */
Olivier Houchard44d59142018-12-13 18:46:22 +01002340 if (LIST_ISEMPTY(&h1c->conn->list)) {
Christopher Faulet9400a392018-11-23 23:10:39 +01002341 struct server *srv = objt_server(h1c->conn->target);
2342
2343 if (srv) {
2344 if (h1c->conn->flags & CO_FL_PRIVATE)
2345 LIST_ADD(&srv->priv_conns[tid], &h1c->conn->list);
Olivier Houchard8a786902018-12-15 16:05:40 +01002346 else if (is_not_first)
Christopher Faulet9400a392018-11-23 23:10:39 +01002347 LIST_ADD(&srv->safe_conns[tid], &h1c->conn->list);
2348 else
2349 LIST_ADD(&srv->idle_conns[tid], &h1c->conn->list);
2350 }
2351 }
2352 }
2353
Christopher Faulet0bf28f82019-07-19 14:51:06 +02002354 release:
Christopher Faulet9fa93f62019-06-28 17:41:42 +02002355 /* 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 +02002356 if ((h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTDOWN|H1C_F_UPG_H2C)) ||
2357 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
2358 ((h1c->flags & H1C_F_CS_SHUTW_NOW) && !b_data(&h1c->obuf)) ||
2359 !h1c->conn->owner)
Christopher Faulet73c12072019-04-08 11:23:22 +02002360 h1_release(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002361 else {
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002362 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Fauletb5762062020-08-05 11:31:16 +02002363 h1_refresh_timeout(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002364 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002365}
2366
2367
2368static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
2369{
2370 struct h1s *h1s = cs->ctx;
Christopher Faulet7f366362019-04-08 10:51:20 +02002371 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002372
2373 if (!h1s)
2374 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02002375 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002376
Christopher Faulet7f366362019-04-08 10:51:20 +02002377 if ((cs->flags & CS_FL_KILL_CONN) || (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)))
2378 goto do_shutr;
2379
Christopher Faulet0ef372a2019-04-08 10:57:20 +02002380 if ((h1c->flags & H1C_F_UPG_H2C) || (h1s->flags & H1S_F_WANT_KAL))
Christopher Fauletf2824e62018-10-01 12:12:37 +02002381 return;
2382
Christopher Faulet7f366362019-04-08 10:51:20 +02002383 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002384 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
2385 if (cs->flags & CS_FL_SHR)
2386 return;
2387 if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002388 cs->conn->xprt->shutr(cs->conn, cs->conn->xprt_ctx,
Christopher Fauletf36e72b2019-12-05 11:18:31 +01002389 (mode == CS_SHR_DRAIN));
Christopher Faulet51dbc942018-09-13 09:05:15 +02002390}
2391
2392static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
2393{
2394 struct h1s *h1s = cs->ctx;
2395 struct h1c *h1c;
2396
2397 if (!h1s)
2398 return;
2399 h1c = h1s->h1c;
2400
Christopher Faulet7f366362019-04-08 10:51:20 +02002401 if ((cs->flags & CS_FL_KILL_CONN) || (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)))
2402 goto do_shutw;
Olivier Houchardd2e88c72018-12-19 15:55:23 +01002403
Christopher Faulet0ef372a2019-04-08 10:57:20 +02002404 if ((h1c->flags & H1C_F_UPG_H2C) ||
2405 ((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 +02002406 return;
2407
Christopher Faulet7f366362019-04-08 10:51:20 +02002408 do_shutw:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002409 h1c->flags |= H1C_F_CS_SHUTW_NOW;
2410 if ((cs->flags & CS_FL_SHW) || b_data(&h1c->obuf))
2411 return;
2412
Christopher Faulet666a0c42019-01-08 11:12:04 +01002413 h1_shutw_conn(cs->conn, mode);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002414}
2415
Christopher Faulet666a0c42019-01-08 11:12:04 +01002416static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002417{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002418 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002419
Christopher Faulet666a0c42019-01-08 11:12:04 +01002420 conn_xprt_shutw(conn);
2421 conn_sock_shutw(conn, (mode == CS_SHW_NORMAL));
Christopher Fauletf36e72b2019-12-05 11:18:31 +01002422 h1c->flags = (h1c->flags & ~H1C_F_CS_SHUTW_NOW) | H1C_F_CS_SHUTDOWN;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002423}
2424
2425/* Called from the upper layer, to unsubscribe to events */
2426static int h1_unsubscribe(struct conn_stream *cs, int event_type, void *param)
2427{
2428 struct wait_event *sw;
2429 struct h1s *h1s = cs->ctx;
2430
2431 if (!h1s)
2432 return 0;
2433
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002434 if (event_type & SUB_RETRY_RECV) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002435 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002436 BUG_ON(h1s->recv_wait != sw);
2437 sw->events &= ~SUB_RETRY_RECV;
2438 h1s->recv_wait = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002439 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002440 if (event_type & SUB_RETRY_SEND) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002441 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002442 BUG_ON(h1s->send_wait != sw);
2443 sw->events &= ~SUB_RETRY_SEND;
2444 h1s->send_wait = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002445 }
2446 return 0;
2447}
2448
2449/* Called from the upper layer, to subscribe to events, such as being able to send */
2450static int h1_subscribe(struct conn_stream *cs, int event_type, void *param)
2451{
2452 struct wait_event *sw;
2453 struct h1s *h1s = cs->ctx;
2454
2455 if (!h1s)
2456 return -1;
2457
2458 switch (event_type) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002459 case SUB_RETRY_RECV:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002460 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002461 BUG_ON(h1s->recv_wait != NULL || (sw->events & SUB_RETRY_RECV));
2462 sw->events |= SUB_RETRY_RECV;
2463 h1s->recv_wait = sw;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002464 return 0;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002465 case SUB_RETRY_SEND:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002466 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002467 BUG_ON(h1s->send_wait != NULL || (sw->events & SUB_RETRY_SEND));
2468 sw->events |= SUB_RETRY_SEND;
2469 h1s->send_wait = sw;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002470 return 0;
2471 default:
2472 break;
2473 }
2474 return -1;
2475}
2476
2477/* Called from the upper layer, to receive data */
2478static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
2479{
2480 struct h1s *h1s = cs->ctx;
Christopher Faulet539e0292018-11-19 10:40:09 +01002481 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002482 size_t ret = 0;
2483
Christopher Faulet539e0292018-11-19 10:40:09 +01002484 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet30db3d72019-05-17 15:35:33 +02002485 ret = h1_process_input(h1c, buf, count);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002486
Christopher Faulete18777b2019-04-16 16:46:36 +02002487 if (flags & CO_RFL_BUF_FLUSH) {
2488 struct h1m *h1m = (!conn_is_back(cs->conn) ? &h1s->req : &h1s->res);
2489
Christopher Fauletafadc9a2020-07-03 14:51:15 +02002490 if (h1m->state == H1_MSG_TUNNEL || (h1m->state == H1_MSG_DATA && h1m->curr_len))
Christopher Faulete18777b2019-04-16 16:46:36 +02002491 h1s->flags |= H1S_F_BUF_FLUSH;
2492 }
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002493 else if (ret > 0 || (h1s->flags & H1S_F_SPLICED_DATA)) {
Christopher Faulet0528ae22020-07-03 15:12:00 +02002494 if (ret)
2495 h1s->flags &= ~H1S_F_SPLICED_DATA;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002496 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Fauletd2a762f2020-07-24 16:31:14 +02002497 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002498 }
2499 return ret;
2500}
2501
2502
2503/* Called from the upper layer, to send data */
2504static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
2505{
2506 struct h1s *h1s = cs->ctx;
2507 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002508 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002509
2510 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002511 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002512
2513 h1c = h1s->h1c;
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002514 if (h1c->flags & H1C_F_CS_WAIT_CONN)
2515 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002516
Christopher Fauletc31872f2019-06-04 22:09:36 +02002517 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002518 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002519
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002520 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
2521 ret = h1_process_output(h1c, buf, count);
2522 if (!ret)
2523 break;
2524 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02002525 count -= ret;
Olivier Houcharda1012862020-01-15 19:13:32 +01002526 if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c))
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002527 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002528 }
Christopher Fauletb5762062020-08-05 11:31:16 +02002529 h1_refresh_timeout(h1c);
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002530 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002531}
2532
Willy Tarreaue5733232019-05-22 19:24:06 +02002533#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02002534/* Send and get, using splicing */
2535static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
2536{
2537 struct h1s *h1s = cs->ctx;
2538 struct h1m *h1m = (!conn_is_back(cs->conn) ? &h1s->req : &h1s->res);
2539 int ret = 0;
2540
Christopher Faulet2c411be2019-11-05 16:24:27 +01002541 if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) {
Christopher Faulete18777b2019-04-16 16:46:36 +02002542 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
Christopher Faulet1146f972019-05-29 14:35:24 +02002543 if (!(h1s->h1c->wait_event.events & SUB_RETRY_RECV))
2544 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_RECV, &h1s->h1c->wait_event);
Christopher Faulete18777b2019-04-16 16:46:36 +02002545 goto end;
2546 }
2547
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002548 if (h1s_data_pending(h1s)) {
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002549 h1s->flags |= H1S_F_BUF_FLUSH;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002550 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002551 }
2552
2553 h1s->flags &= ~H1S_F_BUF_FLUSH;
2554 h1s->flags |= H1S_F_SPLICED_DATA;
Christopher Faulet8e8168a2020-07-03 15:02:25 +02002555
2556 if (!h1_recv_allowed(h1s->h1c))
2557 goto end;
2558
Christopher Faulet1be55f92018-10-02 15:59:23 +02002559 if (h1m->state == H1_MSG_DATA && count > h1m->curr_len)
2560 count = h1m->curr_len;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002561 ret = cs->conn->xprt->rcv_pipe(cs->conn, cs->conn->xprt_ctx, pipe, count);
Christopher Faulet290988a2020-07-24 16:13:12 +02002562 if (ret <= 0)
2563 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
2564 else if (h1m->state == H1_MSG_DATA) {
Christopher Faulet1be55f92018-10-02 15:59:23 +02002565 h1m->curr_len -= ret;
Christopher Faulete18777b2019-04-16 16:46:36 +02002566 if (!h1m->curr_len)
2567 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
2568 }
2569
Christopher Faulet1be55f92018-10-02 15:59:23 +02002570 end:
Christopher Faulet038ad812019-04-17 11:03:22 +02002571 if (conn_xprt_read0_pending(cs->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002572 h1s->flags |= H1S_F_REOS;
Christopher Fauletac4778c2019-11-15 11:14:23 +01002573 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
Christopher Faulet038ad812019-04-17 11:03:22 +02002574 }
Willy Tarreau7e9dd732020-01-17 16:19:34 +01002575
Christopher Faulete0ca6ad2020-07-07 10:56:40 +02002576 if ((h1s->flags & H1S_F_REOS) ||
2577 (h1m->state != H1_MSG_TUNNEL && h1m->state != H1_MSG_DATA) ||
Christopher Fauletafadc9a2020-07-03 14:51:15 +02002578 (h1m->state == H1_MSG_DATA && !h1m->curr_len))
Willy Tarreau7e9dd732020-01-17 16:19:34 +01002579 cs->flags &= ~CS_FL_MAY_SPLICE;
2580
Christopher Faulet1be55f92018-10-02 15:59:23 +02002581 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002582}
2583
2584static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
2585{
2586 struct h1s *h1s = cs->ctx;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002587 int ret = 0;
2588
2589 if (b_data(&h1s->h1c->obuf))
2590 goto end;
2591
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002592 ret = cs->conn->xprt->snd_pipe(cs->conn, cs->conn->xprt_ctx, pipe);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002593 end:
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002594 if (pipe->data) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002595 if (!(h1s->h1c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002596 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_SEND, &h1s->h1c->wait_event);
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002597 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002598 return ret;
2599}
2600#endif
2601
Olivier Houchard198d1292019-10-25 16:19:26 +02002602static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
2603{
2604 int ret = 0;
2605 switch (mux_ctl) {
2606 case MUX_STATUS:
2607 if (conn->flags & CO_FL_CONNECTED)
2608 ret |= MUX_STATUS_READY;
2609 return ret;
2610 default:
2611 return -1;
2612 }
2613}
2614
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002615/* for debugging with CLI's "show fd" command */
2616static void h1_show_fd(struct buffer *msg, struct connection *conn)
2617{
2618 struct h1c *h1c = conn->ctx;
2619 struct h1s *h1s = h1c->h1s;
2620
Christopher Fauletf376a312019-01-04 15:16:06 +01002621 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
2622 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002623 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
2624 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
2625 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
2626 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
2627
2628 if (h1s) {
2629 char *method;
2630
2631 if (h1s->meth < HTTP_METH_OTHER)
2632 method = http_known_methods[h1s->meth].ptr;
2633 else
2634 method = "UNKNOWN";
2635 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
2636 " .meth=%s status=%d",
2637 h1s, h1s->flags,
2638 h1m_state_str(h1s->req.state),
2639 h1m_state_str(h1s->res.state), method, h1s->status);
2640 if (h1s->cs)
2641 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
2642 h1s->cs->flags, h1s->cs->data);
2643 }
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002644}
2645
2646
2647/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
2648static int add_hdr_case_adjust(const char *from, const char *to, char **err)
2649{
2650 struct h1_hdr_entry *entry;
2651
2652 /* Be sure there is a non-empty <to> */
2653 if (!strlen(to)) {
2654 memprintf(err, "expect <to>");
2655 return -1;
2656 }
2657
2658 /* Be sure only the case differs between <from> and <to> */
2659 if (strcasecmp(from, to)) {
2660 memprintf(err, "<from> and <to> must not differ execpt the case");
2661 return -1;
2662 }
2663
2664 /* Be sure <from> does not already existsin the tree */
2665 if (ebis_lookup(&hdrs_map.map, from)) {
2666 memprintf(err, "duplicate entry '%s'", from);
2667 return -1;
2668 }
2669
2670 /* Create the entry and insert it in the tree */
2671 entry = malloc(sizeof(*entry));
2672 if (!entry) {
2673 memprintf(err, "out of memory");
2674 return -1;
2675 }
2676
2677 entry->node.key = strdup(from);
2678 entry->name.ptr = strdup(to);
2679 entry->name.len = strlen(to);
2680 if (!entry->node.key || !entry->name.ptr) {
2681 free(entry->node.key);
2682 free(entry->name.ptr);
2683 free(entry);
2684 memprintf(err, "out of memory");
2685 return -1;
2686 }
2687 ebis_insert(&hdrs_map.map, &entry->node);
2688 return 0;
2689}
2690
2691static void h1_hdeaders_case_adjust_deinit()
2692{
2693 struct ebpt_node *node, *next;
2694 struct h1_hdr_entry *entry;
2695
2696 node = ebpt_first(&hdrs_map.map);
2697 while (node) {
2698 next = ebpt_next(node);
2699 ebpt_delete(node);
2700 entry = container_of(node, struct h1_hdr_entry, node);
2701 free(entry->node.key);
2702 free(entry->name.ptr);
2703 free(entry);
2704 node = next;
2705 }
2706 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002707}
2708
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002709static int cfg_h1_headers_case_adjust_postparser()
2710{
2711 FILE *file = NULL;
2712 char *c, *key_beg, *key_end, *value_beg, *value_end;
2713 char *err;
2714 int rc, line = 0, err_code = 0;
2715
2716 if (!hdrs_map.name)
2717 goto end;
2718
2719 file = fopen(hdrs_map.name, "r");
2720 if (!file) {
2721 ha_alert("config : h1-outgoing-headers-case-adjust-file '%s': failed to open file.\n",
2722 hdrs_map.name);
2723 err_code |= ERR_ALERT | ERR_FATAL;
2724 goto end;
2725 }
2726
2727 /* now parse all lines. The file may contain only two header name per
2728 * line, separated by spaces. All heading and trailing spaces will be
2729 * ignored. Lines starting with a # are ignored.
2730 */
2731 while (fgets(trash.area, trash.size, file) != NULL) {
2732 line++;
2733 c = trash.area;
2734
2735 /* strip leading spaces and tabs */
2736 while (*c == ' ' || *c == '\t')
2737 c++;
2738
2739 /* ignore emptu lines, or lines beginning with a dash */
2740 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
2741 continue;
2742
2743 /* look for the end of the key */
2744 key_beg = c;
2745 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
2746 c++;
2747 key_end = c;
2748
2749 /* strip middle spaces and tabs */
2750 while (*c == ' ' || *c == '\t')
2751 c++;
2752
2753 /* look for the end of the value, it is the end of the line */
2754 value_beg = c;
2755 while (*c && *c != '\n' && *c != '\r')
2756 c++;
2757 value_end = c;
2758
2759 /* trim possibly trailing spaces and tabs */
2760 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
2761 value_end--;
2762
2763 /* set final \0 and check entries */
2764 *key_end = '\0';
2765 *value_end = '\0';
2766
2767 err = NULL;
2768 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
2769 if (rc < 0) {
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002770 ha_alert("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
2771 hdrs_map.name, err, line);
2772 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Faulet27f20172019-07-30 16:51:42 +02002773 free(err);
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002774 goto end;
2775 }
2776 if (rc > 0) {
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002777 ha_warning("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
2778 hdrs_map.name, err, line);
2779 err_code |= ERR_WARN;
Christopher Faulet27f20172019-07-30 16:51:42 +02002780 free(err);
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002781 }
2782 }
2783
2784 end:
2785 if (file)
2786 fclose(file);
2787 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
2788 return err_code;
2789}
2790
2791
2792/* config parser for global "h1-outgoing-header-case-adjust" */
2793static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
2794 struct proxy *defpx, const char *file, int line,
2795 char **err)
2796{
2797 if (too_many_args(2, args, err, NULL))
2798 return -1;
2799 if (!*(args[1]) || !*(args[2])) {
2800 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
2801 return -1;
2802 }
2803 return add_hdr_case_adjust(args[1], args[2], err);
2804}
2805
2806/* config parser for global "h1-outgoing-headers-case-adjust-file" */
2807static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
2808 struct proxy *defpx, const char *file, int line,
2809 char **err)
2810{
2811 if (too_many_args(1, args, err, NULL))
2812 return -1;
2813 if (!*(args[1])) {
2814 memprintf(err, "'%s' expects <file> as argument.", args[0]);
2815 return -1;
2816 }
2817 free(hdrs_map.name);
2818 hdrs_map.name = strdup(args[1]);
2819 return 0;
2820}
2821
2822
2823/* config keyword parsers */
2824static struct cfg_kw_list cfg_kws = {{ }, {
2825 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
2826 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
2827 { 0, NULL, NULL },
2828 }
2829};
2830
2831INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
2832REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
2833
2834
Christopher Faulet51dbc942018-09-13 09:05:15 +02002835/****************************************/
2836/* MUX initialization and instanciation */
2837/****************************************/
2838
2839/* The mux operations */
Willy Tarreauf77a1582019-01-10 10:00:08 +01002840static const struct mux_ops mux_h1_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002841 .init = h1_init,
2842 .wake = h1_wake,
2843 .attach = h1_attach,
2844 .get_first_cs = h1_get_first_cs,
Christopher Fauletfeb11742018-11-29 15:12:34 +01002845 .get_cs_info = h1_get_cs_info,
Christopher Faulet51dbc942018-09-13 09:05:15 +02002846 .detach = h1_detach,
2847 .destroy = h1_destroy,
2848 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01002849 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02002850 .rcv_buf = h1_rcv_buf,
2851 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02002852#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02002853 .rcv_pipe = h1_rcv_pipe,
2854 .snd_pipe = h1_snd_pipe,
2855#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02002856 .subscribe = h1_subscribe,
2857 .unsubscribe = h1_unsubscribe,
2858 .shutr = h1_shutr,
2859 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002860 .show_fd = h1_show_fd,
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002861 .reset = h1_reset,
Olivier Houchard198d1292019-10-25 16:19:26 +02002862 .ctl = h1_ctl,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02002863 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02002864 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02002865};
2866
2867
2868/* this mux registers default HTX proto */
2869static struct mux_proto_list mux_proto_htx =
2870{ .token = IST(""), .mode = PROTO_MODE_HTX, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
2871
Willy Tarreau0108d902018-11-25 19:14:37 +01002872INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_htx);
2873
Christopher Faulet51dbc942018-09-13 09:05:15 +02002874/*
2875 * Local variables:
2876 * c-indent-level: 8
2877 * c-basic-offset: 8
2878 * End:
2879 */