blob: 9fb570d026ee56f022bc6e7d3df21ce858e8bb88 [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>
Willy Tarreaub96b77e2018-12-11 10:22:41 +010015#include <common/htx.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010016#include <common/initcall.h>
Christopher Faulet51dbc942018-09-13 09:05:15 +020017
Christopher Faulet1be55f92018-10-02 15:59:23 +020018#include <types/pipe.h>
Christopher Fauletf2824e62018-10-01 12:12:37 +020019#include <types/proxy.h>
20#include <types/session.h>
21
Christopher Faulet51dbc942018-09-13 09:05:15 +020022#include <proto/connection.h>
Christopher Faulet9768c262018-10-22 09:34:31 +020023#include <proto/http_htx.h>
Christopher Faulet129817b2018-09-20 16:14:40 +020024#include <proto/log.h>
Olivier Houchard44d59142018-12-13 18:46:22 +010025#include <proto/session.h>
Christopher Faulet51dbc942018-09-13 09:05:15 +020026#include <proto/stream.h>
27#include <proto/stream_interface.h>
28
29/*
30 * H1 Connection flags (32 bits)
31 */
32#define H1C_F_NONE 0x00000000
33
34/* Flags indicating why writing output data are blocked */
35#define H1C_F_OUT_ALLOC 0x00000001 /* mux is blocked on lack of output buffer */
36#define H1C_F_OUT_FULL 0x00000002 /* mux is blocked on output buffer full */
37/* 0x00000004 - 0x00000008 unused */
38
39/* Flags indicating why reading input data are blocked. */
40#define H1C_F_IN_ALLOC 0x00000010 /* mux is blocked on lack of input buffer */
41#define H1C_F_IN_FULL 0x00000020 /* mux is blocked on input buffer full */
Christopher Fauletcb55f482018-12-10 11:56:47 +010042#define H1C_F_IN_BUSY 0x00000040
Christopher Faulet539e0292018-11-19 10:40:09 +010043/* 0x00000040 - 0x00000800 unused */
Christopher Faulet51dbc942018-09-13 09:05:15 +020044
45#define H1C_F_CS_ERROR 0x00001000 /* connection must be closed ASAP because an error occurred */
46#define H1C_F_CS_SHUTW_NOW 0x00002000 /* connection must be shut down for writes ASAP */
Christopher Faulet666a0c42019-01-08 11:12:04 +010047#define H1C_F_CS_SHUTDOWN 0x00004000 /* connection is shut down for read and writes */
Christopher Faulet3b88b8d2018-10-26 17:36:03 +020048#define H1C_F_CS_WAIT_CONN 0x00008000 /* waiting for the connection establishment */
Christopher Faulet51dbc942018-09-13 09:05:15 +020049
Christopher Fauletf2824e62018-10-01 12:12:37 +020050#define H1C_F_WAIT_NEXT_REQ 0x00010000 /* waiting for the next request to start, use keep-alive timeout */
Christopher Faulet129817b2018-09-20 16:14:40 +020051
Christopher Faulet51dbc942018-09-13 09:05:15 +020052/*
53 * H1 Stream flags (32 bits)
54 */
Christopher Faulet129817b2018-09-20 16:14:40 +020055#define H1S_F_NONE 0x00000000
56#define H1S_F_ERROR 0x00000001 /* An error occurred on the H1 stream */
Christopher Fauletf2824e62018-10-01 12:12:37 +020057#define H1S_F_REQ_ERROR 0x00000002 /* An error occurred during the request parsing/xfer */
58#define H1S_F_RES_ERROR 0x00000004 /* An error occurred during the response parsing/xfer */
Christopher Faulet539e0292018-11-19 10:40:09 +010059/* 0x00000008 unused */
Christopher Fauletf2824e62018-10-01 12:12:37 +020060#define H1S_F_WANT_KAL 0x00000010
61#define H1S_F_WANT_TUN 0x00000020
62#define H1S_F_WANT_CLO 0x00000040
63#define H1S_F_WANT_MSK 0x00000070
64#define H1S_F_NOT_FIRST 0x00000080 /* The H1 stream is not the first one */
Christopher Faulet539e0292018-11-19 10:40:09 +010065#define H1S_F_BUF_FLUSH 0x00000100 /* Flush input buffer and don't read more data */
Christopher Fauletd44ad5b2018-11-19 21:52:12 +010066#define H1S_F_SPLICED_DATA 0x00000200 /* Set when the kernel splicing is in used */
Willy Tarreau34d23482019-01-03 17:46:56 +010067#define H1S_F_HAVE_I_EOD 0x00000400 /* Set during input process to know the last empty chunk was processed */
68#define H1S_F_HAVE_I_TLR 0x00000800 /* Set during input process to know the trailers were processed */
69#define H1S_F_HAVE_O_EOD 0x00001000 /* Set during output process to know the last empty chunk was processed */
70#define H1S_F_HAVE_O_TLR 0x00002000 /* Set during output process to know the trailers were processed */
Christopher Faulet51dbc942018-09-13 09:05:15 +020071
72/* H1 connection descriptor */
Christopher Faulet51dbc942018-09-13 09:05:15 +020073struct h1c {
74 struct connection *conn;
75 struct proxy *px;
76 uint32_t flags; /* Connection flags: H1C_F_* */
77
78 struct buffer ibuf; /* Input buffer to store data before parsing */
79 struct buffer obuf; /* Output buffer to store data after reformatting */
80
81 struct buffer_wait buf_wait; /* Wait list for buffer allocation */
82 struct wait_event wait_event; /* To be used if we're waiting for I/Os */
83
84 struct h1s *h1s; /* H1 stream descriptor */
Christopher Fauletb8093cf2019-01-03 16:27:28 +010085 struct task *task; /* timeout management task */
86 int timeout; /* idle timeout duration in ticks */
87 int shut_timeout; /* idle timeout duration in ticks after stream shutdown */
Christopher Faulet51dbc942018-09-13 09:05:15 +020088};
89
90/* H1 stream descriptor */
91struct h1s {
92 struct h1c *h1c;
93 struct conn_stream *cs;
Christopher Fauletfeb11742018-11-29 15:12:34 +010094 struct cs_info csinfo; /* CS info, only used for client connections */
95 uint32_t flags; /* Connection flags: H1S_F_* */
Christopher Faulet51dbc942018-09-13 09:05:15 +020096
Christopher Faulet51dbc942018-09-13 09:05:15 +020097 struct wait_event *recv_wait; /* Address of the wait_event the conn_stream associated is waiting on */
98 struct wait_event *send_wait; /* Address of the wait_event the conn_stream associated is waiting on */
Christopher Faulet129817b2018-09-20 16:14:40 +020099
Olivier Houchardf502aca2018-12-14 19:42:40 +0100100 struct session *sess; /* Associated session */
Christopher Faulet129817b2018-09-20 16:14:40 +0200101 struct h1m req;
102 struct h1m res;
103
104 enum http_meth_t meth; /* HTTP resquest method */
105 uint16_t status; /* HTTP response status */
Christopher Faulet51dbc942018-09-13 09:05:15 +0200106};
107
108/* the h1c and h1s pools */
Willy Tarreau8ceae722018-11-26 11:58:30 +0100109DECLARE_STATIC_POOL(pool_head_h1c, "h1c", sizeof(struct h1c));
110DECLARE_STATIC_POOL(pool_head_h1s, "h1s", sizeof(struct h1s));
Christopher Faulet51dbc942018-09-13 09:05:15 +0200111
Christopher Faulet51dbc942018-09-13 09:05:15 +0200112static int h1_recv(struct h1c *h1c);
113static int h1_send(struct h1c *h1c);
114static int h1_process(struct h1c *h1c);
115static struct task *h1_io_cb(struct task *t, void *ctx, unsigned short state);
Christopher Faulet666a0c42019-01-08 11:12:04 +0100116static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode);
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100117static struct task *h1_timeout_task(struct task *t, void *context, unsigned short state);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200118
119/*****************************************************/
120/* functions below are for dynamic buffer management */
121/*****************************************************/
122/*
123 * Indicates whether or not the we may call the h1_recv() function to
124 * attempt to receive data into the buffer and/or parse pending data. The
125 * condition is a bit complex due to some API limits for now. The rules are the
126 * following :
127 * - if an error or a shutdown was detected on the connection and the buffer
128 * is empty, we must not attempt to receive
129 * - if the input buffer failed to be allocated, we must not try to receive
130 * and we know there is nothing pending
131 * - if no flag indicates a blocking condition, we may attempt to receive,
132 * regardless of whether the input buffer is full or not, so that only de
133 * receiving part decides whether or not to block. This is needed because
134 * the connection API indeed prevents us from re-enabling receipt that is
135 * already enabled in a polled state, so we must always immediately stop as
136 * soon as the mux can't proceed so as never to hit an end of read with data
137 * pending in the buffers.
138 * - otherwise must may not attempt to receive
139 */
140static inline int h1_recv_allowed(const struct h1c *h1c)
141{
Christopher Faulet666a0c42019-01-08 11:12:04 +0100142 if (b_data(&h1c->ibuf) == 0 && (h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTDOWN)))
Christopher Faulet51dbc942018-09-13 09:05:15 +0200143 return 0;
144
Christopher Fauletcf56b992018-12-11 16:12:31 +0100145 if (h1c->conn->flags & CO_FL_ERROR || conn_xprt_read0_pending(h1c->conn))
146 return 0;
147
Christopher Fauletcb55f482018-12-10 11:56:47 +0100148 if (!(h1c->flags & (H1C_F_IN_ALLOC|H1C_F_IN_FULL|H1C_F_IN_BUSY)))
Christopher Faulet51dbc942018-09-13 09:05:15 +0200149 return 1;
150
151 return 0;
152}
153
154/*
155 * Tries to grab a buffer and to re-enables processing on mux <target>. The h1
156 * flags are used to figure what buffer was requested. It returns 1 if the
157 * allocation succeeds, in which case the connection is woken up, or 0 if it's
158 * impossible to wake up and we prefer to be woken up later.
159 */
160static int h1_buf_available(void *target)
161{
162 struct h1c *h1c = target;
163
164 if ((h1c->flags & H1C_F_IN_ALLOC) && b_alloc_margin(&h1c->ibuf, 0)) {
165 h1c->flags &= ~H1C_F_IN_ALLOC;
166 if (h1_recv_allowed(h1c))
167 tasklet_wakeup(h1c->wait_event.task);
168 return 1;
169 }
170
171 if ((h1c->flags & H1C_F_OUT_ALLOC) && b_alloc_margin(&h1c->obuf, 0)) {
172 h1c->flags &= ~H1C_F_OUT_ALLOC;
173 tasklet_wakeup(h1c->wait_event.task);
174 return 1;
175 }
176
Christopher Faulet51dbc942018-09-13 09:05:15 +0200177 return 0;
178}
179
180/*
181 * Allocate a buffer. If if fails, it adds the mux in buffer wait queue.
182 */
183static inline struct buffer *h1_get_buf(struct h1c *h1c, struct buffer *bptr)
184{
185 struct buffer *buf = NULL;
186
187 if (likely(LIST_ISEMPTY(&h1c->buf_wait.list)) &&
188 unlikely((buf = b_alloc_margin(bptr, 0)) == NULL)) {
189 h1c->buf_wait.target = h1c;
190 h1c->buf_wait.wakeup_cb = h1_buf_available;
191 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
192 LIST_ADDQ(&buffer_wq, &h1c->buf_wait.list);
193 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
194 __conn_xprt_stop_recv(h1c->conn);
195 }
196 return buf;
197}
198
199/*
200 * Release a buffer, if any, and try to wake up entities waiting in the buffer
201 * wait queue.
202 */
203static inline void h1_release_buf(struct h1c *h1c, struct buffer *bptr)
204{
205 if (bptr->size) {
206 b_free(bptr);
207 offer_buffers(h1c->buf_wait.target, tasks_run_queue);
208 }
209}
210
Willy Tarreau00f18a32019-01-26 12:19:01 +0100211/* returns the number of streams in use on a connection to figure if it's
212 * idle or not. We can't have an h1s without a CS so checking h1s is fine,
213 * as the caller will want to know if it was the last one after a detach().
214 */
215static int h1_used_streams(struct connection *conn)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200216{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100217 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200218
Willy Tarreau00f18a32019-01-26 12:19:01 +0100219 return h1c->h1s ? 1 : 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200220}
221
Willy Tarreau00f18a32019-01-26 12:19:01 +0100222/* returns the number of streams still available on a connection */
223static int h1_avail_streams(struct connection *conn)
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100224{
Willy Tarreau00f18a32019-01-26 12:19:01 +0100225 return 1 - h1_used_streams(conn);
Olivier Houchard8defe4b2018-12-02 01:31:17 +0100226}
Christopher Faulet51dbc942018-09-13 09:05:15 +0200227
Willy Tarreau00f18a32019-01-26 12:19:01 +0100228
Christopher Faulet51dbc942018-09-13 09:05:15 +0200229/*****************************************************************/
230/* functions below are dedicated to the mux setup and management */
231/*****************************************************************/
Christopher Faulet47365272018-10-31 17:40:50 +0100232static struct conn_stream *h1s_new_cs(struct h1s *h1s)
233{
234 struct conn_stream *cs;
235
236 cs = cs_new(h1s->h1c->conn);
237 if (!cs)
238 goto err;
239 h1s->cs = cs;
240 cs->ctx = h1s;
241
242 if (h1s->flags & H1S_F_NOT_FIRST)
243 cs->flags |= CS_FL_NOT_FIRST;
244
245 if (stream_create_from_cs(cs) < 0)
246 goto err;
247 return cs;
248
249 err:
250 cs_free(cs);
251 h1s->cs = NULL;
252 return NULL;
253}
254
Olivier Houchardf502aca2018-12-14 19:42:40 +0100255static struct h1s *h1s_create(struct h1c *h1c, struct conn_stream *cs, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200256{
257 struct h1s *h1s;
258
259 h1s = pool_alloc(pool_head_h1s);
260 if (!h1s)
Christopher Faulet47365272018-10-31 17:40:50 +0100261 goto fail;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200262
263 h1s->h1c = h1c;
264 h1c->h1s = h1s;
265
Olivier Houchardf502aca2018-12-14 19:42:40 +0100266 h1s->sess = sess;
267
Christopher Faulet51dbc942018-09-13 09:05:15 +0200268 h1s->cs = NULL;
Christopher Faulet129817b2018-09-20 16:14:40 +0200269 h1s->flags = H1S_F_NONE;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200270
271 h1s->recv_wait = NULL;
272 h1s->send_wait = NULL;
Christopher Faulet129817b2018-09-20 16:14:40 +0200273
274 h1m_init_req(&h1s->req);
Christopher Faulet9768c262018-10-22 09:34:31 +0200275 h1s->req.flags |= H1_MF_NO_PHDR;
276
Christopher Faulet129817b2018-09-20 16:14:40 +0200277 h1m_init_res(&h1s->res);
Christopher Faulet9768c262018-10-22 09:34:31 +0200278 h1s->res.flags |= H1_MF_NO_PHDR;
Christopher Faulet129817b2018-09-20 16:14:40 +0200279
280 h1s->status = 0;
281 h1s->meth = HTTP_METH_OTHER;
282
Christopher Faulet47365272018-10-31 17:40:50 +0100283 if (h1c->flags & H1C_F_WAIT_NEXT_REQ)
284 h1s->flags |= H1S_F_NOT_FIRST;
285 h1c->flags &= ~H1C_F_WAIT_NEXT_REQ;
286
Christopher Faulet129817b2018-09-20 16:14:40 +0200287 if (!conn_is_back(h1c->conn)) {
288 if (h1c->px->options2 & PR_O2_REQBUG_OK)
289 h1s->req.err_pos = -1;
290 }
291 else {
292 if (h1c->px->options2 & PR_O2_RSPBUG_OK)
293 h1s->res.err_pos = -1;
294 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200295
Christopher Faulet539e0292018-11-19 10:40:09 +0100296 /* If a conn_stream already exists, attach it to this H1S. Otherwise we
297 * create a new one.
298 */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200299 if (cs) {
Christopher Fauletfeb11742018-11-29 15:12:34 +0100300 h1s->csinfo.create_date = date;
301 h1s->csinfo.tv_create = now;
302 h1s->csinfo.t_handshake = 0;
303 h1s->csinfo.t_idle = -1;
304
Christopher Fauletf2824e62018-10-01 12:12:37 +0200305 cs->ctx = h1s;
306 h1s->cs = cs;
307 }
Christopher Faulet47365272018-10-31 17:40:50 +0100308 else {
Olivier Houchardf502aca2018-12-14 19:42:40 +0100309 /* For frontend connections we should always have a session */
310 sess = h1c->conn->owner;
Christopher Fauletfeb11742018-11-29 15:12:34 +0100311
312 h1s->csinfo.create_date = sess->accept_date;
313 h1s->csinfo.tv_create = sess->tv_accept;
314 h1s->csinfo.t_handshake = sess->t_handshake;
315 h1s->csinfo.t_idle = -1;
316
Christopher Faulet47365272018-10-31 17:40:50 +0100317 cs = h1s_new_cs(h1s);
318 if (!cs)
319 goto fail;
320 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200321 return h1s;
Christopher Faulet47365272018-10-31 17:40:50 +0100322
323 fail:
324 pool_free(pool_head_h1s, h1s);
325 return NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200326}
327
328static void h1s_destroy(struct h1s *h1s)
329{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200330 if (h1s) {
331 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200332
Christopher Fauletf2824e62018-10-01 12:12:37 +0200333 h1c->h1s = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200334
Christopher Fauletf2824e62018-10-01 12:12:37 +0200335 if (h1s->recv_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100336 h1s->recv_wait->events &= ~SUB_RETRY_RECV;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200337 if (h1s->send_wait != NULL)
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100338 h1s->send_wait->events &= ~SUB_RETRY_SEND;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200339
Christopher Fauletcb55f482018-12-10 11:56:47 +0100340 h1c->flags &= ~H1C_F_IN_BUSY;
Christopher Faulet47365272018-10-31 17:40:50 +0100341 h1c->flags |= H1C_F_WAIT_NEXT_REQ;
342 if (h1s->flags & (H1S_F_REQ_ERROR|H1S_F_RES_ERROR))
343 h1c->flags |= H1C_F_CS_ERROR;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200344
Christopher Fauletf2824e62018-10-01 12:12:37 +0200345 cs_free(h1s->cs);
346 pool_free(pool_head_h1s, h1s);
347 }
Christopher Faulet51dbc942018-09-13 09:05:15 +0200348}
349
Christopher Fauletfeb11742018-11-29 15:12:34 +0100350static const struct cs_info *h1_get_cs_info(struct conn_stream *cs)
351{
352 struct h1s *h1s = cs->ctx;
353
354 if (h1s && !conn_is_back(cs->conn))
355 return &h1s->csinfo;
356 return NULL;
357}
358
Christopher Faulet51dbc942018-09-13 09:05:15 +0200359/*
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100360 * Initialize the mux once it's attached. It is expected that conn->ctx
Christopher Faulet51dbc942018-09-13 09:05:15 +0200361 * points to the existing conn_stream (for outgoing connections) or NULL (for
362 * incoming ones). Returns < 0 on error.
363 */
Olivier Houchardf502aca2018-12-14 19:42:40 +0100364static int h1_init(struct connection *conn, struct proxy *proxy, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200365{
Christopher Faulet51dbc942018-09-13 09:05:15 +0200366 struct h1c *h1c;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100367 struct task *t = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200368
369 h1c = pool_alloc(pool_head_h1c);
370 if (!h1c)
371 goto fail_h1c;
372 h1c->conn = conn;
373 h1c->px = proxy;
374
375 h1c->flags = H1C_F_NONE;
376 h1c->ibuf = BUF_NULL;
377 h1c->obuf = BUF_NULL;
378 h1c->h1s = NULL;
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100379 h1c->task = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200380
Christopher Faulet51dbc942018-09-13 09:05:15 +0200381 LIST_INIT(&h1c->buf_wait.list);
382 h1c->wait_event.task = tasklet_new();
383 if (!h1c->wait_event.task)
384 goto fail;
385 h1c->wait_event.task->process = h1_io_cb;
386 h1c->wait_event.task->context = h1c;
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100387 h1c->wait_event.events = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200388
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100389 if (conn->ctx) {
390 h1c->shut_timeout = h1c->timeout = proxy->timeout.server;
391 if (tick_isset(proxy->timeout.serverfin))
392 h1c->shut_timeout = proxy->timeout.serverfin;
393 } else {
394 h1c->shut_timeout = h1c->timeout = proxy->timeout.client;
395 if (tick_isset(proxy->timeout.clientfin))
396 h1c->shut_timeout = proxy->timeout.clientfin;
397 }
398 if (tick_isset(h1c->timeout)) {
399 t = task_new(tid_bit);
400 if (!t)
401 goto fail;
402
403 h1c->task = t;
404 t->process = h1_timeout_task;
405 t->context = h1c;
406 t->expire = tick_add(now_ms, h1c->timeout);
407 }
408
Christopher Faulet3b88b8d2018-10-26 17:36:03 +0200409 if (!(conn->flags & CO_FL_CONNECTED))
410 h1c->flags |= H1C_F_CS_WAIT_CONN;
411
Christopher Fauletf2824e62018-10-01 12:12:37 +0200412 /* Always Create a new H1S */
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100413 if (!h1s_create(h1c, conn->ctx, sess))
Christopher Fauletf2824e62018-10-01 12:12:37 +0200414 goto fail;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200415
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100416 conn->ctx = h1c;
Christopher Faulet129817b2018-09-20 16:14:40 +0200417
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100418
419 if (t)
420 task_queue(t);
421
Christopher Faulet51dbc942018-09-13 09:05:15 +0200422 /* Try to read, if nothing is available yet we'll just subscribe */
Olivier Houchard9b960a82019-01-04 16:51:40 +0100423 tasklet_wakeup(h1c->wait_event.task);
Christopher Faulet51dbc942018-09-13 09:05:15 +0200424
425 /* mux->wake will be called soon to complete the operation */
426 return 0;
427
428 fail:
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100429 if (t)
430 task_free(t);
Christopher Faulet47365272018-10-31 17:40:50 +0100431 if (h1c->wait_event.task)
Christopher Faulet51dbc942018-09-13 09:05:15 +0200432 tasklet_free(h1c->wait_event.task);
433 pool_free(pool_head_h1c, h1c);
434 fail_h1c:
435 return -1;
436}
437
438
439/* release function for a connection. This one should be called to free all
440 * resources allocated to the mux.
441 */
442static void h1_release(struct connection *conn)
443{
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100444 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200445
Christopher Faulet51dbc942018-09-13 09:05:15 +0200446 if (h1c) {
447 if (!LIST_ISEMPTY(&h1c->buf_wait.list)) {
448 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
449 LIST_DEL(&h1c->buf_wait.list);
450 LIST_INIT(&h1c->buf_wait.list);
451 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
452 }
453
454 h1_release_buf(h1c, &h1c->ibuf);
455 h1_release_buf(h1c, &h1c->obuf);
456
Christopher Fauletb8093cf2019-01-03 16:27:28 +0100457 if (h1c->task) {
458 h1c->task->context = NULL;
459 task_wakeup(h1c->task, TASK_WOKEN_OTHER);
460 h1c->task = NULL;
461 }
462
Christopher Faulet51dbc942018-09-13 09:05:15 +0200463 if (h1c->wait_event.task)
464 tasklet_free(h1c->wait_event.task);
465
Christopher Fauletf2824e62018-10-01 12:12:37 +0200466 h1s_destroy(h1c->h1s);
Willy Tarreau4f6516d2018-12-19 13:59:17 +0100467 if (h1c->wait_event.events != 0)
468 conn->xprt->unsubscribe(conn, h1c->wait_event.events,
Christopher Faulet51dbc942018-09-13 09:05:15 +0200469 &h1c->wait_event);
470 pool_free(pool_head_h1c, h1c);
471 }
472
473 conn->mux = NULL;
Willy Tarreau3d2ee552018-12-19 14:12:10 +0100474 conn->ctx = NULL;
Christopher Faulet51dbc942018-09-13 09:05:15 +0200475
476 conn_stop_tracking(conn);
477 conn_full_close(conn);
478 if (conn->destroy_cb)
479 conn->destroy_cb(conn);
480 conn_free(conn);
481}
482
483/******************************************************/
484/* functions below are for the H1 protocol processing */
485/******************************************************/
Christopher Faulet9768c262018-10-22 09:34:31 +0200486/* Parse the request version and set H1_MF_VER_11 on <h1m> if the version is
487 * greater or equal to 1.1
Christopher Fauletf2824e62018-10-01 12:12:37 +0200488 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100489static void h1_parse_req_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200490{
Christopher Faulet570d1612018-11-26 11:13:57 +0100491 const char *p = HTX_SL_REQ_VPTR(sl);
Christopher Faulet9768c262018-10-22 09:34:31 +0200492
Christopher Faulet570d1612018-11-26 11:13:57 +0100493 if ((HTX_SL_REQ_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200494 (*(p + 5) > '1' ||
495 (*(p + 5) == '1' && *(p + 7) >= '1')))
496 h1m->flags |= H1_MF_VER_11;
497}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200498
Christopher Faulet9768c262018-10-22 09:34:31 +0200499/* Parse the response version and set H1_MF_VER_11 on <h1m> if the version is
500 * greater or equal to 1.1
501 */
Christopher Faulet570d1612018-11-26 11:13:57 +0100502static void h1_parse_res_vsn(struct h1m *h1m, const struct htx_sl *sl)
Christopher Faulet9768c262018-10-22 09:34:31 +0200503{
Christopher Faulet570d1612018-11-26 11:13:57 +0100504 const char *p = HTX_SL_RES_VPTR(sl);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200505
Christopher Faulet570d1612018-11-26 11:13:57 +0100506 if ((HTX_SL_RES_VLEN(sl) == 8) &&
Christopher Faulet9768c262018-10-22 09:34:31 +0200507 (*(p + 5) > '1' ||
508 (*(p + 5) == '1' && *(p + 7) >= '1')))
509 h1m->flags |= H1_MF_VER_11;
510}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200511
Christopher Faulet9768c262018-10-22 09:34:31 +0200512/*
513 * Check the validity of the request version. If the version is valid, it
514 * returns 1. Otherwise, it returns 0.
515 */
516static int h1_process_req_vsn(struct h1s *h1s, struct h1m *h1m, union h1_sl sl)
517{
518 struct h1c *h1c = h1s->h1c;
519
520 /* RFC7230#2.6 has enforced the format of the HTTP version string to be
521 * exactly one digit "." one digit. This check may be disabled using
522 * option accept-invalid-http-request.
523 */
524 if (!(h1c->px->options2 & PR_O2_REQBUG_OK)) {
525 if (sl.rq.v.len != 8)
526 return 0;
527
528 if (*(sl.rq.v.ptr + 4) != '/' ||
529 !isdigit((unsigned char)*(sl.rq.v.ptr + 5)) ||
530 *(sl.rq.v.ptr + 6) != '.' ||
531 !isdigit((unsigned char)*(sl.rq.v.ptr + 7)))
532 return 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200533 }
Christopher Faulet9768c262018-10-22 09:34:31 +0200534 else if (!sl.rq.v.len) {
535 /* try to convert HTTP/0.9 requests to HTTP/1.0 */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200536
Christopher Faulet9768c262018-10-22 09:34:31 +0200537 /* RFC 1945 allows only GET for HTTP/0.9 requests */
538 if (sl.rq.meth != HTTP_METH_GET)
539 return 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200540
Christopher Faulet9768c262018-10-22 09:34:31 +0200541 /* HTTP/0.9 requests *must* have a request URI, per RFC 1945 */
542 if (!sl.rq.u.len)
543 return 0;
544
545 /* Add HTTP version */
546 sl.rq.v = ist("HTTP/1.0");
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100547 return 1;
Christopher Faulet9768c262018-10-22 09:34:31 +0200548 }
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100549
550 if ((sl.rq.v.len == 8) &&
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100551 ((*(sl.rq.v.ptr + 5) > '1') ||
552 ((*(sl.rq.v.ptr + 5) == '1') && (*(sl.rq.v.ptr + 7) >= '1'))))
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100553 h1m->flags |= H1_MF_VER_11;
Christopher Faulet9768c262018-10-22 09:34:31 +0200554 return 1;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200555}
556
Christopher Faulet9768c262018-10-22 09:34:31 +0200557/*
558 * Check the validity of the response version. If the version is valid, it
559 * returns 1. Otherwise, it returns 0.
Christopher Fauletf2824e62018-10-01 12:12:37 +0200560 */
Christopher Faulet9768c262018-10-22 09:34:31 +0200561static int h1_process_res_vsn(struct h1s *h1s, struct h1m *h1m, union h1_sl sl)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200562{
Christopher Faulet9768c262018-10-22 09:34:31 +0200563 struct h1c *h1c = h1s->h1c;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200564
Christopher Faulet9768c262018-10-22 09:34:31 +0200565 /* RFC7230#2.6 has enforced the format of the HTTP version string to be
566 * exactly one digit "." one digit. This check may be disabled using
567 * option accept-invalid-http-request.
568 */
569 if (!(h1c->px->options2 & PR_O2_RSPBUG_OK)) {
570 if (sl.st.v.len != 8)
571 return 0;
572
573 if (*(sl.st.v.ptr + 4) != '/' ||
574 !isdigit((unsigned char)*(sl.st.v.ptr + 5)) ||
575 *(sl.st.v.ptr + 6) != '.' ||
576 !isdigit((unsigned char)*(sl.st.v.ptr + 7)))
577 return 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200578 }
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100579
580 if ((sl.st.v.len == 8) &&
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100581 ((*(sl.st.v.ptr + 5) > '1') ||
582 ((*(sl.st.v.ptr + 5) == '1') && (*(sl.st.v.ptr + 7) >= '1'))))
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100583 h1m->flags |= H1_MF_VER_11;
584
Christopher Faulet9768c262018-10-22 09:34:31 +0200585 return 1;
586}
587/* Remove all "Connection:" headers from the HTX message <htx> */
588static void h1_remove_conn_hdrs(struct h1m *h1m, struct htx *htx)
589{
590 struct ist hdr = {.ptr = "Connection", .len = 10};
591 struct http_hdr_ctx ctx;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200592
Christopher Faulet9768c262018-10-22 09:34:31 +0200593 while (http_find_header(htx, hdr, &ctx, 1))
594 http_remove_header(htx, &ctx);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200595
Christopher Faulet9768c262018-10-22 09:34:31 +0200596 h1m->flags &= ~(H1_MF_CONN_KAL|H1_MF_CONN_CLO);
597}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200598
Christopher Faulet9768c262018-10-22 09:34:31 +0200599/* Add a "Connection:" header with the value <value> into the HTX message
600 * <htx>.
601 */
602static void h1_add_conn_hdr(struct h1m *h1m, struct htx *htx, struct ist value)
603{
604 struct ist hdr = {.ptr = "Connection", .len = 10};
Christopher Fauletf2824e62018-10-01 12:12:37 +0200605
Christopher Faulet9768c262018-10-22 09:34:31 +0200606 http_add_header(htx, hdr, value);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200607}
608
609/* Deduce the connection mode of the client connection, depending on the
610 * configuration and the H1 message flags. This function is called twice, the
611 * first time when the request is parsed and the second time when the response
612 * is parsed.
613 */
614static void h1_set_cli_conn_mode(struct h1s *h1s, struct h1m *h1m)
615{
616 struct proxy *fe = h1s->h1c->px;
617 int flag = H1S_F_WANT_KAL; /* For client connection: server-close == keepalive */
618
Christopher Faulet6c9bbb22019-03-26 21:37:23 +0100619 if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200620 flag = H1S_F_WANT_CLO;
621
622 /* flags order: CLO > SCL > TUN > KAL */
623 if ((h1s->flags & H1S_F_WANT_MSK) < flag)
624 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | flag;
625
626 if (h1m->flags & H1_MF_RESP) {
627 /* Either we've established an explicit tunnel, or we're
628 * switching the protocol. In both cases, we're very unlikely to
629 * understand the next protocols. We have to switch to tunnel
630 * mode, so that we transfer the request and responses then let
631 * this protocol pass unmodified. When we later implement
632 * specific parsers for such protocols, we'll want to check the
633 * Upgrade header which contains information about that protocol
634 * for responses with status 101 (eg: see RFC2817 about TLS).
635 */
636 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) ||
637 h1s->status == 101)
638 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
Christopher Fauletbd44ca62018-11-29 09:55:22 +0100639 else if (!(h1m->flags & H1_MF_XFER_LEN) || /* no length known => close */
640 (h1m->flags & H1_MF_CONN_CLO && h1s->req.state != H1_MSG_DONE)) /*explicit close and unfinished request */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200641 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
642 }
643 else {
644 if (h1s->flags & H1S_F_WANT_KAL &&
645 (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || /* no KA in HTTP/1.0 */
646 h1m->flags & H1_MF_CONN_CLO)) /* explicit close */
647 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
648 }
649
650 /* If KAL, check if the frontend is stopping. If yes, switch in CLO mode */
651 if (h1s->flags & H1S_F_WANT_KAL && fe->state == PR_STSTOPPED)
652 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
653}
654
655/* Deduce the connection mode of the client connection, depending on the
656 * configuration and the H1 message flags. This function is called twice, the
657 * first time when the request is parsed and the second time when the response
658 * is parsed.
659 */
660static void h1_set_srv_conn_mode(struct h1s *h1s, struct h1m *h1m)
661{
Christopher Fauleta1692f52018-11-22 10:19:50 +0100662 struct h1c *h1c = h1s->h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100663 struct session *sess = h1s->sess;
Christopher Fauleta1692f52018-11-22 10:19:50 +0100664 struct proxy *be = h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200665 int flag = H1S_F_WANT_KAL;
Olivier Houchardf502aca2018-12-14 19:42:40 +0100666 int fe_flags = sess ? sess->fe->options : 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200667
Christopher Fauletf2824e62018-10-01 12:12:37 +0200668 /* For the server connection: server-close == httpclose */
Olivier Houchardf502aca2018-12-14 19:42:40 +0100669 if ((fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
Christopher Fauletf2824e62018-10-01 12:12:37 +0200670 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
Olivier Houchardf502aca2018-12-14 19:42:40 +0100671 (fe_flags & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
Christopher Fauletf2824e62018-10-01 12:12:37 +0200672 (be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)
673 flag = H1S_F_WANT_CLO;
674
675 /* flags order: CLO > SCL > TUN > KAL */
676 if ((h1s->flags & H1S_F_WANT_MSK) < flag)
677 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | flag;
678
679 if (h1m->flags & H1_MF_RESP) {
680 /* Either we've established an explicit tunnel, or we're
681 * switching the protocol. In both cases, we're very unlikely to
682 * understand the next protocols. We have to switch to tunnel
683 * mode, so that we transfer the request and responses then let
684 * this protocol pass unmodified. When we later implement
685 * specific parsers for such protocols, we'll want to check the
686 * Upgrade header which contains information about that protocol
687 * for responses with status 101 (eg: see RFC2817 about TLS).
688 */
689 if ((h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) ||
690 h1s->status == 101)
691 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_TUN;
692 else if (!(h1m->flags & H1_MF_XFER_LEN)) /* no length known => close */
693 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
694 else if (h1s->flags & H1S_F_WANT_KAL &&
695 (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || /* no KA in HTTP/1.0 */
696 h1m->flags & H1_MF_CONN_CLO)) /* explicit close */
697 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
698 }
Christopher Faulet70033782018-12-05 13:50:11 +0100699 else {
700 if (h1s->flags & H1S_F_WANT_KAL &&
701 (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) || /* no KA in HTTP/1.0 */
702 h1m->flags & H1_MF_CONN_CLO)) /* explicit close */
703 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
704 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200705
706 /* If KAL, check if the backend is stopping. If yes, switch in CLO mode */
707 if (h1s->flags & H1S_F_WANT_KAL && be->state == PR_STSTOPPED)
708 h1s->flags = (h1s->flags & ~H1S_F_WANT_MSK) | H1S_F_WANT_CLO;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200709}
710
Christopher Faulet9768c262018-10-22 09:34:31 +0200711static void h1_update_req_conn_hdr(struct h1s *h1s, struct h1m *h1m,
712 struct htx *htx, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200713{
714 struct proxy *px = h1s->h1c->px;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200715
716 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
717 * token is found
718 */
719 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +0200720 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200721
722 if (h1s->flags & H1S_F_WANT_KAL || px->options2 & PR_O2_FAKE_KA) {
Christopher Faulet9768c262018-10-22 09:34:31 +0200723 if (h1m->flags & H1_MF_CONN_CLO) {
724 if (conn_val)
725 *conn_val = ist("");
726 if (htx)
727 h1_remove_conn_hdrs(h1m, htx);
728 }
729 if (!(h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL))) {
730 if (conn_val)
731 *conn_val = ist("keep-alive");
732 if (htx)
733 h1_add_conn_hdr(h1m, htx, ist("keep-alive"));
734 }
Christopher Fauletce851492018-12-07 18:06:59 +0100735 if ((h1m->flags & (H1_MF_VER_11|H1_MF_CONN_KAL)) == (H1_MF_VER_11|H1_MF_CONN_KAL)) {
736 if (conn_val)
737 *conn_val = ist("");
738 if (htx)
739 h1_remove_conn_hdrs(h1m, htx);
740 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200741 }
742 else { /* H1S_F_WANT_CLO && !PR_O2_FAKE_KA */
Christopher Faulet9768c262018-10-22 09:34:31 +0200743 if (h1m->flags & H1_MF_CONN_KAL) {
744 if (conn_val)
745 *conn_val = ist("");
746 if (htx)
747 h1_remove_conn_hdrs(h1m, htx);
748 }
749 if ((h1m->flags & (H1_MF_VER_11|H1_MF_CONN_CLO)) == H1_MF_VER_11) {
750 if (conn_val)
751 *conn_val = ist("close");
752 if (htx)
753 h1_add_conn_hdr(h1m, htx, ist("close"));
754 }
Christopher Fauletce851492018-12-07 18:06:59 +0100755 if ((h1m->flags & (H1_MF_VER_11|H1_MF_CONN_CLO)) == H1_MF_CONN_CLO) {
756 if (conn_val)
757 *conn_val = ist("");
758 if (htx)
759 h1_remove_conn_hdrs(h1m, htx);
760 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200761 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200762}
763
Christopher Faulet9768c262018-10-22 09:34:31 +0200764static void h1_update_res_conn_hdr(struct h1s *h1s, struct h1m *h1m,
765 struct htx *htx, struct ist *conn_val)
Christopher Fauletf2824e62018-10-01 12:12:37 +0200766{
Christopher Fauletf2824e62018-10-01 12:12:37 +0200767 /* Don't update "Connection:" header in TUNNEL mode or if "Upgrage"
768 * token is found
769 */
770 if (h1s->flags & H1S_F_WANT_TUN || h1m->flags & H1_MF_CONN_UPG)
Christopher Faulet9768c262018-10-22 09:34:31 +0200771 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +0200772
773 if (h1s->flags & H1S_F_WANT_KAL) {
Christopher Faulet9768c262018-10-22 09:34:31 +0200774 if (h1m->flags & H1_MF_CONN_CLO) {
775 if (conn_val)
776 *conn_val = ist("");
777 if (htx)
778 h1_remove_conn_hdrs(h1m, htx);
779 }
Willy Tarreau7701cad2019-02-08 15:35:38 +0100780 if (!(h1m->flags & H1_MF_CONN_KAL) &&
781 !((h1m->flags & h1s->req.flags) & H1_MF_VER_11)) {
Christopher Faulet9768c262018-10-22 09:34:31 +0200782 if (conn_val)
783 *conn_val = ist("keep-alive");
784 if (htx)
785 h1_add_conn_hdr(h1m, htx, ist("keep-alive"));
786 }
Willy Tarreau7701cad2019-02-08 15:35:38 +0100787 else if ((h1m->flags & H1_MF_CONN_KAL) &&
788 ((h1m->flags & h1s->req.flags) & H1_MF_VER_11)) {
Christopher Fauletce851492018-12-07 18:06:59 +0100789 if (conn_val)
790 *conn_val = ist("");
791 if (htx)
792 h1_remove_conn_hdrs(h1m, htx);
793 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200794 }
795 else { /* H1S_F_WANT_CLO */
Christopher Faulet9768c262018-10-22 09:34:31 +0200796 if (h1m->flags & H1_MF_CONN_KAL) {
797 if (conn_val)
798 *conn_val = ist("");
799 if (htx)
800 h1_remove_conn_hdrs(h1m, htx);
801 }
802 if ((h1m->flags & (H1_MF_VER_11|H1_MF_CONN_CLO)) == H1_MF_VER_11) {
803 if (conn_val)
804 *conn_val = ist("close");
805 if (htx)
806 h1_add_conn_hdr(h1m, htx, ist("close"));
807 }
Christopher Fauletce851492018-12-07 18:06:59 +0100808 if ((h1m->flags & (H1_MF_VER_11|H1_MF_CONN_CLO)) == H1_MF_CONN_CLO) {
809 if (conn_val)
810 *conn_val = ist("");
811 if (htx)
812 h1_remove_conn_hdrs(h1m, htx);
813 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200814 }
Christopher Faulet9768c262018-10-22 09:34:31 +0200815}
Christopher Fauletf2824e62018-10-01 12:12:37 +0200816
Christopher Faulet9768c262018-10-22 09:34:31 +0200817/* Set the right connection mode and update "Connection:" header if
818 * needed. <htx> and <conn_val> can be NULL. When <htx> is not NULL, the HTX
819 * message is updated accordingly. When <conn_val> is not NULL, it is set with
820 * the new header value.
821 */
822static void h1_process_conn_mode(struct h1s *h1s, struct h1m *h1m,
823 struct htx *htx, struct ist *conn_val)
824{
825 if (!conn_is_back(h1s->h1c->conn)) {
826 h1_set_cli_conn_mode(h1s, h1m);
827 if (h1m->flags & H1_MF_RESP)
828 h1_update_res_conn_hdr(h1s, h1m, htx, conn_val);
829 }
830 else {
831 h1_set_srv_conn_mode(h1s, h1m);
832 if (!(h1m->flags & H1_MF_RESP))
833 h1_update_req_conn_hdr(h1s, h1m, htx, conn_val);
834 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200835}
836
Christopher Faulete44769b2018-11-29 23:01:45 +0100837
838/* Append the description of what is present in error snapshot <es> into <out>.
839 * The description must be small enough to always fit in a buffer. The output
840 * buffer may be the trash so the trash must not be used inside this function.
841 */
842static void h1_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
843{
844 chunk_appendf(out,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100845 " H1 connection flags 0x%08x, H1 stream flags 0x%08x\n"
846 " H1 msg state %s(%d), H1 msg flags 0x%08x\n"
847 " H1 chunk len %lld bytes, H1 body len %lld bytes :\n",
848 es->ctx.h1.c_flags, es->ctx.h1.s_flags,
849 h1m_state_str(es->ctx.h1.state), es->ctx.h1.state,
850 es->ctx.h1.m_flags, es->ctx.h1.m_clen, es->ctx.h1.m_blen);
Christopher Faulete44769b2018-11-29 23:01:45 +0100851}
852/*
853 * Capture a bad request or response and archive it in the proxy's structure.
854 * By default it tries to report the error position as h1m->err_pos. However if
855 * this one is not set, it will then report h1m->next, which is the last known
856 * parsing point. The function is able to deal with wrapping buffers. It always
857 * displays buffers as a contiguous area starting at buf->p. The direction is
858 * determined thanks to the h1m's flags.
859 */
860static void h1_capture_bad_message(struct h1c *h1c, struct h1s *h1s,
861 struct h1m *h1m, struct buffer *buf)
862{
863 struct session *sess = h1c->conn->owner;
864 struct proxy *proxy = h1c->px;
865 struct proxy *other_end = sess->fe;
866 union error_snapshot_ctx ctx;
867
Willy Tarreau598d7fc2018-12-18 18:10:38 +0100868 if (h1s->cs->data && !(h1m->flags & H1_MF_RESP))
Christopher Faulete44769b2018-11-29 23:01:45 +0100869 other_end = si_strm(h1s->cs->data)->be;
870
871 /* http-specific part now */
872 ctx.h1.state = h1m->state;
873 ctx.h1.c_flags = h1c->flags;
874 ctx.h1.s_flags = h1s->flags;
875 ctx.h1.m_flags = h1m->flags;
876 ctx.h1.m_clen = h1m->curr_len;
877 ctx.h1.m_blen = h1m->body_len;
878
879 proxy_capture_error(proxy, !!(h1m->flags & H1_MF_RESP), other_end,
880 h1c->conn->target, sess, buf, 0, 0,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +0100881 (h1m->err_pos >= 0) ? h1m->err_pos : h1m->next,
882 &ctx, h1_show_error_snapshot);
Christopher Faulete44769b2018-11-29 23:01:45 +0100883}
884
Christopher Fauletadb22202018-12-12 10:32:09 +0100885/* Emit the chunksize followed by a CRLF in front of data of the buffer
886 * <buf>. It goes backwards and starts with the byte before the buffer's
887 * head. The caller is responsible for ensuring there is enough room left before
888 * the buffer's head for the string.
889 */
890static void h1_emit_chunk_size(struct buffer *buf, size_t chksz)
891{
892 char *beg, *end;
893
894 beg = end = b_head(buf);
895 *--beg = '\n';
896 *--beg = '\r';
897 do {
898 *--beg = hextab[chksz & 0xF];
899 } while (chksz >>= 4);
900 buf->head -= (end - beg);
901 b_add(buf, end - beg);
902}
903
904/* Emit a CRLF after the data of the buffer <buf>. The caller is responsible for
905 * ensuring there is enough room left in the buffer for the string. */
906static void h1_emit_chunk_crlf(struct buffer *buf)
907{
908 *(b_peek(buf, b_data(buf))) = '\r';
909 *(b_peek(buf, b_data(buf) + 1)) = '\n';
910 b_add(buf, 2);
911}
912
Christopher Faulet129817b2018-09-20 16:14:40 +0200913/*
914 * Parse HTTP/1 headers. It returns the number of bytes parsed if > 0, or 0 if
Christopher Fauletf2824e62018-10-01 12:12:37 +0200915 * it couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR
916 * flag and filling h1s->err_pos and h1s->err_state fields. This functions is
Joseph Herlant30bc5092018-11-25 10:52:20 -0800917 * responsible to update the parser state <h1m>.
Christopher Faulet129817b2018-09-20 16:14:40 +0200918 */
Christopher Faulet9768c262018-10-22 09:34:31 +0200919static size_t h1_process_headers(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
Christopher Fauletf2824e62018-10-01 12:12:37 +0200920 struct buffer *buf, size_t *ofs, size_t max)
Christopher Faulet129817b2018-09-20 16:14:40 +0200921{
922 struct http_hdr hdrs[MAX_HTTP_HDR];
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100923 union h1_sl h1sl;
924 unsigned int flags = HTX_SL_F_NONE;
Christopher Faulet129817b2018-09-20 16:14:40 +0200925 int ret = 0;
926
Christopher Fauletd44ad5b2018-11-19 21:52:12 +0100927 if (!max)
928 goto end;
929
Christopher Faulet129817b2018-09-20 16:14:40 +0200930 /* Realing input buffer if necessary */
931 if (b_head(buf) + b_data(buf) > b_wrap(buf))
932 b_slow_realign(buf, trash.area, 0);
933
Christopher Fauletf2824e62018-10-01 12:12:37 +0200934 ret = h1_headers_to_hdr_list(b_peek(buf, *ofs), b_peek(buf, *ofs) + max,
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100935 hdrs, sizeof(hdrs)/sizeof(hdrs[0]), h1m, &h1sl);
Christopher Faulet129817b2018-09-20 16:14:40 +0200936 if (ret <= 0) {
937 /* Incomplete or invalid message. If the buffer is full, it's an
938 * error because headers are too large to be handled by the
939 * parser. */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200940 if (ret < 0 || (!ret && b_full(buf)))
941 goto error;
Christopher Faulet129817b2018-09-20 16:14:40 +0200942 goto end;
943 }
944
945 /* messages headers fully parsed, do some checks to prepare the body
946 * parsing.
947 */
948
949 /* Be sure to keep some space to do headers rewritting */
Christopher Fauletf2824e62018-10-01 12:12:37 +0200950 if (ret > (b_size(buf) - global.tune.maxrewrite))
951 goto error;
Christopher Faulet129817b2018-09-20 16:14:40 +0200952
Christopher Faulet9768c262018-10-22 09:34:31 +0200953 /* Save the request's method or the response's status, check if the body
954 * length is known and check the VSN validity */
Christopher Faulet129817b2018-09-20 16:14:40 +0200955 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100956 h1s->meth = h1sl.rq.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +0200957
Christopher Faulet129817b2018-09-20 16:14:40 +0200958 /* Request have always a known length */
959 h1m->flags |= H1_MF_XFER_LEN;
960 if (!(h1m->flags & H1_MF_CHNK) && !h1m->body_len)
961 h1m->state = H1_MSG_DONE;
Christopher Faulet9768c262018-10-22 09:34:31 +0200962
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100963 if (!h1_process_req_vsn(h1s, h1m, h1sl)) {
964 h1m->err_pos = h1sl.rq.v.ptr - b_head(buf);
Christopher Faulet9768c262018-10-22 09:34:31 +0200965 h1m->err_state = h1m->state;
966 goto vsn_error;
967 }
Christopher Faulet129817b2018-09-20 16:14:40 +0200968 }
969 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100970 h1s->status = h1sl.st.status;
Christopher Faulet129817b2018-09-20 16:14:40 +0200971
972 if ((h1s->meth == HTTP_METH_HEAD) ||
973 (h1s->status >= 100 && h1s->status < 200) ||
974 (h1s->status == 204) || (h1s->status == 304) ||
975 (h1s->meth == HTTP_METH_CONNECT && h1s->status == 200)) {
976 h1m->flags &= ~(H1_MF_CLEN|H1_MF_CHNK);
977 h1m->flags |= H1_MF_XFER_LEN;
978 h1m->curr_len = h1m->body_len = 0;
979 h1m->state = H1_MSG_DONE;
980 }
981 else if (h1m->flags & (H1_MF_CLEN|H1_MF_CHNK)) {
982 h1m->flags |= H1_MF_XFER_LEN;
983 if ((h1m->flags & H1_MF_CLEN) && !h1m->body_len)
984 h1m->state = H1_MSG_DONE;
985 }
986 else
987 h1m->state = H1_MSG_TUNNEL;
Christopher Faulet9768c262018-10-22 09:34:31 +0200988
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100989 if (!h1_process_res_vsn(h1s, h1m, h1sl)) {
990 h1m->err_pos = h1sl.st.v.ptr - b_head(buf);
Christopher Faulet9768c262018-10-22 09:34:31 +0200991 h1m->err_state = h1m->state;
992 goto vsn_error;
993 }
Christopher Faulet129817b2018-09-20 16:14:40 +0200994 }
995
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100996 /* Set HTX start-line flags */
997 if (h1m->flags & H1_MF_VER_11)
998 flags |= HTX_SL_F_VER_11;
999 if (h1m->flags & H1_MF_XFER_ENC)
1000 flags |= HTX_SL_F_XFER_ENC;
1001 if (h1m->flags & H1_MF_XFER_LEN) {
1002 flags |= HTX_SL_F_XFER_LEN;
1003 if (h1m->flags & H1_MF_CHNK)
1004 flags |= HTX_SL_F_CHNK;
1005 else if (h1m->flags & H1_MF_CLEN)
1006 flags |= HTX_SL_F_CLEN;
Christopher Fauletb2db4fa2018-11-27 16:51:09 +01001007 if (h1m->state == H1_MSG_DONE)
1008 flags |= HTX_SL_F_BODYLESS;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001009 }
1010
Christopher Faulet9768c262018-10-22 09:34:31 +02001011 if (!(h1m->flags & H1_MF_RESP)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001012 struct htx_sl *sl;
1013
1014 sl = htx_add_stline(htx, HTX_BLK_REQ_SL, flags, h1sl.rq.m, h1sl.rq.u, h1sl.rq.v);
1015 if (!sl || !htx_add_all_headers(htx, hdrs))
Christopher Faulet9768c262018-10-22 09:34:31 +02001016 goto error;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001017 sl->info.req.meth = h1s->meth;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001018 }
1019 else {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001020 struct htx_sl *sl;
1021
1022 flags |= HTX_SL_F_IS_RESP;
1023 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, h1sl.st.v, h1sl.st.c, h1sl.st.r);
1024 if (!sl || !htx_add_all_headers(htx, hdrs))
Christopher Faulet9768c262018-10-22 09:34:31 +02001025 goto error;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001026 sl->info.res.status = h1s->status;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001027 }
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001028
Christopher Fauletdbe2cb42019-03-22 14:09:41 +01001029 if (h1m->state == H1_MSG_DONE) {
Christopher Faulet9768c262018-10-22 09:34:31 +02001030 if (!htx_add_endof(htx, HTX_BLK_EOM))
1031 goto error;
Christopher Fauletdbe2cb42019-03-22 14:09:41 +01001032 h1s->cs->flags |= CS_FL_EOI;
1033 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001034
1035 h1_process_conn_mode(h1s, h1m, htx, NULL);
1036
1037 /* If body length cannot be determined, set htx->extra to
1038 * ULLONG_MAX. This value is impossible in other cases.
1039 */
1040 htx->extra = ((h1m->flags & H1_MF_XFER_LEN) ? h1m->curr_len : ULLONG_MAX);
1041
1042 /* Recheck there is enough space to do headers rewritting */
1043 if (htx_used_space(htx) > b_size(buf) - global.tune.maxrewrite)
1044 goto error;
1045
1046 *ofs += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001047 end:
1048 return ret;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001049
1050 error:
Christopher Fauletf2824e62018-10-01 12:12:37 +02001051 h1m->err_state = h1m->state;
1052 h1m->err_pos = h1m->next;
Christopher Faulet9768c262018-10-22 09:34:31 +02001053 vsn_error:
1054 h1s->flags |= (!(h1m->flags & H1_MF_RESP) ? H1S_F_REQ_ERROR : H1S_F_RES_ERROR);
Christopher Faulete44769b2018-11-29 23:01:45 +01001055 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001056 ret = 0;
1057 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001058}
1059
1060/*
Christopher Fauletf2824e62018-10-01 12:12:37 +02001061 * Parse HTTP/1 body. It returns the number of bytes parsed if > 0, or 0 if it
1062 * couldn't proceed. Parsing errors are reported by setting H1S_F_*_ERROR flag
Christopher Faulet129817b2018-09-20 16:14:40 +02001063 * and filling h1s->err_pos and h1s->err_state fields. This functions is
Joseph Herlant30bc5092018-11-25 10:52:20 -08001064 * responsible to update the parser state <h1m>.
Christopher Faulet129817b2018-09-20 16:14:40 +02001065 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001066static size_t h1_process_data(struct h1s *h1s, struct h1m *h1m, struct htx *htx,
Christopher Fauletaa75b3d2018-12-05 16:20:40 +01001067 struct buffer *buf, size_t *ofs, size_t max,
Christopher Fauletafe57842019-01-21 11:55:02 +01001068 struct buffer *htxbuf, size_t reserve)
Christopher Faulet129817b2018-09-20 16:14:40 +02001069{
Christopher Fauletafe57842019-01-21 11:55:02 +01001070 uint32_t data_space;
Christopher Faulet129817b2018-09-20 16:14:40 +02001071 size_t total = 0;
1072 int ret = 0;
1073
Christopher Fauletafe57842019-01-21 11:55:02 +01001074 data_space = htx_free_data_space(htx);
1075 if (data_space <= reserve)
1076 goto end;
1077 data_space -= reserve;
1078
Christopher Faulet129817b2018-09-20 16:14:40 +02001079 if (h1m->flags & H1_MF_XFER_LEN) {
1080 if (h1m->flags & H1_MF_CLEN) {
1081 /* content-length: read only h2m->body_len */
1082 ret = max;
Christopher Faulet9768c262018-10-22 09:34:31 +02001083 if (ret > data_space)
1084 ret = data_space;
Christopher Faulet129817b2018-09-20 16:14:40 +02001085 if ((uint64_t)ret > h1m->curr_len)
1086 ret = h1m->curr_len;
Christopher Faulet9768c262018-10-22 09:34:31 +02001087 if (ret > b_contig_data(buf, *ofs))
1088 ret = b_contig_data(buf, *ofs);
1089 if (ret) {
Willy Tarreau78f548f2018-12-05 10:02:39 +01001090 /* very often with large files we'll face the following
1091 * situation :
1092 * - htx is empty and points to <htxbuf>
1093 * - ret == buf->data
1094 * - buf->head == sizeof(struct htx)
1095 * => we can swap the buffers and place an htx header into
1096 * the target buffer instead
1097 */
1098 if (unlikely(htx_is_empty(htx) && ret == b_data(buf) &&
1099 !*ofs && b_head_ofs(buf) == sizeof(struct htx))) {
1100 void *raw_area = buf->area;
1101 void *htx_area = htxbuf->area;
1102 struct htx_blk *blk;
1103
1104 buf->area = htx_area;
1105 htxbuf->area = raw_area;
1106 htx = (struct htx *)htxbuf->area;
1107 htx->size = htxbuf->size - sizeof(*htx);
1108 htx_reset(htx);
1109 b_set_data(htxbuf, b_size(htxbuf));
1110
1111 blk = htx_add_blk(htx, HTX_BLK_DATA, ret);
1112 blk->info += ret;
1113 /* nothing else to do, the old buffer now contains an
1114 * empty pre-initialized HTX header
1115 */
1116 }
1117 else if (!htx_add_data(htx, ist2(b_peek(buf, *ofs), ret)))
Christopher Faulet9768c262018-10-22 09:34:31 +02001118 goto end;
1119 h1m->curr_len -= ret;
1120 *ofs += ret;
1121 total += ret;
1122 }
1123
1124 if (!h1m->curr_len) {
1125 if (!htx_add_endof(htx, HTX_BLK_EOM))
1126 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001127 h1m->state = H1_MSG_DONE;
Christopher Fauletdbe2cb42019-03-22 14:09:41 +01001128 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet9768c262018-10-22 09:34:31 +02001129 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001130 }
1131 else if (h1m->flags & H1_MF_CHNK) {
1132 new_chunk:
1133 /* te:chunked : parse chunks */
1134 if (h1m->state == H1_MSG_CHUNK_CRLF) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001135 ret = h1_skip_chunk_crlf(buf, *ofs, *ofs + max);
Christopher Faulet129817b2018-09-20 16:14:40 +02001136 if (ret <= 0)
1137 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001138 h1m->state = H1_MSG_CHUNK_SIZE;
1139
Christopher Faulet129817b2018-09-20 16:14:40 +02001140 max -= ret;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001141 *ofs += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001142 total += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001143 }
1144
1145 if (h1m->state == H1_MSG_CHUNK_SIZE) {
1146 unsigned int chksz;
1147
Christopher Fauletf2824e62018-10-01 12:12:37 +02001148 ret = h1_parse_chunk_size(buf, *ofs, *ofs + max, &chksz);
Christopher Faulet129817b2018-09-20 16:14:40 +02001149 if (ret <= 0)
1150 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001151 if (!chksz) {
1152 if (!htx_add_endof(htx, HTX_BLK_EOD))
1153 goto end;
Willy Tarreau34d23482019-01-03 17:46:56 +01001154 h1s->flags |= H1S_F_HAVE_I_EOD;
Christopher Faulet9768c262018-10-22 09:34:31 +02001155 h1m->state = H1_MSG_TRAILERS;
1156 }
1157 else
1158 h1m->state = H1_MSG_DATA;
1159
Christopher Faulet129817b2018-09-20 16:14:40 +02001160 h1m->curr_len = chksz;
1161 h1m->body_len += chksz;
1162 max -= ret;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001163 *ofs += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001164 total += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001165 }
1166
1167 if (h1m->state == H1_MSG_DATA) {
1168 ret = max;
Christopher Faulet9768c262018-10-22 09:34:31 +02001169 if (ret > data_space)
1170 ret = data_space;
Christopher Faulet129817b2018-09-20 16:14:40 +02001171 if ((uint64_t)ret > h1m->curr_len)
1172 ret = h1m->curr_len;
Christopher Faulet9768c262018-10-22 09:34:31 +02001173 if (ret > b_contig_data(buf, *ofs))
1174 ret = b_contig_data(buf, *ofs);
1175 if (ret) {
1176 if (!htx_add_data(htx, ist2(b_peek(buf, *ofs), ret)))
1177 goto end;
1178 h1m->curr_len -= ret;
1179 max -= ret;
1180 *ofs += ret;
1181 total += ret;
1182 }
1183 if (!h1m->curr_len) {
1184 h1m->state = H1_MSG_CHUNK_CRLF;
Christopher Fauletafe57842019-01-21 11:55:02 +01001185 data_space = htx_free_data_space(htx);
1186 if (data_space <= reserve)
1187 goto end;
1188 data_space -= reserve;
Christopher Faulet9768c262018-10-22 09:34:31 +02001189 goto new_chunk;
1190 }
1191 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001192 }
1193
1194 if (h1m->state == H1_MSG_TRAILERS) {
Christopher Faulet17276482018-11-22 11:44:35 +01001195 /* Trailers were alread parsed, only the EOM
1196 * need to be added */
Willy Tarreau34d23482019-01-03 17:46:56 +01001197 if (h1s->flags & H1S_F_HAVE_I_TLR)
Christopher Faulet17276482018-11-22 11:44:35 +01001198 goto skip_tlr_parsing;
1199
Christopher Fauletf2824e62018-10-01 12:12:37 +02001200 ret = h1_measure_trailers(buf, *ofs, *ofs + max);
Christopher Faulet9768c262018-10-22 09:34:31 +02001201 if (ret > data_space)
1202 ret = (htx_is_empty(htx) ? -1 : 0);
Christopher Faulet129817b2018-09-20 16:14:40 +02001203 if (ret <= 0)
1204 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001205
1206 /* Realing input buffer if tailers wrap. For now
1207 * this is a workaroung. Because trailers are
1208 * not split on CRLF, like headers, there is no
1209 * way to know where to split it when trailers
1210 * wrap. This is a limitation of
1211 * h1_measure_trailers.
1212 */
1213 if (b_peek(buf, *ofs) > b_peek(buf, *ofs + ret))
1214 b_slow_realign(buf, trash.area, 0);
1215
1216 if (!htx_add_trailer(htx, ist2(b_peek(buf, *ofs), ret)))
1217 goto end;
Willy Tarreau34d23482019-01-03 17:46:56 +01001218 h1s->flags |= H1S_F_HAVE_I_TLR;
Christopher Faulet129817b2018-09-20 16:14:40 +02001219 max -= ret;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001220 *ofs += ret;
Christopher Faulet129817b2018-09-20 16:14:40 +02001221 total += ret;
Christopher Faulet9768c262018-10-22 09:34:31 +02001222
Christopher Faulet17276482018-11-22 11:44:35 +01001223 skip_tlr_parsing:
Christopher Faulet9768c262018-10-22 09:34:31 +02001224 if (!htx_add_endof(htx, HTX_BLK_EOM))
1225 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001226 h1m->state = H1_MSG_DONE;
Christopher Fauletdbe2cb42019-03-22 14:09:41 +01001227 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet129817b2018-09-20 16:14:40 +02001228 }
1229 }
1230 else {
1231 /* XFER_LEN is set but not CLEN nor CHNK, it means there
1232 * is no body. Switch the message in DONE state
1233 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001234 if (!htx_add_endof(htx, HTX_BLK_EOM))
1235 goto end;
Christopher Faulet129817b2018-09-20 16:14:40 +02001236 h1m->state = H1_MSG_DONE;
Christopher Fauletdbe2cb42019-03-22 14:09:41 +01001237 h1s->cs->flags |= CS_FL_EOI;
Christopher Faulet129817b2018-09-20 16:14:40 +02001238 }
1239 }
1240 else {
1241 /* no content length, read till SHUTW */
Christopher Faulet9768c262018-10-22 09:34:31 +02001242 ret = max;
1243 if (ret > data_space)
1244 ret = data_space;
1245 if (ret > b_contig_data(buf, *ofs))
1246 ret = b_contig_data(buf, *ofs);
1247 if (ret) {
1248 if (!htx_add_data(htx, ist2(b_peek(buf, *ofs), ret)))
1249 goto end;
1250
Olivier Houchardcf42d5a2018-12-04 17:41:58 +01001251 *ofs += ret;
1252 total = ret;
Christopher Faulet9768c262018-10-22 09:34:31 +02001253 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001254 }
1255
1256 end:
1257 if (ret < 0) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001258 h1s->flags |= (!(h1m->flags & H1_MF_RESP) ? H1S_F_REQ_ERROR : H1S_F_RES_ERROR);
Christopher Faulet129817b2018-09-20 16:14:40 +02001259 h1m->err_state = h1m->state;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001260 h1m->err_pos = *ofs + max + ret;
Christopher Faulete44769b2018-11-29 23:01:45 +01001261 h1_capture_bad_message(h1s->h1c, h1s, h1m, buf);
Christopher Faulet129817b2018-09-20 16:14:40 +02001262 return 0;
1263 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001264 /* update htx->extra, only when the body length is known */
1265 if (h1m->flags & H1_MF_XFER_LEN)
1266 htx->extra = h1m->curr_len;
Christopher Faulet129817b2018-09-20 16:14:40 +02001267 return total;
1268}
1269
1270/*
1271 * Synchronize the request and the response before reseting them. Except for 1xx
1272 * responses, we wait that the request and the response are in DONE state and
1273 * that all data are forwarded for both. For 1xx responses, only the response is
1274 * reset, waiting the final one. Many 1xx messages can be sent.
1275 */
1276static void h1_sync_messages(struct h1c *h1c)
1277{
Christopher Fauletf2824e62018-10-01 12:12:37 +02001278 struct h1s *h1s = h1c->h1s;
1279
1280 if (!h1s)
Christopher Faulet129817b2018-09-20 16:14:40 +02001281 return;
1282
Christopher Fauletf2824e62018-10-01 12:12:37 +02001283 if (h1s->res.state == H1_MSG_DONE &&
1284 (h1s->status < 200 && (h1s->status == 100 || h1s->status >= 102)) &&
Christopher Faulet539e0292018-11-19 10:40:09 +01001285 (conn_is_back(h1c->conn) || !b_data(&h1c->obuf))) {
Christopher Faulet129817b2018-09-20 16:14:40 +02001286 /* For 100-Continue response or any other informational 1xx
1287 * response which is non-final, don't reset the request, the
1288 * transaction is not finished. We take care the response was
1289 * transferred before.
1290 */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001291 h1m_init_res(&h1s->res);
Christopher Faulet9768c262018-10-22 09:34:31 +02001292 h1s->res.flags |= H1_MF_NO_PHDR;
Christopher Fauletcb55f482018-12-10 11:56:47 +01001293 h1c->flags &= ~H1C_F_IN_BUSY;
Christopher Faulet129817b2018-09-20 16:14:40 +02001294 }
Christopher Faulet539e0292018-11-19 10:40:09 +01001295 else if (!b_data(&h1c->obuf) &&
Christopher Fauletf2824e62018-10-01 12:12:37 +02001296 h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE) {
1297 if (h1s->flags & H1S_F_WANT_TUN) {
Christopher Faulet9768c262018-10-22 09:34:31 +02001298 h1m_init_req(&h1s->req);
1299 h1m_init_res(&h1s->res);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001300 h1s->req.state = H1_MSG_TUNNEL;
1301 h1s->res.state = H1_MSG_TUNNEL;
Christopher Fauletcb55f482018-12-10 11:56:47 +01001302 h1c->flags &= ~H1C_F_IN_BUSY;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001303 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001304 }
1305}
1306
1307/*
1308 * Process incoming data. It parses data and transfer them from h1c->ibuf into
Christopher Faulet539e0292018-11-19 10:40:09 +01001309 * <buf>. It returns the number of bytes parsed and transferred if > 0, or 0 if
1310 * it couldn't proceed.
Christopher Faulet129817b2018-09-20 16:14:40 +02001311 */
Christopher Faulet539e0292018-11-19 10:40:09 +01001312static size_t h1_process_input(struct h1c *h1c, struct buffer *buf, int flags)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001313{
Christopher Faulet539e0292018-11-19 10:40:09 +01001314 struct h1s *h1s = h1c->h1s;
Christopher Faulet129817b2018-09-20 16:14:40 +02001315 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001316 struct htx *htx;
Christopher Fauletb8d2ee02019-02-25 15:29:51 +01001317 size_t data = 0;
Christopher Faulet129817b2018-09-20 16:14:40 +02001318 size_t total = 0;
1319 size_t ret = 0;
Christopher Fauletafe57842019-01-21 11:55:02 +01001320 size_t count, rsv;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001321 int errflag;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001322
Christopher Faulet539e0292018-11-19 10:40:09 +01001323 htx = htx_from_buf(buf);
Willy Tarreau3a6190f2018-12-16 08:29:56 +01001324
Christopher Fauletf2824e62018-10-01 12:12:37 +02001325 if (!conn_is_back(h1c->conn)) {
1326 h1m = &h1s->req;
1327 errflag = H1S_F_REQ_ERROR;
1328 }
1329 else {
1330 h1m = &h1s->res;
1331 errflag = H1S_F_RES_ERROR;
1332 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001333
Christopher Faulet74027762019-02-26 14:45:05 +01001334 data = htx->data;
1335 count = b_data(&h1c->ibuf);
1336 if (!count)
1337 goto end;
1338 rsv = ((flags & CO_RFL_KEEP_RSV) ? global.tune.maxrewrite : 0);
1339
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001340 do {
Christopher Faulet129817b2018-09-20 16:14:40 +02001341 if (h1m->state <= H1_MSG_LAST_LF) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001342 ret = h1_process_headers(h1s, h1m, htx, &h1c->ibuf, &total, count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001343 if (!ret)
1344 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02001345 }
1346 else if (h1m->state <= H1_MSG_TRAILERS) {
Christopher Fauletafe57842019-01-21 11:55:02 +01001347 ret = h1_process_data(h1s, h1m, htx, &h1c->ibuf, &total, count, buf, rsv);
Willy Tarreau78f548f2018-12-05 10:02:39 +01001348 htx = htx_from_buf(buf);
Christopher Faulet129817b2018-09-20 16:14:40 +02001349 if (!ret)
1350 break;
1351 }
Christopher Fauletcb55f482018-12-10 11:56:47 +01001352 else if (h1m->state == H1_MSG_DONE) {
1353 h1c->flags |= H1C_F_IN_BUSY;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001354 break;
Christopher Fauletcb55f482018-12-10 11:56:47 +01001355 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02001356 else if (h1m->state == H1_MSG_TUNNEL) {
Christopher Fauletafe57842019-01-21 11:55:02 +01001357 ret = h1_process_data(h1s, h1m, htx, &h1c->ibuf, &total, count, buf, rsv);
Willy Tarreau78f548f2018-12-05 10:02:39 +01001358 htx = htx_from_buf(buf);
Christopher Faulet9768c262018-10-22 09:34:31 +02001359 if (!ret)
1360 break;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001361 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001362 else {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001363 h1s->flags |= errflag;
Christopher Faulet129817b2018-09-20 16:14:40 +02001364 break;
1365 }
1366
Christopher Faulet539e0292018-11-19 10:40:09 +01001367 count -= ret;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01001368 } while (!(h1s->flags & errflag) && count);
Christopher Faulet129817b2018-09-20 16:14:40 +02001369
Christopher Faulet47365272018-10-31 17:40:50 +01001370 if (h1s->flags & errflag)
1371 goto parsing_err;
Christopher Faulet129817b2018-09-20 16:14:40 +02001372
Christopher Faulet539e0292018-11-19 10:40:09 +01001373 b_del(&h1c->ibuf, total);
1374
1375 end:
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001376 htx_to_buf(htx, buf);
Christopher Fauletb8d2ee02019-02-25 15:29:51 +01001377 data = (htx->data - data);
Willy Tarreau45f2b892018-12-05 07:59:27 +01001378 if (h1c->flags & H1C_F_IN_FULL && buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001379 h1c->flags &= ~H1C_F_IN_FULL;
1380 tasklet_wakeup(h1c->wait_event.task);
Christopher Faulet47365272018-10-31 17:40:50 +01001381 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001382
Christopher Fauletcf56b992018-12-11 16:12:31 +01001383 h1s->cs->flags &= ~(CS_FL_RCV_MORE | CS_FL_WANT_ROOM);
1384
1385 if (!b_data(&h1c->ibuf)) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001386 h1_release_buf(h1c, &h1c->ibuf);
1387 h1_sync_messages(h1c);
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001388 }
Christopher Fauletcf56b992018-12-11 16:12:31 +01001389 else if (!htx_is_empty(htx))
1390 h1s->cs->flags |= CS_FL_RCV_MORE | CS_FL_WANT_ROOM;
Christopher Faulet539e0292018-11-19 10:40:09 +01001391
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001392 if ((h1s->cs->flags & CS_FL_REOS) && (!b_data(&h1c->ibuf) || htx_is_empty(htx))) {
1393 h1s->cs->flags |= CS_FL_EOS;
Christopher Faulet26922382019-03-08 15:13:41 +01001394 if (h1m->state > H1_MSG_LAST_LF && h1m->state < H1_MSG_DONE)
Christopher Fauletb8d2ee02019-02-25 15:29:51 +01001395 h1s->cs->flags |= CS_FL_ERROR;
Christopher Faulet539e0292018-11-19 10:40:09 +01001396 }
Christopher Fauletf6ce9d62018-12-10 15:30:06 +01001397
Christopher Fauletb8d2ee02019-02-25 15:29:51 +01001398 return data;
Christopher Faulet47365272018-10-31 17:40:50 +01001399
1400 parsing_err:
Christopher Faulet47365272018-10-31 17:40:50 +01001401 b_reset(&h1c->ibuf);
Christopher Faulet539e0292018-11-19 10:40:09 +01001402 htx->flags |= HTX_FL_PARSING_ERROR;
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001403 htx_to_buf(htx, buf);
Christopher Faulet539e0292018-11-19 10:40:09 +01001404 h1s->cs->flags |= CS_FL_EOS;
Christopher Faulet9768c262018-10-22 09:34:31 +02001405 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001406}
1407
Christopher Faulet129817b2018-09-20 16:14:40 +02001408/*
1409 * Process outgoing data. It parses data and transfer them from the channel buffer into
1410 * h1c->obuf. It returns the number of bytes parsed and transferred if > 0, or
1411 * 0 if it couldn't proceed.
1412 */
Christopher Faulet51dbc942018-09-13 09:05:15 +02001413static size_t h1_process_output(struct h1c *h1c, struct buffer *buf, size_t count)
1414{
Christopher Faulet129817b2018-09-20 16:14:40 +02001415 struct h1s *h1s = h1c->h1s;
1416 struct h1m *h1m;
Christopher Faulet9768c262018-10-22 09:34:31 +02001417 struct htx *chn_htx;
1418 struct htx_blk *blk;
1419 struct buffer *tmp;
Christopher Faulet129817b2018-09-20 16:14:40 +02001420 size_t total = 0;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001421 int process_conn_mode = 1; /* If still 1 on EOH, process the connection mode */
Christopher Fauletf2824e62018-10-01 12:12:37 +02001422 int errflag;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001423
Christopher Faulet47365272018-10-31 17:40:50 +01001424 if (!count)
1425 goto end;
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001426
Christopher Faulet9768c262018-10-22 09:34:31 +02001427 chn_htx = htx_from_buf(buf);
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001428 if (htx_is_empty(chn_htx))
1429 goto end;
Christopher Faulet9768c262018-10-22 09:34:31 +02001430
Christopher Faulet51dbc942018-09-13 09:05:15 +02001431 if (!h1_get_buf(h1c, &h1c->obuf)) {
1432 h1c->flags |= H1C_F_OUT_ALLOC;
1433 goto end;
1434 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001435
Christopher Fauletf2824e62018-10-01 12:12:37 +02001436 if (!conn_is_back(h1c->conn)) {
1437 h1m = &h1s->res;
1438 errflag = H1S_F_RES_ERROR;
1439 }
1440 else {
1441 h1m = &h1s->req;
1442 errflag = H1S_F_REQ_ERROR;
1443 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001444
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001445 /* the htx is non-empty thus has at least one block */
Willy Tarreau3815b222018-12-11 19:50:43 +01001446 blk = htx_get_head_blk(chn_htx);
Christopher Faulet9768c262018-10-22 09:34:31 +02001447
1448 tmp = get_trash_chunk();
Willy Tarreauc5efa332018-12-05 11:19:27 +01001449
Willy Tarreau3815b222018-12-11 19:50:43 +01001450 /* Perform some optimizations to reduce the number of buffer copies.
1451 * First, if the mux's buffer is empty and the htx area contains
1452 * exactly one data block of the same size as the requested count,
1453 * then it's possible to simply swap the caller's buffer with the
1454 * mux's output buffer and adjust offsets and length to match the
1455 * entire DATA HTX block in the middle. In this case we perform a
1456 * true zero-copy operation from end-to-end. This is the situation
1457 * that happens all the time with large files. Second, if this is not
1458 * possible, but the mux's output buffer is empty, we still have an
1459 * opportunity to avoid the copy to the intermediary buffer, by making
1460 * the intermediary buffer's area point to the output buffer's area.
1461 * In this case we want to skip the HTX header to make sure that copies
1462 * remain aligned and that this operation remains possible all the
1463 * time. This goes for headers, data blocks and any data extracted from
1464 * the HTX blocks.
Willy Tarreauc5efa332018-12-05 11:19:27 +01001465 */
1466 if (!b_data(&h1c->obuf)) {
Olivier Houchard84cca662018-12-14 16:28:08 +01001467 h1c->obuf.head = sizeof(struct htx) + blk->addr;
Willy Tarreau3815b222018-12-11 19:50:43 +01001468
1469 if (chn_htx->used == 1 &&
Willy Tarreau37dd54d2018-12-15 14:48:31 +01001470 htx_get_blk_type(blk) == HTX_BLK_DATA &&
Willy Tarreau3815b222018-12-11 19:50:43 +01001471 htx_get_blk_value(chn_htx, blk).len == count) {
1472 void *old_area = h1c->obuf.area;
1473
1474 h1c->obuf.area = buf->area;
1475 h1c->obuf.data = count;
1476
1477 buf->area = old_area;
1478 buf->data = buf->head = 0;
Christopher Fauletadb22202018-12-12 10:32:09 +01001479
1480 /* The message is chunked. We need to emit the chunk
1481 * size. We have at least the size of the struct htx to
1482 * write the chunk envelope. It should be enough.
1483 */
1484 if (h1m->flags & H1_MF_CHNK) {
1485 h1_emit_chunk_size(&h1c->obuf, count);
1486 h1_emit_chunk_crlf(&h1c->obuf);
1487 }
1488
Willy Tarreau3815b222018-12-11 19:50:43 +01001489 total += count;
1490 goto out;
1491 }
Willy Tarreauc5efa332018-12-05 11:19:27 +01001492 tmp->area = h1c->obuf.area + h1c->obuf.head;
1493 }
1494
Christopher Faulet9768c262018-10-22 09:34:31 +02001495 tmp->size = b_room(&h1c->obuf);
1496
Christopher Fauletb2e84162018-12-06 11:39:49 +01001497 while (count && !(h1s->flags & errflag) && blk) {
Christopher Faulet570d1612018-11-26 11:13:57 +01001498 struct htx_sl *sl;
Christopher Faulet9768c262018-10-22 09:34:31 +02001499 struct ist n, v;
Christopher Fauletb2e84162018-12-06 11:39:49 +01001500 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet9768c262018-10-22 09:34:31 +02001501 uint32_t sz = htx_get_blksz(blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001502 uint32_t vlen;
Christopher Faulet9768c262018-10-22 09:34:31 +02001503
Christopher Fauletb2e84162018-12-06 11:39:49 +01001504 vlen = sz;
1505 if (vlen > count) {
1506 if (type != HTX_BLK_DATA && type != HTX_BLK_TLR)
1507 goto copy;
1508 vlen = count;
1509 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001510
Christopher Fauletb2e84162018-12-06 11:39:49 +01001511 switch (type) {
Christopher Faulet9768c262018-10-22 09:34:31 +02001512 case HTX_BLK_UNUSED:
Christopher Faulet129817b2018-09-20 16:14:40 +02001513 break;
Christopher Faulet9768c262018-10-22 09:34:31 +02001514
1515 case HTX_BLK_REQ_SL:
Christopher Faulet66229af2018-11-28 16:06:57 +01001516 h1m_init_req(h1m);
1517 h1m->flags |= H1_MF_NO_PHDR;
Christopher Faulet9768c262018-10-22 09:34:31 +02001518 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001519 h1s->meth = sl->info.req.meth;
Christopher Faulet9768c262018-10-22 09:34:31 +02001520 h1_parse_req_vsn(h1m, sl);
Christopher Fauletc59ff232018-12-03 13:58:44 +01001521 if (!htx_reqline_to_h1(sl, tmp))
Christopher Faulet9768c262018-10-22 09:34:31 +02001522 goto copy;
1523 h1m->flags |= H1_MF_XFER_LEN;
Christopher Faulet1f890dd2019-02-18 10:33:16 +01001524 if (sl->flags & HTX_SL_F_BODYLESS)
1525 h1m->flags |= H1_MF_CLEN;
Christopher Faulet9768c262018-10-22 09:34:31 +02001526 h1m->state = H1_MSG_HDR_FIRST;
Christopher Faulet129817b2018-09-20 16:14:40 +02001527 break;
Christopher Faulet129817b2018-09-20 16:14:40 +02001528
Christopher Faulet9768c262018-10-22 09:34:31 +02001529 case HTX_BLK_RES_SL:
Christopher Faulet66229af2018-11-28 16:06:57 +01001530 h1m_init_res(h1m);
1531 h1m->flags |= H1_MF_NO_PHDR;
Christopher Faulet9768c262018-10-22 09:34:31 +02001532 sl = htx_get_blk_ptr(chn_htx, blk);
Christopher Faulet570d1612018-11-26 11:13:57 +01001533 h1s->status = sl->info.res.status;
Christopher Faulet9768c262018-10-22 09:34:31 +02001534 h1_parse_res_vsn(h1m, sl);
Christopher Fauletc59ff232018-12-03 13:58:44 +01001535 if (!htx_stline_to_h1(sl, tmp))
Christopher Faulet9768c262018-10-22 09:34:31 +02001536 goto copy;
Christopher Faulet03599112018-11-27 11:21:21 +01001537 if (sl->flags & HTX_SL_F_XFER_LEN)
Christopher Faulet9768c262018-10-22 09:34:31 +02001538 h1m->flags |= H1_MF_XFER_LEN;
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001539 if (sl->info.res.status < 200 &&
1540 (sl->info.res.status == 100 || sl->info.res.status >= 102))
1541 process_conn_mode = 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02001542 h1m->state = H1_MSG_HDR_FIRST;
1543 break;
1544
1545 case HTX_BLK_HDR:
Christopher Faulet9768c262018-10-22 09:34:31 +02001546 h1m->state = H1_MSG_HDR_NAME;
1547 n = htx_get_blk_name(chn_htx, blk);
1548 v = htx_get_blk_value(chn_htx, blk);
1549
1550 if (isteqi(n, ist("transfer-encoding")))
1551 h1_parse_xfer_enc_header(h1m, v);
Willy Tarreau27cd2232019-01-03 21:52:42 +01001552 else if (isteqi(n, ist("content-length"))) {
Christopher Faulet5220ef22019-03-27 15:44:56 +01001553 /* Only skip C-L header with invalid value. */
1554 if (h1_parse_cont_len_header(h1m, &v) < 0)
Willy Tarreau27cd2232019-01-03 21:52:42 +01001555 goto skip_hdr;
1556 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001557 else if (isteqi(n, ist("connection"))) {
1558 h1_parse_connection_header(h1m, v);
1559 h1_process_conn_mode(h1s, h1m, NULL, &v);
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001560 process_conn_mode = 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02001561 if (!v.len)
1562 goto skip_hdr;
1563 }
1564
Christopher Fauletc59ff232018-12-03 13:58:44 +01001565 if (!htx_hdr_to_h1(n, v, tmp))
Christopher Faulet9768c262018-10-22 09:34:31 +02001566 goto copy;
1567 skip_hdr:
1568 h1m->state = H1_MSG_HDR_L2_LWS;
1569 break;
1570
1571 case HTX_BLK_PHDR:
1572 /* not implemented yet */
1573 h1m->flags |= errflag;
1574 break;
1575
1576 case HTX_BLK_EOH:
Christopher Fauletde68b132018-12-10 11:21:47 +01001577 if (h1m->state != H1_MSG_LAST_LF && process_conn_mode) {
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001578 /* There is no "Connection:" header and
1579 * it the conn_mode must be
1580 * processed. So do it */
1581 n = ist("Connection");
1582 v = ist("");
1583 h1_process_conn_mode(h1s, h1m, NULL, &v);
1584 process_conn_mode = 0;
1585 if (v.len) {
Christopher Fauletc59ff232018-12-03 13:58:44 +01001586 if (!htx_hdr_to_h1(n, v, tmp))
Christopher Fauletd1ebb1e2018-11-28 16:32:50 +01001587 goto copy;
1588 }
1589 }
Willy Tarreau4710d202019-01-03 17:39:54 +01001590
Christopher Faulet1f890dd2019-02-18 10:33:16 +01001591 if (((h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
1592 (H1_MF_VER_11|H1_MF_XFER_LEN)) ||
1593 (h1s->status >= 200 && h1s->status != 204 && h1s->status != 304 &&
1594 h1s->meth != HTTP_METH_HEAD && !(h1s->meth == HTTP_METH_CONNECT && h1s->status == 200) &&
1595 (h1m->flags & (H1_MF_VER_11|H1_MF_RESP|H1_MF_CLEN|H1_MF_CHNK|H1_MF_XFER_LEN)) ==
1596 (H1_MF_VER_11|H1_MF_RESP|H1_MF_XFER_LEN))) {
Willy Tarreau4710d202019-01-03 17:39:54 +01001597 /* chunking needed but header not seen */
1598 if (!chunk_memcat(tmp, "transfer-encoding: chunked\r\n", 28))
1599 goto copy;
1600 h1m->flags |= H1_MF_CHNK;
1601 }
1602
Christopher Faulet9768c262018-10-22 09:34:31 +02001603 h1m->state = H1_MSG_LAST_LF;
1604 if (!chunk_memcat(tmp, "\r\n", 2))
1605 goto copy;
1606
1607 h1m->state = H1_MSG_DATA;
1608 break;
1609
1610 case HTX_BLK_DATA:
1611 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001612 v.len = vlen;
Christopher Fauletc59ff232018-12-03 13:58:44 +01001613 if (!htx_data_to_h1(v, tmp, !!(h1m->flags & H1_MF_CHNK)))
Christopher Faulet9768c262018-10-22 09:34:31 +02001614 goto copy;
1615 break;
1616
1617 case HTX_BLK_EOD:
1618 if (!chunk_memcat(tmp, "0\r\n", 3))
1619 goto copy;
Willy Tarreau34d23482019-01-03 17:46:56 +01001620 h1s->flags |= H1S_F_HAVE_O_EOD;
Christopher Faulet9768c262018-10-22 09:34:31 +02001621 h1m->state = H1_MSG_TRAILERS;
1622 break;
1623
1624 case HTX_BLK_TLR:
Willy Tarreau34d23482019-01-03 17:46:56 +01001625 if (!(h1s->flags & H1S_F_HAVE_O_EOD)) {
Christopher Faulet32188212018-11-20 18:21:43 +01001626 if (!chunk_memcat(tmp, "0\r\n", 3))
1627 goto copy;
Willy Tarreau34d23482019-01-03 17:46:56 +01001628 h1s->flags |= H1S_F_HAVE_O_EOD;
Christopher Faulet32188212018-11-20 18:21:43 +01001629 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001630 v = htx_get_blk_value(chn_htx, blk);
Christopher Fauletb2e84162018-12-06 11:39:49 +01001631 v.len = vlen;
Christopher Fauletc59ff232018-12-03 13:58:44 +01001632 if (!htx_trailer_to_h1(v, tmp))
Christopher Faulet9768c262018-10-22 09:34:31 +02001633 goto copy;
Willy Tarreau34d23482019-01-03 17:46:56 +01001634 h1s->flags |= H1S_F_HAVE_O_TLR;
Christopher Faulet9768c262018-10-22 09:34:31 +02001635 break;
1636
1637 case HTX_BLK_EOM:
Christopher Faulet32188212018-11-20 18:21:43 +01001638 if ((h1m->flags & H1_MF_CHNK)) {
Willy Tarreau34d23482019-01-03 17:46:56 +01001639 if (!(h1s->flags & H1S_F_HAVE_O_EOD)) {
Christopher Faulet32188212018-11-20 18:21:43 +01001640 if (!chunk_memcat(tmp, "0\r\n", 3))
1641 goto copy;
Willy Tarreau34d23482019-01-03 17:46:56 +01001642 h1s->flags |= H1S_F_HAVE_O_EOD;
Christopher Faulet32188212018-11-20 18:21:43 +01001643 }
Willy Tarreau34d23482019-01-03 17:46:56 +01001644 if (!(h1s->flags & H1S_F_HAVE_O_TLR)) {
Christopher Faulet32188212018-11-20 18:21:43 +01001645 if (!chunk_memcat(tmp, "\r\n", 2))
1646 goto copy;
Willy Tarreau34d23482019-01-03 17:46:56 +01001647 h1s->flags |= H1S_F_HAVE_O_TLR;
Christopher Faulet32188212018-11-20 18:21:43 +01001648 }
1649 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001650 h1m->state = H1_MSG_DONE;
1651 break;
1652
1653 case HTX_BLK_OOB:
1654 v = htx_get_blk_value(chn_htx, blk);
1655 if (!chunk_memcat(tmp, v.ptr, v.len))
1656 goto copy;
1657 break;
1658
1659 default:
1660 h1m->flags |= errflag;
1661 break;
1662 }
Christopher Fauletb2e84162018-12-06 11:39:49 +01001663 total += vlen;
1664 count -= vlen;
1665 if (sz == vlen)
1666 blk = htx_remove_blk(chn_htx, blk);
1667 else {
1668 htx_cut_data_blk(chn_htx, blk, vlen);
1669 break;
1670 }
Christopher Faulet129817b2018-09-20 16:14:40 +02001671 }
1672
Christopher Faulet9768c262018-10-22 09:34:31 +02001673 copy:
Willy Tarreauc5efa332018-12-05 11:19:27 +01001674 /* when the output buffer is empty, tmp shares the same area so that we
1675 * only have to update pointers and lengths.
1676 */
Willy Tarreaub57af612019-01-23 20:43:53 +01001677 if (tmp->area == h1c->obuf.area + h1c->obuf.head)
Willy Tarreauc5efa332018-12-05 11:19:27 +01001678 h1c->obuf.data = tmp->data;
1679 else
1680 b_putblk(&h1c->obuf, tmp->area, tmp->data);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001681
Willy Tarreau3815b222018-12-11 19:50:43 +01001682 htx_to_buf(chn_htx, buf);
1683 out:
Willy Tarreau45f2b892018-12-05 07:59:27 +01001684 if (!buf_room_for_htx_data(&h1c->obuf))
Christopher Faulet51dbc942018-09-13 09:05:15 +02001685 h1c->flags |= H1C_F_OUT_FULL;
Christopher Faulet9768c262018-10-22 09:34:31 +02001686 end:
1687 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001688}
1689
Christopher Faulet51dbc942018-09-13 09:05:15 +02001690/*********************************************************/
1691/* functions below are I/O callbacks from the connection */
1692/*********************************************************/
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001693static void h1_wake_stream_for_recv(struct h1s *h1s)
1694{
1695 if (h1s && h1s->recv_wait) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001696 h1s->recv_wait->events &= ~SUB_RETRY_RECV;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001697 tasklet_wakeup(h1s->recv_wait->task);
1698 h1s->recv_wait = NULL;
1699 }
1700}
1701static void h1_wake_stream_for_send(struct h1s *h1s)
1702{
1703 if (h1s && h1s->send_wait) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001704 h1s->send_wait->events &= ~SUB_RETRY_SEND;
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001705 tasklet_wakeup(h1s->send_wait->task);
1706 h1s->send_wait = NULL;
1707 }
1708}
1709
Christopher Faulet51dbc942018-09-13 09:05:15 +02001710/*
1711 * Attempt to read data, and subscribe if none available
1712 */
1713static int h1_recv(struct h1c *h1c)
1714{
1715 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01001716 struct h1s *h1s = h1c->h1s;
Olivier Houchard75159a92018-12-03 18:46:09 +01001717 size_t ret = 0, max;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001718 int rcvd = 0;
1719
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001720 if (h1c->wait_event.events & SUB_RETRY_RECV)
Christopher Fauletc386a882018-12-04 16:06:28 +01001721 return (b_data(&h1c->ibuf));
Christopher Faulet51dbc942018-09-13 09:05:15 +02001722
Olivier Houchard75159a92018-12-03 18:46:09 +01001723 if (!h1_recv_allowed(h1c)) {
1724 rcvd = 1;
Christopher Faulet9768c262018-10-22 09:34:31 +02001725 goto end;
Olivier Houchard75159a92018-12-03 18:46:09 +01001726 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001727
Christopher Fauletfeb11742018-11-29 15:12:34 +01001728 if (h1s && (h1s->flags & (H1S_F_BUF_FLUSH|H1S_F_SPLICED_DATA))) {
Christopher Faulet9768c262018-10-22 09:34:31 +02001729 rcvd = 1;
1730 goto end;
1731 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02001732
Christopher Faulet51dbc942018-09-13 09:05:15 +02001733 if (!h1_get_buf(h1c, &h1c->ibuf)) {
1734 h1c->flags |= H1C_F_IN_ALLOC;
Christopher Faulet9768c262018-10-22 09:34:31 +02001735 goto end;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001736 }
1737
Olivier Houchard29a22bc2018-12-04 18:16:45 +01001738 /*
1739 * If we only have a small amount of data, realign it,
1740 * it's probably cheaper than doing 2 recv() calls.
1741 */
1742 if (b_data(&h1c->ibuf) > 0 && b_data(&h1c->ibuf) < 128)
1743 b_slow_realign(&h1c->ibuf, trash.area, 0);
1744
Willy Tarreau45f2b892018-12-05 07:59:27 +01001745 max = buf_room_for_htx_data(&h1c->ibuf);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001746 if (max) {
1747 h1c->flags &= ~H1C_F_IN_FULL;
Willy Tarreau78f548f2018-12-05 10:02:39 +01001748
Willy Tarreaue0f24ee2018-12-14 10:51:23 +01001749 b_realign_if_empty(&h1c->ibuf);
Willy Tarreau78f548f2018-12-05 10:02:39 +01001750 if (!b_data(&h1c->ibuf)) {
1751 /* try to pre-align the buffer like the rxbufs will be
1752 * to optimize memory copies.
1753 */
Willy Tarreau78f548f2018-12-05 10:02:39 +01001754 h1c->ibuf.head = sizeof(struct htx);
1755 }
Willy Tarreauc0960d12018-12-14 10:59:15 +01001756 ret = conn->xprt->rcv_buf(conn, &h1c->ibuf, max, 0);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001757 }
Christopher Faulet47365272018-10-31 17:40:50 +01001758 if (ret > 0) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02001759 rcvd = 1;
Christopher Fauletfeb11742018-11-29 15:12:34 +01001760 if (h1s && h1s->cs) {
Christopher Faulet37e36072018-12-04 15:54:12 +01001761 h1s->cs->flags |= (CS_FL_READ_PARTIAL|CS_FL_RCV_MORE);
Christopher Fauletfeb11742018-11-29 15:12:34 +01001762 if (h1s->csinfo.t_idle == -1)
1763 h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake;
1764 }
Christopher Faulet47365272018-10-31 17:40:50 +01001765 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001766
Christopher Fauletcf56b992018-12-11 16:12:31 +01001767 if (!h1_recv_allowed(h1c) || !buf_room_for_htx_data(&h1c->ibuf)) {
Christopher Faulet81d48432018-11-19 21:22:43 +01001768 rcvd = 1;
Christopher Fauletcf56b992018-12-11 16:12:31 +01001769 goto end;
1770 }
1771
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001772 conn->xprt->subscribe(conn, SUB_RETRY_RECV, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001773
Christopher Faulet9768c262018-10-22 09:34:31 +02001774 end:
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001775 if (ret > 0 || (conn->flags & CO_FL_ERROR) || conn_xprt_read0_pending(conn))
1776 h1_wake_stream_for_recv(h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01001777
Christopher Faulete6b39942018-12-07 09:42:49 +01001778 if (conn_xprt_read0_pending(conn) && h1s && h1s->cs)
Christopher Faulet87a8f352019-03-22 14:51:36 +01001779 h1s->cs->flags |= CS_FL_REOS;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001780 if (!b_data(&h1c->ibuf))
1781 h1_release_buf(h1c, &h1c->ibuf);
Willy Tarreau45f2b892018-12-05 07:59:27 +01001782 else if (!buf_room_for_htx_data(&h1c->ibuf))
Christopher Faulet51dbc942018-09-13 09:05:15 +02001783 h1c->flags |= H1C_F_IN_FULL;
1784 return rcvd;
1785}
1786
1787
1788/*
1789 * Try to send data if possible
1790 */
1791static int h1_send(struct h1c *h1c)
1792{
1793 struct connection *conn = h1c->conn;
1794 unsigned int flags = 0;
1795 size_t ret;
1796 int sent = 0;
1797
1798 if (conn->flags & CO_FL_ERROR)
1799 return 0;
1800
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02001801 if (h1c->flags & H1C_F_CS_WAIT_CONN) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001802 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
1803 conn->xprt->subscribe(conn, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02001804 return 0;
1805 }
1806
Christopher Faulet51dbc942018-09-13 09:05:15 +02001807 if (!b_data(&h1c->obuf))
1808 goto end;
1809
1810 if (h1c->flags & H1C_F_OUT_FULL)
1811 flags |= CO_SFL_MSG_MORE;
1812
1813 ret = conn->xprt->snd_buf(conn, &h1c->obuf, b_data(&h1c->obuf), flags);
1814 if (ret > 0) {
1815 h1c->flags &= ~H1C_F_OUT_FULL;
1816 b_del(&h1c->obuf, ret);
1817 sent = 1;
1818 }
1819
Christopher Faulet145aa472018-12-06 10:56:20 +01001820 if (conn->flags & (CO_FL_ERROR|CO_FL_SOCK_WR_SH)) {
1821 /* error or output closed, nothing to send, clear the buffer to release it */
1822 b_reset(&h1c->obuf);
1823 }
1824
Christopher Faulet51dbc942018-09-13 09:05:15 +02001825 end:
Christopher Faulete17fa2f2018-12-11 16:25:36 +01001826 if (!(h1c->flags & H1C_F_OUT_FULL))
1827 h1_wake_stream_for_send(h1c->h1s);
Olivier Houchard75159a92018-12-03 18:46:09 +01001828
Christopher Faulet51dbc942018-09-13 09:05:15 +02001829 /* We're done, no more to send */
1830 if (!b_data(&h1c->obuf)) {
1831 h1_release_buf(h1c, &h1c->obuf);
Christopher Fauletf2824e62018-10-01 12:12:37 +02001832 h1_sync_messages(h1c);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001833 if (h1c->flags & H1C_F_CS_SHUTW_NOW)
Christopher Faulet666a0c42019-01-08 11:12:04 +01001834 h1_shutw_conn(conn, CS_SHW_NORMAL);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001835 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001836 else if (!(h1c->wait_event.events & SUB_RETRY_SEND))
1837 conn->xprt->subscribe(conn, SUB_RETRY_SEND, &h1c->wait_event);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001838
1839 return sent;
1840}
1841
Christopher Faulet51dbc942018-09-13 09:05:15 +02001842
1843/* callback called on any event by the connection handler.
1844 * It applies changes and returns zero, or < 0 if it wants immediate
1845 * destruction of the connection.
1846 */
1847static int h1_process(struct h1c * h1c)
1848{
1849 struct connection *conn = h1c->conn;
Christopher Fauletfeb11742018-11-29 15:12:34 +01001850 struct h1s *h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001851
Willy Tarreau3d2ee552018-12-19 14:12:10 +01001852 if (!conn->ctx)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001853 return -1;
1854
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02001855 if (h1c->flags & H1C_F_CS_WAIT_CONN) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001856 if (!(conn->flags & (CO_FL_CONNECTED|CO_FL_ERROR)))
1857 goto end;
1858 h1c->flags &= ~H1C_F_CS_WAIT_CONN;
Christopher Fauleta0883e62018-12-11 16:26:50 +01001859 h1_wake_stream_for_send(h1s);
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02001860 }
1861
Christopher Fauletfeb11742018-11-29 15:12:34 +01001862 if (!h1s) {
Christopher Faulet539e0292018-11-19 10:40:09 +01001863 if (h1c->flags & H1C_F_CS_ERROR ||
Olivier Houchard32d75ed2019-01-14 17:27:23 +01001864 conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH) ||
Christopher Faulet539e0292018-11-19 10:40:09 +01001865 conn_xprt_read0_pending(conn))
1866 goto release;
Christopher Faulet666a0c42019-01-08 11:12:04 +01001867 if (!conn_is_back(conn) && !(h1c->flags & (H1C_F_CS_SHUTW_NOW|H1C_F_CS_SHUTDOWN))) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01001868 if (!h1s_create(h1c, NULL, NULL))
Christopher Faulet539e0292018-11-19 10:40:09 +01001869 goto release;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001870 }
Christopher Faulet1a7ad7a2018-12-04 16:10:44 +01001871 else
Olivier Houcharde7284782018-12-06 18:54:54 +01001872 goto end;
Christopher Fauletfeb11742018-11-29 15:12:34 +01001873 h1s = h1c->h1s;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001874 }
1875
Christopher Fauletfeb11742018-11-29 15:12:34 +01001876 if (b_data(&h1c->ibuf) && h1s->csinfo.t_idle == -1)
1877 h1s->csinfo.t_idle = tv_ms_elapsed(&h1s->csinfo.tv_create, &now) - h1s->csinfo.t_handshake;
1878
Olivier Houchard75159a92018-12-03 18:46:09 +01001879 if (!b_data(&h1c->ibuf) && h1s && h1s->cs && h1s->cs->data_cb->wake &&
1880 (conn_xprt_read0_pending(conn) || h1c->flags & H1C_F_CS_ERROR ||
Olivier Houchard32d75ed2019-01-14 17:27:23 +01001881 conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH))) {
Olivier Houchard75159a92018-12-03 18:46:09 +01001882 int flags = 0;
1883
1884 if (h1c->flags & H1C_F_CS_ERROR || conn->flags & CO_FL_ERROR)
1885 flags |= CS_FL_ERROR;
1886 if (conn_xprt_read0_pending(conn))
Christopher Faulet87a8f352019-03-22 14:51:36 +01001887 flags |= CS_FL_REOS;
Olivier Houchard75159a92018-12-03 18:46:09 +01001888 h1s->cs->flags |= flags;
1889 h1s->cs->data_cb->wake(h1s->cs);
1890 }
Christopher Faulet47365272018-10-31 17:40:50 +01001891 end:
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001892 if (h1c->task) {
1893 h1c->task->expire = TICK_ETERNITY;
1894 if (b_data(&h1c->obuf)) {
Christopher Faulet666a0c42019-01-08 11:12:04 +01001895 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 +01001896 ? h1c->shut_timeout
1897 : h1c->timeout));
1898 task_queue(h1c->task);
1899 }
1900 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02001901 return 0;
Christopher Faulet539e0292018-11-19 10:40:09 +01001902
1903 release:
1904 h1_release(conn);
1905 return -1;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001906}
1907
1908static struct task *h1_io_cb(struct task *t, void *ctx, unsigned short status)
1909{
1910 struct h1c *h1c = ctx;
1911 int ret = 0;
1912
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001913 if (!(h1c->wait_event.events & SUB_RETRY_SEND))
Christopher Faulet51dbc942018-09-13 09:05:15 +02001914 ret = h1_send(h1c);
Willy Tarreau4f6516d2018-12-19 13:59:17 +01001915 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet51dbc942018-09-13 09:05:15 +02001916 ret |= h1_recv(h1c);
Christopher Faulet81d48432018-11-19 21:22:43 +01001917 if (ret || !h1c->h1s)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001918 h1_process(h1c);
1919 return NULL;
1920}
1921
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01001922static void h1_reset(struct connection *conn)
1923{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01001924 struct h1c *h1c = conn->ctx;
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01001925
1926 /* Reset the flags, and let the mux know we're waiting for a connection */
1927 h1c->flags = H1C_F_CS_WAIT_CONN;
1928}
Christopher Faulet51dbc942018-09-13 09:05:15 +02001929
1930static int h1_wake(struct connection *conn)
1931{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01001932 struct h1c *h1c = conn->ctx;
Olivier Houchard75159a92018-12-03 18:46:09 +01001933 int ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001934
Christopher Faulet539e0292018-11-19 10:40:09 +01001935 h1_send(h1c);
Olivier Houchard75159a92018-12-03 18:46:09 +01001936 ret = h1_process(h1c);
1937 if (ret == 0) {
1938 struct h1s *h1s = h1c->h1s;
1939
1940 if (h1s && h1s->cs && h1s->cs->data_cb->wake)
1941 ret = h1s->cs->data_cb->wake(h1s->cs);
1942 }
1943 return ret;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001944}
1945
Christopher Fauletb8093cf2019-01-03 16:27:28 +01001946/* Connection timeout management. The principle is that if there's no receipt
1947 * nor sending for a certain amount of time, the connection is closed.
1948 */
1949static struct task *h1_timeout_task(struct task *t, void *context, unsigned short state)
1950{
1951 struct h1c *h1c = context;
1952 int expired = tick_is_expired(t->expire, now_ms);
1953
1954 if (!expired && h1c)
1955 return t;
1956
1957 task_delete(t);
1958 task_free(t);
1959
1960 if (!h1c) {
1961 /* resources were already deleted */
1962 return NULL;
1963 }
1964
1965 h1c->task = NULL;
1966 /* If a stream is still attached to the mux, just set an error and wait
1967 * for the stream's timeout. Otherwise, release the mux. This is only ok
1968 * because same timeouts are used.
1969 */
1970 if (h1c->h1s && h1c->h1s->cs)
1971 h1c->flags |= H1C_F_CS_ERROR;
1972 else
1973 h1_release(h1c->conn);
1974 return NULL;
1975}
1976
Christopher Faulet51dbc942018-09-13 09:05:15 +02001977/*******************************************/
1978/* functions below are used by the streams */
1979/*******************************************/
1980/*
1981 * Attach a new stream to a connection
1982 * (Used for outgoing connections)
1983 */
Olivier Houchardf502aca2018-12-14 19:42:40 +01001984static struct conn_stream *h1_attach(struct connection *conn, struct session *sess)
Christopher Faulet51dbc942018-09-13 09:05:15 +02001985{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01001986 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02001987 struct conn_stream *cs = NULL;
1988 struct h1s *h1s;
1989
1990 if (h1c->flags & H1C_F_CS_ERROR)
1991 goto end;
1992
1993 cs = cs_new(h1c->conn);
1994 if (!cs)
1995 goto end;
1996
Olivier Houchardf502aca2018-12-14 19:42:40 +01001997 h1s = h1s_create(h1c, cs, sess);
Christopher Faulet51dbc942018-09-13 09:05:15 +02001998 if (h1s == NULL)
1999 goto end;
2000
2001 return cs;
2002 end:
2003 cs_free(cs);
2004 return NULL;
2005}
2006
2007/* Retrieves a valid conn_stream from this connection, or returns NULL. For
2008 * this mux, it's easy as we can only store a single conn_stream.
2009 */
2010static const struct conn_stream *h1_get_first_cs(const struct connection *conn)
2011{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002012 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002013 struct h1s *h1s = h1c->h1s;
2014
2015 if (h1s)
2016 return h1s->cs;
2017
2018 return NULL;
2019}
2020
2021static void h1_destroy(struct connection *conn)
2022{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002023 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002024
2025 if (!h1c->h1s)
2026 h1_release(conn);
2027}
2028
2029/*
2030 * Detach the stream from the connection and possibly release the connection.
2031 */
2032static void h1_detach(struct conn_stream *cs)
2033{
2034 struct h1s *h1s = cs->ctx;
2035 struct h1c *h1c;
Olivier Houchardf502aca2018-12-14 19:42:40 +01002036 struct session *sess;
Olivier Houchard8a786902018-12-15 16:05:40 +01002037 int has_keepalive;
2038 int is_not_first;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002039
2040 cs->ctx = NULL;
2041 if (!h1s)
2042 return;
2043
Olivier Houchardf502aca2018-12-14 19:42:40 +01002044 sess = h1s->sess;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002045 h1c = h1s->h1c;
2046 h1s->cs = NULL;
2047
Olivier Houchard8a786902018-12-15 16:05:40 +01002048 has_keepalive = h1s->flags & H1S_F_WANT_KAL;
2049 is_not_first = h1s->flags & H1S_F_NOT_FIRST;
2050 h1s_destroy(h1s);
2051
2052 if (conn_is_back(h1c->conn) && has_keepalive &&
Olivier Houchard44d59142018-12-13 18:46:22 +01002053 !(h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))) {
Christopher Faulet9400a392018-11-23 23:10:39 +01002054 /* Never ever allow to reuse a connection from a non-reuse backend */
Olivier Houchard44d59142018-12-13 18:46:22 +01002055 if ((h1c->px->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
Christopher Faulet9400a392018-11-23 23:10:39 +01002056 h1c->conn->flags |= CO_FL_PRIVATE;
2057
Olivier Houchard44d59142018-12-13 18:46:22 +01002058 if (!(h1c->conn->owner)) {
Olivier Houchardf502aca2018-12-14 19:42:40 +01002059 h1c->conn->owner = sess;
Olivier Houchard351411f2018-12-27 17:20:54 +01002060 if (!session_add_conn(sess, h1c->conn, h1c->conn->target)) {
2061 h1c->conn->owner = NULL;
2062 if (!srv_add_to_idle_list(objt_server(h1c->conn->target), h1c->conn))
2063 /* The server doesn't want it, let's kill the connection right away */
2064 h1c->conn->mux->destroy(h1c->conn);
2065 else
2066 tasklet_wakeup(h1c->wait_event.task);
2067 return;
2068
2069 }
Olivier Houchard44d59142018-12-13 18:46:22 +01002070 }
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01002071 if (h1c->conn->owner == sess) {
2072 int ret = session_check_idle_conn(sess, h1c->conn);
2073 if (ret == -1)
2074 /* The connection got destroyed, let's leave */
2075 return;
2076 else if (ret == 1) {
2077 /* The connection was added to the server list,
2078 * wake the task so we can subscribe to events
2079 */
2080 tasklet_wakeup(h1c->wait_event.task);
2081 return;
2082 }
2083 }
Christopher Faulet9400a392018-11-23 23:10:39 +01002084 /* we're in keep-alive with an idle connection, monitor it if not already done */
Olivier Houchard44d59142018-12-13 18:46:22 +01002085 if (LIST_ISEMPTY(&h1c->conn->list)) {
Christopher Faulet9400a392018-11-23 23:10:39 +01002086 struct server *srv = objt_server(h1c->conn->target);
2087
2088 if (srv) {
2089 if (h1c->conn->flags & CO_FL_PRIVATE)
2090 LIST_ADD(&srv->priv_conns[tid], &h1c->conn->list);
Olivier Houchard8a786902018-12-15 16:05:40 +01002091 else if (is_not_first)
Christopher Faulet9400a392018-11-23 23:10:39 +01002092 LIST_ADD(&srv->safe_conns[tid], &h1c->conn->list);
2093 else
2094 LIST_ADD(&srv->idle_conns[tid], &h1c->conn->list);
2095 }
2096 }
2097 }
2098
Christopher Faulet51dbc942018-09-13 09:05:15 +02002099 /* We don't want to close right now unless the connection is in error */
Christopher Faulet666a0c42019-01-08 11:12:04 +01002100 if ((h1c->flags & (H1C_F_CS_ERROR|H1C_F_CS_SHUTDOWN)) ||
Olivier Houchard7ccff1a2018-12-03 16:33:19 +01002101 (h1c->conn->flags & CO_FL_ERROR) || !h1c->conn->owner)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002102 h1_release(h1c->conn);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002103 else {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002104 tasklet_wakeup(h1c->wait_event.task);
Christopher Fauletb8093cf2019-01-03 16:27:28 +01002105 if (h1c->task) {
2106 h1c->task->expire = TICK_ETERNITY;
2107 if (b_data(&h1c->obuf)) {
Christopher Faulet666a0c42019-01-08 11:12:04 +01002108 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 +01002109 ? h1c->shut_timeout
2110 : h1c->timeout));
2111 task_queue(h1c->task);
2112 }
2113 }
2114 }
Christopher Faulet51dbc942018-09-13 09:05:15 +02002115}
2116
2117
2118static void h1_shutr(struct conn_stream *cs, enum cs_shr_mode mode)
2119{
2120 struct h1s *h1s = cs->ctx;
2121
2122 if (!h1s)
2123 return;
2124
Olivier Houchardd2e88c72018-12-19 15:55:23 +01002125 if ((h1s->flags & H1S_F_WANT_KAL) &&
2126 !(cs->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)))
Christopher Fauletf2824e62018-10-01 12:12:37 +02002127 return;
2128
Christopher Faulet51dbc942018-09-13 09:05:15 +02002129 /* NOTE: Be sure to handle abort (cf. h2_shutr) */
2130 if (cs->flags & CS_FL_SHR)
2131 return;
2132 if (conn_xprt_ready(cs->conn) && cs->conn->xprt->shutr)
2133 cs->conn->xprt->shutr(cs->conn, (mode == CS_SHR_DRAIN));
Christopher Faulet666a0c42019-01-08 11:12:04 +01002134 if ((cs->conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH)) == (CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH))
2135 h1s->h1c->flags = (h1s->h1c->flags & ~H1C_F_CS_SHUTW_NOW) | H1C_F_CS_SHUTDOWN;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002136}
2137
2138static void h1_shutw(struct conn_stream *cs, enum cs_shw_mode mode)
2139{
2140 struct h1s *h1s = cs->ctx;
2141 struct h1c *h1c;
2142
2143 if (!h1s)
2144 return;
2145 h1c = h1s->h1c;
2146
Christopher Fauletf2824e62018-10-01 12:12:37 +02002147 if ((h1s->flags & H1S_F_WANT_KAL) &&
Olivier Houchardd2e88c72018-12-19 15:55:23 +01002148 !(h1c->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) &&
2149
Christopher Fauletf2824e62018-10-01 12:12:37 +02002150 h1s->req.state == H1_MSG_DONE && h1s->res.state == H1_MSG_DONE)
2151 return;
2152
Christopher Faulet51dbc942018-09-13 09:05:15 +02002153 h1c->flags |= H1C_F_CS_SHUTW_NOW;
2154 if ((cs->flags & CS_FL_SHW) || b_data(&h1c->obuf))
2155 return;
2156
Christopher Faulet666a0c42019-01-08 11:12:04 +01002157 h1_shutw_conn(cs->conn, mode);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002158}
2159
Christopher Faulet666a0c42019-01-08 11:12:04 +01002160static void h1_shutw_conn(struct connection *conn, enum cs_shw_mode mode)
Christopher Faulet51dbc942018-09-13 09:05:15 +02002161{
Willy Tarreau3d2ee552018-12-19 14:12:10 +01002162 struct h1c *h1c = conn->ctx;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002163
Christopher Faulet666a0c42019-01-08 11:12:04 +01002164 conn_xprt_shutw(conn);
2165 conn_sock_shutw(conn, (mode == CS_SHW_NORMAL));
2166 if ((conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH)) == (CO_FL_SOCK_RD_SH|CO_FL_SOCK_WR_SH))
2167 h1c->flags = (h1c->flags & ~H1C_F_CS_SHUTW_NOW) | H1C_F_CS_SHUTDOWN;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002168}
2169
2170/* Called from the upper layer, to unsubscribe to events */
2171static int h1_unsubscribe(struct conn_stream *cs, int event_type, void *param)
2172{
2173 struct wait_event *sw;
2174 struct h1s *h1s = cs->ctx;
2175
2176 if (!h1s)
2177 return 0;
2178
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002179 if (event_type & SUB_RETRY_RECV) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002180 sw = param;
2181 if (h1s->recv_wait == sw) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002182 sw->events &= ~SUB_RETRY_RECV;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002183 h1s->recv_wait = NULL;
2184 }
2185 }
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002186 if (event_type & SUB_RETRY_SEND) {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002187 sw = param;
2188 if (h1s->send_wait == sw) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002189 sw->events &= ~SUB_RETRY_SEND;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002190 h1s->send_wait = NULL;
2191 }
2192 }
2193 return 0;
2194}
2195
2196/* Called from the upper layer, to subscribe to events, such as being able to send */
2197static int h1_subscribe(struct conn_stream *cs, int event_type, void *param)
2198{
2199 struct wait_event *sw;
2200 struct h1s *h1s = cs->ctx;
2201
2202 if (!h1s)
2203 return -1;
2204
2205 switch (event_type) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002206 case SUB_RETRY_RECV:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002207 sw = param;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002208 if (!(sw->events & SUB_RETRY_RECV)) {
2209 sw->events |= SUB_RETRY_RECV;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002210 sw->handle = h1s;
2211 h1s->recv_wait = sw;
2212 }
2213 return 0;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002214 case SUB_RETRY_SEND:
Christopher Faulet51dbc942018-09-13 09:05:15 +02002215 sw = param;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002216 if (!(sw->events & SUB_RETRY_SEND)) {
2217 sw->events |= SUB_RETRY_SEND;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002218 sw->handle = h1s;
2219 h1s->send_wait = sw;
2220 }
2221 return 0;
2222 default:
2223 break;
2224 }
2225 return -1;
2226}
2227
2228/* Called from the upper layer, to receive data */
2229static size_t h1_rcv_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
2230{
2231 struct h1s *h1s = cs->ctx;
Christopher Faulet539e0292018-11-19 10:40:09 +01002232 struct h1c *h1c = h1s->h1c;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002233 size_t ret = 0;
2234
Christopher Faulet539e0292018-11-19 10:40:09 +01002235 if (!(h1c->flags & H1C_F_IN_ALLOC))
2236 ret = h1_process_input(h1c, buf, flags);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002237
2238 if (flags & CO_RFL_BUF_FLUSH)
2239 h1s->flags |= H1S_F_BUF_FLUSH;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002240 else if (ret > 0 || (h1s->flags & H1S_F_SPLICED_DATA)) {
2241 h1s->flags &= ~H1S_F_SPLICED_DATA;
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002242 if (!(h1c->wait_event.events & SUB_RETRY_RECV))
Christopher Faulet539e0292018-11-19 10:40:09 +01002243 tasklet_wakeup(h1c->wait_event.task);
Christopher Faulet51dbc942018-09-13 09:05:15 +02002244 }
2245 return ret;
2246}
2247
2248
2249/* Called from the upper layer, to send data */
2250static size_t h1_snd_buf(struct conn_stream *cs, struct buffer *buf, size_t count, int flags)
2251{
2252 struct h1s *h1s = cs->ctx;
2253 struct h1c *h1c;
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002254 size_t total = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002255
2256 if (!h1s)
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002257 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002258
2259 h1c = h1s->h1c;
Christopher Faulet3b88b8d2018-10-26 17:36:03 +02002260 if (h1c->flags & H1C_F_CS_WAIT_CONN)
2261 return 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002262
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002263 while (total != count) {
2264 size_t ret = 0;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002265
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002266 if (!(h1c->flags & (H1C_F_OUT_FULL|H1C_F_OUT_ALLOC)))
2267 ret = h1_process_output(h1c, buf, count);
2268 if (!ret)
2269 break;
2270 total += ret;
2271 if (!h1_send(h1c))
2272 break;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002273 }
Christopher Fauletf96c3222018-11-20 18:38:01 +01002274
Christopher Faulet5d37dac2018-11-22 10:58:42 +01002275 return total;
Christopher Faulet51dbc942018-09-13 09:05:15 +02002276}
2277
Christopher Faulet1be55f92018-10-02 15:59:23 +02002278#if defined(CONFIG_HAP_LINUX_SPLICE)
2279/* Send and get, using splicing */
2280static int h1_rcv_pipe(struct conn_stream *cs, struct pipe *pipe, unsigned int count)
2281{
2282 struct h1s *h1s = cs->ctx;
2283 struct h1m *h1m = (!conn_is_back(cs->conn) ? &h1s->req : &h1s->res);
2284 int ret = 0;
2285
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002286 if (b_data(&h1s->h1c->ibuf)) {
2287 h1s->flags |= H1S_F_BUF_FLUSH;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002288 goto end;
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002289 }
2290
2291 h1s->flags &= ~H1S_F_BUF_FLUSH;
2292 h1s->flags |= H1S_F_SPLICED_DATA;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002293 if (h1m->state == H1_MSG_DATA && count > h1m->curr_len)
2294 count = h1m->curr_len;
2295 ret = cs->conn->xprt->rcv_pipe(cs->conn, pipe, count);
2296 if (h1m->state == H1_MSG_DATA && ret > 0)
2297 h1m->curr_len -= ret;
2298 end:
2299 return ret;
2300
2301}
2302
2303static int h1_snd_pipe(struct conn_stream *cs, struct pipe *pipe)
2304{
2305 struct h1s *h1s = cs->ctx;
Christopher Faulet1be55f92018-10-02 15:59:23 +02002306 int ret = 0;
2307
2308 if (b_data(&h1s->h1c->obuf))
2309 goto end;
2310
2311 ret = cs->conn->xprt->snd_pipe(cs->conn, pipe);
Christopher Faulet1be55f92018-10-02 15:59:23 +02002312 end:
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002313 if (pipe->data) {
Willy Tarreau4f6516d2018-12-19 13:59:17 +01002314 if (!(h1s->h1c->wait_event.events & SUB_RETRY_SEND))
2315 cs->conn->xprt->subscribe(cs->conn, SUB_RETRY_SEND, &h1s->h1c->wait_event);
Christopher Fauletd44ad5b2018-11-19 21:52:12 +01002316 }
Christopher Faulet1be55f92018-10-02 15:59:23 +02002317 return ret;
2318}
2319#endif
2320
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002321/* for debugging with CLI's "show fd" command */
2322static void h1_show_fd(struct buffer *msg, struct connection *conn)
2323{
2324 struct h1c *h1c = conn->ctx;
2325 struct h1s *h1s = h1c->h1s;
2326
Christopher Fauletf376a312019-01-04 15:16:06 +01002327 chunk_appendf(msg, " h1c.flg=0x%x .sub=%d .ibuf=%u@%p+%u/%u .obuf=%u@%p+%u/%u",
2328 h1c->flags, h1c->wait_event.events,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002329 (unsigned int)b_data(&h1c->ibuf), b_orig(&h1c->ibuf),
2330 (unsigned int)b_head_ofs(&h1c->ibuf), (unsigned int)b_size(&h1c->ibuf),
2331 (unsigned int)b_data(&h1c->obuf), b_orig(&h1c->obuf),
2332 (unsigned int)b_head_ofs(&h1c->obuf), (unsigned int)b_size(&h1c->obuf));
2333
2334 if (h1s) {
2335 char *method;
2336
2337 if (h1s->meth < HTTP_METH_OTHER)
2338 method = http_known_methods[h1s->meth].ptr;
2339 else
2340 method = "UNKNOWN";
2341 chunk_appendf(msg, " h1s=%p h1s.flg=0x%x .req.state=%s .res.state=%s"
2342 " .meth=%s status=%d",
2343 h1s, h1s->flags,
2344 h1m_state_str(h1s->req.state),
2345 h1m_state_str(h1s->res.state), method, h1s->status);
2346 if (h1s->cs)
2347 chunk_appendf(msg, " .cs.flg=0x%08x .cs.data=%p",
2348 h1s->cs->flags, h1s->cs->data);
2349 }
2350}
2351
Christopher Faulet51dbc942018-09-13 09:05:15 +02002352/****************************************/
2353/* MUX initialization and instanciation */
2354/****************************************/
2355
2356/* The mux operations */
Willy Tarreauf77a1582019-01-10 10:00:08 +01002357static const struct mux_ops mux_h1_ops = {
Christopher Faulet51dbc942018-09-13 09:05:15 +02002358 .init = h1_init,
2359 .wake = h1_wake,
2360 .attach = h1_attach,
2361 .get_first_cs = h1_get_first_cs,
Christopher Fauletfeb11742018-11-29 15:12:34 +01002362 .get_cs_info = h1_get_cs_info,
Christopher Faulet51dbc942018-09-13 09:05:15 +02002363 .detach = h1_detach,
2364 .destroy = h1_destroy,
2365 .avail_streams = h1_avail_streams,
Willy Tarreau00f18a32019-01-26 12:19:01 +01002366 .used_streams = h1_used_streams,
Christopher Faulet51dbc942018-09-13 09:05:15 +02002367 .rcv_buf = h1_rcv_buf,
2368 .snd_buf = h1_snd_buf,
Christopher Faulet1be55f92018-10-02 15:59:23 +02002369#if defined(CONFIG_HAP_LINUX_SPLICE)
2370 .rcv_pipe = h1_rcv_pipe,
2371 .snd_pipe = h1_snd_pipe,
2372#endif
Christopher Faulet51dbc942018-09-13 09:05:15 +02002373 .subscribe = h1_subscribe,
2374 .unsubscribe = h1_unsubscribe,
2375 .shutr = h1_shutr,
2376 .shutw = h1_shutw,
Olivier Houcharda8f6b432018-12-21 15:20:29 +01002377 .show_fd = h1_show_fd,
Olivier Houchard9a86fcb2018-12-11 16:47:14 +01002378 .reset = h1_reset,
Christopher Faulet51dbc942018-09-13 09:05:15 +02002379 .flags = MX_FL_NONE,
2380 .name = "h1",
2381};
2382
2383
2384/* this mux registers default HTX proto */
2385static struct mux_proto_list mux_proto_htx =
2386{ .token = IST(""), .mode = PROTO_MODE_HTX, .side = PROTO_SIDE_BOTH, .mux = &mux_h1_ops };
2387
Willy Tarreau0108d902018-11-25 19:14:37 +01002388INITCALL1(STG_REGISTER, register_mux_proto, &mux_proto_htx);
2389
Christopher Faulet51dbc942018-09-13 09:05:15 +02002390/*
2391 * Local variables:
2392 * c-indent-level: 8
2393 * c-basic-offset: 8
2394 * End:
2395 */