blob: a8686539975abb1a55f347e268f637436266898a [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
Willy Tarreau00f18a32019-01-26 12:19:01 +0100243
Christopher Faulet51dbc942018-09-13 09:05:15 +0200244/*****************************************************************/
245/* functions below are dedicated to the mux setup and management */
246/*****************************************************************/
Willy Tarreaufbdf90a2019-06-03 13:42:54 +0200247
248/* returns non-zero if there are input data pending for stream h1s. */
249static inline size_t h1s_data_pending(const struct h1s *h1s)
250{
251 const struct h1m *h1m;
252
253 h1m = conn_is_back(h1s->h1c->conn) ? &h1s->res : &h1s->req;
254 if (h1m->state == H1_MSG_DONE)
255 return 0; // data not for this stream (e.g. pipelining)
256
257 return b_data(&h1s->h1c->ibuf);
258}
259
Christopher Faulet47365272018-10-31 17:40:50 +0100260static struct conn_stream *h1s_new_cs(struct h1s *h1s)
261{
262 struct conn_stream *cs;
263
264 cs = cs_new(h1s->h1c->conn);
265 if (!cs)
266 goto err;
267 h1s->cs = cs;
268 cs->ctx = h1s;
269
270 if (h1s->flags & H1S_F_NOT_FIRST)
271 cs->flags |= CS_FL_NOT_FIRST;
272
Willy Tarreau7e9dd732020-01-17 16:19:34 +0100273 if (global.tune.options & GTUNE_USE_SPLICE)
274 cs->flags |= CS_FL_MAY_SPLICE;
275
Christopher Faulet47365272018-10-31 17:40:50 +0100276 if (stream_create_from_cs(cs) < 0)
277 goto err;
278 return cs;
279
280 err:
281 cs_free(cs);
282 h1s->cs = NULL;
283 return NULL;
284}
285
Olivier Houchardf502aca2018-12-14 19:42:40 +0100286static struct h1s *h1s_create(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200287{
288 struct h1s *h1s;
289
290 h1s = pool_alloc(pool_head_h1s);
291 if (!h1s)
Christopher Faulet47365272018-10-31 17:40:50 +0100292 goto fail;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200293
294 h1s->h1c = h1c;
295 h1c->h1s = h1s;
296
Olivier Houchardf502aca2018-12-14 19:42:40 +0100297 h1s->sess = sess;
298
Christopher Faulet51dbc942018-09-13 09:05:15 +0200299 h1s->cs = NULL;
Christopher Fauletb992af02019-03-28 15:42:24 +0100300 h1s->flags = H1S_F_WANT_KAL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200301
302 h1s->recv_wait = NULL;
303 h1s->send_wait = NULL;
Christopher Faulet129817b2018-09-20 16:14:40 +0200304
305 h1m_init_req(&h1s->req);
Christopher Fauletb992af02019-03-28 15:42:24 +0100306 h1s->req.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet9768c262018-10-22 09:34:31 +0200307
Christopher Faulet129817b2018-09-20 16:14:40 +0200308 h1m_init_res(&h1s->res);
Christopher Fauletb992af02019-03-28 15:42:24 +0100309 h1s->res.flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Faulet129817b2018-09-20 16:14:40 +0200310
311 h1s->status = 0;
312 h1s->meth = HTTP_METH_OTHER;
313
Christopher Faulet47365272018-10-31 17:40:50 +0100314 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
315 h1s->flags |= H1S_F_NOT_FIRST;
Christopher Faulete31a0f12019-12-05 10:23:37 +0100316 h1c->flags &= ~(H1C_F_CS_IDLE|H1C_F_WAIT_NEXT_REQ);
Christopher Faulet47365272018-10-31 17:40:50 +0100317
Christopher Faulet129817b2018-09-20 16:14:40 +0200318 if (!conn_is_back(h1c->conn)) {
319 if (h1c->px->options2 & PR_O2_REQBUG_OK)
320 h1s->req.err_pos = -1;
Christopher Faulete9b70722019-04-08 10:46:02 +0200321
322 /* For frontend connections we should always have a session */
323 if (!sess)
324 sess = h1c->conn->owner;
325
Dave Pirottecf67ec52019-07-10 13:57:38 +0000326 /* Timers for subsequent sessions on the same HTTP 1.x connection
327 * measure from `now`, not from the connection accept time */
328 if (h1s->flags & H1S_F_NOT_FIRST) {
329 h1s->csinfo.create_date = date;
330 h1s->csinfo.tv_create = now;
331 h1s->csinfo.t_handshake = 0;
332 h1s->csinfo.t_idle = -1;
333 }
334 else {
335 h1s->csinfo.create_date = sess->accept_date;
336 h1s->csinfo.tv_create = sess->tv_accept;
337 h1s->csinfo.t_handshake = sess->t_handshake;
338 h1s->csinfo.t_idle = -1;
339 }
Christopher Faulet129817b2018-09-20 16:14:40 +0200340 }
341 else {
342 if (h1c->px->options2 & PR_O2_RSPBUG_OK)
343 h1s->res.err_pos = -1;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200344
Christopher Fauletfeb11742018-11-29 15:12:34 +0100345 h1s->csinfo.create_date = date;
346 h1s->csinfo.tv_create = now;
347 h1s->csinfo.t_handshake = 0;
348 h1s->csinfo.t_idle = -1;
Christopher Faulete9b70722019-04-08 10:46:02 +0200349 }
Christopher Fauletfeb11742018-11-29 15:12:34 +0100350
Christopher Faulete9b70722019-04-08 10:46:02 +0200351 /* If a conn_stream already exists, attach it to this H1S. Otherwise we
352 * create a new one.
353 */
354 if (cs) {
Christopher Fauletf2824e62018-10-01 12:12:37 +0200355 cs->ctx = h1s;
356 h1s->cs = cs;
357 }
Christopher Faulet47365272018-10-31 17:40:50 +0100358 else {
359 cs = h1s_new_cs(h1s);
360 if (!cs)
361 goto fail;
362 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200363 return h1s;
Christopher Faulet47365272018-10-31 17:40:50 +0100364
365 fail:
366 pool_free(pool_head_h1s, h1s);
367 return NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200368}
369
370static void h1s_destroy(struct h1s *h1s)
371{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200372 if (h1s) {
373 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200374
Christopher Fauletf2824e62018-10-01 12:12:37 +0200375 h1c->h1s = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200376
Christopher Fauletf2824e62018-10-01 12:12:37 +0200377 if (h1s->recv_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100378 h1s->recv_wait->events &= ~SUB_RETRY_RECV;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200379 if (h1s->send_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100380 h1s->send_wait->events &= ~SUB_RETRY_SEND;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200381
Christopher Fauletcb55f482018-12-10 11:56:47 +0100382 h1c->flags &= ~H1C_F_IN_BUSY;
Christopher Faulet47365272018-10-31 17:40:50 +0100383 if (h1s->flags & (H1S_F_REQ_ERROR|H1S_F_RES_ERROR))
384 h1c->flags |= H1C_F_CS_ERROR;
Christopher Faulete31a0f12019-12-05 10:23:37 +0100385
386 if (!(h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTW_NOW|H1C_F_CS_SHUTDOWN)) && /* No error/shutdown on h1c */
387 !(h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH)) && /* No error/shutdown on conn */
388 (h1s->flags & H1S_F_WANT_KAL) && /* K/A possible */
389 h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) { /* req/res in DONE state */
390 h1c->flags |= (H1C_F_CS_IDLE|H1C_F_WAIT_NEXT_REQ);
391 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200392 pool_free(pool_head_h1s, h1s);
393 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200394}
395
Christopher Fauletfeb11742018-11-29 15:12:34 +0100396static const struct cs_info *h1_get_cs_info(struct conn_stream *cs)
397{
398 struct h1s *h1s = cs->ctx;
399
400 if (h1s && !conn_is_back(cs->conn))
401 return &h1s->csinfo;
402 return NULL;
403}
404
Christopher Faulet51dbc942018-09-13 09:05:15 +0200405/*
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200406 * Initialize the mux once it's attached. It is expected that conn->ctx points
407 * to the existing conn_stream (for outgoing connections or for incoming onces
408 * during a mux upgrade) or NULL (for incoming ones during the connexion
409 * establishment). <input> is always used as Input buffer and may contain
410 * data. It is the caller responsibility to not reuse it anymore. Returns < 0 on
411 * error.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200412 */
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200413static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess,
414 struct buffer *input)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200415{
Christopher Faulet51dbc942018-09-13 09:05:15 +0200416 struct h1c *h1c;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100417 struct task *t = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200418
419 h1c = pool_alloc(pool_head_h1c);
420 if (!h1c)
421 goto fail_h1c;
422 h1c->conn = conn;
423 h1c->px = proxy;
424
Christopher Faulete31a0f12019-12-05 10:23:37 +0100425 h1c->flags = H1C_F_CS_IDLE;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200426 h1c->ibuf = *input;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200427 h1c->obuf = BUF_NULL;
428 h1c->h1s = NULL;
Christopher Faulet51f73eb2019-04-08 11:22:47 +0200429 h1c->task = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200430
Christopher Faulet51dbc942018-09-13 09:05:15 +0200431 LIST_INIT(&h1c->buf_wait.list);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200432 h1c->wait_event.tasklet = tasklet_new();
433 if (!h1c->wait_event.tasklet)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200434 goto fail;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200435 h1c->wait_event.tasklet->process = h1_io_cb;
436 h1c->wait_event.tasklet->context = h1c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100437 h1c->wait_event.events = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200438
Christopher Faulete9b70722019-04-08 10:46:02 +0200439 if (conn_is_back(conn)) {
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100440 h1c->shut_timeout = h1c->timeout = proxy->timeout.server;
441 if (tick_isset(proxy->timeout.serverfin))
442 h1c->shut_timeout = proxy->timeout.serverfin;
443 } else {
444 h1c->shut_timeout = h1c->timeout = proxy->timeout.client;
445 if (tick_isset(proxy->timeout.clientfin))
446 h1c->shut_timeout = proxy->timeout.clientfin;
447 }
448 if (tick_isset(h1c->timeout)) {
449 t = task_new(tid_bit);
450 if (!t)
451 goto fail;
452
453 h1c->task = t;
454 t->process = h1_timeout_task;
455 t->context = h1c;
456 t->expire = tick_add(now_ms, h1c->timeout);
457 }
458
Olivier Houchard985234d2019-06-13 17:54:33 +0200459 if (!(conn->flags & CO_FL_CONNECTED) || (conn->flags & CO_FL_HANDSHAKE))
Christopher Faulet3b88b8d2018-10-26 17:36:03 +0200460 h1c->flags |= H1C_F_CS_WAIT_CONN;
461
Christopher Fauletf2824e62018-10-01 12:12:37 +0200462 /* Always Create a new H1S */
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100463 if (!h1s_create(h1c, conn->ctx, sess))
Christopher Fauletf2824e62018-10-01 12:12:37 +0200464 goto fail;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200465
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100466 conn->ctx = h1c;
Christopher Faulet129817b2018-09-20 16:14:40 +0200467
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100468
469 if (t)
470 task_queue(t);
471
Christopher Faulet51dbc942018-09-13 09:05:15 +0200472 /* Try to read, if nothing is available yet we'll just subscribe */
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200473 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200474
475 /* mux->wake will be called soon to complete the operation */
476 return 0;
477
478 fail:
Willy Tarreauf6562792019-05-07 19:05:35 +0200479 task_destroy(t);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200480 if (h1c->wait_event.tasklet)
481 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200482 pool_free(pool_head_h1c, h1c);
483 fail_h1c:
484 return -1;
485}
486
Christopher Faulet73c12072019-04-08 11:23:22 +0200487/* release function. This one should be called to free all resources allocated
488 * to the mux.
Christopher Faulet51dbc942018-09-13 09:05:15 +0200489 */
Christopher Faulet73c12072019-04-08 11:23:22 +0200490static void h1_release(struct h1c *h1c)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200491{
Christopher Faulet61840e72019-04-15 09:33:32 +0200492 struct connection *conn = NULL;
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200493
Christopher Faulet51dbc942018-09-13 09:05:15 +0200494 if (h1c) {
Christopher Faulet61840e72019-04-15 09:33:32 +0200495 /* The connection must be aattached to this mux to be released */
496 if (h1c->conn && h1c->conn->ctx == h1c)
497 conn = h1c->conn;
498
499 if (conn && h1c->flags & H1C_F_UPG_H2C) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200500 h1c->flags &= ~H1C_F_UPG_H2C;
Olivier Houchard13f556e2019-07-03 13:08:18 +0200501 /* Make sure we're no longer subscribed to anything */
502 if (h1c->wait_event.events)
503 conn->xprt->unsubscribe(conn, conn->xprt_ctx,
504 h1c->wait_event.events, &h1c->wait_event);
Olivier Houchard45c44372019-06-11 14:06:23 +0200505 if (conn_upgrade_mux_fe(conn, NULL, &h1c->ibuf, ist("h2"), PROTO_MODE_HTX) != -1) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200506 /* connection successfully upgraded to H2, this
507 * mux was already released */
508 return;
509 }
510 sess_log(conn->owner); /* Log if the upgrade failed */
511 }
512
Olivier Houchard45c44372019-06-11 14:06:23 +0200513
Christopher Faulet51dbc942018-09-13 09:05:15 +0200514 if (!LIST_ISEMPTY(&h1c->buf_wait.list)) {
515 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
516 LIST_DEL(&h1c->buf_wait.list);
517 LIST_INIT(&h1c->buf_wait.list);
518 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
519 }
520
521 h1_release_buf(h1c, &h1c->ibuf);
522 h1_release_buf(h1c, &h1c->obuf);
523
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100524 if (h1c->task) {
525 h1c->task->context = NULL;
526 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
527 h1c->task = NULL;
528 }
529
Willy Tarreau3c39a7d2019-06-14 14:42:29 +0200530 if (h1c->wait_event.tasklet)
531 tasklet_free(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200532
Christopher Fauletf2824e62018-10-01 12:12:37 +0200533 h1s_destroy(h1c->h1s);
Olivier Houchard0e079372019-04-15 17:51:16 +0200534 if (conn && h1c->wait_event.events != 0)
Olivier Houcharde179d0e2019-03-21 18:27:17 +0100535 conn->xprt->unsubscribe(conn, conn->xprt_ctx, h1c->wait_event.events,
Olivier Houchard0e079372019-04-15 17:51:16 +0200536 &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200537 pool_free(pool_head_h1c, h1c);
538 }
539
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200540 if (conn) {
541 conn->mux = NULL;
542 conn->ctx = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200543
Christopher Faulet39a96ee2019-04-08 10:52:21 +0200544 conn_stop_tracking(conn);
545 conn_full_close(conn);
546 if (conn->destroy_cb)
547 conn->destroy_cb(conn);
548 conn_free(conn);
549 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200550}
551
552/******************************************************/
553/* functions below are for the H1 protocol processing */
554/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +0200555/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
556 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +0200557 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100558static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200559{
Christopher Faulet570d1612018-11-26 11:13:57 +0100560 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +0200561
Christopher Faulet570d1612018-11-26 11:13:57 +0100562 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200563 (*(p + 5) > '1' ||
564 (*(p + 5) == '1' && *(p + 7) >= '1')))
565 h1m->flags |= H1_MF_VER_11;
566}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200567
Christopher Faulet9768c262018-10-22 09:34:31 +0200568/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
569 * greater or equal to 1.1
570 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100571static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +0200572{
Christopher Faulet570d1612018-11-26 11:13:57 +0100573 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200574
Christopher Faulet570d1612018-11-26 11:13:57 +0100575 if ((HTX_SL_RES_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200576 (*(p + 5) > '1' ||
577 (*(p + 5) == '1' && *(p + 7) >= '1')))
578 h1m->flags |= H1_MF_VER_11;
579}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200580
Christopher Faulet9768c262018-10-22 09:34:31 +0200581/*
582 * Check the validity of the request version. If the version is valid, it
583 * returns 1. Otherwise, it returns 0.
584 */
585static int h1_process_req_vsn(struct h1s *h1s, struct h1m *h1m, union h1_sl sl)
586{
587 struct h1c *h1c = h1s->h1c;
588
589 /* RFC7230#2.6 has enforced the format of the HTTP version string to be
590 * exactly one digit "." one digit. This check may be disabled using
591 * option accept-invalid-http-request.
592 */
593 if (!(h1c->px->options2 & PR_O2_REQBUG_OK)) {
594 if (sl.rq.v.len != 8)
595 return 0;
596
597 if (*(sl.rq.v.ptr + 4) != '/' ||
598 !isdigit((unsigned char)*(sl.rq.v.ptr + 5)) ||
599 *(sl.rq.v.ptr + 6) != '.' ||
600 !isdigit((unsigned char)*(sl.rq.v.ptr + 7)))
601 return 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200602 }
Christopher Faulet9768c262018-10-22 09:34:31 +0200603 else if (!sl.rq.v.len) {
604 /* try to convert HTTP/0.9 requests to HTTP/1.0 */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200605
Christopher Faulet9768c262018-10-22 09:34:31 +0200606 /* RFC 1945 allows only GET for HTTP/0.9 requests */
607 if (sl.rq.meth != HTTP_METH_GET)
608 return 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200609
Christopher Faulet9768c262018-10-22 09:34:31 +0200610 /* HTTP/0.9 requests *must* have a request URI, per RFC 1945 */
611 if (!sl.rq.u.len)
612 return 0;
613
614 /* Add HTTP version */
615 sl.rq.v = ist("HTTP/1.0");
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100616 return 1;
Christopher Faulet9768c262018-10-22 09:34:31 +0200617 }
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100618
619 if ((sl.rq.v.len == 8) &&
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100620 ((*(sl.rq.v.ptr + 5) > '1') ||
621 ((*(sl.rq.v.ptr + 5) == '1') && (*(sl.rq.v.ptr + 7) >= '1'))))
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100622 h1m->flags |= H1_MF_VER_11;
Christopher Faulet9768c262018-10-22 09:34:31 +0200623 return 1;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200624}
625
Christopher Faulet9768c262018-10-22 09:34:31 +0200626/*
627 * Check the validity of the response version. If the version is valid, it
628 * returns 1. Otherwise, it returns 0.
Christopher Fauletf2824e62018-10-01 12:12:37 +0200629 */
Christopher Faulet9768c262018-10-22 09:34:31 +0200630static int h1_process_res_vsn(struct h1s *h1s, struct h1m *h1m, union h1_sl sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200631{
Christopher Faulet9768c262018-10-22 09:34:31 +0200632 struct h1c *h1c = h1s->h1c;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200633
Christopher Faulet9768c262018-10-22 09:34:31 +0200634 /* RFC7230#2.6 has enforced the format of the HTTP version string to be
635 * exactly one digit "." one digit. This check may be disabled using
636 * option accept-invalid-http-request.
637 */
638 if (!(h1c->px->options2 & PR_O2_RSPBUG_OK)) {
639 if (sl.st.v.len != 8)
640 return 0;
641
642 if (*(sl.st.v.ptr + 4) != '/' ||
643 !isdigit((unsigned char)*(sl.st.v.ptr + 5)) ||
644 *(sl.st.v.ptr + 6) != '.' ||
645 !isdigit((unsigned char)*(sl.st.v.ptr + 7)))
646 return 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200647 }
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100648
649 if ((sl.st.v.len == 8) &&
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100650 ((*(sl.st.v.ptr + 5) > '1') ||
651 ((*(sl.st.v.ptr + 5) == '1') && (*(sl.st.v.ptr + 7) >= '1'))))
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100652 h1m->flags |= H1_MF_VER_11;
653
Christopher Faulet9768c262018-10-22 09:34:31 +0200654 return 1;
655}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200656
657/* Deduce the connection mode of the client connection, depending on the
658 * configuration and the H1 message flags. This function is called twice, the
659 * first time when the request is parsed and the second time when the response
660 * is parsed.
661 */
662static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
663{
664 struct proxy *fe = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200665
666 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100667 /* Output direction: second pass */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200668 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) ||
Christopher Fauletb992af02019-03-28 15:42:24 +0100669 h1s->status == 101) {
670 /* Either we've established an explicit tunnel, or we're
671 * switching the protocol. In both cases, we're very unlikely to
672 * understand the next protocols. We have to switch to tunnel
673 * mode, so that we transfer the request and responses then let
674 * this protocol pass unmodified. When we later implement
675 * specific parsers for such protocols, we'll want to check the
676 * Upgrade header which contains information about that protocol
677 * for responses with status 101 (eg: see RFC2817 about TLS).
678 */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200679 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Fauletb992af02019-03-28 15:42:24 +0100680 }
681 else if (h1s->flags & H1S_F_WANT_KAL) {
682 /* By default the client is in KAL mode. CLOSE mode mean
683 * it is imposed by the client itself. So only change
684 * KAL mode here. */
685 if (!(h1m->flags & H1_MF_XFER_LEN) || (h1m->flags & H1_MF_CONN_CLO)) {
686 /* no length known or explicit close => close */
687 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
688 }
689 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
690 (fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO) {
691 /* no explict keep-alive and option httpclose => close */
692 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
693 }
694 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200695 }
696 else {
Christopher Fauletb992af02019-03-28 15:42:24 +0100697 /* Input direction: first pass */
698 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || h1m->flags & H1_MF_CONN_CLO) {
699 /* no explicit keep-alive in HTTP/1.0 or explicit close => close*/
Christopher Fauletf2824e62018-10-01 12:12:37 +0200700 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Fauletb992af02019-03-28 15:42:24 +0100701 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200702 }
703
704 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */
705 if (h1s->flags & H1S_F_WANT_KAL && fe->state == PR_STSTOPPED)
706 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
707}
708
709/* Deduce the connection mode of the client connection, depending on the
710 * configuration and the H1 message flags. This function is called twice, the
711 * first time when the request is parsed and the second time when the response
712 * is parsed.
713 */
714static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
715{
Olivier Houchardf502aca2018-12-14 19:42:40 +0100716 struct session *sess = h1s->sess;
Christopher Fauletb992af02019-03-28 15:42:24 +0100717 struct proxy *be = h1s->h1c->px;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100718 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200719
Christopher Fauletf2824e62018-10-01 12:12:37 +0200720 if (h1m->flags & H1_MF_RESP) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100721 /* Input direction: second pass */
722
Christopher Fauletf2824e62018-10-01 12:12:37 +0200723 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) ||
Christopher Fauletb992af02019-03-28 15:42:24 +0100724 h1s->status == 101) {
725 /* Either we've established an explicit tunnel, or we're
726 * switching the protocol. In both cases, we're very unlikely to
727 * understand the next protocols. We have to switch to tunnel
728 * mode, so that we transfer the request and responses then let
729 * this protocol pass unmodified. When we later implement
730 * specific parsers for such protocols, we'll want to check the
731 * Upgrade header which contains information about that protocol
732 * for responses with status 101 (eg: see RFC2817 about TLS).
733 */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200734 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Fauletb992af02019-03-28 15:42:24 +0100735 }
736 else if (h1s->flags & H1S_F_WANT_KAL) {
737 /* By default the server is in KAL mode. CLOSE mode mean
738 * it is imposed by haproxy itself. So only change KAL
739 * mode here. */
740 if (!(h1m->flags & H1_MF_XFER_LEN) || h1m->flags & H1_MF_CONN_CLO ||
741 !(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))){
742 /* no length known or explicit close or no explicit keep-alive in HTTP/1.0 => close */
743 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
744 }
745 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200746 }
Christopher Faulet70033782018-12-05 13:50:11 +0100747 else {
Christopher Fauletb992af02019-03-28 15:42:24 +0100748 /* Output direction: first pass */
749 if (h1m->flags & H1_MF_CONN_CLO) {
750 /* explicit close => close */
Christopher Faulet70033782018-12-05 13:50:11 +0100751 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Fauletb992af02019-03-28 15:42:24 +0100752 }
753 else if (!(h1m->flags & H1_MF_CONN_KAL) &&
754 ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
755 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
756 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
757 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)) {
758 /* no explicit keep-alive option httpclose/server-close => close */
759 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
760 }
Christopher Faulet70033782018-12-05 13:50:11 +0100761 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200762
763 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
764 if (h1s->flags & H1S_F_WANT_KAL && be->state == PR_STSTOPPED)
765 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200766}
767
Christopher Fauletb992af02019-03-28 15:42:24 +0100768static void h1_update_req_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200769{
770 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200771
772 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
773 * token is found
774 */
775 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +0200776 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200777
778 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100779 if (!(h1m->flags & H1_MF_VER_11))
780 *conn_val = ist("keep-alive");
Christopher Fauletf2824e62018-10-01 12:12:37 +0200781 }
782 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Fauletb992af02019-03-28 15:42:24 +0100783 if (h1m->flags & H1_MF_VER_11)
784 *conn_val = ist("close");
Christopher Fauletf2824e62018-10-01 12:12:37 +0200785 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200786}
787
Christopher Fauletb992af02019-03-28 15:42:24 +0100788static void h1_update_res_conn_value(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200789{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200790 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
791 * token is found
792 */
793 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +0200794 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200795
796 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Fauletb992af02019-03-28 15:42:24 +0100797 if (!(h1m->flags & H1_MF_VER_11) ||
798 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11))
799 *conn_val = ist("keep-alive");
Christopher Fauletf2824e62018-10-01 12:12:37 +0200800 }
801 else { /* H1S_F_WANT_CLO */
Christopher Fauletb992af02019-03-28 15:42:24 +0100802 if (h1m->flags & H1_MF_VER_11)
803 *conn_val = ist("close");
Christopher Fauletf2824e62018-10-01 12:12:37 +0200804 }
Christopher Faulet9768c262018-10-22 09:34:31 +0200805}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200806
Christopher Fauletb992af02019-03-28 15:42:24 +0100807static void h1_process_input_conn_mode(struct h1s *h1s, struct h1m *h1m, struct htx *htx)
Christopher Faulet9768c262018-10-22 09:34:31 +0200808{
Christopher Fauletb992af02019-03-28 15:42:24 +0100809 if (!conn_is_back(h1s->h1c->conn))
Christopher Faulet9768c262018-10-22 09:34:31 +0200810 h1_set_cli_conn_mode(h1s, h1m);
Christopher Fauletb992af02019-03-28 15:42:24 +0100811 else
Christopher Faulet9768c262018-10-22 09:34:31 +0200812 h1_set_srv_conn_mode(h1s, h1m);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200813}
814
Christopher Fauletb992af02019-03-28 15:42:24 +0100815static void h1_process_output_conn_mode(struct h1s *h1s, struct h1m *h1m, struct ist *conn_val)
816{
817 if (!conn_is_back(h1s->h1c->conn))
818 h1_set_cli_conn_mode(h1s, h1m);
819 else
820 h1_set_srv_conn_mode(h1s, h1m);
821
822 if (!(h1m->flags & H1_MF_RESP))
823 h1_update_req_conn_value(h1s, h1m, conn_val);
824 else
825 h1_update_res_conn_value(h1s, h1m, conn_val);
826}
Christopher Faulete44769b2018-11-29 23:01:45 +0100827
Christopher Fauleta99ff4d2019-07-22 16:18:24 +0200828/* Try to adjust the case of the message header name using the global map
829 * <hdrs_map>.
830 */
831static void h1_adjust_case_outgoing_hdr(struct h1s *h1s, struct h1m *h1m, struct ist *name)
832{
833 struct ebpt_node *node;
834 struct h1_hdr_entry *entry;
835
836 /* No entry in the map, do nothing */
837 if (eb_is_empty(&hdrs_map.map))
838 return;
839
840 /* No conversion fo the request headers */
841 if (!(h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGSRV))
842 return;
843
844 /* No conversion fo the response headers */
845 if ((h1m->flags & H1_MF_RESP) && !(h1s->h1c->px->options2 & PR_O2_H1_ADJ_BUGCLI))
846 return;
847
848 node = ebis_lookup_len(&hdrs_map.map, name->ptr, name->len);
849 if (!node)
850 return;
851 entry = container_of(node, struct h1_hdr_entry, node);
852 name->ptr = entry->name.ptr;
853 name->len = entry->name.len;
854}
855
Christopher Faulete44769b2018-11-29 23:01:45 +0100856/* Append the description of what is present in error snapshot <es> into <out>.
857 * The description must be small enough to always fit in a buffer. The output
858 * buffer may be the trash so the trash must not be used inside this function.
859 */
860static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
861{
862 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100863 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
864 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
865 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
866 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
867 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
868 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +0100869}
870/*
871 * Capture a bad request or response and archive it in the proxy's structure.
872 * By default it tries to report the error position as h1m->err_pos. However if
873 * this one is not set, it will then report h1m->next, which is the last known
874 * parsing point. The function is able to deal with wrapping buffers. It always
875 * displays buffers as a contiguous area starting at buf->p. The direction is
876 * determined thanks to the h1m's flags.
877 */
878static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
879 struct h1m *h1m, struct buffer *buf)
880{
881 struct session *sess = h1c->conn->owner;
882 struct proxy *proxy = h1c->px;
883 struct proxy *other_end = sess->fe;
884 union error_snapshot_ctx ctx;
885
Willy Tarreau598d7fc2018-12-18 18:10:38 +0100886 if (h1s->cs->data && !(h1m->flags & H1_MF_RESP))
Christopher Faulete44769b2018-11-29 23:01:45 +0100887 other_end = si_strm(h1s->cs->data)->be;
888
889 /* http-specific part now */
890 ctx.h1.state = h1m->state;
891 ctx.h1.c_flags = h1c->flags;
892 ctx.h1.s_flags = h1s->flags;
893 ctx.h1.m_flags = h1m->flags;
894 ctx.h1.m_clen = h1m->curr_len;
895 ctx.h1.m_blen = h1m->body_len;
896
897 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
898 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100899 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
900 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +0100901}
902
Christopher Fauletadb22202018-12-12 10:32:09 +0100903/* Emit the chunksize followed by a CRLF in front of data of the buffer
904 * <buf>. It goes backwards and starts with the byte before the buffer's
905 * head. The caller is responsible for ensuring there is enough room left before
906 * the buffer's head for the string.
907 */
908static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
909{
910 char *beg, *end;
911
912 beg = end = b_head(buf);
913 *--beg = '\n';
914 *--beg = '\r';
915 do {
916 *--beg = hextab[chksz & 0xF];
917 } while (chksz >>= 4);
918 buf->head -= (end - beg);
919 b_add(buf, end - beg);
920}
921
922/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
923 * ensuring there is enough room left in the buffer for the string. */
924static void h1_emit_chunk_crlf(struct buffer *buf)
925{
926 *(b_peek(buf, b_data(buf))) = '\r';
927 *(b_peek(buf, b_data(buf) + 1)) = '\n';
928 b_add(buf, 2);
929}
930
Christopher Faulet129817b2018-09-20 16:14:40 +0200931/*
Christopher Fauletc62c2b92019-03-28 11:41:39 +0100932 * Switch the request to tunnel mode. This function must only be called for
Christopher Fauletac4778c2019-11-15 11:14:23 +0100933 * CONNECT requests. On the client side, if the response is not finished, the
934 * mux is mark as busy on input.
Christopher Fauletc62c2b92019-03-28 11:41:39 +0100935 */
936static void h1_set_req_tunnel_mode(struct h1s *h1s)
937{
938 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
939 h1s->req.state = H1_MSG_TUNNEL;
Christopher Fauletac4778c2019-11-15 11:14:23 +0100940 if (!conn_is_back(h1s->h1c->conn) && h1s->res.state < H1_MSG_DONE)
Christopher Fauletc62c2b92019-03-28 11:41:39 +0100941 h1s->h1c->flags |= H1C_F_IN_BUSY;
Christopher Fauletac4778c2019-11-15 11:14:23 +0100942 else if (h1s->h1c->flags & H1C_F_IN_BUSY) {
943 h1s->h1c->flags &= ~H1C_F_IN_BUSY;
944 tasklet_wakeup(h1s->h1c->wait_event.tasklet);
945 }
Christopher Fauletc62c2b92019-03-28 11:41:39 +0100946}
947
948/*
949 * Switch the response to tunnel mode. This function must only be called on
Christopher Fauletac4778c2019-11-15 11:14:23 +0100950 * successfull replies to CONNECT requests or on protocol switching. In this
951 * last case, this function takes care to switch the request to tunnel mode if
952 * possible. On the server side, if the request is not finished, the mux is mark
953 * as busy on input.
Christopher Fauletc62c2b92019-03-28 11:41:39 +0100954 */
955static void h1_set_res_tunnel_mode(struct h1s *h1s)
956{
Christopher Fauletac4778c2019-11-15 11:14:23 +0100957 /* On protocol switching, switch the request to tunnel mode if it is in
958 * DONE state. Otherwise we will wait the end of the request to switch
959 * it in tunnel mode.
960 */
961 if (h1s->status == 101 && h1s->req.state == H1_MSG_DONE) {
962 h1s->req.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
963 h1s->req.state = H1_MSG_TUNNEL;
964 }
965
Christopher Fauletc62c2b92019-03-28 11:41:39 +0100966 h1s->res.flags &= ~(H1_MF_XFER_LEN|H1_MF_CLEN|H1_MF_CHNK);
967 h1s->res.state = H1_MSG_TUNNEL;
968 if (conn_is_back(h1s->h1c->conn) && h1s->req.state < H1_MSG_DONE)
969 h1s->h1c->flags |= H1C_F_IN_BUSY;
Christopher Fauletac4778c2019-11-15 11:14:23 +0100970 else if (h1s->h1c->flags & H1C_F_IN_BUSY) {
971 h1s->h1c->flags &= ~H1C_F_IN_BUSY;
972 tasklet_wakeup(h1s->h1c->wait_event.tasklet);
Christopher Fauletc62c2b92019-03-28 11:41:39 +0100973 }
974}
975
Christopher Faulet82f01602019-05-24 16:50:16 +0200976/* Estimate the size of the HTX headers after the parsing, including the EOH. */
977static size_t h1_eval_htx_hdrs_size(struct http_hdr *hdrs)
978{
979 size_t sz = 0;
980 int i;
981
982 for (i = 0; hdrs[i].n.len; i++)
983 sz += sizeof(struct htx_blk) + hdrs[i].n.len + hdrs[i].v.len;
984 sz += sizeof(struct htx_blk) + 1;
985 return sz;
986}
987
Christopher Faulet30db3d72019-05-17 15:35:33 +0200988/* Estimate the size of the HTX request after the parsing. */
989static size_t h1_eval_htx_req_size(struct h1m *h1m, union h1_sl *h1sl, struct http_hdr *hdrs)
990{
991 size_t sz;
Christopher Faulet30db3d72019-05-17 15:35:33 +0200992
993 /* size of the HTX start-line */
Christopher Faulet1d76cef2019-09-03 16:16:50 +0200994 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 +0200995 sz += h1_eval_htx_hdrs_size(hdrs);
Christopher Faulet30db3d72019-05-17 15:35:33 +0200996 return sz;
997}
998
999/* Estimate the size of the HTX response after the parsing. */
1000static size_t h1_eval_htx_res_size(struct h1m *h1m, union h1_sl *h1sl, struct http_hdr *hdrs)
1001{
1002 size_t sz;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001003
1004 /* size of the HTX start-line */
Christopher Faulet1d76cef2019-09-03 16:16:50 +02001005 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 +02001006 sz += h1_eval_htx_hdrs_size(hdrs);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001007 return sz;
1008}
1009
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001010/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001011 * Add the EOM in the HTX message and switch the message to the DONE state. It
1012 * returns the number of bytes parsed if > 0, or 0 if iet couldn't proceed. This
1013 * functions is responsible to update the parser state <h1m>. It also add the
1014 * flag CS_FL_EOI on the CS.
1015 */
1016static size_t h1_process_eom(struct h1s *h1s, struct h1m *h1m, struct htx *htx, size_t max)
1017{
Willy Tarreau62038152019-08-23 09:29:29 +02001018 if (max < sizeof(struct htx_blk) + 1 || !htx_add_endof(htx, HTX_BLK_EOM)) {
1019 h1s->flags |= H1S_F_APPEND_EOM;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001020 return 0;
Willy Tarreau62038152019-08-23 09:29:29 +02001021 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001022
Willy Tarreau62038152019-08-23 09:29:29 +02001023 h1s->flags &= ~H1S_F_APPEND_EOM;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001024 h1m->state = H1_MSG_DONE;
1025 h1s->cs->flags |= CS_FL_EOI;
1026 return (sizeof(struct htx_blk) + 1);
1027}
1028
1029/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001030 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +02001031 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1032 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
Joseph Herlant30bc5092018-11-25 10:52:20 -08001033 * responsible to update the parser state <h1m>.
Christopher Faulet129817b2018-09-20 16:14:40 +02001034 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001035static size_t h1_process_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
Christopher Fauletf2824e62018-10-01 12:12:37 +02001036 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +02001037{
Christopher Fauleta39d8ad2019-05-15 15:54:39 +02001038 struct htx_sl *sl;
Christopher Faulete4ab11b2019-06-11 15:05:37 +02001039 struct http_hdr hdrs[global.tune.max_http_hdr];
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001040 union h1_sl h1sl;
1041 unsigned int flags = HTX_SL_F_NONE;
Christopher Fauleta39d8ad2019-05-15 15:54:39 +02001042 size_t used;
Christopher Faulet129817b2018-09-20 16:14:40 +02001043 int ret = 0;
1044
Christopher Faulet30db3d72019-05-17 15:35:33 +02001045 if (!max || !b_data(buf))
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001046 goto end;
1047
Christopher Faulet129817b2018-09-20 16:14:40 +02001048 /* Realing input buffer if necessary */
1049 if (b_head(buf) + b_data(buf) > b_wrap(buf))
1050 b_slow_realign(buf, trash.area, 0);
1051
Christopher Faulet842f41f2019-09-25 09:10:46 +02001052 if (!(h1s->flags & H1S_F_NOT_FIRST) && !(h1m->flags & H1_MF_RESP)) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001053 /* Try to match H2 preface before parsing the request headers. */
1054 ret = b_isteq(buf, 0, b_data(buf), ist(H2_CONN_PREFACE));
1055 if (ret > 0)
1056 goto h2c_upgrade;
1057 }
1058
Christopher Faulet30db3d72019-05-17 15:35:33 +02001059 ret = h1_headers_to_hdr_list(b_peek(buf, *ofs), b_tail(buf),
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001060 hdrs, sizeof(hdrs)/sizeof(hdrs[0]), h1m, &h1sl);
Christopher Faulet129817b2018-09-20 16:14:40 +02001061 if (ret <= 0) {
Willy Tarreau9a408ab2019-08-23 08:11:36 +02001062 /* Incomplete or invalid message. If the input buffer only
1063 * contains headers and is full, which is detected by it being
1064 * full and the offset to be zero, it's an error because
1065 * headers are too large to be handled by the parser. */
1066 if (ret < 0 || (!ret && !*ofs && !buf_room_for_htx_data(buf)))
Christopher Fauletf2824e62018-10-01 12:12:37 +02001067 goto error;
Christopher Faulet129817b2018-09-20 16:14:40 +02001068 goto end;
1069 }
1070
Christopher Fauletb4bad502019-10-11 14:22:00 +02001071 if (h1m->err_pos >= 0) {
1072 /* Maybe we found an error during the parsing while we were
1073 * configured not to block on that, so we have to capture it
1074 * now.
1075 */
1076 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1077 }
1078
Christopher Faulet129817b2018-09-20 16:14:40 +02001079 /* messages headers fully parsed, do some checks to prepare the body
1080 * parsing.
1081 */
1082
Christopher Faulet9768c262018-10-22 09:34:31 +02001083 /* Save the request's method or the response's status, check if the body
1084 * length is known and check the VSN validity */
Christopher Faulet129817b2018-09-20 16:14:40 +02001085 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001086 h1s->meth = h1sl.rq.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001087
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001088 /* By default, request have always a known length */
Christopher Faulet129817b2018-09-20 16:14:40 +02001089 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001090
1091 if (h1s->meth == HTTP_METH_CONNECT) {
1092 /* Switch CONNECT requests to tunnel mode */
1093 h1_set_req_tunnel_mode(h1s);
1094 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001095
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001096 if (!h1_process_req_vsn(h1s, h1m, h1sl)) {
1097 h1m->err_pos = h1sl.rq.v.ptr - b_head(buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001098 h1m->err_state = h1m->state;
1099 goto vsn_error;
1100 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001101 }
1102 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001103 h1s->status = h1sl.st.status;
Christopher Faulet129817b2018-09-20 16:14:40 +02001104
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001105 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) ||
1106 h1s->status == 101) {
1107 /* Switch successfull replies to CONNECT requests and
1108 * protocol switching to tunnel mode. */
1109 h1_set_res_tunnel_mode(h1s);
1110 }
1111 else if ((h1s->meth == HTTP_METH_HEAD) ||
1112 (h1s->status >= 100 && h1s->status < 200) ||
1113 (h1s->status == 204) || (h1s->status == 304)) {
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001114 /* Responses known to have no body. */
Christopher Faulet129817b2018-09-20 16:14:40 +02001115 h1m->flags &= ~(H1_MF_CLEN|H1_MF_CHNK);
1116 h1m->flags |= H1_MF_XFER_LEN;
1117 h1m->curr_len = h1m->body_len = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001118 }
1119 else if (h1m->flags & (H1_MF_CLEN|H1_MF_CHNK)) {
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001120 /* Responses with a known body length. */
Christopher Faulet129817b2018-09-20 16:14:40 +02001121 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet129817b2018-09-20 16:14:40 +02001122 }
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001123 else {
1124 /* Responses with an unknown body length */
Christopher Faulet129817b2018-09-20 16:14:40 +02001125 h1m->state = H1_MSG_TUNNEL;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001126 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001127
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001128 if (!h1_process_res_vsn(h1s, h1m, h1sl)) {
1129 h1m->err_pos = h1sl.st.v.ptr - b_head(buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001130 h1m->err_state = h1m->state;
1131 goto vsn_error;
1132 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001133 }
1134
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001135 /* Set HTX start-line flags */
1136 if (h1m->flags & H1_MF_VER_11)
1137 flags |= HTX_SL_F_VER_11;
1138 if (h1m->flags & H1_MF_XFER_ENC)
1139 flags |= HTX_SL_F_XFER_ENC;
1140 if (h1m->flags & H1_MF_XFER_LEN) {
1141 flags |= HTX_SL_F_XFER_LEN;
1142 if (h1m->flags & H1_MF_CHNK)
1143 flags |= HTX_SL_F_CHNK;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001144 else if (h1m->flags & H1_MF_CLEN) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001145 flags |= HTX_SL_F_CLEN;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001146 if (h1m->body_len == 0)
1147 flags |= HTX_SL_F_BODYLESS;
1148 }
1149 else
Christopher Fauletb2db4fa2018-11-27 16:51:09 +01001150 flags |= HTX_SL_F_BODYLESS;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001151 }
1152
Christopher Fauleta39d8ad2019-05-15 15:54:39 +02001153 used = htx_used_space(htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001154 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001155 if (h1_eval_htx_req_size(h1m, &h1sl, hdrs) > max) {
1156 if (htx_is_empty(htx))
1157 goto error;
1158 h1m_init_req(h1m);
1159 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
1160 ret = 0;
1161 goto end;
1162 }
Christopher Faulet30db3d72019-05-17 15:35:33 +02001163
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001164 sl = htx_add_stline(htx, HTX_BLK_REQ_SL, flags, h1sl.rq.m, h1sl.rq.u, h1sl.rq.v);
1165 if (!sl || !htx_add_all_headers(htx, hdrs))
Christopher Faulet9768c262018-10-22 09:34:31 +02001166 goto error;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001167 sl->info.req.meth = h1s->meth;
Christopher Faulet42993a82019-06-14 10:31:25 +02001168
1169 /* Check if the uri contains an explicit scheme and if it is
1170 * "http" or "https". */
1171 if (h1sl.rq.u.len && h1sl.rq.u.ptr[0] != '/') {
1172 sl->flags |= HTX_SL_F_HAS_SCHM;
1173 if (h1sl.rq.u.len > 4 && (h1sl.rq.u.ptr[0] | 0x20) == 'h')
1174 sl->flags |= ((h1sl.rq.u.ptr[4] == ':') ? HTX_SL_F_SCHM_HTTP : HTX_SL_F_SCHM_HTTPS);
1175 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001176 }
1177 else {
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001178 if (h1_eval_htx_res_size(h1m, &h1sl, hdrs) > max) {
1179 if (htx_is_empty(htx))
1180 goto error;
1181 h1m_init_res(h1m);
1182 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
1183 ret = 0;
1184 goto end;
1185 }
Christopher Faulet30db3d72019-05-17 15:35:33 +02001186
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001187 flags |= HTX_SL_F_IS_RESP;
1188 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, h1sl.st.v, h1sl.st.c, h1sl.st.r);
1189 if (!sl || !htx_add_all_headers(htx, hdrs))
Christopher Faulet9768c262018-10-22 09:34:31 +02001190 goto error;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001191 sl->info.res.status = h1s->status;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001192 }
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001193
Christopher Fauleta39d8ad2019-05-15 15:54:39 +02001194 /* Set bytes used in the HTX mesage for the headers now */
1195 sl->hdrs_bytes = htx_used_space(htx) - used;
1196
Christopher Fauletb992af02019-03-28 15:42:24 +01001197 h1_process_input_conn_mode(h1s, h1m, htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001198
1199 /* If body length cannot be determined, set htx->extra to
1200 * ULLONG_MAX. This value is impossible in other cases.
1201 */
1202 htx->extra = ((h1m->flags & H1_MF_XFER_LEN) ? h1m->curr_len : ULLONG_MAX);
Christopher Faulet9768c262018-10-22 09:34:31 +02001203 *ofs += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001204 end:
1205 return ret;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001206
1207 error:
Christopher Fauletf2824e62018-10-01 12:12:37 +02001208 h1m->err_state = h1m->state;
1209 h1m->err_pos = h1m->next;
Christopher Faulet9768c262018-10-22 09:34:31 +02001210 vsn_error:
1211 h1s->flags |= (!(h1m->flags & H1_MF_RESP) ? H1S_F_REQ_ERROR : H1S_F_RES_ERROR);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001212 h1s->cs->flags |= CS_FL_EOI;
1213 htx->flags |= HTX_FL_PARSING_ERROR;
Christopher Faulete44769b2018-11-29 23:01:45 +01001214 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001215 ret = 0;
1216 goto end;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001217
1218 h2c_upgrade:
1219 h1s->h1c->flags |= H1C_F_UPG_H2C;
Christopher Faulet8e9e3ef2019-05-17 09:14:10 +02001220 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet0ef372a2019-04-08 10:57:20 +02001221 htx->flags |= HTX_FL_UPGRADE;
1222 ret = 0;
1223 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001224}
1225
1226/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001227 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
1228 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag
Christopher Faulet129817b2018-09-20 16:14:40 +02001229 * and filling h1s->err_pos and h1s->err_state fields. This functions is
Joseph Herlant30bc5092018-11-25 10:52:20 -08001230 * responsible to update the parser state <h1m>.
Christopher Faulet129817b2018-09-20 16:14:40 +02001231 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001232static size_t h1_process_data(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001233 struct buffer *buf, size_t *ofs, size_t max,
Christopher Faulet30db3d72019-05-17 15:35:33 +02001234 struct buffer *htxbuf)
Christopher Faulet129817b2018-09-20 16:14:40 +02001235{
1236 size_t total = 0;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001237 int32_t ret = 0;
Christopher Fauletafe57842019-01-21 11:55:02 +01001238
Christopher Faulet129817b2018-09-20 16:14:40 +02001239 if (h1m->flags & H1_MF_XFER_LEN) {
1240 if (h1m->flags & H1_MF_CLEN) {
1241 /* content-length: read only h2m->body_len */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001242 ret = htx_get_max_blksz(htx, max);
Christopher Faulet129817b2018-09-20 16:14:40 +02001243 if ((uint64_t)ret > h1m->curr_len)
1244 ret = h1m->curr_len;
Christopher Faulet9768c262018-10-22 09:34:31 +02001245 if (ret > b_contig_data(buf, *ofs))
1246 ret = b_contig_data(buf, *ofs);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001247
Christopher Faulet9768c262018-10-22 09:34:31 +02001248 if (ret) {
Willy Tarreau78f548f2018-12-05 10:02:39 +01001249 /* very often with large files we'll face the following
1250 * situation :
1251 * - htx is empty and points to <htxbuf>
1252 * - ret == buf->data
1253 * - buf->head == sizeof(struct htx)
1254 * => we can swap the buffers and place an htx header into
1255 * the target buffer instead
1256 */
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001257 int32_t try = ret;
1258
Willy Tarreau78f548f2018-12-05 10:02:39 +01001259 if (unlikely(htx_is_empty(htx) && ret == b_data(buf) &&
1260 !*ofs && b_head_ofs(buf) == sizeof(struct htx))) {
1261 void *raw_area = buf->area;
1262 void *htx_area = htxbuf->area;
1263 struct htx_blk *blk;
1264
1265 buf->area = htx_area;
1266 htxbuf->area = raw_area;
1267 htx = (struct htx *)htxbuf->area;
1268 htx->size = htxbuf->size - sizeof(*htx);
1269 htx_reset(htx);
1270 b_set_data(htxbuf, b_size(htxbuf));
1271
1272 blk = htx_add_blk(htx, HTX_BLK_DATA, ret);
1273 blk->info += ret;
1274 /* nothing else to do, the old buffer now contains an
1275 * empty pre-initialized HTX header
1276 */
1277 }
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001278 else {
1279 ret = htx_add_data(htx, ist2(b_peek(buf, *ofs), try));
1280 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001281 h1m->curr_len -= ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001282 max -= sizeof(struct htx_blk) + ret;
Christopher Faulet9768c262018-10-22 09:34:31 +02001283 *ofs += ret;
1284 total += ret;
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001285 if (ret < try)
1286 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001287 }
1288
1289 if (!h1m->curr_len) {
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001290 if (!h1_process_eom(h1s, h1m, htx, max))
Christopher Faulet9768c262018-10-22 09:34:31 +02001291 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001292 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001293 }
1294 else if (h1m->flags & H1_MF_CHNK) {
1295 new_chunk:
1296 /* te:chunked : parse chunks */
1297 if (h1m->state == H1_MSG_CHUNK_CRLF) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001298 ret = h1_skip_chunk_crlf(buf, *ofs, b_data(buf));
Christopher Faulet129817b2018-09-20 16:14:40 +02001299 if (ret <= 0)
1300 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001301 h1m->state = H1_MSG_CHUNK_SIZE;
1302
Christopher Fauletf2824e62018-10-01 12:12:37 +02001303 *ofs += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001304 total += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001305 }
1306
1307 if (h1m->state == H1_MSG_CHUNK_SIZE) {
1308 unsigned int chksz;
1309
Christopher Faulet30db3d72019-05-17 15:35:33 +02001310 ret = h1_parse_chunk_size(buf, *ofs, b_data(buf), &chksz);
Christopher Faulet129817b2018-09-20 16:14:40 +02001311 if (ret <= 0)
1312 goto end;
Christopher Faulet54b5e212019-06-04 10:08:28 +02001313 h1m->state = ((!chksz) ? H1_MSG_TRAILERS : H1_MSG_DATA);
Christopher Faulet9768c262018-10-22 09:34:31 +02001314
Christopher Faulet129817b2018-09-20 16:14:40 +02001315 h1m->curr_len = chksz;
1316 h1m->body_len += chksz;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001317 *ofs += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001318 total += ret;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001319
1320 if (!h1m->curr_len)
1321 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001322 }
1323
1324 if (h1m->state == H1_MSG_DATA) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001325 ret = htx_get_max_blksz(htx, max);
Christopher Faulet129817b2018-09-20 16:14:40 +02001326 if ((uint64_t)ret > h1m->curr_len)
1327 ret = h1m->curr_len;
Christopher Faulet9768c262018-10-22 09:34:31 +02001328 if (ret > b_contig_data(buf, *ofs))
1329 ret = b_contig_data(buf, *ofs);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001330
Christopher Faulet9768c262018-10-22 09:34:31 +02001331 if (ret) {
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001332 int32_t try = ret;
1333
1334 ret = htx_add_data(htx, ist2(b_peek(buf, *ofs), try));
Christopher Faulet9768c262018-10-22 09:34:31 +02001335 h1m->curr_len -= ret;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001336 max -= sizeof(struct htx_blk) + ret;
Christopher Faulet9768c262018-10-22 09:34:31 +02001337 *ofs += ret;
1338 total += ret;
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001339 if (ret < try)
1340 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001341 }
1342 if (!h1m->curr_len) {
1343 h1m->state = H1_MSG_CHUNK_CRLF;
1344 goto new_chunk;
1345 }
1346 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001347 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001348 }
1349 else {
1350 /* XFER_LEN is set but not CLEN nor CHNK, it means there
1351 * is no body. Switch the message in DONE state
1352 */
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001353 if (!h1_process_eom(h1s, h1m, htx, max))
Christopher Faulet9768c262018-10-22 09:34:31 +02001354 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001355 }
1356 }
1357 else {
1358 /* no content length, read till SHUTW */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001359 ret = htx_get_max_blksz(htx, max);
Christopher Faulet9768c262018-10-22 09:34:31 +02001360 if (ret > b_contig_data(buf, *ofs))
1361 ret = b_contig_data(buf, *ofs);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001362
Christopher Faulet9768c262018-10-22 09:34:31 +02001363 if (ret) {
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001364 int32_t try = ret;
1365
1366 ret = htx_add_data(htx, ist2(b_peek(buf, *ofs), try));
Christopher Faulet9768c262018-10-22 09:34:31 +02001367
Olivier Houchardcf42d5a2018-12-04 17:41:58 +01001368 *ofs += ret;
1369 total = ret;
Willy Tarreau0a7ef022019-05-28 10:30:11 +02001370 if (ret < try)
1371 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001372 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001373 }
1374
1375 end:
1376 if (ret < 0) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001377 h1s->flags |= (!(h1m->flags & H1_MF_RESP) ? H1S_F_REQ_ERROR : H1S_F_RES_ERROR);
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001378 h1s->cs->flags |= CS_FL_EOI;
1379 htx->flags |= HTX_FL_PARSING_ERROR;
Christopher Faulet129817b2018-09-20 16:14:40 +02001380 h1m->err_state = h1m->state;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001381 h1m->err_pos = *ofs + max + ret;
Christopher Faulete44769b2018-11-29 23:01:45 +01001382 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet129817b2018-09-20 16:14:40 +02001383 return 0;
1384 }
Willy Tarreau7e9dd732020-01-17 16:19:34 +01001385
1386 if (h1m->state == H1_MSG_DATA && h1m->curr_len && h1s->cs)
1387 h1s->cs->flags |= CS_FL_MAY_SPLICE;
1388 else if (h1s->cs)
1389 h1s->cs->flags &= ~CS_FL_MAY_SPLICE;
1390
Christopher Faulet9768c262018-10-22 09:34:31 +02001391 /* update htx->extra, only when the body length is known */
1392 if (h1m->flags & H1_MF_XFER_LEN)
1393 htx->extra = h1m->curr_len;
Christopher Faulet129817b2018-09-20 16:14:40 +02001394 return total;
1395}
1396
1397/*
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001398 * Parse HTTP/1 trailers. It returns the number of bytes parsed if > 0, or 0 if
1399 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
1400 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
1401 * responsible to update the parser state <h1m>.
1402 */
1403static size_t h1_process_trailers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
1404 struct buffer *buf, size_t *ofs, size_t max)
1405{
Christopher Faulete4ab11b2019-06-11 15:05:37 +02001406 struct http_hdr hdrs[global.tune.max_http_hdr];
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001407 struct h1m tlr_h1m;
1408 int ret = 0;
1409
1410 if (!max || !b_data(buf))
1411 goto end;
1412
1413 /* Realing input buffer if necessary */
1414 if (b_peek(buf, *ofs) > b_tail(buf))
1415 b_slow_realign(buf, trash.area, 0);
1416
1417 tlr_h1m.flags = (H1_MF_NO_PHDR|H1_MF_HDRS_ONLY);
1418 ret = h1_headers_to_hdr_list(b_peek(buf, *ofs), b_tail(buf),
1419 hdrs, sizeof(hdrs)/sizeof(hdrs[0]), &tlr_h1m, NULL);
1420 if (ret <= 0) {
Willy Tarreau9a408ab2019-08-23 08:11:36 +02001421 /* Incomplete or invalid trailers. If the input buffer only
1422 * contains trailers and is full, which is detected by it being
1423 * full and the offset to be zero, it's an error because
1424 * trailers are too large to be handled by the parser. */
1425 if (ret < 0 || (!ret && !*ofs && !buf_room_for_htx_data(buf)))
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001426 goto error;
1427 goto end;
1428 }
1429
1430 /* messages trailers fully parsed. */
1431 if (h1_eval_htx_hdrs_size(hdrs) > max) {
1432 if (htx_is_empty(htx))
1433 goto error;
1434 ret = 0;
1435 goto end;
1436 }
1437
1438 if (!htx_add_all_trailers(htx, hdrs))
1439 goto error;
1440
1441 *ofs += ret;
1442 h1s->flags |= H1S_F_HAVE_I_TLR;
1443 end:
1444 return ret;
1445
1446 error:
1447 h1m->err_state = h1m->state;
1448 h1m->err_pos = h1m->next;
1449 h1s->flags |= (!(h1m->flags & H1_MF_RESP) ? H1S_F_REQ_ERROR : H1S_F_RES_ERROR);
1450 h1s->cs->flags |= CS_FL_EOI;
1451 htx->flags |= HTX_FL_PARSING_ERROR;
1452 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
1453 ret = 0;
1454 goto end;
1455}
1456
1457/*
Christopher Faulet129817b2018-09-20 16:14:40 +02001458 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001459 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1460 * it couldn't proceed.
Christopher Faulet129817b2018-09-20 16:14:40 +02001461 */
Christopher Faulet30db3d72019-05-17 15:35:33 +02001462static size_t h1_process_input(struct h1c *h1c, struct buffer *buf, size_t count)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001463{
Christopher Faulet539e0292018-11-19 10:40:09 +01001464 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001465 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001466 struct htx *htx;
Christopher Faulet30db3d72019-05-17 15:35:33 +02001467 size_t ret, data;
Christopher Faulet129817b2018-09-20 16:14:40 +02001468 size_t total = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001469 int errflag;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001470
Christopher Faulet539e0292018-11-19 10:40:09 +01001471 htx = htx_from_buf(buf);
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001472
Christopher Fauletf2824e62018-10-01 12:12:37 +02001473 if (!conn_is_back(h1c->conn)) {
1474 h1m = &h1s->req;
1475 errflag = H1S_F_REQ_ERROR;
1476 }
1477 else {
1478 h1m = &h1s->res;
1479 errflag = H1S_F_RES_ERROR;
1480 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001481
Christopher Faulet74027762019-02-26 14:45:05 +01001482 data = htx->data;
Christopher Fauletcd9f6a72019-07-04 21:22:34 +02001483 if (h1s->flags & errflag)
1484 goto end;
1485
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001486 do {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001487 size_t used = htx_used_space(htx);
1488
Christopher Faulet129817b2018-09-20 16:14:40 +02001489 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001490 ret = h1_process_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001491 if (!ret)
1492 break;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001493 if ((h1m->flags & H1_MF_RESP) &&
1494 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1495 h1m_init_res(&h1s->res);
1496 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
1497 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001498 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001499 else if (h1m->state < H1_MSG_TRAILERS) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001500 ret = h1_process_data(h1s, h1m, htx, &h1c->ibuf, &total, count, buf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01001501 htx = htx_from_buf(buf);
Christopher Faulet129817b2018-09-20 16:14:40 +02001502 if (!ret)
1503 break;
1504 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001505 else if (h1m->state == H1_MSG_TRAILERS) {
1506 if (!(h1s->flags & H1S_F_HAVE_I_TLR)) {
1507 ret = h1_process_trailers(h1s, h1m, htx, &h1c->ibuf, &total, count);
1508 if (!ret)
1509 break;
1510 }
Christopher Faulet1021e722019-09-03 21:55:14 +02001511 else if (!h1_process_eom(h1s, h1m, htx, count))
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001512 break;
1513 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001514 else if (h1m->state == H1_MSG_DONE) {
Christopher Fauletac4778c2019-11-15 11:14:23 +01001515 if (!(h1m->flags & H1_MF_RESP) && h1s->status == 101)
1516 h1_set_req_tunnel_mode(h1s);
1517 else if (h1s->req.state < H1_MSG_DONE || h1s->res.state < H1_MSG_DONE)
Christopher Faulet2f320ee2019-04-16 20:26:53 +02001518 h1c->flags |= H1C_F_IN_BUSY;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001519 break;
Christopher Fauletcb55f482018-12-10 11:56:47 +01001520 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001521 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Faulet30db3d72019-05-17 15:35:33 +02001522 ret = h1_process_data(h1s, h1m, htx, &h1c->ibuf, &total, count, buf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01001523 htx = htx_from_buf(buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001524 if (!ret)
1525 break;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001526 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001527 else {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001528 h1s->flags |= errflag;
Christopher Faulet129817b2018-09-20 16:14:40 +02001529 break;
1530 }
1531
Christopher Faulet30db3d72019-05-17 15:35:33 +02001532 count -= htx_used_space(htx) - used;
Christopher Faulet98e2bc22019-09-03 16:26:15 +02001533 } while (!(h1s->flags & errflag));
Christopher Faulet129817b2018-09-20 16:14:40 +02001534
Christopher Faulet47365272018-10-31 17:40:50 +01001535 if (h1s->flags & errflag)
1536 goto parsing_err;
Christopher Faulet129817b2018-09-20 16:14:40 +02001537
Christopher Faulet539e0292018-11-19 10:40:09 +01001538 b_del(&h1c->ibuf, total);
1539
1540 end:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001541 htx_to_buf(htx, buf);
Christopher Faulet30db3d72019-05-17 15:35:33 +02001542 ret = htx->data - data;
Willy Tarreau45f2b892018-12-05 07:59:27 +01001543 if (h1c->flags & H1C_F_IN_FULL && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001544 h1c->flags &= ~H1C_F_IN_FULL;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001545 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet47365272018-10-31 17:40:50 +01001546 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001547
Christopher Fauletcf56b992018-12-11 16:12:31 +01001548 h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
1549
Christopher Fauletcdc90e92019-03-28 13:28:46 +01001550 if (!b_data(&h1c->ibuf))
Christopher Faulet539e0292018-11-19 10:40:09 +01001551 h1_release_buf(h1c, &h1c->ibuf);
Christopher Fauleta882a462019-12-06 15:59:05 +01001552
1553 if ((h1s_data_pending(h1s) && !htx_is_empty(htx)) || (h1s->flags & H1S_F_APPEND_EOM))
Christopher Fauletcf56b992018-12-11 16:12:31 +01001554 h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM;
Christopher Faulet539e0292018-11-19 10:40:09 +01001555
Willy Tarreau62038152019-08-23 09:29:29 +02001556 if (((h1s->flags & (H1S_F_REOS|H1S_F_APPEND_EOM)) == H1S_F_REOS) &&
1557 (!h1s_data_pending(h1s) || htx_is_empty(htx))) {
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001558 h1s->cs->flags |= CS_FL_EOS;
Christopher Faulet26922382019-03-08 15:13:41 +01001559 if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE)
Christopher Fauletb8d2ee02019-02-25 15:29:51 +01001560 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet539e0292018-11-19 10:40:09 +01001561 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001562
Christopher Faulet30db3d72019-05-17 15:35:33 +02001563 return ret;
Christopher Faulet47365272018-10-31 17:40:50 +01001564
1565 parsing_err:
Christopher Faulet47365272018-10-31 17:40:50 +01001566 b_reset(&h1c->ibuf);
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001567 htx_to_buf(htx, buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001568 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001569}
1570
Christopher Faulet129817b2018-09-20 16:14:40 +02001571/*
1572 * Process outgoing data. It parses data and transfer them from the channel buffer into
1573 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1574 * 0 if it couldn't proceed.
1575 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02001576static size_t h1_process_output(struct h1c *h1c, struct buffer *buf, size_t count)
1577{
Christopher Faulet129817b2018-09-20 16:14:40 +02001578 struct h1s *h1s = h1c->h1s;
1579 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001580 struct htx *chn_htx;
1581 struct htx_blk *blk;
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001582 struct buffer tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001583 size_t total = 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001584 int errflag;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001585
Christopher Faulet47365272018-10-31 17:40:50 +01001586 if (!count)
1587 goto end;
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001588
Christopher Faulet94b2c762019-05-24 15:28:57 +02001589 chn_htx = htxbuf(buf);
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001590 if (htx_is_empty(chn_htx))
1591 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001592
Christopher Faulet51dbc942018-09-13 09:05:15 +02001593 if (!h1_get_buf(h1c, &h1c->obuf)) {
1594 h1c->flags |= H1C_F_OUT_ALLOC;
1595 goto end;
1596 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001597
Christopher Fauletf2824e62018-10-01 12:12:37 +02001598 if (!conn_is_back(h1c->conn)) {
1599 h1m = &h1s->res;
1600 errflag = H1S_F_RES_ERROR;
1601 }
1602 else {
1603 h1m = &h1s->req;
1604 errflag = H1S_F_REQ_ERROR;
1605 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001606
Christopher Fauletcd9f6a72019-07-04 21:22:34 +02001607 if (h1s->flags & errflag)
1608 goto end;
1609
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001610 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001611 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001612
Willy Tarreau3815b222018-12-11 19:50:43 +01001613 /* Perform some optimizations to reduce the number of buffer copies.
1614 * First, if the mux's buffer is empty and the htx area contains
1615 * exactly one data block of the same size as the requested count,
1616 * then it's possible to simply swap the caller's buffer with the
1617 * mux's output buffer and adjust offsets and length to match the
1618 * entire DATA HTX block in the middle. In this case we perform a
1619 * true zero-copy operation from end-to-end. This is the situation
1620 * that happens all the time with large files. Second, if this is not
1621 * possible, but the mux's output buffer is empty, we still have an
1622 * opportunity to avoid the copy to the intermediary buffer, by making
1623 * the intermediary buffer's area point to the output buffer's area.
1624 * In this case we want to skip the HTX header to make sure that copies
1625 * remain aligned and that this operation remains possible all the
1626 * time. This goes for headers, data blocks and any data extracted from
1627 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01001628 */
1629 if (!b_data(&h1c->obuf)) {
Willy Tarreau3815b222018-12-11 19:50:43 +01001630 if (chn_htx->used == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001631 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01001632 htx_get_blk_value(chn_htx, blk).len == count) {
1633 void *old_area = h1c->obuf.area;
1634
1635 h1c->obuf.area = buf->area;
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001636 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01001637 h1c->obuf.data = count;
1638
1639 buf->area = old_area;
1640 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01001641
1642 /* The message is chunked. We need to emit the chunk
1643 * size. We have at least the size of the struct htx to
1644 * write the chunk envelope. It should be enough.
1645 */
1646 if (h1m->flags & H1_MF_CHNK) {
1647 h1_emit_chunk_size(&h1c->obuf, count);
1648 h1_emit_chunk_crlf(&h1c->obuf);
1649 }
1650
Willy Tarreau3815b222018-12-11 19:50:43 +01001651 total += count;
1652 goto out;
1653 }
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001654 tmp.area = h1c->obuf.area + h1c->obuf.head;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001655 }
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001656 else
1657 tmp.area = trash.area;
Christopher Faulet9768c262018-10-22 09:34:31 +02001658
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001659 tmp.data = 0;
1660 tmp.size = b_room(&h1c->obuf);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001661 while (count && !(h1s->flags & errflag) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01001662 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02001663 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001664 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02001665 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001666 uint32_t vlen;
Christopher Faulet9768c262018-10-22 09:34:31 +02001667
Christopher Fauletb2e84162018-12-06 11:39:49 +01001668 vlen = sz;
1669 if (vlen > count) {
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001670 if (type != HTX_BLK_DATA)
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001671 goto full;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001672 vlen = count;
1673 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001674
Christopher Faulet94b2c762019-05-24 15:28:57 +02001675 if (type == HTX_BLK_UNUSED)
1676 goto nextblk;
Christopher Faulet9768c262018-10-22 09:34:31 +02001677
Christopher Faulet94b2c762019-05-24 15:28:57 +02001678 switch (h1m->state) {
1679 case H1_MSG_RQBEFORE:
1680 if (type != HTX_BLK_REQ_SL)
1681 goto error;
Christopher Faulet9768c262018-10-22 09:34:31 +02001682 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001683 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001684 h1_parse_req_vsn(h1m, sl);
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001685 if (!htx_reqline_to_h1(sl, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001686 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001687 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01001688 if (sl->flags & HTX_SL_F_BODYLESS)
1689 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001690 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet129817b2018-09-20 16:14:40 +02001691 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02001692
Christopher Faulet94b2c762019-05-24 15:28:57 +02001693 case H1_MSG_RPBEFORE:
1694 if (type != HTX_BLK_RES_SL)
1695 goto error;
Christopher Faulet9768c262018-10-22 09:34:31 +02001696 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001697 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02001698 h1_parse_res_vsn(h1m, sl);
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001699 if (!htx_stline_to_h1(sl, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001700 goto full;
Christopher Faulet03599112018-11-27 11:21:21 +01001701 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02001702 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001703 if (sl->info.res.status < 200 &&
1704 (sl->info.res.status == 100 || sl->info.res.status >= 102))
Christopher Fauletada34b62019-05-24 16:36:43 +02001705 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001706 h1m->state = H1_MSG_HDR_FIRST;
1707 break;
1708
Christopher Faulet94b2c762019-05-24 15:28:57 +02001709 case H1_MSG_HDR_FIRST:
1710 case H1_MSG_HDR_NAME:
1711 case H1_MSG_HDR_L2_LWS:
1712 if (type == HTX_BLK_EOH)
1713 goto last_lf;
1714 if (type != HTX_BLK_HDR)
1715 goto error;
Christopher Faulet9768c262018-10-22 09:34:31 +02001716 h1m->state = H1_MSG_HDR_NAME;
1717 n = htx_get_blk_name(chn_htx, blk);
1718 v = htx_get_blk_value(chn_htx, blk);
1719
1720 if (isteqi(n, ist("transfer-encoding")))
1721 h1_parse_xfer_enc_header(h1m, v);
Willy Tarreau27cd2232019-01-03 21:52:42 +01001722 else if (isteqi(n, ist("content-length"))) {
Christopher Faulet5220ef22019-03-27 15:44:56 +01001723 /* Only skip C-L header with invalid value. */
1724 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01001725 goto skip_hdr;
1726 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001727 else if (isteqi(n, ist("connection"))) {
Christopher Fauletb992af02019-03-28 15:42:24 +01001728 h1_parse_connection_header(h1m, &v);
Christopher Faulet9768c262018-10-22 09:34:31 +02001729 if (!v.len)
1730 goto skip_hdr;
1731 }
1732
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02001733 /* Try to adjust the case of the header name */
1734 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1735 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001736 if (!htx_hdr_to_h1(n, v, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001737 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001738 skip_hdr:
1739 h1m->state = H1_MSG_HDR_L2_LWS;
1740 break;
1741
Christopher Faulet94b2c762019-05-24 15:28:57 +02001742 case H1_MSG_LAST_LF:
1743 if (type != HTX_BLK_EOH)
1744 goto error;
1745 last_lf:
Christopher Fauletada34b62019-05-24 16:36:43 +02001746 h1m->state = H1_MSG_LAST_LF;
1747 if (!(h1s->flags & H1S_F_HAVE_O_CONN)) {
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001748 /* There is no "Connection:" header and
1749 * it the conn_mode must be
1750 * processed. So do it */
Christopher Faulet661bfc32019-06-17 14:07:46 +02001751 n = ist("connection");
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001752 v = ist("");
Christopher Fauletb992af02019-03-28 15:42:24 +01001753 h1_process_output_conn_mode(h1s, h1m, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001754 if (v.len) {
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02001755 /* Try to adjust the case of the header name */
1756 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1757 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001758 if (!htx_hdr_to_h1(n, v, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001759 goto full;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001760 }
Christopher Fauletada34b62019-05-24 16:36:43 +02001761 h1s->flags |= H1S_F_HAVE_O_CONN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001762 }
Willy Tarreau4710d202019-01-03 17:39:54 +01001763
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001764 if ((h1s->meth != HTTP_METH_CONNECT &&
1765 (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 +01001766 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
1767 (h1s->status >= 200 && h1s->status != 204 && h1s->status != 304 &&
1768 h1s->meth != HTTP_METH_HEAD && !(h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) &&
1769 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
1770 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01001771 /* chunking needed but header not seen */
Christopher Faulete5addb02019-10-04 10:23:51 +02001772 n = ist("transfer-encoding");
1773 v = ist("chunked");
1774 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1775 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
1776 if (!htx_hdr_to_h1(n, v, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001777 goto full;
Willy Tarreau4710d202019-01-03 17:39:54 +01001778 h1m->flags |= H1_MF_CHNK;
1779 }
1780
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001781 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001782 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001783
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001784 if (!(h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_CONNECT) {
1785 /* a CONNECT request is sent to the server. Switch it to tunnel mode. */
1786 h1_set_req_tunnel_mode(h1s);
1787 }
Christopher Fauletac4778c2019-11-15 11:14:23 +01001788 else if ((h1m->flags & H1_MF_RESP) &&
1789 ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) || h1s->status == 101)) {
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001790 /* a successfull reply to a CONNECT or a protocol switching is sent
Christopher Fauletac4778c2019-11-15 11:14:23 +01001791 * to the client. Switch the response to tunnel mode.
1792 */
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001793 h1_set_res_tunnel_mode(h1s);
1794 }
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001795 else if ((h1m->flags & H1_MF_RESP) &&
1796 h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) {
1797 h1m_init_res(&h1s->res);
1798 h1m->flags |= (H1_MF_NO_PHDR|H1_MF_CLEAN_CONN_HDR);
Christopher Fauletada34b62019-05-24 16:36:43 +02001799 h1s->flags &= ~H1S_F_HAVE_O_CONN;
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001800 }
Christopher Faulet33d58b52019-07-01 16:17:30 +02001801 else if ((h1m->flags & H1_MF_RESP) && h1s->meth == HTTP_METH_HEAD)
1802 h1m->state = H1_MSG_DONE;
Christopher Fauletc62c2b92019-03-28 11:41:39 +01001803 else
1804 h1m->state = H1_MSG_DATA;
Christopher Faulet9768c262018-10-22 09:34:31 +02001805 break;
1806
Christopher Faulet94b2c762019-05-24 15:28:57 +02001807 case H1_MSG_DATA:
Christopher Fauletaaa25062019-07-04 17:12:12 +02001808 case H1_MSG_TUNNEL:
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001809 if (type == HTX_BLK_EOM) {
1810 /* Chunked message without explicit trailers */
1811 if (h1m->flags & H1_MF_CHNK) {
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001812 if (!chunk_memcat(&tmp, "0\r\n\r\n", 5))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001813 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001814 }
1815 goto done;
1816 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001817 else if (type == HTX_BLK_EOT || type == HTX_BLK_TLR) {
Christopher Faulet52131682019-06-27 17:40:14 +02001818 /* If the message is not chunked, never
1819 * add the last chunk. */
1820 if ((h1m->flags & H1_MF_CHNK) && !chunk_memcat(&tmp, "0\r\n", 3))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001821 goto full;
Christopher Faulet94b2c762019-05-24 15:28:57 +02001822 goto trailers;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001823 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02001824 else if (type != HTX_BLK_DATA)
1825 goto error;
Christopher Faulet9768c262018-10-22 09:34:31 +02001826 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001827 v.len = vlen;
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001828 if (!htx_data_to_h1(v, &tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001829 goto full;
Christopher Faulet9768c262018-10-22 09:34:31 +02001830 break;
1831
Christopher Faulet94b2c762019-05-24 15:28:57 +02001832 case H1_MSG_TRAILERS:
1833 if (type == HTX_BLK_EOM)
1834 goto done;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001835 else if (type != HTX_BLK_TLR && type != HTX_BLK_EOT)
Christopher Faulet94b2c762019-05-24 15:28:57 +02001836 goto error;
1837 trailers:
Christopher Faulet9768c262018-10-22 09:34:31 +02001838 h1m->state = H1_MSG_TRAILERS;
Christopher Faulet52131682019-06-27 17:40:14 +02001839 /* If the message is not chunked, ignore
1840 * trailers. It may happen with H2 messages. */
1841 if (!(h1m->flags & H1_MF_CHNK))
1842 break;
1843
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001844 if (type == HTX_BLK_EOT) {
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001845 if (!chunk_memcat(&tmp, "\r\n", 2))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001846 goto full;
Christopher Faulet32188212018-11-20 18:21:43 +01001847 }
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001848 else { // HTX_BLK_TLR
1849 n = htx_get_blk_name(chn_htx, blk);
1850 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02001851
1852 /* Try to adjust the case of the header name */
1853 if (h1c->px->options2 & (PR_O2_H1_ADJ_BUGCLI|PR_O2_H1_ADJ_BUGSRV))
1854 h1_adjust_case_outgoing_hdr(h1s, h1m, &n);
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001855 if (!htx_hdr_to_h1(n, v, &tmp))
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001856 goto full;
Christopher Faulet2d7c5392019-06-03 10:41:26 +02001857 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001858 break;
1859
Christopher Faulet94b2c762019-05-24 15:28:57 +02001860 case H1_MSG_DONE:
1861 if (type != HTX_BLK_EOM)
1862 goto error;
1863 done:
1864 h1m->state = H1_MSG_DONE;
Christopher Fauletac4778c2019-11-15 11:14:23 +01001865 if (!(h1m->flags & H1_MF_RESP) && h1s->status == 101)
1866 h1_set_req_tunnel_mode(h1s);
1867 else if (h1s->h1c->flags & H1C_F_IN_BUSY) {
Christopher Fauletcd67bff2019-06-14 16:54:15 +02001868 h1s->h1c->flags &= ~H1C_F_IN_BUSY;
1869 tasklet_wakeup(h1s->h1c->wait_event.tasklet);
1870 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001871 break;
1872
Christopher Faulet9768c262018-10-22 09:34:31 +02001873 default:
Christopher Faulet94b2c762019-05-24 15:28:57 +02001874 error:
Christopher Fauletc431df82019-06-26 15:16:28 +02001875 /* Unexpected error during output processing */
1876 chn_htx->flags |= HTX_FL_PARSING_ERROR;
Christopher Fauleta2ea1582019-05-28 10:35:18 +02001877 h1s->flags |= errflag;
Christopher Fauletc431df82019-06-26 15:16:28 +02001878 h1c->flags |= H1C_F_CS_ERROR;
Christopher Faulet9768c262018-10-22 09:34:31 +02001879 break;
1880 }
Christopher Faulet94b2c762019-05-24 15:28:57 +02001881
1882 nextblk:
Christopher Fauletb2e84162018-12-06 11:39:49 +01001883 total += vlen;
1884 count -= vlen;
1885 if (sz == vlen)
1886 blk = htx_remove_blk(chn_htx, blk);
1887 else {
1888 htx_cut_data_blk(chn_htx, blk, vlen);
1889 break;
1890 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001891 }
1892
Christopher Faulet9768c262018-10-22 09:34:31 +02001893 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01001894 /* when the output buffer is empty, tmp shares the same area so that we
1895 * only have to update pointers and lengths.
1896 */
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001897 if (tmp.area == h1c->obuf.area + h1c->obuf.head)
1898 h1c->obuf.data = tmp.data;
Willy Tarreauc5efa332018-12-05 11:19:27 +01001899 else
Christopher Faulet65fc1dc2019-06-25 21:41:02 +02001900 b_putblk(&h1c->obuf, tmp.area, tmp.data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001901
Willy Tarreau3815b222018-12-11 19:50:43 +01001902 htx_to_buf(chn_htx, buf);
1903 out:
Willy Tarreau45f2b892018-12-05 07:59:27 +01001904 if (!buf_room_for_htx_data(&h1c->obuf))
Christopher Faulet51dbc942018-09-13 09:05:15 +02001905 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001906 end:
1907 return total;
Christopher Faulet85fc6ef2019-10-14 14:17:00 +02001908
1909 full:
1910 h1c->flags |= H1C_F_OUT_FULL;
1911 goto copy;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001912}
1913
Christopher Faulet51dbc942018-09-13 09:05:15 +02001914/*********************************************************/
1915/* functions below are I/O callbacks from the connection */
1916/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001917static void h1_wake_stream_for_recv(struct h1s *h1s)
1918{
1919 if (h1s && h1s->recv_wait) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001920 h1s->recv_wait->events &= ~SUB_RETRY_RECV;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001921 tasklet_wakeup(h1s->recv_wait->tasklet);
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001922 h1s->recv_wait = NULL;
1923 }
1924}
1925static void h1_wake_stream_for_send(struct h1s *h1s)
1926{
1927 if (h1s && h1s->send_wait) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001928 h1s->send_wait->events &= ~SUB_RETRY_SEND;
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02001929 tasklet_wakeup(h1s->send_wait->tasklet);
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001930 h1s->send_wait = NULL;
1931 }
1932}
1933
Christopher Faulet51dbc942018-09-13 09:05:15 +02001934/*
1935 * Attempt to read data, and subscribe if none available
1936 */
1937static int h1_recv(struct h1c *h1c)
1938{
1939 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01001940 struct h1s *h1s = h1c->h1s;
Olivier Houchard75159a92018-12-03 18:46:09 +01001941 size_t ret = 0, max;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001942 int rcvd = 0;
1943
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001944 if (h1c->wait_event.events & SUB_RETRY_RECV)
Christopher Fauletc386a882018-12-04 16:06:28 +01001945 return (b_data(&h1c->ibuf));
Christopher Faulet51dbc942018-09-13 09:05:15 +02001946
Olivier Houchard5b06cb32019-08-13 15:21:59 +02001947 if (!(conn->flags & CO_FL_ERROR) && h1c->flags & H1C_F_CS_WAIT_CONN)
Willy Tarreaud58f27f2019-06-03 10:12:22 +02001948 return 0;
Willy Tarreaud58f27f2019-06-03 10:12:22 +02001949
Olivier Houchard75159a92018-12-03 18:46:09 +01001950 if (!h1_recv_allowed(h1c)) {
1951 rcvd = 1;
Christopher Faulet9768c262018-10-22 09:34:31 +02001952 goto end;
Olivier Houchard75159a92018-12-03 18:46:09 +01001953 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001954
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02001955 if (!h1_get_buf(h1c, &h1c->ibuf)) {
1956 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet9768c262018-10-22 09:34:31 +02001957 goto end;
1958 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02001959
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02001960 if (h1s && (h1s->flags & (H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA))) {
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02001961 if (!h1s_data_pending(h1s))
Christopher Fauletf7d5ff32019-04-16 13:55:08 +02001962 h1_wake_stream_for_recv(h1s);
1963 rcvd = 1;
Christopher Faulet9768c262018-10-22 09:34:31 +02001964 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001965 }
1966
Olivier Houchard29a22bc2018-12-04 18:16:45 +01001967 /*
1968 * If we only have a small amount of data, realign it,
1969 * it's probably cheaper than doing 2 recv() calls.
1970 */
1971 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
1972 b_slow_realign(&h1c->ibuf, trash.area, 0);
1973
Willy Tarreau45f2b892018-12-05 07:59:27 +01001974 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001975 if (max) {
1976 h1c->flags &= ~H1C_F_IN_FULL;
Willy Tarreau78f548f2018-12-05 10:02:39 +01001977
Willy Tarreaue0f24ee2018-12-14 10:51:23 +01001978 b_realign_if_empty(&h1c->ibuf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01001979 if (!b_data(&h1c->ibuf)) {
1980 /* try to pre-align the buffer like the rxbufs will be
1981 * to optimize memory copies.
1982 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01001983 h1c->ibuf.head = sizeof(struct htx);
1984 }
Olivier Houcharde179d0e2019-03-21 18:27:17 +01001985 ret = conn->xprt->rcv_buf(conn, conn->xprt_ctx, &h1c->ibuf, max, 0);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001986 }
Christopher Faulet47365272018-10-31 17:40:50 +01001987 if (ret > 0) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02001988 rcvd = 1;
Christopher Fauletfeb11742018-11-29 15:12:34 +01001989 if (h1s && h1s->cs) {
Christopher Faulet37e36072018-12-04 15:54:12 +01001990 h1s->cs->flags |= (CS_FL_READ_PARTIAL|CS_FL_RCV_MORE);
Christopher Fauletfeb11742018-11-29 15:12:34 +01001991 if (h1s->csinfo.t_idle == -1)
1992 h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake;
1993 }
Christopher Faulet47365272018-10-31 17:40:50 +01001994 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001995
Christopher Fauletcf56b992018-12-11 16:12:31 +01001996 if (!h1_recv_allowed(h1c) || !buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet81d48432018-11-19 21:22:43 +01001997 rcvd = 1;
Christopher Fauletcf56b992018-12-11 16:12:31 +01001998 goto end;
1999 }
2000
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002001 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002002
Christopher Faulet9768c262018-10-22 09:34:31 +02002003 end:
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002004 if (ret > 0 || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn))
2005 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002006
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002007 if (conn_xprt_read0_pending(conn) && h1s) {
2008 h1s->flags |= H1S_F_REOS;
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002009 rcvd = 1;
2010 }
2011
Christopher Faulet51dbc942018-09-13 09:05:15 +02002012 if (!b_data(&h1c->ibuf))
2013 h1_release_buf(h1c, &h1c->ibuf);
Willy Tarreau45f2b892018-12-05 07:59:27 +01002014 else if (!buf_room_for_htx_data(&h1c->ibuf))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002015 h1c->flags |= H1C_F_IN_FULL;
2016 return rcvd;
2017}
2018
2019
2020/*
2021 * Try to send data if possible
2022 */
2023static int h1_send(struct h1c *h1c)
2024{
2025 struct connection *conn = h1c->conn;
2026 unsigned int flags = 0;
2027 size_t ret;
2028 int sent = 0;
2029
2030 if (conn->flags & CO_FL_ERROR)
2031 return 0;
2032
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002033 if (h1c->flags & H1C_F_CS_WAIT_CONN) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002034 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002035 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002036 return 0;
2037 }
2038
Christopher Faulet51dbc942018-09-13 09:05:15 +02002039 if (!b_data(&h1c->obuf))
2040 goto end;
2041
2042 if (h1c->flags & H1C_F_OUT_FULL)
2043 flags |= CO_SFL_MSG_MORE;
2044
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002045 ret = conn->xprt->snd_buf(conn, conn->xprt_ctx, &h1c->obuf, b_data(&h1c->obuf), flags);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002046 if (ret > 0) {
2047 h1c->flags &= ~H1C_F_OUT_FULL;
2048 b_del(&h1c->obuf, ret);
2049 sent = 1;
2050 }
2051
Christopher Faulet145aa472018-12-06 10:56:20 +01002052 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
2053 /* error or output closed, nothing to send, clear the buffer to release it */
2054 b_reset(&h1c->obuf);
2055 }
2056
Christopher Faulet51dbc942018-09-13 09:05:15 +02002057 end:
Christopher Faulete17fa2f2018-12-11 16:25:36 +01002058 if (!(h1c->flags & H1C_F_OUT_FULL))
2059 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01002060
Christopher Faulet51dbc942018-09-13 09:05:15 +02002061 /* We're done, no more to send */
2062 if (!b_data(&h1c->obuf)) {
2063 h1_release_buf(h1c, &h1c->obuf);
2064 if (h1c->flags & H1C_F_CS_SHUTW_NOW)
Christopher Faulet666a0c42019-01-08 11:12:04 +01002065 h1_shutw_conn(conn, CS_SHW_NORMAL);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002066 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002067 else if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002068 conn->xprt->subscribe(conn, conn->xprt_ctx, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002069
2070 return sent;
2071}
2072
Christopher Faulet51dbc942018-09-13 09:05:15 +02002073
2074/* callback called on any event by the connection handler.
2075 * It applies changes and returns zero, or < 0 if it wants immediate
2076 * destruction of the connection.
2077 */
2078static int h1_process(struct h1c * h1c)
2079{
2080 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002081 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002082
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002083 if (!conn->ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002084 return -1;
2085
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002086 if (h1c->flags & H1C_F_CS_WAIT_CONN) {
Olivier Houchard690e0f02019-06-11 16:37:24 +02002087 if (!(conn->flags & (CO_FL_CONNECTED|CO_FL_ERROR)) ||
Olivier Houchard60630032019-06-13 17:37:00 +02002088 (!(conn->flags & CO_FL_ERROR) && (conn->flags & CO_FL_HANDSHAKE)))
Christopher Faulet539e0292018-11-19 10:40:09 +01002089 goto end;
2090 h1c->flags &= ~H1C_F_CS_WAIT_CONN;
Christopher Fauleta0883e62018-12-11 16:26:50 +01002091 h1_wake_stream_for_send(h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002092 }
2093
Christopher Fauletfeb11742018-11-29 15:12:34 +01002094 if (!h1s) {
Christopher Faulet470438c2019-07-11 15:40:25 +02002095 if (h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTDOWN) ||
Christopher Faulete31a0f12019-12-05 10:23:37 +01002096 conn->flags & (CO_FL_ERROR|CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH))
Christopher Faulet539e0292018-11-19 10:40:09 +01002097 goto release;
Christopher Faulete31a0f12019-12-05 10:23:37 +01002098 if (!conn_is_back(conn) && (h1c->flags & H1C_F_CS_IDLE)) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01002099 if (!h1s_create(h1c, NULL, NULL))
Christopher Faulet539e0292018-11-19 10:40:09 +01002100 goto release;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002101 }
Christopher Faulet1a7ad7a2018-12-04 16:10:44 +01002102 else
Olivier Houcharde7284782018-12-06 18:54:54 +01002103 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01002104 h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002105 }
2106
Christopher Fauletfeb11742018-11-29 15:12:34 +01002107 if (b_data(&h1c->ibuf) && h1s->csinfo.t_idle == -1)
2108 h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake;
2109
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002110 if (conn_xprt_read0_pending(conn))
2111 h1s->flags |= H1S_F_REOS;
2112
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002113 if (!h1s_data_pending(h1s) && h1s && h1s->cs && h1s->cs->data_cb->wake &&
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002114 (h1s->flags & H1S_F_REOS || h1c->flags & H1C_F_CS_ERROR ||
Olivier Houchard32d75ed2019-01-14 17:27:23 +01002115 conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH))) {
Olivier Houchard75159a92018-12-03 18:46:09 +01002116 if (h1c->flags & H1C_F_CS_ERROR || conn->flags & CO_FL_ERROR)
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002117 h1s->cs->flags |= CS_FL_ERROR;
Olivier Houchard75159a92018-12-03 18:46:09 +01002118 h1s->cs->data_cb->wake(h1s->cs);
2119 }
Christopher Faulet47365272018-10-31 17:40:50 +01002120 end:
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002121 if (h1c->task) {
2122 h1c->task->expire = TICK_ETERNITY;
2123 if (b_data(&h1c->obuf)) {
Christopher Faulet666a0c42019-01-08 11:12:04 +01002124 h1c->task->expire = tick_add(now_ms, ((h1c->flags & (H1C_F_CS_SHUTW_NOW|H1C_F_CS_SHUTDOWN))
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002125 ? h1c->shut_timeout
2126 : h1c->timeout));
2127 task_queue(h1c->task);
2128 }
2129 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002130 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01002131
2132 release:
Christopher Faulet73c12072019-04-08 11:23:22 +02002133 h1_release(h1c);
Christopher Faulet539e0292018-11-19 10:40:09 +01002134 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002135}
2136
2137static struct task *h1_io_cb(struct task *t, void *ctx, unsigned short status)
2138{
2139 struct h1c *h1c = ctx;
2140 int ret = 0;
2141
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002142 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002143 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002144 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02002145 ret |= h1_recv(h1c);
Christopher Faulet81d48432018-11-19 21:22:43 +01002146 if (ret || !h1c->h1s)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002147 h1_process(h1c);
2148 return NULL;
2149}
2150
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002151static void h1_reset(struct connection *conn)
2152{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002153 struct h1c *h1c = conn->ctx;
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002154
2155 /* Reset the flags, and let the mux know we're waiting for a connection */
2156 h1c->flags = H1C_F_CS_WAIT_CONN;
2157}
Christopher Faulet51dbc942018-09-13 09:05:15 +02002158
2159static int h1_wake(struct connection *conn)
2160{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002161 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01002162 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002163
Christopher Faulet539e0292018-11-19 10:40:09 +01002164 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01002165 ret = h1_process(h1c);
2166 if (ret == 0) {
2167 struct h1s *h1s = h1c->h1s;
2168
2169 if (h1s && h1s->cs && h1s->cs->data_cb->wake)
2170 ret = h1s->cs->data_cb->wake(h1s->cs);
2171 }
2172 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002173}
2174
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002175/* Connection timeout management. The principle is that if there's no receipt
2176 * nor sending for a certain amount of time, the connection is closed.
2177 */
2178static struct task *h1_timeout_task(struct task *t, void *context, unsigned short state)
2179{
2180 struct h1c *h1c = context;
2181 int expired = tick_is_expired(t->expire, now_ms);
2182
2183 if (!expired && h1c)
2184 return t;
2185
Olivier Houchard3f795f72019-04-17 22:51:06 +02002186 task_destroy(t);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002187
2188 if (!h1c) {
2189 /* resources were already deleted */
2190 return NULL;
2191 }
2192
2193 h1c->task = NULL;
2194 /* If a stream is still attached to the mux, just set an error and wait
2195 * for the stream's timeout. Otherwise, release the mux. This is only ok
2196 * because same timeouts are used.
2197 */
2198 if (h1c->h1s && h1c->h1s->cs)
2199 h1c->flags |= H1C_F_CS_ERROR;
2200 else
Christopher Faulet73c12072019-04-08 11:23:22 +02002201 h1_release(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002202 return NULL;
2203}
2204
Christopher Faulet51dbc942018-09-13 09:05:15 +02002205/*******************************************/
2206/* functions below are used by the streams */
2207/*******************************************/
Christopher Faulet73c12072019-04-08 11:23:22 +02002208
Christopher Faulet51dbc942018-09-13 09:05:15 +02002209/*
2210 * Attach a new stream to a connection
2211 * (Used for outgoing connections)
2212 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01002213static struct conn_stream *h1_attach(struct connection *conn, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002214{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002215 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002216 struct conn_stream *cs = NULL;
2217 struct h1s *h1s;
2218
2219 if (h1c->flags & H1C_F_CS_ERROR)
2220 goto end;
2221
2222 cs = cs_new(h1c->conn);
2223 if (!cs)
2224 goto end;
2225
Olivier Houchardf502aca2018-12-14 19:42:40 +01002226 h1s = h1s_create(h1c, cs, sess);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002227 if (h1s == NULL)
2228 goto end;
2229
2230 return cs;
2231 end:
2232 cs_free(cs);
2233 return NULL;
2234}
2235
2236/* Retrieves a valid conn_stream from this connection, or returns NULL. For
2237 * this mux, it's easy as we can only store a single conn_stream.
2238 */
2239static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
2240{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002241 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002242 struct h1s *h1s = h1c->h1s;
2243
2244 if (h1s)
2245 return h1s->cs;
2246
2247 return NULL;
2248}
2249
Christopher Faulet73c12072019-04-08 11:23:22 +02002250static void h1_destroy(void *ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002251{
Christopher Faulet73c12072019-04-08 11:23:22 +02002252 struct h1c *h1c = ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002253
Christopher Faulet39a96ee2019-04-08 10:52:21 +02002254 if (!h1c->h1s || !h1c->conn || h1c->conn->ctx != h1c)
Christopher Faulet73c12072019-04-08 11:23:22 +02002255 h1_release(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002256}
2257
2258/*
2259 * Detach the stream from the connection and possibly release the connection.
2260 */
2261static void h1_detach(struct conn_stream *cs)
2262{
2263 struct h1s *h1s = cs->ctx;
2264 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01002265 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01002266 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002267
2268 cs->ctx = NULL;
2269 if (!h1s)
2270 return;
2271
Olivier Houchardf502aca2018-12-14 19:42:40 +01002272 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002273 h1c = h1s->h1c;
2274 h1s->cs = NULL;
2275
Olivier Houchard8a786902018-12-15 16:05:40 +01002276 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
2277 h1s_destroy(h1s);
2278
Christopher Faulete31a0f12019-12-05 10:23:37 +01002279 if (conn_is_back(h1c->conn) && (h1c->flags & H1C_F_CS_IDLE)) {
Christopher Faulet0bf28f82019-07-19 14:51:06 +02002280 /* If there are any excess server data in the input buffer,
2281 * release it and close the connection ASAP (some data may
2282 * remain in the output buffer). This happens if a server sends
2283 * invalid responses. So in such case, we don't want to reuse
2284 * the connection
Christopher Faulet39e679b2019-07-19 11:34:08 +02002285 */
Christopher Faulet0bf28f82019-07-19 14:51:06 +02002286 if (b_data(&h1c->ibuf)) {
2287 h1_release_buf(h1c, &h1c->ibuf);
Christopher Faulete31a0f12019-12-05 10:23:37 +01002288 h1c->flags = (h1c->flags & ~H1C_F_CS_IDLE) | H1C_F_CS_SHUTW_NOW;
Christopher Faulet0bf28f82019-07-19 14:51:06 +02002289 goto release;
2290 }
Christopher Faulet39e679b2019-07-19 11:34:08 +02002291
Christopher Faulet9400a392018-11-23 23:10:39 +01002292 /* Never ever allow to reuse a connection from a non-reuse backend */
Olivier Houchard44d59142018-12-13 18:46:22 +01002293 if ((h1c->px->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
Christopher Faulet9400a392018-11-23 23:10:39 +01002294 h1c->conn->flags |= CO_FL_PRIVATE;
2295
Olivier Houchard44d59142018-12-13 18:46:22 +01002296 if (!(h1c->conn->owner)) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01002297 h1c->conn->owner = sess;
Olivier Houchard351411f2018-12-27 17:20:54 +01002298 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
2299 h1c->conn->owner = NULL;
2300 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn))
2301 /* The server doesn't want it, let's kill the connection right away */
Olivier Houchard109ba132020-02-14 13:23:45 +01002302 h1c->conn->mux->destroy(h1c);
Olivier Houchard351411f2018-12-27 17:20:54 +01002303 else
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002304 tasklet_wakeup(h1c->wait_event.tasklet);
Olivier Houchard351411f2018-12-27 17:20:54 +01002305 return;
Olivier Houchard351411f2018-12-27 17:20:54 +01002306 }
Olivier Houchard44d59142018-12-13 18:46:22 +01002307 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002308 if (h1c->conn->owner == sess) {
2309 int ret = session_check_idle_conn(sess, h1c->conn);
2310 if (ret == -1)
2311 /* The connection got destroyed, let's leave */
2312 return;
2313 else if (ret == 1) {
2314 /* The connection was added to the server list,
2315 * wake the task so we can subscribe to events
2316 */
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002317 tasklet_wakeup(h1c->wait_event.tasklet);
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002318 return;
2319 }
2320 }
Christopher Faulet9400a392018-11-23 23:10:39 +01002321 /* we're in keep-alive with an idle connection, monitor it if not already done */
Olivier Houchard44d59142018-12-13 18:46:22 +01002322 if (LIST_ISEMPTY(&h1c->conn->list)) {
Christopher Faulet9400a392018-11-23 23:10:39 +01002323 struct server *srv = objt_server(h1c->conn->target);
2324
2325 if (srv) {
2326 if (h1c->conn->flags & CO_FL_PRIVATE)
2327 LIST_ADD(&srv->priv_conns[tid], &h1c->conn->list);
Olivier Houchard8a786902018-12-15 16:05:40 +01002328 else if (is_not_first)
Christopher Faulet9400a392018-11-23 23:10:39 +01002329 LIST_ADD(&srv->safe_conns[tid], &h1c->conn->list);
2330 else
2331 LIST_ADD(&srv->idle_conns[tid], &h1c->conn->list);
2332 }
2333 }
2334 }
2335
Christopher Faulet0bf28f82019-07-19 14:51:06 +02002336 release:
Christopher Faulet9fa93f62019-06-28 17:41:42 +02002337 /* 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 +02002338 if ((h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTDOWN|H1C_F_UPG_H2C)) ||
2339 (h1c->conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) ||
2340 ((h1c->flags & H1C_F_CS_SHUTW_NOW) && !b_data(&h1c->obuf)) ||
2341 !h1c->conn->owner)
Christopher Faulet73c12072019-04-08 11:23:22 +02002342 h1_release(h1c);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002343 else {
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002344 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002345 if (h1c->task) {
2346 h1c->task->expire = TICK_ETERNITY;
2347 if (b_data(&h1c->obuf)) {
Christopher Faulet666a0c42019-01-08 11:12:04 +01002348 h1c->task->expire = tick_add(now_ms, ((h1c->flags & (H1C_F_CS_SHUTW_NOW|H1C_F_CS_SHUTDOWN))
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002349 ? h1c->shut_timeout
2350 : h1c->timeout));
2351 task_queue(h1c->task);
2352 }
2353 }
2354 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002355}
2356
2357
2358static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
2359{
2360 struct h1s *h1s = cs->ctx;
Christopher Faulet7f366362019-04-08 10:51:20 +02002361 struct h1c *h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002362
2363 if (!h1s)
2364 return;
Christopher Faulet7f366362019-04-08 10:51:20 +02002365 h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002366
Christopher Faulet7f366362019-04-08 10:51:20 +02002367 if ((cs->flags & CS_FL_KILL_CONN) || (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)))
2368 goto do_shutr;
2369
Christopher Faulet0ef372a2019-04-08 10:57:20 +02002370 if ((h1c->flags & H1C_F_UPG_H2C) || (h1s->flags & H1S_F_WANT_KAL))
Christopher Fauletf2824e62018-10-01 12:12:37 +02002371 return;
2372
Christopher Faulet7f366362019-04-08 10:51:20 +02002373 do_shutr:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002374 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
2375 if (cs->flags & CS_FL_SHR)
2376 return;
2377 if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002378 cs->conn->xprt->shutr(cs->conn, cs->conn->xprt_ctx,
Christopher Fauletf36e72b2019-12-05 11:18:31 +01002379 (mode == CS_SHR_DRAIN));
Christopher Faulet51dbc942018-09-13 09:05:15 +02002380}
2381
2382static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
2383{
2384 struct h1s *h1s = cs->ctx;
2385 struct h1c *h1c;
2386
2387 if (!h1s)
2388 return;
2389 h1c = h1s->h1c;
2390
Christopher Faulet7f366362019-04-08 10:51:20 +02002391 if ((cs->flags & CS_FL_KILL_CONN) || (h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)))
2392 goto do_shutw;
Olivier Houchardd2e88c72018-12-19 15:55:23 +01002393
Christopher Faulet0ef372a2019-04-08 10:57:20 +02002394 if ((h1c->flags & H1C_F_UPG_H2C) ||
2395 ((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 +02002396 return;
2397
Christopher Faulet7f366362019-04-08 10:51:20 +02002398 do_shutw:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002399 h1c->flags |= H1C_F_CS_SHUTW_NOW;
2400 if ((cs->flags & CS_FL_SHW) || b_data(&h1c->obuf))
2401 return;
2402
Christopher Faulet666a0c42019-01-08 11:12:04 +01002403 h1_shutw_conn(cs->conn, mode);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002404}
2405
Christopher Faulet666a0c42019-01-08 11:12:04 +01002406static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002407{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002408 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002409
Christopher Faulet666a0c42019-01-08 11:12:04 +01002410 conn_xprt_shutw(conn);
2411 conn_sock_shutw(conn, (mode == CS_SHW_NORMAL));
Christopher Fauletf36e72b2019-12-05 11:18:31 +01002412 h1c->flags = (h1c->flags & ~H1C_F_CS_SHUTW_NOW) | H1C_F_CS_SHUTDOWN;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002413}
2414
2415/* Called from the upper layer, to unsubscribe to events */
2416static int h1_unsubscribe(struct conn_stream *cs, int event_type, void *param)
2417{
2418 struct wait_event *sw;
2419 struct h1s *h1s = cs->ctx;
2420
2421 if (!h1s)
2422 return 0;
2423
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002424 if (event_type & SUB_RETRY_RECV) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002425 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002426 BUG_ON(h1s->recv_wait != sw);
2427 sw->events &= ~SUB_RETRY_RECV;
2428 h1s->recv_wait = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002429 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002430 if (event_type & SUB_RETRY_SEND) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002431 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002432 BUG_ON(h1s->send_wait != sw);
2433 sw->events &= ~SUB_RETRY_SEND;
2434 h1s->send_wait = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002435 }
2436 return 0;
2437}
2438
2439/* Called from the upper layer, to subscribe to events, such as being able to send */
2440static int h1_subscribe(struct conn_stream *cs, int event_type, void *param)
2441{
2442 struct wait_event *sw;
2443 struct h1s *h1s = cs->ctx;
2444
2445 if (!h1s)
2446 return -1;
2447
2448 switch (event_type) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002449 case SUB_RETRY_RECV:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002450 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002451 BUG_ON(h1s->recv_wait != NULL || (sw->events & SUB_RETRY_RECV));
2452 sw->events |= SUB_RETRY_RECV;
2453 h1s->recv_wait = sw;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002454 return 0;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002455 case SUB_RETRY_SEND:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002456 sw = param;
Olivier Houchard00b8f7c2019-05-14 18:02:23 +02002457 BUG_ON(h1s->send_wait != NULL || (sw->events & SUB_RETRY_SEND));
2458 sw->events |= SUB_RETRY_SEND;
2459 h1s->send_wait = sw;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002460 return 0;
2461 default:
2462 break;
2463 }
2464 return -1;
2465}
2466
2467/* Called from the upper layer, to receive data */
2468static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
2469{
2470 struct h1s *h1s = cs->ctx;
Christopher Faulet539e0292018-11-19 10:40:09 +01002471 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002472 size_t ret = 0;
2473
Christopher Faulet539e0292018-11-19 10:40:09 +01002474 if (!(h1c->flags & H1C_F_IN_ALLOC))
Christopher Faulet30db3d72019-05-17 15:35:33 +02002475 ret = h1_process_input(h1c, buf, count);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002476
Christopher Faulete18777b2019-04-16 16:46:36 +02002477 if (flags & CO_RFL_BUF_FLUSH) {
2478 struct h1m *h1m = (!conn_is_back(cs->conn) ? &h1s->req : &h1s->res);
2479
2480 if (h1m->state != H1_MSG_TUNNEL || (h1m->state == H1_MSG_DATA && h1m->curr_len))
2481 h1s->flags |= H1S_F_BUF_FLUSH;
2482 }
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002483 else if (ret > 0 || (h1s->flags & H1S_F_SPLICED_DATA)) {
2484 h1s->flags &= ~H1S_F_SPLICED_DATA;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002485 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002486 tasklet_wakeup(h1c->wait_event.tasklet);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002487 }
2488 return ret;
2489}
2490
2491
2492/* Called from the upper layer, to send data */
2493static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
2494{
2495 struct h1s *h1s = cs->ctx;
2496 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002497 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002498
2499 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002500 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002501
2502 h1c = h1s->h1c;
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002503 if (h1c->flags & H1C_F_CS_WAIT_CONN)
2504 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002505
Christopher Fauletc31872f2019-06-04 22:09:36 +02002506 while (count) {
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002507 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002508
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002509 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
2510 ret = h1_process_output(h1c, buf, count);
2511 if (!ret)
2512 break;
2513 total += ret;
Christopher Fauletc31872f2019-06-04 22:09:36 +02002514 count -= ret;
Olivier Houcharda1012862020-01-15 19:13:32 +01002515 if ((h1c->wait_event.events & SUB_RETRY_SEND) || !h1_send(h1c))
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002516 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002517 }
Christopher Fauletf96c3222018-11-20 18:38:01 +01002518
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002519 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002520}
2521
Willy Tarreaue5733232019-05-22 19:24:06 +02002522#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02002523/* Send and get, using splicing */
2524static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
2525{
2526 struct h1s *h1s = cs->ctx;
2527 struct h1m *h1m = (!conn_is_back(cs->conn) ? &h1s->req : &h1s->res);
2528 int ret = 0;
2529
Christopher Faulet2c411be2019-11-05 16:24:27 +01002530 if ((h1m->flags & H1_MF_CHNK) || (h1m->state != H1_MSG_DATA && h1m->state != H1_MSG_TUNNEL)) {
Christopher Faulete18777b2019-04-16 16:46:36 +02002531 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
Christopher Faulet1146f972019-05-29 14:35:24 +02002532 if (!(h1s->h1c->wait_event.events & SUB_RETRY_RECV))
2533 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_RECV, &h1s->h1c->wait_event);
Christopher Faulete18777b2019-04-16 16:46:36 +02002534 goto end;
2535 }
2536
Willy Tarreaufbdf90a2019-06-03 13:42:54 +02002537 if (h1s_data_pending(h1s)) {
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002538 h1s->flags |= H1S_F_BUF_FLUSH;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002539 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002540 }
2541
2542 h1s->flags &= ~H1S_F_BUF_FLUSH;
2543 h1s->flags |= H1S_F_SPLICED_DATA;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002544 if (h1m->state == H1_MSG_DATA && count > h1m->curr_len)
2545 count = h1m->curr_len;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002546 ret = cs->conn->xprt->rcv_pipe(cs->conn, cs->conn->xprt_ctx, pipe, count);
Christopher Faulet1146f972019-05-29 14:35:24 +02002547 if (h1m->state == H1_MSG_DATA && ret >= 0) {
Christopher Faulet1be55f92018-10-02 15:59:23 +02002548 h1m->curr_len -= ret;
Christopher Faulete18777b2019-04-16 16:46:36 +02002549 if (!h1m->curr_len)
2550 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
2551 }
2552
Christopher Faulet1be55f92018-10-02 15:59:23 +02002553 end:
Christopher Faulet038ad812019-04-17 11:03:22 +02002554 if (conn_xprt_read0_pending(cs->conn)) {
Willy Tarreauc493c9c2019-06-03 14:18:22 +02002555 h1s->flags |= H1S_F_REOS;
Christopher Fauletac4778c2019-11-15 11:14:23 +01002556 h1s->flags &= ~(H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA);
Christopher Faulet038ad812019-04-17 11:03:22 +02002557 }
Willy Tarreau7e9dd732020-01-17 16:19:34 +01002558
2559 if (h1m->state != H1_MSG_DATA || !h1m->curr_len)
2560 cs->flags &= ~CS_FL_MAY_SPLICE;
2561
Christopher Faulet1be55f92018-10-02 15:59:23 +02002562 return ret;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002563}
2564
2565static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
2566{
2567 struct h1s *h1s = cs->ctx;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002568 int ret = 0;
2569
2570 if (b_data(&h1s->h1c->obuf))
2571 goto end;
2572
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002573 ret = cs->conn->xprt->snd_pipe(cs->conn, cs->conn->xprt_ctx, pipe);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002574 end:
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002575 if (pipe->data) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002576 if (!(h1s->h1c->wait_event.events & SUB_RETRY_SEND))
Olivier Houcharde179d0e2019-03-21 18:27:17 +01002577 cs->conn->xprt->subscribe(cs->conn, cs->conn->xprt_ctx, SUB_RETRY_SEND, &h1s->h1c->wait_event);
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002578 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002579 return ret;
2580}
2581#endif
2582
Olivier Houchard198d1292019-10-25 16:19:26 +02002583static int h1_ctl(struct connection *conn, enum mux_ctl_type mux_ctl, void *output)
2584{
2585 int ret = 0;
2586 switch (mux_ctl) {
2587 case MUX_STATUS:
2588 if (conn->flags & CO_FL_CONNECTED)
2589 ret |= MUX_STATUS_READY;
2590 return ret;
2591 default:
2592 return -1;
2593 }
2594}
2595
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002596/* for debugging with CLI's "show fd" command */
2597static void h1_show_fd(struct buffer *msg, struct connection *conn)
2598{
2599 struct h1c *h1c = conn->ctx;
2600 struct h1s *h1s = h1c->h1s;
2601
Christopher Fauletf376a312019-01-04 15:16:06 +01002602 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
2603 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002604 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
2605 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
2606 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
2607 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
2608
2609 if (h1s) {
2610 char *method;
2611
2612 if (h1s->meth < HTTP_METH_OTHER)
2613 method = http_known_methods[h1s->meth].ptr;
2614 else
2615 method = "UNKNOWN";
2616 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
2617 " .meth=%s status=%d",
2618 h1s, h1s->flags,
2619 h1m_state_str(h1s->req.state),
2620 h1m_state_str(h1s->res.state), method, h1s->status);
2621 if (h1s->cs)
2622 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
2623 h1s->cs->flags, h1s->cs->data);
2624 }
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002625}
2626
2627
2628/* Add an entry in the headers map. Returns -1 on error and 0 on success. */
2629static int add_hdr_case_adjust(const char *from, const char *to, char **err)
2630{
2631 struct h1_hdr_entry *entry;
2632
2633 /* Be sure there is a non-empty <to> */
2634 if (!strlen(to)) {
2635 memprintf(err, "expect <to>");
2636 return -1;
2637 }
2638
2639 /* Be sure only the case differs between <from> and <to> */
2640 if (strcasecmp(from, to)) {
2641 memprintf(err, "<from> and <to> must not differ execpt the case");
2642 return -1;
2643 }
2644
2645 /* Be sure <from> does not already existsin the tree */
2646 if (ebis_lookup(&hdrs_map.map, from)) {
2647 memprintf(err, "duplicate entry '%s'", from);
2648 return -1;
2649 }
2650
2651 /* Create the entry and insert it in the tree */
2652 entry = malloc(sizeof(*entry));
2653 if (!entry) {
2654 memprintf(err, "out of memory");
2655 return -1;
2656 }
2657
2658 entry->node.key = strdup(from);
2659 entry->name.ptr = strdup(to);
2660 entry->name.len = strlen(to);
2661 if (!entry->node.key || !entry->name.ptr) {
2662 free(entry->node.key);
2663 free(entry->name.ptr);
2664 free(entry);
2665 memprintf(err, "out of memory");
2666 return -1;
2667 }
2668 ebis_insert(&hdrs_map.map, &entry->node);
2669 return 0;
2670}
2671
2672static void h1_hdeaders_case_adjust_deinit()
2673{
2674 struct ebpt_node *node, *next;
2675 struct h1_hdr_entry *entry;
2676
2677 node = ebpt_first(&hdrs_map.map);
2678 while (node) {
2679 next = ebpt_next(node);
2680 ebpt_delete(node);
2681 entry = container_of(node, struct h1_hdr_entry, node);
2682 free(entry->node.key);
2683 free(entry->name.ptr);
2684 free(entry);
2685 node = next;
2686 }
2687 free(hdrs_map.name);
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002688}
2689
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002690static int cfg_h1_headers_case_adjust_postparser()
2691{
2692 FILE *file = NULL;
2693 char *c, *key_beg, *key_end, *value_beg, *value_end;
2694 char *err;
2695 int rc, line = 0, err_code = 0;
2696
2697 if (!hdrs_map.name)
2698 goto end;
2699
2700 file = fopen(hdrs_map.name, "r");
2701 if (!file) {
2702 ha_alert("config : h1-outgoing-headers-case-adjust-file '%s': failed to open file.\n",
2703 hdrs_map.name);
2704 err_code |= ERR_ALERT | ERR_FATAL;
2705 goto end;
2706 }
2707
2708 /* now parse all lines. The file may contain only two header name per
2709 * line, separated by spaces. All heading and trailing spaces will be
2710 * ignored. Lines starting with a # are ignored.
2711 */
2712 while (fgets(trash.area, trash.size, file) != NULL) {
2713 line++;
2714 c = trash.area;
2715
2716 /* strip leading spaces and tabs */
2717 while (*c == ' ' || *c == '\t')
2718 c++;
2719
2720 /* ignore emptu lines, or lines beginning with a dash */
2721 if (*c == '#' || *c == '\0' || *c == '\r' || *c == '\n')
2722 continue;
2723
2724 /* look for the end of the key */
2725 key_beg = c;
2726 while (*c != '\0' && *c != ' ' && *c != '\t' && *c != '\n' && *c != '\r')
2727 c++;
2728 key_end = c;
2729
2730 /* strip middle spaces and tabs */
2731 while (*c == ' ' || *c == '\t')
2732 c++;
2733
2734 /* look for the end of the value, it is the end of the line */
2735 value_beg = c;
2736 while (*c && *c != '\n' && *c != '\r')
2737 c++;
2738 value_end = c;
2739
2740 /* trim possibly trailing spaces and tabs */
2741 while (value_end > value_beg && (value_end[-1] == ' ' || value_end[-1] == '\t'))
2742 value_end--;
2743
2744 /* set final \0 and check entries */
2745 *key_end = '\0';
2746 *value_end = '\0';
2747
2748 err = NULL;
2749 rc = add_hdr_case_adjust(key_beg, value_beg, &err);
2750 if (rc < 0) {
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002751 ha_alert("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
2752 hdrs_map.name, err, line);
2753 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Faulet27f20172019-07-30 16:51:42 +02002754 free(err);
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002755 goto end;
2756 }
2757 if (rc > 0) {
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002758 ha_warning("config : h1-outgoing-headers-case-adjust-file '%s' : %s at line %d.\n",
2759 hdrs_map.name, err, line);
2760 err_code |= ERR_WARN;
Christopher Faulet27f20172019-07-30 16:51:42 +02002761 free(err);
Christopher Fauleta99ff4d2019-07-22 16:18:24 +02002762 }
2763 }
2764
2765 end:
2766 if (file)
2767 fclose(file);
2768 hap_register_post_deinit(h1_hdeaders_case_adjust_deinit);
2769 return err_code;
2770}
2771
2772
2773/* config parser for global "h1-outgoing-header-case-adjust" */
2774static int cfg_parse_h1_header_case_adjust(char **args, int section_type, struct proxy *curpx,
2775 struct proxy *defpx, const char *file, int line,
2776 char **err)
2777{
2778 if (too_many_args(2, args, err, NULL))
2779 return -1;
2780 if (!*(args[1]) || !*(args[2])) {
2781 memprintf(err, "'%s' expects <from> and <to> as argument.", args[0]);
2782 return -1;
2783 }
2784 return add_hdr_case_adjust(args[1], args[2], err);
2785}
2786
2787/* config parser for global "h1-outgoing-headers-case-adjust-file" */
2788static int cfg_parse_h1_headers_case_adjust_file(char **args, int section_type, struct proxy *curpx,
2789 struct proxy *defpx, const char *file, int line,
2790 char **err)
2791{
2792 if (too_many_args(1, args, err, NULL))
2793 return -1;
2794 if (!*(args[1])) {
2795 memprintf(err, "'%s' expects <file> as argument.", args[0]);
2796 return -1;
2797 }
2798 free(hdrs_map.name);
2799 hdrs_map.name = strdup(args[1]);
2800 return 0;
2801}
2802
2803
2804/* config keyword parsers */
2805static struct cfg_kw_list cfg_kws = {{ }, {
2806 { CFG_GLOBAL, "h1-case-adjust", cfg_parse_h1_header_case_adjust },
2807 { CFG_GLOBAL, "h1-case-adjust-file", cfg_parse_h1_headers_case_adjust_file },
2808 { 0, NULL, NULL },
2809 }
2810};
2811
2812INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
2813REGISTER_CONFIG_POSTPARSER("h1-headers-map", cfg_h1_headers_case_adjust_postparser);
2814
2815
Christopher Faulet51dbc942018-09-13 09:05:15 +02002816/****************************************/
2817/* MUX initialization and instanciation */
2818/****************************************/
2819
2820/* The mux operations */
Willy Tarreauf77a1582019-01-10 10:00:08 +01002821static const struct mux_ops mux_h1_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002822 .init = h1_init,
2823 .wake = h1_wake,
2824 .attach = h1_attach,
2825 .get_first_cs = h1_get_first_cs,
Christopher Fauletfeb11742018-11-29 15:12:34 +01002826 .get_cs_info = h1_get_cs_info,
Christopher Faulet51dbc942018-09-13 09:05:15 +02002827 .detach = h1_detach,
2828 .destroy = h1_destroy,
2829 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01002830 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02002831 .rcv_buf = h1_rcv_buf,
2832 .snd_buf = h1_snd_buf,
Willy Tarreaue5733232019-05-22 19:24:06 +02002833#if defined(USE_LINUX_SPLICE)
Christopher Faulet1be55f92018-10-02 15:59:23 +02002834 .rcv_pipe = h1_rcv_pipe,
2835 .snd_pipe = h1_snd_pipe,
2836#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02002837 .subscribe = h1_subscribe,
2838 .unsubscribe = h1_unsubscribe,
2839 .shutr = h1_shutr,
2840 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002841 .show_fd = h1_show_fd,
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002842 .reset = h1_reset,
Olivier Houchard198d1292019-10-25 16:19:26 +02002843 .ctl = h1_ctl,
Christopher Faulet9f38f5a2019-04-03 09:53:32 +02002844 .flags = MX_FL_HTX,
Willy Tarreau0a7a4fb2019-05-22 11:36:54 +02002845 .name = "H1",
Christopher Faulet51dbc942018-09-13 09:05:15 +02002846};
2847
2848
2849/* this mux registers default HTX proto */
2850static struct mux_proto_list mux_proto_htx =
2851{ .token = IST(""), .mode = PROTO_MODE_HTX, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
2852
Willy Tarreau0108d902018-11-25 19:14:37 +01002853INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_htx);
2854
Christopher Faulet51dbc942018-09-13 09:05:15 +02002855/*
2856 * Local variables:
2857 * c-indent-level: 8
2858 * c-basic-offset: 8
2859 * End:
2860 */