blob: a872e90636e046285bfd408c8040b5eb679b2130 [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
Willy Tarreaudcc048a2020-06-04 19:11:43 +020013#include <haproxy/acl.h>
Willy Tarreau122eba92020-06-04 10:15:32 +020014#include <haproxy/action-t.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020015#include <haproxy/api.h>
Willy Tarreau91cefca2022-05-03 17:08:29 +020016#include <haproxy/applet.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020017#include <haproxy/backend.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020018#include <haproxy/base64.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020019#include <haproxy/capture-t.h>
Amaury Denoyelle03517732021-05-07 14:25:01 +020020#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020021#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020022#include <haproxy/check.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020023#include <haproxy/connection.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020024#include <haproxy/errors.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020025#include <haproxy/filters.h>
Willy Tarreaucd72d8c2020-06-02 19:11:26 +020026#include <haproxy/http.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020027#include <haproxy/http_ana.h>
Willy Tarreau87735332020-06-04 09:08:41 +020028#include <haproxy/http_htx.h>
Aurelien DARRAGONb2bb9252022-12-28 15:37:57 +010029#include <haproxy/http_ext.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020030#include <haproxy/htx.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020031#include <haproxy/log.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +020032#include <haproxy/net_helper.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020033#include <haproxy/proxy.h>
Willy Tarreau7cd8b6e2020-06-02 17:32:26 +020034#include <haproxy/regex.h>
Willy Tarreau5edca2f2022-05-27 09:25:10 +020035#include <haproxy/sc_strm.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020036#include <haproxy/server-t.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020037#include <haproxy/stats.h>
Willy Tarreaucb086c62022-05-27 09:47:12 +020038#include <haproxy/stconn.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020039#include <haproxy/stream.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020040#include <haproxy/trace.h>
Willy Tarreau8c42b8a2020-06-04 19:27:34 +020041#include <haproxy/uri_auth-t.h>
Willy Tarreaua1718922020-06-04 16:25:31 +020042#include <haproxy/vars.h>
Christopher Faulete0768eb2018-10-03 16:38:02 +020043
Christopher Faulete0768eb2018-10-03 16:38:02 +020044
Christopher Fauleteea8fc72019-11-05 16:18:10 +010045#define TRACE_SOURCE &trace_strm
46
Christopher Faulet377c5a52018-10-24 21:21:30 +020047extern const char *stat_status_codes[];
Christopher Fauletf2824e62018-10-01 12:12:37 +020048
Willy Tarreauff882702021-04-10 17:23:00 +020049struct pool_head *pool_head_requri __read_mostly = NULL;
50struct pool_head *pool_head_capture __read_mostly = NULL;
Christopher Fauleta8a46e22019-07-16 14:53:09 +020051
52
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020053static void http_end_request(struct stream *s);
54static void http_end_response(struct stream *s);
Christopher Fauletf2824e62018-10-01 12:12:37 +020055
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020056static void http_capture_headers(struct htx *htx, char **cap, struct cap_hdr *cap_hdr);
57static int http_del_hdr_value(char *start, char *end, char **from, char *next);
58static size_t http_fmt_req_line(const struct htx_sl *sl, char *str, size_t len);
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020059static void http_debug_stline(const char *dir, struct stream *s, const struct htx_sl *sl);
60static 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 +020061
Christopher Fauletd4150ad2021-10-13 15:35:55 +020062static enum rule_result http_req_get_intercept_rule(struct proxy *px, struct list *def_rules, struct list *rules, struct stream *s);
63static enum rule_result http_res_get_intercept_rule(struct proxy *px, struct list *def_rules, struct list *rules, struct stream *s);
Christopher Faulet18c13d32022-05-16 11:43:10 +020064static enum rule_result http_req_restrict_header_names(struct stream *s, struct htx *htx, struct proxy *px);
Christopher Faulet3e964192018-10-24 11:39:23 +020065
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020066static void http_manage_client_side_cookies(struct stream *s, struct channel *req);
67static void http_manage_server_side_cookies(struct stream *s, struct channel *res);
Christopher Fauletfcda7c62018-10-24 11:56:22 +020068
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020069static int http_stats_check_uri(struct stream *s, struct http_txn *txn, struct proxy *backend);
70static int http_handle_stats(struct stream *s, struct channel *req);
Christopher Faulet377c5a52018-10-24 21:21:30 +020071
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020072static int http_handle_expect_hdr(struct stream *s, struct htx *htx, struct http_msg *msg);
73static int http_reply_100_continue(struct stream *s);
Christopher Faulet23a3c792018-11-28 10:01:23 +010074
Christopher Faulete0768eb2018-10-03 16:38:02 +020075/* This stream analyser waits for a complete HTTP request. It returns 1 if the
76 * processing can continue on next analysers, or zero if it either needs more
77 * data or wants to immediately abort the request (eg: timeout, error, ...). It
78 * is tied to AN_REQ_WAIT_HTTP and may may remove itself from s->req.analysers
79 * when it has nothing left to do, and may remove any analyser when it wants to
80 * abort.
81 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020082int http_wait_for_request(struct stream *s, struct channel *req, int an_bit)
Christopher Faulete0768eb2018-10-03 16:38:02 +020083{
Christopher Faulet9768c262018-10-22 09:34:31 +020084
Christopher Faulete0768eb2018-10-03 16:38:02 +020085 /*
Christopher Faulet9768c262018-10-22 09:34:31 +020086 * We will analyze a complete HTTP request to check the its syntax.
Christopher Faulete0768eb2018-10-03 16:38:02 +020087 *
Christopher Faulet9768c262018-10-22 09:34:31 +020088 * Once the start line and all headers are received, we may perform a
89 * capture of the error (if any), and we will set a few fields. We also
90 * check for monitor-uri, logging and finally headers capture.
Christopher Faulete0768eb2018-10-03 16:38:02 +020091 */
Christopher Faulete0768eb2018-10-03 16:38:02 +020092 struct session *sess = s->sess;
93 struct http_txn *txn = s->txn;
94 struct http_msg *msg = &txn->req;
Christopher Faulet9768c262018-10-22 09:34:31 +020095 struct htx *htx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +010096 struct htx_sl *sl;
Frédéric Lécaille9969adb2023-01-18 11:52:21 +010097 char http_ver;
98 int len;
Christopher Faulete0768eb2018-10-03 16:38:02 +020099
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100100 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200101
Christopher Fauletda46a0d2021-01-21 17:32:58 +0100102 if (unlikely(!IS_HTX_STRM(s))) {
103 /* It is only possible when a TCP stream is upgrade to HTTP.
104 * There is a transition period during which there is no
105 * data. The stream is still in raw mode and SF_IGNORE flag is
106 * still set. When this happens, the new mux is responsible to
Ilya Shipitsinacf84592021-02-06 22:29:08 +0500107 * handle all errors. Thus we may leave immediately.
Christopher Fauletda46a0d2021-01-21 17:32:58 +0100108 */
109 BUG_ON(!(s->flags & SF_IGNORE) || !c_empty(&s->req));
Christopher Faulet9768c262018-10-22 09:34:31 +0200110
Christopher Faulet97b3a612021-03-15 17:10:12 +0100111 /* Don't connect for now */
112 channel_dont_connect(req);
113
Christopher Faulet0c370ee2023-04-13 16:05:13 +0200114 /* An abort at this stage means we are performing a "destructive"
Christopher Faulet97b3a612021-03-15 17:10:12 +0100115 * HTTP upgrade (TCP>H2). In this case, we can leave.
116 */
Christopher Fauletca5309a2023-04-17 16:17:32 +0200117 if (s->scf->flags & (SC_FL_ABRT_DONE|SC_FL_EOS)) {
Christopher Faulet97b3a612021-03-15 17:10:12 +0100118 s->logs.logwait = 0;
119 s->logs.level = 0;
Christopher Faulet7eb837d2023-04-13 15:22:29 +0200120 stream_abort(s);
Christopher Faulet97b3a612021-03-15 17:10:12 +0100121 req->analysers &= AN_REQ_FLT_END;
122 req->analyse_exp = TICK_ETERNITY;
123 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA, s);
124 return 1;
125 }
Christopher Fauletda46a0d2021-01-21 17:32:58 +0100126 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA, s);
127 return 0;
128 }
129
130 htx = htxbuf(&req->buf);
Frédéric Lécaille9969adb2023-01-18 11:52:21 +0100131 sl = http_get_stline(htx);
132 len = HTX_SL_REQ_VLEN(sl);
133 if (len < 6) {
134 http_ver = 0;
135 }
136 else {
137 char *ptr;
138
139 ptr = HTX_SL_REQ_VPTR(sl);
140 http_ver = ptr[5] - '0';
141 }
Christopher Faulet8bebd2f2020-10-06 17:54:56 +0200142
Willy Tarreau4236f032019-03-05 10:43:32 +0100143 /* Parsing errors are caught here */
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200144 if (htx->flags & (HTX_FL_PARSING_ERROR|HTX_FL_PROCESSING_ERROR)) {
Willy Tarreau4236f032019-03-05 10:43:32 +0100145 stream_inc_http_req_ctr(s);
Frédéric Lécaille9969adb2023-01-18 11:52:21 +0100146 proxy_inc_fe_req_ctr(sess->listener, sess->fe, http_ver);
Christopher Fauletbf7175f2021-02-10 14:58:01 +0100147 if (htx->flags & HTX_FL_PARSING_ERROR) {
148 stream_inc_http_err_ctr(s);
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200149 goto return_bad_req;
Christopher Fauletbf7175f2021-02-10 14:58:01 +0100150 }
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200151 else
152 goto return_int_err;
Willy Tarreau4236f032019-03-05 10:43:32 +0100153 }
154
Christopher Faulete0768eb2018-10-03 16:38:02 +0200155 /* we're speaking HTTP here, so let's speak HTTP to the client */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200156 s->srv_error = http_return_srv_error;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200157
Christopher Faulet9768c262018-10-22 09:34:31 +0200158 msg->msg_state = HTTP_MSG_BODY;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200159 stream_inc_http_req_ctr(s);
Frédéric Lécaille9969adb2023-01-18 11:52:21 +0100160 proxy_inc_fe_req_ctr(sess->listener, sess->fe, http_ver); /* one more valid request for this FE */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200161
Christopher Faulet9768c262018-10-22 09:34:31 +0200162 /* kill the pending keep-alive timeout */
Christopher Faulet9768c262018-10-22 09:34:31 +0200163 req->analyse_exp = TICK_ETERNITY;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200164
Christopher Faulet29f17582019-05-23 11:03:26 +0200165 BUG_ON(htx_get_first_type(htx) != HTX_BLK_REQ_SL);
Christopher Faulet03599112018-11-27 11:21:21 +0100166
Christopher Faulet9768c262018-10-22 09:34:31 +0200167 /* 0: we might have to print this header in debug mode */
168 if (unlikely((global.mode & MODE_DEBUG) &&
169 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
170 int32_t pos;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200171
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200172 http_debug_stline("clireq", s, sl);
Christopher Faulet9768c262018-10-22 09:34:31 +0200173
Christopher Fauleta3f15502019-05-13 15:27:23 +0200174 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
Christopher Faulet9768c262018-10-22 09:34:31 +0200175 struct htx_blk *blk = htx_get_blk(htx, pos);
176 enum htx_blk_type type = htx_get_blk_type(blk);
177
178 if (type == HTX_BLK_EOH)
179 break;
180 if (type != HTX_BLK_HDR)
181 continue;
182
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200183 http_debug_hdr("clihdr", s,
184 htx_get_blk_name(htx, blk),
185 htx_get_blk_value(htx, blk));
Christopher Faulet9768c262018-10-22 09:34:31 +0200186 }
187 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200188
189 /*
Christopher Faulet03599112018-11-27 11:21:21 +0100190 * 1: identify the method and the version. Also set HTTP flags
Christopher Faulete0768eb2018-10-03 16:38:02 +0200191 */
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100192 txn->meth = sl->info.req.meth;
Christopher Faulet03599112018-11-27 11:21:21 +0100193 if (sl->flags & HTX_SL_F_VER_11)
Christopher Faulet9768c262018-10-22 09:34:31 +0200194 msg->flags |= HTTP_MSGF_VER_11;
Christopher Faulet03599112018-11-27 11:21:21 +0100195 msg->flags |= HTTP_MSGF_XFER_LEN;
Christopher Faulet2a408542020-11-20 14:22:37 +0100196 if (sl->flags & HTX_SL_F_CLEN)
197 msg->flags |= HTTP_MSGF_CNT_LEN;
198 else if (sl->flags & HTX_SL_F_CHNK)
199 msg->flags |= HTTP_MSGF_TE_CHNK;
Christopher Fauletb2db4fa2018-11-27 16:51:09 +0100200 if (sl->flags & HTX_SL_F_BODYLESS)
201 msg->flags |= HTTP_MSGF_BODYLESS;
Christopher Faulet576c3582021-01-08 15:53:01 +0100202 if (sl->flags & HTX_SL_F_CONN_UPG)
203 msg->flags |= HTTP_MSGF_CONN_UPG;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200204
205 /* we can make use of server redirect on GET and HEAD */
206 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
207 s->flags |= SF_REDIRECTABLE;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100208 else if (txn->meth == HTTP_METH_OTHER && isteqi(htx_sl_req_meth(sl), ist("PRI"))) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200209 /* PRI is reserved for the HTTP/2 preface */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200210 goto return_bad_req;
211 }
212
213 /*
Christopher Faulet6072beb2020-02-18 15:34:58 +0100214 * 2: check if the URI matches the monitor_uri. We have to do this for
215 * every request which gets in, because the monitor-uri is defined by
216 * the frontend. If the monitor-uri starts with a '/', the matching is
217 * done against the request's path. Otherwise, the request's uri is
218 * used. It is a workaround to let HTTP/2 health-checks work as
219 * expected.
Christopher Faulete0768eb2018-10-03 16:38:02 +0200220 */
Tim Duesterhus4b1fcaa2022-03-05 00:52:40 +0100221 if (unlikely(isttest(sess->fe->monitor_uri))) {
222 const struct ist monitor_uri = sess->fe->monitor_uri;
Amaury Denoyellec453f952021-07-06 11:40:12 +0200223 struct http_uri_parser parser = http_uri_parser_init(htx_sl_req_uri(sl));
Christopher Faulete0768eb2018-10-03 16:38:02 +0200224
Amaury Denoyelle5a9bd372021-07-06 11:23:10 +0200225 if ((istptr(monitor_uri)[0] == '/' &&
Amaury Denoyellec453f952021-07-06 11:40:12 +0200226 isteq(http_parse_path(&parser), monitor_uri)) ||
Amaury Denoyelle5a9bd372021-07-06 11:23:10 +0200227 isteq(htx_sl_req_uri(sl), monitor_uri)) {
228 /*
229 * We have found the monitor URI
230 */
231 struct acl_cond *cond;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200232
Amaury Denoyelle5a9bd372021-07-06 11:23:10 +0200233 s->flags |= SF_MONITOR;
234 _HA_ATOMIC_INC(&sess->fe->fe_counters.intercepted_req);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200235
Amaury Denoyelle5a9bd372021-07-06 11:23:10 +0200236 /* Check if we want to fail this monitor request or not */
237 list_for_each_entry(cond, &sess->fe->mon_fail_cond, list) {
238 int ret = acl_exec_cond(cond, sess->fe, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200239
Amaury Denoyelle5a9bd372021-07-06 11:23:10 +0200240 ret = acl_pass(ret);
241 if (cond->pol == ACL_COND_UNLESS)
242 ret = !ret;
243
244 if (ret) {
245 /* we fail this request, let's return 503 service unavail */
246 txn->status = 503;
247 if (!(s->flags & SF_ERR_MASK))
248 s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */
249 goto return_prx_cond;
250 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200251 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200252
Amaury Denoyelle5a9bd372021-07-06 11:23:10 +0200253 /* nothing to fail, let's reply normally */
254 txn->status = 200;
255 if (!(s->flags & SF_ERR_MASK))
256 s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */
257 goto return_prx_cond;
258 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200259 }
260
261 /*
262 * 3: Maybe we have to copy the original REQURI for the logs ?
263 * Note: we cannot log anymore if the request has been
264 * classified as invalid.
265 */
266 if (unlikely(s->logs.logwait & LW_REQ)) {
267 /* we have a complete HTTP request that we must log */
268 if ((txn->uri = pool_alloc(pool_head_requri)) != NULL) {
Christopher Faulet9768c262018-10-22 09:34:31 +0200269 size_t len;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200270
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200271 len = http_fmt_req_line(sl, txn->uri, global.tune.requri_len - 1);
Christopher Faulet9768c262018-10-22 09:34:31 +0200272 txn->uri[len] = 0;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200273
274 if (!(s->logs.logwait &= ~(LW_REQ|LW_INIT)))
275 s->do_log(s);
276 } else {
277 ha_alert("HTTP logging : out of memory.\n");
278 }
279 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200280
Christopher Faulete0768eb2018-10-03 16:38:02 +0200281 /* if the frontend has "option http-use-proxy-header", we'll check if
282 * we have what looks like a proxied connection instead of a connection,
283 * and in this case set the TX_USE_PX_CONN flag to use Proxy-connection.
284 * Note that this is *not* RFC-compliant, however browsers and proxies
285 * happen to do that despite being non-standard :-(
286 * We consider that a request not beginning with either '/' or '*' is
287 * a proxied connection, which covers both "scheme://location" and
288 * CONNECT ip:port.
289 */
290 if ((sess->fe->options2 & PR_O2_USE_PXHDR) &&
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100291 *HTX_SL_REQ_UPTR(sl) != '/' && *HTX_SL_REQ_UPTR(sl) != '*')
Christopher Faulete0768eb2018-10-03 16:38:02 +0200292 txn->flags |= TX_USE_PX_CONN;
293
Christopher Faulete0768eb2018-10-03 16:38:02 +0200294 /* 5: we may need to capture headers */
295 if (unlikely((s->logs.logwait & LW_REQHDR) && s->req_cap))
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200296 http_capture_headers(htx, s->req_cap, sess->fe->req_cap);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200297
Christopher Faulete0768eb2018-10-03 16:38:02 +0200298 /* we may have to wait for the request's body */
Christopher Faulet9768c262018-10-22 09:34:31 +0200299 if (s->be->options & PR_O_WREQ_BODY)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200300 req->analysers |= AN_REQ_HTTP_BODY;
301
302 /*
303 * RFC7234#4:
304 * A cache MUST write through requests with methods
305 * that are unsafe (Section 4.2.1 of [RFC7231]) to
306 * the origin server; i.e., a cache is not allowed
307 * to generate a reply to such a request before
308 * having forwarded the request and having received
309 * a corresponding response.
310 *
311 * RFC7231#4.2.1:
312 * Of the request methods defined by this
313 * specification, the GET, HEAD, OPTIONS, and TRACE
314 * methods are defined to be safe.
315 */
316 if (likely(txn->meth == HTTP_METH_GET ||
317 txn->meth == HTTP_METH_HEAD ||
318 txn->meth == HTTP_METH_OPTIONS ||
319 txn->meth == HTTP_METH_TRACE))
320 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
321
322 /* end of job, return OK */
323 req->analysers &= ~an_bit;
324 req->analyse_exp = TICK_ETERNITY;
Christopher Faulet9768c262018-10-22 09:34:31 +0200325
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100326 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200327 return 1;
328
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200329 return_int_err:
330 txn->status = 500;
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200331 if (!(s->flags & SF_ERR_MASK))
332 s->flags |= SF_ERR_INTERNAL;
Willy Tarreau4781b152021-04-06 13:53:36 +0200333 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +0100334 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +0200335 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200336 goto return_prx_cond;
337
Christopher Faulete0768eb2018-10-03 16:38:02 +0200338 return_bad_req:
Christopher Faulet9768c262018-10-22 09:34:31 +0200339 txn->status = 400;
Willy Tarreau4781b152021-04-06 13:53:36 +0200340 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +0100341 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +0200342 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200343 /* fall through */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200344
345 return_prx_cond:
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200346 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulet4a66c942023-01-13 09:43:21 +0100347 http_set_term_flags(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200348
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100349 DBG_TRACE_DEVEL("leaving on error",
350 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200351 return 0;
352}
353
354
355/* This stream analyser runs all HTTP request processing which is common to
356 * frontends and backends, which means blocking ACLs, filters, connection-close,
357 * reqadd, stats and redirects. This is performed for the designated proxy.
358 * It returns 1 if the processing can continue on next analysers, or zero if it
359 * either needs more data or wants to immediately abort the request (eg: deny,
360 * error, ...).
361 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200362int http_process_req_common(struct stream *s, struct channel *req, int an_bit, struct proxy *px)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200363{
Christopher Fauletd4150ad2021-10-13 15:35:55 +0200364 struct list *def_rules, *rules;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200365 struct session *sess = s->sess;
366 struct http_txn *txn = s->txn;
367 struct http_msg *msg = &txn->req;
Christopher Fauletff2759f2018-10-24 11:13:16 +0200368 struct htx *htx;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200369 struct redirect_rule *rule;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200370 enum rule_result verdict;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200371 struct connection *conn = objt_conn(sess->origin);
372
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100373 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200374
Christopher Faulet27ba2dc2018-12-05 11:53:24 +0100375 htx = htxbuf(&req->buf);
Christopher Fauletff2759f2018-10-24 11:13:16 +0200376
Christopher Faulet1907ccc2019-04-29 13:12:02 +0200377 /* just in case we have some per-backend tracking. Only called the first
378 * execution of the analyser. */
Christopher Fauletd4150ad2021-10-13 15:35:55 +0200379 if (!s->current_rule && !s->current_rule_list)
Christopher Faulet1907ccc2019-04-29 13:12:02 +0200380 stream_inc_be_http_req_ctr(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200381
Christopher Fauletd4150ad2021-10-13 15:35:55 +0200382 def_rules = ((px->defpx && (an_bit == AN_REQ_HTTP_PROCESS_FE || px != sess->fe)) ? &px->defpx->http_req_rules : NULL);
383 rules = &px->http_req_rules;
384
Christopher Faulete0768eb2018-10-03 16:38:02 +0200385 /* evaluate http-request rules */
Christopher Fauletd4150ad2021-10-13 15:35:55 +0200386 if ((def_rules && !LIST_ISEMPTY(def_rules)) || !LIST_ISEMPTY(rules)) {
387 verdict = http_req_get_intercept_rule(px, def_rules, rules, s);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200388
389 switch (verdict) {
390 case HTTP_RULE_RES_YIELD: /* some data miss, call the function later. */
391 goto return_prx_yield;
392
393 case HTTP_RULE_RES_CONT:
394 case HTTP_RULE_RES_STOP: /* nothing to do */
395 break;
396
397 case HTTP_RULE_RES_DENY: /* deny or tarpit */
398 if (txn->flags & TX_CLTARPIT)
399 goto tarpit;
400 goto deny;
401
402 case HTTP_RULE_RES_ABRT: /* abort request, response already sent. Eg: auth */
403 goto return_prx_cond;
404
405 case HTTP_RULE_RES_DONE: /* OK, but terminate request processing (eg: redirect) */
406 goto done;
407
408 case HTTP_RULE_RES_BADREQ: /* failed with a bad request */
409 goto return_bad_req;
Christopher Faulet3a26bee2019-12-16 12:47:40 +0100410
411 case HTTP_RULE_RES_ERROR: /* failed with a bad request */
412 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200413 }
414 }
415
Christopher Faulet18c13d32022-05-16 11:43:10 +0200416 if (px->options2 & (PR_O2_RSTRICT_REQ_HDR_NAMES_BLK|PR_O2_RSTRICT_REQ_HDR_NAMES_DEL)) {
417 verdict = http_req_restrict_header_names(s, htx, px);
418 if (verdict == HTTP_RULE_RES_DENY)
419 goto deny;
420 }
421
Christopher Faulete0768eb2018-10-03 16:38:02 +0200422 if (conn && (conn->flags & CO_FL_EARLY_DATA) &&
Olivier Houchard220a26c2020-01-23 14:57:36 +0100423 (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS))) {
Christopher Fauletff2759f2018-10-24 11:13:16 +0200424 struct http_hdr_ctx ctx;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200425
Christopher Fauletff2759f2018-10-24 11:13:16 +0200426 ctx.blk = NULL;
427 if (!http_find_header(htx, ist("Early-Data"), &ctx, 0)) {
428 if (unlikely(!http_add_header(htx, ist("Early-Data"), ist("1"))))
Christopher Fauletd649b572022-06-01 17:42:35 +0200429 goto return_fail_rewrite;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200430 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200431 }
432
433 /* OK at this stage, we know that the request was accepted according to
434 * the http-request rules, we can check for the stats. Note that the
435 * URI is detected *before* the req* rules in order not to be affected
436 * by a possible reqrep, while they are processed *after* so that a
437 * reqdeny can still block them. This clearly needs to change in 1.6!
438 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200439 if (!s->target && http_stats_check_uri(s, txn, px)) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200440 s->target = &http_stats_applet.obj_type;
Willy Tarreaua0b58b52022-05-27 08:33:53 +0200441 if (unlikely(!sc_applet_create(s->scb, objt_applet(s->target)))) {
Willy Tarreau69530f52023-04-28 09:16:15 +0200442 s->logs.request_ts = now_ns;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200443 if (!(s->flags & SF_ERR_MASK))
444 s->flags |= SF_ERR_RESOURCE;
Christopher Fauletb8a53712019-12-16 11:29:38 +0100445 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200446 }
447
448 /* parse the whole stats request and extract the relevant information */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200449 http_handle_stats(s, req);
Christopher Fauletd4150ad2021-10-13 15:35:55 +0200450 verdict = http_req_get_intercept_rule(px, NULL, &px->uri_auth->http_req_rules, s);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200451 /* not all actions implemented: deny, allow, auth */
452
453 if (verdict == HTTP_RULE_RES_DENY) /* stats http-request deny */
454 goto deny;
455
456 if (verdict == HTTP_RULE_RES_ABRT) /* stats auth / stats http-request auth */
457 goto return_prx_cond;
Christopher Faulet3a26bee2019-12-16 12:47:40 +0100458
459 if (verdict == HTTP_RULE_RES_BADREQ) /* failed with a bad request */
460 goto return_bad_req;
461
462 if (verdict == HTTP_RULE_RES_ERROR) /* failed with a bad request */
463 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200464 }
465
Christopher Faulet2571bc62019-03-01 11:44:26 +0100466 /* Proceed with the applets now. */
467 if (unlikely(objt_applet(s->target))) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200468 if (sess->fe == s->be) /* report it if the request was intercepted by the frontend */
Willy Tarreau4781b152021-04-06 13:53:36 +0200469 _HA_ATOMIC_INC(&sess->fe->fe_counters.intercepted_req);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200470
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200471 if (http_handle_expect_hdr(s, htx, msg) == -1)
Christopher Fauletb8a53712019-12-16 11:29:38 +0100472 goto return_int_err;
Christopher Fauletbcf242a2019-03-01 11:36:26 +0100473
Christopher Faulete0768eb2018-10-03 16:38:02 +0200474 if (!(s->flags & SF_ERR_MASK)) // this is not really an error but it is
475 s->flags |= SF_ERR_LOCAL; // to mark that it comes from the proxy
Christopher Faulet4a66c942023-01-13 09:43:21 +0100476 http_set_term_flags(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200477
Christopher Fauletc2ac5e42021-03-08 18:20:09 +0100478 if (HAS_FILTERS(s))
479 req->analysers |= AN_REQ_FLT_HTTP_HDRS;
480
Christopher Faulete0768eb2018-10-03 16:38:02 +0200481 /* enable the minimally required analyzers to handle keep-alive and compression on the HTTP response */
482 req->analysers &= (AN_REQ_HTTP_BODY | AN_REQ_FLT_HTTP_HDRS | AN_REQ_FLT_END);
483 req->analysers &= ~AN_REQ_FLT_XFER_DATA;
484 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Christopher Fauletbcf242a2019-03-01 11:36:26 +0100485
Christopher Faulet5c281d52023-03-16 15:53:28 +0100486 s->scb->flags |= SC_FL_SND_ASAP;
Christopher Fauletbcf242a2019-03-01 11:36:26 +0100487 s->flags |= SF_ASSIGNED;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200488 goto done;
489 }
490
491 /* check whether we have some ACLs set to redirect this request */
492 list_for_each_entry(rule, &px->redirect_rules, list) {
493 if (rule->cond) {
494 int ret;
495
496 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
497 ret = acl_pass(ret);
498 if (rule->cond->pol == ACL_COND_UNLESS)
499 ret = !ret;
500 if (!ret)
501 continue;
502 }
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200503 if (!http_apply_redirect_rule(rule, s, txn))
Christopher Fauletb8a53712019-12-16 11:29:38 +0100504 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200505 goto done;
506 }
507
508 /* POST requests may be accompanied with an "Expect: 100-Continue" header.
509 * If this happens, then the data will not come immediately, so we must
510 * send all what we have without waiting. Note that due to the small gain
511 * in waiting for the body of the request, it's easier to simply put the
Christopher Faulet5c281d52023-03-16 15:53:28 +0100512 * SC_FL_SND_ASAP flag on the back SC any time. It's a one-shot flag so it
513 * will remove itself once used.
Christopher Faulete0768eb2018-10-03 16:38:02 +0200514 */
Christopher Faulet5c281d52023-03-16 15:53:28 +0100515 s->scb->flags |= SC_FL_SND_ASAP;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200516
517 done: /* done with this analyser, continue with next ones that the calling
518 * points will have set, if any.
519 */
520 req->analyse_exp = TICK_ETERNITY;
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +0500521 done_without_exp: /* done with this analyser, but don't reset the analyse_exp. */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200522 req->analysers &= ~an_bit;
Christopher Fauletd4150ad2021-10-13 15:35:55 +0200523 s->current_rule = s->current_rule_list = NULL;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100524 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200525 return 1;
526
527 tarpit:
528 /* Allow cookie logging
529 */
530 if (s->be->cookie_name || sess->fe->capture_name)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200531 http_manage_client_side_cookies(s, req);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200532
533 /* When a connection is tarpitted, we use the tarpit timeout,
534 * which may be the same as the connect timeout if unspecified.
535 * If unset, then set it to zero because we really want it to
536 * eventually expire. We build the tarpit as an analyser.
537 */
Christopher Faulet202c6ce2019-01-07 14:57:35 +0100538 channel_htx_erase(&s->req, htx);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200539
540 /* wipe the request out so that we can drop the connection early
541 * if the client closes first.
542 */
543 channel_dont_connect(req);
544
Christopher Faulete0768eb2018-10-03 16:38:02 +0200545 req->analysers &= AN_REQ_FLT_END; /* remove switching rules etc... */
546 req->analysers |= AN_REQ_HTTP_TARPIT;
547 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit);
548 if (!req->analyse_exp)
549 req->analyse_exp = tick_add(now_ms, 0);
550 stream_inc_http_err_ctr(s);
Willy Tarreau4781b152021-04-06 13:53:36 +0200551 _HA_ATOMIC_INC(&sess->fe->fe_counters.denied_req);
Christopher Fauletcff0f732019-12-16 16:13:44 +0100552 if (s->flags & SF_BE_ASSIGNED)
Willy Tarreau4781b152021-04-06 13:53:36 +0200553 _HA_ATOMIC_INC(&s->be->be_counters.denied_req);
William Lallemand36119de2021-03-08 15:26:48 +0100554 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +0200555 _HA_ATOMIC_INC(&sess->listener->counters->denied_req);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200556 goto done_without_exp;
557
558 deny: /* this request was blocked (denied) */
559
560 /* Allow cookie logging
561 */
562 if (s->be->cookie_name || sess->fe->capture_name)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200563 http_manage_client_side_cookies(s, req);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200564
Willy Tarreau69530f52023-04-28 09:16:15 +0200565 s->logs.request_ts = now_ns;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200566 stream_inc_http_err_ctr(s);
Willy Tarreau4781b152021-04-06 13:53:36 +0200567 _HA_ATOMIC_INC(&sess->fe->fe_counters.denied_req);
Christopher Fauletcff0f732019-12-16 16:13:44 +0100568 if (s->flags & SF_BE_ASSIGNED)
Willy Tarreau4781b152021-04-06 13:53:36 +0200569 _HA_ATOMIC_INC(&s->be->be_counters.denied_req);
William Lallemand36119de2021-03-08 15:26:48 +0100570 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +0200571 _HA_ATOMIC_INC(&sess->listener->counters->denied_req);
Christopher Fauletb8a53712019-12-16 11:29:38 +0100572 goto return_prx_err;
573
Christopher Fauletd649b572022-06-01 17:42:35 +0200574 return_fail_rewrite:
575 if (!(s->flags & SF_ERR_MASK))
576 s->flags |= SF_ERR_PRXCOND;
577 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_rewrites);
578 if (s->flags & SF_BE_ASSIGNED)
579 _HA_ATOMIC_INC(&s->be->be_counters.failed_rewrites);
580 if (sess->listener && sess->listener->counters)
581 _HA_ATOMIC_INC(&sess->listener->counters->failed_rewrites);
582 if (objt_server(s->target))
583 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_rewrites);
584 /* fall through */
585
Christopher Fauletb8a53712019-12-16 11:29:38 +0100586 return_int_err:
587 txn->status = 500;
588 if (!(s->flags & SF_ERR_MASK))
589 s->flags |= SF_ERR_INTERNAL;
Willy Tarreau4781b152021-04-06 13:53:36 +0200590 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
Christopher Fauletcff0f732019-12-16 16:13:44 +0100591 if (s->flags & SF_BE_ASSIGNED)
Willy Tarreau4781b152021-04-06 13:53:36 +0200592 _HA_ATOMIC_INC(&s->be->be_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +0100593 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +0200594 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletb8a53712019-12-16 11:29:38 +0100595 goto return_prx_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200596
597 return_bad_req:
Christopher Faulete0768eb2018-10-03 16:38:02 +0200598 txn->status = 400;
Willy Tarreau4781b152021-04-06 13:53:36 +0200599 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +0100600 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +0200601 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletb8a53712019-12-16 11:29:38 +0100602 /* fall through */
603
604 return_prx_err:
605 http_reply_and_close(s, txn->status, http_error_message(s));
606 /* fall through */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200607
608 return_prx_cond:
Christopher Faulet4a66c942023-01-13 09:43:21 +0100609 http_set_term_flags(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200610
611 req->analysers &= AN_REQ_FLT_END;
612 req->analyse_exp = TICK_ETERNITY;
Christopher Fauletd4150ad2021-10-13 15:35:55 +0200613 s->current_rule = s->current_rule_list = NULL;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100614 DBG_TRACE_DEVEL("leaving on error",
615 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200616 return 0;
617
618 return_prx_yield:
619 channel_dont_connect(req);
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100620 DBG_TRACE_DEVEL("waiting for more data",
621 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200622 return 0;
623}
624
625/* This function performs all the processing enabled for the current request.
626 * It returns 1 if the processing can continue on next analysers, or zero if it
627 * needs more data, encounters an error, or wants to immediately abort the
628 * request. It relies on buffers flags, and updates s->req.analysers.
629 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200630int http_process_request(struct stream *s, struct channel *req, int an_bit)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200631{
632 struct session *sess = s->sess;
633 struct http_txn *txn = s->txn;
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200634 struct htx *htx;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200635 struct connection *cli_conn = objt_conn(strm_sess(s)->origin);
636
Christopher Faulet8bebd2f2020-10-06 17:54:56 +0200637 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200638
639 /*
640 * Right now, we know that we have processed the entire headers
641 * and that unwanted requests have been filtered out. We can do
642 * whatever we want with the remaining request. Also, now we
643 * may have separate values for ->fe, ->be.
644 */
Christopher Faulet27ba2dc2018-12-05 11:53:24 +0100645 htx = htxbuf(&req->buf);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200646
647 /*
Christopher Faulete0768eb2018-10-03 16:38:02 +0200648 * 7: Now we can work with the cookies.
649 * Note that doing so might move headers in the request, but
650 * the fields will stay coherent and the URI will not move.
651 * This should only be performed in the backend.
652 */
653 if (s->be->cookie_name || sess->fe->capture_name)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200654 http_manage_client_side_cookies(s, req);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200655
Tim Duesterhus2825b4b2020-02-28 15:13:34 +0100656 /* 8: Generate unique ID if a "unique-id-format" is defined.
657 *
658 * A unique ID is generated even when it is not sent to ensure that the ID can make use of
659 * fetches only available in the HTTP request processing stage.
660 */
661 if (!LIST_ISEMPTY(&sess->fe->format_unique_id)) {
Tim Duesterhusa17e6622020-03-05 20:19:02 +0100662 struct ist unique_id = stream_generate_unique_id(s, &sess->fe->format_unique_id);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200663
Tim Duesterhusa17e6622020-03-05 20:19:02 +0100664 if (!isttest(unique_id)) {
Christopher Fauletb8a53712019-12-16 11:29:38 +0100665 if (!(s->flags & SF_ERR_MASK))
666 s->flags |= SF_ERR_RESOURCE;
667 goto return_int_err;
668 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200669
Tim Duesterhus2825b4b2020-02-28 15:13:34 +0100670 /* send unique ID if a "unique-id-header" is defined */
Tim Duesterhus0643b0e2020-03-05 17:56:35 +0100671 if (isttest(sess->fe->header_unique_id) &&
Tim Duesterhus7ad27d42022-05-18 00:22:15 +0200672 unlikely(!http_add_header(htx, sess->fe->header_unique_id, unique_id)))
Christopher Fauletd649b572022-06-01 17:42:35 +0200673 goto return_fail_rewrite;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200674 }
675
Aurelien DARRAGONb2e2ec52023-01-09 11:09:03 +0100676 /* handle http extensions (if configured) */
677 if (unlikely(!http_handle_7239_header(s, req)))
678 goto return_fail_rewrite;
679 if (unlikely(!http_handle_xff_header(s, req)))
680 goto return_fail_rewrite;
681 if (unlikely(!http_handle_xot_header(s, req)))
682 goto return_fail_rewrite;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200683
Christopher Fauletc2ac5e42021-03-08 18:20:09 +0100684 /* Filter the request headers if there are filters attached to the
685 * stream.
686 */
687 if (HAS_FILTERS(s))
688 req->analysers |= AN_REQ_FLT_HTTP_HDRS;
689
Christopher Faulete0768eb2018-10-03 16:38:02 +0200690 /* If we have no server assigned yet and we're balancing on url_param
691 * with a POST request, we may be interested in checking the body for
692 * that parameter. This will be done in another analyser.
693 */
694 if (!(s->flags & (SF_ASSIGNED|SF_DIRECT)) &&
Willy Tarreau089eaa02019-01-14 15:17:46 +0100695 s->txn->meth == HTTP_METH_POST &&
696 (s->be->lbprm.algo & BE_LB_ALGO) == BE_LB_ALGO_PH) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200697 channel_dont_connect(req);
698 req->analysers |= AN_REQ_HTTP_BODY;
699 }
700
701 req->analysers &= ~AN_REQ_FLT_XFER_DATA;
702 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Willy Tarreau1a18b542018-12-11 16:37:42 +0100703
Christopher Faulete0768eb2018-10-03 16:38:02 +0200704 /* We expect some data from the client. Unless we know for sure
705 * we already have a full request, we have to re-enable quick-ack
706 * in case we previously disabled it, otherwise we might cause
707 * the client to delay further data.
708 */
Willy Tarreau9bdcf422023-01-12 19:40:42 +0100709 if ((sess->listener && (sess->listener->bind_conf->options & BC_O_NOQUICKACK)) && !(htx->flags & HTX_FL_EOM))
Willy Tarreau1a18b542018-12-11 16:37:42 +0100710 conn_set_quickack(cli_conn, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200711
712 /*************************************************************
713 * OK, that's finished for the headers. We have done what we *
714 * could. Let's switch to the DATA state. *
715 ************************************************************/
716 req->analyse_exp = TICK_ETERNITY;
717 req->analysers &= ~an_bit;
718
Willy Tarreau69530f52023-04-28 09:16:15 +0200719 s->logs.request_ts = now_ns;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200720 /* OK let's go on with the BODY now */
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100721 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200722 return 1;
723
Christopher Fauletd649b572022-06-01 17:42:35 +0200724 return_fail_rewrite:
725 if (!(s->flags & SF_ERR_MASK))
726 s->flags |= SF_ERR_PRXCOND;
727 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_rewrites);
728 if (s->flags & SF_BE_ASSIGNED)
729 _HA_ATOMIC_INC(&s->be->be_counters.failed_rewrites);
730 if (sess->listener && sess->listener->counters)
731 _HA_ATOMIC_INC(&sess->listener->counters->failed_rewrites);
732 if (objt_server(s->target))
733 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_rewrites);
734 /* fall through */
735
Christopher Fauletb8a53712019-12-16 11:29:38 +0100736 return_int_err:
737 txn->status = 500;
738 if (!(s->flags & SF_ERR_MASK))
739 s->flags |= SF_ERR_INTERNAL;
Willy Tarreau4781b152021-04-06 13:53:36 +0200740 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
Christopher Fauletcff0f732019-12-16 16:13:44 +0100741 if (s->flags & SF_BE_ASSIGNED)
Willy Tarreau4781b152021-04-06 13:53:36 +0200742 _HA_ATOMIC_INC(&s->be->be_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +0100743 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +0200744 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletb8a53712019-12-16 11:29:38 +0100745
Christopher Fauletb8a53712019-12-16 11:29:38 +0100746 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulet4a66c942023-01-13 09:43:21 +0100747 http_set_term_flags(s);
Christopher Fauletb8a53712019-12-16 11:29:38 +0100748
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100749 DBG_TRACE_DEVEL("leaving on error",
750 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200751 return 0;
752}
753
754/* This function is an analyser which processes the HTTP tarpit. It always
755 * returns zero, at the beginning because it prevents any other processing
756 * from occurring, and at the end because it terminates the request.
757 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200758int http_process_tarpit(struct stream *s, struct channel *req, int an_bit)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200759{
760 struct http_txn *txn = s->txn;
761
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100762 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, &txn->req);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200763 /* This connection is being tarpitted. The CLIENT side has
764 * already set the connect expiration date to the right
765 * timeout. We just have to check that the client is still
766 * there and that the timeout has not expired.
767 */
768 channel_dont_connect(req);
Christopher Fauletca5309a2023-04-17 16:17:32 +0200769 if (!(s->scf->flags & (SC_FL_ABRT_DONE|SC_FL_EOS)) &&
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100770 !tick_is_expired(req->analyse_exp, now_ms)) {
Christopher Fauletb0c87f12021-10-29 14:37:07 +0200771 /* Be sure to drain all data from the request channel */
772 channel_htx_erase(req, htxbuf(&req->buf));
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100773 DBG_TRACE_DEVEL("waiting for tarpit timeout expiry",
774 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200775 return 0;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100776 }
777
Christopher Faulete0768eb2018-10-03 16:38:02 +0200778
779 /* We will set the queue timer to the time spent, just for
780 * logging purposes. We fake a 500 server error, so that the
781 * attacker will not suspect his connection has been tarpitted.
782 * It will not cause trouble to the logs because we can exclude
783 * the tarpitted connections by filtering on the 'PT' status flags.
784 */
Willy Tarreau69530f52023-04-28 09:16:15 +0200785 s->logs.t_queue = ns_to_ms(now_ns - s->logs.accept_ts);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200786
Christopher Fauletd7bac882023-04-14 12:05:55 +0200787 http_reply_and_close(s, txn->status, (!(s->scf->flags & SC_FL_ERROR) ? http_error_message(s) : NULL));
Christopher Faulet4a66c942023-01-13 09:43:21 +0100788 http_set_term_flags(s);
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100789
790 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200791 return 0;
792}
793
794/* This function is an analyser which waits for the HTTP request body. It waits
795 * for either the buffer to be full, or the full advertised contents to have
796 * reached the buffer. It must only be called after the standard HTTP request
797 * processing has occurred, because it expects the request to be parsed and will
798 * look for the Expect header. It may send a 100-Continue interim response. It
Christopher Faulet2954bcc2023-04-05 10:42:03 +0200799 * returns zero if it needs to read more data, or 1 once it has completed its
800 * analysis.
Christopher Faulete0768eb2018-10-03 16:38:02 +0200801 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200802int http_wait_for_request_body(struct stream *s, struct channel *req, int an_bit)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200803{
804 struct session *sess = s->sess;
805 struct http_txn *txn = s->txn;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200806
Christopher Fauletf4569bb2023-01-13 10:49:31 +0100807 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, &s->txn->req);
Christopher Fauletf76ebe82018-10-24 11:16:22 +0200808
Christopher Fauletf76ebe82018-10-24 11:16:22 +0200809
Christopher Faulet021a8e42021-03-29 10:46:38 +0200810 switch (http_wait_for_msg_body(s, req, s->be->timeout.httpreq, 0)) {
811 case HTTP_RULE_RES_CONT:
812 goto http_end;
813 case HTTP_RULE_RES_YIELD:
814 goto missing_data_or_waiting;
815 case HTTP_RULE_RES_BADREQ:
Willy Tarreau4236f032019-03-05 10:43:32 +0100816 goto return_bad_req;
Christopher Faulet021a8e42021-03-29 10:46:38 +0200817 case HTTP_RULE_RES_ERROR:
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200818 goto return_int_err;
Christopher Faulet021a8e42021-03-29 10:46:38 +0200819 case HTTP_RULE_RES_ABRT:
Christopher Fauletb8a53712019-12-16 11:29:38 +0100820 goto return_prx_cond;
Christopher Faulet021a8e42021-03-29 10:46:38 +0200821 default:
822 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200823 }
824
825 http_end:
826 /* The situation will not evolve, so let's give up on the analysis. */
Willy Tarreau69530f52023-04-28 09:16:15 +0200827 s->logs.request_ts = now_ns; /* update the request timer to reflect full request */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200828 req->analysers &= ~an_bit;
829 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100830 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200831 return 1;
832
Christopher Faulet021a8e42021-03-29 10:46:38 +0200833 missing_data_or_waiting:
834 channel_dont_connect(req);
835 DBG_TRACE_DEVEL("waiting for more data",
836 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
837 return 0;
838
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200839 return_int_err:
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200840 txn->status = 500;
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200841 if (!(s->flags & SF_ERR_MASK))
842 s->flags |= SF_ERR_INTERNAL;
Willy Tarreau4781b152021-04-06 13:53:36 +0200843 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
Christopher Fauletcff0f732019-12-16 16:13:44 +0100844 if (s->flags & SF_BE_ASSIGNED)
Willy Tarreau4781b152021-04-06 13:53:36 +0200845 _HA_ATOMIC_INC(&s->be->be_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +0100846 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +0200847 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Faulet021a8e42021-03-29 10:46:38 +0200848 goto return_prx_err;
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200849
Christopher Faulete0768eb2018-10-03 16:38:02 +0200850 return_bad_req: /* let's centralize all bad requests */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200851 txn->status = 400;
Willy Tarreau4781b152021-04-06 13:53:36 +0200852 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +0100853 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +0200854 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletb8a53712019-12-16 11:29:38 +0100855 /* fall through */
856
Christopher Faulet021a8e42021-03-29 10:46:38 +0200857 return_prx_err:
Christopher Fauletb8a53712019-12-16 11:29:38 +0100858 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulet021a8e42021-03-29 10:46:38 +0200859 /* fall through */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200860
Christopher Faulet021a8e42021-03-29 10:46:38 +0200861 return_prx_cond:
Christopher Fauletf0d80df2023-01-13 10:20:20 +0100862 http_set_term_flags(s);
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200863
Christopher Faulete0768eb2018-10-03 16:38:02 +0200864 req->analysers &= AN_REQ_FLT_END;
Christopher Fauletb8a53712019-12-16 11:29:38 +0100865 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100866 DBG_TRACE_DEVEL("leaving on error",
867 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200868 return 0;
869}
870
871/* This function is an analyser which forwards request body (including chunk
872 * sizes if any). It is called as soon as we must forward, even if we forward
873 * zero byte. The only situation where it must not be called is when we're in
874 * tunnel mode and we want to forward till the close. It's used both to forward
875 * remaining data and to resync after end of body. It expects the msg_state to
876 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
877 * read more data, or 1 once we can go on with next request or end the stream.
878 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len
879 * bytes of pending data + the headers if not already done.
880 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200881int http_request_forward_body(struct stream *s, struct channel *req, int an_bit)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200882{
883 struct session *sess = s->sess;
884 struct http_txn *txn = s->txn;
Christopher Faulet9768c262018-10-22 09:34:31 +0200885 struct http_msg *msg = &txn->req;
886 struct htx *htx;
Christopher Faulet93e02d82019-03-08 14:18:50 +0100887 short status = 0;
Christopher Fauletaed82cf2018-11-30 22:22:32 +0100888 int ret;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200889
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100890 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200891
Christopher Faulet27ba2dc2018-12-05 11:53:24 +0100892 htx = htxbuf(&req->buf);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200893
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200894 if (htx->flags & HTX_FL_PARSING_ERROR)
895 goto return_bad_req;
896 if (htx->flags & HTX_FL_PROCESSING_ERROR)
897 goto return_int_err;
898
Christopher Faulete0768eb2018-10-03 16:38:02 +0200899 /* Note that we don't have to send 100-continue back because we don't
900 * need the data to complete our job, and it's up to the server to
901 * decide whether to return 100, 417 or anything else in return of
902 * an "Expect: 100-continue" header.
903 */
Christopher Faulet9768c262018-10-22 09:34:31 +0200904 if (msg->msg_state == HTTP_MSG_BODY)
905 msg->msg_state = HTTP_MSG_DATA;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200906
Christopher Faulete0768eb2018-10-03 16:38:02 +0200907 /* in most states, we should abort in case of early close */
908 channel_auto_close(req);
909
910 if (req->to_forward) {
Christopher Faulet66af0b22019-03-22 14:54:52 +0100911 if (req->to_forward == CHN_INFINITE_FORWARD) {
Christopher Faulet904763f2023-03-22 14:53:11 +0100912 if (s->scf->flags & SC_FL_EOI)
Christopher Faulet1a3e0272019-11-15 16:31:46 +0100913 msg->msg_state = HTTP_MSG_ENDING;
Christopher Faulet66af0b22019-03-22 14:54:52 +0100914 }
915 else {
916 /* We can't process the buffer's contents yet */
917 req->flags |= CF_WAKE_WRITE;
918 goto missing_data_or_waiting;
919 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200920 }
921
Christopher Faulet1a3e0272019-11-15 16:31:46 +0100922 if (msg->msg_state >= HTTP_MSG_ENDING)
923 goto ending;
924
925 if (txn->meth == HTTP_METH_CONNECT) {
926 msg->msg_state = HTTP_MSG_ENDING;
927 goto ending;
928 }
929
Christopher Fauletaed82cf2018-11-30 22:22:32 +0100930 /* Forward input data. We get it by removing all outgoing data not
931 * forwarded yet from HTX data size. If there are some data filters, we
932 * let them decide the amount of data to forward.
Christopher Faulet9768c262018-10-22 09:34:31 +0200933 */
Christopher Fauletaed82cf2018-11-30 22:22:32 +0100934 if (HAS_REQ_DATA_FILTERS(s)) {
935 ret = flt_http_payload(s, msg, htx->data);
936 if (ret < 0)
937 goto return_bad_req;
Christopher Faulet421e7692019-06-13 11:16:45 +0200938 c_adv(req, ret);
Christopher Fauletaed82cf2018-11-30 22:22:32 +0100939 }
940 else {
Christopher Faulet421e7692019-06-13 11:16:45 +0200941 c_adv(req, htx->data - co_data(req));
Christopher Faulet2f7c82b2023-02-20 14:06:52 +0100942 if ((global.tune.options & GTUNE_USE_FAST_FWD) && (msg->flags & HTTP_MSGF_XFER_LEN))
Christopher Faulet66af0b22019-03-22 14:54:52 +0100943 channel_htx_forward_forever(req, htx);
Christopher Fauletaed82cf2018-11-30 22:22:32 +0100944 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200945
Christopher Faulet1a3e0272019-11-15 16:31:46 +0100946 if (htx->data != co_data(req))
947 goto missing_data_or_waiting;
Christopher Fauletd20fdb02019-06-13 16:43:22 +0200948
Christopher Faulet9768c262018-10-22 09:34:31 +0200949 /* Check if the end-of-message is reached and if so, switch the message
Christopher Fauletd20fdb02019-06-13 16:43:22 +0200950 * in HTTP_MSG_ENDING state. Then if all data was marked to be
951 * forwarded, set the state to HTTP_MSG_DONE.
Christopher Faulet9768c262018-10-22 09:34:31 +0200952 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +0100953 if (!(htx->flags & HTX_FL_EOM))
Christopher Faulet9768c262018-10-22 09:34:31 +0200954 goto missing_data_or_waiting;
955
Christopher Fauletd20fdb02019-06-13 16:43:22 +0200956 msg->msg_state = HTTP_MSG_ENDING;
Christopher Faulet9768c262018-10-22 09:34:31 +0200957
Christopher Faulet1a3e0272019-11-15 16:31:46 +0100958 ending:
Christopher Faulet84d3ef92023-03-17 15:45:58 +0100959 s->scb->flags &= ~SC_FL_SND_EXP_MORE; /* no more data are expected to be send */
Christopher Faulet2151cdd2020-07-22 16:34:59 +0200960
Christopher Faulet1a3e0272019-11-15 16:31:46 +0100961 /* other states, ENDING...TUNNEL */
962 if (msg->msg_state >= HTTP_MSG_DONE)
963 goto done;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200964
Christopher Fauletaed82cf2018-11-30 22:22:32 +0100965 if (HAS_REQ_DATA_FILTERS(s)) {
966 ret = flt_http_end(s, msg);
967 if (ret <= 0) {
968 if (!ret)
969 goto missing_data_or_waiting;
970 goto return_bad_req;
971 }
972 }
973
Christopher Faulet1a3e0272019-11-15 16:31:46 +0100974 if (txn->meth == HTTP_METH_CONNECT)
975 msg->msg_state = HTTP_MSG_TUNNEL;
976 else {
977 msg->msg_state = HTTP_MSG_DONE;
978 req->to_forward = 0;
979 }
980
981 done:
982 /* we don't want to forward closes on DONE except in tunnel mode. */
983 if (!(txn->flags & TX_CON_WANT_TUN))
984 channel_dont_close(req);
985
Christopher Faulet64350bb2023-04-13 16:37:37 +0200986 if ((s->scb->flags & SC_FL_SHUT_DONE) && co_data(req)) {
Christopher Fauletf2b02cf2023-01-13 11:02:28 +0100987 /* request errors are most likely due to the server aborting the
988 * transfer. */
989 goto return_srv_abort;
990 }
991
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200992 http_end_request(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200993 if (!(req->analysers & an_bit)) {
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100994 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200995 return 1;
996 }
997
998 /* If "option abortonclose" is set on the backend, we want to monitor
999 * the client's connection and forward any shutdown notification to the
1000 * server, which will decide whether to close or to go on processing the
1001 * request. We only do that in tunnel mode, and not in other modes since
1002 * it can be abused to exhaust source ports. */
Christopher Faulet769d0e92019-03-22 14:23:18 +01001003 if (s->be->options & PR_O_ABRT_CLOSE) {
Christopher Faulete0768eb2018-10-03 16:38:02 +02001004 channel_auto_read(req);
Christopher Fauletca5309a2023-04-17 16:17:32 +02001005 if ((s->scf->flags & (SC_FL_ABRT_DONE|SC_FL_EOS)) && !(txn->flags & TX_CON_WANT_TUN))
Willy Tarreaucb041662022-05-17 19:44:42 +02001006 s->scb->flags |= SC_FL_NOLINGER;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001007 channel_auto_close(req);
1008 }
1009 else if (s->txn->meth == HTTP_METH_POST) {
1010 /* POST requests may require to read extra CRLF sent by broken
1011 * browsers and which could cause an RST to be sent upon close
1012 * on some systems (eg: Linux). */
1013 channel_auto_read(req);
1014 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001015 DBG_TRACE_DEVEL("waiting for the end of the HTTP txn",
1016 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001017 return 0;
1018
1019 missing_data_or_waiting:
1020 /* stop waiting for data if the input is closed before the end */
Christopher Fauletca5309a2023-04-17 16:17:32 +02001021 if (msg->msg_state < HTTP_MSG_ENDING && (s->scf->flags & (SC_FL_ABRT_DONE|SC_FL_EOS)))
Christopher Faulet93e02d82019-03-08 14:18:50 +01001022 goto return_cli_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001023
1024 waiting:
1025 /* waiting for the last bits to leave the buffer */
Christopher Faulet64350bb2023-04-13 16:37:37 +02001026 if (s->scb->flags & SC_FL_SHUT_DONE)
Christopher Faulet93e02d82019-03-08 14:18:50 +01001027 goto return_srv_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001028
1029 /* When TE: chunked is used, we need to get there again to parse remaining
1030 * chunks even if the client has closed, so we don't want to set CF_DONTCLOSE.
1031 * And when content-length is used, we never want to let the possible
1032 * shutdown be forwarded to the other side, as the state machine will
1033 * take care of it once the client responds. It's also important to
1034 * prevent TIME_WAITs from accumulating on the backend side, and for
1035 * HTTP/2 where the last frame comes with a shutdown.
1036 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001037 if (msg->flags & HTTP_MSGF_XFER_LEN)
Christopher Faulete0768eb2018-10-03 16:38:02 +02001038 channel_dont_close(req);
1039
1040 /* We know that more data are expected, but we couldn't send more that
Christopher Faulet84d3ef92023-03-17 15:45:58 +01001041 * what we did. So we always set the SC_FL_SND_EXP_MORE flag so that the
Christopher Faulete0768eb2018-10-03 16:38:02 +02001042 * system knows it must not set a PUSH on this first part. Interactive
1043 * modes are already handled by the stream sock layer. We must not do
1044 * this in content-length mode because it could present the MSG_MORE
1045 * flag with the last block of forwarded data, which would cause an
1046 * additional delay to be observed by the receiver.
1047 */
Christopher Faulet2151cdd2020-07-22 16:34:59 +02001048 if (HAS_REQ_DATA_FILTERS(s))
Christopher Faulet84d3ef92023-03-17 15:45:58 +01001049 s->scb->flags |= SC_FL_SND_EXP_MORE;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001050
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001051 DBG_TRACE_DEVEL("waiting for more data to forward",
1052 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001053 return 0;
1054
Christopher Faulet93e02d82019-03-08 14:18:50 +01001055 return_cli_abort:
Willy Tarreau4781b152021-04-06 13:53:36 +02001056 _HA_ATOMIC_INC(&sess->fe->fe_counters.cli_aborts);
1057 _HA_ATOMIC_INC(&s->be->be_counters.cli_aborts);
William Lallemand36119de2021-03-08 15:26:48 +01001058 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02001059 _HA_ATOMIC_INC(&sess->listener->counters->cli_aborts);
Christopher Faulet93e02d82019-03-08 14:18:50 +01001060 if (objt_server(s->target))
Willy Tarreau4781b152021-04-06 13:53:36 +02001061 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.cli_aborts);
Christopher Faulet93e02d82019-03-08 14:18:50 +01001062 if (!(s->flags & SF_ERR_MASK))
Christopher Fauletf2b02cf2023-01-13 11:02:28 +01001063 s->flags |= ((req->flags & CF_READ_TIMEOUT) ? SF_ERR_CLITO : SF_ERR_CLICL);
Christopher Faulet93e02d82019-03-08 14:18:50 +01001064 status = 400;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001065 goto return_prx_cond;
Christopher Faulet93e02d82019-03-08 14:18:50 +01001066
1067 return_srv_abort:
Willy Tarreau4781b152021-04-06 13:53:36 +02001068 _HA_ATOMIC_INC(&sess->fe->fe_counters.srv_aborts);
1069 _HA_ATOMIC_INC(&s->be->be_counters.srv_aborts);
William Lallemand36119de2021-03-08 15:26:48 +01001070 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02001071 _HA_ATOMIC_INC(&sess->listener->counters->srv_aborts);
Christopher Faulet93e02d82019-03-08 14:18:50 +01001072 if (objt_server(s->target))
Willy Tarreau4781b152021-04-06 13:53:36 +02001073 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.srv_aborts);
Christopher Faulet93e02d82019-03-08 14:18:50 +01001074 if (!(s->flags & SF_ERR_MASK))
Christopher Fauletf2b02cf2023-01-13 11:02:28 +01001075 s->flags |= ((req->flags & CF_WRITE_TIMEOUT) ? SF_ERR_SRVTO : SF_ERR_SRVCL);
Christopher Faulet93e02d82019-03-08 14:18:50 +01001076 status = 502;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001077 goto return_prx_cond;
Christopher Faulet93e02d82019-03-08 14:18:50 +01001078
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001079 return_int_err:
1080 if (!(s->flags & SF_ERR_MASK))
1081 s->flags |= SF_ERR_INTERNAL;
Willy Tarreau4781b152021-04-06 13:53:36 +02001082 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
1083 _HA_ATOMIC_INC(&s->be->be_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +01001084 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02001085 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletcff0f732019-12-16 16:13:44 +01001086 if (objt_server(s->target))
Willy Tarreau4781b152021-04-06 13:53:36 +02001087 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.internal_errors);
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001088 status = 500;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001089 goto return_prx_cond;
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001090
Christopher Faulet93e02d82019-03-08 14:18:50 +01001091 return_bad_req:
Willy Tarreau4781b152021-04-06 13:53:36 +02001092 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
William Lallemand36119de2021-03-08 15:26:48 +01001093 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02001094 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Faulet93e02d82019-03-08 14:18:50 +01001095 status = 400;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001096 /* fall through */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001097
Christopher Fauletb8a53712019-12-16 11:29:38 +01001098 return_prx_cond:
Christopher Faulet9768c262018-10-22 09:34:31 +02001099 if (txn->status > 0) {
Christopher Faulete0768eb2018-10-03 16:38:02 +02001100 /* Note: we don't send any error if some data were already sent */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001101 http_reply_and_close(s, txn->status, NULL);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001102 } else {
Christopher Faulet93e02d82019-03-08 14:18:50 +01001103 txn->status = status;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001104 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001105 }
Christopher Fauletf2b02cf2023-01-13 11:02:28 +01001106 http_set_term_flags(s);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001107 DBG_TRACE_DEVEL("leaving on error ",
1108 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001109 return 0;
1110}
1111
Willy Tarreau4596fe22022-05-17 19:07:51 +02001112/* Reset the stream and the backend stream connector to a situation suitable for attemption connection */
Olivier Houcharda254a372019-04-05 15:30:12 +02001113/* Returns 0 if we can attempt to retry, -1 otherwise */
Willy Tarreaub49672d2022-05-27 10:13:37 +02001114static __inline int do_l7_retry(struct stream *s, struct stconn *sc)
Olivier Houcharda254a372019-04-05 15:30:12 +02001115{
Christopher Faulet9f5382e2021-05-21 13:46:14 +02001116 struct channel *req, *res;
1117 int co_data;
Olivier Houcharda254a372019-04-05 15:30:12 +02001118
Christopher Faulet731c8e62022-03-29 16:08:44 +02001119 if (s->conn_retries >= s->be->conn_retries)
Christopher Faulet552601d2021-05-26 10:31:06 +02001120 return -1;
Christopher Faulet41ade742023-03-01 15:45:39 +01001121 s->conn_retries++;
Christopher Faulete763c8c2021-05-05 18:23:59 +02001122 if (objt_server(s->target)) {
1123 if (s->flags & SF_CURR_SESS) {
1124 s->flags &= ~SF_CURR_SESS;
1125 _HA_ATOMIC_DEC(&__objt_server(s->target)->cur_sess);
1126 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001127 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.retries);
Christopher Faulete763c8c2021-05-05 18:23:59 +02001128 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001129 _HA_ATOMIC_INC(&s->be->be_counters.retries);
Willy Tarreau223995e2019-05-04 10:38:31 +02001130
Christopher Faulet9f5382e2021-05-21 13:46:14 +02001131 req = &s->req;
1132 res = &s->res;
Christopher Faulet87633c32023-04-03 18:32:50 +02001133
Olivier Houcharda254a372019-04-05 15:30:12 +02001134 /* Remove any write error from the request, and read error from the response */
Christopher Fauletca5309a2023-04-17 16:17:32 +02001135 s->scf->flags &= ~(SC_FL_EOS|SC_FL_ABRT_DONE|SC_FL_ABRT_WANTED);
Christopher Faulet87633c32023-04-03 18:32:50 +02001136 req->flags &= ~CF_WRITE_TIMEOUT;
1137 res->flags &= ~(CF_READ_TIMEOUT | CF_READ_EVENT);
Christopher Faulet7bf46bb2022-01-04 10:56:03 +01001138 res->analysers &= AN_RES_FLT_END;
Christopher Faulet50264b42022-03-30 19:39:30 +02001139 s->conn_err_type = STRM_ET_NONE;
Christopher Fauletae024ce2022-03-29 19:02:31 +02001140 s->flags &= ~(SF_CONN_EXP | SF_ERR_MASK | SF_FINST_MASK);
1141 s->conn_exp = TICK_ETERNITY;
Olivier Houchard4bd58672019-07-12 16:16:59 +02001142 stream_choose_redispatch(s);
Olivier Houcharda254a372019-04-05 15:30:12 +02001143 res->to_forward = 0;
1144 res->analyse_exp = TICK_ETERNITY;
1145 res->total = 0;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001146
Christopher Fauleta1d14a72023-04-14 10:42:08 +02001147 s->scb->flags &= ~(SC_FL_ERROR|SC_FL_SHUT_DONE|SC_FL_SHUT_WANTED);
Willy Tarreau19c65a92022-05-27 08:49:24 +02001148 if (sc_reset_endp(s->scb) < 0) {
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01001149 if (!(s->flags & SF_ERR_MASK))
1150 s->flags |= SF_ERR_INTERNAL;
1151 return -1;
1152 }
Olivier Houcharda254a372019-04-05 15:30:12 +02001153
Christopher Faulet9f5382e2021-05-21 13:46:14 +02001154 b_free(&req->buf);
1155 /* Swap the L7 buffer with the channel buffer */
1156 /* We know we stored the co_data as b_data, so get it there */
Christopher Faulete05bf9e2022-03-29 15:23:40 +02001157 co_data = b_data(&s->txn->l7_buffer);
1158 b_set_data(&s->txn->l7_buffer, b_size(&s->txn->l7_buffer));
1159 b_xfer(&req->buf, &s->txn->l7_buffer, b_data(&s->txn->l7_buffer));
Christopher Faulet9f5382e2021-05-21 13:46:14 +02001160 co_set_data(req, co_data);
Christopher Faulet5b82cc52020-10-12 15:18:50 +02001161
Ilya Shipitsinacf84592021-02-06 22:29:08 +05001162 DBG_TRACE_DEVEL("perform a L7 retry", STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, s->txn);
Christopher Faulet9f5382e2021-05-21 13:46:14 +02001163
Olivier Houcharda254a372019-04-05 15:30:12 +02001164 b_reset(&res->buf);
1165 co_set_data(res, 0);
1166 return 0;
1167}
1168
Christopher Faulete0768eb2018-10-03 16:38:02 +02001169/* This stream analyser waits for a complete HTTP response. It returns 1 if the
1170 * processing can continue on next analysers, or zero if it either needs more
1171 * data or wants to immediately abort the response (eg: timeout, error, ...). It
1172 * is tied to AN_RES_WAIT_HTTP and may may remove itself from s->res.analysers
1173 * when it has nothing left to do, and may remove any analyser when it wants to
1174 * abort.
1175 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001176int http_wait_for_response(struct stream *s, struct channel *rep, int an_bit)
Christopher Faulete0768eb2018-10-03 16:38:02 +02001177{
Christopher Faulet9768c262018-10-22 09:34:31 +02001178 /*
1179 * We will analyze a complete HTTP response to check the its syntax.
1180 *
1181 * Once the start line and all headers are received, we may perform a
1182 * capture of the error (if any), and we will set a few fields. We also
1183 * logging and finally headers capture.
1184 */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001185 struct session *sess = s->sess;
1186 struct http_txn *txn = s->txn;
1187 struct http_msg *msg = &txn->rsp;
Christopher Faulet9768c262018-10-22 09:34:31 +02001188 struct htx *htx;
Christopher Faulet61608322018-11-23 16:23:45 +01001189 struct connection *srv_conn;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001190 struct htx_sl *sl;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001191 int n;
1192
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001193 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001194
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001195 htx = htxbuf(&rep->buf);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001196
Willy Tarreau4236f032019-03-05 10:43:32 +01001197 /* Parsing errors are caught here */
1198 if (htx->flags & HTX_FL_PARSING_ERROR)
1199 goto return_bad_res;
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001200 if (htx->flags & HTX_FL_PROCESSING_ERROR)
1201 goto return_int_err;
Willy Tarreau4236f032019-03-05 10:43:32 +01001202
Christopher Faulete0768eb2018-10-03 16:38:02 +02001203 /*
1204 * Now we quickly check if we have found a full valid response.
1205 * If not so, we check the FD and buffer states before leaving.
1206 * A full response is indicated by the fact that we have seen
1207 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
1208 * responses are checked first.
1209 *
1210 * Depending on whether the client is still there or not, we
1211 * may send an error response back or not. Note that normally
1212 * we should only check for HTTP status there, and check I/O
1213 * errors somewhere else.
1214 */
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001215 next_one:
Christopher Faulet29f17582019-05-23 11:03:26 +02001216 if (unlikely(htx_is_empty(htx) || htx->first == -1)) {
Christopher Faulet9768c262018-10-22 09:34:31 +02001217 /* 1: have we encountered a read error ? */
Christopher Fauletd7bac882023-04-14 12:05:55 +02001218 if (s->scb->flags & SC_FL_ERROR) {
Willy Tarreaufd9417b2022-05-18 16:23:22 +02001219 struct connection *conn = sc_conn(s->scb);
Olivier Houchard865d8392019-05-03 22:46:27 +02001220
Christopher Faulet6f78ac52023-03-01 15:47:18 +01001221
1222 if ((txn->flags & TX_L7_RETRY) &&
1223 (s->be->retry_type & PR_RE_DISCONNECTED) &&
1224 (!conn || conn->err_code != CO_ER_SSL_EARLY_FAILED)) {
1225 if (co_data(rep) || do_l7_retry(s, s->scb) == 0)
1226 return 0;
1227 }
1228
1229 /* Perform a L7 retry on empty response or because server refuses the early data. */
Christopher Faulete05bf9e2022-03-29 15:23:40 +02001230 if ((txn->flags & TX_L7_RETRY) &&
Christopher Fauletd9769232021-05-26 12:15:37 +02001231 (s->be->retry_type & PR_RE_EARLY_ERROR) &&
1232 conn && conn->err_code == CO_ER_SSL_EARLY_FAILED &&
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02001233 do_l7_retry(s, s->scb) == 0) {
Christopher Fauletd9769232021-05-26 12:15:37 +02001234 DBG_TRACE_DEVEL("leaving on L7 retry",
1235 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
1236 return 0;
1237 }
1238
Olivier Houchard6db16992019-05-17 15:40:49 +02001239 if (txn->flags & TX_NOT_FIRST)
1240 goto abort_keep_alive;
1241
Willy Tarreau4781b152021-04-06 13:53:36 +02001242 _HA_ATOMIC_INC(&s->be->be_counters.failed_resp);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001243 if (objt_server(s->target)) {
Willy Tarreau4781b152021-04-06 13:53:36 +02001244 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_resp);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001245 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_READ_ERROR);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001246 }
1247
Christopher Fauletd9769232021-05-26 12:15:37 +02001248 /* if the server refused the early data, just send a 425 */
1249 if (conn && conn->err_code == CO_ER_SSL_EARLY_FAILED)
Olivier Houchard865d8392019-05-03 22:46:27 +02001250 txn->status = 425;
Christopher Fauletd9769232021-05-26 12:15:37 +02001251 else {
1252 txn->status = 502;
Willy Tarreau826f3ab2021-02-10 12:07:15 +01001253 stream_inc_http_fail_ctr(s);
Christopher Fauletd9769232021-05-26 12:15:37 +02001254 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02001255
Willy Tarreaucb041662022-05-17 19:44:42 +02001256 s->scb->flags |= SC_FL_NOLINGER;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001257 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001258
1259 if (!(s->flags & SF_ERR_MASK))
1260 s->flags |= SF_ERR_SRVCL;
Christopher Faulet4a66c942023-01-13 09:43:21 +01001261 http_set_term_flags(s);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001262 DBG_TRACE_DEVEL("leaving on error",
1263 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001264 return 0;
1265 }
1266
Christopher Faulet9768c262018-10-22 09:34:31 +02001267 /* 2: read timeout : return a 504 to the client. */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001268 else if (rep->flags & CF_READ_TIMEOUT) {
Christopher Faulete05bf9e2022-03-29 15:23:40 +02001269 if ((txn->flags & TX_L7_RETRY) &&
Olivier Houcharda254a372019-04-05 15:30:12 +02001270 (s->be->retry_type & PR_RE_TIMEOUT)) {
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02001271 if (co_data(rep) || do_l7_retry(s, s->scb) == 0) {
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001272 DBG_TRACE_DEVEL("leaving on L7 retry",
1273 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Olivier Houcharda254a372019-04-05 15:30:12 +02001274 return 0;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001275 }
Olivier Houcharda254a372019-04-05 15:30:12 +02001276 }
Willy Tarreau4781b152021-04-06 13:53:36 +02001277 _HA_ATOMIC_INC(&s->be->be_counters.failed_resp);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001278 if (objt_server(s->target)) {
Willy Tarreau4781b152021-04-06 13:53:36 +02001279 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_resp);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001280 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_READ_TIMEOUT);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001281 }
1282
Christopher Faulete0768eb2018-10-03 16:38:02 +02001283 txn->status = 504;
Willy Tarreau826f3ab2021-02-10 12:07:15 +01001284 stream_inc_http_fail_ctr(s);
Willy Tarreaucb041662022-05-17 19:44:42 +02001285 s->scb->flags |= SC_FL_NOLINGER;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001286 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001287
1288 if (!(s->flags & SF_ERR_MASK))
1289 s->flags |= SF_ERR_SRVTO;
Christopher Faulet4a66c942023-01-13 09:43:21 +01001290 http_set_term_flags(s);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001291 DBG_TRACE_DEVEL("leaving on error",
1292 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001293 return 0;
1294 }
1295
Christopher Faulet9768c262018-10-22 09:34:31 +02001296 /* 3: client abort with an abortonclose */
Christopher Fauletca5309a2023-04-17 16:17:32 +02001297 else if ((s->scb->flags & (SC_FL_EOS|SC_FL_ABRT_DONE)) && (s->scb->flags & SC_FL_SHUT_DONE) &&
1298 (s->scf->flags & (SC_FL_EOS|SC_FL_ABRT_DONE))) {
Willy Tarreau4781b152021-04-06 13:53:36 +02001299 _HA_ATOMIC_INC(&sess->fe->fe_counters.cli_aborts);
1300 _HA_ATOMIC_INC(&s->be->be_counters.cli_aborts);
William Lallemand36119de2021-03-08 15:26:48 +01001301 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02001302 _HA_ATOMIC_INC(&sess->listener->counters->cli_aborts);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001303 if (objt_server(s->target))
Willy Tarreau4781b152021-04-06 13:53:36 +02001304 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.cli_aborts);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001305
Christopher Faulete0768eb2018-10-03 16:38:02 +02001306 txn->status = 400;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001307 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001308
1309 if (!(s->flags & SF_ERR_MASK))
1310 s->flags |= SF_ERR_CLICL;
Christopher Faulet4a66c942023-01-13 09:43:21 +01001311 http_set_term_flags(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001312
1313 /* process_stream() will take care of the error */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001314 DBG_TRACE_DEVEL("leaving on error",
1315 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001316 return 0;
1317 }
1318
Christopher Faulet9768c262018-10-22 09:34:31 +02001319 /* 4: close from server, capture the response if the server has started to respond */
Christopher Fauletca5309a2023-04-17 16:17:32 +02001320 else if (s->scb->flags & (SC_FL_EOS|SC_FL_ABRT_DONE)) {
Christopher Faulete05bf9e2022-03-29 15:23:40 +02001321 if ((txn->flags & TX_L7_RETRY) &&
Olivier Houcharda254a372019-04-05 15:30:12 +02001322 (s->be->retry_type & PR_RE_DISCONNECTED)) {
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02001323 if (co_data(rep) || do_l7_retry(s, s->scb) == 0) {
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001324 DBG_TRACE_DEVEL("leaving on L7 retry",
1325 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Olivier Houcharda254a372019-04-05 15:30:12 +02001326 return 0;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001327 }
Olivier Houcharda254a372019-04-05 15:30:12 +02001328 }
1329
Olivier Houchard6db16992019-05-17 15:40:49 +02001330 if (txn->flags & TX_NOT_FIRST)
1331 goto abort_keep_alive;
1332
Willy Tarreau4781b152021-04-06 13:53:36 +02001333 _HA_ATOMIC_INC(&s->be->be_counters.failed_resp);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001334 if (objt_server(s->target)) {
Willy Tarreau4781b152021-04-06 13:53:36 +02001335 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_resp);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001336 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_BROKEN_PIPE);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001337 }
1338
Christopher Faulete0768eb2018-10-03 16:38:02 +02001339 txn->status = 502;
Willy Tarreau826f3ab2021-02-10 12:07:15 +01001340 stream_inc_http_fail_ctr(s);
Willy Tarreaucb041662022-05-17 19:44:42 +02001341 s->scb->flags |= SC_FL_NOLINGER;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001342 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001343
1344 if (!(s->flags & SF_ERR_MASK))
1345 s->flags |= SF_ERR_SRVCL;
Christopher Faulet4a66c942023-01-13 09:43:21 +01001346 http_set_term_flags(s);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001347 DBG_TRACE_DEVEL("leaving on error",
1348 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001349 return 0;
1350 }
1351
Christopher Faulet9768c262018-10-22 09:34:31 +02001352 /* 5: write error to client (we don't send any message then) */
Christopher Faulet2e56a732023-01-26 16:18:09 +01001353 else if (sc_ep_test(s->scf, SE_FL_ERR_PENDING)) {
Christopher Faulet9768c262018-10-22 09:34:31 +02001354 if (txn->flags & TX_NOT_FIRST)
Christopher Faulete0768eb2018-10-03 16:38:02 +02001355 goto abort_keep_alive;
1356
Willy Tarreau4781b152021-04-06 13:53:36 +02001357 _HA_ATOMIC_INC(&s->be->be_counters.failed_resp);
Christopher Fauletcff0f732019-12-16 16:13:44 +01001358 if (objt_server(s->target))
Willy Tarreau4781b152021-04-06 13:53:36 +02001359 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_resp);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001360 rep->analysers &= AN_RES_FLT_END;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001361
1362 if (!(s->flags & SF_ERR_MASK))
1363 s->flags |= SF_ERR_CLICL;
Christopher Faulet4a66c942023-01-13 09:43:21 +01001364 http_set_term_flags(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001365
1366 /* process_stream() will take care of the error */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001367 DBG_TRACE_DEVEL("leaving on error",
1368 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001369 return 0;
1370 }
1371
1372 channel_dont_close(rep);
Christopher Faulet9a790f62023-03-16 14:40:03 +01001373 s->scb->flags |= SC_FL_RCV_ONCE; /* try to get back here ASAP */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001374 DBG_TRACE_DEVEL("waiting for more data",
1375 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001376 return 0;
1377 }
1378
1379 /* More interesting part now : we know that we have a complete
1380 * response which at least looks like HTTP. We have an indicator
1381 * of each header's length, so we can parse them quickly.
1382 */
Christopher Faulet29f17582019-05-23 11:03:26 +02001383 BUG_ON(htx_get_first_type(htx) != HTX_BLK_RES_SL);
Christopher Faulet297fbb42019-05-13 14:41:27 +02001384 sl = http_get_stline(htx);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001385
Christopher Faulet1f08bff2021-05-26 13:14:39 +02001386 /* Perform a L7 retry because of the status code */
Christopher Faulete05bf9e2022-03-29 15:23:40 +02001387 if ((txn->flags & TX_L7_RETRY) &&
Christopher Faulet1f08bff2021-05-26 13:14:39 +02001388 l7_status_match(s->be, sl->info.res.status) &&
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02001389 do_l7_retry(s, s->scb) == 0) {
Christopher Faulet1f08bff2021-05-26 13:14:39 +02001390 DBG_TRACE_DEVEL("leaving on L7 retry", STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
1391 return 0;
1392 }
1393
1394 /* Now, L7 buffer is useless, it can be released */
Christopher Faulete05bf9e2022-03-29 15:23:40 +02001395 b_free(&txn->l7_buffer);
Christopher Faulet1f08bff2021-05-26 13:14:39 +02001396
1397 msg->msg_state = HTTP_MSG_BODY;
1398
1399
Christopher Faulet9768c262018-10-22 09:34:31 +02001400 /* 0: we might have to print this header in debug mode */
1401 if (unlikely((global.mode & MODE_DEBUG) &&
1402 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
1403 int32_t pos;
1404
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001405 http_debug_stline("srvrep", s, sl);
Christopher Faulet9768c262018-10-22 09:34:31 +02001406
Christopher Fauleta3f15502019-05-13 15:27:23 +02001407 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
Christopher Faulet9768c262018-10-22 09:34:31 +02001408 struct htx_blk *blk = htx_get_blk(htx, pos);
1409 enum htx_blk_type type = htx_get_blk_type(blk);
1410
1411 if (type == HTX_BLK_EOH)
1412 break;
1413 if (type != HTX_BLK_HDR)
1414 continue;
1415
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001416 http_debug_hdr("srvhdr", s,
1417 htx_get_blk_name(htx, blk),
1418 htx_get_blk_value(htx, blk));
Christopher Faulet9768c262018-10-22 09:34:31 +02001419 }
1420 }
1421
Christopher Faulet03599112018-11-27 11:21:21 +01001422 /* 1: get the status code and the version. Also set HTTP flags */
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001423 txn->status = sl->info.res.status;
Christopher Faulet03599112018-11-27 11:21:21 +01001424 if (sl->flags & HTX_SL_F_VER_11)
Christopher Faulet9768c262018-10-22 09:34:31 +02001425 msg->flags |= HTTP_MSGF_VER_11;
Christopher Faulet03599112018-11-27 11:21:21 +01001426 if (sl->flags & HTX_SL_F_XFER_LEN) {
1427 msg->flags |= HTTP_MSGF_XFER_LEN;
Christopher Faulet2a408542020-11-20 14:22:37 +01001428 if (sl->flags & HTX_SL_F_CLEN)
1429 msg->flags |= HTTP_MSGF_CNT_LEN;
1430 else if (sl->flags & HTX_SL_F_CHNK)
1431 msg->flags |= HTTP_MSGF_TE_CHNK;
Christopher Faulet03599112018-11-27 11:21:21 +01001432 }
Christopher Faulet2a408542020-11-20 14:22:37 +01001433 if (sl->flags & HTX_SL_F_BODYLESS)
1434 msg->flags |= HTTP_MSGF_BODYLESS;
Christopher Faulet576c3582021-01-08 15:53:01 +01001435 if (sl->flags & HTX_SL_F_CONN_UPG)
1436 msg->flags |= HTTP_MSGF_CONN_UPG;
Christopher Faulet9768c262018-10-22 09:34:31 +02001437
1438 n = txn->status / 100;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001439 if (n < 1 || n > 5)
1440 n = 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02001441
Christopher Faulete0768eb2018-10-03 16:38:02 +02001442 /* when the client triggers a 4xx from the server, it's most often due
1443 * to a missing object or permission. These events should be tracked
1444 * because if they happen often, it may indicate a brute force or a
1445 * vulnerability scan.
1446 */
1447 if (n == 4)
1448 stream_inc_http_err_ctr(s);
1449
Willy Tarreau826f3ab2021-02-10 12:07:15 +01001450 if (n == 5 && txn->status != 501 && txn->status != 505)
1451 stream_inc_http_fail_ctr(s);
1452
Marcin Deranek3c27dda2020-05-15 18:32:51 +02001453 if (objt_server(s->target)) {
Willy Tarreau4781b152021-04-06 13:53:36 +02001454 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.p.http.rsp[n]);
1455 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.p.http.cum_req);
Marcin Deranek3c27dda2020-05-15 18:32:51 +02001456 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02001457
Christopher Faulete0768eb2018-10-03 16:38:02 +02001458 /* Adjust server's health based on status code. Note: status codes 501
1459 * and 505 are triggered on demand by client request, so we must not
1460 * count them as server failures.
1461 */
1462 if (objt_server(s->target)) {
1463 if (txn->status >= 100 && (txn->status < 500 || txn->status == 501 || txn->status == 505))
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001464 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_OK);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001465 else
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001466 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_STS);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001467 }
1468
1469 /*
1470 * We may be facing a 100-continue response, or any other informational
1471 * 1xx response which is non-final, in which case this is not the right
1472 * response, and we're waiting for the next one. Let's allow this response
1473 * to go to the client and wait for the next one. There's an exception for
1474 * 101 which is used later in the code to switch protocols.
1475 */
1476 if (txn->status < 200 &&
1477 (txn->status == 100 || txn->status >= 102)) {
Christopher Fauletaed82cf2018-11-30 22:22:32 +01001478 FLT_STRM_CB(s, flt_http_reset(s, msg));
Christopher Faulet421e7692019-06-13 11:16:45 +02001479 htx->first = channel_htx_fwd_headers(rep, htx);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001480 msg->msg_state = HTTP_MSG_RPBEFORE;
Christopher Faulet3499f622019-09-03 15:23:54 +02001481 msg->flags = 0;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001482 txn->status = 0;
1483 s->logs.t_data = -1; /* was not a response yet */
Christopher Faulet5c281d52023-03-16 15:53:28 +01001484 s->scf->flags |= SC_FL_SND_ASAP; /* Send ASAP informational messages */
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001485 goto next_one;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001486 }
1487
Christopher Faulet6e6c7b12021-01-08 16:02:05 +01001488 /* A 101-switching-protocols must contains a Connection header with the
1489 * "upgrade" option and the request too. It means both are agree to
1490 * upgrade. It is not so strict because there is no test on the Upgrade
1491 * header content. But it is probably stronger enough for now.
1492 */
1493 if (txn->status == 101 &&
1494 (!(txn->req.flags & HTTP_MSGF_CONN_UPG) || !(txn->rsp.flags & HTTP_MSGF_CONN_UPG)))
1495 goto return_bad_res;
1496
Christopher Faulete0768eb2018-10-03 16:38:02 +02001497 /*
1498 * 2: check for cacheability.
1499 */
1500
1501 switch (txn->status) {
1502 case 200:
1503 case 203:
1504 case 204:
1505 case 206:
1506 case 300:
1507 case 301:
1508 case 404:
1509 case 405:
1510 case 410:
1511 case 414:
1512 case 501:
1513 break;
1514 default:
1515 /* RFC7231#6.1:
1516 * Responses with status codes that are defined as
1517 * cacheable by default (e.g., 200, 203, 204, 206,
1518 * 300, 301, 404, 405, 410, 414, and 501 in this
1519 * specification) can be reused by a cache with
1520 * heuristic expiration unless otherwise indicated
1521 * by the method definition or explicit cache
1522 * controls [RFC7234]; all other status codes are
1523 * not cacheable by default.
1524 */
1525 txn->flags &= ~(TX_CACHEABLE | TX_CACHE_COOK);
1526 break;
1527 }
1528
1529 /*
1530 * 3: we may need to capture headers
1531 */
1532 s->logs.logwait &= ~LW_RESP;
1533 if (unlikely((s->logs.logwait & LW_RSPHDR) && s->res_cap))
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001534 http_capture_headers(htx, s->res_cap, sess->fe->rsp_cap);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001535
Christopher Faulet9768c262018-10-22 09:34:31 +02001536 /* Skip parsing if no content length is possible. */
Christopher Fauletc75668e2020-12-07 18:10:32 +01001537 if (unlikely((txn->meth == HTTP_METH_CONNECT && txn->status >= 200 && txn->status < 300) ||
Christopher Faulete0768eb2018-10-03 16:38:02 +02001538 txn->status == 101)) {
1539 /* Either we've established an explicit tunnel, or we're
1540 * switching the protocol. In both cases, we're very unlikely
1541 * to understand the next protocols. We have to switch to tunnel
1542 * mode, so that we transfer the request and responses then let
1543 * this protocol pass unmodified. When we later implement specific
1544 * parsers for such protocols, we'll want to check the Upgrade
1545 * header which contains information about that protocol for
1546 * responses with status 101 (eg: see RFC2817 about TLS).
1547 */
Christopher Fauletc41547b2019-07-16 14:32:23 +02001548 txn->flags |= TX_CON_WANT_TUN;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001549 }
1550
Christopher Faulet61608322018-11-23 16:23:45 +01001551 /* check for NTML authentication headers in 401 (WWW-Authenticate) and
1552 * 407 (Proxy-Authenticate) responses and set the connection to private
1553 */
Willy Tarreaufd9417b2022-05-18 16:23:22 +02001554 srv_conn = sc_conn(s->scb);
Christopher Faulet61608322018-11-23 16:23:45 +01001555 if (srv_conn) {
1556 struct ist hdr;
1557 struct http_hdr_ctx ctx;
1558
1559 if (txn->status == 401)
1560 hdr = ist("WWW-Authenticate");
1561 else if (txn->status == 407)
1562 hdr = ist("Proxy-Authenticate");
1563 else
1564 goto end;
1565
1566 ctx.blk = NULL;
1567 while (http_find_header(htx, hdr, &ctx, 0)) {
Willy Tarreauf1dcced2020-05-07 19:27:02 +02001568 /* If www-authenticate contains "Negotiate", "Nego2", or "NTLM",
1569 * possibly followed by blanks and a base64 string, the connection
1570 * is private. Since it's a mess to deal with, we only check for
1571 * values starting with "NTLM" or "Nego". Note that often multiple
1572 * headers are sent by the server there.
1573 */
1574 if ((ctx.value.len >= 4 && strncasecmp(ctx.value.ptr, "Nego", 4) == 0) ||
Willy Tarreau49a1d282020-05-07 19:10:15 +02001575 (ctx.value.len >= 4 && strncasecmp(ctx.value.ptr, "NTLM", 4) == 0)) {
Olivier Houchard250031e2019-05-29 15:01:50 +02001576 sess->flags |= SESS_FL_PREFER_LAST;
Christopher Faulet08016ab2020-07-01 16:10:06 +02001577 conn_set_owner(srv_conn, sess, NULL);
Christopher Faulet21ddc742020-07-01 15:26:14 +02001578 conn_set_private(srv_conn);
Ilya Shipitsin6b79f382020-07-23 00:32:55 +05001579 /* If it fail now, the same will be done in mux->detach() callback */
Christopher Faulet08016ab2020-07-01 16:10:06 +02001580 session_add_conn(srv_conn->owner, srv_conn, srv_conn->target);
Willy Tarreauf1dcced2020-05-07 19:27:02 +02001581 break;
Olivier Houchard250031e2019-05-29 15:01:50 +02001582 }
Christopher Faulet61608322018-11-23 16:23:45 +01001583 }
1584 }
1585
1586 end:
Christopher Faulete0768eb2018-10-03 16:38:02 +02001587 /* we want to have the response time before we start processing it */
Willy Tarreau69530f52023-04-28 09:16:15 +02001588 s->logs.t_data = ns_to_ms(now_ns - s->logs.accept_ts);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001589
1590 /* end of job, return OK */
1591 rep->analysers &= ~an_bit;
1592 rep->analyse_exp = TICK_ETERNITY;
1593 channel_auto_close(rep);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001594 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001595 return 1;
1596
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001597 return_int_err:
Willy Tarreau4781b152021-04-06 13:53:36 +02001598 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
1599 _HA_ATOMIC_INC(&s->be->be_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +01001600 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02001601 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletb8a53712019-12-16 11:29:38 +01001602 if (objt_server(s->target))
Willy Tarreau4781b152021-04-06 13:53:36 +02001603 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.internal_errors);
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001604 txn->status = 500;
1605 if (!(s->flags & SF_ERR_MASK))
1606 s->flags |= SF_ERR_INTERNAL;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001607 goto return_prx_cond;
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001608
1609 return_bad_res:
Willy Tarreau4781b152021-04-06 13:53:36 +02001610 _HA_ATOMIC_INC(&s->be->be_counters.failed_resp);
Christopher Faulet47365272018-10-31 17:40:50 +01001611 if (objt_server(s->target)) {
Willy Tarreau4781b152021-04-06 13:53:36 +02001612 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_resp);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001613 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_HDRRSP);
Christopher Faulet47365272018-10-31 17:40:50 +01001614 }
Olivier Houcharde3249a92019-05-03 23:01:47 +02001615 if ((s->be->retry_type & PR_RE_JUNK_REQUEST) &&
Christopher Faulete05bf9e2022-03-29 15:23:40 +02001616 (txn->flags & TX_L7_RETRY) &&
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02001617 do_l7_retry(s, s->scb) == 0) {
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001618 DBG_TRACE_DEVEL("leaving on L7 retry",
1619 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Olivier Houcharde3249a92019-05-03 23:01:47 +02001620 return 0;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001621 }
Christopher Faulet47365272018-10-31 17:40:50 +01001622 txn->status = 502;
Willy Tarreau826f3ab2021-02-10 12:07:15 +01001623 stream_inc_http_fail_ctr(s);
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001624 /* fall through */
1625
Christopher Fauletb8a53712019-12-16 11:29:38 +01001626 return_prx_cond:
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001627 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulet4a66c942023-01-13 09:43:21 +01001628 http_set_term_flags(s);
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001629
Willy Tarreaucb041662022-05-17 19:44:42 +02001630 s->scb->flags |= SC_FL_NOLINGER;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001631 DBG_TRACE_DEVEL("leaving on error",
1632 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulet47365272018-10-31 17:40:50 +01001633 return 0;
1634
Christopher Faulete0768eb2018-10-03 16:38:02 +02001635 abort_keep_alive:
1636 /* A keep-alive request to the server failed on a network error.
1637 * The client is required to retry. We need to close without returning
1638 * any other information so that the client retries.
1639 */
1640 txn->status = 0;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001641 s->logs.logwait = 0;
1642 s->logs.level = 0;
Christopher Faulet84d3ef92023-03-17 15:45:58 +01001643 s->scf->flags &= ~SC_FL_SND_EXP_MORE; /* speed up sending a previous response */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001644 http_reply_and_close(s, txn->status, NULL);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001645 DBG_TRACE_DEVEL("leaving by closing K/A connection",
1646 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001647 return 0;
1648}
1649
1650/* This function performs all the processing enabled for the current response.
1651 * It normally returns 1 unless it wants to break. It relies on buffers flags,
1652 * and updates s->res.analysers. It might make sense to explode it into several
1653 * other functions. It works like process_request (see indications above).
1654 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001655int http_process_res_common(struct stream *s, struct channel *rep, int an_bit, struct proxy *px)
Christopher Faulete0768eb2018-10-03 16:38:02 +02001656{
1657 struct session *sess = s->sess;
1658 struct http_txn *txn = s->txn;
1659 struct http_msg *msg = &txn->rsp;
Christopher Fauletfec7bd12018-10-24 11:17:50 +02001660 struct htx *htx;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001661 struct proxy *cur_proxy;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001662 enum rule_result ret = HTTP_RULE_RES_CONT;
1663
Christopher Fauletfec7bd12018-10-24 11:17:50 +02001664 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) /* we need more data */
1665 return 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02001666
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001667 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001668
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001669 htx = htxbuf(&rep->buf);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001670
1671 /* The stats applet needs to adjust the Connection header but we don't
1672 * apply any filter there.
1673 */
1674 if (unlikely(objt_applet(s->target) == &http_stats_applet)) {
1675 rep->analysers &= ~an_bit;
1676 rep->analyse_exp = TICK_ETERNITY;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001677 goto end;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001678 }
1679
1680 /*
1681 * We will have to evaluate the filters.
1682 * As opposed to version 1.2, now they will be evaluated in the
1683 * filters order and not in the header order. This means that
1684 * each filter has to be validated among all headers.
1685 *
1686 * Filters are tried with ->be first, then with ->fe if it is
1687 * different from ->be.
1688 *
1689 * Maybe we are in resume condiion. In this case I choose the
1690 * "struct proxy" which contains the rule list matching the resume
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05001691 * pointer. If none of these "struct proxy" match, I initialise
Christopher Faulete0768eb2018-10-03 16:38:02 +02001692 * the process with the first one.
1693 *
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05001694 * In fact, I check only correspondence between the current list
Christopher Faulete0768eb2018-10-03 16:38:02 +02001695 * pointer and the ->fe rule list. If it doesn't match, I initialize
1696 * the loop with the ->be.
1697 */
Christopher Fauletd4150ad2021-10-13 15:35:55 +02001698 if (s->current_rule_list == &sess->fe->http_res_rules ||
1699 (sess->fe->defpx && s->current_rule_list == &sess->fe->defpx->http_res_rules))
Christopher Faulete0768eb2018-10-03 16:38:02 +02001700 cur_proxy = sess->fe;
1701 else
1702 cur_proxy = s->be;
Christopher Fauletd4150ad2021-10-13 15:35:55 +02001703
Christopher Faulete0768eb2018-10-03 16:38:02 +02001704 while (1) {
Christopher Faulete0768eb2018-10-03 16:38:02 +02001705 /* evaluate http-response rules */
Christopher Faulet46f46df2021-11-09 16:33:25 +01001706 if (ret == HTTP_RULE_RES_CONT || ret == HTTP_RULE_RES_STOP) {
Christopher Fauletd4150ad2021-10-13 15:35:55 +02001707 struct list *def_rules, *rules;
1708
1709 def_rules = ((cur_proxy->defpx && (cur_proxy == s->be || cur_proxy->defpx != s->be->defpx)) ? &cur_proxy->defpx->http_res_rules : NULL);
1710 rules = &cur_proxy->http_res_rules;
1711
1712 ret = http_res_get_intercept_rule(cur_proxy, def_rules, rules, s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001713
Christopher Faulet3a26bee2019-12-16 12:47:40 +01001714 switch (ret) {
1715 case HTTP_RULE_RES_YIELD: /* some data miss, call the function later. */
1716 goto return_prx_yield;
1717
1718 case HTTP_RULE_RES_CONT:
1719 case HTTP_RULE_RES_STOP: /* nothing to do */
1720 break;
1721
1722 case HTTP_RULE_RES_DENY: /* deny or tarpit */
1723 goto deny;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001724
Christopher Faulet3a26bee2019-12-16 12:47:40 +01001725 case HTTP_RULE_RES_ABRT: /* abort request, response already sent */
1726 goto return_prx_cond;
1727
1728 case HTTP_RULE_RES_DONE: /* OK, but terminate request processing (eg: redirect) */
Christopher Fauletb8a53712019-12-16 11:29:38 +01001729 goto done;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001730
Christopher Faulet3a26bee2019-12-16 12:47:40 +01001731 case HTTP_RULE_RES_BADREQ: /* failed with a bad request */
1732 goto return_bad_res;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001733
Christopher Faulet3a26bee2019-12-16 12:47:40 +01001734 case HTTP_RULE_RES_ERROR: /* failed with a bad request */
1735 goto return_int_err;
1736 }
1737
1738 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02001739
Christopher Faulete0768eb2018-10-03 16:38:02 +02001740 /* check whether we're already working on the frontend */
1741 if (cur_proxy == sess->fe)
1742 break;
1743 cur_proxy = sess->fe;
1744 }
1745
Christopher Faulete0768eb2018-10-03 16:38:02 +02001746 /* OK that's all we can do for 1xx responses */
1747 if (unlikely(txn->status < 200 && txn->status != 101))
Christopher Fauletf2824e62018-10-01 12:12:37 +02001748 goto end;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001749
1750 /*
1751 * Now check for a server cookie.
1752 */
1753 if (s->be->cookie_name || sess->fe->capture_name || (s->be->options & PR_O_CHK_CACHE))
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001754 http_manage_server_side_cookies(s, rep);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001755
1756 /*
1757 * Check for cache-control or pragma headers if required.
1758 */
1759 if ((s->be->options & PR_O_CHK_CACHE) || (s->be->ck_opts & PR_CK_NOC))
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001760 http_check_response_for_cacheability(s, rep);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001761
1762 /*
1763 * Add server cookie in the response if needed
1764 */
1765 if (objt_server(s->target) && (s->be->ck_opts & PR_CK_INS) &&
1766 !((txn->flags & TX_SCK_FOUND) && (s->be->ck_opts & PR_CK_PSV)) &&
1767 (!(s->flags & SF_DIRECT) ||
1768 ((s->be->cookie_maxidle || txn->cookie_last_date) &&
1769 (!txn->cookie_last_date || (txn->cookie_last_date - date.tv_sec) < 0)) ||
1770 (s->be->cookie_maxlife && !txn->cookie_first_date) || // set the first_date
1771 (!s->be->cookie_maxlife && txn->cookie_first_date)) && // remove the first_date
1772 (!(s->be->ck_opts & PR_CK_POST) || (txn->meth == HTTP_METH_POST)) &&
1773 !(s->flags & SF_IGNORE_PRST)) {
1774 /* the server is known, it's not the one the client requested, or the
1775 * cookie's last seen date needs to be refreshed. We have to
1776 * insert a set-cookie here, except if we want to insert only on POST
1777 * requests and this one isn't. Note that servers which don't have cookies
1778 * (eg: some backup servers) will return a full cookie removal request.
1779 */
Willy Tarreau88bc8002021-12-06 07:01:02 +00001780 if (!__objt_server(s->target)->cookie) {
Christopher Faulete0768eb2018-10-03 16:38:02 +02001781 chunk_printf(&trash,
Christopher Fauletfec7bd12018-10-24 11:17:50 +02001782 "%s=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/",
Christopher Faulete0768eb2018-10-03 16:38:02 +02001783 s->be->cookie_name);
1784 }
1785 else {
Willy Tarreau88bc8002021-12-06 07:01:02 +00001786 chunk_printf(&trash, "%s=%s", s->be->cookie_name, __objt_server(s->target)->cookie);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001787
1788 if (s->be->cookie_maxidle || s->be->cookie_maxlife) {
1789 /* emit last_date, which is mandatory */
1790 trash.area[trash.data++] = COOKIE_DELIM_DATE;
1791 s30tob64((date.tv_sec+3) >> 2,
1792 trash.area + trash.data);
1793 trash.data += 5;
1794
1795 if (s->be->cookie_maxlife) {
1796 /* emit first_date, which is either the original one or
1797 * the current date.
1798 */
1799 trash.area[trash.data++] = COOKIE_DELIM_DATE;
1800 s30tob64(txn->cookie_first_date ?
1801 txn->cookie_first_date >> 2 :
1802 (date.tv_sec+3) >> 2,
1803 trash.area + trash.data);
1804 trash.data += 5;
1805 }
1806 }
1807 chunk_appendf(&trash, "; path=/");
1808 }
1809
1810 if (s->be->cookie_domain)
1811 chunk_appendf(&trash, "; domain=%s", s->be->cookie_domain);
1812
1813 if (s->be->ck_opts & PR_CK_HTTPONLY)
1814 chunk_appendf(&trash, "; HttpOnly");
1815
1816 if (s->be->ck_opts & PR_CK_SECURE)
1817 chunk_appendf(&trash, "; Secure");
1818
Christopher Faulet2f533902020-01-21 11:06:48 +01001819 if (s->be->cookie_attrs)
1820 chunk_appendf(&trash, "; %s", s->be->cookie_attrs);
1821
Christopher Fauletfec7bd12018-10-24 11:17:50 +02001822 if (unlikely(!http_add_header(htx, ist("Set-Cookie"), ist2(trash.area, trash.data))))
Christopher Fauletd649b572022-06-01 17:42:35 +02001823 goto return_fail_rewrite;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001824
1825 txn->flags &= ~TX_SCK_MASK;
1826 if (__objt_server(s->target)->cookie && (s->flags & SF_DIRECT))
1827 /* the server did not change, only the date was updated */
1828 txn->flags |= TX_SCK_UPDATED;
1829 else
1830 txn->flags |= TX_SCK_INSERTED;
1831
1832 /* Here, we will tell an eventual cache on the client side that we don't
1833 * want it to cache this reply because HTTP/1.0 caches also cache cookies !
1834 * Some caches understand the correct form: 'no-cache="set-cookie"', but
1835 * others don't (eg: apache <= 1.3.26). So we use 'private' instead.
1836 */
1837 if ((s->be->ck_opts & PR_CK_NOC) && (txn->flags & TX_CACHEABLE)) {
1838
1839 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
1840
Christopher Fauletfec7bd12018-10-24 11:17:50 +02001841 if (unlikely(!http_add_header(htx, ist("Cache-control"), ist("private"))))
Christopher Fauletd649b572022-06-01 17:42:35 +02001842 goto return_fail_rewrite;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001843 }
1844 }
1845
1846 /*
1847 * Check if result will be cacheable with a cookie.
1848 * We'll block the response if security checks have caught
1849 * nasty things such as a cacheable cookie.
1850 */
1851 if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) ==
1852 (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) &&
1853 (s->be->options & PR_O_CHK_CACHE)) {
1854 /* we're in presence of a cacheable response containing
1855 * a set-cookie header. We'll block it as requested by
1856 * the 'checkcache' option, and send an alert.
1857 */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001858 ha_alert("Blocking cacheable cookie in response from instance %s, server %s.\n",
Willy Tarreau88bc8002021-12-06 07:01:02 +00001859 s->be->id, objt_server(s->target) ? __objt_server(s->target)->id : "<dispatch>");
Christopher Faulete0768eb2018-10-03 16:38:02 +02001860 send_log(s->be, LOG_ALERT,
1861 "Blocking cacheable cookie in response from instance %s, server %s.\n",
Willy Tarreau88bc8002021-12-06 07:01:02 +00001862 s->be->id, objt_server(s->target) ? __objt_server(s->target)->id : "<dispatch>");
Christopher Fauletb8a53712019-12-16 11:29:38 +01001863 goto deny;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001864 }
1865
Christopher Fauletfec7bd12018-10-24 11:17:50 +02001866 end:
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01001867 /*
1868 * Evaluate after-response rules before forwarding the response. rules
1869 * from the backend are evaluated first, then one from the frontend if
1870 * it differs.
1871 */
1872 if (!http_eval_after_res_rules(s))
1873 goto return_int_err;
1874
Christopher Fauletc2ac5e42021-03-08 18:20:09 +01001875 /* Filter the response headers if there are filters attached to the
1876 * stream.
1877 */
1878 if (HAS_FILTERS(s))
1879 rep->analysers |= AN_RES_FLT_HTTP_HDRS;
1880
Christopher Faulete0768eb2018-10-03 16:38:02 +02001881 /* Always enter in the body analyzer */
1882 rep->analysers &= ~AN_RES_FLT_XFER_DATA;
1883 rep->analysers |= AN_RES_HTTP_XFER_BODY;
1884
1885 /* if the user wants to log as soon as possible, without counting
1886 * bytes from the server, then this is the right moment. We have
1887 * to temporarily assign bytes_out to log what we currently have.
1888 */
1889 if (!LIST_ISEMPTY(&sess->fe->logformat) && !(s->logs.logwait & LW_BYTES)) {
1890 s->logs.t_close = s->logs.t_data; /* to get a valid end date */
Christopher Fauletfec7bd12018-10-24 11:17:50 +02001891 s->logs.bytes_out = htx->data;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001892 s->do_log(s);
1893 s->logs.bytes_out = 0;
1894 }
Christopher Fauletfec7bd12018-10-24 11:17:50 +02001895
Christopher Fauletb8a53712019-12-16 11:29:38 +01001896 done:
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01001897 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletb8a53712019-12-16 11:29:38 +01001898 rep->analysers &= ~an_bit;
1899 rep->analyse_exp = TICK_ETERNITY;
Christopher Fauletd4150ad2021-10-13 15:35:55 +02001900 s->current_rule = s->current_rule_list = NULL;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001901 return 1;
Christopher Fauletfec7bd12018-10-24 11:17:50 +02001902
Christopher Fauletb8a53712019-12-16 11:29:38 +01001903 deny:
Willy Tarreau4781b152021-04-06 13:53:36 +02001904 _HA_ATOMIC_INC(&sess->fe->fe_counters.denied_resp);
1905 _HA_ATOMIC_INC(&s->be->be_counters.denied_resp);
William Lallemand36119de2021-03-08 15:26:48 +01001906 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02001907 _HA_ATOMIC_INC(&sess->listener->counters->denied_resp);
Christopher Fauleta08546b2019-12-16 16:07:34 +01001908 if (objt_server(s->target))
Willy Tarreau4781b152021-04-06 13:53:36 +02001909 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.denied_resp);
Christopher Fauletb8a53712019-12-16 11:29:38 +01001910 goto return_prx_err;
1911
Christopher Fauletd649b572022-06-01 17:42:35 +02001912 return_fail_rewrite:
1913 if (!(s->flags & SF_ERR_MASK))
1914 s->flags |= SF_ERR_PRXCOND;
1915 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_rewrites);
1916 _HA_ATOMIC_INC(&s->be->be_counters.failed_rewrites);
1917 if (sess->listener && sess->listener->counters)
1918 _HA_ATOMIC_INC(&sess->listener->counters->failed_rewrites);
1919 if (objt_server(s->target))
1920 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_rewrites);
1921 /* fall through */
1922
Christopher Fauletb8a53712019-12-16 11:29:38 +01001923 return_int_err:
1924 txn->status = 500;
1925 if (!(s->flags & SF_ERR_MASK))
1926 s->flags |= SF_ERR_INTERNAL;
Willy Tarreau4781b152021-04-06 13:53:36 +02001927 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
1928 _HA_ATOMIC_INC(&s->be->be_counters.internal_errors);
Dragan Dosen9a006f92021-09-21 13:02:09 +02001929 if (sess->listener && sess->listener->counters)
1930 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletcff0f732019-12-16 16:13:44 +01001931 if (objt_server(s->target))
Willy Tarreau4781b152021-04-06 13:53:36 +02001932 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.internal_errors);
Christopher Fauletb8a53712019-12-16 11:29:38 +01001933 goto return_prx_err;
1934
1935 return_bad_res:
1936 txn->status = 502;
Willy Tarreau826f3ab2021-02-10 12:07:15 +01001937 stream_inc_http_fail_ctr(s);
Willy Tarreau4781b152021-04-06 13:53:36 +02001938 _HA_ATOMIC_INC(&s->be->be_counters.failed_resp);
Christopher Fauleta20a6532020-02-05 10:16:41 +01001939 if (objt_server(s->target)) {
Willy Tarreau4781b152021-04-06 13:53:36 +02001940 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_resp);
Christopher Fauleta20a6532020-02-05 10:16:41 +01001941 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_RSP);
1942 }
Christopher Fauletb8a53712019-12-16 11:29:38 +01001943 /* fall through */
1944
1945 return_prx_err:
1946 http_reply_and_close(s, txn->status, http_error_message(s));
1947 /* fall through */
1948
1949 return_prx_cond:
Christopher Fauletfec7bd12018-10-24 11:17:50 +02001950 s->logs.t_data = -1; /* was not a valid response */
Willy Tarreaucb041662022-05-17 19:44:42 +02001951 s->scb->flags |= SC_FL_NOLINGER;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001952
Christopher Faulet4a66c942023-01-13 09:43:21 +01001953 http_set_term_flags(s);
Christopher Fauletb8a53712019-12-16 11:29:38 +01001954
Christopher Faulete58c0002020-03-02 16:21:01 +01001955 rep->analysers &= AN_RES_FLT_END;
1956 s->req.analysers &= AN_REQ_FLT_END;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001957 rep->analyse_exp = TICK_ETERNITY;
Christopher Fauletd4150ad2021-10-13 15:35:55 +02001958 s->current_rule = s->current_rule_list = NULL;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001959 DBG_TRACE_DEVEL("leaving on error",
1960 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Fauletfec7bd12018-10-24 11:17:50 +02001961 return 0;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001962
1963 return_prx_yield:
1964 channel_dont_close(rep);
1965 DBG_TRACE_DEVEL("waiting for more data",
1966 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
1967 return 0;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001968}
1969
1970/* This function is an analyser which forwards response body (including chunk
1971 * sizes if any). It is called as soon as we must forward, even if we forward
1972 * zero byte. The only situation where it must not be called is when we're in
1973 * tunnel mode and we want to forward till the close. It's used both to forward
1974 * remaining data and to resync after end of body. It expects the msg_state to
1975 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
1976 * read more data, or 1 once we can go on with next request or end the stream.
1977 *
1978 * It is capable of compressing response data both in content-length mode and
1979 * in chunked mode. The state machines follows different flows depending on
1980 * whether content-length and chunked modes are used, since there are no
1981 * trailers in content-length :
1982 *
1983 * chk-mode cl-mode
1984 * ,----- BODY -----.
1985 * / \
1986 * V size > 0 V chk-mode
1987 * .--> SIZE -------------> DATA -------------> CRLF
1988 * | | size == 0 | last byte |
1989 * | v final crlf v inspected |
1990 * | TRAILERS -----------> DONE |
1991 * | |
1992 * `----------------------------------------------'
1993 *
1994 * Compression only happens in the DATA state, and must be flushed in final
1995 * states (TRAILERS/DONE) or when leaving on missing data. Normal forwarding
1996 * is performed at once on final states for all bytes parsed, or when leaving
1997 * on missing data.
1998 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001999int http_response_forward_body(struct stream *s, struct channel *res, int an_bit)
Christopher Faulete0768eb2018-10-03 16:38:02 +02002000{
2001 struct session *sess = s->sess;
2002 struct http_txn *txn = s->txn;
2003 struct http_msg *msg = &s->txn->rsp;
Christopher Faulet9768c262018-10-22 09:34:31 +02002004 struct htx *htx;
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002005 int ret;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002006
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002007 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002008
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01002009 htx = htxbuf(&res->buf);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002010
Christopher Fauletb9a92f32019-09-09 10:15:21 +02002011 if (htx->flags & HTX_FL_PARSING_ERROR)
2012 goto return_bad_res;
2013 if (htx->flags & HTX_FL_PROCESSING_ERROR)
2014 goto return_int_err;
2015
Christopher Faulet9768c262018-10-22 09:34:31 +02002016 if (msg->msg_state == HTTP_MSG_BODY)
2017 msg->msg_state = HTTP_MSG_DATA;
2018
Christopher Faulete0768eb2018-10-03 16:38:02 +02002019 /* in most states, we should abort in case of early close */
2020 channel_auto_close(res);
2021
Christopher Faulete0768eb2018-10-03 16:38:02 +02002022 if (res->to_forward) {
Christopher Faulet66af0b22019-03-22 14:54:52 +01002023 if (res->to_forward == CHN_INFINITE_FORWARD) {
Christopher Faulet904763f2023-03-22 14:53:11 +01002024 if (s->scb->flags & SC_FL_EOI)
Christopher Faulet1a3e0272019-11-15 16:31:46 +01002025 msg->msg_state = HTTP_MSG_ENDING;
Christopher Faulet66af0b22019-03-22 14:54:52 +01002026 }
2027 else {
2028 /* We can't process the buffer's contents yet */
2029 res->flags |= CF_WAKE_WRITE;
2030 goto missing_data_or_waiting;
2031 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02002032 }
2033
Christopher Faulet1a3e0272019-11-15 16:31:46 +01002034 if (msg->msg_state >= HTTP_MSG_ENDING)
2035 goto ending;
2036
Christopher Fauletc75668e2020-12-07 18:10:32 +01002037 if ((txn->meth == HTTP_METH_CONNECT && txn->status >= 200 && txn->status < 300) || txn->status == 101 ||
Christopher Faulet1a3e0272019-11-15 16:31:46 +01002038 (!(msg->flags & HTTP_MSGF_XFER_LEN) && !HAS_RSP_DATA_FILTERS(s))) {
2039 msg->msg_state = HTTP_MSG_ENDING;
2040 goto ending;
2041 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002042
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002043 /* Forward input data. We get it by removing all outgoing data not
2044 * forwarded yet from HTX data size. If there are some data filters, we
2045 * let them decide the amount of data to forward.
Christopher Faulet9768c262018-10-22 09:34:31 +02002046 */
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002047 if (HAS_RSP_DATA_FILTERS(s)) {
2048 ret = flt_http_payload(s, msg, htx->data);
2049 if (ret < 0)
2050 goto return_bad_res;
Christopher Faulet421e7692019-06-13 11:16:45 +02002051 c_adv(res, ret);
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002052 }
2053 else {
Christopher Faulet421e7692019-06-13 11:16:45 +02002054 c_adv(res, htx->data - co_data(res));
Christopher Faulet2f7c82b2023-02-20 14:06:52 +01002055 if ((global.tune.options & GTUNE_USE_FAST_FWD) && (msg->flags & HTTP_MSGF_XFER_LEN))
Christopher Faulet66af0b22019-03-22 14:54:52 +01002056 channel_htx_forward_forever(res, htx);
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002057 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002058
Christopher Faulet1a3e0272019-11-15 16:31:46 +01002059 if (htx->data != co_data(res))
2060 goto missing_data_or_waiting;
2061
Christopher Fauletca5309a2023-04-17 16:17:32 +02002062 if (!(msg->flags & HTTP_MSGF_XFER_LEN) && (s->scb->flags & (SC_FL_EOS|SC_FL_ABRT_DONE))) {
Christopher Faulet1a3e0272019-11-15 16:31:46 +01002063 msg->msg_state = HTTP_MSG_ENDING;
2064 goto ending;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002065 }
2066
Christopher Faulet9768c262018-10-22 09:34:31 +02002067 /* Check if the end-of-message is reached and if so, switch the message
Christopher Fauletd20fdb02019-06-13 16:43:22 +02002068 * in HTTP_MSG_ENDING state. Then if all data was marked to be
2069 * forwarded, set the state to HTTP_MSG_DONE.
Christopher Faulet9768c262018-10-22 09:34:31 +02002070 */
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002071 if (!(htx->flags & HTX_FL_EOM))
Christopher Faulet9768c262018-10-22 09:34:31 +02002072 goto missing_data_or_waiting;
2073
Christopher Fauletd20fdb02019-06-13 16:43:22 +02002074 msg->msg_state = HTTP_MSG_ENDING;
Christopher Faulet9768c262018-10-22 09:34:31 +02002075
Christopher Faulet1a3e0272019-11-15 16:31:46 +01002076 ending:
Christopher Faulet84d3ef92023-03-17 15:45:58 +01002077 s->scf->flags &= ~SC_FL_SND_EXP_MORE; /* no more data are expected to be sent */
Christopher Faulet2151cdd2020-07-22 16:34:59 +02002078
Christopher Faulet1a3e0272019-11-15 16:31:46 +01002079 /* other states, ENDING...TUNNEL */
2080 if (msg->msg_state >= HTTP_MSG_DONE)
2081 goto done;
Christopher Faulet9768c262018-10-22 09:34:31 +02002082
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002083 if (HAS_RSP_DATA_FILTERS(s)) {
2084 ret = flt_http_end(s, msg);
2085 if (ret <= 0) {
2086 if (!ret)
2087 goto missing_data_or_waiting;
2088 goto return_bad_res;
2089 }
2090 }
2091
Christopher Faulet97047972023-04-17 08:52:10 +02002092 if (!(txn->flags & TX_CON_WANT_TUN) && !(msg->flags & HTTP_MSGF_XFER_LEN)) {
2093 /* One-side tunnel */
Christopher Faulet1a3e0272019-11-15 16:31:46 +01002094 msg->msg_state = HTTP_MSG_TUNNEL;
Christopher Faulet1a3e0272019-11-15 16:31:46 +01002095 }
2096 else {
2097 msg->msg_state = HTTP_MSG_DONE;
2098 res->to_forward = 0;
2099 }
2100
2101 done:
2102
2103 channel_dont_close(res);
2104
Christopher Faulet64350bb2023-04-13 16:37:37 +02002105 if ((s->scf->flags & SC_FL_SHUT_DONE) && co_data(res)) {
Christopher Fauletf2b02cf2023-01-13 11:02:28 +01002106 /* response errors are most likely due to the client aborting
2107 * the transfer. */
2108 goto return_cli_abort;
2109 }
2110
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002111 http_end_response(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002112 if (!(res->analysers & an_bit)) {
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002113 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002114 return 1;
2115 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002116 DBG_TRACE_DEVEL("waiting for the end of the HTTP txn",
2117 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002118 return 0;
2119
2120 missing_data_or_waiting:
Christopher Faulet64350bb2023-04-13 16:37:37 +02002121 if (s->scf->flags & SC_FL_SHUT_DONE)
Christopher Faulet93e02d82019-03-08 14:18:50 +01002122 goto return_cli_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002123
2124 /* stop waiting for data if the input is closed before the end. If the
2125 * client side was already closed, it means that the client has aborted,
2126 * so we don't want to count this as a server abort. Otherwise it's a
2127 * server abort.
2128 */
Christopher Fauletca5309a2023-04-17 16:17:32 +02002129 if (msg->msg_state < HTTP_MSG_ENDING && (s->scb->flags & (SC_FL_EOS|SC_FL_ABRT_DONE))) {
2130 if ((s->scf->flags & (SC_FL_EOS|SC_FL_ABRT_DONE)) &&
Christopher Faulet64350bb2023-04-13 16:37:37 +02002131 (s->scb->flags & SC_FL_SHUT_DONE))
Christopher Faulet93e02d82019-03-08 14:18:50 +01002132 goto return_cli_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002133 /* If we have some pending data, we continue the processing */
Christopher Faulet93e02d82019-03-08 14:18:50 +01002134 if (htx_is_empty(htx))
2135 goto return_srv_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002136 }
2137
Christopher Faulete0768eb2018-10-03 16:38:02 +02002138 /* When TE: chunked is used, we need to get there again to parse
2139 * remaining chunks even if the server has closed, so we don't want to
Christopher Faulet9768c262018-10-22 09:34:31 +02002140 * set CF_DONTCLOSE. Similarly when there is a content-leng or if there
2141 * are filters registered on the stream, we don't want to forward a
2142 * close
Christopher Faulete0768eb2018-10-03 16:38:02 +02002143 */
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002144 if ((msg->flags & HTTP_MSGF_XFER_LEN) || HAS_RSP_DATA_FILTERS(s))
Christopher Faulete0768eb2018-10-03 16:38:02 +02002145 channel_dont_close(res);
2146
2147 /* We know that more data are expected, but we couldn't send more that
Christopher Faulet84d3ef92023-03-17 15:45:58 +01002148 * what we did. So we always set the SC_FL_SND_EXP_MORE flag so that the
Christopher Faulete0768eb2018-10-03 16:38:02 +02002149 * system knows it must not set a PUSH on this first part. Interactive
2150 * modes are already handled by the stream sock layer. We must not do
2151 * this in content-length mode because it could present the MSG_MORE
2152 * flag with the last block of forwarded data, which would cause an
2153 * additional delay to be observed by the receiver.
2154 */
Christopher Faulet2151cdd2020-07-22 16:34:59 +02002155 if (HAS_RSP_DATA_FILTERS(s))
Christopher Faulet84d3ef92023-03-17 15:45:58 +01002156 s->scf->flags |= SC_FL_SND_EXP_MORE;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002157
2158 /* the stream handler will take care of timeouts and errors */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002159 DBG_TRACE_DEVEL("waiting for more data to forward",
2160 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002161 return 0;
2162
Christopher Faulet93e02d82019-03-08 14:18:50 +01002163 return_srv_abort:
Willy Tarreau4781b152021-04-06 13:53:36 +02002164 _HA_ATOMIC_INC(&sess->fe->fe_counters.srv_aborts);
2165 _HA_ATOMIC_INC(&s->be->be_counters.srv_aborts);
William Lallemand36119de2021-03-08 15:26:48 +01002166 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002167 _HA_ATOMIC_INC(&sess->listener->counters->srv_aborts);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002168 if (objt_server(s->target))
Willy Tarreau4781b152021-04-06 13:53:36 +02002169 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.srv_aborts);
Willy Tarreau826f3ab2021-02-10 12:07:15 +01002170 stream_inc_http_fail_ctr(s);
Christopher Faulet93e02d82019-03-08 14:18:50 +01002171 if (!(s->flags & SF_ERR_MASK))
Christopher Fauletf2b02cf2023-01-13 11:02:28 +01002172 s->flags |= ((res->flags & CF_READ_TIMEOUT) ? SF_ERR_SRVTO : SF_ERR_SRVCL);
Christopher Faulet93e02d82019-03-08 14:18:50 +01002173 goto return_error;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002174
Christopher Faulet93e02d82019-03-08 14:18:50 +01002175 return_cli_abort:
Willy Tarreau4781b152021-04-06 13:53:36 +02002176 _HA_ATOMIC_INC(&sess->fe->fe_counters.cli_aborts);
2177 _HA_ATOMIC_INC(&s->be->be_counters.cli_aborts);
William Lallemand36119de2021-03-08 15:26:48 +01002178 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002179 _HA_ATOMIC_INC(&sess->listener->counters->cli_aborts);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002180 if (objt_server(s->target))
Willy Tarreau4781b152021-04-06 13:53:36 +02002181 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.cli_aborts);
Christopher Faulet93e02d82019-03-08 14:18:50 +01002182 if (!(s->flags & SF_ERR_MASK))
Christopher Fauletf2b02cf2023-01-13 11:02:28 +01002183 s->flags |= ((res->flags & CF_WRITE_TIMEOUT) ? SF_ERR_CLITO : SF_ERR_CLICL);
Christopher Faulet93e02d82019-03-08 14:18:50 +01002184 goto return_error;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002185
Christopher Fauletb9a92f32019-09-09 10:15:21 +02002186 return_int_err:
Willy Tarreau4781b152021-04-06 13:53:36 +02002187 _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors);
2188 _HA_ATOMIC_INC(&s->be->be_counters.internal_errors);
William Lallemand36119de2021-03-08 15:26:48 +01002189 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02002190 _HA_ATOMIC_INC(&sess->listener->counters->internal_errors);
Christopher Fauletb8a53712019-12-16 11:29:38 +01002191 if (objt_server(s->target))
Willy Tarreau4781b152021-04-06 13:53:36 +02002192 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.internal_errors);
Christopher Fauletb9a92f32019-09-09 10:15:21 +02002193 if (!(s->flags & SF_ERR_MASK))
2194 s->flags |= SF_ERR_INTERNAL;
2195 goto return_error;
2196
Christopher Faulet93e02d82019-03-08 14:18:50 +01002197 return_bad_res:
Willy Tarreau4781b152021-04-06 13:53:36 +02002198 _HA_ATOMIC_INC(&s->be->be_counters.failed_resp);
Christopher Faulet93e02d82019-03-08 14:18:50 +01002199 if (objt_server(s->target)) {
Willy Tarreau4781b152021-04-06 13:53:36 +02002200 _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_resp);
Christopher Faulet93e02d82019-03-08 14:18:50 +01002201 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_RSP);
2202 }
Willy Tarreau826f3ab2021-02-10 12:07:15 +01002203 stream_inc_http_fail_ctr(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002204 if (!(s->flags & SF_ERR_MASK))
Christopher Faulet93e02d82019-03-08 14:18:50 +01002205 s->flags |= SF_ERR_SRVCL;
Christopher Fauletb8a53712019-12-16 11:29:38 +01002206 /* fall through */
Christopher Faulete0768eb2018-10-03 16:38:02 +02002207
Christopher Faulet93e02d82019-03-08 14:18:50 +01002208 return_error:
Christopher Faulete0768eb2018-10-03 16:38:02 +02002209 /* don't send any error message as we're in the body */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002210 http_reply_and_close(s, txn->status, NULL);
Christopher Fauletf2b02cf2023-01-13 11:02:28 +01002211 http_set_term_flags(s);
2212 stream_inc_http_fail_ctr(s);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002213 DBG_TRACE_DEVEL("leaving on error",
2214 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002215 return 0;
2216}
2217
Christopher Fauletf2824e62018-10-01 12:12:37 +02002218/* Perform an HTTP redirect based on the information in <rule>. The function
Willy Tarreaubc1223b2021-09-02 16:54:33 +02002219 * returns zero in case of an irrecoverable error such as too large a request
2220 * to build a valid response, 1 in case of successful redirect (hence the rule
2221 * is final), or 2 if the rule has to be silently skipped.
Christopher Fauletf2824e62018-10-01 12:12:37 +02002222 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002223int http_apply_redirect_rule(struct redirect_rule *rule, struct stream *s, struct http_txn *txn)
Christopher Fauletf2824e62018-10-01 12:12:37 +02002224{
Christopher Faulet99daf282018-11-28 22:58:13 +01002225 struct channel *req = &s->req;
2226 struct channel *res = &s->res;
2227 struct htx *htx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01002228 struct htx_sl *sl;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002229 struct buffer *chunk;
Christopher Faulet99daf282018-11-28 22:58:13 +01002230 struct ist status, reason, location;
2231 unsigned int flags;
Christopher Fauleteab17572022-04-26 20:34:38 +02002232 int ret = 1, close = 0; /* Try to keep the connection alive byt default */
Christopher Fauletf2824e62018-10-01 12:12:37 +02002233
2234 chunk = alloc_trash_chunk();
Christopher Fauletb8a53712019-12-16 11:29:38 +01002235 if (!chunk) {
2236 if (!(s->flags & SF_ERR_MASK))
2237 s->flags |= SF_ERR_RESOURCE;
Christopher Faulet99daf282018-11-28 22:58:13 +01002238 goto fail;
Christopher Fauletb8a53712019-12-16 11:29:38 +01002239 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002240
Christopher Faulet99daf282018-11-28 22:58:13 +01002241 /*
2242 * Create the location
2243 */
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01002244 htx = htxbuf(&req->buf);
Christopher Fauletf2824e62018-10-01 12:12:37 +02002245 switch(rule->type) {
Christopher Faulet99daf282018-11-28 22:58:13 +01002246 case REDIRECT_TYPE_SCHEME: {
2247 struct http_hdr_ctx ctx;
2248 struct ist path, host;
Amaury Denoyellec453f952021-07-06 11:40:12 +02002249 struct http_uri_parser parser;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002250
Christopher Faulet99daf282018-11-28 22:58:13 +01002251 host = ist("");
2252 ctx.blk = NULL;
2253 if (http_find_header(htx, ist("Host"), &ctx, 0))
2254 host = ctx.value;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002255
Christopher Faulet297fbb42019-05-13 14:41:27 +02002256 sl = http_get_stline(htx);
Amaury Denoyellec453f952021-07-06 11:40:12 +02002257 parser = http_uri_parser_init(htx_sl_req_uri(sl));
2258 path = http_parse_path(&parser);
Christopher Faulet99daf282018-11-28 22:58:13 +01002259 /* build message using path */
Tim Duesterhused526372020-03-05 17:56:33 +01002260 if (isttest(path)) {
Christopher Faulet99daf282018-11-28 22:58:13 +01002261 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
2262 int qs = 0;
2263 while (qs < path.len) {
2264 if (*(path.ptr + qs) == '?') {
2265 path.len = qs;
2266 break;
2267 }
2268 qs++;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002269 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002270 }
2271 }
Christopher Faulet99daf282018-11-28 22:58:13 +01002272 else
2273 path = ist("/");
Christopher Fauletf2824e62018-10-01 12:12:37 +02002274
Christopher Faulet99daf282018-11-28 22:58:13 +01002275 if (rule->rdr_str) { /* this is an old "redirect" rule */
2276 /* add scheme */
2277 if (!chunk_memcat(chunk, rule->rdr_str, rule->rdr_len))
2278 goto fail;
2279 }
2280 else {
2281 /* add scheme with executing log format */
2282 chunk->data += build_logline(s, chunk->area + chunk->data,
2283 chunk->size - chunk->data,
2284 &rule->rdr_fmt);
2285 }
2286 /* add "://" + host + path */
2287 if (!chunk_memcat(chunk, "://", 3) ||
2288 !chunk_memcat(chunk, host.ptr, host.len) ||
2289 !chunk_memcat(chunk, path.ptr, path.len))
2290 goto fail;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002291
Christopher Faulet99daf282018-11-28 22:58:13 +01002292 /* append a slash at the end of the location if needed and missing */
2293 if (chunk->data && chunk->area[chunk->data - 1] != '/' &&
2294 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
2295 if (chunk->data + 1 >= chunk->size)
2296 goto fail;
2297 chunk->area[chunk->data++] = '/';
2298 }
2299 break;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002300 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002301
Christopher Faulet99daf282018-11-28 22:58:13 +01002302 case REDIRECT_TYPE_PREFIX: {
2303 struct ist path;
Amaury Denoyellec453f952021-07-06 11:40:12 +02002304 struct http_uri_parser parser;
Christopher Faulet99daf282018-11-28 22:58:13 +01002305
Christopher Faulet297fbb42019-05-13 14:41:27 +02002306 sl = http_get_stline(htx);
Amaury Denoyellec453f952021-07-06 11:40:12 +02002307 parser = http_uri_parser_init(htx_sl_req_uri(sl));
2308 path = http_parse_path(&parser);
Christopher Faulet99daf282018-11-28 22:58:13 +01002309 /* build message using path */
Tim Duesterhused526372020-03-05 17:56:33 +01002310 if (isttest(path)) {
Christopher Faulet99daf282018-11-28 22:58:13 +01002311 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
2312 int qs = 0;
2313 while (qs < path.len) {
2314 if (*(path.ptr + qs) == '?') {
2315 path.len = qs;
2316 break;
2317 }
2318 qs++;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002319 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002320 }
2321 }
Christopher Faulet99daf282018-11-28 22:58:13 +01002322 else
2323 path = ist("/");
Christopher Fauletf2824e62018-10-01 12:12:37 +02002324
Christopher Faulet99daf282018-11-28 22:58:13 +01002325 if (rule->rdr_str) { /* this is an old "redirect" rule */
2326 /* add prefix. Note that if prefix == "/", we don't want to
2327 * add anything, otherwise it makes it hard for the user to
2328 * configure a self-redirection.
2329 */
2330 if (rule->rdr_len != 1 || *rule->rdr_str != '/') {
2331 if (!chunk_memcat(chunk, rule->rdr_str, rule->rdr_len))
2332 goto fail;
2333 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002334 }
Christopher Faulet99daf282018-11-28 22:58:13 +01002335 else {
2336 /* add prefix with executing log format */
2337 chunk->data += build_logline(s, chunk->area + chunk->data,
2338 chunk->size - chunk->data,
2339 &rule->rdr_fmt);
2340 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002341
Christopher Faulet99daf282018-11-28 22:58:13 +01002342 /* add path */
2343 if (!chunk_memcat(chunk, path.ptr, path.len))
2344 goto fail;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002345
Christopher Faulet99daf282018-11-28 22:58:13 +01002346 /* append a slash at the end of the location if needed and missing */
2347 if (chunk->data && chunk->area[chunk->data - 1] != '/' &&
2348 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
2349 if (chunk->data + 1 >= chunk->size)
2350 goto fail;
2351 chunk->area[chunk->data++] = '/';
2352 }
2353 break;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002354 }
Christopher Faulet99daf282018-11-28 22:58:13 +01002355 case REDIRECT_TYPE_LOCATION:
2356 default:
2357 if (rule->rdr_str) { /* this is an old "redirect" rule */
2358 /* add location */
2359 if (!chunk_memcat(chunk, rule->rdr_str, rule->rdr_len))
2360 goto fail;
2361 }
2362 else {
2363 /* add location with executing log format */
Willy Tarreaubc1223b2021-09-02 16:54:33 +02002364 int len = build_logline(s, chunk->area + chunk->data,
2365 chunk->size - chunk->data,
2366 &rule->rdr_fmt);
Christopher Fauleteab17572022-04-26 20:34:38 +02002367 if (!len && rule->flags & REDIRECT_FLAG_IGNORE_EMPTY) {
2368 ret = 2;
2369 goto out;
2370 }
Willy Tarreaubc1223b2021-09-02 16:54:33 +02002371
2372 chunk->data += len;
Christopher Faulet99daf282018-11-28 22:58:13 +01002373 }
2374 break;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002375 }
Christopher Faulet99daf282018-11-28 22:58:13 +01002376 location = ist2(chunk->area, chunk->data);
2377
2378 /*
2379 * Create the 30x response
2380 */
2381 switch (rule->code) {
2382 case 308:
2383 status = ist("308");
2384 reason = ist("Permanent Redirect");
2385 break;
2386 case 307:
2387 status = ist("307");
2388 reason = ist("Temporary Redirect");
2389 break;
2390 case 303:
2391 status = ist("303");
2392 reason = ist("See Other");
2393 break;
2394 case 301:
2395 status = ist("301");
2396 reason = ist("Moved Permanently");
2397 break;
2398 case 302:
2399 default:
2400 status = ist("302");
2401 reason = ist("Found");
2402 break;
2403 }
2404
Christopher Faulet08e66462019-05-23 16:44:59 +02002405 if (!(txn->req.flags & HTTP_MSGF_BODYLESS) && txn->req.msg_state != HTTP_MSG_DONE)
2406 close = 1;
2407
Christopher Faulet99daf282018-11-28 22:58:13 +01002408 htx = htx_from_buf(&res->buf);
Kevin Zhu96b36392020-01-07 09:42:55 +01002409 /* Trim any possible response */
2410 channel_htx_truncate(&s->res, htx);
Christopher Faulet99daf282018-11-28 22:58:13 +01002411 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN|HTX_SL_F_BODYLESS);
2412 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), status, reason);
2413 if (!sl)
2414 goto fail;
2415 sl->info.res.status = rule->code;
2416 s->txn->status = rule->code;
2417
Christopher Faulet08e66462019-05-23 16:44:59 +02002418 if (close && !htx_add_header(htx, ist("Connection"), ist("close")))
2419 goto fail;
2420
2421 if (!htx_add_header(htx, ist("Content-length"), ist("0")) ||
Christopher Faulet99daf282018-11-28 22:58:13 +01002422 !htx_add_header(htx, ist("Location"), location))
2423 goto fail;
2424
2425 if (rule->code == 302 || rule->code == 303 || rule->code == 307) {
2426 if (!htx_add_header(htx, ist("Cache-Control"), ist("no-cache")))
2427 goto fail;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002428 }
2429
2430 if (rule->cookie_len) {
Christopher Faulet99daf282018-11-28 22:58:13 +01002431 if (!htx_add_header(htx, ist("Set-Cookie"), ist2(rule->cookie_str, rule->cookie_len)))
2432 goto fail;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002433 }
2434
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002435 if (!htx_add_endof(htx, HTX_BLK_EOH))
Christopher Faulet99daf282018-11-28 22:58:13 +01002436 goto fail;
2437
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01002438 htx->flags |= HTX_FL_EOM;
Kevin Zhu96b36392020-01-07 09:42:55 +01002439 htx_to_buf(htx, &res->buf);
Christopher Fauleta72a7e42020-01-28 09:28:11 +01002440 if (!http_forward_proxy_resp(s, 1))
2441 goto fail;
Christopher Faulet99daf282018-11-28 22:58:13 +01002442
Christopher Faulet60b33a52020-01-28 09:18:10 +01002443 if (rule->flags & REDIRECT_FLAG_FROM_REQ) {
2444 /* let's log the request time */
Willy Tarreau69530f52023-04-28 09:16:15 +02002445 s->logs.request_ts = now_ns;
Christopher Fauletd3475882021-10-04 14:16:46 +02002446 req->analysers &= AN_REQ_FLT_END;
Christopher Faulet99daf282018-11-28 22:58:13 +01002447
Christopher Faulet60b33a52020-01-28 09:18:10 +01002448 if (s->sess->fe == s->be) /* report it if the request was intercepted by the frontend */
Willy Tarreau4781b152021-04-06 13:53:36 +02002449 _HA_ATOMIC_INC(&s->sess->fe->fe_counters.intercepted_req);
Christopher Faulet60b33a52020-01-28 09:18:10 +01002450 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002451
2452 if (!(s->flags & SF_ERR_MASK))
2453 s->flags |= SF_ERR_LOCAL;
Christopher Faulet4a66c942023-01-13 09:43:21 +01002454 http_set_term_flags(s);
Christopher Fauletf2824e62018-10-01 12:12:37 +02002455
Christopher Fauleteab17572022-04-26 20:34:38 +02002456 out:
Christopher Faulet99daf282018-11-28 22:58:13 +01002457 free_trash_chunk(chunk);
Christopher Fauleteab17572022-04-26 20:34:38 +02002458 return ret;
Christopher Faulet99daf282018-11-28 22:58:13 +01002459
2460 fail:
2461 /* If an error occurred, remove the incomplete HTTP response from the
2462 * buffer */
Christopher Faulet202c6ce2019-01-07 14:57:35 +01002463 channel_htx_truncate(res, htxbuf(&res->buf));
Christopher Fauleteab17572022-04-26 20:34:38 +02002464 ret = 0;
2465 goto out;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002466}
2467
Christopher Faulet18c13d32022-05-16 11:43:10 +02002468/* This function filters the request header names to only allow [0-9a-zA-Z-]
2469 * characters. Depending on the proxy configuration, headers with a name not
2470 * matching this charset are removed or the request is rejected with a
2471 * 403-Forbidden response if such name are found. It returns HTTP_RULE_RES_CONT
2472 * to continue the request processing or HTTP_RULE_RES_DENY if the request is
2473 * rejected.
2474 */
2475static enum rule_result http_req_restrict_header_names(struct stream *s, struct htx *htx, struct proxy *px)
2476{
2477 struct htx_blk *blk;
2478 enum rule_result rule_ret = HTTP_RULE_RES_CONT;
2479
2480 blk = htx_get_first_blk(htx);
2481 while (blk) {
2482 enum htx_blk_type type = htx_get_blk_type(blk);
2483
2484 if (type == HTX_BLK_HDR) {
2485 struct ist n = htx_get_blk_name(htx, blk);
Mateusz Malek4b85a962022-08-17 14:22:09 +02002486 int i, end = istlen(n);
Christopher Faulet18c13d32022-05-16 11:43:10 +02002487
Mateusz Malek4b85a962022-08-17 14:22:09 +02002488 for (i = 0; i < end; i++) {
Christopher Faulet18c13d32022-05-16 11:43:10 +02002489 if (!isalnum((unsigned char)n.ptr[i]) && n.ptr[i] != '-') {
Mateusz Malek4b85a962022-08-17 14:22:09 +02002490 break;
Christopher Faulet18c13d32022-05-16 11:43:10 +02002491 }
2492 }
Mateusz Malek4b85a962022-08-17 14:22:09 +02002493
2494 if (i < end) {
2495 /* Disallowed character found - block the request or remove the header */
2496 if (px->options2 & PR_O2_RSTRICT_REQ_HDR_NAMES_BLK)
2497 goto block;
2498 blk = htx_remove_blk(htx, blk);
2499 continue;
2500 }
Christopher Faulet18c13d32022-05-16 11:43:10 +02002501 }
2502 if (type == HTX_BLK_EOH)
2503 break;
2504
2505 blk = htx_get_next_blk(htx, blk);
2506 }
2507 out:
2508 return rule_ret;
2509 block:
2510 /* Block the request returning a 403-Forbidden response */
2511 s->txn->status = 403;
2512 rule_ret = HTTP_RULE_RES_DENY;
2513 goto out;
2514}
2515
Christopher Faulet92d34fe2019-12-17 09:20:34 +01002516/* Replace all headers matching the name <name>. The header value is replaced if
2517 * it matches the regex <re>. <str> is used for the replacement. If <full> is
2518 * set to 1, the full-line is matched and replaced. Otherwise, comma-separated
2519 * values are evaluated one by one. It returns 0 on success and -1 on error.
2520 */
2521int http_replace_hdrs(struct stream* s, struct htx *htx, struct ist name,
2522 const char *str, struct my_regex *re, int full)
Christopher Faulet72333522018-10-24 11:25:02 +02002523{
2524 struct http_hdr_ctx ctx;
2525 struct buffer *output = get_trash_chunk();
2526
Christopher Faulet72333522018-10-24 11:25:02 +02002527 ctx.blk = NULL;
Christopher Faulet92d34fe2019-12-17 09:20:34 +01002528 while (http_find_header(htx, name, &ctx, full)) {
Christopher Faulet72333522018-10-24 11:25:02 +02002529 if (!regex_exec_match2(re, ctx.value.ptr, ctx.value.len, MAX_MATCH, pmatch, 0))
2530 continue;
2531
2532 output->data = exp_replace(output->area, output->size, ctx.value.ptr, str, pmatch);
2533 if (output->data == -1)
2534 return -1;
2535 if (!http_replace_header_value(htx, &ctx, ist2(output->area, output->data)))
2536 return -1;
2537 }
2538 return 0;
2539}
2540
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002541/* This function executes one of the set-{method,path,query,uri} actions. It
2542 * takes the string from the variable 'replace' with length 'len', then modifies
2543 * the relevant part of the request line accordingly. Then it updates various
2544 * pointers to the next elements which were moved, and the total buffer length.
2545 * It finds the action to be performed in p[2], previously filled by function
2546 * parse_set_req_line(). It returns 0 in case of success, -1 in case of internal
2547 * error, though this can be revisited when this code is finally exploited.
2548 *
2549 * 'action' can be '0' to replace method, '1' to replace path, '2' to replace
Christopher Faulet312294f2020-09-02 17:17:44 +02002550 * query string, 3 to replace uri or 4 to replace the path+query.
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002551 *
2552 * In query string case, the mark question '?' must be set at the start of the
2553 * string by the caller, event if the replacement query string is empty.
2554 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002555int http_req_replace_stline(int action, const char *replace, int len,
2556 struct proxy *px, struct stream *s)
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002557{
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01002558 struct htx *htx = htxbuf(&s->req.buf);
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002559
2560 switch (action) {
2561 case 0: // method
2562 if (!http_replace_req_meth(htx, ist2(replace, len)))
2563 return -1;
2564 break;
2565
2566 case 1: // path
Christopher Fauletb8ce5052020-08-31 16:11:57 +02002567 if (!http_replace_req_path(htx, ist2(replace, len), 0))
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002568 return -1;
2569 break;
2570
2571 case 2: // query
2572 if (!http_replace_req_query(htx, ist2(replace, len)))
2573 return -1;
2574 break;
2575
2576 case 3: // uri
2577 if (!http_replace_req_uri(htx, ist2(replace, len)))
2578 return -1;
2579 break;
2580
Christopher Faulet312294f2020-09-02 17:17:44 +02002581 case 4: // path + query
2582 if (!http_replace_req_path(htx, ist2(replace, len), 1))
2583 return -1;
2584 break;
2585
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002586 default:
2587 return -1;
2588 }
2589 return 0;
2590}
2591
2592/* This function replace the HTTP status code and the associated message. The
Christopher Faulete00d06c2019-12-16 17:18:42 +01002593 * variable <status> contains the new status code. This function never fails. It
2594 * returns 0 in case of success, -1 in case of internal error.
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002595 */
Christopher Faulet96bff762019-12-17 13:46:18 +01002596int http_res_set_status(unsigned int status, struct ist reason, struct stream *s)
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002597{
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01002598 struct htx *htx = htxbuf(&s->res.buf);
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002599 char *res;
2600
2601 chunk_reset(&trash);
2602 res = ultoa_o(status, trash.area, trash.size);
2603 trash.data = res - trash.area;
2604
2605 /* Do we have a custom reason format string? */
Tim Duesterhuse296d3e2020-03-05 17:56:31 +01002606 if (!isttest(reason)) {
Christopher Faulet96bff762019-12-17 13:46:18 +01002607 const char *str = http_get_reason(status);
Tim Duesterhusdcf753a2021-03-04 17:31:47 +01002608 reason = ist(str);
Christopher Faulet96bff762019-12-17 13:46:18 +01002609 }
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002610
Christopher Fauletbde2c4c2020-08-31 16:43:34 +02002611 if (!http_replace_res_status(htx, ist2(trash.area, trash.data), reason))
Christopher Faulete00d06c2019-12-16 17:18:42 +01002612 return -1;
Willy Tarreau640e2532023-01-10 14:50:44 +01002613 s->txn->status = status;
Christopher Faulete00d06c2019-12-16 17:18:42 +01002614 return 0;
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002615}
2616
Christopher Faulet3e964192018-10-24 11:39:23 +02002617/* Executes the http-request rules <rules> for stream <s>, proxy <px> and
2618 * transaction <txn>. Returns the verdict of the first rule that prevents
2619 * further processing of the request (auth, deny, ...), and defaults to
2620 * HTTP_RULE_RES_STOP if it executed all rules or stopped on an allow, or
2621 * HTTP_RULE_RES_CONT if the last rule was reached. It may set the TX_CLTARPIT
2622 * on txn->flags if it encounters a tarpit rule. If <deny_status> is not NULL
2623 * and a deny/tarpit rule is matched, it will be filled with this rule's deny
2624 * status.
2625 */
Christopher Fauletd4150ad2021-10-13 15:35:55 +02002626static enum rule_result http_req_get_intercept_rule(struct proxy *px, struct list *def_rules,
2627 struct list *rules, struct stream *s)
Christopher Faulet3e964192018-10-24 11:39:23 +02002628{
2629 struct session *sess = strm_sess(s);
2630 struct http_txn *txn = s->txn;
Christopher Faulet3e964192018-10-24 11:39:23 +02002631 struct act_rule *rule;
Christopher Faulet3e964192018-10-24 11:39:23 +02002632 enum rule_result rule_ret = HTTP_RULE_RES_CONT;
Christopher Faulet105ba6c2019-12-18 14:41:51 +01002633 int act_opts = 0;
Christopher Faulet3e964192018-10-24 11:39:23 +02002634
Christopher Faulet3e964192018-10-24 11:39:23 +02002635 /* If "the current_rule_list" match the executed rule list, we are in
2636 * resume condition. If a resume is needed it is always in the action
2637 * and never in the ACL or converters. In this case, we initialise the
2638 * current rule, and go to the action execution point.
2639 */
2640 if (s->current_rule) {
2641 rule = s->current_rule;
2642 s->current_rule = NULL;
Christopher Fauletd4150ad2021-10-13 15:35:55 +02002643 if (s->current_rule_list == rules || (def_rules && s->current_rule_list == def_rules))
Christopher Faulet3e964192018-10-24 11:39:23 +02002644 goto resume_execution;
2645 }
Christopher Fauletd4150ad2021-10-13 15:35:55 +02002646 s->current_rule_list = ((!def_rules || s->current_rule_list == def_rules) ? rules : def_rules);
Christopher Faulet3e964192018-10-24 11:39:23 +02002647
Christopher Fauletd4150ad2021-10-13 15:35:55 +02002648 restart:
Christopher Faulet1aea50e2020-01-17 16:03:53 +01002649 /* start the ruleset evaluation in strict mode */
2650 txn->req.flags &= ~HTTP_MSGF_SOFT_RW;
Christopher Faulet46f95542019-12-20 10:07:22 +01002651
Christopher Fauletd4150ad2021-10-13 15:35:55 +02002652 list_for_each_entry(rule, s->current_rule_list, list) {
Christopher Faulet3e964192018-10-24 11:39:23 +02002653 /* check optional condition */
2654 if (rule->cond) {
2655 int ret;
2656
2657 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
2658 ret = acl_pass(ret);
2659
2660 if (rule->cond->pol == ACL_COND_UNLESS)
2661 ret = !ret;
2662
2663 if (!ret) /* condition not matched */
2664 continue;
2665 }
2666
Christopher Faulet105ba6c2019-12-18 14:41:51 +01002667 act_opts |= ACT_OPT_FIRST;
Christopher Faulet3e964192018-10-24 11:39:23 +02002668 resume_execution:
Amaury Denoyelle03517732021-05-07 14:25:01 +02002669 if (rule->kw->flags & KWF_EXPERIMENTAL)
2670 mark_tainted(TAINTED_ACTION_EXP_EXECUTED);
2671
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002672 /* Always call the action function if defined */
2673 if (rule->action_ptr) {
Christopher Fauletd7bac882023-04-14 12:05:55 +02002674 if ((s->scf->flags & SC_FL_ERROR) ||
Christopher Fauletca5309a2023-04-17 16:17:32 +02002675 ((s->scf->flags & (SC_FL_EOS|SC_FL_ABRT_DONE)) &&
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002676 (px->options & PR_O_ABRT_CLOSE)))
Christopher Faulet105ba6c2019-12-18 14:41:51 +01002677 act_opts |= ACT_OPT_FINAL;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002678
Christopher Faulet105ba6c2019-12-18 14:41:51 +01002679 switch (rule->action_ptr(rule, px, sess, s, act_opts)) {
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002680 case ACT_RET_CONT:
2681 break;
2682 case ACT_RET_STOP:
2683 rule_ret = HTTP_RULE_RES_STOP;
Willy Tarreauc6dae862022-03-09 17:23:10 +01002684 s->last_rule_file = rule->conf.file;
2685 s->last_rule_line = rule->conf.line;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002686 goto end;
2687 case ACT_RET_YIELD:
2688 s->current_rule = rule;
2689 rule_ret = HTTP_RULE_RES_YIELD;
2690 goto end;
2691 case ACT_RET_ERR:
2692 rule_ret = HTTP_RULE_RES_ERROR;
Willy Tarreauc6dae862022-03-09 17:23:10 +01002693 s->last_rule_file = rule->conf.file;
2694 s->last_rule_line = rule->conf.line;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002695 goto end;
2696 case ACT_RET_DONE:
2697 rule_ret = HTTP_RULE_RES_DONE;
Willy Tarreauc6dae862022-03-09 17:23:10 +01002698 s->last_rule_file = rule->conf.file;
2699 s->last_rule_line = rule->conf.line;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002700 goto end;
2701 case ACT_RET_DENY:
Christopher Fauletb58f62b2020-01-13 16:40:13 +01002702 if (txn->status == -1)
2703 txn->status = 403;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002704 rule_ret = HTTP_RULE_RES_DENY;
Willy Tarreauc6dae862022-03-09 17:23:10 +01002705 s->last_rule_file = rule->conf.file;
2706 s->last_rule_line = rule->conf.line;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002707 goto end;
2708 case ACT_RET_ABRT:
2709 rule_ret = HTTP_RULE_RES_ABRT;
Willy Tarreauc6dae862022-03-09 17:23:10 +01002710 s->last_rule_file = rule->conf.file;
2711 s->last_rule_line = rule->conf.line;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002712 goto end;
2713 case ACT_RET_INV:
2714 rule_ret = HTTP_RULE_RES_BADREQ;
Willy Tarreauc6dae862022-03-09 17:23:10 +01002715 s->last_rule_file = rule->conf.file;
2716 s->last_rule_line = rule->conf.line;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002717 goto end;
2718 }
2719 continue; /* eval the next rule */
2720 }
2721
2722 /* If not action function defined, check for known actions */
Christopher Faulet3e964192018-10-24 11:39:23 +02002723 switch (rule->action) {
2724 case ACT_ACTION_ALLOW:
2725 rule_ret = HTTP_RULE_RES_STOP;
Willy Tarreauc6dae862022-03-09 17:23:10 +01002726 s->last_rule_file = rule->conf.file;
2727 s->last_rule_line = rule->conf.line;
Christopher Faulet3e964192018-10-24 11:39:23 +02002728 goto end;
2729
2730 case ACT_ACTION_DENY:
Christopher Faulet5cb513a2020-05-13 17:56:56 +02002731 txn->status = rule->arg.http_reply->status;
2732 txn->http_reply = rule->arg.http_reply;
Christopher Faulet3e964192018-10-24 11:39:23 +02002733 rule_ret = HTTP_RULE_RES_DENY;
Willy Tarreauc6dae862022-03-09 17:23:10 +01002734 s->last_rule_file = rule->conf.file;
2735 s->last_rule_line = rule->conf.line;
Christopher Faulet3e964192018-10-24 11:39:23 +02002736 goto end;
2737
2738 case ACT_HTTP_REQ_TARPIT:
2739 txn->flags |= TX_CLTARPIT;
Christopher Faulet5cb513a2020-05-13 17:56:56 +02002740 txn->status = rule->arg.http_reply->status;
2741 txn->http_reply = rule->arg.http_reply;
Christopher Faulet3e964192018-10-24 11:39:23 +02002742 rule_ret = HTTP_RULE_RES_DENY;
Willy Tarreauc6dae862022-03-09 17:23:10 +01002743 s->last_rule_file = rule->conf.file;
2744 s->last_rule_line = rule->conf.line;
Christopher Faulet3e964192018-10-24 11:39:23 +02002745 goto end;
2746
Willy Tarreaubc1223b2021-09-02 16:54:33 +02002747 case ACT_HTTP_REDIR: {
2748 int ret = http_apply_redirect_rule(rule->arg.redir, s, txn);
2749
2750 if (ret == 2) // 2 == skip
2751 break;
2752
2753 rule_ret = ret ? HTTP_RULE_RES_ABRT : HTTP_RULE_RES_ERROR;
Willy Tarreauc6dae862022-03-09 17:23:10 +01002754 s->last_rule_file = rule->conf.file;
2755 s->last_rule_line = rule->conf.line;
Christopher Faulet3e964192018-10-24 11:39:23 +02002756 goto end;
Willy Tarreaubc1223b2021-09-02 16:54:33 +02002757 }
Christopher Faulet3e964192018-10-24 11:39:23 +02002758
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002759 /* other flags exists, but normally, they never be matched. */
Christopher Faulet3e964192018-10-24 11:39:23 +02002760 default:
2761 break;
2762 }
2763 }
2764
Christopher Fauletd4150ad2021-10-13 15:35:55 +02002765 if (def_rules && s->current_rule_list == def_rules) {
2766 s->current_rule_list = rules;
2767 goto restart;
2768 }
2769
Christopher Faulet3e964192018-10-24 11:39:23 +02002770 end:
Christopher Faulet1aea50e2020-01-17 16:03:53 +01002771 /* if the ruleset evaluation is finished reset the strict mode */
Christopher Faulet46f95542019-12-20 10:07:22 +01002772 if (rule_ret != HTTP_RULE_RES_YIELD)
Christopher Faulet1aea50e2020-01-17 16:03:53 +01002773 txn->req.flags &= ~HTTP_MSGF_SOFT_RW;
Christopher Faulet46f95542019-12-20 10:07:22 +01002774
Christopher Faulet3e964192018-10-24 11:39:23 +02002775 /* we reached the end of the rules, nothing to report */
2776 return rule_ret;
2777}
2778
2779/* Executes the http-response rules <rules> for stream <s> and proxy <px>. It
2780 * returns one of 5 possible statuses: HTTP_RULE_RES_CONT, HTTP_RULE_RES_STOP,
2781 * HTTP_RULE_RES_DONE, HTTP_RULE_RES_YIELD, or HTTP_RULE_RES_BADREQ. If *CONT
2782 * is returned, the process can continue the evaluation of next rule list. If
2783 * *STOP or *DONE is returned, the process must stop the evaluation. If *BADREQ
2784 * is returned, it means the operation could not be processed and a server error
Christopher Fauleta53abad2020-05-13 08:12:22 +02002785 * must be returned. If *YIELD is returned, the caller must call again the
2786 * function with the same context.
Christopher Faulet3e964192018-10-24 11:39:23 +02002787 */
Christopher Fauletd4150ad2021-10-13 15:35:55 +02002788static enum rule_result http_res_get_intercept_rule(struct proxy *px, struct list *def_rules,
2789 struct list *rules, struct stream *s)
Christopher Faulet3e964192018-10-24 11:39:23 +02002790{
2791 struct session *sess = strm_sess(s);
2792 struct http_txn *txn = s->txn;
Christopher Faulet3e964192018-10-24 11:39:23 +02002793 struct act_rule *rule;
Christopher Faulet3e964192018-10-24 11:39:23 +02002794 enum rule_result rule_ret = HTTP_RULE_RES_CONT;
Christopher Faulet105ba6c2019-12-18 14:41:51 +01002795 int act_opts = 0;
Christopher Faulet3e964192018-10-24 11:39:23 +02002796
Christopher Faulet3e964192018-10-24 11:39:23 +02002797 /* If "the current_rule_list" match the executed rule list, we are in
2798 * resume condition. If a resume is needed it is always in the action
2799 * and never in the ACL or converters. In this case, we initialise the
2800 * current rule, and go to the action execution point.
2801 */
2802 if (s->current_rule) {
2803 rule = s->current_rule;
2804 s->current_rule = NULL;
Christopher Fauletd4150ad2021-10-13 15:35:55 +02002805 if (s->current_rule_list == rules || (def_rules && s->current_rule_list == def_rules))
Christopher Faulet3e964192018-10-24 11:39:23 +02002806 goto resume_execution;
2807 }
Christopher Fauletd4150ad2021-10-13 15:35:55 +02002808 s->current_rule_list = ((!def_rules || s->current_rule_list == def_rules) ? rules : def_rules);
2809
2810 restart:
Christopher Faulet3e964192018-10-24 11:39:23 +02002811
Christopher Faulet1aea50e2020-01-17 16:03:53 +01002812 /* start the ruleset evaluation in strict mode */
2813 txn->rsp.flags &= ~HTTP_MSGF_SOFT_RW;
Christopher Faulet46f95542019-12-20 10:07:22 +01002814
Christopher Fauletd4150ad2021-10-13 15:35:55 +02002815 list_for_each_entry(rule, s->current_rule_list, list) {
Christopher Faulet3e964192018-10-24 11:39:23 +02002816 /* check optional condition */
2817 if (rule->cond) {
2818 int ret;
2819
2820 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
2821 ret = acl_pass(ret);
2822
2823 if (rule->cond->pol == ACL_COND_UNLESS)
2824 ret = !ret;
2825
2826 if (!ret) /* condition not matched */
2827 continue;
2828 }
2829
Christopher Faulet105ba6c2019-12-18 14:41:51 +01002830 act_opts |= ACT_OPT_FIRST;
Christopher Faulet3e964192018-10-24 11:39:23 +02002831resume_execution:
Amaury Denoyelle03517732021-05-07 14:25:01 +02002832 if (rule->kw->flags & KWF_EXPERIMENTAL)
2833 mark_tainted(TAINTED_ACTION_EXP_EXECUTED);
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002834
2835 /* Always call the action function if defined */
2836 if (rule->action_ptr) {
Christopher Fauletd7bac882023-04-14 12:05:55 +02002837 if ((s->scf->flags & SC_FL_ERROR) ||
Christopher Fauletca5309a2023-04-17 16:17:32 +02002838 ((s->scf->flags & (SC_FL_EOS|SC_FL_ABRT_DONE)) &&
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002839 (px->options & PR_O_ABRT_CLOSE)))
Christopher Faulet105ba6c2019-12-18 14:41:51 +01002840 act_opts |= ACT_OPT_FINAL;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002841
Christopher Faulet105ba6c2019-12-18 14:41:51 +01002842 switch (rule->action_ptr(rule, px, sess, s, act_opts)) {
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002843 case ACT_RET_CONT:
2844 break;
2845 case ACT_RET_STOP:
2846 rule_ret = HTTP_RULE_RES_STOP;
Willy Tarreauc6dae862022-03-09 17:23:10 +01002847 s->last_rule_file = rule->conf.file;
2848 s->last_rule_line = rule->conf.line;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002849 goto end;
2850 case ACT_RET_YIELD:
2851 s->current_rule = rule;
2852 rule_ret = HTTP_RULE_RES_YIELD;
2853 goto end;
2854 case ACT_RET_ERR:
2855 rule_ret = HTTP_RULE_RES_ERROR;
Willy Tarreauc6dae862022-03-09 17:23:10 +01002856 s->last_rule_file = rule->conf.file;
2857 s->last_rule_line = rule->conf.line;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002858 goto end;
2859 case ACT_RET_DONE:
2860 rule_ret = HTTP_RULE_RES_DONE;
Willy Tarreauc6dae862022-03-09 17:23:10 +01002861 s->last_rule_file = rule->conf.file;
2862 s->last_rule_line = rule->conf.line;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002863 goto end;
2864 case ACT_RET_DENY:
Christopher Fauletb58f62b2020-01-13 16:40:13 +01002865 if (txn->status == -1)
2866 txn->status = 502;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002867 rule_ret = HTTP_RULE_RES_DENY;
Willy Tarreauc6dae862022-03-09 17:23:10 +01002868 s->last_rule_file = rule->conf.file;
2869 s->last_rule_line = rule->conf.line;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002870 goto end;
2871 case ACT_RET_ABRT:
2872 rule_ret = HTTP_RULE_RES_ABRT;
Willy Tarreauc6dae862022-03-09 17:23:10 +01002873 s->last_rule_file = rule->conf.file;
2874 s->last_rule_line = rule->conf.line;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002875 goto end;
2876 case ACT_RET_INV:
2877 rule_ret = HTTP_RULE_RES_BADREQ;
Willy Tarreauc6dae862022-03-09 17:23:10 +01002878 s->last_rule_file = rule->conf.file;
2879 s->last_rule_line = rule->conf.line;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002880 goto end;
2881 }
2882 continue; /* eval the next rule */
2883 }
2884
2885 /* If not action function defined, check for known actions */
Christopher Faulet3e964192018-10-24 11:39:23 +02002886 switch (rule->action) {
2887 case ACT_ACTION_ALLOW:
2888 rule_ret = HTTP_RULE_RES_STOP; /* "allow" rules are OK */
Willy Tarreauc6dae862022-03-09 17:23:10 +01002889 s->last_rule_file = rule->conf.file;
2890 s->last_rule_line = rule->conf.line;
Christopher Faulet3e964192018-10-24 11:39:23 +02002891 goto end;
2892
2893 case ACT_ACTION_DENY:
Christopher Faulet5cb513a2020-05-13 17:56:56 +02002894 txn->status = rule->arg.http_reply->status;
2895 txn->http_reply = rule->arg.http_reply;
Christopher Faulet3a26bee2019-12-16 12:47:40 +01002896 rule_ret = HTTP_RULE_RES_DENY;
Willy Tarreauc6dae862022-03-09 17:23:10 +01002897 s->last_rule_file = rule->conf.file;
2898 s->last_rule_line = rule->conf.line;
Christopher Faulet3e964192018-10-24 11:39:23 +02002899 goto end;
2900
Willy Tarreaubc1223b2021-09-02 16:54:33 +02002901 case ACT_HTTP_REDIR: {
2902 int ret = http_apply_redirect_rule(rule->arg.redir, s, txn);
Christopher Faulet3e964192018-10-24 11:39:23 +02002903
Willy Tarreaubc1223b2021-09-02 16:54:33 +02002904 if (ret == 2) // 2 == skip
2905 break;
2906
2907 rule_ret = ret ? HTTP_RULE_RES_ABRT : HTTP_RULE_RES_ERROR;
Willy Tarreauc6dae862022-03-09 17:23:10 +01002908 s->last_rule_file = rule->conf.file;
2909 s->last_rule_line = rule->conf.line;
Willy Tarreaubc1223b2021-09-02 16:54:33 +02002910 goto end;
2911 }
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002912 /* other flags exists, but normally, they never be matched. */
Christopher Faulet3e964192018-10-24 11:39:23 +02002913 default:
2914 break;
2915 }
2916 }
2917
Christopher Fauletd4150ad2021-10-13 15:35:55 +02002918 if (def_rules && s->current_rule_list == def_rules) {
2919 s->current_rule_list = rules;
2920 goto restart;
2921 }
2922
Christopher Faulet3e964192018-10-24 11:39:23 +02002923 end:
Christopher Faulet1aea50e2020-01-17 16:03:53 +01002924 /* if the ruleset evaluation is finished reset the strict mode */
Christopher Faulet46f95542019-12-20 10:07:22 +01002925 if (rule_ret != HTTP_RULE_RES_YIELD)
Christopher Faulet1aea50e2020-01-17 16:03:53 +01002926 txn->rsp.flags &= ~HTTP_MSGF_SOFT_RW;
Christopher Faulet46f95542019-12-20 10:07:22 +01002927
Christopher Faulet3e964192018-10-24 11:39:23 +02002928 /* we reached the end of the rules, nothing to report */
2929 return rule_ret;
2930}
2931
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002932/* Executes backend and frontend http-after-response rules for the stream <s>,
2933 * in that order. it return 1 on success and 0 on error. It is the caller
2934 * responsibility to catch error or ignore it. If it catches it, this function
2935 * may be called a second time, for the internal error.
2936 */
2937int http_eval_after_res_rules(struct stream *s)
2938{
Christopher Fauletd4150ad2021-10-13 15:35:55 +02002939 struct list *def_rules, *rules;
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002940 struct session *sess = s->sess;
2941 enum rule_result ret = HTTP_RULE_RES_CONT;
2942
Christopher Faulet507479b2020-05-15 12:29:46 +02002943 /* Eval after-response ruleset only if the reply is not const */
2944 if (s->txn->flags & TX_CONST_REPLY)
2945 goto end;
2946
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002947 /* prune the request variables if not already done and swap to the response variables. */
2948 if (s->vars_reqres.scope != SCOPE_RES) {
2949 if (!LIST_ISEMPTY(&s->vars_reqres.head))
2950 vars_prune(&s->vars_reqres, s->sess, s);
Willy Tarreaub7bfcb32021-08-31 08:13:25 +02002951 vars_init_head(&s->vars_reqres, SCOPE_RES);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002952 }
2953
Christopher Fauletd4150ad2021-10-13 15:35:55 +02002954 def_rules = (s->be->defpx ? &s->be->defpx->http_after_res_rules : NULL);
2955 rules = &s->be->http_after_res_rules;
2956
2957 ret = http_res_get_intercept_rule(s->be, def_rules, rules, s);
Christopher Faulet4c5a5912021-11-09 17:48:39 +01002958 if ((ret == HTTP_RULE_RES_CONT || ret == HTTP_RULE_RES_STOP) && sess->fe != s->be) {
Christopher Fauletd4150ad2021-10-13 15:35:55 +02002959 def_rules = ((sess->fe->defpx && sess->fe->defpx != s->be->defpx) ? &sess->fe->defpx->http_after_res_rules : NULL);
2960 rules = &sess->fe->http_after_res_rules;
2961 ret = http_res_get_intercept_rule(sess->fe, def_rules, rules, s);
2962 }
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002963
Christopher Faulet507479b2020-05-15 12:29:46 +02002964 end:
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002965 /* All other codes than CONTINUE, STOP or DONE are forbidden */
2966 return (ret == HTTP_RULE_RES_CONT || ret == HTTP_RULE_RES_STOP || ret == HTTP_RULE_RES_DONE);
2967}
2968
Christopher Fauletfcda7c62018-10-24 11:56:22 +02002969/*
2970 * Manage client-side cookie. It can impact performance by about 2% so it is
2971 * desirable to call it only when needed. This code is quite complex because
2972 * of the multiple very crappy and ambiguous syntaxes we have to support. it
2973 * highly recommended not to touch this part without a good reason !
2974 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002975static void http_manage_client_side_cookies(struct stream *s, struct channel *req)
Christopher Fauletfcda7c62018-10-24 11:56:22 +02002976{
2977 struct session *sess = s->sess;
2978 struct http_txn *txn = s->txn;
2979 struct htx *htx;
2980 struct http_hdr_ctx ctx;
2981 char *hdr_beg, *hdr_end, *del_from;
2982 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
2983 int preserve_hdr;
2984
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01002985 htx = htxbuf(&req->buf);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02002986 ctx.blk = NULL;
2987 while (http_find_header(htx, ist("Cookie"), &ctx, 1)) {
Olivier Houchardf0f42382019-07-22 17:43:46 +02002988 int is_first = 1;
Christopher Fauletfcda7c62018-10-24 11:56:22 +02002989 del_from = NULL; /* nothing to be deleted */
2990 preserve_hdr = 0; /* assume we may kill the whole header */
2991
2992 /* Now look for cookies. Conforming to RFC2109, we have to support
2993 * attributes whose name begin with a '$', and associate them with
2994 * the right cookie, if we want to delete this cookie.
2995 * So there are 3 cases for each cookie read :
2996 * 1) it's a special attribute, beginning with a '$' : ignore it.
2997 * 2) it's a server id cookie that we *MAY* want to delete : save
2998 * some pointers on it (last semi-colon, beginning of cookie...)
2999 * 3) it's an application cookie : we *MAY* have to delete a previous
3000 * "special" cookie.
3001 * At the end of loop, if a "special" cookie remains, we may have to
3002 * remove it. If no application cookie persists in the header, we
3003 * *MUST* delete it.
3004 *
3005 * Note: RFC2965 is unclear about the processing of spaces around
3006 * the equal sign in the ATTR=VALUE form. A careful inspection of
3007 * the RFC explicitly allows spaces before it, and not within the
3008 * tokens (attrs or values). An inspection of RFC2109 allows that
3009 * too but section 10.1.3 lets one think that spaces may be allowed
3010 * after the equal sign too, resulting in some (rare) buggy
3011 * implementations trying to do that. So let's do what servers do.
3012 * Latest ietf draft forbids spaces all around. Also, earlier RFCs
3013 * allowed quoted strings in values, with any possible character
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003014 * after a backslash, including control chars and delimiters, which
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003015 * causes parsing to become ambiguous. Browsers also allow spaces
3016 * within values even without quotes.
3017 *
3018 * We have to keep multiple pointers in order to support cookie
3019 * removal at the beginning, middle or end of header without
3020 * corrupting the header. All of these headers are valid :
3021 *
3022 * hdr_beg hdr_end
3023 * | |
3024 * v |
3025 * NAME1=VALUE1;NAME2=VALUE2;NAME3=VALUE3 |
3026 * NAME1=VALUE1;NAME2_ONLY ;NAME3=VALUE3 v
3027 * NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3
3028 * | | | | | | |
3029 * | | | | | | |
3030 * | | | | | | +--> next
3031 * | | | | | +----> val_end
3032 * | | | | +-----------> val_beg
3033 * | | | +--------------> equal
3034 * | | +----------------> att_end
3035 * | +---------------------> att_beg
3036 * +--------------------------> prev
3037 *
3038 */
3039 hdr_beg = ctx.value.ptr;
3040 hdr_end = hdr_beg + ctx.value.len;
3041 for (prev = hdr_beg; prev < hdr_end; prev = next) {
3042 /* Iterate through all cookies on this line */
3043
3044 /* find att_beg */
3045 att_beg = prev;
Olivier Houchardf0f42382019-07-22 17:43:46 +02003046 if (!is_first)
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003047 att_beg++;
Olivier Houchardf0f42382019-07-22 17:43:46 +02003048 is_first = 0;
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003049
3050 while (att_beg < hdr_end && HTTP_IS_SPHT(*att_beg))
3051 att_beg++;
3052
3053 /* find att_end : this is the first character after the last non
3054 * space before the equal. It may be equal to hdr_end.
3055 */
3056 equal = att_end = att_beg;
3057 while (equal < hdr_end) {
3058 if (*equal == '=' || *equal == ',' || *equal == ';')
3059 break;
3060 if (HTTP_IS_SPHT(*equal++))
3061 continue;
3062 att_end = equal;
3063 }
3064
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003065 /* here, <equal> points to '=', a delimiter or the end. <att_end>
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003066 * is between <att_beg> and <equal>, both may be identical.
3067 */
3068 /* look for end of cookie if there is an equal sign */
3069 if (equal < hdr_end && *equal == '=') {
3070 /* look for the beginning of the value */
3071 val_beg = equal + 1;
3072 while (val_beg < hdr_end && HTTP_IS_SPHT(*val_beg))
3073 val_beg++;
3074
3075 /* find the end of the value, respecting quotes */
3076 next = http_find_cookie_value_end(val_beg, hdr_end);
3077
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003078 /* make val_end point to the first white space or delimiter after the value */
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003079 val_end = next;
3080 while (val_end > val_beg && HTTP_IS_SPHT(*(val_end - 1)))
3081 val_end--;
3082 }
3083 else
3084 val_beg = val_end = next = equal;
3085
3086 /* We have nothing to do with attributes beginning with
3087 * '$'. However, they will automatically be removed if a
3088 * header before them is removed, since they're supposed
3089 * to be linked together.
3090 */
3091 if (*att_beg == '$')
3092 continue;
3093
3094 /* Ignore cookies with no equal sign */
3095 if (equal == next) {
3096 /* This is not our cookie, so we must preserve it. But if we already
3097 * scheduled another cookie for removal, we cannot remove the
3098 * complete header, but we can remove the previous block itself.
3099 */
3100 preserve_hdr = 1;
3101 if (del_from != NULL) {
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003102 int delta = http_del_hdr_value(hdr_beg, hdr_end, &del_from, prev);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003103 val_end += delta;
3104 next += delta;
3105 hdr_end += delta;
3106 prev = del_from;
3107 del_from = NULL;
3108 }
3109 continue;
3110 }
3111
3112 /* if there are spaces around the equal sign, we need to
3113 * strip them otherwise we'll get trouble for cookie captures,
3114 * or even for rewrites. Since this happens extremely rarely,
3115 * it does not hurt performance.
3116 */
3117 if (unlikely(att_end != equal || val_beg > equal + 1)) {
3118 int stripped_before = 0;
3119 int stripped_after = 0;
3120
3121 if (att_end != equal) {
3122 memmove(att_end, equal, hdr_end - equal);
3123 stripped_before = (att_end - equal);
3124 equal += stripped_before;
3125 val_beg += stripped_before;
3126 }
3127
3128 if (val_beg > equal + 1) {
3129 memmove(equal + 1, val_beg, hdr_end + stripped_before - val_beg);
3130 stripped_after = (equal + 1) - val_beg;
3131 val_beg += stripped_after;
3132 stripped_before += stripped_after;
3133 }
3134
3135 val_end += stripped_before;
3136 next += stripped_before;
3137 hdr_end += stripped_before;
3138 }
3139 /* now everything is as on the diagram above */
3140
3141 /* First, let's see if we want to capture this cookie. We check
3142 * that we don't already have a client side cookie, because we
3143 * can only capture one. Also as an optimisation, we ignore
3144 * cookies shorter than the declared name.
3145 */
3146 if (sess->fe->capture_name != NULL && txn->cli_cookie == NULL &&
3147 (val_end - att_beg >= sess->fe->capture_namelen) &&
3148 memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) {
3149 int log_len = val_end - att_beg;
3150
3151 if ((txn->cli_cookie = pool_alloc(pool_head_capture)) == NULL) {
3152 ha_alert("HTTP logging : out of memory.\n");
3153 } else {
3154 if (log_len > sess->fe->capture_len)
3155 log_len = sess->fe->capture_len;
3156 memcpy(txn->cli_cookie, att_beg, log_len);
3157 txn->cli_cookie[log_len] = 0;
3158 }
3159 }
3160
3161 /* Persistence cookies in passive, rewrite or insert mode have the
3162 * following form :
3163 *
3164 * Cookie: NAME=SRV[|<lastseen>[|<firstseen>]]
3165 *
3166 * For cookies in prefix mode, the form is :
3167 *
3168 * Cookie: NAME=SRV~VALUE
3169 */
3170 if ((att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) &&
3171 (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) {
3172 struct server *srv = s->be->srv;
3173 char *delim;
3174
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003175 /* if we're in cookie prefix mode, we'll search the delimiter so that we
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003176 * have the server ID between val_beg and delim, and the original cookie between
3177 * delim+1 and val_end. Otherwise, delim==val_end :
3178 *
3179 * hdr_beg
3180 * |
3181 * v
3182 * NAME=SRV; # in all but prefix modes
3183 * NAME=SRV~OPAQUE ; # in prefix mode
3184 * || || | |+-> next
3185 * || || | +--> val_end
3186 * || || +---------> delim
3187 * || |+------------> val_beg
3188 * || +-------------> att_end = equal
3189 * |+-----------------> att_beg
3190 * +------------------> prev
3191 *
3192 */
3193 if (s->be->ck_opts & PR_CK_PFX) {
3194 for (delim = val_beg; delim < val_end; delim++)
3195 if (*delim == COOKIE_DELIM)
3196 break;
3197 }
3198 else {
3199 char *vbar1;
3200 delim = val_end;
3201 /* Now check if the cookie contains a date field, which would
3202 * appear after a vertical bar ('|') just after the server name
3203 * and before the delimiter.
3204 */
3205 vbar1 = memchr(val_beg, COOKIE_DELIM_DATE, val_end - val_beg);
3206 if (vbar1) {
3207 /* OK, so left of the bar is the server's cookie and
3208 * right is the last seen date. It is a base64 encoded
3209 * 30-bit value representing the UNIX date since the
3210 * epoch in 4-second quantities.
3211 */
3212 int val;
3213 delim = vbar1++;
3214 if (val_end - vbar1 >= 5) {
3215 val = b64tos30(vbar1);
3216 if (val > 0)
3217 txn->cookie_last_date = val << 2;
3218 }
3219 /* look for a second vertical bar */
3220 vbar1 = memchr(vbar1, COOKIE_DELIM_DATE, val_end - vbar1);
3221 if (vbar1 && (val_end - vbar1 > 5)) {
3222 val = b64tos30(vbar1 + 1);
3223 if (val > 0)
3224 txn->cookie_first_date = val << 2;
3225 }
3226 }
3227 }
3228
3229 /* if the cookie has an expiration date and the proxy wants to check
3230 * it, then we do that now. We first check if the cookie is too old,
3231 * then only if it has expired. We detect strict overflow because the
3232 * time resolution here is not great (4 seconds). Cookies with dates
3233 * in the future are ignored if their offset is beyond one day. This
3234 * allows an admin to fix timezone issues without expiring everyone
3235 * and at the same time avoids keeping unwanted side effects for too
3236 * long.
3237 */
3238 if (txn->cookie_first_date && s->be->cookie_maxlife &&
3239 (((signed)(date.tv_sec - txn->cookie_first_date) > (signed)s->be->cookie_maxlife) ||
3240 ((signed)(txn->cookie_first_date - date.tv_sec) > 86400))) {
3241 txn->flags &= ~TX_CK_MASK;
3242 txn->flags |= TX_CK_OLD;
3243 delim = val_beg; // let's pretend we have not found the cookie
3244 txn->cookie_first_date = 0;
3245 txn->cookie_last_date = 0;
3246 }
3247 else if (txn->cookie_last_date && s->be->cookie_maxidle &&
3248 (((signed)(date.tv_sec - txn->cookie_last_date) > (signed)s->be->cookie_maxidle) ||
3249 ((signed)(txn->cookie_last_date - date.tv_sec) > 86400))) {
3250 txn->flags &= ~TX_CK_MASK;
3251 txn->flags |= TX_CK_EXPIRED;
3252 delim = val_beg; // let's pretend we have not found the cookie
3253 txn->cookie_first_date = 0;
3254 txn->cookie_last_date = 0;
3255 }
3256
3257 /* Here, we'll look for the first running server which supports the cookie.
3258 * This allows to share a same cookie between several servers, for example
3259 * to dedicate backup servers to specific servers only.
3260 * However, to prevent clients from sticking to cookie-less backup server
3261 * when they have incidentely learned an empty cookie, we simply ignore
3262 * empty cookies and mark them as invalid.
3263 * The same behaviour is applied when persistence must be ignored.
3264 */
3265 if ((delim == val_beg) || (s->flags & (SF_IGNORE_PRST | SF_ASSIGNED)))
3266 srv = NULL;
3267
3268 while (srv) {
3269 if (srv->cookie && (srv->cklen == delim - val_beg) &&
3270 !memcmp(val_beg, srv->cookie, delim - val_beg)) {
3271 if ((srv->cur_state != SRV_ST_STOPPED) ||
3272 (s->be->options & PR_O_PERSIST) ||
3273 (s->flags & SF_FORCE_PRST)) {
3274 /* we found the server and we can use it */
3275 txn->flags &= ~TX_CK_MASK;
3276 txn->flags |= (srv->cur_state != SRV_ST_STOPPED) ? TX_CK_VALID : TX_CK_DOWN;
3277 s->flags |= SF_DIRECT | SF_ASSIGNED;
3278 s->target = &srv->obj_type;
3279 break;
3280 } else {
3281 /* we found a server, but it's down,
3282 * mark it as such and go on in case
3283 * another one is available.
3284 */
3285 txn->flags &= ~TX_CK_MASK;
3286 txn->flags |= TX_CK_DOWN;
3287 }
3288 }
3289 srv = srv->next;
3290 }
3291
3292 if (!srv && !(txn->flags & (TX_CK_DOWN|TX_CK_EXPIRED|TX_CK_OLD))) {
3293 /* no server matched this cookie or we deliberately skipped it */
3294 txn->flags &= ~TX_CK_MASK;
3295 if ((s->flags & (SF_IGNORE_PRST | SF_ASSIGNED)))
3296 txn->flags |= TX_CK_UNUSED;
3297 else
3298 txn->flags |= TX_CK_INVALID;
3299 }
3300
3301 /* depending on the cookie mode, we may have to either :
3302 * - delete the complete cookie if we're in insert+indirect mode, so that
3303 * the server never sees it ;
3304 * - remove the server id from the cookie value, and tag the cookie as an
Joseph Herlante9d5c722018-11-25 11:00:25 -08003305 * application cookie so that it does not get accidentally removed later,
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003306 * if we're in cookie prefix mode
3307 */
3308 if ((s->be->ck_opts & PR_CK_PFX) && (delim != val_end)) {
3309 int delta; /* negative */
3310
3311 memmove(val_beg, delim + 1, hdr_end - (delim + 1));
3312 delta = val_beg - (delim + 1);
3313 val_end += delta;
3314 next += delta;
3315 hdr_end += delta;
3316 del_from = NULL;
3317 preserve_hdr = 1; /* we want to keep this cookie */
3318 }
3319 else if (del_from == NULL &&
3320 (s->be->ck_opts & (PR_CK_INS | PR_CK_IND)) == (PR_CK_INS | PR_CK_IND)) {
3321 del_from = prev;
3322 }
3323 }
3324 else {
3325 /* This is not our cookie, so we must preserve it. But if we already
3326 * scheduled another cookie for removal, we cannot remove the
3327 * complete header, but we can remove the previous block itself.
3328 */
3329 preserve_hdr = 1;
3330
3331 if (del_from != NULL) {
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003332 int delta = http_del_hdr_value(hdr_beg, hdr_end, &del_from, prev);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003333 if (att_beg >= del_from)
3334 att_beg += delta;
3335 if (att_end >= del_from)
3336 att_end += delta;
3337 val_beg += delta;
3338 val_end += delta;
3339 next += delta;
3340 hdr_end += delta;
3341 prev = del_from;
3342 del_from = NULL;
3343 }
3344 }
3345
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003346 } /* for each cookie */
3347
3348
3349 /* There are no more cookies on this line.
3350 * We may still have one (or several) marked for deletion at the
3351 * end of the line. We must do this now in two ways :
3352 * - if some cookies must be preserved, we only delete from the
3353 * mark to the end of line ;
3354 * - if nothing needs to be preserved, simply delete the whole header
3355 */
3356 if (del_from) {
3357 hdr_end = (preserve_hdr ? del_from : hdr_beg);
3358 }
3359 if ((hdr_end - hdr_beg) != ctx.value.len) {
Christopher Faulet3e2638e2019-06-18 09:49:16 +02003360 if (hdr_beg != hdr_end)
3361 htx_change_blk_value_len(htx, ctx.blk, hdr_end - hdr_beg);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003362 else
3363 http_remove_header(htx, &ctx);
3364 }
3365 } /* for each "Cookie header */
3366}
3367
3368/*
3369 * Manage server-side cookies. It can impact performance by about 2% so it is
3370 * desirable to call it only when needed. This function is also used when we
3371 * just need to know if there is a cookie (eg: for check-cache).
3372 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003373static void http_manage_server_side_cookies(struct stream *s, struct channel *res)
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003374{
3375 struct session *sess = s->sess;
3376 struct http_txn *txn = s->txn;
3377 struct htx *htx;
3378 struct http_hdr_ctx ctx;
3379 struct server *srv;
3380 char *hdr_beg, *hdr_end;
3381 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003382
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003383 htx = htxbuf(&res->buf);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003384
3385 ctx.blk = NULL;
Willy Tarreauaa1909e2022-11-14 18:58:35 +01003386 while (http_find_header(htx, ist("Set-Cookie"), &ctx, 1)) {
Olivier Houchardf0f42382019-07-22 17:43:46 +02003387 int is_first = 1;
3388
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003389 /* OK, right now we know we have a Set-Cookie* at hdr_beg, and
3390 * <prev> points to the colon.
3391 */
3392 txn->flags |= TX_SCK_PRESENT;
3393
3394 /* Maybe we only wanted to see if there was a Set-Cookie (eg:
3395 * check-cache is enabled) and we are not interested in checking
3396 * them. Warning, the cookie capture is declared in the frontend.
3397 */
3398 if (s->be->cookie_name == NULL && sess->fe->capture_name == NULL)
3399 break;
3400
3401 /* OK so now we know we have to process this response cookie.
3402 * The format of the Set-Cookie header is slightly different
3403 * from the format of the Cookie header in that it does not
3404 * support the comma as a cookie delimiter (thus the header
3405 * cannot be folded) because the Expires attribute described in
3406 * the original Netscape's spec may contain an unquoted date
3407 * with a comma inside. We have to live with this because
3408 * many browsers don't support Max-Age and some browsers don't
3409 * support quoted strings. However the Set-Cookie2 header is
Willy Tarreauaa1909e2022-11-14 18:58:35 +01003410 * clean but basically nobody supports it.
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003411 *
3412 * We have to keep multiple pointers in order to support cookie
3413 * removal at the beginning, middle or end of header without
3414 * corrupting the header (in case of set-cookie2). A special
3415 * pointer, <scav> points to the beginning of the set-cookie-av
3416 * fields after the first semi-colon. The <next> pointer points
3417 * either to the end of line (set-cookie) or next unquoted comma
3418 * (set-cookie2). All of these headers are valid :
3419 *
3420 * hdr_beg hdr_end
3421 * | |
3422 * v |
3423 * NAME1 = VALUE 1 ; Secure; Path="/" |
3424 * NAME=VALUE; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT v
3425 * NAME = VALUE ; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT
3426 * NAME1 = VALUE 1 ; Max-Age=0, NAME2=VALUE2; Discard
3427 * | | | | | | | |
3428 * | | | | | | | +-> next
3429 * | | | | | | +------------> scav
3430 * | | | | | +--------------> val_end
3431 * | | | | +--------------------> val_beg
3432 * | | | +----------------------> equal
3433 * | | +------------------------> att_end
3434 * | +----------------------------> att_beg
3435 * +------------------------------> prev
3436 * -------------------------------> hdr_beg
3437 */
3438 hdr_beg = ctx.value.ptr;
3439 hdr_end = hdr_beg + ctx.value.len;
3440 for (prev = hdr_beg; prev < hdr_end; prev = next) {
3441
3442 /* Iterate through all cookies on this line */
3443
3444 /* find att_beg */
3445 att_beg = prev;
Olivier Houchardf0f42382019-07-22 17:43:46 +02003446 if (!is_first)
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003447 att_beg++;
Olivier Houchardf0f42382019-07-22 17:43:46 +02003448 is_first = 0;
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003449
3450 while (att_beg < hdr_end && HTTP_IS_SPHT(*att_beg))
3451 att_beg++;
3452
3453 /* find att_end : this is the first character after the last non
3454 * space before the equal. It may be equal to hdr_end.
3455 */
3456 equal = att_end = att_beg;
3457
3458 while (equal < hdr_end) {
Willy Tarreauaa1909e2022-11-14 18:58:35 +01003459 if (*equal == '=' || *equal == ';')
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003460 break;
3461 if (HTTP_IS_SPHT(*equal++))
3462 continue;
3463 att_end = equal;
3464 }
3465
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003466 /* here, <equal> points to '=', a delimiter or the end. <att_end>
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003467 * is between <att_beg> and <equal>, both may be identical.
3468 */
3469
3470 /* look for end of cookie if there is an equal sign */
3471 if (equal < hdr_end && *equal == '=') {
3472 /* look for the beginning of the value */
3473 val_beg = equal + 1;
3474 while (val_beg < hdr_end && HTTP_IS_SPHT(*val_beg))
3475 val_beg++;
3476
3477 /* find the end of the value, respecting quotes */
3478 next = http_find_cookie_value_end(val_beg, hdr_end);
3479
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003480 /* make val_end point to the first white space or delimiter after the value */
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003481 val_end = next;
3482 while (val_end > val_beg && HTTP_IS_SPHT(*(val_end - 1)))
3483 val_end--;
3484 }
3485 else {
3486 /* <equal> points to next comma, semi-colon or EOL */
3487 val_beg = val_end = next = equal;
3488 }
3489
3490 if (next < hdr_end) {
Willy Tarreauaa1909e2022-11-14 18:58:35 +01003491 /* For Set-Cookie, since commas are permitted
3492 * in values, skip to the end.
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003493 */
Willy Tarreauaa1909e2022-11-14 18:58:35 +01003494 next = hdr_end;
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003495 }
3496
3497 /* Now everything is as on the diagram above */
3498
3499 /* Ignore cookies with no equal sign */
3500 if (equal == val_end)
3501 continue;
3502
3503 /* If there are spaces around the equal sign, we need to
3504 * strip them otherwise we'll get trouble for cookie captures,
3505 * or even for rewrites. Since this happens extremely rarely,
3506 * it does not hurt performance.
3507 */
3508 if (unlikely(att_end != equal || val_beg > equal + 1)) {
3509 int stripped_before = 0;
3510 int stripped_after = 0;
3511
3512 if (att_end != equal) {
3513 memmove(att_end, equal, hdr_end - equal);
3514 stripped_before = (att_end - equal);
3515 equal += stripped_before;
3516 val_beg += stripped_before;
3517 }
3518
3519 if (val_beg > equal + 1) {
3520 memmove(equal + 1, val_beg, hdr_end + stripped_before - val_beg);
3521 stripped_after = (equal + 1) - val_beg;
3522 val_beg += stripped_after;
3523 stripped_before += stripped_after;
3524 }
3525
3526 val_end += stripped_before;
3527 next += stripped_before;
3528 hdr_end += stripped_before;
3529
Christopher Faulet3e2638e2019-06-18 09:49:16 +02003530 htx_change_blk_value_len(htx, ctx.blk, hdr_end - hdr_beg);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003531 ctx.value.len = hdr_end - hdr_beg;
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003532 }
3533
3534 /* First, let's see if we want to capture this cookie. We check
3535 * that we don't already have a server side cookie, because we
3536 * can only capture one. Also as an optimisation, we ignore
3537 * cookies shorter than the declared name.
3538 */
3539 if (sess->fe->capture_name != NULL &&
3540 txn->srv_cookie == NULL &&
3541 (val_end - att_beg >= sess->fe->capture_namelen) &&
3542 memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) {
3543 int log_len = val_end - att_beg;
3544 if ((txn->srv_cookie = pool_alloc(pool_head_capture)) == NULL) {
3545 ha_alert("HTTP logging : out of memory.\n");
3546 }
3547 else {
3548 if (log_len > sess->fe->capture_len)
3549 log_len = sess->fe->capture_len;
3550 memcpy(txn->srv_cookie, att_beg, log_len);
3551 txn->srv_cookie[log_len] = 0;
3552 }
3553 }
3554
3555 srv = objt_server(s->target);
3556 /* now check if we need to process it for persistence */
3557 if (!(s->flags & SF_IGNORE_PRST) &&
3558 (att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) &&
3559 (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) {
3560 /* assume passive cookie by default */
3561 txn->flags &= ~TX_SCK_MASK;
3562 txn->flags |= TX_SCK_FOUND;
3563
3564 /* If the cookie is in insert mode on a known server, we'll delete
3565 * this occurrence because we'll insert another one later.
3566 * We'll delete it too if the "indirect" option is set and we're in
3567 * a direct access.
3568 */
3569 if (s->be->ck_opts & PR_CK_PSV) {
3570 /* The "preserve" flag was set, we don't want to touch the
3571 * server's cookie.
3572 */
3573 }
3574 else if ((srv && (s->be->ck_opts & PR_CK_INS)) ||
3575 ((s->flags & SF_DIRECT) && (s->be->ck_opts & PR_CK_IND))) {
3576 /* this cookie must be deleted */
3577 if (prev == hdr_beg && next == hdr_end) {
3578 /* whole header */
3579 http_remove_header(htx, &ctx);
3580 /* note: while both invalid now, <next> and <hdr_end>
3581 * are still equal, so the for() will stop as expected.
3582 */
3583 } else {
3584 /* just remove the value */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003585 int delta = http_del_hdr_value(hdr_beg, hdr_end, &prev, next);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003586 next = prev;
3587 hdr_end += delta;
3588 }
3589 txn->flags &= ~TX_SCK_MASK;
3590 txn->flags |= TX_SCK_DELETED;
3591 /* and go on with next cookie */
3592 }
3593 else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_RW)) {
3594 /* replace bytes val_beg->val_end with the cookie name associated
3595 * with this server since we know it.
3596 */
3597 int sliding, delta;
3598
3599 ctx.value = ist2(val_beg, val_end - val_beg);
3600 ctx.lws_before = ctx.lws_after = 0;
3601 http_replace_header_value(htx, &ctx, ist2(srv->cookie, srv->cklen));
3602 delta = srv->cklen - (val_end - val_beg);
3603 sliding = (ctx.value.ptr - val_beg);
3604 hdr_beg += sliding;
3605 val_beg += sliding;
3606 next += sliding + delta;
3607 hdr_end += sliding + delta;
3608
3609 txn->flags &= ~TX_SCK_MASK;
3610 txn->flags |= TX_SCK_REPLACED;
3611 }
3612 else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_PFX)) {
3613 /* insert the cookie name associated with this server
3614 * before existing cookie, and insert a delimiter between them..
3615 */
3616 int sliding, delta;
3617 ctx.value = ist2(val_beg, 0);
3618 ctx.lws_before = ctx.lws_after = 0;
3619 http_replace_header_value(htx, &ctx, ist2(srv->cookie, srv->cklen + 1));
3620 delta = srv->cklen + 1;
3621 sliding = (ctx.value.ptr - val_beg);
3622 hdr_beg += sliding;
3623 val_beg += sliding;
3624 next += sliding + delta;
3625 hdr_end += sliding + delta;
3626
3627 val_beg[srv->cklen] = COOKIE_DELIM;
3628 txn->flags &= ~TX_SCK_MASK;
3629 txn->flags |= TX_SCK_REPLACED;
3630 }
3631 }
3632 /* that's done for this cookie, check the next one on the same
Willy Tarreauaa1909e2022-11-14 18:58:35 +01003633 * line when next != hdr_end (which should normally not happen
3634 * with set-cookie2 support removed).
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003635 */
3636 }
3637 }
3638}
3639
Christopher Faulet25a02f62018-10-24 12:00:25 +02003640/*
3641 * Parses the Cache-Control and Pragma request header fields to determine if
3642 * the request may be served from the cache and/or if it is cacheable. Updates
3643 * s->txn->flags.
3644 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003645void http_check_request_for_cacheability(struct stream *s, struct channel *req)
Christopher Faulet25a02f62018-10-24 12:00:25 +02003646{
3647 struct http_txn *txn = s->txn;
3648 struct htx *htx;
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003649 struct http_hdr_ctx ctx = { .blk = NULL };
3650 int pragma_found, cc_found;
Christopher Faulet25a02f62018-10-24 12:00:25 +02003651
3652 if ((txn->flags & (TX_CACHEABLE|TX_CACHE_IGNORE)) == TX_CACHE_IGNORE)
3653 return; /* nothing more to do here */
3654
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003655 htx = htxbuf(&req->buf);
Christopher Faulet25a02f62018-10-24 12:00:25 +02003656 pragma_found = cc_found = 0;
Christopher Faulet25a02f62018-10-24 12:00:25 +02003657
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003658 /* Check "pragma" header for HTTP/1.0 compatibility. */
3659 if (http_find_header(htx, ist("pragma"), &ctx, 1)) {
3660 if (isteqi(ctx.value, ist("no-cache"))) {
3661 pragma_found = 1;
Christopher Faulet25a02f62018-10-24 12:00:25 +02003662 }
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003663 }
Christopher Faulet25a02f62018-10-24 12:00:25 +02003664
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003665 ctx.blk = NULL;
3666 /* Don't use the cache and don't try to store if we found the
3667 * Authorization header */
3668 if (http_find_header(htx, ist("authorization"), &ctx, 1)) {
3669 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
3670 txn->flags |= TX_CACHE_IGNORE;
3671 }
Christopher Faulet25a02f62018-10-24 12:00:25 +02003672
Christopher Faulet25a02f62018-10-24 12:00:25 +02003673
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003674 /* Look for "cache-control" header and iterate over all the values
3675 * until we find one that specifies that caching is possible or not. */
3676 ctx.blk = NULL;
3677 while (http_find_header(htx, ist("cache-control"), &ctx, 0)) {
Christopher Faulet25a02f62018-10-24 12:00:25 +02003678 cc_found = 1;
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003679 /* We don't check the values after max-age, max-stale nor min-fresh,
3680 * we simply don't use the cache when they're specified. */
3681 if (istmatchi(ctx.value, ist("max-age")) ||
3682 istmatchi(ctx.value, ist("no-cache")) ||
3683 istmatchi(ctx.value, ist("max-stale")) ||
3684 istmatchi(ctx.value, ist("min-fresh"))) {
Christopher Faulet25a02f62018-10-24 12:00:25 +02003685 txn->flags |= TX_CACHE_IGNORE;
3686 continue;
3687 }
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003688 if (istmatchi(ctx.value, ist("no-store"))) {
Christopher Faulet25a02f62018-10-24 12:00:25 +02003689 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
3690 continue;
3691 }
3692 }
3693
3694 /* RFC7234#5.4:
3695 * When the Cache-Control header field is also present and
3696 * understood in a request, Pragma is ignored.
3697 * When the Cache-Control header field is not present in a
3698 * request, caches MUST consider the no-cache request
3699 * pragma-directive as having the same effect as if
3700 * "Cache-Control: no-cache" were present.
3701 */
3702 if (!cc_found && pragma_found)
3703 txn->flags |= TX_CACHE_IGNORE;
3704}
3705
3706/*
3707 * Check if response is cacheable or not. Updates s->txn->flags.
3708 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003709void http_check_response_for_cacheability(struct stream *s, struct channel *res)
Christopher Faulet25a02f62018-10-24 12:00:25 +02003710{
3711 struct http_txn *txn = s->txn;
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003712 struct http_hdr_ctx ctx = { .blk = NULL };
Christopher Faulet25a02f62018-10-24 12:00:25 +02003713 struct htx *htx;
Remi Tricot-Le Bretoncc9bf2e2020-11-12 11:14:41 +01003714 int has_freshness_info = 0;
3715 int has_validator = 0;
Christopher Faulet25a02f62018-10-24 12:00:25 +02003716
3717 if (txn->status < 200) {
3718 /* do not try to cache interim responses! */
3719 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
3720 return;
3721 }
3722
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003723 htx = htxbuf(&res->buf);
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003724 /* Check "pragma" header for HTTP/1.0 compatibility. */
3725 if (http_find_header(htx, ist("pragma"), &ctx, 1)) {
3726 if (isteqi(ctx.value, ist("no-cache"))) {
3727 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
3728 return;
Christopher Faulet25a02f62018-10-24 12:00:25 +02003729 }
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003730 }
Christopher Faulet25a02f62018-10-24 12:00:25 +02003731
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003732 /* Look for "cache-control" header and iterate over all the values
3733 * until we find one that specifies that caching is possible or not. */
3734 ctx.blk = NULL;
3735 while (http_find_header(htx, ist("cache-control"), &ctx, 0)) {
3736 if (isteqi(ctx.value, ist("public"))) {
3737 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
Christopher Faulet25a02f62018-10-24 12:00:25 +02003738 continue;
3739 }
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003740 if (isteqi(ctx.value, ist("private")) ||
3741 isteqi(ctx.value, ist("no-cache")) ||
3742 isteqi(ctx.value, ist("no-store")) ||
3743 isteqi(ctx.value, ist("max-age=0")) ||
3744 isteqi(ctx.value, ist("s-maxage=0"))) {
Christopher Faulet25a02f62018-10-24 12:00:25 +02003745 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003746 continue;
Christopher Faulet25a02f62018-10-24 12:00:25 +02003747 }
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003748 /* We might have a no-cache="set-cookie" form. */
3749 if (istmatchi(ctx.value, ist("no-cache=\"set-cookie"))) {
3750 txn->flags &= ~TX_CACHE_COOK;
Christopher Faulet25a02f62018-10-24 12:00:25 +02003751 continue;
3752 }
Remi Tricot-Le Bretoncc9bf2e2020-11-12 11:14:41 +01003753
3754 if (istmatchi(ctx.value, ist("s-maxage")) ||
3755 istmatchi(ctx.value, ist("max-age"))) {
3756 has_freshness_info = 1;
3757 continue;
3758 }
3759 }
3760
3761 /* If no freshness information could be found in Cache-Control values,
3762 * look for an Expires header. */
3763 if (!has_freshness_info) {
3764 ctx.blk = NULL;
3765 has_freshness_info = http_find_header(htx, ist("expires"), &ctx, 0);
Christopher Faulet25a02f62018-10-24 12:00:25 +02003766 }
Remi Tricot-Le Bretoncc9bf2e2020-11-12 11:14:41 +01003767
3768 /* If no freshness information could be found in Cache-Control or Expires
3769 * values, look for an explicit validator. */
3770 if (!has_freshness_info) {
3771 ctx.blk = NULL;
3772 has_validator = 1;
3773 if (!http_find_header(htx, ist("etag"), &ctx, 0)) {
3774 ctx.blk = NULL;
3775 if (!http_find_header(htx, ist("last-modified"), &ctx, 0))
3776 has_validator = 0;
3777 }
3778 }
3779
3780 /* We won't store an entry that has neither a cache validator nor an
3781 * explicit expiration time, as suggested in RFC 7234#3. */
3782 if (!has_freshness_info && !has_validator)
Remi Tricot-Le Breton879debe2023-02-21 11:47:17 +01003783 txn->flags &= ~TX_CACHEABLE;
Christopher Faulet25a02f62018-10-24 12:00:25 +02003784}
3785
Christopher Faulet377c5a52018-10-24 21:21:30 +02003786/*
3787 * In a GET, HEAD or POST request, check if the requested URI matches the stats uri
3788 * for the current backend.
3789 *
3790 * It is assumed that the request is either a HEAD, GET, or POST and that the
3791 * uri_auth field is valid.
3792 *
3793 * Returns 1 if stats should be provided, otherwise 0.
3794 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003795static int http_stats_check_uri(struct stream *s, struct http_txn *txn, struct proxy *backend)
Christopher Faulet377c5a52018-10-24 21:21:30 +02003796{
3797 struct uri_auth *uri_auth = backend->uri_auth;
3798 struct htx *htx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01003799 struct htx_sl *sl;
Christopher Faulet377c5a52018-10-24 21:21:30 +02003800 struct ist uri;
Christopher Faulet377c5a52018-10-24 21:21:30 +02003801
3802 if (!uri_auth)
3803 return 0;
3804
3805 if (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD && txn->meth != HTTP_METH_POST)
3806 return 0;
3807
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003808 htx = htxbuf(&s->req.buf);
Christopher Faulet297fbb42019-05-13 14:41:27 +02003809 sl = http_get_stline(htx);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01003810 uri = htx_sl_req_uri(sl);
Amaury Denoyellec453f952021-07-06 11:40:12 +02003811 if (*uri_auth->uri_prefix == '/') {
3812 struct http_uri_parser parser = http_uri_parser_init(uri);
3813 uri = http_parse_path(&parser);
3814 }
Christopher Faulet377c5a52018-10-24 21:21:30 +02003815
3816 /* check URI size */
3817 if (uri_auth->uri_len > uri.len)
3818 return 0;
3819
3820 if (memcmp(uri.ptr, uri_auth->uri_prefix, uri_auth->uri_len) != 0)
3821 return 0;
3822
3823 return 1;
3824}
3825
3826/* This function prepares an applet to handle the stats. It can deal with the
3827 * "100-continue" expectation, check that admin rules are met for POST requests,
3828 * and program a response message if something was unexpected. It cannot fail
3829 * and always relies on the stats applet to complete the job. It does not touch
3830 * analysers nor counters, which are left to the caller. It does not touch
3831 * s->target which is supposed to already point to the stats applet. The caller
3832 * is expected to have already assigned an appctx to the stream.
3833 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003834static int http_handle_stats(struct stream *s, struct channel *req)
Christopher Faulet377c5a52018-10-24 21:21:30 +02003835{
3836 struct stats_admin_rule *stats_admin_rule;
Christopher Faulet377c5a52018-10-24 21:21:30 +02003837 struct session *sess = s->sess;
3838 struct http_txn *txn = s->txn;
3839 struct http_msg *msg = &txn->req;
3840 struct uri_auth *uri_auth = s->be->uri_auth;
3841 const char *h, *lookup, *end;
Willy Tarreau8e7c6e62022-05-18 17:58:02 +02003842 struct appctx *appctx = __sc_appctx(s->scb);
Willy Tarreau91cefca2022-05-03 17:08:29 +02003843 struct show_stat_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx));
Christopher Faulet377c5a52018-10-24 21:21:30 +02003844 struct htx *htx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01003845 struct htx_sl *sl;
Christopher Faulet377c5a52018-10-24 21:21:30 +02003846
Willy Tarreau41f88522022-05-03 18:39:27 +02003847 appctx->st1 = 0;
Willy Tarreau6ef16482022-05-06 18:07:53 +02003848 ctx->state = STAT_STATE_INIT;
Willy Tarreau91cefca2022-05-03 17:08:29 +02003849 ctx->st_code = STAT_STATUS_INIT;
3850 ctx->flags |= uri_auth->flags;
3851 ctx->flags |= STAT_FMT_HTML; /* assume HTML mode by default */
Christopher Faulet377c5a52018-10-24 21:21:30 +02003852 if ((msg->flags & HTTP_MSGF_VER_11) && (txn->meth != HTTP_METH_HEAD))
Willy Tarreau91cefca2022-05-03 17:08:29 +02003853 ctx->flags |= STAT_CHUNKED;
Christopher Faulet377c5a52018-10-24 21:21:30 +02003854
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003855 htx = htxbuf(&req->buf);
Christopher Faulet297fbb42019-05-13 14:41:27 +02003856 sl = http_get_stline(htx);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01003857 lookup = HTX_SL_REQ_UPTR(sl) + uri_auth->uri_len;
3858 end = HTX_SL_REQ_UPTR(sl) + HTX_SL_REQ_ULEN(sl);
Christopher Faulet377c5a52018-10-24 21:21:30 +02003859
3860 for (h = lookup; h <= end - 3; h++) {
3861 if (memcmp(h, ";up", 3) == 0) {
Willy Tarreau91cefca2022-05-03 17:08:29 +02003862 ctx->flags |= STAT_HIDE_DOWN;
Christopher Faulet377c5a52018-10-24 21:21:30 +02003863 break;
3864 }
Amaury Denoyelle91e55ea2021-02-25 14:46:08 +01003865 }
3866
3867 for (h = lookup; h <= end - 9; h++) {
3868 if (memcmp(h, ";no-maint", 9) == 0) {
Willy Tarreau91cefca2022-05-03 17:08:29 +02003869 ctx->flags |= STAT_HIDE_MAINT;
Willy Tarreau3e320362020-10-23 17:28:57 +02003870 break;
3871 }
Christopher Faulet377c5a52018-10-24 21:21:30 +02003872 }
3873
3874 if (uri_auth->refresh) {
3875 for (h = lookup; h <= end - 10; h++) {
3876 if (memcmp(h, ";norefresh", 10) == 0) {
Willy Tarreau91cefca2022-05-03 17:08:29 +02003877 ctx->flags |= STAT_NO_REFRESH;
Christopher Faulet377c5a52018-10-24 21:21:30 +02003878 break;
3879 }
3880 }
3881 }
3882
3883 for (h = lookup; h <= end - 4; h++) {
3884 if (memcmp(h, ";csv", 4) == 0) {
Willy Tarreau91cefca2022-05-03 17:08:29 +02003885 ctx->flags &= ~(STAT_FMT_MASK|STAT_JSON_SCHM);
Christopher Faulet377c5a52018-10-24 21:21:30 +02003886 break;
3887 }
3888 }
3889
3890 for (h = lookup; h <= end - 6; h++) {
3891 if (memcmp(h, ";typed", 6) == 0) {
Willy Tarreau91cefca2022-05-03 17:08:29 +02003892 ctx->flags &= ~(STAT_FMT_MASK|STAT_JSON_SCHM);
3893 ctx->flags |= STAT_FMT_TYPED;
Christopher Faulet377c5a52018-10-24 21:21:30 +02003894 break;
3895 }
3896 }
3897
Christopher Faulet6338a082019-09-09 15:50:54 +02003898 for (h = lookup; h <= end - 5; h++) {
3899 if (memcmp(h, ";json", 5) == 0) {
Willy Tarreau91cefca2022-05-03 17:08:29 +02003900 ctx->flags &= ~(STAT_FMT_MASK|STAT_JSON_SCHM);
3901 ctx->flags |= STAT_FMT_JSON;
Christopher Faulet6338a082019-09-09 15:50:54 +02003902 break;
3903 }
3904 }
3905
3906 for (h = lookup; h <= end - 12; h++) {
3907 if (memcmp(h, ";json-schema", 12) == 0) {
Willy Tarreau91cefca2022-05-03 17:08:29 +02003908 ctx->flags &= ~STAT_FMT_MASK;
3909 ctx->flags |= STAT_JSON_SCHM;
Christopher Faulet6338a082019-09-09 15:50:54 +02003910 break;
3911 }
3912 }
3913
Christopher Faulet377c5a52018-10-24 21:21:30 +02003914 for (h = lookup; h <= end - 8; h++) {
3915 if (memcmp(h, ";st=", 4) == 0) {
3916 int i;
3917 h += 4;
Willy Tarreau91cefca2022-05-03 17:08:29 +02003918 ctx->st_code = STAT_STATUS_UNKN;
Christopher Faulet377c5a52018-10-24 21:21:30 +02003919 for (i = STAT_STATUS_INIT + 1; i < STAT_STATUS_SIZE; i++) {
3920 if (strncmp(stat_status_codes[i], h, 4) == 0) {
Willy Tarreau91cefca2022-05-03 17:08:29 +02003921 ctx->st_code = i;
Christopher Faulet377c5a52018-10-24 21:21:30 +02003922 break;
3923 }
3924 }
3925 break;
3926 }
3927 }
3928
Willy Tarreau91cefca2022-05-03 17:08:29 +02003929 ctx->scope_str = 0;
3930 ctx->scope_len = 0;
Christopher Faulet377c5a52018-10-24 21:21:30 +02003931 for (h = lookup; h <= end - 8; h++) {
3932 if (memcmp(h, STAT_SCOPE_INPUT_NAME "=", strlen(STAT_SCOPE_INPUT_NAME) + 1) == 0) {
3933 int itx = 0;
3934 const char *h2;
3935 char scope_txt[STAT_SCOPE_TXT_MAXLEN + 1];
3936 const char *err;
3937
3938 h += strlen(STAT_SCOPE_INPUT_NAME) + 1;
3939 h2 = h;
Willy Tarreau91cefca2022-05-03 17:08:29 +02003940 ctx->scope_str = h2 - HTX_SL_REQ_UPTR(sl);
Christopher Fauleted7a0662019-01-14 11:07:34 +01003941 while (h < end) {
Christopher Faulet377c5a52018-10-24 21:21:30 +02003942 if (*h == ';' || *h == '&' || *h == ' ')
3943 break;
3944 itx++;
3945 h++;
3946 }
3947
3948 if (itx > STAT_SCOPE_TXT_MAXLEN)
3949 itx = STAT_SCOPE_TXT_MAXLEN;
Willy Tarreau91cefca2022-05-03 17:08:29 +02003950 ctx->scope_len = itx;
Christopher Faulet377c5a52018-10-24 21:21:30 +02003951
Willy Tarreau91cefca2022-05-03 17:08:29 +02003952 /* scope_txt = search query, ctx->scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
Christopher Faulet377c5a52018-10-24 21:21:30 +02003953 memcpy(scope_txt, h2, itx);
3954 scope_txt[itx] = '\0';
3955 err = invalid_char(scope_txt);
3956 if (err) {
3957 /* bad char in search text => clear scope */
Willy Tarreau91cefca2022-05-03 17:08:29 +02003958 ctx->scope_str = 0;
3959 ctx->scope_len = 0;
Christopher Faulet377c5a52018-10-24 21:21:30 +02003960 }
3961 break;
3962 }
3963 }
3964
3965 /* now check whether we have some admin rules for this request */
3966 list_for_each_entry(stats_admin_rule, &uri_auth->admin_rules, list) {
3967 int ret = 1;
3968
3969 if (stats_admin_rule->cond) {
3970 ret = acl_exec_cond(stats_admin_rule->cond, s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
3971 ret = acl_pass(ret);
3972 if (stats_admin_rule->cond->pol == ACL_COND_UNLESS)
3973 ret = !ret;
3974 }
3975
3976 if (ret) {
3977 /* no rule, or the rule matches */
Willy Tarreau91cefca2022-05-03 17:08:29 +02003978 ctx->flags |= STAT_ADMIN;
Christopher Faulet377c5a52018-10-24 21:21:30 +02003979 break;
3980 }
3981 }
3982
Christopher Faulet5d45e382019-02-27 15:15:23 +01003983 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
3984 appctx->st0 = STAT_HTTP_HEAD;
3985 else if (txn->meth == HTTP_METH_POST) {
Willy Tarreau91cefca2022-05-03 17:08:29 +02003986 if (ctx->flags & STAT_ADMIN) {
Christopher Faulet377c5a52018-10-24 21:21:30 +02003987 appctx->st0 = STAT_HTTP_POST;
Christopher Fauletbd9e8422019-08-15 22:26:48 +02003988 if (msg->msg_state < HTTP_MSG_DATA)
3989 req->analysers |= AN_REQ_HTTP_BODY;
3990 }
Christopher Faulet377c5a52018-10-24 21:21:30 +02003991 else {
Christopher Faulet5d45e382019-02-27 15:15:23 +01003992 /* POST without admin level */
Willy Tarreau91cefca2022-05-03 17:08:29 +02003993 ctx->flags &= ~STAT_CHUNKED;
3994 ctx->st_code = STAT_STATUS_DENY;
Christopher Faulet377c5a52018-10-24 21:21:30 +02003995 appctx->st0 = STAT_HTTP_LAST;
3996 }
3997 }
3998 else {
Christopher Faulet5d45e382019-02-27 15:15:23 +01003999 /* Unsupported method */
Willy Tarreau91cefca2022-05-03 17:08:29 +02004000 ctx->flags &= ~STAT_CHUNKED;
4001 ctx->st_code = STAT_STATUS_IVAL;
Christopher Faulet5d45e382019-02-27 15:15:23 +01004002 appctx->st0 = STAT_HTTP_LAST;
Christopher Faulet377c5a52018-10-24 21:21:30 +02004003 }
4004
4005 s->task->nice = -32; /* small boost for HTTP statistics */
4006 return 1;
4007}
4008
Christopher Faulet021a8e42021-03-29 10:46:38 +02004009/* This function waits for the message payload at most <time> milliseconds (may
4010 * be set to TICK_ETERNITY). It stops to wait if at least <bytes> bytes of the
4011 * payload are received (0 means no limit). It returns HTTP_RULE_* depending on
4012 * the result:
4013 *
4014 * - HTTP_RULE_RES_CONT when conditions are met to stop waiting
4015 * - HTTP_RULE_RES_YIELD to wait for more data
Ilya Shipitsinb2be9a12021-04-24 13:25:42 +05004016 * - HTTP_RULE_RES_ABRT when a timeout occurred.
Christopher Faulet021a8e42021-03-29 10:46:38 +02004017 * - HTTP_RULE_RES_BADREQ if a parsing error is raised by lower level
Ilya Shipitsinb2be9a12021-04-24 13:25:42 +05004018 * - HTTP_RULE_RES_ERROR if an internal error occurred
Christopher Faulet021a8e42021-03-29 10:46:38 +02004019 *
Ilya Shipitsinb2be9a12021-04-24 13:25:42 +05004020 * If a timeout occurred, this function is responsible to emit the right response
Christopher Faulet021a8e42021-03-29 10:46:38 +02004021 * to the client, depending on the channel (408 on request side, 504 on response
4022 * side). All other errors must be handled by the caller.
4023 */
4024enum rule_result http_wait_for_msg_body(struct stream *s, struct channel *chn,
4025 unsigned int time, unsigned int bytes)
4026{
4027 struct session *sess = s->sess;
4028 struct http_txn *txn = s->txn;
4029 struct http_msg *msg = ((chn->flags & CF_ISRESP) ? &txn->rsp : &txn->req);
4030 struct htx *htx;
4031 enum rule_result ret = HTTP_RULE_RES_CONT;
4032
4033 htx = htxbuf(&chn->buf);
4034
4035 if (htx->flags & HTX_FL_PARSING_ERROR) {
4036 ret = HTTP_RULE_RES_BADREQ;
4037 goto end;
4038 }
4039 if (htx->flags & HTX_FL_PROCESSING_ERROR) {
4040 ret = HTTP_RULE_RES_ERROR;
4041 goto end;
4042 }
4043
4044 /* Do nothing for bodyless and CONNECT requests */
4045 if (txn->meth == HTTP_METH_CONNECT || (msg->flags & HTTP_MSGF_BODYLESS))
4046 goto end;
4047
Christopher Fauletffcffa82023-04-05 10:33:31 +02004048 if (!(chn->flags & CF_ISRESP)) {
Christopher Faulet021a8e42021-03-29 10:46:38 +02004049 if (http_handle_expect_hdr(s, htx, msg) == -1) {
4050 ret = HTTP_RULE_RES_ERROR;
4051 goto end;
4052 }
4053 }
4054
Christopher Faulet2954bcc2023-04-05 10:42:03 +02004055 /* Now we're are waiting for the payload. We just need to know if all
4056 * data have been received or if the buffer is full.
Christopher Faulet021a8e42021-03-29 10:46:38 +02004057 */
Christopher Faulet78335962021-09-23 14:46:32 +02004058 if ((htx->flags & HTX_FL_EOM) ||
4059 htx_get_tail_type(htx) > HTX_BLK_DATA ||
4060 channel_htx_full(chn, htx, global.tune.maxrewrite) ||
Willy Tarreau99615ed2022-05-25 07:29:36 +02004061 sc_waiting_room(chn_prod(chn)))
Christopher Faulet021a8e42021-03-29 10:46:38 +02004062 goto end;
4063
4064 if (bytes) {
4065 struct htx_blk *blk;
4066 unsigned int len = 0;
4067
4068 for (blk = htx_get_first_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) {
4069 if (htx_get_blk_type(blk) != HTX_BLK_DATA)
4070 continue;
4071 len += htx_get_blksz(blk);
4072 if (len >= bytes)
4073 goto end;
4074 }
4075 }
4076
4077 if ((chn->flags & CF_READ_TIMEOUT) || tick_is_expired(chn->analyse_exp, now_ms)) {
4078 if (!(chn->flags & CF_ISRESP))
4079 goto abort_req;
4080 goto abort_res;
4081 }
4082
4083 /* we get here if we need to wait for more data */
Christopher Fauletca5309a2023-04-17 16:17:32 +02004084 if (!(chn_prod(chn)->flags & (SC_FL_EOS|SC_FL_ABRT_DONE))) {
Christopher Faulet021a8e42021-03-29 10:46:38 +02004085 if (!tick_isset(chn->analyse_exp))
4086 chn->analyse_exp = tick_add_ifset(now_ms, time);
4087 ret = HTTP_RULE_RES_YIELD;
4088 }
4089
4090 end:
4091 return ret;
4092
Christopher Fauletf0d80df2023-01-13 10:20:20 +01004093 abort:
4094 http_reply_and_close(s, txn->status, http_error_message(s));
4095 ret = HTTP_RULE_RES_ABRT;
4096 goto end;
4097
Christopher Faulet021a8e42021-03-29 10:46:38 +02004098 abort_req:
4099 txn->status = 408;
4100 if (!(s->flags & SF_ERR_MASK))
4101 s->flags |= SF_ERR_CLITO;
Willy Tarreau4781b152021-04-06 13:53:36 +02004102 _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req);
Christopher Faulet021a8e42021-03-29 10:46:38 +02004103 if (sess->listener && sess->listener->counters)
Willy Tarreau4781b152021-04-06 13:53:36 +02004104 _HA_ATOMIC_INC(&sess->listener->counters->failed_req);
Christopher Fauletf0d80df2023-01-13 10:20:20 +01004105 goto abort;
Christopher Faulet021a8e42021-03-29 10:46:38 +02004106
4107 abort_res:
4108 txn->status = 504;
4109 if (!(s->flags & SF_ERR_MASK))
4110 s->flags |= SF_ERR_SRVTO;
Christopher Faulet021a8e42021-03-29 10:46:38 +02004111 stream_inc_http_fail_ctr(s);
Christopher Fauletf0d80df2023-01-13 10:20:20 +01004112 goto abort;
Christopher Faulet021a8e42021-03-29 10:46:38 +02004113}
4114
Willy Tarreaub49672d2022-05-27 10:13:37 +02004115void http_perform_server_redirect(struct stream *s, struct stconn *sc)
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004116{
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004117 struct channel *req = &s->req;
4118 struct channel *res = &s->res;
4119 struct server *srv;
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004120 struct htx *htx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004121 struct htx_sl *sl;
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004122 struct ist path, location;
4123 unsigned int flags;
Amaury Denoyellec453f952021-07-06 11:40:12 +02004124 struct http_uri_parser parser;
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004125
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004126 /*
4127 * Create the location
4128 */
4129 chunk_reset(&trash);
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004130
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004131 /* 1: add the server's prefix */
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004132 /* special prefix "/" means don't change URL */
4133 srv = __objt_server(s->target);
4134 if (srv->rdr_len != 1 || *srv->rdr_pfx != '/') {
4135 if (!chunk_memcat(&trash, srv->rdr_pfx, srv->rdr_len))
4136 return;
4137 }
4138
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004139 /* 2: add the request Path */
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004140 htx = htxbuf(&req->buf);
Christopher Faulet297fbb42019-05-13 14:41:27 +02004141 sl = http_get_stline(htx);
Amaury Denoyellec453f952021-07-06 11:40:12 +02004142 parser = http_uri_parser_init(htx_sl_req_uri(sl));
4143 path = http_parse_path(&parser);
Tim Duesterhused526372020-03-05 17:56:33 +01004144 if (!isttest(path))
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004145 return;
4146
4147 if (!chunk_memcat(&trash, path.ptr, path.len))
4148 return;
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004149 location = ist2(trash.area, trash.data);
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004150
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004151 /*
Ilya Shipitsin4a689da2022-10-29 09:34:32 +05004152 * Create the 302 response
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004153 */
4154 htx = htx_from_buf(&res->buf);
4155 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN|HTX_SL_F_BODYLESS);
4156 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags,
4157 ist("HTTP/1.1"), ist("302"), ist("Found"));
4158 if (!sl)
4159 goto fail;
4160 sl->info.res.status = 302;
4161 s->txn->status = 302;
4162
4163 if (!htx_add_header(htx, ist("Cache-Control"), ist("no-cache")) ||
4164 !htx_add_header(htx, ist("Connection"), ist("close")) ||
4165 !htx_add_header(htx, ist("Content-length"), ist("0")) ||
4166 !htx_add_header(htx, ist("Location"), location))
4167 goto fail;
4168
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004169 if (!htx_add_endof(htx, HTX_BLK_EOH))
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004170 goto fail;
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004171
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004172 htx->flags |= HTX_FL_EOM;
Christopher Fauletc20afb82020-01-24 19:16:26 +01004173 htx_to_buf(htx, &res->buf);
Christopher Fauleta72a7e42020-01-28 09:28:11 +01004174 if (!http_forward_proxy_resp(s, 1))
4175 goto fail;
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004176
4177 /* return without error. */
Christopher Fauletcfc11c02023-04-13 16:10:23 +02004178 sc_abort(sc);
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +02004179 sc_shutdown(sc);
Christopher Faulet50264b42022-03-30 19:39:30 +02004180 s->conn_err_type = STRM_ET_NONE;
Willy Tarreaub49672d2022-05-27 10:13:37 +02004181 sc->state = SC_ST_CLO;
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004182
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004183 if (!(s->flags & SF_ERR_MASK))
4184 s->flags |= SF_ERR_LOCAL;
4185 if (!(s->flags & SF_FINST_MASK))
4186 s->flags |= SF_FINST_C;
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004187
4188 /* FIXME: we should increase a counter of redirects per server and per backend. */
4189 srv_inc_sess_ctr(srv);
4190 srv_set_sess_last(srv);
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004191 return;
4192
4193 fail:
4194 /* If an error occurred, remove the incomplete HTTP response from the
4195 * buffer */
Christopher Faulet202c6ce2019-01-07 14:57:35 +01004196 channel_htx_truncate(res, htx);
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004197}
4198
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05004199/* This function terminates the request because it was completely analyzed or
Christopher Fauletf2824e62018-10-01 12:12:37 +02004200 * because an error was triggered during the body forwarding.
4201 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004202static void http_end_request(struct stream *s)
Christopher Fauletf2824e62018-10-01 12:12:37 +02004203{
4204 struct channel *chn = &s->req;
4205 struct http_txn *txn = s->txn;
4206
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004207 DBG_TRACE_ENTER(STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004208
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004209 if (unlikely(txn->req.msg_state < HTTP_MSG_DONE)) {
4210 DBG_TRACE_DEVEL("waiting end of the request", STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004211 return;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004212 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02004213
4214 if (txn->req.msg_state == HTTP_MSG_DONE) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02004215 /* No need to read anymore, the request was completely parsed.
4216 * We can shut the read side unless we want to abort_on_close,
4217 * or we have a POST request. The issue with POST requests is
4218 * that some browsers still send a CRLF after the request, and
4219 * this CRLF must be read so that it does not remain in the kernel
4220 * buffers, otherwise a close could cause an RST on some systems
4221 * (eg: Linux).
4222 */
Christopher Faulet769d0e92019-03-22 14:23:18 +01004223 if (!(s->be->options & PR_O_ABRT_CLOSE) && txn->meth != HTTP_METH_POST)
Christopher Fauletf2824e62018-10-01 12:12:37 +02004224 channel_dont_read(chn);
4225
4226 /* if the server closes the connection, we want to immediately react
4227 * and close the socket to save packets and syscalls.
4228 */
Willy Tarreaucb041662022-05-17 19:44:42 +02004229 s->scb->flags |= SC_FL_NOHALF;
Christopher Fauletf2824e62018-10-01 12:12:37 +02004230
4231 /* In any case we've finished parsing the request so we must
4232 * disable Nagle when sending data because 1) we're not going
4233 * to shut this side, and 2) the server is waiting for us to
4234 * send pending data.
4235 */
Christopher Faulet68ef2182023-03-17 15:38:18 +01004236 s->scb->flags |= SC_FL_SND_NEVERWAIT;
Christopher Fauletf2824e62018-10-01 12:12:37 +02004237
Christopher Fauletc2fba3f2023-03-01 16:03:17 +01004238 if (txn->rsp.msg_state < HTTP_MSG_BODY ||
4239 (txn->rsp.msg_state < HTTP_MSG_DONE && s->scb->state != SC_ST_CLO)) {
Christopher Fauletaf124362023-02-14 10:48:02 +01004240 /* The server has not finished to respond and the
4241 * backend SC is not closed, so we don't want to move in
4242 * order not to upset it.
Christopher Fauletd01ce402019-01-02 17:44:13 +01004243 */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004244 DBG_TRACE_DEVEL("waiting end of the response", STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletd01ce402019-01-02 17:44:13 +01004245 return;
4246 }
4247
Christopher Fauletf2824e62018-10-01 12:12:37 +02004248 /* When we get here, it means that both the request and the
4249 * response have finished receiving. Depending on the connection
4250 * mode, we'll have to wait for the last bytes to leave in either
4251 * direction, and sometimes for a close to be effective.
4252 */
Christopher Fauletc41547b2019-07-16 14:32:23 +02004253 if (txn->flags & TX_CON_WANT_TUN) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02004254 /* Tunnel mode will not have any analyser so it needs to
4255 * poll for reads.
4256 */
Christopher Faulet97047972023-04-17 08:52:10 +02004257 channel_auto_read(&s->req);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004258 txn->req.msg_state = HTTP_MSG_TUNNEL;
Christopher Faulet27c17d12023-04-18 11:01:51 +02004259 if (txn->rsp.msg_state != HTTP_MSG_TUNNEL)
4260 s->res.flags |= CF_WAKE_ONCE;
Christopher Fauletf2824e62018-10-01 12:12:37 +02004261 }
4262 else {
4263 /* we're not expecting any new data to come for this
4264 * transaction, so we can close it.
Christopher Faulet9768c262018-10-22 09:34:31 +02004265 *
4266 * However, there is an exception if the response
4267 * length is undefined. In this case, we need to wait
4268 * the close from the server. The response will be
4269 * switched in TUNNEL mode until the end.
Christopher Fauletf2824e62018-10-01 12:12:37 +02004270 */
4271 if (!(txn->rsp.flags & HTTP_MSGF_XFER_LEN) &&
4272 txn->rsp.msg_state != HTTP_MSG_CLOSED)
Christopher Faulet9768c262018-10-22 09:34:31 +02004273 goto check_channel_flags;
Christopher Fauletf2824e62018-10-01 12:12:37 +02004274
Christopher Faulet64350bb2023-04-13 16:37:37 +02004275 if (!(s->scb->flags & (SC_FL_SHUT_DONE|SC_FL_SHUT_WANTED))) {
Christopher Faulet12762f02023-04-13 15:40:10 +02004276 sc_schedule_abort(s->scf);
Christopher Fauletdf7cd712023-04-13 15:56:26 +02004277 sc_schedule_shutdown(s->scb);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004278 }
4279 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02004280 goto check_channel_flags;
4281 }
4282
4283 if (txn->req.msg_state == HTTP_MSG_CLOSING) {
4284 http_msg_closing:
4285 /* nothing else to forward, just waiting for the output buffer
Christopher Fauletdf7cd712023-04-13 15:56:26 +02004286 * to be empty and for the shut_wanted to take effect.
Christopher Fauletf2824e62018-10-01 12:12:37 +02004287 */
4288 if (channel_is_empty(chn)) {
4289 txn->req.msg_state = HTTP_MSG_CLOSED;
4290 goto http_msg_closed;
4291 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004292 DBG_TRACE_LEAVE(STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004293 return;
4294 }
4295
4296 if (txn->req.msg_state == HTTP_MSG_CLOSED) {
4297 http_msg_closed:
Christopher Fauletf2824e62018-10-01 12:12:37 +02004298 /* if we don't know whether the server will close, we need to hard close */
4299 if (txn->rsp.flags & HTTP_MSGF_XFER_LEN)
Willy Tarreaucb041662022-05-17 19:44:42 +02004300 s->scb->flags |= SC_FL_NOLINGER; /* we want to close ASAP */
Christopher Fauletf2824e62018-10-01 12:12:37 +02004301 /* see above in MSG_DONE why we only do this in these states */
Christopher Faulet769d0e92019-03-22 14:23:18 +01004302 if (!(s->be->options & PR_O_ABRT_CLOSE))
Christopher Fauletf2824e62018-10-01 12:12:37 +02004303 channel_dont_read(chn);
4304 goto end;
4305 }
4306
4307 check_channel_flags:
4308 /* Here, we are in HTTP_MSG_DONE or HTTP_MSG_TUNNEL */
Christopher Faulet64350bb2023-04-13 16:37:37 +02004309 if (s->scb->flags & (SC_FL_SHUT_DONE|SC_FL_SHUT_WANTED)) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02004310 /* if we've just closed an output, let's switch */
4311 txn->req.msg_state = HTTP_MSG_CLOSING;
4312 goto http_msg_closing;
4313 }
4314
4315 end:
4316 chn->analysers &= AN_REQ_FLT_END;
Christopher Faulet198ef8b2020-12-15 13:32:55 +01004317 if (txn->req.msg_state == HTTP_MSG_TUNNEL) {
Christopher Faulet68ef2182023-03-17 15:38:18 +01004318 s->scb->flags |= SC_FL_SND_NEVERWAIT;
Christopher Faulet198ef8b2020-12-15 13:32:55 +01004319 if (HAS_REQ_DATA_FILTERS(s))
Christopher Fauletf2824e62018-10-01 12:12:37 +02004320 chn->analysers |= AN_REQ_FLT_XFER_DATA;
Christopher Faulet27c17d12023-04-18 11:01:51 +02004321 else
4322 c_adv(chn, htxbuf(&chn->buf)->data - co_data(chn));
Christopher Faulet198ef8b2020-12-15 13:32:55 +01004323 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02004324 channel_auto_close(chn);
4325 channel_auto_read(chn);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004326 DBG_TRACE_LEAVE(STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004327}
4328
4329
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05004330/* This function terminates the response because it was completely analyzed or
Christopher Fauletf2824e62018-10-01 12:12:37 +02004331 * because an error was triggered during the body forwarding.
4332 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004333static void http_end_response(struct stream *s)
Christopher Fauletf2824e62018-10-01 12:12:37 +02004334{
4335 struct channel *chn = &s->res;
4336 struct http_txn *txn = s->txn;
4337
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004338 DBG_TRACE_ENTER(STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004339
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004340 if (unlikely(txn->rsp.msg_state < HTTP_MSG_DONE)) {
4341 DBG_TRACE_DEVEL("waiting end of the response", STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004342 return;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004343 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02004344
4345 if (txn->rsp.msg_state == HTTP_MSG_DONE) {
4346 /* In theory, we don't need to read anymore, but we must
4347 * still monitor the server connection for a possible close
4348 * while the request is being uploaded, so we don't disable
4349 * reading.
4350 */
4351 /* channel_dont_read(chn); */
4352
Christopher Fauletaf124362023-02-14 10:48:02 +01004353 if (txn->req.msg_state < HTTP_MSG_DONE && s->scf->state != SC_ST_CLO) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02004354 /* The client seems to still be sending data, probably
4355 * because we got an error response during an upload.
4356 * We have the choice of either breaking the connection
4357 * or letting it pass through. Let's do the later.
4358 */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004359 DBG_TRACE_DEVEL("waiting end of the request", STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004360 return;
4361 }
4362
4363 /* When we get here, it means that both the request and the
4364 * response have finished receiving. Depending on the connection
4365 * mode, we'll have to wait for the last bytes to leave in either
4366 * direction, and sometimes for a close to be effective.
4367 */
Christopher Fauletc41547b2019-07-16 14:32:23 +02004368 if (txn->flags & TX_CON_WANT_TUN) {
Christopher Faulet97047972023-04-17 08:52:10 +02004369 channel_auto_read(&s->res);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004370 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
Christopher Faulet27c17d12023-04-18 11:01:51 +02004371 if (txn->req.msg_state != HTTP_MSG_TUNNEL)
4372 s->req.flags |= CF_WAKE_ONCE;
Christopher Fauletf2824e62018-10-01 12:12:37 +02004373 }
4374 else {
4375 /* we're not expecting any new data to come for this
4376 * transaction, so we can close it.
4377 */
Christopher Faulet64350bb2023-04-13 16:37:37 +02004378 if (!(s->scf->flags & (SC_FL_SHUT_DONE|SC_FL_SHUT_WANTED))) {
Christopher Faulet12762f02023-04-13 15:40:10 +02004379 sc_schedule_abort(s->scb);
Christopher Fauletdf7cd712023-04-13 15:56:26 +02004380 sc_schedule_shutdown(s->scf);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004381 }
4382 }
4383 goto check_channel_flags;
4384 }
4385
4386 if (txn->rsp.msg_state == HTTP_MSG_CLOSING) {
4387 http_msg_closing:
4388 /* nothing else to forward, just waiting for the output buffer
Christopher Fauletdf7cd712023-04-13 15:56:26 +02004389 * to be empty and for the shut_wanted to take effect.
Christopher Fauletf2824e62018-10-01 12:12:37 +02004390 */
4391 if (channel_is_empty(chn)) {
4392 txn->rsp.msg_state = HTTP_MSG_CLOSED;
4393 goto http_msg_closed;
4394 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004395 DBG_TRACE_LEAVE(STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004396 return;
4397 }
4398
4399 if (txn->rsp.msg_state == HTTP_MSG_CLOSED) {
4400 http_msg_closed:
4401 /* drop any pending data */
Christopher Faulet202c6ce2019-01-07 14:57:35 +01004402 channel_htx_truncate(&s->req, htxbuf(&s->req.buf));
Christopher Faulet9768c262018-10-22 09:34:31 +02004403 channel_abort(&s->req);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004404 goto end;
4405 }
4406
4407 check_channel_flags:
4408 /* Here, we are in HTTP_MSG_DONE or HTTP_MSG_TUNNEL */
Christopher Faulet64350bb2023-04-13 16:37:37 +02004409 if (s->scf->flags & (SC_FL_SHUT_DONE|SC_FL_SHUT_WANTED)) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02004410 /* if we've just closed an output, let's switch */
4411 txn->rsp.msg_state = HTTP_MSG_CLOSING;
4412 goto http_msg_closing;
4413 }
4414
4415 end:
4416 chn->analysers &= AN_RES_FLT_END;
Christopher Faulet198ef8b2020-12-15 13:32:55 +01004417 if (txn->rsp.msg_state == HTTP_MSG_TUNNEL) {
Christopher Faulet68ef2182023-03-17 15:38:18 +01004418 s->scf->flags |= SC_FL_SND_NEVERWAIT;
Christopher Faulet198ef8b2020-12-15 13:32:55 +01004419 if (HAS_RSP_DATA_FILTERS(s))
4420 chn->analysers |= AN_RES_FLT_XFER_DATA;
Christopher Faulet27c17d12023-04-18 11:01:51 +02004421 else
4422 c_adv(chn, htxbuf(&chn->buf)->data - co_data(chn));
Christopher Faulet198ef8b2020-12-15 13:32:55 +01004423 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02004424 channel_auto_close(chn);
4425 channel_auto_read(chn);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004426 DBG_TRACE_LEAVE(STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004427}
4428
Christopher Fauletef70e252020-01-28 09:26:19 +01004429/* Forward a response generated by HAProxy (error/redirect/return). This
4430 * function forwards all pending incoming data. If <final> is set to 0, nothing
4431 * more is performed. It is used for 1xx informational messages. Otherwise, the
Christopher Faulet507479b2020-05-15 12:29:46 +02004432 * transaction is terminated and the request is emptied. On success 1 is
Christopher Faulet40e6b552020-06-25 16:04:50 +02004433 * returned. If an error occurred, 0 is returned. If it fails, this function
4434 * only exits. It is the caller responsibility to do the cleanup.
Christopher Fauletef70e252020-01-28 09:26:19 +01004435 */
4436int http_forward_proxy_resp(struct stream *s, int final)
4437{
4438 struct channel *req = &s->req;
4439 struct channel *res = &s->res;
4440 struct htx *htx = htxbuf(&res->buf);
4441 size_t data;
4442
4443 if (final) {
4444 htx->flags |= HTX_FL_PROXY_RESP;
Christopher Faulet507479b2020-05-15 12:29:46 +02004445
Christopher Fauletaab1b672020-11-18 16:44:02 +01004446 if (!htx_is_empty(htx) && !http_eval_after_res_rules(s))
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01004447 return 0;
Christopher Fauletef70e252020-01-28 09:26:19 +01004448
Christopher Fauletd6c48362020-10-19 18:01:38 +02004449 if (s->txn->meth == HTTP_METH_HEAD)
4450 htx_skip_msg_payload(htx);
4451
Christopher Fauletef70e252020-01-28 09:26:19 +01004452 channel_auto_read(req);
4453 channel_abort(req);
Christopher Fauletef70e252020-01-28 09:26:19 +01004454 channel_htx_erase(req, htxbuf(&req->buf));
4455
Christopher Fauletef70e252020-01-28 09:26:19 +01004456 channel_auto_read(res);
4457 channel_auto_close(res);
Christopher Faulet12762f02023-04-13 15:40:10 +02004458 sc_schedule_abort(s->scb);
Christopher Faulet904763f2023-03-22 14:53:11 +01004459 s->scb->flags |= SC_FL_EOI; /* The response is terminated, add EOI */
Christopher Faulet42432f32020-11-20 17:43:16 +01004460 htxbuf(&res->buf)->flags |= HTX_FL_EOM; /* no more data are expected */
Christopher Fauletef70e252020-01-28 09:26:19 +01004461 }
Christopher Fauletcf6898c2020-06-25 15:55:11 +02004462 else {
Christopher Faulet904763f2023-03-22 14:53:11 +01004463 /* Send ASAP informational messages. Rely on SC_FL_EOI for final
Christopher Fauletcf6898c2020-06-25 15:55:11 +02004464 * response.
4465 */
Christopher Faulet5c281d52023-03-16 15:53:28 +01004466 s->scf->flags |= SC_FL_SND_ASAP;
Christopher Fauletcf6898c2020-06-25 15:55:11 +02004467 }
Christopher Fauletef70e252020-01-28 09:26:19 +01004468
4469 data = htx->data - co_data(res);
4470 c_adv(res, data);
4471 htx->first = -1;
4472 res->total += data;
4473 return 1;
4474}
4475
Willy Tarreaub49672d2022-05-27 10:13:37 +02004476void http_server_error(struct stream *s, struct stconn *sc, int err,
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004477 int finst, struct http_reply *msg)
Christopher Faulet0f226952018-10-22 09:29:56 +02004478{
Christopher Faulet72c7d8d2020-01-27 15:32:25 +01004479 http_reply_and_close(s, s->txn->status, msg);
Christopher Faulet0f226952018-10-22 09:29:56 +02004480 if (!(s->flags & SF_ERR_MASK))
4481 s->flags |= err;
4482 if (!(s->flags & SF_FINST_MASK))
4483 s->flags |= finst;
4484}
4485
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004486void http_reply_and_close(struct stream *s, short status, struct http_reply *msg)
Christopher Faulet0f226952018-10-22 09:29:56 +02004487{
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004488 if (!msg) {
4489 channel_htx_truncate(&s->res, htxbuf(&s->res.buf));
4490 goto end;
4491 }
4492
4493 if (http_reply_message(s, msg) == -1) {
4494 /* On error, return a 500 error message, but don't rewrite it if
Christopher Faulet40e6b552020-06-25 16:04:50 +02004495 * it is already an internal error. If it was already a "const"
4496 * 500 error, just fail.
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004497 */
Christopher Faulet40e6b552020-06-25 16:04:50 +02004498 if (s->txn->status == 500) {
4499 if (s->txn->flags & TX_CONST_REPLY)
4500 goto end;
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004501 s->txn->flags |= TX_CONST_REPLY;
Christopher Faulet40e6b552020-06-25 16:04:50 +02004502 }
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004503 s->txn->status = 500;
4504 s->txn->http_reply = NULL;
4505 return http_reply_and_close(s, s->txn->status, http_error_message(s));
4506 }
4507
4508end:
Christopher Faulet2d565002021-09-10 09:17:50 +02004509 /* At this staged, HTTP analysis is finished */
4510 s->req.analysers &= AN_REQ_FLT_END;
4511 s->req.analyse_exp = TICK_ETERNITY;
4512
4513 s->res.analysers &= AN_RES_FLT_END;
4514 s->res.analyse_exp = TICK_ETERNITY;
4515
Christopher Faulet0f226952018-10-22 09:29:56 +02004516 channel_auto_read(&s->req);
4517 channel_abort(&s->req);
Christopher Faulet202c6ce2019-01-07 14:57:35 +01004518 channel_htx_erase(&s->req, htxbuf(&s->req.buf));
Christopher Faulet72c7d8d2020-01-27 15:32:25 +01004519 channel_auto_read(&s->res);
4520 channel_auto_close(&s->res);
Christopher Faulet12762f02023-04-13 15:40:10 +02004521 sc_schedule_abort(s->scb);
Christopher Faulet0f226952018-10-22 09:29:56 +02004522}
4523
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004524struct http_reply *http_error_message(struct stream *s)
Christopher Fauleta7b677c2018-11-29 16:48:49 +01004525{
4526 const int msgnum = http_get_status_idx(s->txn->status);
4527
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004528 if (s->txn->http_reply)
4529 return s->txn->http_reply;
4530 else if (s->be->replies[msgnum])
4531 return s->be->replies[msgnum];
4532 else if (strm_fe(s)->replies[msgnum])
4533 return strm_fe(s)->replies[msgnum];
Christopher Fauleta7b677c2018-11-29 16:48:49 +01004534 else
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004535 return &http_err_replies[msgnum];
Christopher Fauleta7b677c2018-11-29 16:48:49 +01004536}
4537
Christopher Faulet40e6b552020-06-25 16:04:50 +02004538/* Produces an HTX message from an http reply. Depending on the http reply type,
4539 * a, errorfile, an raw file or a log-format string is used. On success, it
4540 * returns 0. If an error occurs -1 is returned. If it fails, this function only
4541 * exits. It is the caller responsibility to do the cleanup.
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004542 */
Christopher Fauletae43b6c2020-05-27 15:24:22 +02004543int http_reply_to_htx(struct stream *s, struct htx *htx, struct http_reply *reply)
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004544{
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004545 struct buffer *errmsg;
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004546 struct htx_sl *sl;
4547 struct buffer *body = NULL;
4548 const char *status, *reason, *clen, *ctype;
4549 unsigned int slflags;
4550 int ret = 0;
4551
Christopher Faulete29a97e2020-05-14 14:49:25 +02004552 /*
4553 * - HTTP_REPLY_ERRFILES unexpected here. handled as no payload if so
4554 *
4555 * - HTTP_REPLY_INDIRECT: switch on another reply if defined or handled
4556 * as no payload if NULL. the TXN status code is set with the status
4557 * of the original reply.
4558 */
4559
4560 if (reply->type == HTTP_REPLY_INDIRECT) {
4561 if (reply->body.reply)
4562 reply = reply->body.reply;
4563 }
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004564 if (reply->type == HTTP_REPLY_ERRMSG && !reply->body.errmsg) {
4565 /* get default error message */
4566 if (reply == s->txn->http_reply)
4567 s->txn->http_reply = NULL;
4568 reply = http_error_message(s);
4569 if (reply->type == HTTP_REPLY_INDIRECT) {
4570 if (reply->body.reply)
4571 reply = reply->body.reply;
4572 }
4573 }
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004574
4575 if (reply->type == HTTP_REPLY_ERRMSG) {
4576 /* implicit or explicit error message*/
4577 errmsg = reply->body.errmsg;
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004578 if (errmsg && !b_is_null(errmsg)) {
Christopher Faulet20567362020-05-15 14:52:49 +02004579 if (!htx_copy_msg(htx, errmsg))
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004580 goto fail;
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004581 }
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004582 }
4583 else {
4584 /* no payload, file or log-format string */
4585 if (reply->type == HTTP_REPLY_RAW) {
4586 /* file */
4587 body = &reply->body.obj;
4588 }
4589 else if (reply->type == HTTP_REPLY_LOGFMT) {
4590 /* log-format string */
4591 body = alloc_trash_chunk();
4592 if (!body)
4593 goto fail_alloc;
4594 body->data = build_logline(s, body->area, body->size, &reply->body.fmt);
4595 }
4596 /* else no payload */
4597
4598 status = ultoa(reply->status);
4599 reason = http_get_reason(reply->status);
4600 slflags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN|HTX_SL_F_CLEN);
4601 if (!body || !b_data(body))
4602 slflags |= HTX_SL_F_BODYLESS;
4603 sl = htx_add_stline(htx, HTX_BLK_RES_SL, slflags, ist("HTTP/1.1"), ist(status), ist(reason));
4604 if (!sl)
4605 goto fail;
4606 sl->info.res.status = reply->status;
4607
4608 clen = (body ? ultoa(b_data(body)) : "0");
4609 ctype = reply->ctype;
4610
4611 if (!LIST_ISEMPTY(&reply->hdrs)) {
4612 struct http_reply_hdr *hdr;
4613 struct buffer *value = alloc_trash_chunk();
4614
4615 if (!value)
4616 goto fail;
4617
4618 list_for_each_entry(hdr, &reply->hdrs, list) {
4619 chunk_reset(value);
4620 value->data = build_logline(s, value->area, value->size, &hdr->value);
4621 if (b_data(value) && !htx_add_header(htx, hdr->name, ist2(b_head(value), b_data(value)))) {
4622 free_trash_chunk(value);
4623 goto fail;
4624 }
4625 chunk_reset(value);
4626 }
4627 free_trash_chunk(value);
4628 }
4629
4630 if (!htx_add_header(htx, ist("content-length"), ist(clen)) ||
4631 (body && b_data(body) && ctype && !htx_add_header(htx, ist("content-type"), ist(ctype))) ||
4632 !htx_add_endof(htx, HTX_BLK_EOH) ||
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004633 (body && b_data(body) && !htx_add_data_atonce(htx, ist2(b_head(body), b_data(body)))))
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004634 goto fail;
Christopher Fauletd1ac2b92020-12-02 19:12:22 +01004635
4636 htx->flags |= HTX_FL_EOM;
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004637 }
4638
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004639 leave:
4640 if (reply->type == HTTP_REPLY_LOGFMT)
4641 free_trash_chunk(body);
4642 return ret;
4643
4644 fail_alloc:
4645 if (!(s->flags & SF_ERR_MASK))
4646 s->flags |= SF_ERR_RESOURCE;
Christopher Faulet97e466c2020-05-15 15:12:47 +02004647 /* fall through */
4648 fail:
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004649 ret = -1;
4650 goto leave;
Christopher Faulet97e466c2020-05-15 15:12:47 +02004651}
4652
4653/* Send an http reply to the client. On success, it returns 0. If an error
Christopher Faulet40e6b552020-06-25 16:04:50 +02004654 * occurs -1 is returned and the response channel is truncated, removing this
4655 * way the faulty reply. This function may fail when the reply is formatted
4656 * (http_reply_to_htx) or when the reply is forwarded
4657 * (http_forward_proxy_resp). On the last case, it is because a
4658 * http-after-response rule fails.
Christopher Faulet97e466c2020-05-15 15:12:47 +02004659 */
4660int http_reply_message(struct stream *s, struct http_reply *reply)
4661{
4662 struct channel *res = &s->res;
4663 struct htx *htx = htx_from_buf(&res->buf);
4664
4665 if (s->txn->status == -1)
4666 s->txn->status = reply->status;
4667 channel_htx_truncate(res, htx);
4668
4669 if (http_reply_to_htx(s, htx, reply) == -1)
4670 goto fail;
4671
4672 htx_to_buf(htx, &s->res.buf);
4673 if (!http_forward_proxy_resp(s, 1))
4674 goto fail;
4675 return 0;
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004676
4677 fail:
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004678 channel_htx_truncate(res, htx);
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004679 if (!(s->flags & SF_ERR_MASK))
4680 s->flags |= SF_ERR_PRXCOND;
Christopher Faulet97e466c2020-05-15 15:12:47 +02004681 return -1;
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004682}
4683
Christopher Faulet50264b42022-03-30 19:39:30 +02004684/* Return the error message corresponding to s->conn_err_type. It is assumed
Christopher Faulet304cc402019-07-15 15:46:28 +02004685 * that the server side is closed. Note that err_type is actually a
4686 * bitmask, where almost only aborts may be cumulated with other
4687 * values. We consider that aborted operations are more important
4688 * than timeouts or errors due to the fact that nobody else in the
4689 * logs might explain incomplete retries. All others should avoid
4690 * being cumulated. It should normally not be possible to have multiple
4691 * aborts at once, but just in case, the first one in sequence is reported.
4692 * Note that connection errors appearing on the second request of a keep-alive
4693 * connection are not reported since this allows the client to retry.
4694 */
Willy Tarreaub49672d2022-05-27 10:13:37 +02004695void http_return_srv_error(struct stream *s, struct stconn *sc)
Christopher Faulet304cc402019-07-15 15:46:28 +02004696{
Christopher Faulet50264b42022-03-30 19:39:30 +02004697 int err_type = s->conn_err_type;
Christopher Faulet304cc402019-07-15 15:46:28 +02004698
4699 /* set s->txn->status for http_error_message(s) */
Christopher Faulet50264b42022-03-30 19:39:30 +02004700 if (err_type & STRM_ET_QUEUE_ABRT) {
Christopher Faulet5e702fc2021-06-02 14:07:24 +02004701 s->txn->status = -1;
Willy Tarreaub49672d2022-05-27 10:13:37 +02004702 http_server_error(s, sc, SF_ERR_CLICL, SF_FINST_Q, NULL);
Christopher Faulet5e702fc2021-06-02 14:07:24 +02004703 }
Christopher Faulet50264b42022-03-30 19:39:30 +02004704 else if (err_type & STRM_ET_CONN_ABRT) {
Christopher Faulet5e702fc2021-06-02 14:07:24 +02004705 s->txn->status = -1;
Willy Tarreaub49672d2022-05-27 10:13:37 +02004706 http_server_error(s, sc, SF_ERR_CLICL, SF_FINST_C, NULL);
Christopher Faulet5e702fc2021-06-02 14:07:24 +02004707 }
Christopher Faulet50264b42022-03-30 19:39:30 +02004708 else if (err_type & STRM_ET_QUEUE_TO) {
Christopher Faulet5e702fc2021-06-02 14:07:24 +02004709 s->txn->status = 503;
Willy Tarreaub49672d2022-05-27 10:13:37 +02004710 http_server_error(s, sc, SF_ERR_SRVTO, SF_FINST_Q,
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004711 http_error_message(s));
Christopher Faulet5e702fc2021-06-02 14:07:24 +02004712 }
Christopher Faulet50264b42022-03-30 19:39:30 +02004713 else if (err_type & STRM_ET_QUEUE_ERR) {
Christopher Faulet5e702fc2021-06-02 14:07:24 +02004714 s->txn->status = 503;
Willy Tarreaub49672d2022-05-27 10:13:37 +02004715 http_server_error(s, sc, SF_ERR_SRVCL, SF_FINST_Q,
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004716 http_error_message(s));
Christopher Faulet5e702fc2021-06-02 14:07:24 +02004717 }
Christopher Faulet50264b42022-03-30 19:39:30 +02004718 else if (err_type & STRM_ET_CONN_TO) {
Christopher Faulet5e702fc2021-06-02 14:07:24 +02004719 s->txn->status = 503;
Willy Tarreaub49672d2022-05-27 10:13:37 +02004720 http_server_error(s, sc, SF_ERR_SRVTO, SF_FINST_C,
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004721 (s->txn->flags & TX_NOT_FIRST) ? NULL :
4722 http_error_message(s));
Christopher Faulet5e702fc2021-06-02 14:07:24 +02004723 }
Christopher Faulet50264b42022-03-30 19:39:30 +02004724 else if (err_type & STRM_ET_CONN_ERR) {
Christopher Faulet5e702fc2021-06-02 14:07:24 +02004725 s->txn->status = 503;
Willy Tarreaub49672d2022-05-27 10:13:37 +02004726 http_server_error(s, sc, SF_ERR_SRVCL, SF_FINST_C,
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004727 (s->flags & SF_SRV_REUSED) ? NULL :
4728 http_error_message(s));
Christopher Faulet5e702fc2021-06-02 14:07:24 +02004729 }
Christopher Faulet50264b42022-03-30 19:39:30 +02004730 else if (err_type & STRM_ET_CONN_RES) {
Christopher Faulet5e702fc2021-06-02 14:07:24 +02004731 s->txn->status = 503;
Willy Tarreaub49672d2022-05-27 10:13:37 +02004732 http_server_error(s, sc, SF_ERR_RESOURCE, SF_FINST_C,
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004733 (s->txn->flags & TX_NOT_FIRST) ? NULL :
4734 http_error_message(s));
Christopher Faulet5e702fc2021-06-02 14:07:24 +02004735 }
Christopher Faulet50264b42022-03-30 19:39:30 +02004736 else { /* STRM_ET_CONN_OTHER and others */
Christopher Faulet304cc402019-07-15 15:46:28 +02004737 s->txn->status = 500;
Willy Tarreaub49672d2022-05-27 10:13:37 +02004738 http_server_error(s, sc, SF_ERR_INTERNAL, SF_FINST_C,
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004739 http_error_message(s));
Christopher Faulet304cc402019-07-15 15:46:28 +02004740 }
4741}
4742
Christopher Fauleta7b677c2018-11-29 16:48:49 +01004743
Christopher Faulet4a28a532019-03-01 11:19:40 +01004744/* Handle Expect: 100-continue for HTTP/1.1 messages if necessary. It returns 0
4745 * on success and -1 on error.
4746 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004747static int http_handle_expect_hdr(struct stream *s, struct htx *htx, struct http_msg *msg)
Christopher Faulet4a28a532019-03-01 11:19:40 +01004748{
4749 /* If we have HTTP/1.1 message with a body and Expect: 100-continue,
4750 * then we must send an HTTP/1.1 100 Continue intermediate response.
4751 */
Christopher Fauletffcffa82023-04-05 10:33:31 +02004752 if (!(msg->flags & HTTP_MSGF_EXPECT_CHECKED) &&
4753 (msg->flags & HTTP_MSGF_VER_11) &&
Christopher Faulet4a28a532019-03-01 11:19:40 +01004754 (msg->flags & (HTTP_MSGF_CNT_LEN|HTTP_MSGF_TE_CHNK))) {
4755 struct ist hdr = { .ptr = "Expect", .len = 6 };
4756 struct http_hdr_ctx ctx;
4757
4758 ctx.blk = NULL;
4759 /* Expect is allowed in 1.1, look for it */
4760 if (http_find_header(htx, hdr, &ctx, 0) &&
4761 unlikely(isteqi(ctx.value, ist2("100-continue", 12)))) {
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004762 if (http_reply_100_continue(s) == -1)
Christopher Faulet4a28a532019-03-01 11:19:40 +01004763 return -1;
4764 http_remove_header(htx, &ctx);
4765 }
4766 }
Christopher Fauletffcffa82023-04-05 10:33:31 +02004767 msg->flags |= HTTP_MSGF_EXPECT_CHECKED;
Christopher Faulet4a28a532019-03-01 11:19:40 +01004768 return 0;
4769}
4770
Christopher Faulet23a3c792018-11-28 10:01:23 +01004771/* Send a 100-Continue response to the client. It returns 0 on success and -1
4772 * on error. The response channel is updated accordingly.
4773 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004774static int http_reply_100_continue(struct stream *s)
Christopher Faulet23a3c792018-11-28 10:01:23 +01004775{
4776 struct channel *res = &s->res;
4777 struct htx *htx = htx_from_buf(&res->buf);
4778 struct htx_sl *sl;
4779 unsigned int flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|
4780 HTX_SL_F_XFER_LEN|HTX_SL_F_BODYLESS);
Christopher Faulet23a3c792018-11-28 10:01:23 +01004781
4782 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags,
4783 ist("HTTP/1.1"), ist("100"), ist("Continue"));
4784 if (!sl)
4785 goto fail;
4786 sl->info.res.status = 100;
4787
Christopher Faulet1d5ec092019-06-26 14:23:54 +02004788 if (!htx_add_endof(htx, HTX_BLK_EOH))
Christopher Faulet23a3c792018-11-28 10:01:23 +01004789 goto fail;
4790
Christopher Fauleta72a7e42020-01-28 09:28:11 +01004791 if (!http_forward_proxy_resp(s, 0))
4792 goto fail;
Christopher Faulet23a3c792018-11-28 10:01:23 +01004793 return 0;
4794
4795 fail:
4796 /* If an error occurred, remove the incomplete HTTP response from the
4797 * buffer */
Christopher Faulet202c6ce2019-01-07 14:57:35 +01004798 channel_htx_truncate(res, htx);
Christopher Faulet23a3c792018-11-28 10:01:23 +01004799 return -1;
4800}
4801
Christopher Faulet12c51e22018-11-28 15:59:42 +01004802
Christopher Faulet0f226952018-10-22 09:29:56 +02004803/*
4804 * Capture headers from message <htx> according to header list <cap_hdr>, and
4805 * fill the <cap> pointers appropriately.
4806 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004807static void http_capture_headers(struct htx *htx, char **cap, struct cap_hdr *cap_hdr)
Christopher Faulet0f226952018-10-22 09:29:56 +02004808{
4809 struct cap_hdr *h;
4810 int32_t pos;
4811
Christopher Fauleta3f15502019-05-13 15:27:23 +02004812 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
Christopher Faulet0f226952018-10-22 09:29:56 +02004813 struct htx_blk *blk = htx_get_blk(htx, pos);
4814 enum htx_blk_type type = htx_get_blk_type(blk);
4815 struct ist n, v;
4816
4817 if (type == HTX_BLK_EOH)
4818 break;
4819 if (type != HTX_BLK_HDR)
4820 continue;
4821
4822 n = htx_get_blk_name(htx, blk);
4823
4824 for (h = cap_hdr; h; h = h->next) {
4825 if (h->namelen && (h->namelen == n.len) &&
4826 (strncasecmp(n.ptr, h->name, h->namelen) == 0)) {
4827 if (cap[h->index] == NULL)
4828 cap[h->index] =
4829 pool_alloc(h->pool);
4830
4831 if (cap[h->index] == NULL) {
4832 ha_alert("HTTP capture : out of memory.\n");
4833 break;
4834 }
4835
4836 v = htx_get_blk_value(htx, blk);
Tim Duesterhus2471f5c2021-11-08 09:05:01 +01004837 v = isttrim(v, h->len);
Christopher Faulet0f226952018-10-22 09:29:56 +02004838
4839 memcpy(cap[h->index], v.ptr, v.len);
4840 cap[h->index][v.len]=0;
4841 }
4842 }
4843 }
4844}
4845
Christopher Faulet0b6bdc52018-10-24 11:05:36 +02004846/* Delete a value in a header between delimiters <from> and <next>. The header
4847 * itself is delimited by <start> and <end> pointers. The number of characters
4848 * displaced is returned, and the pointer to the first delimiter is updated if
4849 * required. The function tries as much as possible to respect the following
4850 * principles :
4851 * - replace <from> delimiter by the <next> one unless <from> points to <start>,
4852 * in which case <next> is simply removed
4853 * - set exactly one space character after the new first delimiter, unless there
4854 * are not enough characters in the block being moved to do so.
4855 * - remove unneeded spaces before the previous delimiter and after the new
4856 * one.
4857 *
4858 * It is the caller's responsibility to ensure that :
4859 * - <from> points to a valid delimiter or <start> ;
4860 * - <next> points to a valid delimiter or <end> ;
4861 * - there are non-space chars before <from>.
4862 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004863static int http_del_hdr_value(char *start, char *end, char **from, char *next)
Christopher Faulet0b6bdc52018-10-24 11:05:36 +02004864{
4865 char *prev = *from;
4866
4867 if (prev == start) {
4868 /* We're removing the first value. eat the semicolon, if <next>
4869 * is lower than <end> */
4870 if (next < end)
4871 next++;
4872
4873 while (next < end && HTTP_IS_SPHT(*next))
4874 next++;
4875 }
4876 else {
4877 /* Remove useless spaces before the old delimiter. */
4878 while (HTTP_IS_SPHT(*(prev-1)))
4879 prev--;
4880 *from = prev;
4881
4882 /* copy the delimiter and if possible a space if we're
4883 * not at the end of the line.
4884 */
4885 if (next < end) {
4886 *prev++ = *next++;
4887 if (prev + 1 < next)
4888 *prev++ = ' ';
4889 while (next < end && HTTP_IS_SPHT(*next))
4890 next++;
4891 }
4892 }
4893 memmove(prev, next, end - next);
4894 return (prev - next);
4895}
4896
Christopher Faulet0f226952018-10-22 09:29:56 +02004897
4898/* Formats the start line of the request (without CRLF) and puts it in <str> and
Joseph Herlantc42c0e92018-11-25 10:43:27 -08004899 * return the written length. The line can be truncated if it exceeds <len>.
Christopher Faulet0f226952018-10-22 09:29:56 +02004900 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004901static size_t http_fmt_req_line(const struct htx_sl *sl, char *str, size_t len)
Christopher Faulet0f226952018-10-22 09:29:56 +02004902{
4903 struct ist dst = ist2(str, 0);
4904
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004905 if (istcat(&dst, htx_sl_req_meth(sl), len) == -1)
Christopher Faulet0f226952018-10-22 09:29:56 +02004906 goto end;
4907 if (dst.len + 1 > len)
4908 goto end;
4909 dst.ptr[dst.len++] = ' ';
4910
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004911 if (istcat(&dst, htx_sl_req_uri(sl), len) == -1)
Christopher Faulet0f226952018-10-22 09:29:56 +02004912 goto end;
4913 if (dst.len + 1 > len)
4914 goto end;
4915 dst.ptr[dst.len++] = ' ';
4916
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004917 istcat(&dst, htx_sl_req_vsn(sl), len);
Christopher Faulet0f226952018-10-22 09:29:56 +02004918 end:
4919 return dst.len;
4920}
4921
4922/*
4923 * Print a debug line with a start line.
4924 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004925static void http_debug_stline(const char *dir, struct stream *s, const struct htx_sl *sl)
Christopher Faulet0f226952018-10-22 09:29:56 +02004926{
4927 struct session *sess = strm_sess(s);
4928 int max;
4929
4930 chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", s->uniq_id, s->be->id,
4931 dir,
Willy Tarreau88bc8002021-12-06 07:01:02 +00004932 objt_conn(sess->origin) ? (unsigned short)__objt_conn(sess->origin)->handle.fd : -1,
Willy Tarreaufd9417b2022-05-18 16:23:22 +02004933 sc_conn(s->scb) ? (unsigned short)(__sc_conn(s->scb))->handle.fd : -1);
Christopher Faulet0f226952018-10-22 09:29:56 +02004934
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004935 max = HTX_SL_P1_LEN(sl);
Christopher Faulet0f226952018-10-22 09:29:56 +02004936 UBOUND(max, trash.size - trash.data - 3);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004937 chunk_memcat(&trash, HTX_SL_P1_PTR(sl), max);
Christopher Faulet0f226952018-10-22 09:29:56 +02004938 trash.area[trash.data++] = ' ';
4939
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004940 max = HTX_SL_P2_LEN(sl);
Christopher Faulet0f226952018-10-22 09:29:56 +02004941 UBOUND(max, trash.size - trash.data - 2);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004942 chunk_memcat(&trash, HTX_SL_P2_PTR(sl), max);
Christopher Faulet0f226952018-10-22 09:29:56 +02004943 trash.area[trash.data++] = ' ';
4944
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004945 max = HTX_SL_P3_LEN(sl);
Christopher Faulet0f226952018-10-22 09:29:56 +02004946 UBOUND(max, trash.size - trash.data - 1);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004947 chunk_memcat(&trash, HTX_SL_P3_PTR(sl), max);
Christopher Faulet0f226952018-10-22 09:29:56 +02004948 trash.area[trash.data++] = '\n';
4949
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +01004950 DISGUISE(write(1, trash.area, trash.data));
Christopher Faulet0f226952018-10-22 09:29:56 +02004951}
4952
4953/*
4954 * Print a debug line with a header.
4955 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004956static 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 +02004957{
4958 struct session *sess = strm_sess(s);
4959 int max;
4960
4961 chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", s->uniq_id, s->be->id,
4962 dir,
Willy Tarreau88bc8002021-12-06 07:01:02 +00004963 objt_conn(sess->origin) ? (unsigned short)__objt_conn(sess->origin)->handle.fd : -1,
Willy Tarreaufd9417b2022-05-18 16:23:22 +02004964 sc_conn(s->scb) ? (unsigned short)(__sc_conn(s->scb))->handle.fd : -1);
Christopher Faulet0f226952018-10-22 09:29:56 +02004965
4966 max = n.len;
4967 UBOUND(max, trash.size - trash.data - 3);
4968 chunk_memcat(&trash, n.ptr, max);
4969 trash.area[trash.data++] = ':';
4970 trash.area[trash.data++] = ' ';
4971
4972 max = v.len;
4973 UBOUND(max, trash.size - trash.data - 1);
4974 chunk_memcat(&trash, v.ptr, max);
4975 trash.area[trash.data++] = '\n';
4976
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +01004977 DISGUISE(write(1, trash.area, trash.data));
Christopher Faulet0f226952018-10-22 09:29:56 +02004978}
4979
Christopher Fauleta8a46e22019-07-16 14:53:09 +02004980void http_txn_reset_req(struct http_txn *txn)
4981{
Christopher Faulet1aea50e2020-01-17 16:03:53 +01004982 txn->req.flags = 0;
Christopher Fauleta8a46e22019-07-16 14:53:09 +02004983 txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */
4984}
4985
4986void http_txn_reset_res(struct http_txn *txn)
4987{
Christopher Faulet1aea50e2020-01-17 16:03:53 +01004988 txn->rsp.flags = 0;
Christopher Fauleta8a46e22019-07-16 14:53:09 +02004989 txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */
4990}
4991
4992/*
Christopher Faulet75f619a2021-03-08 19:12:58 +01004993 * Create and initialize a new HTTP transaction for stream <s>. This should be
4994 * used before processing any new request. It returns the transaction or NLULL
4995 * on error.
Christopher Fauleta8a46e22019-07-16 14:53:09 +02004996 */
Christopher Faulet75f619a2021-03-08 19:12:58 +01004997struct http_txn *http_create_txn(struct stream *s)
Christopher Fauleta8a46e22019-07-16 14:53:09 +02004998{
Christopher Faulet75f619a2021-03-08 19:12:58 +01004999 struct http_txn *txn;
Willy Tarreaub49672d2022-05-27 10:13:37 +02005000 struct stconn *sc = s->scf;
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005001
Christopher Faulet75f619a2021-03-08 19:12:58 +01005002 txn = pool_alloc(pool_head_http_txn);
5003 if (!txn)
5004 return NULL;
5005 s->txn = txn;
5006
Christopher Faulet5eb67f52022-06-22 17:12:05 +02005007 txn->meth = HTTP_METH_OTHER;
Willy Tarreaub49672d2022-05-27 10:13:37 +02005008 txn->flags = ((sc && sc_ep_test(sc, SE_FL_NOT_FIRST)) ? TX_NOT_FIRST : 0);
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005009 txn->status = -1;
Christopher Faulet5cb513a2020-05-13 17:56:56 +02005010 txn->http_reply = NULL;
Christopher Faulete05bf9e2022-03-29 15:23:40 +02005011 txn->l7_buffer = BUF_NULL;
Willy Tarreau8b507582020-02-25 09:35:07 +01005012 write_u32(txn->cache_hash, 0);
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005013
5014 txn->cookie_first_date = 0;
5015 txn->cookie_last_date = 0;
5016
5017 txn->srv_cookie = NULL;
5018 txn->cli_cookie = NULL;
5019 txn->uri = NULL;
5020
5021 http_txn_reset_req(txn);
5022 http_txn_reset_res(txn);
5023
5024 txn->req.chn = &s->req;
5025 txn->rsp.chn = &s->res;
5026
5027 txn->auth.method = HTTP_AUTH_UNKNOWN;
5028
Aurelien DARRAGON5ad2b642022-11-18 09:17:29 +01005029 /* here we don't want to re-initialize s->vars_txn and s->vars_reqres
5030 * variable lists, because they were already initialized upon stream
5031 * creation in stream_new(), and thus may already contain some variables
5032 */
Christopher Faulet75f619a2021-03-08 19:12:58 +01005033
5034 return txn;
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005035}
5036
5037/* to be used at the end of a transaction */
Christopher Faulet75f619a2021-03-08 19:12:58 +01005038void http_destroy_txn(struct stream *s)
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005039{
5040 struct http_txn *txn = s->txn;
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005041
5042 /* these ones will have been dynamically allocated */
5043 pool_free(pool_head_requri, txn->uri);
5044 pool_free(pool_head_capture, txn->cli_cookie);
5045 pool_free(pool_head_capture, txn->srv_cookie);
Tim Duesterhusa17e6622020-03-05 20:19:02 +01005046 pool_free(pool_head_uniqueid, s->unique_id.ptr);
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005047
Tim Duesterhusa17e6622020-03-05 20:19:02 +01005048 s->unique_id = IST_NULL;
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005049 txn->uri = NULL;
5050 txn->srv_cookie = NULL;
5051 txn->cli_cookie = NULL;
5052
Christopher Faulet59399252019-11-07 14:27:52 +01005053 if (!LIST_ISEMPTY(&s->vars_txn.head))
5054 vars_prune(&s->vars_txn, s->sess, s);
5055 if (!LIST_ISEMPTY(&s->vars_reqres.head))
5056 vars_prune(&s->vars_reqres, s->sess, s);
Christopher Faulet75f619a2021-03-08 19:12:58 +01005057
Christopher Faulete05bf9e2022-03-29 15:23:40 +02005058 b_free(&txn->l7_buffer);
5059
Christopher Faulet75f619a2021-03-08 19:12:58 +01005060 pool_free(pool_head_http_txn, txn);
5061 s->txn = NULL;
Christopher Faulet59399252019-11-07 14:27:52 +01005062}
5063
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005064
Christopher Faulet71236de2023-01-13 09:06:38 +01005065void http_set_term_flags(struct stream *s)
5066{
5067 if (!(s->flags & SF_ERR_MASK))
5068 s->flags |= SF_ERR_PRXCOND;
5069
5070 if (!(s->flags & SF_FINST_MASK)) {
5071 if (s->scb->state == SC_ST_INI) {
5072 /* Before any connection attempt on the server side, we
5073 * are still in the request analysis. Just take case to
5074 * detect tarpit error
5075 */
5076 if (s->req.analysers & AN_REQ_HTTP_TARPIT)
5077 s->flags |= SF_FINST_T;
5078 else
5079 s->flags |= SF_FINST_R;
5080 }
5081 else if (s->scb->state == SC_ST_QUE)
5082 s->flags |= SF_FINST_Q;
5083 else if (sc_state_in(s->scb->state, SC_SB_REQ|SC_SB_TAR|SC_SB_ASS|SC_SB_CON|SC_SB_CER|SC_SB_RDY)) {
5084 if (unlikely(objt_applet(s->target))) {
5085 s->flags |= SF_FINST_R;
5086 }
5087 else
5088 s->flags |= SF_FINST_C;
5089 }
5090 else {
5091 if (s->txn->rsp.msg_state < HTTP_MSG_DATA) {
5092 /* We are still processing the response headers */
5093 s->flags |= SF_FINST_H;
5094 }
Christopher Faulet5b74f992023-01-26 19:02:07 +01005095 // (res == (done|closing|closed)) & (res->flags & shutw)
5096 else if (s->txn->rsp.msg_state >= HTTP_MSG_DONE && s->txn->rsp.msg_state < HTTP_MSG_TUNNEL &&
Christopher Faulet71236de2023-01-13 09:06:38 +01005097 (s->flags & (SF_ERR_CLITO|SF_ERR_CLICL))) {
5098 /* A client error was reported and we are
5099 * transmitting the last block of data
5100 */
5101 s->flags |= SF_FINST_L;
5102 }
5103 else {
5104 /* Otherwise we are in DATA phase on both sides */
5105 s->flags |= SF_FINST_D;
5106 }
5107 }
5108 }
5109}
5110
5111
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005112DECLARE_POOL(pool_head_http_txn, "http_txn", sizeof(struct http_txn));
Christopher Faulet0f226952018-10-22 09:29:56 +02005113
Christopher Fauletf4eb75d2018-10-11 15:55:07 +02005114/*
5115 * Local variables:
5116 * c-indent-level: 8
5117 * c-basic-offset: 8
5118 * End:
5119 */