blob: e3d22445eb09582a55bc37e69cb53ec2017a9378 [file] [log] [blame]
Christopher Fauletf4eb75d2018-10-11 15:55:07 +02001/*
2 * HTTP protocol analyzer
3 *
4 * Copyright (C) 2018 HAProxy Technologies, 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
Christopher Faulete0768eb2018-10-03 16:38:02 +020013#include <common/base64.h>
14#include <common/config.h>
15#include <common/debug.h>
Willy Tarreaub96b77e2018-12-11 10:22:41 +010016#include <common/htx.h>
Willy Tarreau8b507582020-02-25 09:35:07 +010017#include <common/net_helper.h>
Christopher Faulete0768eb2018-10-03 16:38:02 +020018#include <common/uri_auth.h>
19
Christopher Faulet0f226952018-10-22 09:29:56 +020020#include <types/capture.h>
Christopher Faulete0768eb2018-10-03 16:38:02 +020021
22#include <proto/acl.h>
Christopher Faulet3e964192018-10-24 11:39:23 +020023#include <proto/action.h>
Christopher Faulete0768eb2018-10-03 16:38:02 +020024#include <proto/channel.h>
25#include <proto/checks.h>
26#include <proto/connection.h>
27#include <proto/filters.h>
Christopher Faulet0f226952018-10-22 09:29:56 +020028#include <proto/http_htx.h>
Christopher Faulete0768eb2018-10-03 16:38:02 +020029#include <proto/log.h>
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020030#include <proto/http_ana.h>
Christopher Faulete0768eb2018-10-03 16:38:02 +020031#include <proto/proxy.h>
Christopher Fauletfefc73d2018-10-24 21:18:04 +020032#include <proto/server.h>
Christopher Faulete0768eb2018-10-03 16:38:02 +020033#include <proto/stream.h>
34#include <proto/stream_interface.h>
35#include <proto/stats.h>
Christopher Fauleta8a46e22019-07-16 14:53:09 +020036#include <proto/vars.h>
Christopher Faulete0768eb2018-10-03 16:38:02 +020037
Christopher Fauleteea8fc72019-11-05 16:18:10 +010038#define TRACE_SOURCE &trace_strm
39
Christopher Faulet377c5a52018-10-24 21:21:30 +020040extern const char *stat_status_codes[];
Christopher Fauletf2824e62018-10-01 12:12:37 +020041
Christopher Fauleta8a46e22019-07-16 14:53:09 +020042struct pool_head *pool_head_requri = NULL;
43struct pool_head *pool_head_capture = NULL;
44
45
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020046static void http_end_request(struct stream *s);
47static void http_end_response(struct stream *s);
Christopher Fauletf2824e62018-10-01 12:12:37 +020048
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020049static void http_capture_headers(struct htx *htx, char **cap, struct cap_hdr *cap_hdr);
50static int http_del_hdr_value(char *start, char *end, char **from, char *next);
51static size_t http_fmt_req_line(const struct htx_sl *sl, char *str, size_t len);
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020052static void http_debug_stline(const char *dir, struct stream *s, const struct htx_sl *sl);
53static void http_debug_hdr(const char *dir, struct stream *s, const struct ist n, const struct ist v);
Christopher Faulet0f226952018-10-22 09:29:56 +020054
Christopher Fauletb58f62b2020-01-13 16:40:13 +010055static enum rule_result http_req_get_intercept_rule(struct proxy *px, struct list *rules, struct stream *s);
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020056static enum rule_result http_res_get_intercept_rule(struct proxy *px, struct list *rules, struct stream *s);
Christopher Faulet3e964192018-10-24 11:39:23 +020057
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020058static void http_manage_client_side_cookies(struct stream *s, struct channel *req);
59static void http_manage_server_side_cookies(struct stream *s, struct channel *res);
Christopher Fauletfcda7c62018-10-24 11:56:22 +020060
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020061static int http_stats_check_uri(struct stream *s, struct http_txn *txn, struct proxy *backend);
62static int http_handle_stats(struct stream *s, struct channel *req);
Christopher Faulet377c5a52018-10-24 21:21:30 +020063
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020064static int http_handle_expect_hdr(struct stream *s, struct htx *htx, struct http_msg *msg);
65static int http_reply_100_continue(struct stream *s);
66static int http_reply_40x_unauthorized(struct stream *s, const char *auth_realm);
Christopher Faulet23a3c792018-11-28 10:01:23 +010067
Christopher Faulete0768eb2018-10-03 16:38:02 +020068/* This stream analyser waits for a complete HTTP request. It returns 1 if the
69 * processing can continue on next analysers, or zero if it either needs more
70 * data or wants to immediately abort the request (eg: timeout, error, ...). It
71 * is tied to AN_REQ_WAIT_HTTP and may may remove itself from s->req.analysers
72 * when it has nothing left to do, and may remove any analyser when it wants to
73 * abort.
74 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020075int http_wait_for_request(struct stream *s, struct channel *req, int an_bit)
Christopher Faulete0768eb2018-10-03 16:38:02 +020076{
Christopher Faulet9768c262018-10-22 09:34:31 +020077
Christopher Faulete0768eb2018-10-03 16:38:02 +020078 /*
Christopher Faulet9768c262018-10-22 09:34:31 +020079 * We will analyze a complete HTTP request to check the its syntax.
Christopher Faulete0768eb2018-10-03 16:38:02 +020080 *
Christopher Faulet9768c262018-10-22 09:34:31 +020081 * Once the start line and all headers are received, we may perform a
82 * capture of the error (if any), and we will set a few fields. We also
83 * check for monitor-uri, logging and finally headers capture.
Christopher Faulete0768eb2018-10-03 16:38:02 +020084 */
Christopher Faulete0768eb2018-10-03 16:38:02 +020085 struct session *sess = s->sess;
86 struct http_txn *txn = s->txn;
87 struct http_msg *msg = &txn->req;
Christopher Faulet9768c262018-10-22 09:34:31 +020088 struct htx *htx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +010089 struct htx_sl *sl;
Christopher Faulete0768eb2018-10-03 16:38:02 +020090
Christopher Fauleteea8fc72019-11-05 16:18:10 +010091 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Faulete0768eb2018-10-03 16:38:02 +020092
Christopher Faulet27ba2dc2018-12-05 11:53:24 +010093 htx = htxbuf(&req->buf);
Christopher Faulet9768c262018-10-22 09:34:31 +020094
Willy Tarreau4236f032019-03-05 10:43:32 +010095 /* Parsing errors are caught here */
Christopher Fauletb9a92f32019-09-09 10:15:21 +020096 if (htx->flags & (HTX_FL_PARSING_ERROR|HTX_FL_PROCESSING_ERROR)) {
Willy Tarreau4236f032019-03-05 10:43:32 +010097 stream_inc_http_req_ctr(s);
98 stream_inc_http_err_ctr(s);
99 proxy_inc_fe_req_ctr(sess->fe);
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200100 if (htx->flags & HTX_FL_PARSING_ERROR)
101 goto return_bad_req;
102 else
103 goto return_int_err;
Willy Tarreau4236f032019-03-05 10:43:32 +0100104 }
105
Christopher Faulete0768eb2018-10-03 16:38:02 +0200106 /* we're speaking HTTP here, so let's speak HTTP to the client */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200107 s->srv_error = http_return_srv_error;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200108
109 /* If there is data available for analysis, log the end of the idle time. */
Christopher Faulet870aad92018-11-29 15:23:46 +0100110 if (c_data(req) && s->logs.t_idle == -1) {
111 const struct cs_info *csinfo = si_get_cs_info(objt_cs(s->si[0].end));
112
113 s->logs.t_idle = ((csinfo)
114 ? csinfo->t_idle
115 : tv_ms_elapsed(&s->logs.tv_accept, &now) - s->logs.t_handshake);
116 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200117
Christopher Faulete0768eb2018-10-03 16:38:02 +0200118 /*
119 * Now we quickly check if we have found a full valid request.
120 * If not so, we check the FD and buffer states before leaving.
121 * A full request is indicated by the fact that we have seen
122 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
123 * requests are checked first. When waiting for a second request
124 * on a keep-alive stream, if we encounter and error, close, t/o,
125 * we note the error in the stream flags but don't set any state.
126 * Since the error will be noted there, it will not be counted by
127 * process_stream() as a frontend error.
128 * Last, we may increase some tracked counters' http request errors on
129 * the cases that are deliberately the client's fault. For instance,
130 * a timeout or connection reset is not counted as an error. However
131 * a bad request is.
132 */
Christopher Faulet29f17582019-05-23 11:03:26 +0200133 if (unlikely(htx_is_empty(htx) || htx->first == -1)) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200134 if (htx->flags & HTX_FL_UPGRADE)
135 goto failed_keep_alive;
136
Christopher Faulet9768c262018-10-22 09:34:31 +0200137 /* 1: have we encountered a read error ? */
138 if (req->flags & CF_READ_ERROR) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200139 if (!(s->flags & SF_ERR_MASK))
140 s->flags |= SF_ERR_CLICL;
141
142 if (txn->flags & TX_WAIT_NEXT_RQ)
143 goto failed_keep_alive;
144
145 if (sess->fe->options & PR_O_IGNORE_PRB)
146 goto failed_keep_alive;
147
Christopher Faulet9768c262018-10-22 09:34:31 +0200148 stream_inc_http_err_ctr(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200149 stream_inc_http_req_ctr(s);
150 proxy_inc_fe_req_ctr(sess->fe);
Olivier Houcharda798bf52019-03-08 18:52:00 +0100151 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200152 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100153 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200154
Christopher Faulet9768c262018-10-22 09:34:31 +0200155 txn->status = 400;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200156 http_reply_and_close(s, txn->status, NULL);
Christopher Faulet9768c262018-10-22 09:34:31 +0200157 req->analysers &= AN_REQ_FLT_END;
158
Christopher Faulete0768eb2018-10-03 16:38:02 +0200159 if (!(s->flags & SF_FINST_MASK))
160 s->flags |= SF_FINST_R;
161 return 0;
162 }
163
Christopher Faulet9768c262018-10-22 09:34:31 +0200164 /* 2: has the read timeout expired ? */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200165 else if (req->flags & CF_READ_TIMEOUT || tick_is_expired(req->analyse_exp, now_ms)) {
166 if (!(s->flags & SF_ERR_MASK))
167 s->flags |= SF_ERR_CLITO;
168
169 if (txn->flags & TX_WAIT_NEXT_RQ)
170 goto failed_keep_alive;
171
172 if (sess->fe->options & PR_O_IGNORE_PRB)
173 goto failed_keep_alive;
174
Christopher Faulet9768c262018-10-22 09:34:31 +0200175 stream_inc_http_err_ctr(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200176 stream_inc_http_req_ctr(s);
177 proxy_inc_fe_req_ctr(sess->fe);
Olivier Houcharda798bf52019-03-08 18:52:00 +0100178 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200179 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100180 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200181
Christopher Faulet9768c262018-10-22 09:34:31 +0200182 txn->status = 408;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200183 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulet9768c262018-10-22 09:34:31 +0200184 req->analysers &= AN_REQ_FLT_END;
185
Christopher Faulete0768eb2018-10-03 16:38:02 +0200186 if (!(s->flags & SF_FINST_MASK))
187 s->flags |= SF_FINST_R;
188 return 0;
189 }
190
Christopher Faulet9768c262018-10-22 09:34:31 +0200191 /* 3: have we encountered a close ? */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200192 else if (req->flags & CF_SHUTR) {
193 if (!(s->flags & SF_ERR_MASK))
194 s->flags |= SF_ERR_CLICL;
195
196 if (txn->flags & TX_WAIT_NEXT_RQ)
197 goto failed_keep_alive;
198
199 if (sess->fe->options & PR_O_IGNORE_PRB)
200 goto failed_keep_alive;
201
Christopher Faulete0768eb2018-10-03 16:38:02 +0200202 stream_inc_http_err_ctr(s);
203 stream_inc_http_req_ctr(s);
204 proxy_inc_fe_req_ctr(sess->fe);
Olivier Houcharda798bf52019-03-08 18:52:00 +0100205 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200206 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100207 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200208
Christopher Faulet9768c262018-10-22 09:34:31 +0200209 txn->status = 400;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200210 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulet9768c262018-10-22 09:34:31 +0200211 req->analysers &= AN_REQ_FLT_END;
212
Christopher Faulete0768eb2018-10-03 16:38:02 +0200213 if (!(s->flags & SF_FINST_MASK))
214 s->flags |= SF_FINST_R;
215 return 0;
216 }
217
218 channel_dont_connect(req);
219 req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
220 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau1a18b542018-12-11 16:37:42 +0100221
Christopher Faulet9768c262018-10-22 09:34:31 +0200222 if (sess->listener->options & LI_O_NOQUICKACK && htx_is_not_empty(htx) &&
Christopher Faulete0768eb2018-10-03 16:38:02 +0200223 objt_conn(sess->origin) && conn_ctrl_ready(__objt_conn(sess->origin))) {
224 /* We need more data, we have to re-enable quick-ack in case we
225 * previously disabled it, otherwise we might cause the client
226 * to delay next data.
227 */
Willy Tarreau1a18b542018-12-11 16:37:42 +0100228 conn_set_quickack(objt_conn(sess->origin), 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200229 }
Willy Tarreau1a18b542018-12-11 16:37:42 +0100230
Christopher Faulet47365272018-10-31 17:40:50 +0100231 if ((req->flags & CF_READ_PARTIAL) && (txn->flags & TX_WAIT_NEXT_RQ)) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200232 /* If the client starts to talk, let's fall back to
233 * request timeout processing.
234 */
235 txn->flags &= ~TX_WAIT_NEXT_RQ;
236 req->analyse_exp = TICK_ETERNITY;
237 }
238
239 /* just set the request timeout once at the beginning of the request */
240 if (!tick_isset(req->analyse_exp)) {
Christopher Faulet47365272018-10-31 17:40:50 +0100241 if ((txn->flags & TX_WAIT_NEXT_RQ) && tick_isset(s->be->timeout.httpka))
Christopher Faulete0768eb2018-10-03 16:38:02 +0200242 req->analyse_exp = tick_add(now_ms, s->be->timeout.httpka);
243 else
244 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
245 }
246
247 /* we're not ready yet */
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100248 DBG_TRACE_DEVEL("waiting for the request",
249 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200250 return 0;
251
252 failed_keep_alive:
253 /* Here we process low-level errors for keep-alive requests. In
254 * short, if the request is not the first one and it experiences
255 * a timeout, read error or shutdown, we just silently close so
256 * that the client can try again.
257 */
258 txn->status = 0;
259 msg->msg_state = HTTP_MSG_RQBEFORE;
260 req->analysers &= AN_REQ_FLT_END;
261 s->logs.logwait = 0;
262 s->logs.level = 0;
263 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200264 http_reply_and_close(s, txn->status, NULL);
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100265 DBG_TRACE_DEVEL("leaving by closing K/A connection",
266 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200267 return 0;
268 }
269
Christopher Faulet9768c262018-10-22 09:34:31 +0200270 msg->msg_state = HTTP_MSG_BODY;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200271 stream_inc_http_req_ctr(s);
272 proxy_inc_fe_req_ctr(sess->fe); /* one more valid request for this FE */
273
Christopher Faulet9768c262018-10-22 09:34:31 +0200274 /* kill the pending keep-alive timeout */
275 txn->flags &= ~TX_WAIT_NEXT_RQ;
276 req->analyse_exp = TICK_ETERNITY;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200277
Christopher Faulet29f17582019-05-23 11:03:26 +0200278 BUG_ON(htx_get_first_type(htx) != HTX_BLK_REQ_SL);
Christopher Faulet297fbb42019-05-13 14:41:27 +0200279 sl = http_get_stline(htx);
Christopher Faulet03599112018-11-27 11:21:21 +0100280
Christopher Faulet9768c262018-10-22 09:34:31 +0200281 /* 0: we might have to print this header in debug mode */
282 if (unlikely((global.mode & MODE_DEBUG) &&
283 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
284 int32_t pos;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200285
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200286 http_debug_stline("clireq", s, sl);
Christopher Faulet9768c262018-10-22 09:34:31 +0200287
Christopher Fauleta3f15502019-05-13 15:27:23 +0200288 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
Christopher Faulet9768c262018-10-22 09:34:31 +0200289 struct htx_blk *blk = htx_get_blk(htx, pos);
290 enum htx_blk_type type = htx_get_blk_type(blk);
291
292 if (type == HTX_BLK_EOH)
293 break;
294 if (type != HTX_BLK_HDR)
295 continue;
296
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200297 http_debug_hdr("clihdr", s,
298 htx_get_blk_name(htx, blk),
299 htx_get_blk_value(htx, blk));
Christopher Faulet9768c262018-10-22 09:34:31 +0200300 }
301 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200302
303 /*
Christopher Faulet03599112018-11-27 11:21:21 +0100304 * 1: identify the method and the version. Also set HTTP flags
Christopher Faulete0768eb2018-10-03 16:38:02 +0200305 */
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100306 txn->meth = sl->info.req.meth;
Christopher Faulet03599112018-11-27 11:21:21 +0100307 if (sl->flags & HTX_SL_F_VER_11)
Christopher Faulet9768c262018-10-22 09:34:31 +0200308 msg->flags |= HTTP_MSGF_VER_11;
Christopher Faulet03599112018-11-27 11:21:21 +0100309 msg->flags |= HTTP_MSGF_XFER_LEN;
Christopher Faulet834eee72019-02-18 11:35:02 +0100310 msg->flags |= ((sl->flags & HTX_SL_F_CLEN) ? HTTP_MSGF_CNT_LEN : HTTP_MSGF_TE_CHNK);
Christopher Fauletb2db4fa2018-11-27 16:51:09 +0100311 if (sl->flags & HTX_SL_F_BODYLESS)
312 msg->flags |= HTTP_MSGF_BODYLESS;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200313
314 /* we can make use of server redirect on GET and HEAD */
315 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
316 s->flags |= SF_REDIRECTABLE;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100317 else if (txn->meth == HTTP_METH_OTHER && isteqi(htx_sl_req_meth(sl), ist("PRI"))) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200318 /* PRI is reserved for the HTTP/2 preface */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200319 goto return_bad_req;
320 }
321
322 /*
Christopher Faulet6072beb2020-02-18 15:34:58 +0100323 * 2: check if the URI matches the monitor_uri. We have to do this for
324 * every request which gets in, because the monitor-uri is defined by
325 * the frontend. If the monitor-uri starts with a '/', the matching is
326 * done against the request's path. Otherwise, the request's uri is
327 * used. It is a workaround to let HTTP/2 health-checks work as
328 * expected.
Christopher Faulete0768eb2018-10-03 16:38:02 +0200329 */
330 if (unlikely((sess->fe->monitor_uri_len != 0) &&
Christopher Faulet6072beb2020-02-18 15:34:58 +0100331 ((*sess->fe->monitor_uri == '/' && isteq(http_get_path(htx_sl_req_uri(sl)),
332 ist2(sess->fe->monitor_uri, sess->fe->monitor_uri_len))) ||
333 isteq(htx_sl_req_uri(sl), ist2(sess->fe->monitor_uri, sess->fe->monitor_uri_len))))) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200334 /*
335 * We have found the monitor URI
336 */
337 struct acl_cond *cond;
338
339 s->flags |= SF_MONITOR;
Olivier Houcharda798bf52019-03-08 18:52:00 +0100340 _HA_ATOMIC_ADD(&sess->fe->fe_counters.intercepted_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200341
342 /* Check if we want to fail this monitor request or not */
343 list_for_each_entry(cond, &sess->fe->mon_fail_cond, list) {
344 int ret = acl_exec_cond(cond, sess->fe, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
345
346 ret = acl_pass(ret);
347 if (cond->pol == ACL_COND_UNLESS)
348 ret = !ret;
349
350 if (ret) {
351 /* we fail this request, let's return 503 service unavail */
352 txn->status = 503;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200353 if (!(s->flags & SF_ERR_MASK))
354 s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */
355 goto return_prx_cond;
356 }
357 }
358
Joseph Herlantc42c0e92018-11-25 10:43:27 -0800359 /* nothing to fail, let's reply normally */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200360 txn->status = 200;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200361 if (!(s->flags & SF_ERR_MASK))
362 s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */
363 goto return_prx_cond;
364 }
365
366 /*
367 * 3: Maybe we have to copy the original REQURI for the logs ?
368 * Note: we cannot log anymore if the request has been
369 * classified as invalid.
370 */
371 if (unlikely(s->logs.logwait & LW_REQ)) {
372 /* we have a complete HTTP request that we must log */
373 if ((txn->uri = pool_alloc(pool_head_requri)) != NULL) {
Christopher Faulet9768c262018-10-22 09:34:31 +0200374 size_t len;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200375
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200376 len = http_fmt_req_line(sl, txn->uri, global.tune.requri_len - 1);
Christopher Faulet9768c262018-10-22 09:34:31 +0200377 txn->uri[len] = 0;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200378
379 if (!(s->logs.logwait &= ~(LW_REQ|LW_INIT)))
380 s->do_log(s);
381 } else {
382 ha_alert("HTTP logging : out of memory.\n");
383 }
384 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200385
Christopher Faulete0768eb2018-10-03 16:38:02 +0200386 /* if the frontend has "option http-use-proxy-header", we'll check if
387 * we have what looks like a proxied connection instead of a connection,
388 * and in this case set the TX_USE_PX_CONN flag to use Proxy-connection.
389 * Note that this is *not* RFC-compliant, however browsers and proxies
390 * happen to do that despite being non-standard :-(
391 * We consider that a request not beginning with either '/' or '*' is
392 * a proxied connection, which covers both "scheme://location" and
393 * CONNECT ip:port.
394 */
395 if ((sess->fe->options2 & PR_O2_USE_PXHDR) &&
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100396 *HTX_SL_REQ_UPTR(sl) != '/' && *HTX_SL_REQ_UPTR(sl) != '*')
Christopher Faulete0768eb2018-10-03 16:38:02 +0200397 txn->flags |= TX_USE_PX_CONN;
398
Christopher Faulete0768eb2018-10-03 16:38:02 +0200399 /* 5: we may need to capture headers */
400 if (unlikely((s->logs.logwait & LW_REQHDR) && s->req_cap))
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200401 http_capture_headers(htx, s->req_cap, sess->fe->req_cap);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200402
Christopher Faulete0768eb2018-10-03 16:38:02 +0200403 /* we may have to wait for the request's body */
Christopher Faulet9768c262018-10-22 09:34:31 +0200404 if (s->be->options & PR_O_WREQ_BODY)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200405 req->analysers |= AN_REQ_HTTP_BODY;
406
407 /*
408 * RFC7234#4:
409 * A cache MUST write through requests with methods
410 * that are unsafe (Section 4.2.1 of [RFC7231]) to
411 * the origin server; i.e., a cache is not allowed
412 * to generate a reply to such a request before
413 * having forwarded the request and having received
414 * a corresponding response.
415 *
416 * RFC7231#4.2.1:
417 * Of the request methods defined by this
418 * specification, the GET, HEAD, OPTIONS, and TRACE
419 * methods are defined to be safe.
420 */
421 if (likely(txn->meth == HTTP_METH_GET ||
422 txn->meth == HTTP_METH_HEAD ||
423 txn->meth == HTTP_METH_OPTIONS ||
424 txn->meth == HTTP_METH_TRACE))
425 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
426
427 /* end of job, return OK */
428 req->analysers &= ~an_bit;
429 req->analyse_exp = TICK_ETERNITY;
Christopher Faulet9768c262018-10-22 09:34:31 +0200430
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100431 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200432 return 1;
433
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200434 return_int_err:
435 txn->status = 500;
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200436 if (!(s->flags & SF_ERR_MASK))
437 s->flags |= SF_ERR_INTERNAL;
Christopher Fauletb8a53712019-12-16 11:29:38 +0100438 _HA_ATOMIC_ADD(&sess->fe->fe_counters.internal_errors, 1);
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200439 if (sess->listener->counters)
Christopher Fauletb8a53712019-12-16 11:29:38 +0100440 _HA_ATOMIC_ADD(&sess->listener->counters->internal_errors, 1);
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200441 goto return_prx_cond;
442
Christopher Faulete0768eb2018-10-03 16:38:02 +0200443 return_bad_req:
Christopher Faulet9768c262018-10-22 09:34:31 +0200444 txn->status = 400;
Olivier Houcharda798bf52019-03-08 18:52:00 +0100445 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200446 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100447 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200448 /* fall through */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200449
450 return_prx_cond:
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200451 http_reply_and_close(s, txn->status, http_error_message(s));
452
Christopher Faulete0768eb2018-10-03 16:38:02 +0200453 if (!(s->flags & SF_ERR_MASK))
454 s->flags |= SF_ERR_PRXCOND;
455 if (!(s->flags & SF_FINST_MASK))
456 s->flags |= SF_FINST_R;
457
458 req->analysers &= AN_REQ_FLT_END;
459 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100460 DBG_TRACE_DEVEL("leaving on error",
461 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200462 return 0;
463}
464
465
466/* This stream analyser runs all HTTP request processing which is common to
467 * frontends and backends, which means blocking ACLs, filters, connection-close,
468 * reqadd, stats and redirects. This is performed for the designated proxy.
469 * It returns 1 if the processing can continue on next analysers, or zero if it
470 * either needs more data or wants to immediately abort the request (eg: deny,
471 * error, ...).
472 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200473int http_process_req_common(struct stream *s, struct channel *req, int an_bit, struct proxy *px)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200474{
475 struct session *sess = s->sess;
476 struct http_txn *txn = s->txn;
477 struct http_msg *msg = &txn->req;
Christopher Fauletff2759f2018-10-24 11:13:16 +0200478 struct htx *htx;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200479 struct redirect_rule *rule;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200480 enum rule_result verdict;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200481 struct connection *conn = objt_conn(sess->origin);
482
483 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
484 /* we need more data */
485 goto return_prx_yield;
486 }
487
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100488 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200489
Christopher Faulet27ba2dc2018-12-05 11:53:24 +0100490 htx = htxbuf(&req->buf);
Christopher Fauletff2759f2018-10-24 11:13:16 +0200491
Christopher Faulet1907ccc2019-04-29 13:12:02 +0200492 /* just in case we have some per-backend tracking. Only called the first
493 * execution of the analyser. */
494 if (!s->current_rule || s->current_rule_list != &px->http_req_rules)
495 stream_inc_be_http_req_ctr(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200496
497 /* evaluate http-request rules */
498 if (!LIST_ISEMPTY(&px->http_req_rules)) {
Christopher Fauletb58f62b2020-01-13 16:40:13 +0100499 verdict = http_req_get_intercept_rule(px, &px->http_req_rules, s);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200500
501 switch (verdict) {
502 case HTTP_RULE_RES_YIELD: /* some data miss, call the function later. */
503 goto return_prx_yield;
504
505 case HTTP_RULE_RES_CONT:
506 case HTTP_RULE_RES_STOP: /* nothing to do */
507 break;
508
509 case HTTP_RULE_RES_DENY: /* deny or tarpit */
510 if (txn->flags & TX_CLTARPIT)
511 goto tarpit;
512 goto deny;
513
514 case HTTP_RULE_RES_ABRT: /* abort request, response already sent. Eg: auth */
515 goto return_prx_cond;
516
517 case HTTP_RULE_RES_DONE: /* OK, but terminate request processing (eg: redirect) */
518 goto done;
519
520 case HTTP_RULE_RES_BADREQ: /* failed with a bad request */
521 goto return_bad_req;
Christopher Faulet3a26bee2019-12-16 12:47:40 +0100522
523 case HTTP_RULE_RES_ERROR: /* failed with a bad request */
524 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200525 }
526 }
527
528 if (conn && (conn->flags & CO_FL_EARLY_DATA) &&
Olivier Houchard220a26c2020-01-23 14:57:36 +0100529 (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS))) {
Christopher Fauletff2759f2018-10-24 11:13:16 +0200530 struct http_hdr_ctx ctx;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200531
Christopher Fauletff2759f2018-10-24 11:13:16 +0200532 ctx.blk = NULL;
533 if (!http_find_header(htx, ist("Early-Data"), &ctx, 0)) {
534 if (unlikely(!http_add_header(htx, ist("Early-Data"), ist("1"))))
Christopher Fauletb8a53712019-12-16 11:29:38 +0100535 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200536 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200537 }
538
539 /* OK at this stage, we know that the request was accepted according to
540 * the http-request rules, we can check for the stats. Note that the
541 * URI is detected *before* the req* rules in order not to be affected
542 * by a possible reqrep, while they are processed *after* so that a
543 * reqdeny can still block them. This clearly needs to change in 1.6!
544 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200545 if (!s->target && http_stats_check_uri(s, txn, px)) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200546 s->target = &http_stats_applet.obj_type;
Willy Tarreau14bfe9a2018-12-19 15:19:27 +0100547 if (unlikely(!si_register_handler(&s->si[1], objt_applet(s->target)))) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200548 s->logs.tv_request = now;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200549 if (!(s->flags & SF_ERR_MASK))
550 s->flags |= SF_ERR_RESOURCE;
Christopher Fauletb8a53712019-12-16 11:29:38 +0100551 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200552 }
553
554 /* parse the whole stats request and extract the relevant information */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200555 http_handle_stats(s, req);
Christopher Fauletb58f62b2020-01-13 16:40:13 +0100556 verdict = http_req_get_intercept_rule(px, &px->uri_auth->http_req_rules, s);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200557 /* not all actions implemented: deny, allow, auth */
558
559 if (verdict == HTTP_RULE_RES_DENY) /* stats http-request deny */
560 goto deny;
561
562 if (verdict == HTTP_RULE_RES_ABRT) /* stats auth / stats http-request auth */
563 goto return_prx_cond;
Christopher Faulet3a26bee2019-12-16 12:47:40 +0100564
565 if (verdict == HTTP_RULE_RES_BADREQ) /* failed with a bad request */
566 goto return_bad_req;
567
568 if (verdict == HTTP_RULE_RES_ERROR) /* failed with a bad request */
569 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200570 }
571
Christopher Faulet2571bc62019-03-01 11:44:26 +0100572 /* Proceed with the applets now. */
573 if (unlikely(objt_applet(s->target))) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200574 if (sess->fe == s->be) /* report it if the request was intercepted by the frontend */
Olivier Houcharda798bf52019-03-08 18:52:00 +0100575 _HA_ATOMIC_ADD(&sess->fe->fe_counters.intercepted_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200576
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200577 if (http_handle_expect_hdr(s, htx, msg) == -1)
Christopher Fauletb8a53712019-12-16 11:29:38 +0100578 goto return_int_err;
Christopher Fauletbcf242a2019-03-01 11:36:26 +0100579
Christopher Faulete0768eb2018-10-03 16:38:02 +0200580 if (!(s->flags & SF_ERR_MASK)) // this is not really an error but it is
581 s->flags |= SF_ERR_LOCAL; // to mark that it comes from the proxy
582 if (!(s->flags & SF_FINST_MASK))
583 s->flags |= SF_FINST_R;
584
585 /* enable the minimally required analyzers to handle keep-alive and compression on the HTTP response */
586 req->analysers &= (AN_REQ_HTTP_BODY | AN_REQ_FLT_HTTP_HDRS | AN_REQ_FLT_END);
587 req->analysers &= ~AN_REQ_FLT_XFER_DATA;
588 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Christopher Fauletbcf242a2019-03-01 11:36:26 +0100589
590 req->flags |= CF_SEND_DONTWAIT;
591 s->flags |= SF_ASSIGNED;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200592 goto done;
593 }
594
595 /* check whether we have some ACLs set to redirect this request */
596 list_for_each_entry(rule, &px->redirect_rules, list) {
597 if (rule->cond) {
598 int ret;
599
600 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
601 ret = acl_pass(ret);
602 if (rule->cond->pol == ACL_COND_UNLESS)
603 ret = !ret;
604 if (!ret)
605 continue;
606 }
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200607 if (!http_apply_redirect_rule(rule, s, txn))
Christopher Fauletb8a53712019-12-16 11:29:38 +0100608 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200609 goto done;
610 }
611
612 /* POST requests may be accompanied with an "Expect: 100-Continue" header.
613 * If this happens, then the data will not come immediately, so we must
614 * send all what we have without waiting. Note that due to the small gain
615 * in waiting for the body of the request, it's easier to simply put the
616 * CF_SEND_DONTWAIT flag any time. It's a one-shot flag so it will remove
617 * itself once used.
618 */
619 req->flags |= CF_SEND_DONTWAIT;
620
621 done: /* done with this analyser, continue with next ones that the calling
622 * points will have set, if any.
623 */
624 req->analyse_exp = TICK_ETERNITY;
625 done_without_exp: /* done with this analyser, but dont reset the analyse_exp. */
626 req->analysers &= ~an_bit;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100627 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200628 return 1;
629
630 tarpit:
631 /* Allow cookie logging
632 */
633 if (s->be->cookie_name || sess->fe->capture_name)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200634 http_manage_client_side_cookies(s, req);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200635
636 /* When a connection is tarpitted, we use the tarpit timeout,
637 * which may be the same as the connect timeout if unspecified.
638 * If unset, then set it to zero because we really want it to
639 * eventually expire. We build the tarpit as an analyser.
640 */
Christopher Faulet202c6ce2019-01-07 14:57:35 +0100641 channel_htx_erase(&s->req, htx);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200642
643 /* wipe the request out so that we can drop the connection early
644 * if the client closes first.
645 */
646 channel_dont_connect(req);
647
Christopher Faulete0768eb2018-10-03 16:38:02 +0200648 req->analysers &= AN_REQ_FLT_END; /* remove switching rules etc... */
649 req->analysers |= AN_REQ_HTTP_TARPIT;
650 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit);
651 if (!req->analyse_exp)
652 req->analyse_exp = tick_add(now_ms, 0);
653 stream_inc_http_err_ctr(s);
Olivier Houcharda798bf52019-03-08 18:52:00 +0100654 _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_req, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +0100655 if (s->flags & SF_BE_ASSIGNED)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100656 _HA_ATOMIC_ADD(&s->be->be_counters.denied_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200657 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100658 _HA_ATOMIC_ADD(&sess->listener->counters->denied_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200659 goto done_without_exp;
660
661 deny: /* this request was blocked (denied) */
662
663 /* Allow cookie logging
664 */
665 if (s->be->cookie_name || sess->fe->capture_name)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200666 http_manage_client_side_cookies(s, req);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200667
Christopher Faulete0768eb2018-10-03 16:38:02 +0200668 s->logs.tv_request = now;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200669 stream_inc_http_err_ctr(s);
Olivier Houcharda798bf52019-03-08 18:52:00 +0100670 _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_req, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +0100671 if (s->flags & SF_BE_ASSIGNED)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100672 _HA_ATOMIC_ADD(&s->be->be_counters.denied_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200673 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100674 _HA_ATOMIC_ADD(&sess->listener->counters->denied_req, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +0100675 goto return_prx_err;
676
677 return_int_err:
678 txn->status = 500;
679 if (!(s->flags & SF_ERR_MASK))
680 s->flags |= SF_ERR_INTERNAL;
681 _HA_ATOMIC_ADD(&sess->fe->fe_counters.internal_errors, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +0100682 if (s->flags & SF_BE_ASSIGNED)
683 _HA_ATOMIC_ADD(&s->be->be_counters.internal_errors, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +0100684 if (sess->listener->counters)
685 _HA_ATOMIC_ADD(&sess->listener->counters->internal_errors, 1);
686 goto return_prx_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200687
688 return_bad_req:
Christopher Faulete0768eb2018-10-03 16:38:02 +0200689 txn->status = 400;
Olivier Houcharda798bf52019-03-08 18:52:00 +0100690 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200691 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100692 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +0100693 /* fall through */
694
695 return_prx_err:
696 http_reply_and_close(s, txn->status, http_error_message(s));
697 /* fall through */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200698
699 return_prx_cond:
700 if (!(s->flags & SF_ERR_MASK))
701 s->flags |= SF_ERR_PRXCOND;
702 if (!(s->flags & SF_FINST_MASK))
703 s->flags |= SF_FINST_R;
704
705 req->analysers &= AN_REQ_FLT_END;
706 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100707 DBG_TRACE_DEVEL("leaving on error",
708 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200709 return 0;
710
711 return_prx_yield:
712 channel_dont_connect(req);
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100713 DBG_TRACE_DEVEL("waiting for more data",
714 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200715 return 0;
716}
717
718/* This function performs all the processing enabled for the current request.
719 * It returns 1 if the processing can continue on next analysers, or zero if it
720 * needs more data, encounters an error, or wants to immediately abort the
721 * request. It relies on buffers flags, and updates s->req.analysers.
722 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200723int http_process_request(struct stream *s, struct channel *req, int an_bit)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200724{
725 struct session *sess = s->sess;
726 struct http_txn *txn = s->txn;
727 struct http_msg *msg = &txn->req;
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200728 struct htx *htx;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200729 struct connection *cli_conn = objt_conn(strm_sess(s)->origin);
730
731 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
732 /* we need more data */
733 channel_dont_connect(req);
734 return 0;
735 }
736
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100737 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200738
739 /*
740 * Right now, we know that we have processed the entire headers
741 * and that unwanted requests have been filtered out. We can do
742 * whatever we want with the remaining request. Also, now we
743 * may have separate values for ->fe, ->be.
744 */
Christopher Faulet27ba2dc2018-12-05 11:53:24 +0100745 htx = htxbuf(&req->buf);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200746
747 /*
748 * If HTTP PROXY is set we simply get remote server address parsing
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200749 * incoming request.
Christopher Faulete0768eb2018-10-03 16:38:02 +0200750 */
751 if ((s->be->options & PR_O_HTTP_PROXY) && !(s->flags & SF_ADDR_SET)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100752 struct htx_sl *sl;
753 struct ist uri, path;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200754
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200755 if (!sockaddr_alloc(&s->target_addr)) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200756 if (!(s->flags & SF_ERR_MASK))
757 s->flags |= SF_ERR_RESOURCE;
Christopher Fauletb8a53712019-12-16 11:29:38 +0100758 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200759 }
Christopher Faulet297fbb42019-05-13 14:41:27 +0200760 sl = http_get_stline(htx);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100761 uri = htx_sl_req_uri(sl);
762 path = http_get_path(uri);
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200763
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200764 if (url2sa(uri.ptr, uri.len - path.len, s->target_addr, NULL) == -1)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200765 goto return_bad_req;
766
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200767 s->target = &s->be->obj_type;
768 s->flags |= SF_ADDR_SET | SF_ASSIGNED;
769
Christopher Faulete0768eb2018-10-03 16:38:02 +0200770 /* if the path was found, we have to remove everything between
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200771 * uri.ptr and path.ptr (excluded). If it was not found, we need
772 * to replace from all the uri by a single "/".
773 *
774 * Instead of rewritting the whole start line, we just update
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100775 * the star-line URI. Some space will be lost but it should be
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200776 * insignificant.
Christopher Faulete0768eb2018-10-03 16:38:02 +0200777 */
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100778 istcpy(&uri, (path.len ? path : ist("/")), uri.len);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200779 }
780
781 /*
782 * 7: Now we can work with the cookies.
783 * Note that doing so might move headers in the request, but
784 * the fields will stay coherent and the URI will not move.
785 * This should only be performed in the backend.
786 */
787 if (s->be->cookie_name || sess->fe->capture_name)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200788 http_manage_client_side_cookies(s, req);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200789
790 /* add unique-id if "header-unique-id" is specified */
791
792 if (!LIST_ISEMPTY(&sess->fe->format_unique_id) && !s->unique_id) {
Christopher Fauletb8a53712019-12-16 11:29:38 +0100793 if ((s->unique_id = pool_alloc(pool_head_uniqueid)) == NULL) {
794 if (!(s->flags & SF_ERR_MASK))
795 s->flags |= SF_ERR_RESOURCE;
796 goto return_int_err;
797 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200798 s->unique_id[0] = '\0';
799 build_logline(s, s->unique_id, UNIQUEID_LEN, &sess->fe->format_unique_id);
800 }
801
802 if (sess->fe->header_unique_id && s->unique_id) {
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200803 struct ist n = ist2(sess->fe->header_unique_id, strlen(sess->fe->header_unique_id));
804 struct ist v = ist2(s->unique_id, strlen(s->unique_id));
805
806 if (unlikely(!http_add_header(htx, n, v)))
Christopher Fauletb8a53712019-12-16 11:29:38 +0100807 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200808 }
809
810 /*
811 * 9: add X-Forwarded-For if either the frontend or the backend
812 * asks for it.
813 */
814 if ((sess->fe->options | s->be->options) & PR_O_FWDFOR) {
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200815 struct http_hdr_ctx ctx = { .blk = NULL };
816 struct ist hdr = ist2(s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_name : sess->fe->fwdfor_hdr_name,
817 s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_len : sess->fe->fwdfor_hdr_len);
818
Christopher Faulete0768eb2018-10-03 16:38:02 +0200819 if (!((sess->fe->options | s->be->options) & PR_O_FF_ALWAYS) &&
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200820 http_find_header(htx, hdr, &ctx, 0)) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200821 /* The header is set to be added only if none is present
822 * and we found it, so don't do anything.
823 */
824 }
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200825 else if (cli_conn && conn_get_src(cli_conn) && cli_conn->src->ss_family == AF_INET) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200826 /* Add an X-Forwarded-For header unless the source IP is
827 * in the 'except' network range.
828 */
829 if ((!sess->fe->except_mask.s_addr ||
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200830 (((struct sockaddr_in *)cli_conn->src)->sin_addr.s_addr & sess->fe->except_mask.s_addr)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200831 != sess->fe->except_net.s_addr) &&
832 (!s->be->except_mask.s_addr ||
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200833 (((struct sockaddr_in *)cli_conn->src)->sin_addr.s_addr & s->be->except_mask.s_addr)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200834 != s->be->except_net.s_addr)) {
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200835 unsigned char *pn = (unsigned char *)&((struct sockaddr_in *)cli_conn->src)->sin_addr;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200836
837 /* Note: we rely on the backend to get the header name to be used for
838 * x-forwarded-for, because the header is really meant for the backends.
839 * However, if the backend did not specify any option, we have to rely
840 * on the frontend's header name.
841 */
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200842 chunk_printf(&trash, "%d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
843 if (unlikely(!http_add_header(htx, hdr, ist2(trash.area, trash.data))))
Christopher Fauletb8a53712019-12-16 11:29:38 +0100844 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200845 }
846 }
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200847 else if (cli_conn && conn_get_src(cli_conn) && cli_conn->src->ss_family == AF_INET6) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200848 /* FIXME: for the sake of completeness, we should also support
849 * 'except' here, although it is mostly useless in this case.
850 */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200851 char pn[INET6_ADDRSTRLEN];
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200852
Christopher Faulete0768eb2018-10-03 16:38:02 +0200853 inet_ntop(AF_INET6,
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200854 (const void *)&((struct sockaddr_in6 *)(cli_conn->src))->sin6_addr,
Christopher Faulete0768eb2018-10-03 16:38:02 +0200855 pn, sizeof(pn));
856
857 /* Note: we rely on the backend to get the header name to be used for
858 * x-forwarded-for, because the header is really meant for the backends.
859 * However, if the backend did not specify any option, we have to rely
860 * on the frontend's header name.
861 */
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200862 chunk_printf(&trash, "%s", pn);
863 if (unlikely(!http_add_header(htx, hdr, ist2(trash.area, trash.data))))
Christopher Fauletb8a53712019-12-16 11:29:38 +0100864 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200865 }
866 }
867
868 /*
869 * 10: add X-Original-To if either the frontend or the backend
870 * asks for it.
871 */
872 if ((sess->fe->options | s->be->options) & PR_O_ORGTO) {
873
874 /* FIXME: don't know if IPv6 can handle that case too. */
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200875 if (cli_conn && conn_get_src(cli_conn) && cli_conn->src->ss_family == AF_INET && conn_get_dst(cli_conn)) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200876 /* Add an X-Original-To header unless the destination IP is
877 * in the 'except' network range.
878 */
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200879 if (cli_conn->dst->ss_family == AF_INET &&
Christopher Faulete0768eb2018-10-03 16:38:02 +0200880 ((!sess->fe->except_mask_to.s_addr ||
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200881 (((struct sockaddr_in *)cli_conn->dst)->sin_addr.s_addr & sess->fe->except_mask_to.s_addr)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200882 != sess->fe->except_to.s_addr) &&
883 (!s->be->except_mask_to.s_addr ||
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200884 (((struct sockaddr_in *)cli_conn->dst)->sin_addr.s_addr & s->be->except_mask_to.s_addr)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200885 != s->be->except_to.s_addr))) {
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200886 struct ist hdr;
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200887 unsigned char *pn = (unsigned char *)&((struct sockaddr_in *)cli_conn->dst)->sin_addr;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200888
889 /* Note: we rely on the backend to get the header name to be used for
890 * x-original-to, because the header is really meant for the backends.
891 * However, if the backend did not specify any option, we have to rely
892 * on the frontend's header name.
893 */
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200894 if (s->be->orgto_hdr_len)
895 hdr = ist2(s->be->orgto_hdr_name, s->be->orgto_hdr_len);
896 else
897 hdr = ist2(sess->fe->orgto_hdr_name, sess->fe->orgto_hdr_len);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200898
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200899 chunk_printf(&trash, "%d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
900 if (unlikely(!http_add_header(htx, hdr, ist2(trash.area, trash.data))))
Christopher Fauletb8a53712019-12-16 11:29:38 +0100901 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200902 }
903 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200904 }
905
Christopher Faulete0768eb2018-10-03 16:38:02 +0200906 /* If we have no server assigned yet and we're balancing on url_param
907 * with a POST request, we may be interested in checking the body for
908 * that parameter. This will be done in another analyser.
909 */
910 if (!(s->flags & (SF_ASSIGNED|SF_DIRECT)) &&
Willy Tarreau089eaa02019-01-14 15:17:46 +0100911 s->txn->meth == HTTP_METH_POST &&
912 (s->be->lbprm.algo & BE_LB_ALGO) == BE_LB_ALGO_PH) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200913 channel_dont_connect(req);
914 req->analysers |= AN_REQ_HTTP_BODY;
915 }
916
917 req->analysers &= ~AN_REQ_FLT_XFER_DATA;
918 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Willy Tarreau1a18b542018-12-11 16:37:42 +0100919
Christopher Faulete0768eb2018-10-03 16:38:02 +0200920 /* We expect some data from the client. Unless we know for sure
921 * we already have a full request, we have to re-enable quick-ack
922 * in case we previously disabled it, otherwise we might cause
923 * the client to delay further data.
924 */
925 if ((sess->listener->options & LI_O_NOQUICKACK) &&
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200926 (htx_get_tail_type(htx) != HTX_BLK_EOM))
Willy Tarreau1a18b542018-12-11 16:37:42 +0100927 conn_set_quickack(cli_conn, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200928
929 /*************************************************************
930 * OK, that's finished for the headers. We have done what we *
931 * could. Let's switch to the DATA state. *
932 ************************************************************/
933 req->analyse_exp = TICK_ETERNITY;
934 req->analysers &= ~an_bit;
935
936 s->logs.tv_request = now;
937 /* OK let's go on with the BODY now */
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100938 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200939 return 1;
940
Christopher Fauletb8a53712019-12-16 11:29:38 +0100941 return_int_err:
942 txn->status = 500;
943 if (!(s->flags & SF_ERR_MASK))
944 s->flags |= SF_ERR_INTERNAL;
945 _HA_ATOMIC_ADD(&sess->fe->fe_counters.internal_errors, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +0100946 if (s->flags & SF_BE_ASSIGNED)
Christopher Fauletbe20cf32020-01-24 11:41:38 +0100947 _HA_ATOMIC_ADD(&s->be->be_counters.internal_errors, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +0100948 if (sess->listener->counters)
949 _HA_ATOMIC_ADD(&sess->listener->counters->internal_errors, 1);
950 goto return_prx_cond;
951
Christopher Faulete0768eb2018-10-03 16:38:02 +0200952 return_bad_req: /* let's centralize all bad requests */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200953 txn->status = 400;
Olivier Houcharda798bf52019-03-08 18:52:00 +0100954 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200955 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100956 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +0100957 /* fall through */
958
959 return_prx_cond:
960 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +0200961
962 if (!(s->flags & SF_ERR_MASK))
963 s->flags |= SF_ERR_PRXCOND;
964 if (!(s->flags & SF_FINST_MASK))
965 s->flags |= SF_FINST_R;
Christopher Fauletb8a53712019-12-16 11:29:38 +0100966
967 req->analysers &= AN_REQ_FLT_END;
968 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100969 DBG_TRACE_DEVEL("leaving on error",
970 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200971 return 0;
972}
973
974/* This function is an analyser which processes the HTTP tarpit. It always
975 * returns zero, at the beginning because it prevents any other processing
976 * from occurring, and at the end because it terminates the request.
977 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200978int http_process_tarpit(struct stream *s, struct channel *req, int an_bit)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200979{
980 struct http_txn *txn = s->txn;
981
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100982 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, &txn->req);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200983 /* This connection is being tarpitted. The CLIENT side has
984 * already set the connect expiration date to the right
985 * timeout. We just have to check that the client is still
986 * there and that the timeout has not expired.
987 */
988 channel_dont_connect(req);
989 if ((req->flags & (CF_SHUTR|CF_READ_ERROR)) == 0 &&
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100990 !tick_is_expired(req->analyse_exp, now_ms)) {
991 DBG_TRACE_DEVEL("waiting for tarpit timeout expiry",
992 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200993 return 0;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100994 }
995
Christopher Faulete0768eb2018-10-03 16:38:02 +0200996
997 /* We will set the queue timer to the time spent, just for
998 * logging purposes. We fake a 500 server error, so that the
999 * attacker will not suspect his connection has been tarpitted.
1000 * It will not cause trouble to the logs because we can exclude
1001 * the tarpitted connections by filtering on the 'PT' status flags.
1002 */
1003 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1004
Christopher Faulet9d9d6452020-02-21 10:20:46 +01001005 http_reply_and_close(s, txn->status, (!(req->flags & CF_READ_ERROR) ? http_error_message(s) : NULL));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001006
1007 req->analysers &= AN_REQ_FLT_END;
1008 req->analyse_exp = TICK_ETERNITY;
1009
1010 if (!(s->flags & SF_ERR_MASK))
1011 s->flags |= SF_ERR_PRXCOND;
1012 if (!(s->flags & SF_FINST_MASK))
1013 s->flags |= SF_FINST_T;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001014
1015 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001016 return 0;
1017}
1018
1019/* This function is an analyser which waits for the HTTP request body. It waits
1020 * for either the buffer to be full, or the full advertised contents to have
1021 * reached the buffer. It must only be called after the standard HTTP request
1022 * processing has occurred, because it expects the request to be parsed and will
1023 * look for the Expect header. It may send a 100-Continue interim response. It
1024 * takes in input any state starting from HTTP_MSG_BODY and leaves with one of
1025 * HTTP_MSG_CHK_SIZE, HTTP_MSG_DATA or HTTP_MSG_TRAILERS. It returns zero if it
1026 * needs to read more data, or 1 once it has completed its analysis.
1027 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001028int http_wait_for_request_body(struct stream *s, struct channel *req, int an_bit)
Christopher Faulete0768eb2018-10-03 16:38:02 +02001029{
1030 struct session *sess = s->sess;
1031 struct http_txn *txn = s->txn;
1032 struct http_msg *msg = &s->txn->req;
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001033 struct htx *htx;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001034
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001035 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001036
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001037 htx = htxbuf(&req->buf);
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001038
Willy Tarreau4236f032019-03-05 10:43:32 +01001039 if (htx->flags & HTX_FL_PARSING_ERROR)
1040 goto return_bad_req;
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001041 if (htx->flags & HTX_FL_PROCESSING_ERROR)
1042 goto return_int_err;
Willy Tarreau4236f032019-03-05 10:43:32 +01001043
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001044 if (msg->msg_state < HTTP_MSG_BODY)
1045 goto missing_data;
Christopher Faulet9768c262018-10-22 09:34:31 +02001046
Christopher Faulete0768eb2018-10-03 16:38:02 +02001047 /* We have to parse the HTTP request body to find any required data.
1048 * "balance url_param check_post" should have been the only way to get
1049 * into this. We were brought here after HTTP header analysis, so all
1050 * related structures are ready.
1051 */
1052
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001053 if (msg->msg_state < HTTP_MSG_DATA) {
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001054 if (http_handle_expect_hdr(s, htx, msg) == -1)
Christopher Fauletb8a53712019-12-16 11:29:38 +01001055 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001056 }
1057
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001058 msg->msg_state = HTTP_MSG_DATA;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001059
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001060 /* Now we're in HTTP_MSG_DATA. We just need to know if all data have
1061 * been received or if the buffer is full.
Christopher Faulete0768eb2018-10-03 16:38:02 +02001062 */
Christopher Faulet54b5e212019-06-04 10:08:28 +02001063 if (htx_get_tail_type(htx) > HTX_BLK_DATA ||
Christopher Fauletdcd8c5e2019-01-21 11:24:38 +01001064 channel_htx_full(req, htx, global.tune.maxrewrite))
Christopher Faulete0768eb2018-10-03 16:38:02 +02001065 goto http_end;
1066
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001067 missing_data:
Christopher Faulete0768eb2018-10-03 16:38:02 +02001068 if ((req->flags & CF_READ_TIMEOUT) || tick_is_expired(req->analyse_exp, now_ms)) {
1069 txn->status = 408;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001070 if (!(s->flags & SF_ERR_MASK))
1071 s->flags |= SF_ERR_CLITO;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001072 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
1073 if (sess->listener->counters)
1074 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
1075 goto return_prx_cond;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001076 }
1077
1078 /* we get here if we need to wait for more data */
1079 if (!(req->flags & (CF_SHUTR | CF_READ_ERROR))) {
1080 /* Not enough data. We'll re-use the http-request
1081 * timeout here. Ideally, we should set the timeout
1082 * relative to the accept() date. We just set the
1083 * request timeout once at the beginning of the
1084 * request.
1085 */
1086 channel_dont_connect(req);
1087 if (!tick_isset(req->analyse_exp))
1088 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001089 DBG_TRACE_DEVEL("waiting for more data",
1090 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001091 return 0;
1092 }
1093
1094 http_end:
1095 /* The situation will not evolve, so let's give up on the analysis. */
1096 s->logs.tv_request = now; /* update the request timer to reflect full request */
1097 req->analysers &= ~an_bit;
1098 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001099 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001100 return 1;
1101
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001102 return_int_err:
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001103 txn->status = 500;
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001104 if (!(s->flags & SF_ERR_MASK))
1105 s->flags |= SF_ERR_INTERNAL;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001106 _HA_ATOMIC_ADD(&sess->fe->fe_counters.internal_errors, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01001107 if (s->flags & SF_BE_ASSIGNED)
Christopher Fauletbe20cf32020-01-24 11:41:38 +01001108 _HA_ATOMIC_ADD(&s->be->be_counters.internal_errors, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +01001109 if (sess->listener->counters)
1110 _HA_ATOMIC_ADD(&sess->listener->counters->internal_errors, 1);
1111 goto return_prx_cond;
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001112
Christopher Faulete0768eb2018-10-03 16:38:02 +02001113 return_bad_req: /* let's centralize all bad requests */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001114 txn->status = 400;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001115 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
1116 if (sess->listener->counters)
1117 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
1118 /* fall through */
1119
1120 return_prx_cond:
1121 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001122
1123 if (!(s->flags & SF_ERR_MASK))
1124 s->flags |= SF_ERR_PRXCOND;
1125 if (!(s->flags & SF_FINST_MASK))
Christopher Fauletb8a53712019-12-16 11:29:38 +01001126 s->flags |= (msg->msg_state < HTTP_MSG_DATA ? SF_FINST_R : SF_FINST_D);
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001127
Christopher Faulete0768eb2018-10-03 16:38:02 +02001128 req->analysers &= AN_REQ_FLT_END;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001129 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001130 DBG_TRACE_DEVEL("leaving on error",
1131 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001132 return 0;
1133}
1134
1135/* This function is an analyser which forwards request body (including chunk
1136 * sizes if any). It is called as soon as we must forward, even if we forward
1137 * zero byte. The only situation where it must not be called is when we're in
1138 * tunnel mode and we want to forward till the close. It's used both to forward
1139 * remaining data and to resync after end of body. It expects the msg_state to
1140 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
1141 * read more data, or 1 once we can go on with next request or end the stream.
1142 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len
1143 * bytes of pending data + the headers if not already done.
1144 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001145int http_request_forward_body(struct stream *s, struct channel *req, int an_bit)
Christopher Faulete0768eb2018-10-03 16:38:02 +02001146{
1147 struct session *sess = s->sess;
1148 struct http_txn *txn = s->txn;
Christopher Faulet9768c262018-10-22 09:34:31 +02001149 struct http_msg *msg = &txn->req;
1150 struct htx *htx;
Christopher Faulet93e02d82019-03-08 14:18:50 +01001151 short status = 0;
Christopher Fauletaed82cf2018-11-30 22:22:32 +01001152 int ret;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001153
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001154 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001155
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001156 htx = htxbuf(&req->buf);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001157
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001158 if (htx->flags & HTX_FL_PARSING_ERROR)
1159 goto return_bad_req;
1160 if (htx->flags & HTX_FL_PROCESSING_ERROR)
1161 goto return_int_err;
1162
Christopher Faulete0768eb2018-10-03 16:38:02 +02001163 if ((req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
1164 ((req->flags & CF_SHUTW) && (req->to_forward || co_data(req)))) {
1165 /* Output closed while we were sending data. We must abort and
1166 * wake the other side up.
1167 */
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001168
Olivier Houchard29cac3c2019-07-12 15:48:58 +02001169 /* Don't abort yet if we had L7 retries activated and it
1170 * was a write error, we may recover.
1171 */
1172 if (!(req->flags & (CF_READ_ERROR | CF_READ_TIMEOUT)) &&
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001173 (s->si[1].flags & SI_FL_L7_RETRY)) {
1174 DBG_TRACE_DEVEL("leaving on L7 retry",
1175 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Olivier Houchard29cac3c2019-07-12 15:48:58 +02001176 return 0;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001177 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02001178 msg->msg_state = HTTP_MSG_ERROR;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001179 http_end_request(s);
1180 http_end_response(s);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001181 DBG_TRACE_DEVEL("leaving on error",
1182 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001183 return 1;
1184 }
1185
1186 /* Note that we don't have to send 100-continue back because we don't
1187 * need the data to complete our job, and it's up to the server to
1188 * decide whether to return 100, 417 or anything else in return of
1189 * an "Expect: 100-continue" header.
1190 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001191 if (msg->msg_state == HTTP_MSG_BODY)
1192 msg->msg_state = HTTP_MSG_DATA;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001193
Christopher Faulete0768eb2018-10-03 16:38:02 +02001194 /* in most states, we should abort in case of early close */
1195 channel_auto_close(req);
1196
1197 if (req->to_forward) {
Christopher Faulet66af0b22019-03-22 14:54:52 +01001198 if (req->to_forward == CHN_INFINITE_FORWARD) {
Christopher Faulet1a3e0272019-11-15 16:31:46 +01001199 if (req->flags & CF_EOI)
1200 msg->msg_state = HTTP_MSG_ENDING;
Christopher Faulet66af0b22019-03-22 14:54:52 +01001201 }
1202 else {
1203 /* We can't process the buffer's contents yet */
1204 req->flags |= CF_WAKE_WRITE;
1205 goto missing_data_or_waiting;
1206 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02001207 }
1208
Christopher Faulet1a3e0272019-11-15 16:31:46 +01001209 if (msg->msg_state >= HTTP_MSG_ENDING)
1210 goto ending;
1211
1212 if (txn->meth == HTTP_METH_CONNECT) {
1213 msg->msg_state = HTTP_MSG_ENDING;
1214 goto ending;
1215 }
1216
Christopher Fauletaed82cf2018-11-30 22:22:32 +01001217 /* Forward input data. We get it by removing all outgoing data not
1218 * forwarded yet from HTX data size. If there are some data filters, we
1219 * let them decide the amount of data to forward.
Christopher Faulet9768c262018-10-22 09:34:31 +02001220 */
Christopher Fauletaed82cf2018-11-30 22:22:32 +01001221 if (HAS_REQ_DATA_FILTERS(s)) {
1222 ret = flt_http_payload(s, msg, htx->data);
1223 if (ret < 0)
1224 goto return_bad_req;
Christopher Faulet421e7692019-06-13 11:16:45 +02001225 c_adv(req, ret);
Christopher Fauletaed82cf2018-11-30 22:22:32 +01001226 }
1227 else {
Christopher Faulet421e7692019-06-13 11:16:45 +02001228 c_adv(req, htx->data - co_data(req));
Christopher Faulet66af0b22019-03-22 14:54:52 +01001229 if (msg->flags & HTTP_MSGF_XFER_LEN)
1230 channel_htx_forward_forever(req, htx);
Christopher Fauletaed82cf2018-11-30 22:22:32 +01001231 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02001232
Christopher Faulet1a3e0272019-11-15 16:31:46 +01001233 if (htx->data != co_data(req))
1234 goto missing_data_or_waiting;
Christopher Fauletd20fdb02019-06-13 16:43:22 +02001235
Christopher Faulet9768c262018-10-22 09:34:31 +02001236 /* Check if the end-of-message is reached and if so, switch the message
Christopher Fauletd20fdb02019-06-13 16:43:22 +02001237 * in HTTP_MSG_ENDING state. Then if all data was marked to be
1238 * forwarded, set the state to HTTP_MSG_DONE.
Christopher Faulet9768c262018-10-22 09:34:31 +02001239 */
1240 if (htx_get_tail_type(htx) != HTX_BLK_EOM)
1241 goto missing_data_or_waiting;
1242
Christopher Fauletd20fdb02019-06-13 16:43:22 +02001243 msg->msg_state = HTTP_MSG_ENDING;
Christopher Faulet9768c262018-10-22 09:34:31 +02001244
Christopher Faulet1a3e0272019-11-15 16:31:46 +01001245 ending:
1246 /* other states, ENDING...TUNNEL */
1247 if (msg->msg_state >= HTTP_MSG_DONE)
1248 goto done;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001249
Christopher Fauletaed82cf2018-11-30 22:22:32 +01001250 if (HAS_REQ_DATA_FILTERS(s)) {
1251 ret = flt_http_end(s, msg);
1252 if (ret <= 0) {
1253 if (!ret)
1254 goto missing_data_or_waiting;
1255 goto return_bad_req;
1256 }
1257 }
1258
Christopher Faulet1a3e0272019-11-15 16:31:46 +01001259 if (txn->meth == HTTP_METH_CONNECT)
1260 msg->msg_state = HTTP_MSG_TUNNEL;
1261 else {
1262 msg->msg_state = HTTP_MSG_DONE;
1263 req->to_forward = 0;
1264 }
1265
1266 done:
1267 /* we don't want to forward closes on DONE except in tunnel mode. */
1268 if (!(txn->flags & TX_CON_WANT_TUN))
1269 channel_dont_close(req);
1270
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001271 http_end_request(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001272 if (!(req->analysers & an_bit)) {
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001273 http_end_response(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001274 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
1275 if (req->flags & CF_SHUTW) {
1276 /* request errors are most likely due to the
1277 * server aborting the transfer. */
Christopher Faulet93e02d82019-03-08 14:18:50 +01001278 goto return_srv_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001279 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02001280 goto return_bad_req;
1281 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001282 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001283 return 1;
1284 }
1285
1286 /* If "option abortonclose" is set on the backend, we want to monitor
1287 * the client's connection and forward any shutdown notification to the
1288 * server, which will decide whether to close or to go on processing the
1289 * request. We only do that in tunnel mode, and not in other modes since
1290 * it can be abused to exhaust source ports. */
Christopher Faulet769d0e92019-03-22 14:23:18 +01001291 if (s->be->options & PR_O_ABRT_CLOSE) {
Christopher Faulete0768eb2018-10-03 16:38:02 +02001292 channel_auto_read(req);
Christopher Fauletc41547b2019-07-16 14:32:23 +02001293 if ((req->flags & (CF_SHUTR|CF_READ_NULL)) && !(txn->flags & TX_CON_WANT_TUN))
Christopher Faulete0768eb2018-10-03 16:38:02 +02001294 s->si[1].flags |= SI_FL_NOLINGER;
1295 channel_auto_close(req);
1296 }
1297 else if (s->txn->meth == HTTP_METH_POST) {
1298 /* POST requests may require to read extra CRLF sent by broken
1299 * browsers and which could cause an RST to be sent upon close
1300 * on some systems (eg: Linux). */
1301 channel_auto_read(req);
1302 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001303 DBG_TRACE_DEVEL("waiting for the end of the HTTP txn",
1304 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001305 return 0;
1306
1307 missing_data_or_waiting:
1308 /* stop waiting for data if the input is closed before the end */
Christopher Fauletd20fdb02019-06-13 16:43:22 +02001309 if (msg->msg_state < HTTP_MSG_ENDING && req->flags & CF_SHUTR)
Christopher Faulet93e02d82019-03-08 14:18:50 +01001310 goto return_cli_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001311
1312 waiting:
1313 /* waiting for the last bits to leave the buffer */
1314 if (req->flags & CF_SHUTW)
Christopher Faulet93e02d82019-03-08 14:18:50 +01001315 goto return_srv_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001316
1317 /* When TE: chunked is used, we need to get there again to parse remaining
1318 * chunks even if the client has closed, so we don't want to set CF_DONTCLOSE.
1319 * And when content-length is used, we never want to let the possible
1320 * shutdown be forwarded to the other side, as the state machine will
1321 * take care of it once the client responds. It's also important to
1322 * prevent TIME_WAITs from accumulating on the backend side, and for
1323 * HTTP/2 where the last frame comes with a shutdown.
1324 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001325 if (msg->flags & HTTP_MSGF_XFER_LEN)
Christopher Faulete0768eb2018-10-03 16:38:02 +02001326 channel_dont_close(req);
1327
1328 /* We know that more data are expected, but we couldn't send more that
1329 * what we did. So we always set the CF_EXPECT_MORE flag so that the
1330 * system knows it must not set a PUSH on this first part. Interactive
1331 * modes are already handled by the stream sock layer. We must not do
1332 * this in content-length mode because it could present the MSG_MORE
1333 * flag with the last block of forwarded data, which would cause an
1334 * additional delay to be observed by the receiver.
1335 */
1336 if (msg->flags & HTTP_MSGF_TE_CHNK)
1337 req->flags |= CF_EXPECT_MORE;
1338
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001339 DBG_TRACE_DEVEL("waiting for more data to forward",
1340 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001341 return 0;
1342
Christopher Faulet93e02d82019-03-08 14:18:50 +01001343 return_cli_abort:
1344 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
1345 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01001346 if (sess->listener->counters)
1347 _HA_ATOMIC_ADD(&sess->listener->counters->cli_aborts, 1);
Christopher Faulet93e02d82019-03-08 14:18:50 +01001348 if (objt_server(s->target))
Christopher Fauletcff0f732019-12-16 16:13:44 +01001349 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.cli_aborts, 1);
Christopher Faulet93e02d82019-03-08 14:18:50 +01001350 if (!(s->flags & SF_ERR_MASK))
1351 s->flags |= SF_ERR_CLICL;
1352 status = 400;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001353 goto return_prx_cond;
Christopher Faulet93e02d82019-03-08 14:18:50 +01001354
1355 return_srv_abort:
1356 _HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
1357 _HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01001358 if (sess->listener->counters)
1359 _HA_ATOMIC_ADD(&sess->listener->counters->srv_aborts, 1);
Christopher Faulet93e02d82019-03-08 14:18:50 +01001360 if (objt_server(s->target))
Christopher Fauletcff0f732019-12-16 16:13:44 +01001361 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.srv_aborts, 1);
Christopher Faulet93e02d82019-03-08 14:18:50 +01001362 if (!(s->flags & SF_ERR_MASK))
1363 s->flags |= SF_ERR_SRVCL;
1364 status = 502;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001365 goto return_prx_cond;
Christopher Faulet93e02d82019-03-08 14:18:50 +01001366
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001367 return_int_err:
1368 if (!(s->flags & SF_ERR_MASK))
1369 s->flags |= SF_ERR_INTERNAL;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001370 _HA_ATOMIC_ADD(&sess->fe->fe_counters.internal_errors, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01001371 _HA_ATOMIC_ADD(&s->be->be_counters.internal_errors, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +01001372 if (sess->listener->counters)
1373 _HA_ATOMIC_ADD(&sess->listener->counters->internal_errors, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01001374 if (objt_server(s->target))
1375 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.internal_errors, 1);
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001376 status = 500;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001377 goto return_prx_cond;
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001378
Christopher Faulet93e02d82019-03-08 14:18:50 +01001379 return_bad_req:
Olivier Houcharda798bf52019-03-08 18:52:00 +01001380 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001381 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +01001382 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Christopher Faulet93e02d82019-03-08 14:18:50 +01001383 status = 400;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001384 /* fall through */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001385
Christopher Fauletb8a53712019-12-16 11:29:38 +01001386 return_prx_cond:
Christopher Faulet9768c262018-10-22 09:34:31 +02001387 if (txn->status > 0) {
Christopher Faulete0768eb2018-10-03 16:38:02 +02001388 /* Note: we don't send any error if some data were already sent */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001389 http_reply_and_close(s, txn->status, NULL);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001390 } else {
Christopher Faulet93e02d82019-03-08 14:18:50 +01001391 txn->status = status;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001392 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001393 }
1394 req->analysers &= AN_REQ_FLT_END;
1395 s->res.analysers &= AN_RES_FLT_END; /* we're in data phase, we want to abort both directions */
Christopher Fauletb8a53712019-12-16 11:29:38 +01001396 if (!(s->flags & SF_ERR_MASK))
1397 s->flags |= SF_ERR_PRXCOND;
Christopher Faulet93e02d82019-03-08 14:18:50 +01001398 if (!(s->flags & SF_FINST_MASK))
1399 s->flags |= ((txn->rsp.msg_state < HTTP_MSG_ERROR) ? SF_FINST_H : SF_FINST_D);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001400 DBG_TRACE_DEVEL("leaving on error ",
1401 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001402 return 0;
1403}
1404
Olivier Houcharda254a372019-04-05 15:30:12 +02001405/* Reset the stream and the backend stream_interface to a situation suitable for attemption connection */
1406/* Returns 0 if we can attempt to retry, -1 otherwise */
1407static __inline int do_l7_retry(struct stream *s, struct stream_interface *si)
1408{
1409 struct channel *req, *res;
1410 int co_data;
1411
1412 si->conn_retries--;
1413 if (si->conn_retries < 0)
1414 return -1;
1415
Willy Tarreau223995e2019-05-04 10:38:31 +02001416 if (objt_server(s->target))
1417 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.retries, 1);
1418 _HA_ATOMIC_ADD(&s->be->be_counters.retries, 1);
1419
Olivier Houcharda254a372019-04-05 15:30:12 +02001420 req = &s->req;
1421 res = &s->res;
1422 /* Remove any write error from the request, and read error from the response */
1423 req->flags &= ~(CF_WRITE_ERROR | CF_WRITE_TIMEOUT | CF_SHUTW | CF_SHUTW_NOW);
1424 res->flags &= ~(CF_READ_ERROR | CF_READ_TIMEOUT | CF_SHUTR | CF_EOI | CF_READ_NULL | CF_SHUTR_NOW);
1425 res->analysers = 0;
1426 si->flags &= ~(SI_FL_ERR | SI_FL_EXP | SI_FL_RXBLK_SHUT);
Olivier Houchard4bd58672019-07-12 16:16:59 +02001427 stream_choose_redispatch(s);
Olivier Houcharda254a372019-04-05 15:30:12 +02001428 si->exp = TICK_ETERNITY;
1429 res->rex = TICK_ETERNITY;
1430 res->to_forward = 0;
1431 res->analyse_exp = TICK_ETERNITY;
1432 res->total = 0;
Olivier Houchard4bd58672019-07-12 16:16:59 +02001433 s->flags &= ~(SF_ERR_SRVTO | SF_ERR_SRVCL);
Olivier Houcharda254a372019-04-05 15:30:12 +02001434 si_release_endpoint(&s->si[1]);
1435 b_free(&req->buf);
1436 /* Swap the L7 buffer with the channel buffer */
1437 /* We know we stored the co_data as b_data, so get it there */
1438 co_data = b_data(&si->l7_buffer);
1439 b_set_data(&si->l7_buffer, b_size(&si->l7_buffer));
1440 b_xfer(&req->buf, &si->l7_buffer, b_data(&si->l7_buffer));
1441
1442 co_set_data(req, co_data);
1443 b_reset(&res->buf);
1444 co_set_data(res, 0);
1445 return 0;
1446}
1447
Christopher Faulete0768eb2018-10-03 16:38:02 +02001448/* This stream analyser waits for a complete HTTP response. It returns 1 if the
1449 * processing can continue on next analysers, or zero if it either needs more
1450 * data or wants to immediately abort the response (eg: timeout, error, ...). It
1451 * is tied to AN_RES_WAIT_HTTP and may may remove itself from s->res.analysers
1452 * when it has nothing left to do, and may remove any analyser when it wants to
1453 * abort.
1454 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001455int http_wait_for_response(struct stream *s, struct channel *rep, int an_bit)
Christopher Faulete0768eb2018-10-03 16:38:02 +02001456{
Christopher Faulet9768c262018-10-22 09:34:31 +02001457 /*
1458 * We will analyze a complete HTTP response to check the its syntax.
1459 *
1460 * Once the start line and all headers are received, we may perform a
1461 * capture of the error (if any), and we will set a few fields. We also
1462 * logging and finally headers capture.
1463 */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001464 struct session *sess = s->sess;
1465 struct http_txn *txn = s->txn;
1466 struct http_msg *msg = &txn->rsp;
Christopher Faulet9768c262018-10-22 09:34:31 +02001467 struct htx *htx;
Olivier Houcharda254a372019-04-05 15:30:12 +02001468 struct stream_interface *si_b = &s->si[1];
Christopher Faulet61608322018-11-23 16:23:45 +01001469 struct connection *srv_conn;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001470 struct htx_sl *sl;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001471 int n;
1472
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001473 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001474
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001475 htx = htxbuf(&rep->buf);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001476
Willy Tarreau4236f032019-03-05 10:43:32 +01001477 /* Parsing errors are caught here */
1478 if (htx->flags & HTX_FL_PARSING_ERROR)
1479 goto return_bad_res;
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001480 if (htx->flags & HTX_FL_PROCESSING_ERROR)
1481 goto return_int_err;
Willy Tarreau4236f032019-03-05 10:43:32 +01001482
Christopher Faulete0768eb2018-10-03 16:38:02 +02001483 /*
1484 * Now we quickly check if we have found a full valid response.
1485 * If not so, we check the FD and buffer states before leaving.
1486 * A full response is indicated by the fact that we have seen
1487 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
1488 * responses are checked first.
1489 *
1490 * Depending on whether the client is still there or not, we
1491 * may send an error response back or not. Note that normally
1492 * we should only check for HTTP status there, and check I/O
1493 * errors somewhere else.
1494 */
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001495 next_one:
Christopher Faulet29f17582019-05-23 11:03:26 +02001496 if (unlikely(htx_is_empty(htx) || htx->first == -1)) {
Christopher Faulet9768c262018-10-22 09:34:31 +02001497 /* 1: have we encountered a read error ? */
1498 if (rep->flags & CF_READ_ERROR) {
Olivier Houchard865d8392019-05-03 22:46:27 +02001499 struct connection *conn = NULL;
1500
Olivier Houchard865d8392019-05-03 22:46:27 +02001501 if (objt_cs(s->si[1].end))
1502 conn = objt_cs(s->si[1].end)->conn;
1503
1504 if (si_b->flags & SI_FL_L7_RETRY &&
1505 (!conn || conn->err_code != CO_ER_SSL_EARLY_FAILED)) {
Olivier Houcharda254a372019-04-05 15:30:12 +02001506 /* If we arrive here, then CF_READ_ERROR was
1507 * set by si_cs_recv() because we matched a
1508 * status, overwise it would have removed
1509 * the SI_FL_L7_RETRY flag, so it's ok not
1510 * to check s->be->retry_type.
1511 */
1512 if (co_data(rep) || do_l7_retry(s, si_b) == 0)
1513 return 0;
1514 }
1515
Olivier Houchard6db16992019-05-17 15:40:49 +02001516 if (txn->flags & TX_NOT_FIRST)
1517 goto abort_keep_alive;
1518
Olivier Houcharda798bf52019-03-08 18:52:00 +01001519 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001520 if (objt_server(s->target)) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01001521 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001522 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_READ_ERROR);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001523 }
1524
Christopher Faulete0768eb2018-10-03 16:38:02 +02001525 rep->analysers &= AN_RES_FLT_END;
1526 txn->status = 502;
1527
1528 /* Check to see if the server refused the early data.
1529 * If so, just send a 425
1530 */
Olivier Houchard865d8392019-05-03 22:46:27 +02001531 if (conn->err_code == CO_ER_SSL_EARLY_FAILED) {
1532 if ((s->be->retry_type & PR_RE_EARLY_ERROR) &&
Olivier Houchardad26d8d2019-05-10 17:48:28 +02001533 (si_b->flags & SI_FL_L7_RETRY) &&
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001534 do_l7_retry(s, si_b) == 0) {
1535 DBG_TRACE_DEVEL("leaving on L7 retry",
1536 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Olivier Houchard865d8392019-05-03 22:46:27 +02001537 return 0;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001538 }
Olivier Houchard865d8392019-05-03 22:46:27 +02001539 txn->status = 425;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001540 }
1541
1542 s->si[1].flags |= SI_FL_NOLINGER;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001543 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001544
1545 if (!(s->flags & SF_ERR_MASK))
1546 s->flags |= SF_ERR_SRVCL;
1547 if (!(s->flags & SF_FINST_MASK))
1548 s->flags |= SF_FINST_H;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001549 DBG_TRACE_DEVEL("leaving on error",
1550 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001551 return 0;
1552 }
1553
Christopher Faulet9768c262018-10-22 09:34:31 +02001554 /* 2: read timeout : return a 504 to the client. */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001555 else if (rep->flags & CF_READ_TIMEOUT) {
Olivier Houcharda254a372019-04-05 15:30:12 +02001556 if ((si_b->flags & SI_FL_L7_RETRY) &&
1557 (s->be->retry_type & PR_RE_TIMEOUT)) {
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001558 if (co_data(rep) || do_l7_retry(s, si_b) == 0) {
1559 DBG_TRACE_DEVEL("leaving on L7 retry",
1560 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Olivier Houcharda254a372019-04-05 15:30:12 +02001561 return 0;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001562 }
Olivier Houcharda254a372019-04-05 15:30:12 +02001563 }
Olivier Houcharda798bf52019-03-08 18:52:00 +01001564 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001565 if (objt_server(s->target)) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01001566 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001567 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_READ_TIMEOUT);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001568 }
1569
Christopher Faulete0768eb2018-10-03 16:38:02 +02001570 rep->analysers &= AN_RES_FLT_END;
1571 txn->status = 504;
1572 s->si[1].flags |= SI_FL_NOLINGER;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001573 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001574
1575 if (!(s->flags & SF_ERR_MASK))
1576 s->flags |= SF_ERR_SRVTO;
1577 if (!(s->flags & SF_FINST_MASK))
1578 s->flags |= SF_FINST_H;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001579 DBG_TRACE_DEVEL("leaving on error",
1580 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001581 return 0;
1582 }
1583
Christopher Faulet9768c262018-10-22 09:34:31 +02001584 /* 3: client abort with an abortonclose */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001585 else if ((rep->flags & CF_SHUTR) && ((s->req.flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01001586 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
1587 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01001588 if (sess->listener->counters)
1589 _HA_ATOMIC_ADD(&sess->listener->counters->cli_aborts, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001590 if (objt_server(s->target))
Olivier Houcharda798bf52019-03-08 18:52:00 +01001591 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.cli_aborts, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001592
1593 rep->analysers &= AN_RES_FLT_END;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001594 txn->status = 400;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001595 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001596
1597 if (!(s->flags & SF_ERR_MASK))
1598 s->flags |= SF_ERR_CLICL;
1599 if (!(s->flags & SF_FINST_MASK))
1600 s->flags |= SF_FINST_H;
1601
1602 /* process_stream() will take care of the error */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001603 DBG_TRACE_DEVEL("leaving on error",
1604 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001605 return 0;
1606 }
1607
Christopher Faulet9768c262018-10-22 09:34:31 +02001608 /* 4: close from server, capture the response if the server has started to respond */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001609 else if (rep->flags & CF_SHUTR) {
Olivier Houcharda254a372019-04-05 15:30:12 +02001610 if ((si_b->flags & SI_FL_L7_RETRY) &&
1611 (s->be->retry_type & PR_RE_DISCONNECTED)) {
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001612 if (co_data(rep) || do_l7_retry(s, si_b) == 0) {
1613 DBG_TRACE_DEVEL("leaving on L7 retry",
1614 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Olivier Houcharda254a372019-04-05 15:30:12 +02001615 return 0;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001616 }
Olivier Houcharda254a372019-04-05 15:30:12 +02001617 }
1618
Olivier Houchard6db16992019-05-17 15:40:49 +02001619 if (txn->flags & TX_NOT_FIRST)
1620 goto abort_keep_alive;
1621
Olivier Houcharda798bf52019-03-08 18:52:00 +01001622 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001623 if (objt_server(s->target)) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01001624 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001625 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_BROKEN_PIPE);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001626 }
1627
Christopher Faulete0768eb2018-10-03 16:38:02 +02001628 rep->analysers &= AN_RES_FLT_END;
1629 txn->status = 502;
1630 s->si[1].flags |= SI_FL_NOLINGER;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001631 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001632
1633 if (!(s->flags & SF_ERR_MASK))
1634 s->flags |= SF_ERR_SRVCL;
1635 if (!(s->flags & SF_FINST_MASK))
1636 s->flags |= SF_FINST_H;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001637 DBG_TRACE_DEVEL("leaving on error",
1638 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001639 return 0;
1640 }
1641
Christopher Faulet9768c262018-10-22 09:34:31 +02001642 /* 5: write error to client (we don't send any message then) */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001643 else if (rep->flags & CF_WRITE_ERROR) {
Christopher Faulet9768c262018-10-22 09:34:31 +02001644 if (txn->flags & TX_NOT_FIRST)
Christopher Faulete0768eb2018-10-03 16:38:02 +02001645 goto abort_keep_alive;
1646
Olivier Houcharda798bf52019-03-08 18:52:00 +01001647 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01001648 if (objt_server(s->target))
1649 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001650 rep->analysers &= AN_RES_FLT_END;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001651
1652 if (!(s->flags & SF_ERR_MASK))
1653 s->flags |= SF_ERR_CLICL;
1654 if (!(s->flags & SF_FINST_MASK))
1655 s->flags |= SF_FINST_H;
1656
1657 /* process_stream() will take care of the error */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001658 DBG_TRACE_DEVEL("leaving on error",
1659 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001660 return 0;
1661 }
1662
1663 channel_dont_close(rep);
1664 rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001665 DBG_TRACE_DEVEL("waiting for more data",
1666 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001667 return 0;
1668 }
1669
1670 /* More interesting part now : we know that we have a complete
1671 * response which at least looks like HTTP. We have an indicator
1672 * of each header's length, so we can parse them quickly.
1673 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001674 msg->msg_state = HTTP_MSG_BODY;
Christopher Faulet29f17582019-05-23 11:03:26 +02001675 BUG_ON(htx_get_first_type(htx) != HTX_BLK_RES_SL);
Christopher Faulet297fbb42019-05-13 14:41:27 +02001676 sl = http_get_stline(htx);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001677
Christopher Faulet9768c262018-10-22 09:34:31 +02001678 /* 0: we might have to print this header in debug mode */
1679 if (unlikely((global.mode & MODE_DEBUG) &&
1680 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
1681 int32_t pos;
1682
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001683 http_debug_stline("srvrep", s, sl);
Christopher Faulet9768c262018-10-22 09:34:31 +02001684
Christopher Fauleta3f15502019-05-13 15:27:23 +02001685 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
Christopher Faulet9768c262018-10-22 09:34:31 +02001686 struct htx_blk *blk = htx_get_blk(htx, pos);
1687 enum htx_blk_type type = htx_get_blk_type(blk);
1688
1689 if (type == HTX_BLK_EOH)
1690 break;
1691 if (type != HTX_BLK_HDR)
1692 continue;
1693
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001694 http_debug_hdr("srvhdr", s,
1695 htx_get_blk_name(htx, blk),
1696 htx_get_blk_value(htx, blk));
Christopher Faulet9768c262018-10-22 09:34:31 +02001697 }
1698 }
1699
Christopher Faulet03599112018-11-27 11:21:21 +01001700 /* 1: get the status code and the version. Also set HTTP flags */
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001701 txn->status = sl->info.res.status;
Christopher Faulet03599112018-11-27 11:21:21 +01001702 if (sl->flags & HTX_SL_F_VER_11)
Christopher Faulet9768c262018-10-22 09:34:31 +02001703 msg->flags |= HTTP_MSGF_VER_11;
Christopher Faulet03599112018-11-27 11:21:21 +01001704 if (sl->flags & HTX_SL_F_XFER_LEN) {
1705 msg->flags |= HTTP_MSGF_XFER_LEN;
Christopher Faulet834eee72019-02-18 11:35:02 +01001706 msg->flags |= ((sl->flags & HTX_SL_F_CLEN) ? HTTP_MSGF_CNT_LEN : HTTP_MSGF_TE_CHNK);
Christopher Fauletb2db4fa2018-11-27 16:51:09 +01001707 if (sl->flags & HTX_SL_F_BODYLESS)
1708 msg->flags |= HTTP_MSGF_BODYLESS;
Christopher Faulet03599112018-11-27 11:21:21 +01001709 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001710
1711 n = txn->status / 100;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001712 if (n < 1 || n > 5)
1713 n = 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02001714
Christopher Faulete0768eb2018-10-03 16:38:02 +02001715 /* when the client triggers a 4xx from the server, it's most often due
1716 * to a missing object or permission. These events should be tracked
1717 * because if they happen often, it may indicate a brute force or a
1718 * vulnerability scan.
1719 */
1720 if (n == 4)
1721 stream_inc_http_err_ctr(s);
1722
1723 if (objt_server(s->target))
Olivier Houcharda798bf52019-03-08 18:52:00 +01001724 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.p.http.rsp[n], 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001725
Christopher Faulete0768eb2018-10-03 16:38:02 +02001726 /* Adjust server's health based on status code. Note: status codes 501
1727 * and 505 are triggered on demand by client request, so we must not
1728 * count them as server failures.
1729 */
1730 if (objt_server(s->target)) {
1731 if (txn->status >= 100 && (txn->status < 500 || txn->status == 501 || txn->status == 505))
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001732 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_OK);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001733 else
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001734 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_STS);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001735 }
1736
1737 /*
1738 * We may be facing a 100-continue response, or any other informational
1739 * 1xx response which is non-final, in which case this is not the right
1740 * response, and we're waiting for the next one. Let's allow this response
1741 * to go to the client and wait for the next one. There's an exception for
1742 * 101 which is used later in the code to switch protocols.
1743 */
1744 if (txn->status < 200 &&
1745 (txn->status == 100 || txn->status >= 102)) {
Christopher Fauletaed82cf2018-11-30 22:22:32 +01001746 FLT_STRM_CB(s, flt_http_reset(s, msg));
Christopher Faulet421e7692019-06-13 11:16:45 +02001747 htx->first = channel_htx_fwd_headers(rep, htx);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001748 msg->msg_state = HTTP_MSG_RPBEFORE;
Christopher Faulet3499f622019-09-03 15:23:54 +02001749 msg->flags = 0;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001750 txn->status = 0;
1751 s->logs.t_data = -1; /* was not a response yet */
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001752 goto next_one;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001753 }
1754
1755 /*
1756 * 2: check for cacheability.
1757 */
1758
1759 switch (txn->status) {
1760 case 200:
1761 case 203:
1762 case 204:
1763 case 206:
1764 case 300:
1765 case 301:
1766 case 404:
1767 case 405:
1768 case 410:
1769 case 414:
1770 case 501:
1771 break;
1772 default:
1773 /* RFC7231#6.1:
1774 * Responses with status codes that are defined as
1775 * cacheable by default (e.g., 200, 203, 204, 206,
1776 * 300, 301, 404, 405, 410, 414, and 501 in this
1777 * specification) can be reused by a cache with
1778 * heuristic expiration unless otherwise indicated
1779 * by the method definition or explicit cache
1780 * controls [RFC7234]; all other status codes are
1781 * not cacheable by default.
1782 */
1783 txn->flags &= ~(TX_CACHEABLE | TX_CACHE_COOK);
1784 break;
1785 }
1786
1787 /*
1788 * 3: we may need to capture headers
1789 */
1790 s->logs.logwait &= ~LW_RESP;
1791 if (unlikely((s->logs.logwait & LW_RSPHDR) && s->res_cap))
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001792 http_capture_headers(htx, s->res_cap, sess->fe->rsp_cap);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001793
Christopher Faulet9768c262018-10-22 09:34:31 +02001794 /* Skip parsing if no content length is possible. */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001795 if (unlikely((txn->meth == HTTP_METH_CONNECT && txn->status == 200) ||
1796 txn->status == 101)) {
1797 /* Either we've established an explicit tunnel, or we're
1798 * switching the protocol. In both cases, we're very unlikely
1799 * to understand the next protocols. We have to switch to tunnel
1800 * mode, so that we transfer the request and responses then let
1801 * this protocol pass unmodified. When we later implement specific
1802 * parsers for such protocols, we'll want to check the Upgrade
1803 * header which contains information about that protocol for
1804 * responses with status 101 (eg: see RFC2817 about TLS).
1805 */
Christopher Fauletc41547b2019-07-16 14:32:23 +02001806 txn->flags |= TX_CON_WANT_TUN;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001807 }
1808
Christopher Faulet61608322018-11-23 16:23:45 +01001809 /* check for NTML authentication headers in 401 (WWW-Authenticate) and
1810 * 407 (Proxy-Authenticate) responses and set the connection to private
1811 */
1812 srv_conn = cs_conn(objt_cs(s->si[1].end));
1813 if (srv_conn) {
1814 struct ist hdr;
1815 struct http_hdr_ctx ctx;
1816
1817 if (txn->status == 401)
1818 hdr = ist("WWW-Authenticate");
1819 else if (txn->status == 407)
1820 hdr = ist("Proxy-Authenticate");
1821 else
1822 goto end;
1823
1824 ctx.blk = NULL;
1825 while (http_find_header(htx, hdr, &ctx, 0)) {
1826 if ((ctx.value.len >= 9 && word_match(ctx.value.ptr, ctx.value.len, "Negotiate", 9)) ||
Olivier Houchard250031e2019-05-29 15:01:50 +02001827 (ctx.value.len >= 4 && word_match(ctx.value.ptr, ctx.value.len, "NTLM", 4))) {
1828 sess->flags |= SESS_FL_PREFER_LAST;
Christopher Faulet61608322018-11-23 16:23:45 +01001829 srv_conn->flags |= CO_FL_PRIVATE;
Olivier Houchard250031e2019-05-29 15:01:50 +02001830 }
Christopher Faulet61608322018-11-23 16:23:45 +01001831 }
1832 }
1833
1834 end:
Christopher Faulete0768eb2018-10-03 16:38:02 +02001835 /* we want to have the response time before we start processing it */
1836 s->logs.t_data = tv_ms_elapsed(&s->logs.tv_accept, &now);
1837
1838 /* end of job, return OK */
1839 rep->analysers &= ~an_bit;
1840 rep->analyse_exp = TICK_ETERNITY;
1841 channel_auto_close(rep);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001842 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001843 return 1;
1844
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001845 return_int_err:
Christopher Fauletcff0f732019-12-16 16:13:44 +01001846 _HA_ATOMIC_ADD(&sess->fe->fe_counters.internal_errors, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +01001847 _HA_ATOMIC_ADD(&s->be->be_counters.internal_errors, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01001848 if (sess->listener->counters)
1849 _HA_ATOMIC_ADD(&sess->listener->counters->internal_errors, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +01001850 if (objt_server(s->target))
1851 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.internal_errors, 1);
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001852 txn->status = 500;
1853 if (!(s->flags & SF_ERR_MASK))
1854 s->flags |= SF_ERR_INTERNAL;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001855 goto return_prx_cond;
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001856
1857 return_bad_res:
Olivier Houcharda798bf52019-03-08 18:52:00 +01001858 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Christopher Faulet47365272018-10-31 17:40:50 +01001859 if (objt_server(s->target)) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01001860 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001861 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_HDRRSP);
Christopher Faulet47365272018-10-31 17:40:50 +01001862 }
Olivier Houcharde3249a92019-05-03 23:01:47 +02001863 if ((s->be->retry_type & PR_RE_JUNK_REQUEST) &&
Olivier Houchardad26d8d2019-05-10 17:48:28 +02001864 (si_b->flags & SI_FL_L7_RETRY) &&
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001865 do_l7_retry(s, si_b) == 0) {
1866 DBG_TRACE_DEVEL("leaving on L7 retry",
1867 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Olivier Houcharde3249a92019-05-03 23:01:47 +02001868 return 0;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001869 }
Christopher Faulet47365272018-10-31 17:40:50 +01001870 txn->status = 502;
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001871 /* fall through */
1872
Christopher Fauletb8a53712019-12-16 11:29:38 +01001873 return_prx_cond:
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001874 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulet47365272018-10-31 17:40:50 +01001875
1876 if (!(s->flags & SF_ERR_MASK))
1877 s->flags |= SF_ERR_PRXCOND;
1878 if (!(s->flags & SF_FINST_MASK))
1879 s->flags |= SF_FINST_H;
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001880
1881 s->si[1].flags |= SI_FL_NOLINGER;
1882 rep->analysers &= AN_RES_FLT_END;
1883 rep->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001884 DBG_TRACE_DEVEL("leaving on error",
1885 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulet47365272018-10-31 17:40:50 +01001886 return 0;
1887
Christopher Faulete0768eb2018-10-03 16:38:02 +02001888 abort_keep_alive:
1889 /* A keep-alive request to the server failed on a network error.
1890 * The client is required to retry. We need to close without returning
1891 * any other information so that the client retries.
1892 */
1893 txn->status = 0;
1894 rep->analysers &= AN_RES_FLT_END;
1895 s->req.analysers &= AN_REQ_FLT_END;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001896 s->logs.logwait = 0;
1897 s->logs.level = 0;
1898 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001899 http_reply_and_close(s, txn->status, NULL);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001900 DBG_TRACE_DEVEL("leaving by closing K/A connection",
1901 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001902 return 0;
1903}
1904
1905/* This function performs all the processing enabled for the current response.
1906 * It normally returns 1 unless it wants to break. It relies on buffers flags,
1907 * and updates s->res.analysers. It might make sense to explode it into several
1908 * other functions. It works like process_request (see indications above).
1909 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001910int http_process_res_common(struct stream *s, struct channel *rep, int an_bit, struct proxy *px)
Christopher Faulete0768eb2018-10-03 16:38:02 +02001911{
1912 struct session *sess = s->sess;
1913 struct http_txn *txn = s->txn;
1914 struct http_msg *msg = &txn->rsp;
Christopher Fauletfec7bd12018-10-24 11:17:50 +02001915 struct htx *htx;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001916 struct proxy *cur_proxy;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001917 enum rule_result ret = HTTP_RULE_RES_CONT;
1918
Christopher Fauletfec7bd12018-10-24 11:17:50 +02001919 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) /* we need more data */
1920 return 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02001921
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001922 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001923
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001924 htx = htxbuf(&rep->buf);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001925
1926 /* The stats applet needs to adjust the Connection header but we don't
1927 * apply any filter there.
1928 */
1929 if (unlikely(objt_applet(s->target) == &http_stats_applet)) {
1930 rep->analysers &= ~an_bit;
1931 rep->analyse_exp = TICK_ETERNITY;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001932 goto end;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001933 }
1934
1935 /*
1936 * We will have to evaluate the filters.
1937 * As opposed to version 1.2, now they will be evaluated in the
1938 * filters order and not in the header order. This means that
1939 * each filter has to be validated among all headers.
1940 *
1941 * Filters are tried with ->be first, then with ->fe if it is
1942 * different from ->be.
1943 *
1944 * Maybe we are in resume condiion. In this case I choose the
1945 * "struct proxy" which contains the rule list matching the resume
1946 * pointer. If none of theses "struct proxy" match, I initialise
1947 * the process with the first one.
1948 *
1949 * In fact, I check only correspondance betwwen the current list
1950 * pointer and the ->fe rule list. If it doesn't match, I initialize
1951 * the loop with the ->be.
1952 */
1953 if (s->current_rule_list == &sess->fe->http_res_rules)
1954 cur_proxy = sess->fe;
1955 else
1956 cur_proxy = s->be;
1957 while (1) {
Christopher Faulete0768eb2018-10-03 16:38:02 +02001958 /* evaluate http-response rules */
1959 if (ret == HTTP_RULE_RES_CONT) {
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001960 ret = http_res_get_intercept_rule(cur_proxy, &cur_proxy->http_res_rules, s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001961
Christopher Faulet3a26bee2019-12-16 12:47:40 +01001962 switch (ret) {
1963 case HTTP_RULE_RES_YIELD: /* some data miss, call the function later. */
1964 goto return_prx_yield;
1965
1966 case HTTP_RULE_RES_CONT:
1967 case HTTP_RULE_RES_STOP: /* nothing to do */
1968 break;
1969
1970 case HTTP_RULE_RES_DENY: /* deny or tarpit */
1971 goto deny;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001972
Christopher Faulet3a26bee2019-12-16 12:47:40 +01001973 case HTTP_RULE_RES_ABRT: /* abort request, response already sent */
1974 goto return_prx_cond;
1975
1976 case HTTP_RULE_RES_DONE: /* OK, but terminate request processing (eg: redirect) */
Christopher Fauletb8a53712019-12-16 11:29:38 +01001977 goto done;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001978
Christopher Faulet3a26bee2019-12-16 12:47:40 +01001979 case HTTP_RULE_RES_BADREQ: /* failed with a bad request */
1980 goto return_bad_res;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001981
Christopher Faulet3a26bee2019-12-16 12:47:40 +01001982 case HTTP_RULE_RES_ERROR: /* failed with a bad request */
1983 goto return_int_err;
1984 }
1985
1986 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02001987
Christopher Faulete0768eb2018-10-03 16:38:02 +02001988 /* check whether we're already working on the frontend */
1989 if (cur_proxy == sess->fe)
1990 break;
1991 cur_proxy = sess->fe;
1992 }
1993
Christopher Faulete0768eb2018-10-03 16:38:02 +02001994 /* OK that's all we can do for 1xx responses */
1995 if (unlikely(txn->status < 200 && txn->status != 101))
Christopher Fauletf2824e62018-10-01 12:12:37 +02001996 goto end;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001997
1998 /*
1999 * Now check for a server cookie.
2000 */
2001 if (s->be->cookie_name || sess->fe->capture_name || (s->be->options & PR_O_CHK_CACHE))
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002002 http_manage_server_side_cookies(s, rep);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002003
2004 /*
2005 * Check for cache-control or pragma headers if required.
2006 */
2007 if ((s->be->options & PR_O_CHK_CACHE) || (s->be->ck_opts & PR_CK_NOC))
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002008 http_check_response_for_cacheability(s, rep);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002009
2010 /*
2011 * Add server cookie in the response if needed
2012 */
2013 if (objt_server(s->target) && (s->be->ck_opts & PR_CK_INS) &&
2014 !((txn->flags & TX_SCK_FOUND) && (s->be->ck_opts & PR_CK_PSV)) &&
2015 (!(s->flags & SF_DIRECT) ||
2016 ((s->be->cookie_maxidle || txn->cookie_last_date) &&
2017 (!txn->cookie_last_date || (txn->cookie_last_date - date.tv_sec) < 0)) ||
2018 (s->be->cookie_maxlife && !txn->cookie_first_date) || // set the first_date
2019 (!s->be->cookie_maxlife && txn->cookie_first_date)) && // remove the first_date
2020 (!(s->be->ck_opts & PR_CK_POST) || (txn->meth == HTTP_METH_POST)) &&
2021 !(s->flags & SF_IGNORE_PRST)) {
2022 /* the server is known, it's not the one the client requested, or the
2023 * cookie's last seen date needs to be refreshed. We have to
2024 * insert a set-cookie here, except if we want to insert only on POST
2025 * requests and this one isn't. Note that servers which don't have cookies
2026 * (eg: some backup servers) will return a full cookie removal request.
2027 */
2028 if (!objt_server(s->target)->cookie) {
2029 chunk_printf(&trash,
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002030 "%s=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/",
Christopher Faulete0768eb2018-10-03 16:38:02 +02002031 s->be->cookie_name);
2032 }
2033 else {
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002034 chunk_printf(&trash, "%s=%s", s->be->cookie_name, objt_server(s->target)->cookie);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002035
2036 if (s->be->cookie_maxidle || s->be->cookie_maxlife) {
2037 /* emit last_date, which is mandatory */
2038 trash.area[trash.data++] = COOKIE_DELIM_DATE;
2039 s30tob64((date.tv_sec+3) >> 2,
2040 trash.area + trash.data);
2041 trash.data += 5;
2042
2043 if (s->be->cookie_maxlife) {
2044 /* emit first_date, which is either the original one or
2045 * the current date.
2046 */
2047 trash.area[trash.data++] = COOKIE_DELIM_DATE;
2048 s30tob64(txn->cookie_first_date ?
2049 txn->cookie_first_date >> 2 :
2050 (date.tv_sec+3) >> 2,
2051 trash.area + trash.data);
2052 trash.data += 5;
2053 }
2054 }
2055 chunk_appendf(&trash, "; path=/");
2056 }
2057
2058 if (s->be->cookie_domain)
2059 chunk_appendf(&trash, "; domain=%s", s->be->cookie_domain);
2060
2061 if (s->be->ck_opts & PR_CK_HTTPONLY)
2062 chunk_appendf(&trash, "; HttpOnly");
2063
2064 if (s->be->ck_opts & PR_CK_SECURE)
2065 chunk_appendf(&trash, "; Secure");
2066
Christopher Faulet2f533902020-01-21 11:06:48 +01002067 if (s->be->cookie_attrs)
2068 chunk_appendf(&trash, "; %s", s->be->cookie_attrs);
2069
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002070 if (unlikely(!http_add_header(htx, ist("Set-Cookie"), ist2(trash.area, trash.data))))
Christopher Fauletb8a53712019-12-16 11:29:38 +01002071 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002072
2073 txn->flags &= ~TX_SCK_MASK;
2074 if (__objt_server(s->target)->cookie && (s->flags & SF_DIRECT))
2075 /* the server did not change, only the date was updated */
2076 txn->flags |= TX_SCK_UPDATED;
2077 else
2078 txn->flags |= TX_SCK_INSERTED;
2079
2080 /* Here, we will tell an eventual cache on the client side that we don't
2081 * want it to cache this reply because HTTP/1.0 caches also cache cookies !
2082 * Some caches understand the correct form: 'no-cache="set-cookie"', but
2083 * others don't (eg: apache <= 1.3.26). So we use 'private' instead.
2084 */
2085 if ((s->be->ck_opts & PR_CK_NOC) && (txn->flags & TX_CACHEABLE)) {
2086
2087 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
2088
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002089 if (unlikely(!http_add_header(htx, ist("Cache-control"), ist("private"))))
Christopher Fauletb8a53712019-12-16 11:29:38 +01002090 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002091 }
2092 }
2093
2094 /*
2095 * Check if result will be cacheable with a cookie.
2096 * We'll block the response if security checks have caught
2097 * nasty things such as a cacheable cookie.
2098 */
2099 if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) ==
2100 (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) &&
2101 (s->be->options & PR_O_CHK_CACHE)) {
2102 /* we're in presence of a cacheable response containing
2103 * a set-cookie header. We'll block it as requested by
2104 * the 'checkcache' option, and send an alert.
2105 */
Christopher Faulete0768eb2018-10-03 16:38:02 +02002106 ha_alert("Blocking cacheable cookie in response from instance %s, server %s.\n",
2107 s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>");
2108 send_log(s->be, LOG_ALERT,
2109 "Blocking cacheable cookie in response from instance %s, server %s.\n",
2110 s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>");
Christopher Fauletb8a53712019-12-16 11:29:38 +01002111 goto deny;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002112 }
2113
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002114 end:
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002115 /*
2116 * Evaluate after-response rules before forwarding the response. rules
2117 * from the backend are evaluated first, then one from the frontend if
2118 * it differs.
2119 */
2120 if (!http_eval_after_res_rules(s))
2121 goto return_int_err;
2122
Christopher Faulete0768eb2018-10-03 16:38:02 +02002123 /* Always enter in the body analyzer */
2124 rep->analysers &= ~AN_RES_FLT_XFER_DATA;
2125 rep->analysers |= AN_RES_HTTP_XFER_BODY;
2126
2127 /* if the user wants to log as soon as possible, without counting
2128 * bytes from the server, then this is the right moment. We have
2129 * to temporarily assign bytes_out to log what we currently have.
2130 */
2131 if (!LIST_ISEMPTY(&sess->fe->logformat) && !(s->logs.logwait & LW_BYTES)) {
2132 s->logs.t_close = s->logs.t_data; /* to get a valid end date */
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002133 s->logs.bytes_out = htx->data;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002134 s->do_log(s);
2135 s->logs.bytes_out = 0;
2136 }
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002137
Christopher Fauletb8a53712019-12-16 11:29:38 +01002138 done:
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002139 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletb8a53712019-12-16 11:29:38 +01002140 rep->analysers &= ~an_bit;
2141 rep->analyse_exp = TICK_ETERNITY;
2142 return 1;
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002143
Christopher Fauletb8a53712019-12-16 11:29:38 +01002144 deny:
Christopher Fauletb8a53712019-12-16 11:29:38 +01002145 _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_resp, 1);
Christopher Fauleta08546b2019-12-16 16:07:34 +01002146 _HA_ATOMIC_ADD(&s->be->be_counters.denied_resp, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +01002147 if (sess->listener->counters)
2148 _HA_ATOMIC_ADD(&sess->listener->counters->denied_resp, 1);
Christopher Fauleta08546b2019-12-16 16:07:34 +01002149 if (objt_server(s->target))
2150 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.denied_resp, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +01002151 goto return_prx_err;
2152
2153 return_int_err:
2154 txn->status = 500;
2155 if (!(s->flags & SF_ERR_MASK))
2156 s->flags |= SF_ERR_INTERNAL;
Christopher Fauletcff0f732019-12-16 16:13:44 +01002157 _HA_ATOMIC_ADD(&sess->fe->fe_counters.internal_errors, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +01002158 _HA_ATOMIC_ADD(&s->be->be_counters.internal_errors, 1);
2159 if (objt_server(s->target))
2160 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.internal_errors, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01002161 if (objt_server(s->target))
2162 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.internal_errors, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +01002163 goto return_prx_err;
2164
2165 return_bad_res:
2166 txn->status = 502;
Christopher Fauleta20a6532020-02-05 10:16:41 +01002167 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
2168 if (objt_server(s->target)) {
2169 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
2170 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_RSP);
2171 }
Christopher Fauletb8a53712019-12-16 11:29:38 +01002172 /* fall through */
2173
2174 return_prx_err:
2175 http_reply_and_close(s, txn->status, http_error_message(s));
2176 /* fall through */
2177
2178 return_prx_cond:
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002179 s->logs.t_data = -1; /* was not a valid response */
2180 s->si[1].flags |= SI_FL_NOLINGER;
Christopher Fauletb8a53712019-12-16 11:29:38 +01002181
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002182 if (!(s->flags & SF_ERR_MASK))
2183 s->flags |= SF_ERR_PRXCOND;
2184 if (!(s->flags & SF_FINST_MASK))
2185 s->flags |= SF_FINST_H;
Christopher Fauletb8a53712019-12-16 11:29:38 +01002186
2187 rep->analysers &= ~an_bit;
2188 rep->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002189 DBG_TRACE_DEVEL("leaving on error",
2190 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002191 return 0;
Christopher Fauletb8a53712019-12-16 11:29:38 +01002192
2193 return_prx_yield:
2194 channel_dont_close(rep);
2195 DBG_TRACE_DEVEL("waiting for more data",
2196 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
2197 return 0;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002198}
2199
2200/* This function is an analyser which forwards response body (including chunk
2201 * sizes if any). It is called as soon as we must forward, even if we forward
2202 * zero byte. The only situation where it must not be called is when we're in
2203 * tunnel mode and we want to forward till the close. It's used both to forward
2204 * remaining data and to resync after end of body. It expects the msg_state to
2205 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
2206 * read more data, or 1 once we can go on with next request or end the stream.
2207 *
2208 * It is capable of compressing response data both in content-length mode and
2209 * in chunked mode. The state machines follows different flows depending on
2210 * whether content-length and chunked modes are used, since there are no
2211 * trailers in content-length :
2212 *
2213 * chk-mode cl-mode
2214 * ,----- BODY -----.
2215 * / \
2216 * V size > 0 V chk-mode
2217 * .--> SIZE -------------> DATA -------------> CRLF
2218 * | | size == 0 | last byte |
2219 * | v final crlf v inspected |
2220 * | TRAILERS -----------> DONE |
2221 * | |
2222 * `----------------------------------------------'
2223 *
2224 * Compression only happens in the DATA state, and must be flushed in final
2225 * states (TRAILERS/DONE) or when leaving on missing data. Normal forwarding
2226 * is performed at once on final states for all bytes parsed, or when leaving
2227 * on missing data.
2228 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002229int http_response_forward_body(struct stream *s, struct channel *res, int an_bit)
Christopher Faulete0768eb2018-10-03 16:38:02 +02002230{
2231 struct session *sess = s->sess;
2232 struct http_txn *txn = s->txn;
2233 struct http_msg *msg = &s->txn->rsp;
Christopher Faulet9768c262018-10-22 09:34:31 +02002234 struct htx *htx;
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002235 int ret;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002236
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002237 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002238
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01002239 htx = htxbuf(&res->buf);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002240
Christopher Fauletb9a92f32019-09-09 10:15:21 +02002241 if (htx->flags & HTX_FL_PARSING_ERROR)
2242 goto return_bad_res;
2243 if (htx->flags & HTX_FL_PROCESSING_ERROR)
2244 goto return_int_err;
2245
Christopher Faulete0768eb2018-10-03 16:38:02 +02002246 if ((res->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
Christopher Fauletf2824e62018-10-01 12:12:37 +02002247 ((res->flags & CF_SHUTW) && (res->to_forward || co_data(res)))) {
Christopher Faulete0768eb2018-10-03 16:38:02 +02002248 /* Output closed while we were sending data. We must abort and
2249 * wake the other side up.
2250 */
Christopher Faulete0768eb2018-10-03 16:38:02 +02002251 msg->msg_state = HTTP_MSG_ERROR;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002252 http_end_response(s);
2253 http_end_request(s);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002254 DBG_TRACE_DEVEL("leaving on error",
2255 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002256 return 1;
2257 }
2258
Christopher Faulet9768c262018-10-22 09:34:31 +02002259 if (msg->msg_state == HTTP_MSG_BODY)
2260 msg->msg_state = HTTP_MSG_DATA;
2261
Christopher Faulete0768eb2018-10-03 16:38:02 +02002262 /* in most states, we should abort in case of early close */
2263 channel_auto_close(res);
2264
Christopher Faulete0768eb2018-10-03 16:38:02 +02002265 if (res->to_forward) {
Christopher Faulet66af0b22019-03-22 14:54:52 +01002266 if (res->to_forward == CHN_INFINITE_FORWARD) {
Christopher Faulet1a3e0272019-11-15 16:31:46 +01002267 if (res->flags & CF_EOI)
2268 msg->msg_state = HTTP_MSG_ENDING;
Christopher Faulet66af0b22019-03-22 14:54:52 +01002269 }
2270 else {
2271 /* We can't process the buffer's contents yet */
2272 res->flags |= CF_WAKE_WRITE;
2273 goto missing_data_or_waiting;
2274 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02002275 }
2276
Christopher Faulet1a3e0272019-11-15 16:31:46 +01002277 if (msg->msg_state >= HTTP_MSG_ENDING)
2278 goto ending;
2279
2280 if ((txn->meth == HTTP_METH_CONNECT && txn->status == 200) || txn->status == 101 ||
2281 (!(msg->flags & HTTP_MSGF_XFER_LEN) && !HAS_RSP_DATA_FILTERS(s))) {
2282 msg->msg_state = HTTP_MSG_ENDING;
2283 goto ending;
2284 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002285
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002286 /* Forward input data. We get it by removing all outgoing data not
2287 * forwarded yet from HTX data size. If there are some data filters, we
2288 * let them decide the amount of data to forward.
Christopher Faulet9768c262018-10-22 09:34:31 +02002289 */
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002290 if (HAS_RSP_DATA_FILTERS(s)) {
2291 ret = flt_http_payload(s, msg, htx->data);
2292 if (ret < 0)
2293 goto return_bad_res;
Christopher Faulet421e7692019-06-13 11:16:45 +02002294 c_adv(res, ret);
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002295 }
2296 else {
Christopher Faulet421e7692019-06-13 11:16:45 +02002297 c_adv(res, htx->data - co_data(res));
Christopher Faulet66af0b22019-03-22 14:54:52 +01002298 if (msg->flags & HTTP_MSGF_XFER_LEN)
2299 channel_htx_forward_forever(res, htx);
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002300 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002301
Christopher Faulet1a3e0272019-11-15 16:31:46 +01002302 if (htx->data != co_data(res))
2303 goto missing_data_or_waiting;
2304
2305 if (!(msg->flags & HTTP_MSGF_XFER_LEN) && res->flags & CF_SHUTR) {
2306 msg->msg_state = HTTP_MSG_ENDING;
2307 goto ending;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002308 }
2309
Christopher Faulet9768c262018-10-22 09:34:31 +02002310 /* Check if the end-of-message is reached and if so, switch the message
Christopher Fauletd20fdb02019-06-13 16:43:22 +02002311 * in HTTP_MSG_ENDING state. Then if all data was marked to be
2312 * forwarded, set the state to HTTP_MSG_DONE.
Christopher Faulet9768c262018-10-22 09:34:31 +02002313 */
2314 if (htx_get_tail_type(htx) != HTX_BLK_EOM)
2315 goto missing_data_or_waiting;
2316
Christopher Fauletd20fdb02019-06-13 16:43:22 +02002317 msg->msg_state = HTTP_MSG_ENDING;
Christopher Faulet9768c262018-10-22 09:34:31 +02002318
Christopher Faulet1a3e0272019-11-15 16:31:46 +01002319 ending:
2320 /* other states, ENDING...TUNNEL */
2321 if (msg->msg_state >= HTTP_MSG_DONE)
2322 goto done;
Christopher Faulet9768c262018-10-22 09:34:31 +02002323
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002324 if (HAS_RSP_DATA_FILTERS(s)) {
2325 ret = flt_http_end(s, msg);
2326 if (ret <= 0) {
2327 if (!ret)
2328 goto missing_data_or_waiting;
2329 goto return_bad_res;
2330 }
2331 }
2332
Christopher Faulet1a3e0272019-11-15 16:31:46 +01002333 if ((txn->meth == HTTP_METH_CONNECT && txn->status == 200) || txn->status == 101 ||
2334 !(msg->flags & HTTP_MSGF_XFER_LEN)) {
2335 msg->msg_state = HTTP_MSG_TUNNEL;
2336 goto ending;
2337 }
2338 else {
2339 msg->msg_state = HTTP_MSG_DONE;
2340 res->to_forward = 0;
2341 }
2342
2343 done:
2344
2345 channel_dont_close(res);
2346
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002347 http_end_response(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002348 if (!(res->analysers & an_bit)) {
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002349 http_end_request(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002350 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
2351 if (res->flags & CF_SHUTW) {
2352 /* response errors are most likely due to the
2353 * client aborting the transfer. */
Christopher Faulet93e02d82019-03-08 14:18:50 +01002354 goto return_cli_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002355 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02002356 goto return_bad_res;
2357 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002358 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002359 return 1;
2360 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002361 DBG_TRACE_DEVEL("waiting for the end of the HTTP txn",
2362 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002363 return 0;
2364
2365 missing_data_or_waiting:
2366 if (res->flags & CF_SHUTW)
Christopher Faulet93e02d82019-03-08 14:18:50 +01002367 goto return_cli_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002368
2369 /* stop waiting for data if the input is closed before the end. If the
2370 * client side was already closed, it means that the client has aborted,
2371 * so we don't want to count this as a server abort. Otherwise it's a
2372 * server abort.
2373 */
Christopher Fauletd20fdb02019-06-13 16:43:22 +02002374 if (msg->msg_state < HTTP_MSG_ENDING && res->flags & CF_SHUTR) {
Christopher Faulete0768eb2018-10-03 16:38:02 +02002375 if ((s->req.flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))
Christopher Faulet93e02d82019-03-08 14:18:50 +01002376 goto return_cli_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002377 /* If we have some pending data, we continue the processing */
Christopher Faulet93e02d82019-03-08 14:18:50 +01002378 if (htx_is_empty(htx))
2379 goto return_srv_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002380 }
2381
Christopher Faulete0768eb2018-10-03 16:38:02 +02002382 /* When TE: chunked is used, we need to get there again to parse
2383 * remaining chunks even if the server has closed, so we don't want to
Christopher Faulet9768c262018-10-22 09:34:31 +02002384 * set CF_DONTCLOSE. Similarly when there is a content-leng or if there
2385 * are filters registered on the stream, we don't want to forward a
2386 * close
Christopher Faulete0768eb2018-10-03 16:38:02 +02002387 */
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002388 if ((msg->flags & HTTP_MSGF_XFER_LEN) || HAS_RSP_DATA_FILTERS(s))
Christopher Faulete0768eb2018-10-03 16:38:02 +02002389 channel_dont_close(res);
2390
2391 /* We know that more data are expected, but we couldn't send more that
2392 * what we did. So we always set the CF_EXPECT_MORE flag so that the
2393 * system knows it must not set a PUSH on this first part. Interactive
2394 * modes are already handled by the stream sock layer. We must not do
2395 * this in content-length mode because it could present the MSG_MORE
2396 * flag with the last block of forwarded data, which would cause an
2397 * additional delay to be observed by the receiver.
2398 */
2399 if ((msg->flags & HTTP_MSGF_TE_CHNK) || (msg->flags & HTTP_MSGF_COMPRESSING))
2400 res->flags |= CF_EXPECT_MORE;
2401
2402 /* the stream handler will take care of timeouts and errors */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002403 DBG_TRACE_DEVEL("waiting for more data to forward",
2404 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002405 return 0;
2406
Christopher Faulet93e02d82019-03-08 14:18:50 +01002407 return_srv_abort:
2408 _HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
2409 _HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01002410 if (sess->listener->counters)
2411 _HA_ATOMIC_ADD(&sess->listener->counters->srv_aborts, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002412 if (objt_server(s->target))
Christopher Fauletcff0f732019-12-16 16:13:44 +01002413 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.srv_aborts, 1);
Christopher Faulet93e02d82019-03-08 14:18:50 +01002414 if (!(s->flags & SF_ERR_MASK))
2415 s->flags |= SF_ERR_SRVCL;
2416 goto return_error;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002417
Christopher Faulet93e02d82019-03-08 14:18:50 +01002418 return_cli_abort:
2419 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
2420 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01002421 if (sess->listener->counters)
2422 _HA_ATOMIC_ADD(&sess->listener->counters->cli_aborts, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002423 if (objt_server(s->target))
Christopher Fauletcff0f732019-12-16 16:13:44 +01002424 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.cli_aborts, 1);
Christopher Faulet93e02d82019-03-08 14:18:50 +01002425 if (!(s->flags & SF_ERR_MASK))
2426 s->flags |= SF_ERR_CLICL;
2427 goto return_error;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002428
Christopher Fauletb9a92f32019-09-09 10:15:21 +02002429 return_int_err:
Christopher Fauletcff0f732019-12-16 16:13:44 +01002430 _HA_ATOMIC_ADD(&sess->fe->fe_counters.internal_errors, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +01002431 _HA_ATOMIC_ADD(&s->be->be_counters.internal_errors, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01002432 if (sess->listener->counters)
2433 _HA_ATOMIC_ADD(&sess->listener->counters->internal_errors, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +01002434 if (objt_server(s->target))
2435 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.internal_errors, 1);
Christopher Fauletb9a92f32019-09-09 10:15:21 +02002436 if (!(s->flags & SF_ERR_MASK))
2437 s->flags |= SF_ERR_INTERNAL;
2438 goto return_error;
2439
Christopher Faulet93e02d82019-03-08 14:18:50 +01002440 return_bad_res:
2441 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
2442 if (objt_server(s->target)) {
Christopher Fauletcff0f732019-12-16 16:13:44 +01002443 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Christopher Faulet93e02d82019-03-08 14:18:50 +01002444 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_RSP);
2445 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02002446 if (!(s->flags & SF_ERR_MASK))
Christopher Faulet93e02d82019-03-08 14:18:50 +01002447 s->flags |= SF_ERR_SRVCL;
Christopher Fauletb8a53712019-12-16 11:29:38 +01002448 /* fall through */
Christopher Faulete0768eb2018-10-03 16:38:02 +02002449
Christopher Faulet93e02d82019-03-08 14:18:50 +01002450 return_error:
Christopher Faulete0768eb2018-10-03 16:38:02 +02002451 /* don't send any error message as we're in the body */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002452 http_reply_and_close(s, txn->status, NULL);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002453 res->analysers &= AN_RES_FLT_END;
2454 s->req.analysers &= AN_REQ_FLT_END; /* we're in data phase, we want to abort both directions */
Christopher Faulete0768eb2018-10-03 16:38:02 +02002455 if (!(s->flags & SF_FINST_MASK))
2456 s->flags |= SF_FINST_D;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002457 DBG_TRACE_DEVEL("leaving on error",
2458 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002459 return 0;
2460}
2461
Christopher Fauletf2824e62018-10-01 12:12:37 +02002462/* Perform an HTTP redirect based on the information in <rule>. The function
Christopher Faulet99daf282018-11-28 22:58:13 +01002463 * returns zero on success, or zero in case of a, irrecoverable error such
Christopher Fauletf2824e62018-10-01 12:12:37 +02002464 * as too large a request to build a valid response.
2465 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002466int http_apply_redirect_rule(struct redirect_rule *rule, struct stream *s, struct http_txn *txn)
Christopher Fauletf2824e62018-10-01 12:12:37 +02002467{
Christopher Faulet99daf282018-11-28 22:58:13 +01002468 struct channel *req = &s->req;
2469 struct channel *res = &s->res;
2470 struct htx *htx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01002471 struct htx_sl *sl;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002472 struct buffer *chunk;
Christopher Faulet99daf282018-11-28 22:58:13 +01002473 struct ist status, reason, location;
2474 unsigned int flags;
Christopher Faulet08e66462019-05-23 16:44:59 +02002475 int close = 0; /* Try to keep the connection alive byt default */
Christopher Fauletf2824e62018-10-01 12:12:37 +02002476
2477 chunk = alloc_trash_chunk();
Christopher Fauletb8a53712019-12-16 11:29:38 +01002478 if (!chunk) {
2479 if (!(s->flags & SF_ERR_MASK))
2480 s->flags |= SF_ERR_RESOURCE;
Christopher Faulet99daf282018-11-28 22:58:13 +01002481 goto fail;
Christopher Fauletb8a53712019-12-16 11:29:38 +01002482 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002483
Christopher Faulet99daf282018-11-28 22:58:13 +01002484 /*
2485 * Create the location
2486 */
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01002487 htx = htxbuf(&req->buf);
Christopher Fauletf2824e62018-10-01 12:12:37 +02002488 switch(rule->type) {
Christopher Faulet99daf282018-11-28 22:58:13 +01002489 case REDIRECT_TYPE_SCHEME: {
2490 struct http_hdr_ctx ctx;
2491 struct ist path, host;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002492
Christopher Faulet99daf282018-11-28 22:58:13 +01002493 host = ist("");
2494 ctx.blk = NULL;
2495 if (http_find_header(htx, ist("Host"), &ctx, 0))
2496 host = ctx.value;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002497
Christopher Faulet297fbb42019-05-13 14:41:27 +02002498 sl = http_get_stline(htx);
Christopher Faulet99daf282018-11-28 22:58:13 +01002499 path = http_get_path(htx_sl_req_uri(sl));
2500 /* build message using path */
2501 if (path.ptr) {
2502 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
2503 int qs = 0;
2504 while (qs < path.len) {
2505 if (*(path.ptr + qs) == '?') {
2506 path.len = qs;
2507 break;
2508 }
2509 qs++;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002510 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002511 }
2512 }
Christopher Faulet99daf282018-11-28 22:58:13 +01002513 else
2514 path = ist("/");
Christopher Fauletf2824e62018-10-01 12:12:37 +02002515
Christopher Faulet99daf282018-11-28 22:58:13 +01002516 if (rule->rdr_str) { /* this is an old "redirect" rule */
2517 /* add scheme */
2518 if (!chunk_memcat(chunk, rule->rdr_str, rule->rdr_len))
2519 goto fail;
2520 }
2521 else {
2522 /* add scheme with executing log format */
2523 chunk->data += build_logline(s, chunk->area + chunk->data,
2524 chunk->size - chunk->data,
2525 &rule->rdr_fmt);
2526 }
2527 /* add "://" + host + path */
2528 if (!chunk_memcat(chunk, "://", 3) ||
2529 !chunk_memcat(chunk, host.ptr, host.len) ||
2530 !chunk_memcat(chunk, path.ptr, path.len))
2531 goto fail;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002532
Christopher Faulet99daf282018-11-28 22:58:13 +01002533 /* append a slash at the end of the location if needed and missing */
2534 if (chunk->data && chunk->area[chunk->data - 1] != '/' &&
2535 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
2536 if (chunk->data + 1 >= chunk->size)
2537 goto fail;
2538 chunk->area[chunk->data++] = '/';
2539 }
2540 break;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002541 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002542
Christopher Faulet99daf282018-11-28 22:58:13 +01002543 case REDIRECT_TYPE_PREFIX: {
2544 struct ist path;
2545
Christopher Faulet297fbb42019-05-13 14:41:27 +02002546 sl = http_get_stline(htx);
Christopher Faulet99daf282018-11-28 22:58:13 +01002547 path = http_get_path(htx_sl_req_uri(sl));
2548 /* build message using path */
2549 if (path.ptr) {
2550 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
2551 int qs = 0;
2552 while (qs < path.len) {
2553 if (*(path.ptr + qs) == '?') {
2554 path.len = qs;
2555 break;
2556 }
2557 qs++;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002558 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002559 }
2560 }
Christopher Faulet99daf282018-11-28 22:58:13 +01002561 else
2562 path = ist("/");
Christopher Fauletf2824e62018-10-01 12:12:37 +02002563
Christopher Faulet99daf282018-11-28 22:58:13 +01002564 if (rule->rdr_str) { /* this is an old "redirect" rule */
2565 /* add prefix. Note that if prefix == "/", we don't want to
2566 * add anything, otherwise it makes it hard for the user to
2567 * configure a self-redirection.
2568 */
2569 if (rule->rdr_len != 1 || *rule->rdr_str != '/') {
2570 if (!chunk_memcat(chunk, rule->rdr_str, rule->rdr_len))
2571 goto fail;
2572 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002573 }
Christopher Faulet99daf282018-11-28 22:58:13 +01002574 else {
2575 /* add prefix with executing log format */
2576 chunk->data += build_logline(s, chunk->area + chunk->data,
2577 chunk->size - chunk->data,
2578 &rule->rdr_fmt);
2579 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002580
Christopher Faulet99daf282018-11-28 22:58:13 +01002581 /* add path */
2582 if (!chunk_memcat(chunk, path.ptr, path.len))
2583 goto fail;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002584
Christopher Faulet99daf282018-11-28 22:58:13 +01002585 /* append a slash at the end of the location if needed and missing */
2586 if (chunk->data && chunk->area[chunk->data - 1] != '/' &&
2587 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
2588 if (chunk->data + 1 >= chunk->size)
2589 goto fail;
2590 chunk->area[chunk->data++] = '/';
2591 }
2592 break;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002593 }
Christopher Faulet99daf282018-11-28 22:58:13 +01002594 case REDIRECT_TYPE_LOCATION:
2595 default:
2596 if (rule->rdr_str) { /* this is an old "redirect" rule */
2597 /* add location */
2598 if (!chunk_memcat(chunk, rule->rdr_str, rule->rdr_len))
2599 goto fail;
2600 }
2601 else {
2602 /* add location with executing log format */
2603 chunk->data += build_logline(s, chunk->area + chunk->data,
2604 chunk->size - chunk->data,
2605 &rule->rdr_fmt);
2606 }
2607 break;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002608 }
Christopher Faulet99daf282018-11-28 22:58:13 +01002609 location = ist2(chunk->area, chunk->data);
2610
2611 /*
2612 * Create the 30x response
2613 */
2614 switch (rule->code) {
2615 case 308:
2616 status = ist("308");
2617 reason = ist("Permanent Redirect");
2618 break;
2619 case 307:
2620 status = ist("307");
2621 reason = ist("Temporary Redirect");
2622 break;
2623 case 303:
2624 status = ist("303");
2625 reason = ist("See Other");
2626 break;
2627 case 301:
2628 status = ist("301");
2629 reason = ist("Moved Permanently");
2630 break;
2631 case 302:
2632 default:
2633 status = ist("302");
2634 reason = ist("Found");
2635 break;
2636 }
2637
Christopher Faulet08e66462019-05-23 16:44:59 +02002638 if (!(txn->req.flags & HTTP_MSGF_BODYLESS) && txn->req.msg_state != HTTP_MSG_DONE)
2639 close = 1;
2640
Christopher Faulet99daf282018-11-28 22:58:13 +01002641 htx = htx_from_buf(&res->buf);
Kevin Zhu96b36392020-01-07 09:42:55 +01002642 /* Trim any possible response */
2643 channel_htx_truncate(&s->res, htx);
Christopher Faulet99daf282018-11-28 22:58:13 +01002644 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN|HTX_SL_F_BODYLESS);
2645 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), status, reason);
2646 if (!sl)
2647 goto fail;
2648 sl->info.res.status = rule->code;
2649 s->txn->status = rule->code;
2650
Christopher Faulet08e66462019-05-23 16:44:59 +02002651 if (close && !htx_add_header(htx, ist("Connection"), ist("close")))
2652 goto fail;
2653
2654 if (!htx_add_header(htx, ist("Content-length"), ist("0")) ||
Christopher Faulet99daf282018-11-28 22:58:13 +01002655 !htx_add_header(htx, ist("Location"), location))
2656 goto fail;
2657
2658 if (rule->code == 302 || rule->code == 303 || rule->code == 307) {
2659 if (!htx_add_header(htx, ist("Cache-Control"), ist("no-cache")))
2660 goto fail;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002661 }
2662
2663 if (rule->cookie_len) {
Christopher Faulet99daf282018-11-28 22:58:13 +01002664 if (!htx_add_header(htx, ist("Set-Cookie"), ist2(rule->cookie_str, rule->cookie_len)))
2665 goto fail;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002666 }
2667
Christopher Faulet99daf282018-11-28 22:58:13 +01002668 if (!htx_add_endof(htx, HTX_BLK_EOH) || !htx_add_endof(htx, HTX_BLK_EOM))
2669 goto fail;
2670
Kevin Zhu96b36392020-01-07 09:42:55 +01002671 htx_to_buf(htx, &res->buf);
Christopher Fauleta72a7e42020-01-28 09:28:11 +01002672 if (!http_forward_proxy_resp(s, 1))
2673 goto fail;
Christopher Faulet99daf282018-11-28 22:58:13 +01002674
Christopher Faulet60b33a52020-01-28 09:18:10 +01002675 if (rule->flags & REDIRECT_FLAG_FROM_REQ) {
2676 /* let's log the request time */
2677 s->logs.tv_request = now;
2678 req->analysers &= AN_REQ_FLT_END;
Christopher Faulet99daf282018-11-28 22:58:13 +01002679
Christopher Faulet60b33a52020-01-28 09:18:10 +01002680 if (s->sess->fe == s->be) /* report it if the request was intercepted by the frontend */
2681 _HA_ATOMIC_ADD(&s->sess->fe->fe_counters.intercepted_req, 1);
2682 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002683
2684 if (!(s->flags & SF_ERR_MASK))
2685 s->flags |= SF_ERR_LOCAL;
2686 if (!(s->flags & SF_FINST_MASK))
Christopher Faulet60b33a52020-01-28 09:18:10 +01002687 s->flags |= ((rule->flags & REDIRECT_FLAG_FROM_REQ) ? SF_FINST_R : SF_FINST_H);
Christopher Fauletf2824e62018-10-01 12:12:37 +02002688
Christopher Faulet99daf282018-11-28 22:58:13 +01002689 free_trash_chunk(chunk);
2690 return 1;
2691
2692 fail:
2693 /* If an error occurred, remove the incomplete HTTP response from the
2694 * buffer */
Christopher Faulet202c6ce2019-01-07 14:57:35 +01002695 channel_htx_truncate(res, htxbuf(&res->buf));
Christopher Fauletf2824e62018-10-01 12:12:37 +02002696 free_trash_chunk(chunk);
Christopher Faulet99daf282018-11-28 22:58:13 +01002697 return 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002698}
2699
Christopher Faulet92d34fe2019-12-17 09:20:34 +01002700/* Replace all headers matching the name <name>. The header value is replaced if
2701 * it matches the regex <re>. <str> is used for the replacement. If <full> is
2702 * set to 1, the full-line is matched and replaced. Otherwise, comma-separated
2703 * values are evaluated one by one. It returns 0 on success and -1 on error.
2704 */
2705int http_replace_hdrs(struct stream* s, struct htx *htx, struct ist name,
2706 const char *str, struct my_regex *re, int full)
Christopher Faulet72333522018-10-24 11:25:02 +02002707{
2708 struct http_hdr_ctx ctx;
2709 struct buffer *output = get_trash_chunk();
2710
Christopher Faulet72333522018-10-24 11:25:02 +02002711 ctx.blk = NULL;
Christopher Faulet92d34fe2019-12-17 09:20:34 +01002712 while (http_find_header(htx, name, &ctx, full)) {
Christopher Faulet72333522018-10-24 11:25:02 +02002713 if (!regex_exec_match2(re, ctx.value.ptr, ctx.value.len, MAX_MATCH, pmatch, 0))
2714 continue;
2715
2716 output->data = exp_replace(output->area, output->size, ctx.value.ptr, str, pmatch);
2717 if (output->data == -1)
2718 return -1;
2719 if (!http_replace_header_value(htx, &ctx, ist2(output->area, output->data)))
2720 return -1;
2721 }
2722 return 0;
2723}
2724
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002725/* This function executes one of the set-{method,path,query,uri} actions. It
2726 * takes the string from the variable 'replace' with length 'len', then modifies
2727 * the relevant part of the request line accordingly. Then it updates various
2728 * pointers to the next elements which were moved, and the total buffer length.
2729 * It finds the action to be performed in p[2], previously filled by function
2730 * parse_set_req_line(). It returns 0 in case of success, -1 in case of internal
2731 * error, though this can be revisited when this code is finally exploited.
2732 *
2733 * 'action' can be '0' to replace method, '1' to replace path, '2' to replace
2734 * query string and 3 to replace uri.
2735 *
2736 * In query string case, the mark question '?' must be set at the start of the
2737 * string by the caller, event if the replacement query string is empty.
2738 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002739int http_req_replace_stline(int action, const char *replace, int len,
2740 struct proxy *px, struct stream *s)
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002741{
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01002742 struct htx *htx = htxbuf(&s->req.buf);
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002743
2744 switch (action) {
2745 case 0: // method
2746 if (!http_replace_req_meth(htx, ist2(replace, len)))
2747 return -1;
2748 break;
2749
2750 case 1: // path
2751 if (!http_replace_req_path(htx, ist2(replace, len)))
2752 return -1;
2753 break;
2754
2755 case 2: // query
2756 if (!http_replace_req_query(htx, ist2(replace, len)))
2757 return -1;
2758 break;
2759
2760 case 3: // uri
2761 if (!http_replace_req_uri(htx, ist2(replace, len)))
2762 return -1;
2763 break;
2764
2765 default:
2766 return -1;
2767 }
2768 return 0;
2769}
2770
2771/* This function replace the HTTP status code and the associated message. The
Christopher Faulete00d06c2019-12-16 17:18:42 +01002772 * variable <status> contains the new status code. This function never fails. It
2773 * returns 0 in case of success, -1 in case of internal error.
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002774 */
Christopher Faulet96bff762019-12-17 13:46:18 +01002775int http_res_set_status(unsigned int status, struct ist reason, struct stream *s)
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002776{
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01002777 struct htx *htx = htxbuf(&s->res.buf);
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002778 char *res;
2779
2780 chunk_reset(&trash);
2781 res = ultoa_o(status, trash.area, trash.size);
2782 trash.data = res - trash.area;
2783
2784 /* Do we have a custom reason format string? */
Christopher Faulet96bff762019-12-17 13:46:18 +01002785 if (reason.ptr == NULL) {
2786 const char *str = http_get_reason(status);
2787 reason = ist2(str, strlen(str));
2788 }
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002789
Christopher Faulete00d06c2019-12-16 17:18:42 +01002790 if (!http_replace_res_status(htx, ist2(trash.area, trash.data)))
2791 return -1;
Christopher Faulet96bff762019-12-17 13:46:18 +01002792 if (!http_replace_res_reason(htx, reason))
Christopher Faulete00d06c2019-12-16 17:18:42 +01002793 return -1;
2794 return 0;
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002795}
2796
Christopher Faulet3e964192018-10-24 11:39:23 +02002797/* Executes the http-request rules <rules> for stream <s>, proxy <px> and
2798 * transaction <txn>. Returns the verdict of the first rule that prevents
2799 * further processing of the request (auth, deny, ...), and defaults to
2800 * HTTP_RULE_RES_STOP if it executed all rules or stopped on an allow, or
2801 * HTTP_RULE_RES_CONT if the last rule was reached. It may set the TX_CLTARPIT
2802 * on txn->flags if it encounters a tarpit rule. If <deny_status> is not NULL
2803 * and a deny/tarpit rule is matched, it will be filled with this rule's deny
2804 * status.
2805 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002806static enum rule_result http_req_get_intercept_rule(struct proxy *px, struct list *rules,
Christopher Fauletb58f62b2020-01-13 16:40:13 +01002807 struct stream *s)
Christopher Faulet3e964192018-10-24 11:39:23 +02002808{
2809 struct session *sess = strm_sess(s);
2810 struct http_txn *txn = s->txn;
2811 struct htx *htx;
Christopher Faulet3e964192018-10-24 11:39:23 +02002812 struct act_rule *rule;
2813 struct http_hdr_ctx ctx;
2814 const char *auth_realm;
Christopher Faulet3e964192018-10-24 11:39:23 +02002815 enum rule_result rule_ret = HTTP_RULE_RES_CONT;
Christopher Faulet105ba6c2019-12-18 14:41:51 +01002816 int act_opts = 0;
Christopher Faulet3e964192018-10-24 11:39:23 +02002817
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01002818 htx = htxbuf(&s->req.buf);
Christopher Faulet3e964192018-10-24 11:39:23 +02002819
2820 /* If "the current_rule_list" match the executed rule list, we are in
2821 * resume condition. If a resume is needed it is always in the action
2822 * and never in the ACL or converters. In this case, we initialise the
2823 * current rule, and go to the action execution point.
2824 */
2825 if (s->current_rule) {
2826 rule = s->current_rule;
2827 s->current_rule = NULL;
2828 if (s->current_rule_list == rules)
2829 goto resume_execution;
2830 }
2831 s->current_rule_list = rules;
2832
Christopher Faulet1aea50e2020-01-17 16:03:53 +01002833 /* start the ruleset evaluation in strict mode */
2834 txn->req.flags &= ~HTTP_MSGF_SOFT_RW;
Christopher Faulet46f95542019-12-20 10:07:22 +01002835
Christopher Faulet3e964192018-10-24 11:39:23 +02002836 list_for_each_entry(rule, rules, list) {
2837 /* check optional condition */
2838 if (rule->cond) {
2839 int ret;
2840
2841 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
2842 ret = acl_pass(ret);
2843
2844 if (rule->cond->pol == ACL_COND_UNLESS)
2845 ret = !ret;
2846
2847 if (!ret) /* condition not matched */
2848 continue;
2849 }
2850
Christopher Faulet105ba6c2019-12-18 14:41:51 +01002851 act_opts |= ACT_OPT_FIRST;
Christopher Faulet3e964192018-10-24 11:39:23 +02002852 resume_execution:
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002853 /* Always call the action function if defined */
2854 if (rule->action_ptr) {
2855 if ((s->req.flags & CF_READ_ERROR) ||
2856 ((s->req.flags & (CF_SHUTR|CF_READ_NULL)) &&
2857 (px->options & PR_O_ABRT_CLOSE)))
Christopher Faulet105ba6c2019-12-18 14:41:51 +01002858 act_opts |= ACT_OPT_FINAL;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002859
Christopher Faulet105ba6c2019-12-18 14:41:51 +01002860 switch (rule->action_ptr(rule, px, sess, s, act_opts)) {
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002861 case ACT_RET_CONT:
2862 break;
2863 case ACT_RET_STOP:
2864 rule_ret = HTTP_RULE_RES_STOP;
2865 goto end;
2866 case ACT_RET_YIELD:
2867 s->current_rule = rule;
2868 rule_ret = HTTP_RULE_RES_YIELD;
2869 goto end;
2870 case ACT_RET_ERR:
2871 rule_ret = HTTP_RULE_RES_ERROR;
2872 goto end;
2873 case ACT_RET_DONE:
2874 rule_ret = HTTP_RULE_RES_DONE;
2875 goto end;
2876 case ACT_RET_DENY:
Christopher Fauletb58f62b2020-01-13 16:40:13 +01002877 txn->flags |= TX_CLDENY;
2878 if (txn->status == -1)
2879 txn->status = 403;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002880 rule_ret = HTTP_RULE_RES_DENY;
2881 goto end;
2882 case ACT_RET_ABRT:
2883 rule_ret = HTTP_RULE_RES_ABRT;
2884 goto end;
2885 case ACT_RET_INV:
2886 rule_ret = HTTP_RULE_RES_BADREQ;
2887 goto end;
2888 }
2889 continue; /* eval the next rule */
2890 }
2891
2892 /* If not action function defined, check for known actions */
Christopher Faulet3e964192018-10-24 11:39:23 +02002893 switch (rule->action) {
2894 case ACT_ACTION_ALLOW:
2895 rule_ret = HTTP_RULE_RES_STOP;
2896 goto end;
2897
2898 case ACT_ACTION_DENY:
Christopher Fauletb58f62b2020-01-13 16:40:13 +01002899 txn->flags |= TX_CLDENY;
Christopher Faulet554c0eb2020-01-14 12:00:28 +01002900 txn->status = rule->arg.http_deny.status;
2901 if (rule->arg.http_deny.errmsg)
2902 txn->errmsg = rule->arg.http_deny.errmsg;
Christopher Faulet3e964192018-10-24 11:39:23 +02002903 rule_ret = HTTP_RULE_RES_DENY;
2904 goto end;
2905
2906 case ACT_HTTP_REQ_TARPIT:
2907 txn->flags |= TX_CLTARPIT;
Christopher Faulet554c0eb2020-01-14 12:00:28 +01002908 txn->status = rule->arg.http_deny.status;
2909 if (rule->arg.http_deny.errmsg)
2910 txn->errmsg = rule->arg.http_deny.errmsg;
Christopher Faulet3e964192018-10-24 11:39:23 +02002911 rule_ret = HTTP_RULE_RES_DENY;
2912 goto end;
2913
2914 case ACT_HTTP_REQ_AUTH:
Christopher Faulet3e964192018-10-24 11:39:23 +02002915 /* Auth might be performed on regular http-req rules as well as on stats */
Christopher Faulet96bff762019-12-17 13:46:18 +01002916 auth_realm = rule->arg.http.str.ptr;
Christopher Faulet3e964192018-10-24 11:39:23 +02002917 if (!auth_realm) {
2918 if (px->uri_auth && rules == &px->uri_auth->http_req_rules)
2919 auth_realm = STATS_DEFAULT_REALM;
2920 else
2921 auth_realm = px->id;
2922 }
2923 /* send 401/407 depending on whether we use a proxy or not. We still
2924 * count one error, because normal browsing won't significantly
2925 * increase the counter but brute force attempts will.
2926 */
Christopher Faulet3e964192018-10-24 11:39:23 +02002927 rule_ret = HTTP_RULE_RES_ABRT;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002928 if (http_reply_40x_unauthorized(s, auth_realm) == -1)
Christopher Faulet3a26bee2019-12-16 12:47:40 +01002929 rule_ret = HTTP_RULE_RES_ERROR;
Christopher Faulet12c51e22018-11-28 15:59:42 +01002930 stream_inc_http_err_ctr(s);
Christopher Faulet3e964192018-10-24 11:39:23 +02002931 goto end;
2932
2933 case ACT_HTTP_REDIR:
Christopher Faulet3e964192018-10-24 11:39:23 +02002934 rule_ret = HTTP_RULE_RES_DONE;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002935 if (!http_apply_redirect_rule(rule->arg.redir, s, txn))
Christopher Faulet3a26bee2019-12-16 12:47:40 +01002936 rule_ret = HTTP_RULE_RES_ERROR;
Christopher Faulet3e964192018-10-24 11:39:23 +02002937 goto end;
2938
2939 case ACT_HTTP_SET_NICE:
Christopher Faulet96bff762019-12-17 13:46:18 +01002940 s->task->nice = rule->arg.http.i;
Christopher Faulet3e964192018-10-24 11:39:23 +02002941 break;
2942
2943 case ACT_HTTP_SET_TOS:
Christopher Faulet96bff762019-12-17 13:46:18 +01002944 conn_set_tos(objt_conn(sess->origin), rule->arg.http.i);
Christopher Faulet3e964192018-10-24 11:39:23 +02002945 break;
2946
2947 case ACT_HTTP_SET_MARK:
Christopher Faulet96bff762019-12-17 13:46:18 +01002948 conn_set_mark(objt_conn(sess->origin), rule->arg.http.i);
Christopher Faulet3e964192018-10-24 11:39:23 +02002949 break;
2950
2951 case ACT_HTTP_SET_LOGL:
Christopher Faulet96bff762019-12-17 13:46:18 +01002952 s->logs.level = rule->arg.http.i;
Christopher Faulet3e964192018-10-24 11:39:23 +02002953 break;
2954
Christopher Faulet3e964192018-10-24 11:39:23 +02002955 case ACT_HTTP_DEL_HDR:
2956 /* remove all occurrences of the header */
2957 ctx.blk = NULL;
Christopher Faulet96bff762019-12-17 13:46:18 +01002958 while (http_find_header(htx, rule->arg.http.str, &ctx, 1))
Christopher Faulet3e964192018-10-24 11:39:23 +02002959 http_remove_header(htx, &ctx);
2960 break;
2961
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002962 /* other flags exists, but normally, they never be matched. */
Christopher Faulet3e964192018-10-24 11:39:23 +02002963 default:
2964 break;
2965 }
2966 }
2967
2968 end:
Christopher Faulet1aea50e2020-01-17 16:03:53 +01002969 /* if the ruleset evaluation is finished reset the strict mode */
Christopher Faulet46f95542019-12-20 10:07:22 +01002970 if (rule_ret != HTTP_RULE_RES_YIELD)
Christopher Faulet1aea50e2020-01-17 16:03:53 +01002971 txn->req.flags &= ~HTTP_MSGF_SOFT_RW;
Christopher Faulet46f95542019-12-20 10:07:22 +01002972
Christopher Faulet3e964192018-10-24 11:39:23 +02002973 /* we reached the end of the rules, nothing to report */
2974 return rule_ret;
2975}
2976
2977/* Executes the http-response rules <rules> for stream <s> and proxy <px>. It
2978 * returns one of 5 possible statuses: HTTP_RULE_RES_CONT, HTTP_RULE_RES_STOP,
2979 * HTTP_RULE_RES_DONE, HTTP_RULE_RES_YIELD, or HTTP_RULE_RES_BADREQ. If *CONT
2980 * is returned, the process can continue the evaluation of next rule list. If
2981 * *STOP or *DONE is returned, the process must stop the evaluation. If *BADREQ
2982 * is returned, it means the operation could not be processed and a server error
2983 * must be returned. It may set the TX_SVDENY on txn->flags if it encounters a
2984 * deny rule. If *YIELD is returned, the caller must call again the function
2985 * with the same context.
2986 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002987static enum rule_result http_res_get_intercept_rule(struct proxy *px, struct list *rules,
2988 struct stream *s)
Christopher Faulet3e964192018-10-24 11:39:23 +02002989{
2990 struct session *sess = strm_sess(s);
2991 struct http_txn *txn = s->txn;
2992 struct htx *htx;
Christopher Faulet3e964192018-10-24 11:39:23 +02002993 struct act_rule *rule;
2994 struct http_hdr_ctx ctx;
2995 enum rule_result rule_ret = HTTP_RULE_RES_CONT;
Christopher Faulet105ba6c2019-12-18 14:41:51 +01002996 int act_opts = 0;
Christopher Faulet3e964192018-10-24 11:39:23 +02002997
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01002998 htx = htxbuf(&s->res.buf);
Christopher Faulet3e964192018-10-24 11:39:23 +02002999
3000 /* If "the current_rule_list" match the executed rule list, we are in
3001 * resume condition. If a resume is needed it is always in the action
3002 * and never in the ACL or converters. In this case, we initialise the
3003 * current rule, and go to the action execution point.
3004 */
3005 if (s->current_rule) {
3006 rule = s->current_rule;
3007 s->current_rule = NULL;
3008 if (s->current_rule_list == rules)
3009 goto resume_execution;
3010 }
3011 s->current_rule_list = rules;
3012
Christopher Faulet1aea50e2020-01-17 16:03:53 +01003013 /* start the ruleset evaluation in strict mode */
3014 txn->rsp.flags &= ~HTTP_MSGF_SOFT_RW;
Christopher Faulet46f95542019-12-20 10:07:22 +01003015
Christopher Faulet3e964192018-10-24 11:39:23 +02003016 list_for_each_entry(rule, rules, list) {
3017 /* check optional condition */
3018 if (rule->cond) {
3019 int ret;
3020
3021 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
3022 ret = acl_pass(ret);
3023
3024 if (rule->cond->pol == ACL_COND_UNLESS)
3025 ret = !ret;
3026
3027 if (!ret) /* condition not matched */
3028 continue;
3029 }
3030
Christopher Faulet105ba6c2019-12-18 14:41:51 +01003031 act_opts |= ACT_OPT_FIRST;
Christopher Faulet3e964192018-10-24 11:39:23 +02003032resume_execution:
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01003033
3034 /* Always call the action function if defined */
3035 if (rule->action_ptr) {
3036 if ((s->req.flags & CF_READ_ERROR) ||
3037 ((s->req.flags & (CF_SHUTR|CF_READ_NULL)) &&
3038 (px->options & PR_O_ABRT_CLOSE)))
Christopher Faulet105ba6c2019-12-18 14:41:51 +01003039 act_opts |= ACT_OPT_FINAL;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01003040
Christopher Faulet105ba6c2019-12-18 14:41:51 +01003041 switch (rule->action_ptr(rule, px, sess, s, act_opts)) {
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01003042 case ACT_RET_CONT:
3043 break;
3044 case ACT_RET_STOP:
3045 rule_ret = HTTP_RULE_RES_STOP;
3046 goto end;
3047 case ACT_RET_YIELD:
3048 s->current_rule = rule;
3049 rule_ret = HTTP_RULE_RES_YIELD;
3050 goto end;
3051 case ACT_RET_ERR:
3052 rule_ret = HTTP_RULE_RES_ERROR;
3053 goto end;
3054 case ACT_RET_DONE:
3055 rule_ret = HTTP_RULE_RES_DONE;
3056 goto end;
3057 case ACT_RET_DENY:
Christopher Fauletb58f62b2020-01-13 16:40:13 +01003058 txn->flags |= TX_CLDENY;
3059 if (txn->status == -1)
3060 txn->status = 502;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01003061 rule_ret = HTTP_RULE_RES_DENY;
3062 goto end;
3063 case ACT_RET_ABRT:
3064 rule_ret = HTTP_RULE_RES_ABRT;
3065 goto end;
3066 case ACT_RET_INV:
3067 rule_ret = HTTP_RULE_RES_BADREQ;
3068 goto end;
3069 }
3070 continue; /* eval the next rule */
3071 }
3072
3073 /* If not action function defined, check for known actions */
Christopher Faulet3e964192018-10-24 11:39:23 +02003074 switch (rule->action) {
3075 case ACT_ACTION_ALLOW:
3076 rule_ret = HTTP_RULE_RES_STOP; /* "allow" rules are OK */
3077 goto end;
3078
3079 case ACT_ACTION_DENY:
Christopher Fauletb58f62b2020-01-13 16:40:13 +01003080 txn->flags |= TX_CLDENY;
Christopher Faulet554c0eb2020-01-14 12:00:28 +01003081 txn->status = rule->arg.http_deny.status;
3082 if (rule->arg.http_deny.errmsg)
3083 txn->errmsg = rule->arg.http_deny.errmsg;
Christopher Faulet3a26bee2019-12-16 12:47:40 +01003084 rule_ret = HTTP_RULE_RES_DENY;
Christopher Faulet3e964192018-10-24 11:39:23 +02003085 goto end;
3086
3087 case ACT_HTTP_SET_NICE:
Christopher Faulet96bff762019-12-17 13:46:18 +01003088 s->task->nice = rule->arg.http.i;
Christopher Faulet3e964192018-10-24 11:39:23 +02003089 break;
3090
3091 case ACT_HTTP_SET_TOS:
Christopher Faulet96bff762019-12-17 13:46:18 +01003092 conn_set_tos(objt_conn(sess->origin), rule->arg.http.i);
Christopher Faulet3e964192018-10-24 11:39:23 +02003093 break;
3094
3095 case ACT_HTTP_SET_MARK:
Christopher Faulet96bff762019-12-17 13:46:18 +01003096 conn_set_mark(objt_conn(sess->origin), rule->arg.http.i);
Christopher Faulet3e964192018-10-24 11:39:23 +02003097 break;
3098
3099 case ACT_HTTP_SET_LOGL:
Christopher Faulet96bff762019-12-17 13:46:18 +01003100 s->logs.level = rule->arg.http.i;
Christopher Faulet3e964192018-10-24 11:39:23 +02003101 break;
3102
Christopher Faulet3e964192018-10-24 11:39:23 +02003103 case ACT_HTTP_DEL_HDR:
3104 /* remove all occurrences of the header */
3105 ctx.blk = NULL;
Christopher Faulet96bff762019-12-17 13:46:18 +01003106 while (http_find_header(htx, rule->arg.http.str, &ctx, 1))
Christopher Faulet3e964192018-10-24 11:39:23 +02003107 http_remove_header(htx, &ctx);
3108 break;
3109
Christopher Faulet3e964192018-10-24 11:39:23 +02003110 case ACT_HTTP_REDIR:
3111 rule_ret = HTTP_RULE_RES_DONE;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003112 if (!http_apply_redirect_rule(rule->arg.redir, s, txn))
Christopher Faulet3a26bee2019-12-16 12:47:40 +01003113 rule_ret = HTTP_RULE_RES_ERROR;
Christopher Faulet3e964192018-10-24 11:39:23 +02003114 goto end;
3115
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01003116 /* other flags exists, but normally, they never be matched. */
Christopher Faulet3e964192018-10-24 11:39:23 +02003117 default:
3118 break;
3119 }
3120 }
3121
3122 end:
Christopher Faulet1aea50e2020-01-17 16:03:53 +01003123 /* if the ruleset evaluation is finished reset the strict mode */
Christopher Faulet46f95542019-12-20 10:07:22 +01003124 if (rule_ret != HTTP_RULE_RES_YIELD)
Christopher Faulet1aea50e2020-01-17 16:03:53 +01003125 txn->rsp.flags &= ~HTTP_MSGF_SOFT_RW;
Christopher Faulet46f95542019-12-20 10:07:22 +01003126
Christopher Faulet3e964192018-10-24 11:39:23 +02003127 /* we reached the end of the rules, nothing to report */
3128 return rule_ret;
3129}
3130
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01003131/* Executes backend and frontend http-after-response rules for the stream <s>,
3132 * in that order. it return 1 on success and 0 on error. It is the caller
3133 * responsibility to catch error or ignore it. If it catches it, this function
3134 * may be called a second time, for the internal error.
3135 */
3136int http_eval_after_res_rules(struct stream *s)
3137{
3138 struct session *sess = s->sess;
3139 enum rule_result ret = HTTP_RULE_RES_CONT;
3140
3141 /* prune the request variables if not already done and swap to the response variables. */
3142 if (s->vars_reqres.scope != SCOPE_RES) {
3143 if (!LIST_ISEMPTY(&s->vars_reqres.head))
3144 vars_prune(&s->vars_reqres, s->sess, s);
3145 vars_init(&s->vars_reqres, SCOPE_RES);
3146 }
3147
3148 ret = http_res_get_intercept_rule(s->be, &s->be->http_after_res_rules, s);
3149 if ((ret == HTTP_RULE_RES_CONT || ret == HTTP_RULE_RES_STOP) && sess->fe != s->be)
3150 ret = http_res_get_intercept_rule(sess->fe, &sess->fe->http_after_res_rules, s);
3151
3152 /* All other codes than CONTINUE, STOP or DONE are forbidden */
3153 return (ret == HTTP_RULE_RES_CONT || ret == HTTP_RULE_RES_STOP || ret == HTTP_RULE_RES_DONE);
3154}
3155
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003156/*
3157 * Manage client-side cookie. It can impact performance by about 2% so it is
3158 * desirable to call it only when needed. This code is quite complex because
3159 * of the multiple very crappy and ambiguous syntaxes we have to support. it
3160 * highly recommended not to touch this part without a good reason !
3161 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003162static void http_manage_client_side_cookies(struct stream *s, struct channel *req)
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003163{
3164 struct session *sess = s->sess;
3165 struct http_txn *txn = s->txn;
3166 struct htx *htx;
3167 struct http_hdr_ctx ctx;
3168 char *hdr_beg, *hdr_end, *del_from;
3169 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
3170 int preserve_hdr;
3171
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003172 htx = htxbuf(&req->buf);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003173 ctx.blk = NULL;
3174 while (http_find_header(htx, ist("Cookie"), &ctx, 1)) {
Olivier Houchardf0f42382019-07-22 17:43:46 +02003175 int is_first = 1;
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003176 del_from = NULL; /* nothing to be deleted */
3177 preserve_hdr = 0; /* assume we may kill the whole header */
3178
3179 /* Now look for cookies. Conforming to RFC2109, we have to support
3180 * attributes whose name begin with a '$', and associate them with
3181 * the right cookie, if we want to delete this cookie.
3182 * So there are 3 cases for each cookie read :
3183 * 1) it's a special attribute, beginning with a '$' : ignore it.
3184 * 2) it's a server id cookie that we *MAY* want to delete : save
3185 * some pointers on it (last semi-colon, beginning of cookie...)
3186 * 3) it's an application cookie : we *MAY* have to delete a previous
3187 * "special" cookie.
3188 * At the end of loop, if a "special" cookie remains, we may have to
3189 * remove it. If no application cookie persists in the header, we
3190 * *MUST* delete it.
3191 *
3192 * Note: RFC2965 is unclear about the processing of spaces around
3193 * the equal sign in the ATTR=VALUE form. A careful inspection of
3194 * the RFC explicitly allows spaces before it, and not within the
3195 * tokens (attrs or values). An inspection of RFC2109 allows that
3196 * too but section 10.1.3 lets one think that spaces may be allowed
3197 * after the equal sign too, resulting in some (rare) buggy
3198 * implementations trying to do that. So let's do what servers do.
3199 * Latest ietf draft forbids spaces all around. Also, earlier RFCs
3200 * allowed quoted strings in values, with any possible character
3201 * after a backslash, including control chars and delimitors, which
3202 * causes parsing to become ambiguous. Browsers also allow spaces
3203 * within values even without quotes.
3204 *
3205 * We have to keep multiple pointers in order to support cookie
3206 * removal at the beginning, middle or end of header without
3207 * corrupting the header. All of these headers are valid :
3208 *
3209 * hdr_beg hdr_end
3210 * | |
3211 * v |
3212 * NAME1=VALUE1;NAME2=VALUE2;NAME3=VALUE3 |
3213 * NAME1=VALUE1;NAME2_ONLY ;NAME3=VALUE3 v
3214 * NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3
3215 * | | | | | | |
3216 * | | | | | | |
3217 * | | | | | | +--> next
3218 * | | | | | +----> val_end
3219 * | | | | +-----------> val_beg
3220 * | | | +--------------> equal
3221 * | | +----------------> att_end
3222 * | +---------------------> att_beg
3223 * +--------------------------> prev
3224 *
3225 */
3226 hdr_beg = ctx.value.ptr;
3227 hdr_end = hdr_beg + ctx.value.len;
3228 for (prev = hdr_beg; prev < hdr_end; prev = next) {
3229 /* Iterate through all cookies on this line */
3230
3231 /* find att_beg */
3232 att_beg = prev;
Olivier Houchardf0f42382019-07-22 17:43:46 +02003233 if (!is_first)
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003234 att_beg++;
Olivier Houchardf0f42382019-07-22 17:43:46 +02003235 is_first = 0;
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003236
3237 while (att_beg < hdr_end && HTTP_IS_SPHT(*att_beg))
3238 att_beg++;
3239
3240 /* find att_end : this is the first character after the last non
3241 * space before the equal. It may be equal to hdr_end.
3242 */
3243 equal = att_end = att_beg;
3244 while (equal < hdr_end) {
3245 if (*equal == '=' || *equal == ',' || *equal == ';')
3246 break;
3247 if (HTTP_IS_SPHT(*equal++))
3248 continue;
3249 att_end = equal;
3250 }
3251
3252 /* here, <equal> points to '=', a delimitor or the end. <att_end>
3253 * is between <att_beg> and <equal>, both may be identical.
3254 */
3255 /* look for end of cookie if there is an equal sign */
3256 if (equal < hdr_end && *equal == '=') {
3257 /* look for the beginning of the value */
3258 val_beg = equal + 1;
3259 while (val_beg < hdr_end && HTTP_IS_SPHT(*val_beg))
3260 val_beg++;
3261
3262 /* find the end of the value, respecting quotes */
3263 next = http_find_cookie_value_end(val_beg, hdr_end);
3264
3265 /* make val_end point to the first white space or delimitor after the value */
3266 val_end = next;
3267 while (val_end > val_beg && HTTP_IS_SPHT(*(val_end - 1)))
3268 val_end--;
3269 }
3270 else
3271 val_beg = val_end = next = equal;
3272
3273 /* We have nothing to do with attributes beginning with
3274 * '$'. However, they will automatically be removed if a
3275 * header before them is removed, since they're supposed
3276 * to be linked together.
3277 */
3278 if (*att_beg == '$')
3279 continue;
3280
3281 /* Ignore cookies with no equal sign */
3282 if (equal == next) {
3283 /* This is not our cookie, so we must preserve it. But if we already
3284 * scheduled another cookie for removal, we cannot remove the
3285 * complete header, but we can remove the previous block itself.
3286 */
3287 preserve_hdr = 1;
3288 if (del_from != NULL) {
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003289 int delta = http_del_hdr_value(hdr_beg, hdr_end, &del_from, prev);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003290 val_end += delta;
3291 next += delta;
3292 hdr_end += delta;
3293 prev = del_from;
3294 del_from = NULL;
3295 }
3296 continue;
3297 }
3298
3299 /* if there are spaces around the equal sign, we need to
3300 * strip them otherwise we'll get trouble for cookie captures,
3301 * or even for rewrites. Since this happens extremely rarely,
3302 * it does not hurt performance.
3303 */
3304 if (unlikely(att_end != equal || val_beg > equal + 1)) {
3305 int stripped_before = 0;
3306 int stripped_after = 0;
3307
3308 if (att_end != equal) {
3309 memmove(att_end, equal, hdr_end - equal);
3310 stripped_before = (att_end - equal);
3311 equal += stripped_before;
3312 val_beg += stripped_before;
3313 }
3314
3315 if (val_beg > equal + 1) {
3316 memmove(equal + 1, val_beg, hdr_end + stripped_before - val_beg);
3317 stripped_after = (equal + 1) - val_beg;
3318 val_beg += stripped_after;
3319 stripped_before += stripped_after;
3320 }
3321
3322 val_end += stripped_before;
3323 next += stripped_before;
3324 hdr_end += stripped_before;
3325 }
3326 /* now everything is as on the diagram above */
3327
3328 /* First, let's see if we want to capture this cookie. We check
3329 * that we don't already have a client side cookie, because we
3330 * can only capture one. Also as an optimisation, we ignore
3331 * cookies shorter than the declared name.
3332 */
3333 if (sess->fe->capture_name != NULL && txn->cli_cookie == NULL &&
3334 (val_end - att_beg >= sess->fe->capture_namelen) &&
3335 memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) {
3336 int log_len = val_end - att_beg;
3337
3338 if ((txn->cli_cookie = pool_alloc(pool_head_capture)) == NULL) {
3339 ha_alert("HTTP logging : out of memory.\n");
3340 } else {
3341 if (log_len > sess->fe->capture_len)
3342 log_len = sess->fe->capture_len;
3343 memcpy(txn->cli_cookie, att_beg, log_len);
3344 txn->cli_cookie[log_len] = 0;
3345 }
3346 }
3347
3348 /* Persistence cookies in passive, rewrite or insert mode have the
3349 * following form :
3350 *
3351 * Cookie: NAME=SRV[|<lastseen>[|<firstseen>]]
3352 *
3353 * For cookies in prefix mode, the form is :
3354 *
3355 * Cookie: NAME=SRV~VALUE
3356 */
3357 if ((att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) &&
3358 (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) {
3359 struct server *srv = s->be->srv;
3360 char *delim;
3361
3362 /* if we're in cookie prefix mode, we'll search the delimitor so that we
3363 * have the server ID between val_beg and delim, and the original cookie between
3364 * delim+1 and val_end. Otherwise, delim==val_end :
3365 *
3366 * hdr_beg
3367 * |
3368 * v
3369 * NAME=SRV; # in all but prefix modes
3370 * NAME=SRV~OPAQUE ; # in prefix mode
3371 * || || | |+-> next
3372 * || || | +--> val_end
3373 * || || +---------> delim
3374 * || |+------------> val_beg
3375 * || +-------------> att_end = equal
3376 * |+-----------------> att_beg
3377 * +------------------> prev
3378 *
3379 */
3380 if (s->be->ck_opts & PR_CK_PFX) {
3381 for (delim = val_beg; delim < val_end; delim++)
3382 if (*delim == COOKIE_DELIM)
3383 break;
3384 }
3385 else {
3386 char *vbar1;
3387 delim = val_end;
3388 /* Now check if the cookie contains a date field, which would
3389 * appear after a vertical bar ('|') just after the server name
3390 * and before the delimiter.
3391 */
3392 vbar1 = memchr(val_beg, COOKIE_DELIM_DATE, val_end - val_beg);
3393 if (vbar1) {
3394 /* OK, so left of the bar is the server's cookie and
3395 * right is the last seen date. It is a base64 encoded
3396 * 30-bit value representing the UNIX date since the
3397 * epoch in 4-second quantities.
3398 */
3399 int val;
3400 delim = vbar1++;
3401 if (val_end - vbar1 >= 5) {
3402 val = b64tos30(vbar1);
3403 if (val > 0)
3404 txn->cookie_last_date = val << 2;
3405 }
3406 /* look for a second vertical bar */
3407 vbar1 = memchr(vbar1, COOKIE_DELIM_DATE, val_end - vbar1);
3408 if (vbar1 && (val_end - vbar1 > 5)) {
3409 val = b64tos30(vbar1 + 1);
3410 if (val > 0)
3411 txn->cookie_first_date = val << 2;
3412 }
3413 }
3414 }
3415
3416 /* if the cookie has an expiration date and the proxy wants to check
3417 * it, then we do that now. We first check if the cookie is too old,
3418 * then only if it has expired. We detect strict overflow because the
3419 * time resolution here is not great (4 seconds). Cookies with dates
3420 * in the future are ignored if their offset is beyond one day. This
3421 * allows an admin to fix timezone issues without expiring everyone
3422 * and at the same time avoids keeping unwanted side effects for too
3423 * long.
3424 */
3425 if (txn->cookie_first_date && s->be->cookie_maxlife &&
3426 (((signed)(date.tv_sec - txn->cookie_first_date) > (signed)s->be->cookie_maxlife) ||
3427 ((signed)(txn->cookie_first_date - date.tv_sec) > 86400))) {
3428 txn->flags &= ~TX_CK_MASK;
3429 txn->flags |= TX_CK_OLD;
3430 delim = val_beg; // let's pretend we have not found the cookie
3431 txn->cookie_first_date = 0;
3432 txn->cookie_last_date = 0;
3433 }
3434 else if (txn->cookie_last_date && s->be->cookie_maxidle &&
3435 (((signed)(date.tv_sec - txn->cookie_last_date) > (signed)s->be->cookie_maxidle) ||
3436 ((signed)(txn->cookie_last_date - date.tv_sec) > 86400))) {
3437 txn->flags &= ~TX_CK_MASK;
3438 txn->flags |= TX_CK_EXPIRED;
3439 delim = val_beg; // let's pretend we have not found the cookie
3440 txn->cookie_first_date = 0;
3441 txn->cookie_last_date = 0;
3442 }
3443
3444 /* Here, we'll look for the first running server which supports the cookie.
3445 * This allows to share a same cookie between several servers, for example
3446 * to dedicate backup servers to specific servers only.
3447 * However, to prevent clients from sticking to cookie-less backup server
3448 * when they have incidentely learned an empty cookie, we simply ignore
3449 * empty cookies and mark them as invalid.
3450 * The same behaviour is applied when persistence must be ignored.
3451 */
3452 if ((delim == val_beg) || (s->flags & (SF_IGNORE_PRST | SF_ASSIGNED)))
3453 srv = NULL;
3454
3455 while (srv) {
3456 if (srv->cookie && (srv->cklen == delim - val_beg) &&
3457 !memcmp(val_beg, srv->cookie, delim - val_beg)) {
3458 if ((srv->cur_state != SRV_ST_STOPPED) ||
3459 (s->be->options & PR_O_PERSIST) ||
3460 (s->flags & SF_FORCE_PRST)) {
3461 /* we found the server and we can use it */
3462 txn->flags &= ~TX_CK_MASK;
3463 txn->flags |= (srv->cur_state != SRV_ST_STOPPED) ? TX_CK_VALID : TX_CK_DOWN;
3464 s->flags |= SF_DIRECT | SF_ASSIGNED;
3465 s->target = &srv->obj_type;
3466 break;
3467 } else {
3468 /* we found a server, but it's down,
3469 * mark it as such and go on in case
3470 * another one is available.
3471 */
3472 txn->flags &= ~TX_CK_MASK;
3473 txn->flags |= TX_CK_DOWN;
3474 }
3475 }
3476 srv = srv->next;
3477 }
3478
3479 if (!srv && !(txn->flags & (TX_CK_DOWN|TX_CK_EXPIRED|TX_CK_OLD))) {
3480 /* no server matched this cookie or we deliberately skipped it */
3481 txn->flags &= ~TX_CK_MASK;
3482 if ((s->flags & (SF_IGNORE_PRST | SF_ASSIGNED)))
3483 txn->flags |= TX_CK_UNUSED;
3484 else
3485 txn->flags |= TX_CK_INVALID;
3486 }
3487
3488 /* depending on the cookie mode, we may have to either :
3489 * - delete the complete cookie if we're in insert+indirect mode, so that
3490 * the server never sees it ;
3491 * - remove the server id from the cookie value, and tag the cookie as an
Joseph Herlante9d5c722018-11-25 11:00:25 -08003492 * application cookie so that it does not get accidentally removed later,
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003493 * if we're in cookie prefix mode
3494 */
3495 if ((s->be->ck_opts & PR_CK_PFX) && (delim != val_end)) {
3496 int delta; /* negative */
3497
3498 memmove(val_beg, delim + 1, hdr_end - (delim + 1));
3499 delta = val_beg - (delim + 1);
3500 val_end += delta;
3501 next += delta;
3502 hdr_end += delta;
3503 del_from = NULL;
3504 preserve_hdr = 1; /* we want to keep this cookie */
3505 }
3506 else if (del_from == NULL &&
3507 (s->be->ck_opts & (PR_CK_INS | PR_CK_IND)) == (PR_CK_INS | PR_CK_IND)) {
3508 del_from = prev;
3509 }
3510 }
3511 else {
3512 /* This is not our cookie, so we must preserve it. But if we already
3513 * scheduled another cookie for removal, we cannot remove the
3514 * complete header, but we can remove the previous block itself.
3515 */
3516 preserve_hdr = 1;
3517
3518 if (del_from != NULL) {
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003519 int delta = http_del_hdr_value(hdr_beg, hdr_end, &del_from, prev);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003520 if (att_beg >= del_from)
3521 att_beg += delta;
3522 if (att_end >= del_from)
3523 att_end += delta;
3524 val_beg += delta;
3525 val_end += delta;
3526 next += delta;
3527 hdr_end += delta;
3528 prev = del_from;
3529 del_from = NULL;
3530 }
3531 }
3532
3533 /* continue with next cookie on this header line */
3534 att_beg = next;
3535 } /* for each cookie */
3536
3537
3538 /* There are no more cookies on this line.
3539 * We may still have one (or several) marked for deletion at the
3540 * end of the line. We must do this now in two ways :
3541 * - if some cookies must be preserved, we only delete from the
3542 * mark to the end of line ;
3543 * - if nothing needs to be preserved, simply delete the whole header
3544 */
3545 if (del_from) {
3546 hdr_end = (preserve_hdr ? del_from : hdr_beg);
3547 }
3548 if ((hdr_end - hdr_beg) != ctx.value.len) {
Christopher Faulet3e2638e2019-06-18 09:49:16 +02003549 if (hdr_beg != hdr_end)
3550 htx_change_blk_value_len(htx, ctx.blk, hdr_end - hdr_beg);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003551 else
3552 http_remove_header(htx, &ctx);
3553 }
3554 } /* for each "Cookie header */
3555}
3556
3557/*
3558 * Manage server-side cookies. It can impact performance by about 2% so it is
3559 * desirable to call it only when needed. This function is also used when we
3560 * just need to know if there is a cookie (eg: for check-cache).
3561 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003562static void http_manage_server_side_cookies(struct stream *s, struct channel *res)
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003563{
3564 struct session *sess = s->sess;
3565 struct http_txn *txn = s->txn;
3566 struct htx *htx;
3567 struct http_hdr_ctx ctx;
3568 struct server *srv;
3569 char *hdr_beg, *hdr_end;
3570 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreau6f7a02a2019-04-15 21:49:49 +02003571 int is_cookie2 = 0;
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003572
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003573 htx = htxbuf(&res->buf);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003574
3575 ctx.blk = NULL;
3576 while (1) {
Olivier Houchardf0f42382019-07-22 17:43:46 +02003577 int is_first = 1;
3578
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003579 if (!http_find_header(htx, ist("Set-Cookie"), &ctx, 1)) {
3580 if (!http_find_header(htx, ist("Set-Cookie2"), &ctx, 1))
3581 break;
3582 is_cookie2 = 1;
3583 }
3584
3585 /* OK, right now we know we have a Set-Cookie* at hdr_beg, and
3586 * <prev> points to the colon.
3587 */
3588 txn->flags |= TX_SCK_PRESENT;
3589
3590 /* Maybe we only wanted to see if there was a Set-Cookie (eg:
3591 * check-cache is enabled) and we are not interested in checking
3592 * them. Warning, the cookie capture is declared in the frontend.
3593 */
3594 if (s->be->cookie_name == NULL && sess->fe->capture_name == NULL)
3595 break;
3596
3597 /* OK so now we know we have to process this response cookie.
3598 * The format of the Set-Cookie header is slightly different
3599 * from the format of the Cookie header in that it does not
3600 * support the comma as a cookie delimiter (thus the header
3601 * cannot be folded) because the Expires attribute described in
3602 * the original Netscape's spec may contain an unquoted date
3603 * with a comma inside. We have to live with this because
3604 * many browsers don't support Max-Age and some browsers don't
3605 * support quoted strings. However the Set-Cookie2 header is
3606 * clean.
3607 *
3608 * We have to keep multiple pointers in order to support cookie
3609 * removal at the beginning, middle or end of header without
3610 * corrupting the header (in case of set-cookie2). A special
3611 * pointer, <scav> points to the beginning of the set-cookie-av
3612 * fields after the first semi-colon. The <next> pointer points
3613 * either to the end of line (set-cookie) or next unquoted comma
3614 * (set-cookie2). All of these headers are valid :
3615 *
3616 * hdr_beg hdr_end
3617 * | |
3618 * v |
3619 * NAME1 = VALUE 1 ; Secure; Path="/" |
3620 * NAME=VALUE; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT v
3621 * NAME = VALUE ; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT
3622 * NAME1 = VALUE 1 ; Max-Age=0, NAME2=VALUE2; Discard
3623 * | | | | | | | |
3624 * | | | | | | | +-> next
3625 * | | | | | | +------------> scav
3626 * | | | | | +--------------> val_end
3627 * | | | | +--------------------> val_beg
3628 * | | | +----------------------> equal
3629 * | | +------------------------> att_end
3630 * | +----------------------------> att_beg
3631 * +------------------------------> prev
3632 * -------------------------------> hdr_beg
3633 */
3634 hdr_beg = ctx.value.ptr;
3635 hdr_end = hdr_beg + ctx.value.len;
3636 for (prev = hdr_beg; prev < hdr_end; prev = next) {
3637
3638 /* Iterate through all cookies on this line */
3639
3640 /* find att_beg */
3641 att_beg = prev;
Olivier Houchardf0f42382019-07-22 17:43:46 +02003642 if (!is_first)
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003643 att_beg++;
Olivier Houchardf0f42382019-07-22 17:43:46 +02003644 is_first = 0;
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003645
3646 while (att_beg < hdr_end && HTTP_IS_SPHT(*att_beg))
3647 att_beg++;
3648
3649 /* find att_end : this is the first character after the last non
3650 * space before the equal. It may be equal to hdr_end.
3651 */
3652 equal = att_end = att_beg;
3653
3654 while (equal < hdr_end) {
3655 if (*equal == '=' || *equal == ';' || (is_cookie2 && *equal == ','))
3656 break;
3657 if (HTTP_IS_SPHT(*equal++))
3658 continue;
3659 att_end = equal;
3660 }
3661
3662 /* here, <equal> points to '=', a delimitor or the end. <att_end>
3663 * is between <att_beg> and <equal>, both may be identical.
3664 */
3665
3666 /* look for end of cookie if there is an equal sign */
3667 if (equal < hdr_end && *equal == '=') {
3668 /* look for the beginning of the value */
3669 val_beg = equal + 1;
3670 while (val_beg < hdr_end && HTTP_IS_SPHT(*val_beg))
3671 val_beg++;
3672
3673 /* find the end of the value, respecting quotes */
3674 next = http_find_cookie_value_end(val_beg, hdr_end);
3675
3676 /* make val_end point to the first white space or delimitor after the value */
3677 val_end = next;
3678 while (val_end > val_beg && HTTP_IS_SPHT(*(val_end - 1)))
3679 val_end--;
3680 }
3681 else {
3682 /* <equal> points to next comma, semi-colon or EOL */
3683 val_beg = val_end = next = equal;
3684 }
3685
3686 if (next < hdr_end) {
3687 /* Set-Cookie2 supports multiple cookies, and <next> points to
3688 * a colon or semi-colon before the end. So skip all attr-value
3689 * pairs and look for the next comma. For Set-Cookie, since
3690 * commas are permitted in values, skip to the end.
3691 */
3692 if (is_cookie2)
3693 next = http_find_hdr_value_end(next, hdr_end);
3694 else
3695 next = hdr_end;
3696 }
3697
3698 /* Now everything is as on the diagram above */
3699
3700 /* Ignore cookies with no equal sign */
3701 if (equal == val_end)
3702 continue;
3703
3704 /* If there are spaces around the equal sign, we need to
3705 * strip them otherwise we'll get trouble for cookie captures,
3706 * or even for rewrites. Since this happens extremely rarely,
3707 * it does not hurt performance.
3708 */
3709 if (unlikely(att_end != equal || val_beg > equal + 1)) {
3710 int stripped_before = 0;
3711 int stripped_after = 0;
3712
3713 if (att_end != equal) {
3714 memmove(att_end, equal, hdr_end - equal);
3715 stripped_before = (att_end - equal);
3716 equal += stripped_before;
3717 val_beg += stripped_before;
3718 }
3719
3720 if (val_beg > equal + 1) {
3721 memmove(equal + 1, val_beg, hdr_end + stripped_before - val_beg);
3722 stripped_after = (equal + 1) - val_beg;
3723 val_beg += stripped_after;
3724 stripped_before += stripped_after;
3725 }
3726
3727 val_end += stripped_before;
3728 next += stripped_before;
3729 hdr_end += stripped_before;
3730
Christopher Faulet3e2638e2019-06-18 09:49:16 +02003731 htx_change_blk_value_len(htx, ctx.blk, hdr_end - hdr_beg);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003732 ctx.value.len = hdr_end - hdr_beg;
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003733 }
3734
3735 /* First, let's see if we want to capture this cookie. We check
3736 * that we don't already have a server side cookie, because we
3737 * can only capture one. Also as an optimisation, we ignore
3738 * cookies shorter than the declared name.
3739 */
3740 if (sess->fe->capture_name != NULL &&
3741 txn->srv_cookie == NULL &&
3742 (val_end - att_beg >= sess->fe->capture_namelen) &&
3743 memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) {
3744 int log_len = val_end - att_beg;
3745 if ((txn->srv_cookie = pool_alloc(pool_head_capture)) == NULL) {
3746 ha_alert("HTTP logging : out of memory.\n");
3747 }
3748 else {
3749 if (log_len > sess->fe->capture_len)
3750 log_len = sess->fe->capture_len;
3751 memcpy(txn->srv_cookie, att_beg, log_len);
3752 txn->srv_cookie[log_len] = 0;
3753 }
3754 }
3755
3756 srv = objt_server(s->target);
3757 /* now check if we need to process it for persistence */
3758 if (!(s->flags & SF_IGNORE_PRST) &&
3759 (att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) &&
3760 (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) {
3761 /* assume passive cookie by default */
3762 txn->flags &= ~TX_SCK_MASK;
3763 txn->flags |= TX_SCK_FOUND;
3764
3765 /* If the cookie is in insert mode on a known server, we'll delete
3766 * this occurrence because we'll insert another one later.
3767 * We'll delete it too if the "indirect" option is set and we're in
3768 * a direct access.
3769 */
3770 if (s->be->ck_opts & PR_CK_PSV) {
3771 /* The "preserve" flag was set, we don't want to touch the
3772 * server's cookie.
3773 */
3774 }
3775 else if ((srv && (s->be->ck_opts & PR_CK_INS)) ||
3776 ((s->flags & SF_DIRECT) && (s->be->ck_opts & PR_CK_IND))) {
3777 /* this cookie must be deleted */
3778 if (prev == hdr_beg && next == hdr_end) {
3779 /* whole header */
3780 http_remove_header(htx, &ctx);
3781 /* note: while both invalid now, <next> and <hdr_end>
3782 * are still equal, so the for() will stop as expected.
3783 */
3784 } else {
3785 /* just remove the value */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003786 int delta = http_del_hdr_value(hdr_beg, hdr_end, &prev, next);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003787 next = prev;
3788 hdr_end += delta;
3789 }
3790 txn->flags &= ~TX_SCK_MASK;
3791 txn->flags |= TX_SCK_DELETED;
3792 /* and go on with next cookie */
3793 }
3794 else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_RW)) {
3795 /* replace bytes val_beg->val_end with the cookie name associated
3796 * with this server since we know it.
3797 */
3798 int sliding, delta;
3799
3800 ctx.value = ist2(val_beg, val_end - val_beg);
3801 ctx.lws_before = ctx.lws_after = 0;
3802 http_replace_header_value(htx, &ctx, ist2(srv->cookie, srv->cklen));
3803 delta = srv->cklen - (val_end - val_beg);
3804 sliding = (ctx.value.ptr - val_beg);
3805 hdr_beg += sliding;
3806 val_beg += sliding;
3807 next += sliding + delta;
3808 hdr_end += sliding + delta;
3809
3810 txn->flags &= ~TX_SCK_MASK;
3811 txn->flags |= TX_SCK_REPLACED;
3812 }
3813 else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_PFX)) {
3814 /* insert the cookie name associated with this server
3815 * before existing cookie, and insert a delimiter between them..
3816 */
3817 int sliding, delta;
3818 ctx.value = ist2(val_beg, 0);
3819 ctx.lws_before = ctx.lws_after = 0;
3820 http_replace_header_value(htx, &ctx, ist2(srv->cookie, srv->cklen + 1));
3821 delta = srv->cklen + 1;
3822 sliding = (ctx.value.ptr - val_beg);
3823 hdr_beg += sliding;
3824 val_beg += sliding;
3825 next += sliding + delta;
3826 hdr_end += sliding + delta;
3827
3828 val_beg[srv->cklen] = COOKIE_DELIM;
3829 txn->flags &= ~TX_SCK_MASK;
3830 txn->flags |= TX_SCK_REPLACED;
3831 }
3832 }
3833 /* that's done for this cookie, check the next one on the same
3834 * line when next != hdr_end (only if is_cookie2).
3835 */
3836 }
3837 }
3838}
3839
Christopher Faulet25a02f62018-10-24 12:00:25 +02003840/*
3841 * Parses the Cache-Control and Pragma request header fields to determine if
3842 * the request may be served from the cache and/or if it is cacheable. Updates
3843 * s->txn->flags.
3844 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003845void http_check_request_for_cacheability(struct stream *s, struct channel *req)
Christopher Faulet25a02f62018-10-24 12:00:25 +02003846{
3847 struct http_txn *txn = s->txn;
3848 struct htx *htx;
3849 int32_t pos;
3850 int pragma_found, cc_found, i;
3851
3852 if ((txn->flags & (TX_CACHEABLE|TX_CACHE_IGNORE)) == TX_CACHE_IGNORE)
3853 return; /* nothing more to do here */
3854
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003855 htx = htxbuf(&req->buf);
Christopher Faulet25a02f62018-10-24 12:00:25 +02003856 pragma_found = cc_found = 0;
Christopher Fauleta3f15502019-05-13 15:27:23 +02003857 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
Christopher Faulet25a02f62018-10-24 12:00:25 +02003858 struct htx_blk *blk = htx_get_blk(htx, pos);
3859 enum htx_blk_type type = htx_get_blk_type(blk);
3860 struct ist n, v;
3861
3862 if (type == HTX_BLK_EOH)
3863 break;
3864 if (type != HTX_BLK_HDR)
3865 continue;
3866
3867 n = htx_get_blk_name(htx, blk);
3868 v = htx_get_blk_value(htx, blk);
3869
Willy Tarreau2e754bf2018-12-07 11:38:03 +01003870 if (isteq(n, ist("pragma"))) {
Christopher Faulet25a02f62018-10-24 12:00:25 +02003871 if (v.len >= 8 && strncasecmp(v.ptr, "no-cache", 8) == 0) {
3872 pragma_found = 1;
3873 continue;
3874 }
3875 }
3876
3877 /* Don't use the cache and don't try to store if we found the
3878 * Authorization header */
Willy Tarreau2e754bf2018-12-07 11:38:03 +01003879 if (isteq(n, ist("authorization"))) {
Christopher Faulet25a02f62018-10-24 12:00:25 +02003880 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
3881 txn->flags |= TX_CACHE_IGNORE;
3882 continue;
3883 }
3884
Willy Tarreau2e754bf2018-12-07 11:38:03 +01003885 if (!isteq(n, ist("cache-control")))
Christopher Faulet25a02f62018-10-24 12:00:25 +02003886 continue;
3887
3888 /* OK, right now we know we have a cache-control header */
3889 cc_found = 1;
3890 if (!v.len) /* no info */
3891 continue;
3892
3893 i = 0;
3894 while (i < v.len && *(v.ptr+i) != '=' && *(v.ptr+i) != ',' &&
3895 !isspace((unsigned char)*(v.ptr+i)))
3896 i++;
3897
3898 /* we have a complete value between v.ptr and (v.ptr+i). We don't check the
3899 * values after max-age, max-stale nor min-fresh, we simply don't
3900 * use the cache when they're specified.
3901 */
3902 if (((i == 7) && strncasecmp(v.ptr, "max-age", 7) == 0) ||
3903 ((i == 8) && strncasecmp(v.ptr, "no-cache", 8) == 0) ||
3904 ((i == 9) && strncasecmp(v.ptr, "max-stale", 9) == 0) ||
3905 ((i == 9) && strncasecmp(v.ptr, "min-fresh", 9) == 0)) {
3906 txn->flags |= TX_CACHE_IGNORE;
3907 continue;
3908 }
3909
3910 if ((i == 8) && strncasecmp(v.ptr, "no-store", 8) == 0) {
3911 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
3912 continue;
3913 }
3914 }
3915
3916 /* RFC7234#5.4:
3917 * When the Cache-Control header field is also present and
3918 * understood in a request, Pragma is ignored.
3919 * When the Cache-Control header field is not present in a
3920 * request, caches MUST consider the no-cache request
3921 * pragma-directive as having the same effect as if
3922 * "Cache-Control: no-cache" were present.
3923 */
3924 if (!cc_found && pragma_found)
3925 txn->flags |= TX_CACHE_IGNORE;
3926}
3927
3928/*
3929 * Check if response is cacheable or not. Updates s->txn->flags.
3930 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003931void http_check_response_for_cacheability(struct stream *s, struct channel *res)
Christopher Faulet25a02f62018-10-24 12:00:25 +02003932{
3933 struct http_txn *txn = s->txn;
3934 struct htx *htx;
3935 int32_t pos;
3936 int i;
3937
3938 if (txn->status < 200) {
3939 /* do not try to cache interim responses! */
3940 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
3941 return;
3942 }
3943
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003944 htx = htxbuf(&res->buf);
Christopher Fauleta3f15502019-05-13 15:27:23 +02003945 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
Christopher Faulet25a02f62018-10-24 12:00:25 +02003946 struct htx_blk *blk = htx_get_blk(htx, pos);
3947 enum htx_blk_type type = htx_get_blk_type(blk);
3948 struct ist n, v;
3949
3950 if (type == HTX_BLK_EOH)
3951 break;
3952 if (type != HTX_BLK_HDR)
3953 continue;
3954
3955 n = htx_get_blk_name(htx, blk);
3956 v = htx_get_blk_value(htx, blk);
3957
Willy Tarreau2e754bf2018-12-07 11:38:03 +01003958 if (isteq(n, ist("pragma"))) {
Christopher Faulet25a02f62018-10-24 12:00:25 +02003959 if ((v.len >= 8) && strncasecmp(v.ptr, "no-cache", 8) == 0) {
3960 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
3961 return;
3962 }
3963 }
3964
Willy Tarreau2e754bf2018-12-07 11:38:03 +01003965 if (!isteq(n, ist("cache-control")))
Christopher Faulet25a02f62018-10-24 12:00:25 +02003966 continue;
3967
3968 /* OK, right now we know we have a cache-control header */
3969 if (!v.len) /* no info */
3970 continue;
3971
3972 i = 0;
3973 while (i < v.len && *(v.ptr+i) != '=' && *(v.ptr+i) != ',' &&
3974 !isspace((unsigned char)*(v.ptr+i)))
3975 i++;
3976
3977 /* we have a complete value between v.ptr and (v.ptr+i) */
3978 if (i < v.len && *(v.ptr + i) == '=') {
3979 if (((v.len - i) > 1 && (i == 7) && strncasecmp(v.ptr, "max-age=0", 9) == 0) ||
3980 ((v.len - i) > 1 && (i == 8) && strncasecmp(v.ptr, "s-maxage=0", 10) == 0)) {
3981 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
3982 continue;
3983 }
3984
3985 /* we have something of the form no-cache="set-cookie" */
3986 if ((v.len >= 21) &&
3987 strncasecmp(v.ptr, "no-cache=\"set-cookie", 20) == 0
3988 && (*(v.ptr + 20) == '"' || *(v.ptr + 20 ) == ','))
3989 txn->flags &= ~TX_CACHE_COOK;
3990 continue;
3991 }
3992
3993 /* OK, so we know that either p2 points to the end of string or to a comma */
3994 if (((i == 7) && strncasecmp(v.ptr, "private", 7) == 0) ||
3995 ((i == 8) && strncasecmp(v.ptr, "no-cache", 8) == 0) ||
3996 ((i == 8) && strncasecmp(v.ptr, "no-store", 8) == 0)) {
3997 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
3998 return;
3999 }
4000
4001 if ((i == 6) && strncasecmp(v.ptr, "public", 6) == 0) {
4002 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
4003 continue;
4004 }
4005 }
4006}
4007
Christopher Faulet377c5a52018-10-24 21:21:30 +02004008/*
4009 * In a GET, HEAD or POST request, check if the requested URI matches the stats uri
4010 * for the current backend.
4011 *
4012 * It is assumed that the request is either a HEAD, GET, or POST and that the
4013 * uri_auth field is valid.
4014 *
4015 * Returns 1 if stats should be provided, otherwise 0.
4016 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004017static int http_stats_check_uri(struct stream *s, struct http_txn *txn, struct proxy *backend)
Christopher Faulet377c5a52018-10-24 21:21:30 +02004018{
4019 struct uri_auth *uri_auth = backend->uri_auth;
4020 struct htx *htx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004021 struct htx_sl *sl;
Christopher Faulet377c5a52018-10-24 21:21:30 +02004022 struct ist uri;
Christopher Faulet377c5a52018-10-24 21:21:30 +02004023
4024 if (!uri_auth)
4025 return 0;
4026
4027 if (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD && txn->meth != HTTP_METH_POST)
4028 return 0;
4029
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004030 htx = htxbuf(&s->req.buf);
Christopher Faulet297fbb42019-05-13 14:41:27 +02004031 sl = http_get_stline(htx);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004032 uri = htx_sl_req_uri(sl);
Willy Tarreau1eb3b482019-10-31 15:50:28 +01004033 if (*uri_auth->uri_prefix == '/')
4034 uri = http_get_path(uri);
Christopher Faulet377c5a52018-10-24 21:21:30 +02004035
4036 /* check URI size */
4037 if (uri_auth->uri_len > uri.len)
4038 return 0;
4039
4040 if (memcmp(uri.ptr, uri_auth->uri_prefix, uri_auth->uri_len) != 0)
4041 return 0;
4042
4043 return 1;
4044}
4045
4046/* This function prepares an applet to handle the stats. It can deal with the
4047 * "100-continue" expectation, check that admin rules are met for POST requests,
4048 * and program a response message if something was unexpected. It cannot fail
4049 * and always relies on the stats applet to complete the job. It does not touch
4050 * analysers nor counters, which are left to the caller. It does not touch
4051 * s->target which is supposed to already point to the stats applet. The caller
4052 * is expected to have already assigned an appctx to the stream.
4053 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004054static int http_handle_stats(struct stream *s, struct channel *req)
Christopher Faulet377c5a52018-10-24 21:21:30 +02004055{
4056 struct stats_admin_rule *stats_admin_rule;
4057 struct stream_interface *si = &s->si[1];
4058 struct session *sess = s->sess;
4059 struct http_txn *txn = s->txn;
4060 struct http_msg *msg = &txn->req;
4061 struct uri_auth *uri_auth = s->be->uri_auth;
4062 const char *h, *lookup, *end;
4063 struct appctx *appctx;
4064 struct htx *htx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004065 struct htx_sl *sl;
Christopher Faulet377c5a52018-10-24 21:21:30 +02004066
4067 appctx = si_appctx(si);
4068 memset(&appctx->ctx.stats, 0, sizeof(appctx->ctx.stats));
4069 appctx->st1 = appctx->st2 = 0;
4070 appctx->ctx.stats.st_code = STAT_STATUS_INIT;
Willy Tarreau676c29e2019-10-09 10:50:01 +02004071 appctx->ctx.stats.flags |= uri_auth->flags;
Christopher Faulet377c5a52018-10-24 21:21:30 +02004072 appctx->ctx.stats.flags |= STAT_FMT_HTML; /* assume HTML mode by default */
4073 if ((msg->flags & HTTP_MSGF_VER_11) && (txn->meth != HTTP_METH_HEAD))
4074 appctx->ctx.stats.flags |= STAT_CHUNKED;
4075
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004076 htx = htxbuf(&req->buf);
Christopher Faulet297fbb42019-05-13 14:41:27 +02004077 sl = http_get_stline(htx);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004078 lookup = HTX_SL_REQ_UPTR(sl) + uri_auth->uri_len;
4079 end = HTX_SL_REQ_UPTR(sl) + HTX_SL_REQ_ULEN(sl);
Christopher Faulet377c5a52018-10-24 21:21:30 +02004080
4081 for (h = lookup; h <= end - 3; h++) {
4082 if (memcmp(h, ";up", 3) == 0) {
4083 appctx->ctx.stats.flags |= STAT_HIDE_DOWN;
4084 break;
4085 }
4086 }
4087
4088 if (uri_auth->refresh) {
4089 for (h = lookup; h <= end - 10; h++) {
4090 if (memcmp(h, ";norefresh", 10) == 0) {
4091 appctx->ctx.stats.flags |= STAT_NO_REFRESH;
4092 break;
4093 }
4094 }
4095 }
4096
4097 for (h = lookup; h <= end - 4; h++) {
4098 if (memcmp(h, ";csv", 4) == 0) {
Christopher Faulet6338a082019-09-09 15:50:54 +02004099 appctx->ctx.stats.flags &= ~(STAT_FMT_MASK|STAT_JSON_SCHM);
Christopher Faulet377c5a52018-10-24 21:21:30 +02004100 break;
4101 }
4102 }
4103
4104 for (h = lookup; h <= end - 6; h++) {
4105 if (memcmp(h, ";typed", 6) == 0) {
Christopher Faulet6338a082019-09-09 15:50:54 +02004106 appctx->ctx.stats.flags &= ~(STAT_FMT_MASK|STAT_JSON_SCHM);
Christopher Faulet377c5a52018-10-24 21:21:30 +02004107 appctx->ctx.stats.flags |= STAT_FMT_TYPED;
4108 break;
4109 }
4110 }
4111
Christopher Faulet6338a082019-09-09 15:50:54 +02004112 for (h = lookup; h <= end - 5; h++) {
4113 if (memcmp(h, ";json", 5) == 0) {
4114 appctx->ctx.stats.flags &= ~(STAT_FMT_MASK|STAT_JSON_SCHM);
4115 appctx->ctx.stats.flags |= STAT_FMT_JSON;
4116 break;
4117 }
4118 }
4119
4120 for (h = lookup; h <= end - 12; h++) {
4121 if (memcmp(h, ";json-schema", 12) == 0) {
4122 appctx->ctx.stats.flags &= ~STAT_FMT_MASK;
4123 appctx->ctx.stats.flags |= STAT_JSON_SCHM;
4124 break;
4125 }
4126 }
4127
Christopher Faulet377c5a52018-10-24 21:21:30 +02004128 for (h = lookup; h <= end - 8; h++) {
4129 if (memcmp(h, ";st=", 4) == 0) {
4130 int i;
4131 h += 4;
4132 appctx->ctx.stats.st_code = STAT_STATUS_UNKN;
4133 for (i = STAT_STATUS_INIT + 1; i < STAT_STATUS_SIZE; i++) {
4134 if (strncmp(stat_status_codes[i], h, 4) == 0) {
4135 appctx->ctx.stats.st_code = i;
4136 break;
4137 }
4138 }
4139 break;
4140 }
4141 }
4142
4143 appctx->ctx.stats.scope_str = 0;
4144 appctx->ctx.stats.scope_len = 0;
4145 for (h = lookup; h <= end - 8; h++) {
4146 if (memcmp(h, STAT_SCOPE_INPUT_NAME "=", strlen(STAT_SCOPE_INPUT_NAME) + 1) == 0) {
4147 int itx = 0;
4148 const char *h2;
4149 char scope_txt[STAT_SCOPE_TXT_MAXLEN + 1];
4150 const char *err;
4151
4152 h += strlen(STAT_SCOPE_INPUT_NAME) + 1;
4153 h2 = h;
Christopher Fauleted7a0662019-01-14 11:07:34 +01004154 appctx->ctx.stats.scope_str = h2 - HTX_SL_REQ_UPTR(sl);
4155 while (h < end) {
Christopher Faulet377c5a52018-10-24 21:21:30 +02004156 if (*h == ';' || *h == '&' || *h == ' ')
4157 break;
4158 itx++;
4159 h++;
4160 }
4161
4162 if (itx > STAT_SCOPE_TXT_MAXLEN)
4163 itx = STAT_SCOPE_TXT_MAXLEN;
4164 appctx->ctx.stats.scope_len = itx;
4165
4166 /* scope_txt = search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
4167 memcpy(scope_txt, h2, itx);
4168 scope_txt[itx] = '\0';
4169 err = invalid_char(scope_txt);
4170 if (err) {
4171 /* bad char in search text => clear scope */
4172 appctx->ctx.stats.scope_str = 0;
4173 appctx->ctx.stats.scope_len = 0;
4174 }
4175 break;
4176 }
4177 }
4178
4179 /* now check whether we have some admin rules for this request */
4180 list_for_each_entry(stats_admin_rule, &uri_auth->admin_rules, list) {
4181 int ret = 1;
4182
4183 if (stats_admin_rule->cond) {
4184 ret = acl_exec_cond(stats_admin_rule->cond, s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
4185 ret = acl_pass(ret);
4186 if (stats_admin_rule->cond->pol == ACL_COND_UNLESS)
4187 ret = !ret;
4188 }
4189
4190 if (ret) {
4191 /* no rule, or the rule matches */
4192 appctx->ctx.stats.flags |= STAT_ADMIN;
4193 break;
4194 }
4195 }
4196
Christopher Faulet5d45e382019-02-27 15:15:23 +01004197 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
4198 appctx->st0 = STAT_HTTP_HEAD;
4199 else if (txn->meth == HTTP_METH_POST) {
Christopher Fauletbd9e8422019-08-15 22:26:48 +02004200 if (appctx->ctx.stats.flags & STAT_ADMIN) {
Christopher Faulet377c5a52018-10-24 21:21:30 +02004201 appctx->st0 = STAT_HTTP_POST;
Christopher Fauletbd9e8422019-08-15 22:26:48 +02004202 if (msg->msg_state < HTTP_MSG_DATA)
4203 req->analysers |= AN_REQ_HTTP_BODY;
4204 }
Christopher Faulet377c5a52018-10-24 21:21:30 +02004205 else {
Christopher Faulet5d45e382019-02-27 15:15:23 +01004206 /* POST without admin level */
Christopher Faulet377c5a52018-10-24 21:21:30 +02004207 appctx->ctx.stats.flags &= ~STAT_CHUNKED;
4208 appctx->ctx.stats.st_code = STAT_STATUS_DENY;
4209 appctx->st0 = STAT_HTTP_LAST;
4210 }
4211 }
4212 else {
Christopher Faulet5d45e382019-02-27 15:15:23 +01004213 /* Unsupported method */
4214 appctx->ctx.stats.flags &= ~STAT_CHUNKED;
4215 appctx->ctx.stats.st_code = STAT_STATUS_IVAL;
4216 appctx->st0 = STAT_HTTP_LAST;
Christopher Faulet377c5a52018-10-24 21:21:30 +02004217 }
4218
4219 s->task->nice = -32; /* small boost for HTTP statistics */
4220 return 1;
4221}
4222
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004223void http_perform_server_redirect(struct stream *s, struct stream_interface *si)
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004224{
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004225 struct channel *req = &s->req;
4226 struct channel *res = &s->res;
4227 struct server *srv;
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004228 struct htx *htx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004229 struct htx_sl *sl;
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004230 struct ist path, location;
4231 unsigned int flags;
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004232
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004233 /*
4234 * Create the location
4235 */
4236 chunk_reset(&trash);
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004237
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004238 /* 1: add the server's prefix */
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004239 /* special prefix "/" means don't change URL */
4240 srv = __objt_server(s->target);
4241 if (srv->rdr_len != 1 || *srv->rdr_pfx != '/') {
4242 if (!chunk_memcat(&trash, srv->rdr_pfx, srv->rdr_len))
4243 return;
4244 }
4245
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004246 /* 2: add the request Path */
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004247 htx = htxbuf(&req->buf);
Christopher Faulet297fbb42019-05-13 14:41:27 +02004248 sl = http_get_stline(htx);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004249 path = http_get_path(htx_sl_req_uri(sl));
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004250 if (!path.ptr)
4251 return;
4252
4253 if (!chunk_memcat(&trash, path.ptr, path.len))
4254 return;
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004255 location = ist2(trash.area, trash.data);
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004256
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004257 /*
4258 * Create the 302 respone
4259 */
4260 htx = htx_from_buf(&res->buf);
4261 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN|HTX_SL_F_BODYLESS);
4262 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags,
4263 ist("HTTP/1.1"), ist("302"), ist("Found"));
4264 if (!sl)
4265 goto fail;
4266 sl->info.res.status = 302;
4267 s->txn->status = 302;
4268
4269 if (!htx_add_header(htx, ist("Cache-Control"), ist("no-cache")) ||
4270 !htx_add_header(htx, ist("Connection"), ist("close")) ||
4271 !htx_add_header(htx, ist("Content-length"), ist("0")) ||
4272 !htx_add_header(htx, ist("Location"), location))
4273 goto fail;
4274
4275 if (!htx_add_endof(htx, HTX_BLK_EOH) || !htx_add_endof(htx, HTX_BLK_EOM))
4276 goto fail;
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004277
Christopher Fauletc20afb82020-01-24 19:16:26 +01004278 htx_to_buf(htx, &res->buf);
Christopher Fauleta72a7e42020-01-28 09:28:11 +01004279 if (!http_forward_proxy_resp(s, 1))
4280 goto fail;
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004281
4282 /* return without error. */
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004283 si_shutr(si);
4284 si_shutw(si);
4285 si->err_type = SI_ET_NONE;
4286 si->state = SI_ST_CLO;
4287
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004288 if (!(s->flags & SF_ERR_MASK))
4289 s->flags |= SF_ERR_LOCAL;
4290 if (!(s->flags & SF_FINST_MASK))
4291 s->flags |= SF_FINST_C;
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004292
4293 /* FIXME: we should increase a counter of redirects per server and per backend. */
4294 srv_inc_sess_ctr(srv);
4295 srv_set_sess_last(srv);
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004296 return;
4297
4298 fail:
4299 /* If an error occurred, remove the incomplete HTTP response from the
4300 * buffer */
Christopher Faulet202c6ce2019-01-07 14:57:35 +01004301 channel_htx_truncate(res, htx);
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004302}
4303
Christopher Fauletf2824e62018-10-01 12:12:37 +02004304/* This function terminates the request because it was completly analyzed or
4305 * because an error was triggered during the body forwarding.
4306 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004307static void http_end_request(struct stream *s)
Christopher Fauletf2824e62018-10-01 12:12:37 +02004308{
4309 struct channel *chn = &s->req;
4310 struct http_txn *txn = s->txn;
4311
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004312 DBG_TRACE_ENTER(STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004313
Christopher Fauletb42a8b62018-11-19 21:59:00 +01004314 if (unlikely(txn->req.msg_state == HTTP_MSG_ERROR ||
4315 txn->rsp.msg_state == HTTP_MSG_ERROR)) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02004316 channel_abort(chn);
Christopher Faulet202c6ce2019-01-07 14:57:35 +01004317 channel_htx_truncate(chn, htxbuf(&chn->buf));
Christopher Fauletf2824e62018-10-01 12:12:37 +02004318 goto end;
4319 }
4320
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004321 if (unlikely(txn->req.msg_state < HTTP_MSG_DONE)) {
4322 DBG_TRACE_DEVEL("waiting end of the request", STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004323 return;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004324 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02004325
4326 if (txn->req.msg_state == HTTP_MSG_DONE) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02004327 /* No need to read anymore, the request was completely parsed.
4328 * We can shut the read side unless we want to abort_on_close,
4329 * or we have a POST request. The issue with POST requests is
4330 * that some browsers still send a CRLF after the request, and
4331 * this CRLF must be read so that it does not remain in the kernel
4332 * buffers, otherwise a close could cause an RST on some systems
4333 * (eg: Linux).
4334 */
Christopher Faulet769d0e92019-03-22 14:23:18 +01004335 if (!(s->be->options & PR_O_ABRT_CLOSE) && txn->meth != HTTP_METH_POST)
Christopher Fauletf2824e62018-10-01 12:12:37 +02004336 channel_dont_read(chn);
4337
4338 /* if the server closes the connection, we want to immediately react
4339 * and close the socket to save packets and syscalls.
4340 */
4341 s->si[1].flags |= SI_FL_NOHALF;
4342
4343 /* In any case we've finished parsing the request so we must
4344 * disable Nagle when sending data because 1) we're not going
4345 * to shut this side, and 2) the server is waiting for us to
4346 * send pending data.
4347 */
4348 chn->flags |= CF_NEVER_WAIT;
4349
Christopher Fauletd01ce402019-01-02 17:44:13 +01004350 if (txn->rsp.msg_state < HTTP_MSG_DONE) {
4351 /* The server has not finished to respond, so we
4352 * don't want to move in order not to upset it.
4353 */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004354 DBG_TRACE_DEVEL("waiting end of the response", STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletd01ce402019-01-02 17:44:13 +01004355 return;
4356 }
4357
Christopher Fauletf2824e62018-10-01 12:12:37 +02004358 /* When we get here, it means that both the request and the
4359 * response have finished receiving. Depending on the connection
4360 * mode, we'll have to wait for the last bytes to leave in either
4361 * direction, and sometimes for a close to be effective.
4362 */
Christopher Fauletc41547b2019-07-16 14:32:23 +02004363 if (txn->flags & TX_CON_WANT_TUN) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02004364 /* Tunnel mode will not have any analyser so it needs to
4365 * poll for reads.
4366 */
4367 channel_auto_read(chn);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004368 if (b_data(&chn->buf)) {
4369 DBG_TRACE_DEVEL("waiting to flush the request", STRM_EV_HTTP_ANA, s, txn);
Christopher Faulet9768c262018-10-22 09:34:31 +02004370 return;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004371 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02004372 txn->req.msg_state = HTTP_MSG_TUNNEL;
4373 }
4374 else {
4375 /* we're not expecting any new data to come for this
4376 * transaction, so we can close it.
Christopher Faulet9768c262018-10-22 09:34:31 +02004377 *
4378 * However, there is an exception if the response
4379 * length is undefined. In this case, we need to wait
4380 * the close from the server. The response will be
4381 * switched in TUNNEL mode until the end.
Christopher Fauletf2824e62018-10-01 12:12:37 +02004382 */
4383 if (!(txn->rsp.flags & HTTP_MSGF_XFER_LEN) &&
4384 txn->rsp.msg_state != HTTP_MSG_CLOSED)
Christopher Faulet9768c262018-10-22 09:34:31 +02004385 goto check_channel_flags;
Christopher Fauletf2824e62018-10-01 12:12:37 +02004386
4387 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
4388 channel_shutr_now(chn);
4389 channel_shutw_now(chn);
4390 }
4391 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02004392 goto check_channel_flags;
4393 }
4394
4395 if (txn->req.msg_state == HTTP_MSG_CLOSING) {
4396 http_msg_closing:
4397 /* nothing else to forward, just waiting for the output buffer
4398 * to be empty and for the shutw_now to take effect.
4399 */
4400 if (channel_is_empty(chn)) {
4401 txn->req.msg_state = HTTP_MSG_CLOSED;
4402 goto http_msg_closed;
4403 }
4404 else if (chn->flags & CF_SHUTW) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02004405 txn->req.msg_state = HTTP_MSG_ERROR;
4406 goto end;
4407 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004408 DBG_TRACE_LEAVE(STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004409 return;
4410 }
4411
4412 if (txn->req.msg_state == HTTP_MSG_CLOSED) {
4413 http_msg_closed:
Christopher Fauletf2824e62018-10-01 12:12:37 +02004414 /* if we don't know whether the server will close, we need to hard close */
4415 if (txn->rsp.flags & HTTP_MSGF_XFER_LEN)
4416 s->si[1].flags |= SI_FL_NOLINGER; /* we want to close ASAP */
Christopher Fauletf2824e62018-10-01 12:12:37 +02004417 /* see above in MSG_DONE why we only do this in these states */
Christopher Faulet769d0e92019-03-22 14:23:18 +01004418 if (!(s->be->options & PR_O_ABRT_CLOSE))
Christopher Fauletf2824e62018-10-01 12:12:37 +02004419 channel_dont_read(chn);
4420 goto end;
4421 }
4422
4423 check_channel_flags:
4424 /* Here, we are in HTTP_MSG_DONE or HTTP_MSG_TUNNEL */
4425 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
4426 /* if we've just closed an output, let's switch */
4427 txn->req.msg_state = HTTP_MSG_CLOSING;
4428 goto http_msg_closing;
4429 }
4430
4431 end:
4432 chn->analysers &= AN_REQ_FLT_END;
4433 if (txn->req.msg_state == HTTP_MSG_TUNNEL && HAS_REQ_DATA_FILTERS(s))
4434 chn->analysers |= AN_REQ_FLT_XFER_DATA;
4435 channel_auto_close(chn);
4436 channel_auto_read(chn);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004437 DBG_TRACE_LEAVE(STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004438}
4439
4440
4441/* This function terminates the response because it was completly analyzed or
4442 * because an error was triggered during the body forwarding.
4443 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004444static void http_end_response(struct stream *s)
Christopher Fauletf2824e62018-10-01 12:12:37 +02004445{
4446 struct channel *chn = &s->res;
4447 struct http_txn *txn = s->txn;
4448
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004449 DBG_TRACE_ENTER(STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004450
Christopher Fauletb42a8b62018-11-19 21:59:00 +01004451 if (unlikely(txn->req.msg_state == HTTP_MSG_ERROR ||
4452 txn->rsp.msg_state == HTTP_MSG_ERROR)) {
Christopher Faulet202c6ce2019-01-07 14:57:35 +01004453 channel_htx_truncate(&s->req, htxbuf(&s->req.buf));
Christopher Faulet9768c262018-10-22 09:34:31 +02004454 channel_abort(&s->req);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004455 goto end;
4456 }
4457
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004458 if (unlikely(txn->rsp.msg_state < HTTP_MSG_DONE)) {
4459 DBG_TRACE_DEVEL("waiting end of the response", STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004460 return;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004461 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02004462
4463 if (txn->rsp.msg_state == HTTP_MSG_DONE) {
4464 /* In theory, we don't need to read anymore, but we must
4465 * still monitor the server connection for a possible close
4466 * while the request is being uploaded, so we don't disable
4467 * reading.
4468 */
4469 /* channel_dont_read(chn); */
4470
4471 if (txn->req.msg_state < HTTP_MSG_DONE) {
4472 /* The client seems to still be sending data, probably
4473 * because we got an error response during an upload.
4474 * We have the choice of either breaking the connection
4475 * or letting it pass through. Let's do the later.
4476 */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004477 DBG_TRACE_DEVEL("waiting end of the request", STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004478 return;
4479 }
4480
4481 /* When we get here, it means that both the request and the
4482 * response have finished receiving. Depending on the connection
4483 * mode, we'll have to wait for the last bytes to leave in either
4484 * direction, and sometimes for a close to be effective.
4485 */
Christopher Fauletc41547b2019-07-16 14:32:23 +02004486 if (txn->flags & TX_CON_WANT_TUN) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02004487 channel_auto_read(chn);
4488 chn->flags |= CF_NEVER_WAIT;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004489 if (b_data(&chn->buf)) {
4490 DBG_TRACE_DEVEL("waiting to flush the respone", STRM_EV_HTTP_ANA, s, txn);
Christopher Faulet9768c262018-10-22 09:34:31 +02004491 return;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004492 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02004493 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
4494 }
4495 else {
4496 /* we're not expecting any new data to come for this
4497 * transaction, so we can close it.
4498 */
4499 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
4500 channel_shutr_now(chn);
4501 channel_shutw_now(chn);
4502 }
4503 }
4504 goto check_channel_flags;
4505 }
4506
4507 if (txn->rsp.msg_state == HTTP_MSG_CLOSING) {
4508 http_msg_closing:
4509 /* nothing else to forward, just waiting for the output buffer
4510 * to be empty and for the shutw_now to take effect.
4511 */
4512 if (channel_is_empty(chn)) {
4513 txn->rsp.msg_state = HTTP_MSG_CLOSED;
4514 goto http_msg_closed;
4515 }
4516 else if (chn->flags & CF_SHUTW) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02004517 txn->rsp.msg_state = HTTP_MSG_ERROR;
Christopher Fauletcff0f732019-12-16 16:13:44 +01004518 _HA_ATOMIC_ADD(&strm_sess(s)->fe->fe_counters.cli_aborts, 1);
Olivier Houcharda798bf52019-03-08 18:52:00 +01004519 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01004520 if (strm_sess(s)->listener->counters)
4521 _HA_ATOMIC_ADD(&strm_sess(s)->listener->counters->cli_aborts, 1);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004522 if (objt_server(s->target))
Christopher Fauletcff0f732019-12-16 16:13:44 +01004523 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.cli_aborts, 1);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004524 goto end;
4525 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004526 DBG_TRACE_LEAVE(STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004527 return;
4528 }
4529
4530 if (txn->rsp.msg_state == HTTP_MSG_CLOSED) {
4531 http_msg_closed:
4532 /* drop any pending data */
Christopher Faulet202c6ce2019-01-07 14:57:35 +01004533 channel_htx_truncate(&s->req, htxbuf(&s->req.buf));
Christopher Faulet9768c262018-10-22 09:34:31 +02004534 channel_abort(&s->req);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004535 goto end;
4536 }
4537
4538 check_channel_flags:
4539 /* Here, we are in HTTP_MSG_DONE or HTTP_MSG_TUNNEL */
4540 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
4541 /* if we've just closed an output, let's switch */
4542 txn->rsp.msg_state = HTTP_MSG_CLOSING;
4543 goto http_msg_closing;
4544 }
4545
4546 end:
4547 chn->analysers &= AN_RES_FLT_END;
4548 if (txn->rsp.msg_state == HTTP_MSG_TUNNEL && HAS_RSP_DATA_FILTERS(s))
4549 chn->analysers |= AN_RES_FLT_XFER_DATA;
4550 channel_auto_close(chn);
4551 channel_auto_read(chn);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004552 DBG_TRACE_LEAVE(STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004553}
4554
Christopher Fauletef70e252020-01-28 09:26:19 +01004555/* Forward a response generated by HAProxy (error/redirect/return). This
4556 * function forwards all pending incoming data. If <final> is set to 0, nothing
4557 * more is performed. It is used for 1xx informational messages. Otherwise, the
4558 * transaction is terminated and the request is emptied. On success 1 is
4559 * returned. If an error occurred, 0 is returned.
4560 */
4561int http_forward_proxy_resp(struct stream *s, int final)
4562{
4563 struct channel *req = &s->req;
4564 struct channel *res = &s->res;
4565 struct htx *htx = htxbuf(&res->buf);
4566 size_t data;
4567
4568 if (final) {
4569 htx->flags |= HTX_FL_PROXY_RESP;
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01004570 if (!http_eval_after_res_rules(s))
4571 return 0;
Christopher Fauletef70e252020-01-28 09:26:19 +01004572
4573 channel_auto_read(req);
4574 channel_abort(req);
4575 channel_auto_close(req);
4576 channel_htx_erase(req, htxbuf(&req->buf));
4577
4578 res->wex = tick_add_ifset(now_ms, res->wto);
4579 channel_auto_read(res);
4580 channel_auto_close(res);
4581 channel_shutr_now(res);
4582 }
4583
4584 data = htx->data - co_data(res);
4585 c_adv(res, data);
4586 htx->first = -1;
4587 res->total += data;
4588 return 1;
4589}
4590
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004591void http_server_error(struct stream *s, struct stream_interface *si, int err,
4592 int finst, const struct buffer *msg)
Christopher Faulet0f226952018-10-22 09:29:56 +02004593{
Christopher Faulet72c7d8d2020-01-27 15:32:25 +01004594 http_reply_and_close(s, s->txn->status, msg);
Christopher Faulet0f226952018-10-22 09:29:56 +02004595 if (!(s->flags & SF_ERR_MASK))
4596 s->flags |= err;
4597 if (!(s->flags & SF_FINST_MASK))
4598 s->flags |= finst;
4599}
4600
Christopher Faulet72c7d8d2020-01-27 15:32:25 +01004601void http_reply_and_close(struct stream *s, short status, const struct buffer *msg)
Christopher Faulet0f226952018-10-22 09:29:56 +02004602{
4603 channel_auto_read(&s->req);
4604 channel_abort(&s->req);
4605 channel_auto_close(&s->req);
Christopher Faulet202c6ce2019-01-07 14:57:35 +01004606 channel_htx_erase(&s->req, htxbuf(&s->req.buf));
4607 channel_htx_truncate(&s->res, htxbuf(&s->res.buf));
Christopher Faulet72c7d8d2020-01-27 15:32:25 +01004608 channel_auto_read(&s->res);
4609 channel_auto_close(&s->res);
4610 channel_shutr_now(&s->res);
Christopher Faulet0f226952018-10-22 09:29:56 +02004611
Christopher Faulet72c7d8d2020-01-27 15:32:25 +01004612 s->res.wex = tick_add_ifset(now_ms, s->res.wto);
Christopher Faulet0f226952018-10-22 09:29:56 +02004613 s->txn->flags &= ~TX_WAIT_NEXT_RQ;
Christopher Fauleta7b677c2018-11-29 16:48:49 +01004614
4615 /* <msg> is an HTX structure. So we copy it in the response's
4616 * channel */
Christopher Faulet9f5839c2019-07-22 16:41:43 +02004617 if (msg && !b_is_null(msg)) {
Christopher Faulet0f226952018-10-22 09:29:56 +02004618 struct channel *chn = &s->res;
4619 struct htx *htx;
4620
Christopher Fauletaed82cf2018-11-30 22:22:32 +01004621 FLT_STRM_CB(s, flt_http_reply(s, s->txn->status, msg));
Christopher Fauleta7b677c2018-11-29 16:48:49 +01004622 htx = htx_from_buf(&chn->buf);
Christopher Faulet637259e2020-01-23 11:57:31 +01004623 if (channel_htx_copy_msg(chn, htx, msg)) {
Christopher Fauleta72a7e42020-01-28 09:28:11 +01004624 if (!http_forward_proxy_resp(s, 1) && s->txn->status != 500) {
4625 s->txn->status = 500;
4626 http_reply_and_close(s, s->txn->status, http_error_message(s));
4627 }
Christopher Faulet637259e2020-01-23 11:57:31 +01004628 }
Christopher Faulet0f226952018-10-22 09:29:56 +02004629 }
Christopher Faulet0f226952018-10-22 09:29:56 +02004630}
4631
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004632struct buffer *http_error_message(struct stream *s)
Christopher Fauleta7b677c2018-11-29 16:48:49 +01004633{
4634 const int msgnum = http_get_status_idx(s->txn->status);
4635
Christopher Faulet53a87e12020-01-21 10:13:03 +01004636 if (s->txn->errmsg)
Christopher Faulet473e8802020-01-14 11:12:37 +01004637 return s->txn->errmsg;
4638 else if (s->be->errmsg[msgnum])
Christopher Faulet58857752020-01-15 15:19:50 +01004639 return s->be->errmsg[msgnum];
4640 else if (strm_fe(s)->errmsg[msgnum])
4641 return strm_fe(s)->errmsg[msgnum];
Christopher Fauleta7b677c2018-11-29 16:48:49 +01004642 else
Christopher Fauletf7346382019-07-17 22:02:08 +02004643 return &http_err_chunks[msgnum];
Christopher Fauleta7b677c2018-11-29 16:48:49 +01004644}
4645
Christopher Faulet304cc402019-07-15 15:46:28 +02004646/* Return the error message corresponding to si->err_type. It is assumed
4647 * that the server side is closed. Note that err_type is actually a
4648 * bitmask, where almost only aborts may be cumulated with other
4649 * values. We consider that aborted operations are more important
4650 * than timeouts or errors due to the fact that nobody else in the
4651 * logs might explain incomplete retries. All others should avoid
4652 * being cumulated. It should normally not be possible to have multiple
4653 * aborts at once, but just in case, the first one in sequence is reported.
4654 * Note that connection errors appearing on the second request of a keep-alive
4655 * connection are not reported since this allows the client to retry.
4656 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004657void http_return_srv_error(struct stream *s, struct stream_interface *si)
Christopher Faulet304cc402019-07-15 15:46:28 +02004658{
4659 int err_type = si->err_type;
4660
4661 /* set s->txn->status for http_error_message(s) */
4662 s->txn->status = 503;
4663
4664 if (err_type & SI_ET_QUEUE_ABRT)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004665 http_server_error(s, si, SF_ERR_CLICL, SF_FINST_Q,
4666 http_error_message(s));
Christopher Faulet304cc402019-07-15 15:46:28 +02004667 else if (err_type & SI_ET_CONN_ABRT)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004668 http_server_error(s, si, SF_ERR_CLICL, SF_FINST_C,
4669 (s->txn->flags & TX_NOT_FIRST) ? NULL :
4670 http_error_message(s));
Christopher Faulet304cc402019-07-15 15:46:28 +02004671 else if (err_type & SI_ET_QUEUE_TO)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004672 http_server_error(s, si, SF_ERR_SRVTO, SF_FINST_Q,
4673 http_error_message(s));
Christopher Faulet304cc402019-07-15 15:46:28 +02004674 else if (err_type & SI_ET_QUEUE_ERR)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004675 http_server_error(s, si, SF_ERR_SRVCL, SF_FINST_Q,
4676 http_error_message(s));
Christopher Faulet304cc402019-07-15 15:46:28 +02004677 else if (err_type & SI_ET_CONN_TO)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004678 http_server_error(s, si, SF_ERR_SRVTO, SF_FINST_C,
4679 (s->txn->flags & TX_NOT_FIRST) ? NULL :
4680 http_error_message(s));
Christopher Faulet304cc402019-07-15 15:46:28 +02004681 else if (err_type & SI_ET_CONN_ERR)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004682 http_server_error(s, si, SF_ERR_SRVCL, SF_FINST_C,
4683 (s->flags & SF_SRV_REUSED) ? NULL :
4684 http_error_message(s));
Christopher Faulet304cc402019-07-15 15:46:28 +02004685 else if (err_type & SI_ET_CONN_RES)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004686 http_server_error(s, si, SF_ERR_RESOURCE, SF_FINST_C,
4687 (s->txn->flags & TX_NOT_FIRST) ? NULL :
4688 http_error_message(s));
Christopher Faulet304cc402019-07-15 15:46:28 +02004689 else { /* SI_ET_CONN_OTHER and others */
4690 s->txn->status = 500;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004691 http_server_error(s, si, SF_ERR_INTERNAL, SF_FINST_C,
4692 http_error_message(s));
Christopher Faulet304cc402019-07-15 15:46:28 +02004693 }
4694}
4695
Christopher Fauleta7b677c2018-11-29 16:48:49 +01004696
Christopher Faulet4a28a532019-03-01 11:19:40 +01004697/* Handle Expect: 100-continue for HTTP/1.1 messages if necessary. It returns 0
4698 * on success and -1 on error.
4699 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004700static int http_handle_expect_hdr(struct stream *s, struct htx *htx, struct http_msg *msg)
Christopher Faulet4a28a532019-03-01 11:19:40 +01004701{
4702 /* If we have HTTP/1.1 message with a body and Expect: 100-continue,
4703 * then we must send an HTTP/1.1 100 Continue intermediate response.
4704 */
4705 if (msg->msg_state == HTTP_MSG_BODY && (msg->flags & HTTP_MSGF_VER_11) &&
4706 (msg->flags & (HTTP_MSGF_CNT_LEN|HTTP_MSGF_TE_CHNK))) {
4707 struct ist hdr = { .ptr = "Expect", .len = 6 };
4708 struct http_hdr_ctx ctx;
4709
4710 ctx.blk = NULL;
4711 /* Expect is allowed in 1.1, look for it */
4712 if (http_find_header(htx, hdr, &ctx, 0) &&
4713 unlikely(isteqi(ctx.value, ist2("100-continue", 12)))) {
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004714 if (http_reply_100_continue(s) == -1)
Christopher Faulet4a28a532019-03-01 11:19:40 +01004715 return -1;
4716 http_remove_header(htx, &ctx);
4717 }
4718 }
4719 return 0;
4720}
4721
Christopher Faulet23a3c792018-11-28 10:01:23 +01004722/* Send a 100-Continue response to the client. It returns 0 on success and -1
4723 * on error. The response channel is updated accordingly.
4724 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004725static int http_reply_100_continue(struct stream *s)
Christopher Faulet23a3c792018-11-28 10:01:23 +01004726{
4727 struct channel *res = &s->res;
4728 struct htx *htx = htx_from_buf(&res->buf);
4729 struct htx_sl *sl;
4730 unsigned int flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|
4731 HTX_SL_F_XFER_LEN|HTX_SL_F_BODYLESS);
Christopher Faulet23a3c792018-11-28 10:01:23 +01004732
4733 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags,
4734 ist("HTTP/1.1"), ist("100"), ist("Continue"));
4735 if (!sl)
4736 goto fail;
4737 sl->info.res.status = 100;
4738
Christopher Faulet1d5ec092019-06-26 14:23:54 +02004739 if (!htx_add_endof(htx, HTX_BLK_EOH))
Christopher Faulet23a3c792018-11-28 10:01:23 +01004740 goto fail;
4741
Christopher Fauleta72a7e42020-01-28 09:28:11 +01004742 if (!http_forward_proxy_resp(s, 0))
4743 goto fail;
Christopher Faulet23a3c792018-11-28 10:01:23 +01004744 return 0;
4745
4746 fail:
4747 /* If an error occurred, remove the incomplete HTTP response from the
4748 * buffer */
Christopher Faulet202c6ce2019-01-07 14:57:35 +01004749 channel_htx_truncate(res, htx);
Christopher Faulet23a3c792018-11-28 10:01:23 +01004750 return -1;
4751}
4752
Christopher Faulet12c51e22018-11-28 15:59:42 +01004753
4754/* Send a 401-Unauthorized or 407-Unauthorized response to the client, depending
4755 * ont whether we use a proxy or not. It returns 0 on success and -1 on
4756 * error. The response channel is updated accordingly.
4757 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004758static int http_reply_40x_unauthorized(struct stream *s, const char *auth_realm)
Christopher Faulet12c51e22018-11-28 15:59:42 +01004759{
4760 struct channel *res = &s->res;
4761 struct htx *htx = htx_from_buf(&res->buf);
4762 struct htx_sl *sl;
4763 struct ist code, body;
4764 int status;
4765 unsigned int flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11);
Christopher Faulet12c51e22018-11-28 15:59:42 +01004766
4767 if (!(s->txn->flags & TX_USE_PX_CONN)) {
4768 status = 401;
4769 code = ist("401");
4770 body = ist("<html><body><h1>401 Unauthorized</h1>\n"
4771 "You need a valid user and password to access this content.\n"
4772 "</body></html>\n");
4773 }
4774 else {
4775 status = 407;
4776 code = ist("407");
4777 body = ist("<html><body><h1>407 Unauthorized</h1>\n"
4778 "You need a valid user and password to access this content.\n"
4779 "</body></html>\n");
4780 }
4781
4782 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags,
4783 ist("HTTP/1.1"), code, ist("Unauthorized"));
4784 if (!sl)
4785 goto fail;
4786 sl->info.res.status = status;
4787 s->txn->status = status;
4788
4789 if (chunk_printf(&trash, "Basic realm=\"%s\"", auth_realm) == -1)
4790 goto fail;
4791
Willy Tarreaub5ba2b02019-06-11 16:08:25 +02004792 if (!htx_add_header(htx, ist("Content-length"), ist("112")) ||
4793 !htx_add_header(htx, ist("Cache-Control"), ist("no-cache")) ||
Christopher Faulet12c51e22018-11-28 15:59:42 +01004794 !htx_add_header(htx, ist("Connection"), ist("close")) ||
Jérôme Magnin86cef232018-12-28 14:49:08 +01004795 !htx_add_header(htx, ist("Content-Type"), ist("text/html")))
4796 goto fail;
4797 if (status == 401 && !htx_add_header(htx, ist("WWW-Authenticate"), ist2(trash.area, trash.data)))
4798 goto fail;
4799 if (status == 407 && !htx_add_header(htx, ist("Proxy-Authenticate"), ist2(trash.area, trash.data)))
Christopher Faulet12c51e22018-11-28 15:59:42 +01004800 goto fail;
Willy Tarreau0a7ef022019-05-28 10:30:11 +02004801 if (!htx_add_endof(htx, HTX_BLK_EOH))
4802 goto fail;
4803
4804 while (body.len) {
4805 size_t sent = htx_add_data(htx, body);
4806 if (!sent)
4807 goto fail;
4808 body.ptr += sent;
4809 body.len -= sent;
4810 }
4811
4812 if (!htx_add_endof(htx, HTX_BLK_EOM))
Christopher Faulet12c51e22018-11-28 15:59:42 +01004813 goto fail;
4814
Christopher Fauleta72a7e42020-01-28 09:28:11 +01004815 if (!http_forward_proxy_resp(s, 1))
4816 goto fail;
Christopher Faulet12c51e22018-11-28 15:59:42 +01004817 return 0;
4818
4819 fail:
4820 /* If an error occurred, remove the incomplete HTTP response from the
4821 * buffer */
Christopher Faulet202c6ce2019-01-07 14:57:35 +01004822 channel_htx_truncate(res, htx);
Christopher Faulet12c51e22018-11-28 15:59:42 +01004823 return -1;
4824}
4825
Christopher Faulet0f226952018-10-22 09:29:56 +02004826/*
4827 * Capture headers from message <htx> according to header list <cap_hdr>, and
4828 * fill the <cap> pointers appropriately.
4829 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004830static void http_capture_headers(struct htx *htx, char **cap, struct cap_hdr *cap_hdr)
Christopher Faulet0f226952018-10-22 09:29:56 +02004831{
4832 struct cap_hdr *h;
4833 int32_t pos;
4834
Christopher Fauleta3f15502019-05-13 15:27:23 +02004835 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
Christopher Faulet0f226952018-10-22 09:29:56 +02004836 struct htx_blk *blk = htx_get_blk(htx, pos);
4837 enum htx_blk_type type = htx_get_blk_type(blk);
4838 struct ist n, v;
4839
4840 if (type == HTX_BLK_EOH)
4841 break;
4842 if (type != HTX_BLK_HDR)
4843 continue;
4844
4845 n = htx_get_blk_name(htx, blk);
4846
4847 for (h = cap_hdr; h; h = h->next) {
4848 if (h->namelen && (h->namelen == n.len) &&
4849 (strncasecmp(n.ptr, h->name, h->namelen) == 0)) {
4850 if (cap[h->index] == NULL)
4851 cap[h->index] =
4852 pool_alloc(h->pool);
4853
4854 if (cap[h->index] == NULL) {
4855 ha_alert("HTTP capture : out of memory.\n");
4856 break;
4857 }
4858
4859 v = htx_get_blk_value(htx, blk);
4860 if (v.len > h->len)
4861 v.len = h->len;
4862
4863 memcpy(cap[h->index], v.ptr, v.len);
4864 cap[h->index][v.len]=0;
4865 }
4866 }
4867 }
4868}
4869
Christopher Faulet0b6bdc52018-10-24 11:05:36 +02004870/* Delete a value in a header between delimiters <from> and <next>. The header
4871 * itself is delimited by <start> and <end> pointers. The number of characters
4872 * displaced is returned, and the pointer to the first delimiter is updated if
4873 * required. The function tries as much as possible to respect the following
4874 * principles :
4875 * - replace <from> delimiter by the <next> one unless <from> points to <start>,
4876 * in which case <next> is simply removed
4877 * - set exactly one space character after the new first delimiter, unless there
4878 * are not enough characters in the block being moved to do so.
4879 * - remove unneeded spaces before the previous delimiter and after the new
4880 * one.
4881 *
4882 * It is the caller's responsibility to ensure that :
4883 * - <from> points to a valid delimiter or <start> ;
4884 * - <next> points to a valid delimiter or <end> ;
4885 * - there are non-space chars before <from>.
4886 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004887static int http_del_hdr_value(char *start, char *end, char **from, char *next)
Christopher Faulet0b6bdc52018-10-24 11:05:36 +02004888{
4889 char *prev = *from;
4890
4891 if (prev == start) {
4892 /* We're removing the first value. eat the semicolon, if <next>
4893 * is lower than <end> */
4894 if (next < end)
4895 next++;
4896
4897 while (next < end && HTTP_IS_SPHT(*next))
4898 next++;
4899 }
4900 else {
4901 /* Remove useless spaces before the old delimiter. */
4902 while (HTTP_IS_SPHT(*(prev-1)))
4903 prev--;
4904 *from = prev;
4905
4906 /* copy the delimiter and if possible a space if we're
4907 * not at the end of the line.
4908 */
4909 if (next < end) {
4910 *prev++ = *next++;
4911 if (prev + 1 < next)
4912 *prev++ = ' ';
4913 while (next < end && HTTP_IS_SPHT(*next))
4914 next++;
4915 }
4916 }
4917 memmove(prev, next, end - next);
4918 return (prev - next);
4919}
4920
Christopher Faulet0f226952018-10-22 09:29:56 +02004921
4922/* Formats the start line of the request (without CRLF) and puts it in <str> and
Joseph Herlantc42c0e92018-11-25 10:43:27 -08004923 * return the written length. The line can be truncated if it exceeds <len>.
Christopher Faulet0f226952018-10-22 09:29:56 +02004924 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004925static size_t http_fmt_req_line(const struct htx_sl *sl, char *str, size_t len)
Christopher Faulet0f226952018-10-22 09:29:56 +02004926{
4927 struct ist dst = ist2(str, 0);
4928
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004929 if (istcat(&dst, htx_sl_req_meth(sl), len) == -1)
Christopher Faulet0f226952018-10-22 09:29:56 +02004930 goto end;
4931 if (dst.len + 1 > len)
4932 goto end;
4933 dst.ptr[dst.len++] = ' ';
4934
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004935 if (istcat(&dst, htx_sl_req_uri(sl), len) == -1)
Christopher Faulet0f226952018-10-22 09:29:56 +02004936 goto end;
4937 if (dst.len + 1 > len)
4938 goto end;
4939 dst.ptr[dst.len++] = ' ';
4940
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004941 istcat(&dst, htx_sl_req_vsn(sl), len);
Christopher Faulet0f226952018-10-22 09:29:56 +02004942 end:
4943 return dst.len;
4944}
4945
4946/*
4947 * Print a debug line with a start line.
4948 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004949static void http_debug_stline(const char *dir, struct stream *s, const struct htx_sl *sl)
Christopher Faulet0f226952018-10-22 09:29:56 +02004950{
4951 struct session *sess = strm_sess(s);
4952 int max;
4953
4954 chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", s->uniq_id, s->be->id,
4955 dir,
4956 objt_conn(sess->origin) ? (unsigned short)objt_conn(sess->origin)->handle.fd : -1,
4957 objt_cs(s->si[1].end) ? (unsigned short)objt_cs(s->si[1].end)->conn->handle.fd : -1);
4958
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004959 max = HTX_SL_P1_LEN(sl);
Christopher Faulet0f226952018-10-22 09:29:56 +02004960 UBOUND(max, trash.size - trash.data - 3);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004961 chunk_memcat(&trash, HTX_SL_P1_PTR(sl), max);
Christopher Faulet0f226952018-10-22 09:29:56 +02004962 trash.area[trash.data++] = ' ';
4963
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004964 max = HTX_SL_P2_LEN(sl);
Christopher Faulet0f226952018-10-22 09:29:56 +02004965 UBOUND(max, trash.size - trash.data - 2);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004966 chunk_memcat(&trash, HTX_SL_P2_PTR(sl), max);
Christopher Faulet0f226952018-10-22 09:29:56 +02004967 trash.area[trash.data++] = ' ';
4968
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004969 max = HTX_SL_P3_LEN(sl);
Christopher Faulet0f226952018-10-22 09:29:56 +02004970 UBOUND(max, trash.size - trash.data - 1);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004971 chunk_memcat(&trash, HTX_SL_P3_PTR(sl), max);
Christopher Faulet0f226952018-10-22 09:29:56 +02004972 trash.area[trash.data++] = '\n';
4973
4974 shut_your_big_mouth_gcc(write(1, trash.area, trash.data));
4975}
4976
4977/*
4978 * Print a debug line with a header.
4979 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004980static void http_debug_hdr(const char *dir, struct stream *s, const struct ist n, const struct ist v)
Christopher Faulet0f226952018-10-22 09:29:56 +02004981{
4982 struct session *sess = strm_sess(s);
4983 int max;
4984
4985 chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", s->uniq_id, s->be->id,
4986 dir,
4987 objt_conn(sess->origin) ? (unsigned short)objt_conn(sess->origin)->handle.fd : -1,
4988 objt_cs(s->si[1].end) ? (unsigned short)objt_cs(s->si[1].end)->conn->handle.fd : -1);
4989
4990 max = n.len;
4991 UBOUND(max, trash.size - trash.data - 3);
4992 chunk_memcat(&trash, n.ptr, max);
4993 trash.area[trash.data++] = ':';
4994 trash.area[trash.data++] = ' ';
4995
4996 max = v.len;
4997 UBOUND(max, trash.size - trash.data - 1);
4998 chunk_memcat(&trash, v.ptr, max);
4999 trash.area[trash.data++] = '\n';
5000
5001 shut_your_big_mouth_gcc(write(1, trash.area, trash.data));
5002}
5003
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005004/* Allocate a new HTTP transaction for stream <s> unless there is one already.
5005 * In case of allocation failure, everything allocated is freed and NULL is
5006 * returned. Otherwise the new transaction is assigned to the stream and
5007 * returned.
5008 */
5009struct http_txn *http_alloc_txn(struct stream *s)
5010{
5011 struct http_txn *txn = s->txn;
5012
5013 if (txn)
5014 return txn;
5015
5016 txn = pool_alloc(pool_head_http_txn);
5017 if (!txn)
5018 return txn;
5019
5020 s->txn = txn;
5021 return txn;
5022}
5023
5024void http_txn_reset_req(struct http_txn *txn)
5025{
Christopher Faulet1aea50e2020-01-17 16:03:53 +01005026 txn->req.flags = 0;
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005027 txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */
5028}
5029
5030void http_txn_reset_res(struct http_txn *txn)
5031{
Christopher Faulet1aea50e2020-01-17 16:03:53 +01005032 txn->rsp.flags = 0;
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005033 txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */
5034}
5035
5036/*
5037 * Initialize a new HTTP transaction for stream <s>. It is assumed that all
5038 * the required fields are properly allocated and that we only need to (re)init
5039 * them. This should be used before processing any new request.
5040 */
5041void http_init_txn(struct stream *s)
5042{
5043 struct http_txn *txn = s->txn;
5044 struct conn_stream *cs = objt_cs(s->si[0].end);
5045
5046 txn->flags = ((cs && cs->flags & CS_FL_NOT_FIRST)
5047 ? (TX_NOT_FIRST|TX_WAIT_NEXT_RQ)
5048 : 0);
5049 txn->status = -1;
Christopher Faulet473e8802020-01-14 11:12:37 +01005050 txn->errmsg = NULL;
Willy Tarreau8b507582020-02-25 09:35:07 +01005051 write_u32(txn->cache_hash, 0);
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005052
5053 txn->cookie_first_date = 0;
5054 txn->cookie_last_date = 0;
5055
5056 txn->srv_cookie = NULL;
5057 txn->cli_cookie = NULL;
5058 txn->uri = NULL;
5059
5060 http_txn_reset_req(txn);
5061 http_txn_reset_res(txn);
5062
5063 txn->req.chn = &s->req;
5064 txn->rsp.chn = &s->res;
5065
5066 txn->auth.method = HTTP_AUTH_UNKNOWN;
5067
5068 vars_init(&s->vars_txn, SCOPE_TXN);
5069 vars_init(&s->vars_reqres, SCOPE_REQ);
5070}
5071
5072/* to be used at the end of a transaction */
5073void http_end_txn(struct stream *s)
5074{
5075 struct http_txn *txn = s->txn;
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005076
5077 /* these ones will have been dynamically allocated */
5078 pool_free(pool_head_requri, txn->uri);
5079 pool_free(pool_head_capture, txn->cli_cookie);
5080 pool_free(pool_head_capture, txn->srv_cookie);
5081 pool_free(pool_head_uniqueid, s->unique_id);
5082
5083 s->unique_id = NULL;
5084 txn->uri = NULL;
5085 txn->srv_cookie = NULL;
5086 txn->cli_cookie = NULL;
5087
Christopher Faulet59399252019-11-07 14:27:52 +01005088 if (!LIST_ISEMPTY(&s->vars_txn.head))
5089 vars_prune(&s->vars_txn, s->sess, s);
5090 if (!LIST_ISEMPTY(&s->vars_reqres.head))
5091 vars_prune(&s->vars_reqres, s->sess, s);
5092}
5093
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005094
5095DECLARE_POOL(pool_head_http_txn, "http_txn", sizeof(struct http_txn));
5096DECLARE_POOL(pool_head_uniqueid, "uniqueid", UNIQUEID_LEN);
Christopher Faulet0f226952018-10-22 09:29:56 +02005097
Christopher Fauletf4eb75d2018-10-11 15:55:07 +02005098__attribute__((constructor))
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005099static void __http_protocol_init(void)
Christopher Fauletf4eb75d2018-10-11 15:55:07 +02005100{
5101}
5102
5103
5104/*
5105 * Local variables:
5106 * c-indent-level: 8
5107 * c-basic-offset: 8
5108 * End:
5109 */