blob: 7a9cd0bbcc7c38a1bcb36943824b023b933aea8c [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 Tarreaub2551052020-06-09 09:07:15 +020016#include <haproxy/backend.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020017#include <haproxy/base64.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020018#include <haproxy/capture-t.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020019#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020020#include <haproxy/check.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020021#include <haproxy/connection.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020022#include <haproxy/errors.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020023#include <haproxy/filters.h>
Willy Tarreaucd72d8c2020-06-02 19:11:26 +020024#include <haproxy/http.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020025#include <haproxy/http_ana.h>
Willy Tarreau87735332020-06-04 09:08:41 +020026#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020027#include <haproxy/htx.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020028#include <haproxy/log.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +020029#include <haproxy/net_helper.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020030#include <haproxy/proxy.h>
Willy Tarreau7cd8b6e2020-06-02 17:32:26 +020031#include <haproxy/regex.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020032#include <haproxy/server-t.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020033#include <haproxy/stats.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020034#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020035#include <haproxy/stream_interface.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020036#include <haproxy/trace.h>
Willy Tarreau8c42b8a2020-06-04 19:27:34 +020037#include <haproxy/uri_auth-t.h>
Willy Tarreaua1718922020-06-04 16:25:31 +020038#include <haproxy/vars.h>
Christopher Faulete0768eb2018-10-03 16:38:02 +020039
Christopher Faulete0768eb2018-10-03 16:38:02 +020040
Christopher Fauleteea8fc72019-11-05 16:18:10 +010041#define TRACE_SOURCE &trace_strm
42
Christopher Faulet377c5a52018-10-24 21:21:30 +020043extern const char *stat_status_codes[];
Christopher Fauletf2824e62018-10-01 12:12:37 +020044
Christopher Fauleta8a46e22019-07-16 14:53:09 +020045struct pool_head *pool_head_requri = NULL;
46struct pool_head *pool_head_capture = NULL;
47
48
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020049static void http_end_request(struct stream *s);
50static void http_end_response(struct stream *s);
Christopher Fauletf2824e62018-10-01 12:12:37 +020051
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020052static void http_capture_headers(struct htx *htx, char **cap, struct cap_hdr *cap_hdr);
53static int http_del_hdr_value(char *start, char *end, char **from, char *next);
54static size_t http_fmt_req_line(const struct htx_sl *sl, char *str, size_t len);
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020055static void http_debug_stline(const char *dir, struct stream *s, const struct htx_sl *sl);
56static 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 +020057
Christopher Fauletb58f62b2020-01-13 16:40:13 +010058static enum rule_result http_req_get_intercept_rule(struct proxy *px, struct list *rules, struct stream *s);
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020059static enum rule_result http_res_get_intercept_rule(struct proxy *px, struct list *rules, struct stream *s);
Christopher Faulet3e964192018-10-24 11:39:23 +020060
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020061static void http_manage_client_side_cookies(struct stream *s, struct channel *req);
62static void http_manage_server_side_cookies(struct stream *s, struct channel *res);
Christopher Fauletfcda7c62018-10-24 11:56:22 +020063
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020064static int http_stats_check_uri(struct stream *s, struct http_txn *txn, struct proxy *backend);
65static int http_handle_stats(struct stream *s, struct channel *req);
Christopher Faulet377c5a52018-10-24 21:21:30 +020066
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020067static int http_handle_expect_hdr(struct stream *s, struct htx *htx, struct http_msg *msg);
68static int http_reply_100_continue(struct stream *s);
Christopher Faulet23a3c792018-11-28 10:01:23 +010069
Christopher Faulete0768eb2018-10-03 16:38:02 +020070/* This stream analyser waits for a complete HTTP request. It returns 1 if the
71 * processing can continue on next analysers, or zero if it either needs more
72 * data or wants to immediately abort the request (eg: timeout, error, ...). It
73 * is tied to AN_REQ_WAIT_HTTP and may may remove itself from s->req.analysers
74 * when it has nothing left to do, and may remove any analyser when it wants to
75 * abort.
76 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020077int http_wait_for_request(struct stream *s, struct channel *req, int an_bit)
Christopher Faulete0768eb2018-10-03 16:38:02 +020078{
Christopher Faulet9768c262018-10-22 09:34:31 +020079
Christopher Faulete0768eb2018-10-03 16:38:02 +020080 /*
Christopher Faulet9768c262018-10-22 09:34:31 +020081 * We will analyze a complete HTTP request to check the its syntax.
Christopher Faulete0768eb2018-10-03 16:38:02 +020082 *
Christopher Faulet9768c262018-10-22 09:34:31 +020083 * Once the start line and all headers are received, we may perform a
84 * capture of the error (if any), and we will set a few fields. We also
85 * check for monitor-uri, logging and finally headers capture.
Christopher Faulete0768eb2018-10-03 16:38:02 +020086 */
Christopher Faulete0768eb2018-10-03 16:38:02 +020087 struct session *sess = s->sess;
88 struct http_txn *txn = s->txn;
89 struct http_msg *msg = &txn->req;
Christopher Faulet9768c262018-10-22 09:34:31 +020090 struct htx *htx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +010091 struct htx_sl *sl;
Christopher Faulete0768eb2018-10-03 16:38:02 +020092
Christopher Fauleteea8fc72019-11-05 16:18:10 +010093 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Faulete0768eb2018-10-03 16:38:02 +020094
Christopher Faulet27ba2dc2018-12-05 11:53:24 +010095 htx = htxbuf(&req->buf);
Christopher Faulet9768c262018-10-22 09:34:31 +020096
Willy Tarreau4236f032019-03-05 10:43:32 +010097 /* Parsing errors are caught here */
Christopher Fauletb9a92f32019-09-09 10:15:21 +020098 if (htx->flags & (HTX_FL_PARSING_ERROR|HTX_FL_PROCESSING_ERROR)) {
Willy Tarreau4236f032019-03-05 10:43:32 +010099 stream_inc_http_req_ctr(s);
100 stream_inc_http_err_ctr(s);
Emeric Brun28976442020-10-07 08:50:09 +0200101 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200102 if (htx->flags & HTX_FL_PARSING_ERROR)
103 goto return_bad_req;
104 else
105 goto return_int_err;
Willy Tarreau4236f032019-03-05 10:43:32 +0100106 }
107
Christopher Faulete0768eb2018-10-03 16:38:02 +0200108 /* we're speaking HTTP here, so let's speak HTTP to the client */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200109 s->srv_error = http_return_srv_error;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200110
111 /* If there is data available for analysis, log the end of the idle time. */
Christopher Faulet870aad92018-11-29 15:23:46 +0100112 if (c_data(req) && s->logs.t_idle == -1) {
113 const struct cs_info *csinfo = si_get_cs_info(objt_cs(s->si[0].end));
114
115 s->logs.t_idle = ((csinfo)
116 ? csinfo->t_idle
117 : tv_ms_elapsed(&s->logs.tv_accept, &now) - s->logs.t_handshake);
118 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200119
Christopher Faulete0768eb2018-10-03 16:38:02 +0200120 /*
121 * Now we quickly check if we have found a full valid request.
122 * If not so, we check the FD and buffer states before leaving.
123 * A full request is indicated by the fact that we have seen
124 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
125 * requests are checked first. When waiting for a second request
126 * on a keep-alive stream, if we encounter and error, close, t/o,
127 * we note the error in the stream flags but don't set any state.
128 * Since the error will be noted there, it will not be counted by
129 * process_stream() as a frontend error.
130 * Last, we may increase some tracked counters' http request errors on
131 * the cases that are deliberately the client's fault. For instance,
132 * a timeout or connection reset is not counted as an error. However
133 * a bad request is.
134 */
Christopher Faulet29f17582019-05-23 11:03:26 +0200135 if (unlikely(htx_is_empty(htx) || htx->first == -1)) {
Christopher Faulet0ef372a2019-04-08 10:57:20 +0200136 if (htx->flags & HTX_FL_UPGRADE)
137 goto failed_keep_alive;
138
Christopher Faulet9768c262018-10-22 09:34:31 +0200139 /* 1: have we encountered a read error ? */
140 if (req->flags & CF_READ_ERROR) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200141 if (!(s->flags & SF_ERR_MASK))
142 s->flags |= SF_ERR_CLICL;
143
144 if (txn->flags & TX_WAIT_NEXT_RQ)
145 goto failed_keep_alive;
146
147 if (sess->fe->options & PR_O_IGNORE_PRB)
148 goto failed_keep_alive;
149
Christopher Faulet9768c262018-10-22 09:34:31 +0200150 stream_inc_http_err_ctr(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200151 stream_inc_http_req_ctr(s);
Emeric Brun28976442020-10-07 08:50:09 +0200152 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Olivier Houcharda798bf52019-03-08 18:52:00 +0100153 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200154 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100155 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200156
Christopher Faulet9768c262018-10-22 09:34:31 +0200157 txn->status = 400;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200158 http_reply_and_close(s, txn->status, NULL);
Christopher Faulet9768c262018-10-22 09:34:31 +0200159 req->analysers &= AN_REQ_FLT_END;
160
Christopher Faulete0768eb2018-10-03 16:38:02 +0200161 if (!(s->flags & SF_FINST_MASK))
162 s->flags |= SF_FINST_R;
163 return 0;
164 }
165
Christopher Faulet9768c262018-10-22 09:34:31 +0200166 /* 2: has the read timeout expired ? */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200167 else if (req->flags & CF_READ_TIMEOUT || tick_is_expired(req->analyse_exp, now_ms)) {
168 if (!(s->flags & SF_ERR_MASK))
169 s->flags |= SF_ERR_CLITO;
170
171 if (txn->flags & TX_WAIT_NEXT_RQ)
172 goto failed_keep_alive;
173
174 if (sess->fe->options & PR_O_IGNORE_PRB)
175 goto failed_keep_alive;
176
Christopher Faulet9768c262018-10-22 09:34:31 +0200177 stream_inc_http_err_ctr(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200178 stream_inc_http_req_ctr(s);
Emeric Brun28976442020-10-07 08:50:09 +0200179 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Olivier Houcharda798bf52019-03-08 18:52:00 +0100180 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200181 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100182 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200183
Christopher Faulet9768c262018-10-22 09:34:31 +0200184 txn->status = 408;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200185 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulet9768c262018-10-22 09:34:31 +0200186 req->analysers &= AN_REQ_FLT_END;
187
Christopher Faulete0768eb2018-10-03 16:38:02 +0200188 if (!(s->flags & SF_FINST_MASK))
189 s->flags |= SF_FINST_R;
190 return 0;
191 }
192
Christopher Faulet9768c262018-10-22 09:34:31 +0200193 /* 3: have we encountered a close ? */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200194 else if (req->flags & CF_SHUTR) {
195 if (!(s->flags & SF_ERR_MASK))
196 s->flags |= SF_ERR_CLICL;
197
198 if (txn->flags & TX_WAIT_NEXT_RQ)
199 goto failed_keep_alive;
200
201 if (sess->fe->options & PR_O_IGNORE_PRB)
202 goto failed_keep_alive;
203
Christopher Faulete0768eb2018-10-03 16:38:02 +0200204 stream_inc_http_err_ctr(s);
205 stream_inc_http_req_ctr(s);
Emeric Brun28976442020-10-07 08:50:09 +0200206 proxy_inc_fe_req_ctr(sess->listener, sess->fe);
Olivier Houcharda798bf52019-03-08 18:52:00 +0100207 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200208 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100209 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200210
Christopher Faulet9768c262018-10-22 09:34:31 +0200211 txn->status = 400;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200212 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulet9768c262018-10-22 09:34:31 +0200213 req->analysers &= AN_REQ_FLT_END;
214
Christopher Faulete0768eb2018-10-03 16:38:02 +0200215 if (!(s->flags & SF_FINST_MASK))
216 s->flags |= SF_FINST_R;
217 return 0;
218 }
219
220 channel_dont_connect(req);
221 req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
222 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau1a18b542018-12-11 16:37:42 +0100223
Christopher Faulet9768c262018-10-22 09:34:31 +0200224 if (sess->listener->options & LI_O_NOQUICKACK && htx_is_not_empty(htx) &&
Christopher Faulete0768eb2018-10-03 16:38:02 +0200225 objt_conn(sess->origin) && conn_ctrl_ready(__objt_conn(sess->origin))) {
226 /* We need more data, we have to re-enable quick-ack in case we
227 * previously disabled it, otherwise we might cause the client
228 * to delay next data.
229 */
Willy Tarreau1a18b542018-12-11 16:37:42 +0100230 conn_set_quickack(objt_conn(sess->origin), 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200231 }
Willy Tarreau1a18b542018-12-11 16:37:42 +0100232
Christopher Faulet47365272018-10-31 17:40:50 +0100233 if ((req->flags & CF_READ_PARTIAL) && (txn->flags & TX_WAIT_NEXT_RQ)) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200234 /* If the client starts to talk, let's fall back to
235 * request timeout processing.
236 */
237 txn->flags &= ~TX_WAIT_NEXT_RQ;
238 req->analyse_exp = TICK_ETERNITY;
239 }
240
241 /* just set the request timeout once at the beginning of the request */
242 if (!tick_isset(req->analyse_exp)) {
Christopher Faulet47365272018-10-31 17:40:50 +0100243 if ((txn->flags & TX_WAIT_NEXT_RQ) && tick_isset(s->be->timeout.httpka))
Christopher Faulete0768eb2018-10-03 16:38:02 +0200244 req->analyse_exp = tick_add(now_ms, s->be->timeout.httpka);
245 else
246 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
247 }
248
249 /* we're not ready yet */
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100250 DBG_TRACE_DEVEL("waiting for the request",
251 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200252 return 0;
253
254 failed_keep_alive:
255 /* Here we process low-level errors for keep-alive requests. In
256 * short, if the request is not the first one and it experiences
257 * a timeout, read error or shutdown, we just silently close so
258 * that the client can try again.
259 */
260 txn->status = 0;
261 msg->msg_state = HTTP_MSG_RQBEFORE;
262 req->analysers &= AN_REQ_FLT_END;
263 s->logs.logwait = 0;
264 s->logs.level = 0;
265 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200266 http_reply_and_close(s, txn->status, NULL);
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100267 DBG_TRACE_DEVEL("leaving by closing K/A connection",
268 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200269 return 0;
270 }
271
Christopher Faulet9768c262018-10-22 09:34:31 +0200272 msg->msg_state = HTTP_MSG_BODY;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200273 stream_inc_http_req_ctr(s);
Emeric Brun28976442020-10-07 08:50:09 +0200274 proxy_inc_fe_req_ctr(sess->listener, sess->fe); /* one more valid request for this FE */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200275
Christopher Faulet9768c262018-10-22 09:34:31 +0200276 /* kill the pending keep-alive timeout */
277 txn->flags &= ~TX_WAIT_NEXT_RQ;
278 req->analyse_exp = TICK_ETERNITY;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200279
Christopher Faulet29f17582019-05-23 11:03:26 +0200280 BUG_ON(htx_get_first_type(htx) != HTX_BLK_REQ_SL);
Christopher Faulet297fbb42019-05-13 14:41:27 +0200281 sl = http_get_stline(htx);
Christopher Faulet03599112018-11-27 11:21:21 +0100282
Christopher Faulet9768c262018-10-22 09:34:31 +0200283 /* 0: we might have to print this header in debug mode */
284 if (unlikely((global.mode & MODE_DEBUG) &&
285 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
286 int32_t pos;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200287
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200288 http_debug_stline("clireq", s, sl);
Christopher Faulet9768c262018-10-22 09:34:31 +0200289
Christopher Fauleta3f15502019-05-13 15:27:23 +0200290 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
Christopher Faulet9768c262018-10-22 09:34:31 +0200291 struct htx_blk *blk = htx_get_blk(htx, pos);
292 enum htx_blk_type type = htx_get_blk_type(blk);
293
294 if (type == HTX_BLK_EOH)
295 break;
296 if (type != HTX_BLK_HDR)
297 continue;
298
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200299 http_debug_hdr("clihdr", s,
300 htx_get_blk_name(htx, blk),
301 htx_get_blk_value(htx, blk));
Christopher Faulet9768c262018-10-22 09:34:31 +0200302 }
303 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200304
305 /*
Christopher Faulet03599112018-11-27 11:21:21 +0100306 * 1: identify the method and the version. Also set HTTP flags
Christopher Faulete0768eb2018-10-03 16:38:02 +0200307 */
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100308 txn->meth = sl->info.req.meth;
Christopher Faulet03599112018-11-27 11:21:21 +0100309 if (sl->flags & HTX_SL_F_VER_11)
Christopher Faulet9768c262018-10-22 09:34:31 +0200310 msg->flags |= HTTP_MSGF_VER_11;
Christopher Faulet03599112018-11-27 11:21:21 +0100311 msg->flags |= HTTP_MSGF_XFER_LEN;
Christopher Faulet834eee72019-02-18 11:35:02 +0100312 msg->flags |= ((sl->flags & HTX_SL_F_CLEN) ? HTTP_MSGF_CNT_LEN : HTTP_MSGF_TE_CHNK);
Christopher Fauletb2db4fa2018-11-27 16:51:09 +0100313 if (sl->flags & HTX_SL_F_BODYLESS)
314 msg->flags |= HTTP_MSGF_BODYLESS;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200315
316 /* we can make use of server redirect on GET and HEAD */
317 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
318 s->flags |= SF_REDIRECTABLE;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100319 else if (txn->meth == HTTP_METH_OTHER && isteqi(htx_sl_req_meth(sl), ist("PRI"))) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200320 /* PRI is reserved for the HTTP/2 preface */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200321 goto return_bad_req;
322 }
323
324 /*
Christopher Faulet6072beb2020-02-18 15:34:58 +0100325 * 2: check if the URI matches the monitor_uri. We have to do this for
326 * every request which gets in, because the monitor-uri is defined by
327 * the frontend. If the monitor-uri starts with a '/', the matching is
328 * done against the request's path. Otherwise, the request's uri is
329 * used. It is a workaround to let HTTP/2 health-checks work as
330 * expected.
Christopher Faulete0768eb2018-10-03 16:38:02 +0200331 */
332 if (unlikely((sess->fe->monitor_uri_len != 0) &&
Christopher Faulet6072beb2020-02-18 15:34:58 +0100333 ((*sess->fe->monitor_uri == '/' && isteq(http_get_path(htx_sl_req_uri(sl)),
334 ist2(sess->fe->monitor_uri, sess->fe->monitor_uri_len))) ||
335 isteq(htx_sl_req_uri(sl), ist2(sess->fe->monitor_uri, sess->fe->monitor_uri_len))))) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200336 /*
337 * We have found the monitor URI
338 */
339 struct acl_cond *cond;
340
341 s->flags |= SF_MONITOR;
Olivier Houcharda798bf52019-03-08 18:52:00 +0100342 _HA_ATOMIC_ADD(&sess->fe->fe_counters.intercepted_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200343
344 /* Check if we want to fail this monitor request or not */
345 list_for_each_entry(cond, &sess->fe->mon_fail_cond, list) {
346 int ret = acl_exec_cond(cond, sess->fe, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
347
348 ret = acl_pass(ret);
349 if (cond->pol == ACL_COND_UNLESS)
350 ret = !ret;
351
352 if (ret) {
353 /* we fail this request, let's return 503 service unavail */
354 txn->status = 503;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200355 if (!(s->flags & SF_ERR_MASK))
356 s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */
357 goto return_prx_cond;
358 }
359 }
360
Joseph Herlantc42c0e92018-11-25 10:43:27 -0800361 /* nothing to fail, let's reply normally */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200362 txn->status = 200;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200363 if (!(s->flags & SF_ERR_MASK))
364 s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */
365 goto return_prx_cond;
366 }
367
368 /*
369 * 3: Maybe we have to copy the original REQURI for the logs ?
370 * Note: we cannot log anymore if the request has been
371 * classified as invalid.
372 */
373 if (unlikely(s->logs.logwait & LW_REQ)) {
374 /* we have a complete HTTP request that we must log */
375 if ((txn->uri = pool_alloc(pool_head_requri)) != NULL) {
Christopher Faulet9768c262018-10-22 09:34:31 +0200376 size_t len;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200377
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200378 len = http_fmt_req_line(sl, txn->uri, global.tune.requri_len - 1);
Christopher Faulet9768c262018-10-22 09:34:31 +0200379 txn->uri[len] = 0;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200380
381 if (!(s->logs.logwait &= ~(LW_REQ|LW_INIT)))
382 s->do_log(s);
383 } else {
384 ha_alert("HTTP logging : out of memory.\n");
385 }
386 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200387
Christopher Faulete0768eb2018-10-03 16:38:02 +0200388 /* if the frontend has "option http-use-proxy-header", we'll check if
389 * we have what looks like a proxied connection instead of a connection,
390 * and in this case set the TX_USE_PX_CONN flag to use Proxy-connection.
391 * Note that this is *not* RFC-compliant, however browsers and proxies
392 * happen to do that despite being non-standard :-(
393 * We consider that a request not beginning with either '/' or '*' is
394 * a proxied connection, which covers both "scheme://location" and
395 * CONNECT ip:port.
396 */
397 if ((sess->fe->options2 & PR_O2_USE_PXHDR) &&
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100398 *HTX_SL_REQ_UPTR(sl) != '/' && *HTX_SL_REQ_UPTR(sl) != '*')
Christopher Faulete0768eb2018-10-03 16:38:02 +0200399 txn->flags |= TX_USE_PX_CONN;
400
Christopher Faulete0768eb2018-10-03 16:38:02 +0200401 /* 5: we may need to capture headers */
402 if (unlikely((s->logs.logwait & LW_REQHDR) && s->req_cap))
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200403 http_capture_headers(htx, s->req_cap, sess->fe->req_cap);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200404
Christopher Faulete0768eb2018-10-03 16:38:02 +0200405 /* we may have to wait for the request's body */
Christopher Faulet9768c262018-10-22 09:34:31 +0200406 if (s->be->options & PR_O_WREQ_BODY)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200407 req->analysers |= AN_REQ_HTTP_BODY;
408
409 /*
410 * RFC7234#4:
411 * A cache MUST write through requests with methods
412 * that are unsafe (Section 4.2.1 of [RFC7231]) to
413 * the origin server; i.e., a cache is not allowed
414 * to generate a reply to such a request before
415 * having forwarded the request and having received
416 * a corresponding response.
417 *
418 * RFC7231#4.2.1:
419 * Of the request methods defined by this
420 * specification, the GET, HEAD, OPTIONS, and TRACE
421 * methods are defined to be safe.
422 */
423 if (likely(txn->meth == HTTP_METH_GET ||
424 txn->meth == HTTP_METH_HEAD ||
425 txn->meth == HTTP_METH_OPTIONS ||
426 txn->meth == HTTP_METH_TRACE))
427 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
428
429 /* end of job, return OK */
430 req->analysers &= ~an_bit;
431 req->analyse_exp = TICK_ETERNITY;
Christopher Faulet9768c262018-10-22 09:34:31 +0200432
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100433 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200434 return 1;
435
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200436 return_int_err:
437 txn->status = 500;
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200438 if (!(s->flags & SF_ERR_MASK))
439 s->flags |= SF_ERR_INTERNAL;
Christopher Fauletb8a53712019-12-16 11:29:38 +0100440 _HA_ATOMIC_ADD(&sess->fe->fe_counters.internal_errors, 1);
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200441 if (sess->listener->counters)
Christopher Fauletb8a53712019-12-16 11:29:38 +0100442 _HA_ATOMIC_ADD(&sess->listener->counters->internal_errors, 1);
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200443 goto return_prx_cond;
444
Christopher Faulete0768eb2018-10-03 16:38:02 +0200445 return_bad_req:
Christopher Faulet9768c262018-10-22 09:34:31 +0200446 txn->status = 400;
Olivier Houcharda798bf52019-03-08 18:52:00 +0100447 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200448 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100449 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200450 /* fall through */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200451
452 return_prx_cond:
Christopher Fauletb9a92f32019-09-09 10:15:21 +0200453 http_reply_and_close(s, txn->status, http_error_message(s));
454
Christopher Faulete0768eb2018-10-03 16:38:02 +0200455 if (!(s->flags & SF_ERR_MASK))
456 s->flags |= SF_ERR_PRXCOND;
457 if (!(s->flags & SF_FINST_MASK))
458 s->flags |= SF_FINST_R;
459
460 req->analysers &= AN_REQ_FLT_END;
461 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100462 DBG_TRACE_DEVEL("leaving on error",
463 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200464 return 0;
465}
466
467
468/* This stream analyser runs all HTTP request processing which is common to
469 * frontends and backends, which means blocking ACLs, filters, connection-close,
470 * reqadd, stats and redirects. This is performed for the designated proxy.
471 * It returns 1 if the processing can continue on next analysers, or zero if it
472 * either needs more data or wants to immediately abort the request (eg: deny,
473 * error, ...).
474 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200475int http_process_req_common(struct stream *s, struct channel *req, int an_bit, struct proxy *px)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200476{
477 struct session *sess = s->sess;
478 struct http_txn *txn = s->txn;
479 struct http_msg *msg = &txn->req;
Christopher Fauletff2759f2018-10-24 11:13:16 +0200480 struct htx *htx;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200481 struct redirect_rule *rule;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200482 enum rule_result verdict;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200483 struct connection *conn = objt_conn(sess->origin);
484
485 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
486 /* we need more data */
487 goto return_prx_yield;
488 }
489
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100490 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200491
Christopher Faulet27ba2dc2018-12-05 11:53:24 +0100492 htx = htxbuf(&req->buf);
Christopher Fauletff2759f2018-10-24 11:13:16 +0200493
Christopher Faulet1907ccc2019-04-29 13:12:02 +0200494 /* just in case we have some per-backend tracking. Only called the first
495 * execution of the analyser. */
496 if (!s->current_rule || s->current_rule_list != &px->http_req_rules)
497 stream_inc_be_http_req_ctr(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200498
499 /* evaluate http-request rules */
500 if (!LIST_ISEMPTY(&px->http_req_rules)) {
Christopher Fauletb58f62b2020-01-13 16:40:13 +0100501 verdict = http_req_get_intercept_rule(px, &px->http_req_rules, s);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200502
503 switch (verdict) {
504 case HTTP_RULE_RES_YIELD: /* some data miss, call the function later. */
505 goto return_prx_yield;
506
507 case HTTP_RULE_RES_CONT:
508 case HTTP_RULE_RES_STOP: /* nothing to do */
509 break;
510
511 case HTTP_RULE_RES_DENY: /* deny or tarpit */
512 if (txn->flags & TX_CLTARPIT)
513 goto tarpit;
514 goto deny;
515
516 case HTTP_RULE_RES_ABRT: /* abort request, response already sent. Eg: auth */
517 goto return_prx_cond;
518
519 case HTTP_RULE_RES_DONE: /* OK, but terminate request processing (eg: redirect) */
520 goto done;
521
522 case HTTP_RULE_RES_BADREQ: /* failed with a bad request */
523 goto return_bad_req;
Christopher Faulet3a26bee2019-12-16 12:47:40 +0100524
525 case HTTP_RULE_RES_ERROR: /* failed with a bad request */
526 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200527 }
528 }
529
530 if (conn && (conn->flags & CO_FL_EARLY_DATA) &&
Olivier Houchard220a26c2020-01-23 14:57:36 +0100531 (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS))) {
Christopher Fauletff2759f2018-10-24 11:13:16 +0200532 struct http_hdr_ctx ctx;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200533
Christopher Fauletff2759f2018-10-24 11:13:16 +0200534 ctx.blk = NULL;
535 if (!http_find_header(htx, ist("Early-Data"), &ctx, 0)) {
536 if (unlikely(!http_add_header(htx, ist("Early-Data"), ist("1"))))
Christopher Fauletb8a53712019-12-16 11:29:38 +0100537 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200538 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200539 }
540
541 /* OK at this stage, we know that the request was accepted according to
542 * the http-request rules, we can check for the stats. Note that the
543 * URI is detected *before* the req* rules in order not to be affected
544 * by a possible reqrep, while they are processed *after* so that a
545 * reqdeny can still block them. This clearly needs to change in 1.6!
546 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200547 if (!s->target && http_stats_check_uri(s, txn, px)) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200548 s->target = &http_stats_applet.obj_type;
Willy Tarreau14bfe9a2018-12-19 15:19:27 +0100549 if (unlikely(!si_register_handler(&s->si[1], objt_applet(s->target)))) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200550 s->logs.tv_request = now;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200551 if (!(s->flags & SF_ERR_MASK))
552 s->flags |= SF_ERR_RESOURCE;
Christopher Fauletb8a53712019-12-16 11:29:38 +0100553 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200554 }
555
556 /* parse the whole stats request and extract the relevant information */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200557 http_handle_stats(s, req);
Christopher Fauletb58f62b2020-01-13 16:40:13 +0100558 verdict = http_req_get_intercept_rule(px, &px->uri_auth->http_req_rules, s);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200559 /* not all actions implemented: deny, allow, auth */
560
561 if (verdict == HTTP_RULE_RES_DENY) /* stats http-request deny */
562 goto deny;
563
564 if (verdict == HTTP_RULE_RES_ABRT) /* stats auth / stats http-request auth */
565 goto return_prx_cond;
Christopher Faulet3a26bee2019-12-16 12:47:40 +0100566
567 if (verdict == HTTP_RULE_RES_BADREQ) /* failed with a bad request */
568 goto return_bad_req;
569
570 if (verdict == HTTP_RULE_RES_ERROR) /* failed with a bad request */
571 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200572 }
573
Christopher Faulet2571bc62019-03-01 11:44:26 +0100574 /* Proceed with the applets now. */
575 if (unlikely(objt_applet(s->target))) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200576 if (sess->fe == s->be) /* report it if the request was intercepted by the frontend */
Olivier Houcharda798bf52019-03-08 18:52:00 +0100577 _HA_ATOMIC_ADD(&sess->fe->fe_counters.intercepted_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200578
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200579 if (http_handle_expect_hdr(s, htx, msg) == -1)
Christopher Fauletb8a53712019-12-16 11:29:38 +0100580 goto return_int_err;
Christopher Fauletbcf242a2019-03-01 11:36:26 +0100581
Christopher Faulete0768eb2018-10-03 16:38:02 +0200582 if (!(s->flags & SF_ERR_MASK)) // this is not really an error but it is
583 s->flags |= SF_ERR_LOCAL; // to mark that it comes from the proxy
584 if (!(s->flags & SF_FINST_MASK))
585 s->flags |= SF_FINST_R;
586
587 /* enable the minimally required analyzers to handle keep-alive and compression on the HTTP response */
588 req->analysers &= (AN_REQ_HTTP_BODY | AN_REQ_FLT_HTTP_HDRS | AN_REQ_FLT_END);
589 req->analysers &= ~AN_REQ_FLT_XFER_DATA;
590 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Christopher Fauletbcf242a2019-03-01 11:36:26 +0100591
592 req->flags |= CF_SEND_DONTWAIT;
593 s->flags |= SF_ASSIGNED;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200594 goto done;
595 }
596
597 /* check whether we have some ACLs set to redirect this request */
598 list_for_each_entry(rule, &px->redirect_rules, list) {
599 if (rule->cond) {
600 int ret;
601
602 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
603 ret = acl_pass(ret);
604 if (rule->cond->pol == ACL_COND_UNLESS)
605 ret = !ret;
606 if (!ret)
607 continue;
608 }
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200609 if (!http_apply_redirect_rule(rule, s, txn))
Christopher Fauletb8a53712019-12-16 11:29:38 +0100610 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200611 goto done;
612 }
613
614 /* POST requests may be accompanied with an "Expect: 100-Continue" header.
615 * If this happens, then the data will not come immediately, so we must
616 * send all what we have without waiting. Note that due to the small gain
617 * in waiting for the body of the request, it's easier to simply put the
618 * CF_SEND_DONTWAIT flag any time. It's a one-shot flag so it will remove
619 * itself once used.
620 */
621 req->flags |= CF_SEND_DONTWAIT;
622
623 done: /* done with this analyser, continue with next ones that the calling
624 * points will have set, if any.
625 */
626 req->analyse_exp = TICK_ETERNITY;
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +0500627 done_without_exp: /* done with this analyser, but don't reset the analyse_exp. */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200628 req->analysers &= ~an_bit;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100629 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200630 return 1;
631
632 tarpit:
633 /* Allow cookie logging
634 */
635 if (s->be->cookie_name || sess->fe->capture_name)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200636 http_manage_client_side_cookies(s, req);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200637
638 /* When a connection is tarpitted, we use the tarpit timeout,
639 * which may be the same as the connect timeout if unspecified.
640 * If unset, then set it to zero because we really want it to
641 * eventually expire. We build the tarpit as an analyser.
642 */
Christopher Faulet202c6ce2019-01-07 14:57:35 +0100643 channel_htx_erase(&s->req, htx);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200644
645 /* wipe the request out so that we can drop the connection early
646 * if the client closes first.
647 */
648 channel_dont_connect(req);
649
Christopher Faulete0768eb2018-10-03 16:38:02 +0200650 req->analysers &= AN_REQ_FLT_END; /* remove switching rules etc... */
651 req->analysers |= AN_REQ_HTTP_TARPIT;
652 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit);
653 if (!req->analyse_exp)
654 req->analyse_exp = tick_add(now_ms, 0);
655 stream_inc_http_err_ctr(s);
Olivier Houcharda798bf52019-03-08 18:52:00 +0100656 _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_req, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +0100657 if (s->flags & SF_BE_ASSIGNED)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100658 _HA_ATOMIC_ADD(&s->be->be_counters.denied_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200659 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100660 _HA_ATOMIC_ADD(&sess->listener->counters->denied_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200661 goto done_without_exp;
662
663 deny: /* this request was blocked (denied) */
664
665 /* Allow cookie logging
666 */
667 if (s->be->cookie_name || sess->fe->capture_name)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200668 http_manage_client_side_cookies(s, req);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200669
Christopher Faulete0768eb2018-10-03 16:38:02 +0200670 s->logs.tv_request = now;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200671 stream_inc_http_err_ctr(s);
Olivier Houcharda798bf52019-03-08 18:52:00 +0100672 _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_req, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +0100673 if (s->flags & SF_BE_ASSIGNED)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100674 _HA_ATOMIC_ADD(&s->be->be_counters.denied_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200675 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100676 _HA_ATOMIC_ADD(&sess->listener->counters->denied_req, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +0100677 goto return_prx_err;
678
679 return_int_err:
680 txn->status = 500;
681 if (!(s->flags & SF_ERR_MASK))
682 s->flags |= SF_ERR_INTERNAL;
683 _HA_ATOMIC_ADD(&sess->fe->fe_counters.internal_errors, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +0100684 if (s->flags & SF_BE_ASSIGNED)
685 _HA_ATOMIC_ADD(&s->be->be_counters.internal_errors, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +0100686 if (sess->listener->counters)
687 _HA_ATOMIC_ADD(&sess->listener->counters->internal_errors, 1);
688 goto return_prx_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200689
690 return_bad_req:
Christopher Faulete0768eb2018-10-03 16:38:02 +0200691 txn->status = 400;
Olivier Houcharda798bf52019-03-08 18:52:00 +0100692 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200693 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100694 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +0100695 /* fall through */
696
697 return_prx_err:
698 http_reply_and_close(s, txn->status, http_error_message(s));
699 /* fall through */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200700
701 return_prx_cond:
702 if (!(s->flags & SF_ERR_MASK))
703 s->flags |= SF_ERR_PRXCOND;
704 if (!(s->flags & SF_FINST_MASK))
705 s->flags |= SF_FINST_R;
706
707 req->analysers &= AN_REQ_FLT_END;
708 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100709 DBG_TRACE_DEVEL("leaving on error",
710 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200711 return 0;
712
713 return_prx_yield:
714 channel_dont_connect(req);
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100715 DBG_TRACE_DEVEL("waiting for more data",
716 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200717 return 0;
718}
719
720/* This function performs all the processing enabled for the current request.
721 * It returns 1 if the processing can continue on next analysers, or zero if it
722 * needs more data, encounters an error, or wants to immediately abort the
723 * request. It relies on buffers flags, and updates s->req.analysers.
724 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200725int http_process_request(struct stream *s, struct channel *req, int an_bit)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200726{
727 struct session *sess = s->sess;
728 struct http_txn *txn = s->txn;
729 struct http_msg *msg = &txn->req;
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200730 struct htx *htx;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200731 struct connection *cli_conn = objt_conn(strm_sess(s)->origin);
732
733 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
734 /* we need more data */
735 channel_dont_connect(req);
736 return 0;
737 }
738
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100739 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200740
741 /*
742 * Right now, we know that we have processed the entire headers
743 * and that unwanted requests have been filtered out. We can do
744 * whatever we want with the remaining request. Also, now we
745 * may have separate values for ->fe, ->be.
746 */
Christopher Faulet27ba2dc2018-12-05 11:53:24 +0100747 htx = htxbuf(&req->buf);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200748
749 /*
750 * If HTTP PROXY is set we simply get remote server address parsing
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200751 * incoming request.
Christopher Faulete0768eb2018-10-03 16:38:02 +0200752 */
753 if ((s->be->options & PR_O_HTTP_PROXY) && !(s->flags & SF_ADDR_SET)) {
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100754 struct htx_sl *sl;
755 struct ist uri, path;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200756
Willy Tarreau9b7587a2020-10-15 07:32:10 +0200757 if (!sockaddr_alloc(&s->target_addr, NULL, 0)) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200758 if (!(s->flags & SF_ERR_MASK))
759 s->flags |= SF_ERR_RESOURCE;
Christopher Fauletb8a53712019-12-16 11:29:38 +0100760 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200761 }
Christopher Faulet297fbb42019-05-13 14:41:27 +0200762 sl = http_get_stline(htx);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100763 uri = htx_sl_req_uri(sl);
764 path = http_get_path(uri);
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200765
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200766 if (url2sa(uri.ptr, uri.len - path.len, s->target_addr, NULL) == -1)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200767 goto return_bad_req;
768
Willy Tarreau1c8d32b2019-07-18 15:47:45 +0200769 s->target = &s->be->obj_type;
770 s->flags |= SF_ADDR_SET | SF_ASSIGNED;
771
Christopher Faulete0768eb2018-10-03 16:38:02 +0200772 /* if the path was found, we have to remove everything between
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200773 * uri.ptr and path.ptr (excluded). If it was not found, we need
774 * to replace from all the uri by a single "/".
775 *
Ilya Shipitsin46a030c2020-07-05 16:36:08 +0500776 * Instead of rewriting the whole start line, we just update
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100777 * the star-line URI. Some space will be lost but it should be
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200778 * insignificant.
Christopher Faulete0768eb2018-10-03 16:38:02 +0200779 */
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100780 istcpy(&uri, (path.len ? path : ist("/")), uri.len);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200781 }
782
783 /*
784 * 7: Now we can work with the cookies.
785 * Note that doing so might move headers in the request, but
786 * the fields will stay coherent and the URI will not move.
787 * This should only be performed in the backend.
788 */
789 if (s->be->cookie_name || sess->fe->capture_name)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200790 http_manage_client_side_cookies(s, req);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200791
Tim Duesterhus2825b4b2020-02-28 15:13:34 +0100792 /* 8: Generate unique ID if a "unique-id-format" is defined.
793 *
794 * A unique ID is generated even when it is not sent to ensure that the ID can make use of
795 * fetches only available in the HTTP request processing stage.
796 */
797 if (!LIST_ISEMPTY(&sess->fe->format_unique_id)) {
Tim Duesterhusa17e6622020-03-05 20:19:02 +0100798 struct ist unique_id = stream_generate_unique_id(s, &sess->fe->format_unique_id);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200799
Tim Duesterhusa17e6622020-03-05 20:19:02 +0100800 if (!isttest(unique_id)) {
Christopher Fauletb8a53712019-12-16 11:29:38 +0100801 if (!(s->flags & SF_ERR_MASK))
802 s->flags |= SF_ERR_RESOURCE;
803 goto return_int_err;
804 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200805
Tim Duesterhus2825b4b2020-02-28 15:13:34 +0100806 /* send unique ID if a "unique-id-header" is defined */
Tim Duesterhus0643b0e2020-03-05 17:56:35 +0100807 if (isttest(sess->fe->header_unique_id) &&
Tim Duesterhusa17e6622020-03-05 20:19:02 +0100808 unlikely(!http_add_header(htx, sess->fe->header_unique_id, s->unique_id)))
Tim Duesterhus2825b4b2020-02-28 15:13:34 +0100809 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200810 }
811
812 /*
813 * 9: add X-Forwarded-For if either the frontend or the backend
814 * asks for it.
815 */
816 if ((sess->fe->options | s->be->options) & PR_O_FWDFOR) {
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200817 struct http_hdr_ctx ctx = { .blk = NULL };
818 struct ist hdr = ist2(s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_name : sess->fe->fwdfor_hdr_name,
819 s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_len : sess->fe->fwdfor_hdr_len);
820
Christopher Faulete0768eb2018-10-03 16:38:02 +0200821 if (!((sess->fe->options | s->be->options) & PR_O_FF_ALWAYS) &&
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200822 http_find_header(htx, hdr, &ctx, 0)) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200823 /* The header is set to be added only if none is present
824 * and we found it, so don't do anything.
825 */
826 }
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200827 else if (cli_conn && conn_get_src(cli_conn) && cli_conn->src->ss_family == AF_INET) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200828 /* Add an X-Forwarded-For header unless the source IP is
829 * in the 'except' network range.
830 */
831 if ((!sess->fe->except_mask.s_addr ||
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200832 (((struct sockaddr_in *)cli_conn->src)->sin_addr.s_addr & sess->fe->except_mask.s_addr)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200833 != sess->fe->except_net.s_addr) &&
834 (!s->be->except_mask.s_addr ||
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200835 (((struct sockaddr_in *)cli_conn->src)->sin_addr.s_addr & s->be->except_mask.s_addr)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200836 != s->be->except_net.s_addr)) {
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200837 unsigned char *pn = (unsigned char *)&((struct sockaddr_in *)cli_conn->src)->sin_addr;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200838
839 /* Note: we rely on the backend to get the header name to be used for
840 * x-forwarded-for, because the header is really meant for the backends.
841 * However, if the backend did not specify any option, we have to rely
842 * on the frontend's header name.
843 */
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200844 chunk_printf(&trash, "%d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
845 if (unlikely(!http_add_header(htx, hdr, ist2(trash.area, trash.data))))
Christopher Fauletb8a53712019-12-16 11:29:38 +0100846 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200847 }
848 }
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200849 else if (cli_conn && conn_get_src(cli_conn) && cli_conn->src->ss_family == AF_INET6) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200850 /* FIXME: for the sake of completeness, we should also support
851 * 'except' here, although it is mostly useless in this case.
852 */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200853 char pn[INET6_ADDRSTRLEN];
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200854
Christopher Faulete0768eb2018-10-03 16:38:02 +0200855 inet_ntop(AF_INET6,
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200856 (const void *)&((struct sockaddr_in6 *)(cli_conn->src))->sin6_addr,
Christopher Faulete0768eb2018-10-03 16:38:02 +0200857 pn, sizeof(pn));
858
859 /* Note: we rely on the backend to get the header name to be used for
860 * x-forwarded-for, because the header is really meant for the backends.
861 * However, if the backend did not specify any option, we have to rely
862 * on the frontend's header name.
863 */
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200864 chunk_printf(&trash, "%s", pn);
865 if (unlikely(!http_add_header(htx, hdr, ist2(trash.area, trash.data))))
Christopher Fauletb8a53712019-12-16 11:29:38 +0100866 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200867 }
868 }
869
870 /*
871 * 10: add X-Original-To if either the frontend or the backend
872 * asks for it.
873 */
874 if ((sess->fe->options | s->be->options) & PR_O_ORGTO) {
875
876 /* FIXME: don't know if IPv6 can handle that case too. */
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200877 if (cli_conn && conn_get_src(cli_conn) && cli_conn->src->ss_family == AF_INET && conn_get_dst(cli_conn)) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200878 /* Add an X-Original-To header unless the destination IP is
879 * in the 'except' network range.
880 */
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200881 if (cli_conn->dst->ss_family == AF_INET &&
Christopher Faulete0768eb2018-10-03 16:38:02 +0200882 ((!sess->fe->except_mask_to.s_addr ||
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200883 (((struct sockaddr_in *)cli_conn->dst)->sin_addr.s_addr & sess->fe->except_mask_to.s_addr)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200884 != sess->fe->except_to.s_addr) &&
885 (!s->be->except_mask_to.s_addr ||
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200886 (((struct sockaddr_in *)cli_conn->dst)->sin_addr.s_addr & s->be->except_mask_to.s_addr)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200887 != s->be->except_to.s_addr))) {
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200888 struct ist hdr;
Willy Tarreaua48f4b32019-07-17 15:11:59 +0200889 unsigned char *pn = (unsigned char *)&((struct sockaddr_in *)cli_conn->dst)->sin_addr;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200890
891 /* Note: we rely on the backend to get the header name to be used for
892 * x-original-to, because the header is really meant for the backends.
893 * However, if the backend did not specify any option, we have to rely
894 * on the frontend's header name.
895 */
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200896 if (s->be->orgto_hdr_len)
897 hdr = ist2(s->be->orgto_hdr_name, s->be->orgto_hdr_len);
898 else
899 hdr = ist2(sess->fe->orgto_hdr_name, sess->fe->orgto_hdr_len);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200900
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200901 chunk_printf(&trash, "%d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
902 if (unlikely(!http_add_header(htx, hdr, ist2(trash.area, trash.data))))
Christopher Fauletb8a53712019-12-16 11:29:38 +0100903 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200904 }
905 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200906 }
907
Christopher Faulete0768eb2018-10-03 16:38:02 +0200908 /* If we have no server assigned yet and we're balancing on url_param
909 * with a POST request, we may be interested in checking the body for
910 * that parameter. This will be done in another analyser.
911 */
912 if (!(s->flags & (SF_ASSIGNED|SF_DIRECT)) &&
Willy Tarreau089eaa02019-01-14 15:17:46 +0100913 s->txn->meth == HTTP_METH_POST &&
914 (s->be->lbprm.algo & BE_LB_ALGO) == BE_LB_ALGO_PH) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200915 channel_dont_connect(req);
916 req->analysers |= AN_REQ_HTTP_BODY;
917 }
918
919 req->analysers &= ~AN_REQ_FLT_XFER_DATA;
920 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Willy Tarreau1a18b542018-12-11 16:37:42 +0100921
Christopher Faulete0768eb2018-10-03 16:38:02 +0200922 /* We expect some data from the client. Unless we know for sure
923 * we already have a full request, we have to re-enable quick-ack
924 * in case we previously disabled it, otherwise we might cause
925 * the client to delay further data.
926 */
927 if ((sess->listener->options & LI_O_NOQUICKACK) &&
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200928 (htx_get_tail_type(htx) != HTX_BLK_EOM))
Willy Tarreau1a18b542018-12-11 16:37:42 +0100929 conn_set_quickack(cli_conn, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200930
931 /*************************************************************
932 * OK, that's finished for the headers. We have done what we *
933 * could. Let's switch to the DATA state. *
934 ************************************************************/
935 req->analyse_exp = TICK_ETERNITY;
936 req->analysers &= ~an_bit;
937
938 s->logs.tv_request = now;
939 /* OK let's go on with the BODY now */
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100940 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200941 return 1;
942
Christopher Fauletb8a53712019-12-16 11:29:38 +0100943 return_int_err:
944 txn->status = 500;
945 if (!(s->flags & SF_ERR_MASK))
946 s->flags |= SF_ERR_INTERNAL;
947 _HA_ATOMIC_ADD(&sess->fe->fe_counters.internal_errors, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +0100948 if (s->flags & SF_BE_ASSIGNED)
Christopher Fauletbe20cf32020-01-24 11:41:38 +0100949 _HA_ATOMIC_ADD(&s->be->be_counters.internal_errors, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +0100950 if (sess->listener->counters)
951 _HA_ATOMIC_ADD(&sess->listener->counters->internal_errors, 1);
952 goto return_prx_cond;
953
Christopher Faulete0768eb2018-10-03 16:38:02 +0200954 return_bad_req: /* let's centralize all bad requests */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200955 txn->status = 400;
Olivier Houcharda798bf52019-03-08 18:52:00 +0100956 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200957 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100958 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +0100959 /* fall through */
960
961 return_prx_cond:
962 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +0200963
964 if (!(s->flags & SF_ERR_MASK))
965 s->flags |= SF_ERR_PRXCOND;
966 if (!(s->flags & SF_FINST_MASK))
967 s->flags |= SF_FINST_R;
Christopher Fauletb8a53712019-12-16 11:29:38 +0100968
969 req->analysers &= AN_REQ_FLT_END;
970 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100971 DBG_TRACE_DEVEL("leaving on error",
972 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200973 return 0;
974}
975
976/* This function is an analyser which processes the HTTP tarpit. It always
977 * returns zero, at the beginning because it prevents any other processing
978 * from occurring, and at the end because it terminates the request.
979 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200980int http_process_tarpit(struct stream *s, struct channel *req, int an_bit)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200981{
982 struct http_txn *txn = s->txn;
983
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100984 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, &txn->req);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200985 /* This connection is being tarpitted. The CLIENT side has
986 * already set the connect expiration date to the right
987 * timeout. We just have to check that the client is still
988 * there and that the timeout has not expired.
989 */
990 channel_dont_connect(req);
991 if ((req->flags & (CF_SHUTR|CF_READ_ERROR)) == 0 &&
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100992 !tick_is_expired(req->analyse_exp, now_ms)) {
993 DBG_TRACE_DEVEL("waiting for tarpit timeout expiry",
994 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200995 return 0;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100996 }
997
Christopher Faulete0768eb2018-10-03 16:38:02 +0200998
999 /* We will set the queue timer to the time spent, just for
1000 * logging purposes. We fake a 500 server error, so that the
1001 * attacker will not suspect his connection has been tarpitted.
1002 * It will not cause trouble to the logs because we can exclude
1003 * the tarpitted connections by filtering on the 'PT' status flags.
1004 */
1005 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1006
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02001007 http_reply_and_close(s, txn->status, (!(req->flags & CF_READ_ERROR) ? http_error_message(s) : NULL));
Christopher Faulet5cb513a2020-05-13 17:56:56 +02001008
1009 end:
Christopher Faulete0768eb2018-10-03 16:38:02 +02001010 req->analysers &= AN_REQ_FLT_END;
1011 req->analyse_exp = TICK_ETERNITY;
1012
1013 if (!(s->flags & SF_ERR_MASK))
1014 s->flags |= SF_ERR_PRXCOND;
1015 if (!(s->flags & SF_FINST_MASK))
1016 s->flags |= SF_FINST_T;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001017
1018 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001019 return 0;
1020}
1021
1022/* This function is an analyser which waits for the HTTP request body. It waits
1023 * for either the buffer to be full, or the full advertised contents to have
1024 * reached the buffer. It must only be called after the standard HTTP request
1025 * processing has occurred, because it expects the request to be parsed and will
1026 * look for the Expect header. It may send a 100-Continue interim response. It
1027 * takes in input any state starting from HTTP_MSG_BODY and leaves with one of
1028 * HTTP_MSG_CHK_SIZE, HTTP_MSG_DATA or HTTP_MSG_TRAILERS. It returns zero if it
1029 * needs to read more data, or 1 once it has completed its analysis.
1030 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001031int http_wait_for_request_body(struct stream *s, struct channel *req, int an_bit)
Christopher Faulete0768eb2018-10-03 16:38:02 +02001032{
1033 struct session *sess = s->sess;
1034 struct http_txn *txn = s->txn;
1035 struct http_msg *msg = &s->txn->req;
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001036 struct htx *htx;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001037
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001038 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001039
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001040 htx = htxbuf(&req->buf);
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001041
Willy Tarreau4236f032019-03-05 10:43:32 +01001042 if (htx->flags & HTX_FL_PARSING_ERROR)
1043 goto return_bad_req;
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001044 if (htx->flags & HTX_FL_PROCESSING_ERROR)
1045 goto return_int_err;
Willy Tarreau4236f032019-03-05 10:43:32 +01001046
Christopher Faulet63c69a92020-11-16 16:03:35 +01001047 /* CONNECT requests have no body */
1048 if (txn->meth == HTTP_METH_CONNECT)
1049 goto http_end;
1050
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001051 if (msg->msg_state < HTTP_MSG_BODY)
1052 goto missing_data;
Christopher Faulet9768c262018-10-22 09:34:31 +02001053
Christopher Faulete0768eb2018-10-03 16:38:02 +02001054 /* We have to parse the HTTP request body to find any required data.
1055 * "balance url_param check_post" should have been the only way to get
1056 * into this. We were brought here after HTTP header analysis, so all
1057 * related structures are ready.
1058 */
1059
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001060 if (msg->msg_state < HTTP_MSG_DATA) {
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001061 if (http_handle_expect_hdr(s, htx, msg) == -1)
Christopher Fauletb8a53712019-12-16 11:29:38 +01001062 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001063 }
1064
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001065 msg->msg_state = HTTP_MSG_DATA;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001066
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001067 /* Now we're in HTTP_MSG_DATA. We just need to know if all data have
1068 * been received or if the buffer is full.
Christopher Faulete0768eb2018-10-03 16:38:02 +02001069 */
Christopher Faulet54b5e212019-06-04 10:08:28 +02001070 if (htx_get_tail_type(htx) > HTX_BLK_DATA ||
Christopher Fauletdcd8c5e2019-01-21 11:24:38 +01001071 channel_htx_full(req, htx, global.tune.maxrewrite))
Christopher Faulete0768eb2018-10-03 16:38:02 +02001072 goto http_end;
1073
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001074 missing_data:
Christopher Faulete0768eb2018-10-03 16:38:02 +02001075 if ((req->flags & CF_READ_TIMEOUT) || tick_is_expired(req->analyse_exp, now_ms)) {
1076 txn->status = 408;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001077 if (!(s->flags & SF_ERR_MASK))
1078 s->flags |= SF_ERR_CLITO;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001079 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
1080 if (sess->listener->counters)
1081 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
1082 goto return_prx_cond;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001083 }
1084
1085 /* we get here if we need to wait for more data */
1086 if (!(req->flags & (CF_SHUTR | CF_READ_ERROR))) {
1087 /* Not enough data. We'll re-use the http-request
1088 * timeout here. Ideally, we should set the timeout
1089 * relative to the accept() date. We just set the
1090 * request timeout once at the beginning of the
1091 * request.
1092 */
1093 channel_dont_connect(req);
1094 if (!tick_isset(req->analyse_exp))
1095 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001096 DBG_TRACE_DEVEL("waiting for more data",
1097 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001098 return 0;
1099 }
1100
1101 http_end:
1102 /* The situation will not evolve, so let's give up on the analysis. */
1103 s->logs.tv_request = now; /* update the request timer to reflect full request */
1104 req->analysers &= ~an_bit;
1105 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001106 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001107 return 1;
1108
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001109 return_int_err:
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001110 txn->status = 500;
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001111 if (!(s->flags & SF_ERR_MASK))
1112 s->flags |= SF_ERR_INTERNAL;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001113 _HA_ATOMIC_ADD(&sess->fe->fe_counters.internal_errors, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01001114 if (s->flags & SF_BE_ASSIGNED)
Christopher Fauletbe20cf32020-01-24 11:41:38 +01001115 _HA_ATOMIC_ADD(&s->be->be_counters.internal_errors, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +01001116 if (sess->listener->counters)
1117 _HA_ATOMIC_ADD(&sess->listener->counters->internal_errors, 1);
1118 goto return_prx_cond;
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001119
Christopher Faulete0768eb2018-10-03 16:38:02 +02001120 return_bad_req: /* let's centralize all bad requests */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001121 txn->status = 400;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001122 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
1123 if (sess->listener->counters)
1124 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
1125 /* fall through */
1126
1127 return_prx_cond:
1128 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001129
1130 if (!(s->flags & SF_ERR_MASK))
1131 s->flags |= SF_ERR_PRXCOND;
1132 if (!(s->flags & SF_FINST_MASK))
Christopher Fauletb8a53712019-12-16 11:29:38 +01001133 s->flags |= (msg->msg_state < HTTP_MSG_DATA ? SF_FINST_R : SF_FINST_D);
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001134
Christopher Faulete0768eb2018-10-03 16:38:02 +02001135 req->analysers &= AN_REQ_FLT_END;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001136 req->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001137 DBG_TRACE_DEVEL("leaving on error",
1138 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001139 return 0;
1140}
1141
1142/* This function is an analyser which forwards request body (including chunk
1143 * sizes if any). It is called as soon as we must forward, even if we forward
1144 * zero byte. The only situation where it must not be called is when we're in
1145 * tunnel mode and we want to forward till the close. It's used both to forward
1146 * remaining data and to resync after end of body. It expects the msg_state to
1147 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
1148 * read more data, or 1 once we can go on with next request or end the stream.
1149 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len
1150 * bytes of pending data + the headers if not already done.
1151 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001152int http_request_forward_body(struct stream *s, struct channel *req, int an_bit)
Christopher Faulete0768eb2018-10-03 16:38:02 +02001153{
1154 struct session *sess = s->sess;
1155 struct http_txn *txn = s->txn;
Christopher Faulet9768c262018-10-22 09:34:31 +02001156 struct http_msg *msg = &txn->req;
1157 struct htx *htx;
Christopher Faulet93e02d82019-03-08 14:18:50 +01001158 short status = 0;
Christopher Fauletaed82cf2018-11-30 22:22:32 +01001159 int ret;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001160
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001161 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001162
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001163 htx = htxbuf(&req->buf);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001164
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001165 if (htx->flags & HTX_FL_PARSING_ERROR)
1166 goto return_bad_req;
1167 if (htx->flags & HTX_FL_PROCESSING_ERROR)
1168 goto return_int_err;
1169
Christopher Faulete0768eb2018-10-03 16:38:02 +02001170 if ((req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
1171 ((req->flags & CF_SHUTW) && (req->to_forward || co_data(req)))) {
1172 /* Output closed while we were sending data. We must abort and
1173 * wake the other side up.
1174 */
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001175
Olivier Houchard29cac3c2019-07-12 15:48:58 +02001176 /* Don't abort yet if we had L7 retries activated and it
1177 * was a write error, we may recover.
1178 */
1179 if (!(req->flags & (CF_READ_ERROR | CF_READ_TIMEOUT)) &&
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001180 (s->si[1].flags & SI_FL_L7_RETRY)) {
1181 DBG_TRACE_DEVEL("leaving on L7 retry",
1182 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Olivier Houchard29cac3c2019-07-12 15:48:58 +02001183 return 0;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001184 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02001185 msg->msg_state = HTTP_MSG_ERROR;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001186 http_end_request(s);
1187 http_end_response(s);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001188 DBG_TRACE_DEVEL("leaving on error",
1189 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001190 return 1;
1191 }
1192
1193 /* Note that we don't have to send 100-continue back because we don't
1194 * need the data to complete our job, and it's up to the server to
1195 * decide whether to return 100, 417 or anything else in return of
1196 * an "Expect: 100-continue" header.
1197 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001198 if (msg->msg_state == HTTP_MSG_BODY)
1199 msg->msg_state = HTTP_MSG_DATA;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001200
Christopher Faulete0768eb2018-10-03 16:38:02 +02001201 /* in most states, we should abort in case of early close */
1202 channel_auto_close(req);
1203
1204 if (req->to_forward) {
Christopher Faulet66af0b22019-03-22 14:54:52 +01001205 if (req->to_forward == CHN_INFINITE_FORWARD) {
Christopher Faulet1a3e0272019-11-15 16:31:46 +01001206 if (req->flags & CF_EOI)
1207 msg->msg_state = HTTP_MSG_ENDING;
Christopher Faulet66af0b22019-03-22 14:54:52 +01001208 }
1209 else {
1210 /* We can't process the buffer's contents yet */
1211 req->flags |= CF_WAKE_WRITE;
1212 goto missing_data_or_waiting;
1213 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02001214 }
1215
Christopher Faulet1a3e0272019-11-15 16:31:46 +01001216 if (msg->msg_state >= HTTP_MSG_ENDING)
1217 goto ending;
1218
1219 if (txn->meth == HTTP_METH_CONNECT) {
1220 msg->msg_state = HTTP_MSG_ENDING;
1221 goto ending;
1222 }
1223
Christopher Fauletaed82cf2018-11-30 22:22:32 +01001224 /* Forward input data. We get it by removing all outgoing data not
1225 * forwarded yet from HTX data size. If there are some data filters, we
1226 * let them decide the amount of data to forward.
Christopher Faulet9768c262018-10-22 09:34:31 +02001227 */
Christopher Fauletaed82cf2018-11-30 22:22:32 +01001228 if (HAS_REQ_DATA_FILTERS(s)) {
1229 ret = flt_http_payload(s, msg, htx->data);
1230 if (ret < 0)
1231 goto return_bad_req;
Christopher Faulet421e7692019-06-13 11:16:45 +02001232 c_adv(req, ret);
Christopher Fauletaed82cf2018-11-30 22:22:32 +01001233 }
1234 else {
Christopher Faulet421e7692019-06-13 11:16:45 +02001235 c_adv(req, htx->data - co_data(req));
Christopher Faulet66af0b22019-03-22 14:54:52 +01001236 if (msg->flags & HTTP_MSGF_XFER_LEN)
1237 channel_htx_forward_forever(req, htx);
Christopher Fauletaed82cf2018-11-30 22:22:32 +01001238 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02001239
Christopher Faulet1a3e0272019-11-15 16:31:46 +01001240 if (htx->data != co_data(req))
1241 goto missing_data_or_waiting;
Christopher Fauletd20fdb02019-06-13 16:43:22 +02001242
Christopher Faulet9768c262018-10-22 09:34:31 +02001243 /* Check if the end-of-message is reached and if so, switch the message
Christopher Fauletd20fdb02019-06-13 16:43:22 +02001244 * in HTTP_MSG_ENDING state. Then if all data was marked to be
1245 * forwarded, set the state to HTTP_MSG_DONE.
Christopher Faulet9768c262018-10-22 09:34:31 +02001246 */
1247 if (htx_get_tail_type(htx) != HTX_BLK_EOM)
1248 goto missing_data_or_waiting;
1249
Christopher Fauletd20fdb02019-06-13 16:43:22 +02001250 msg->msg_state = HTTP_MSG_ENDING;
Christopher Faulet9768c262018-10-22 09:34:31 +02001251
Christopher Faulet1a3e0272019-11-15 16:31:46 +01001252 ending:
Christopher Faulet2151cdd2020-07-22 16:34:59 +02001253 req->flags &= ~CF_EXPECT_MORE; /* no more data are expected */
1254
Christopher Faulet1a3e0272019-11-15 16:31:46 +01001255 /* other states, ENDING...TUNNEL */
1256 if (msg->msg_state >= HTTP_MSG_DONE)
1257 goto done;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001258
Christopher Fauletaed82cf2018-11-30 22:22:32 +01001259 if (HAS_REQ_DATA_FILTERS(s)) {
1260 ret = flt_http_end(s, msg);
1261 if (ret <= 0) {
1262 if (!ret)
1263 goto missing_data_or_waiting;
1264 goto return_bad_req;
1265 }
1266 }
1267
Christopher Faulet1a3e0272019-11-15 16:31:46 +01001268 if (txn->meth == HTTP_METH_CONNECT)
1269 msg->msg_state = HTTP_MSG_TUNNEL;
1270 else {
1271 msg->msg_state = HTTP_MSG_DONE;
1272 req->to_forward = 0;
1273 }
1274
1275 done:
1276 /* we don't want to forward closes on DONE except in tunnel mode. */
1277 if (!(txn->flags & TX_CON_WANT_TUN))
1278 channel_dont_close(req);
1279
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001280 http_end_request(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001281 if (!(req->analysers & an_bit)) {
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001282 http_end_response(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001283 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
1284 if (req->flags & CF_SHUTW) {
1285 /* request errors are most likely due to the
1286 * server aborting the transfer. */
Christopher Faulet93e02d82019-03-08 14:18:50 +01001287 goto return_srv_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001288 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02001289 goto return_bad_req;
1290 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001291 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001292 return 1;
1293 }
1294
1295 /* If "option abortonclose" is set on the backend, we want to monitor
1296 * the client's connection and forward any shutdown notification to the
1297 * server, which will decide whether to close or to go on processing the
1298 * request. We only do that in tunnel mode, and not in other modes since
1299 * it can be abused to exhaust source ports. */
Christopher Faulet769d0e92019-03-22 14:23:18 +01001300 if (s->be->options & PR_O_ABRT_CLOSE) {
Christopher Faulete0768eb2018-10-03 16:38:02 +02001301 channel_auto_read(req);
Christopher Fauletc41547b2019-07-16 14:32:23 +02001302 if ((req->flags & (CF_SHUTR|CF_READ_NULL)) && !(txn->flags & TX_CON_WANT_TUN))
Christopher Faulete0768eb2018-10-03 16:38:02 +02001303 s->si[1].flags |= SI_FL_NOLINGER;
1304 channel_auto_close(req);
1305 }
1306 else if (s->txn->meth == HTTP_METH_POST) {
1307 /* POST requests may require to read extra CRLF sent by broken
1308 * browsers and which could cause an RST to be sent upon close
1309 * on some systems (eg: Linux). */
1310 channel_auto_read(req);
1311 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001312 DBG_TRACE_DEVEL("waiting for the end of the HTTP txn",
1313 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001314 return 0;
1315
1316 missing_data_or_waiting:
1317 /* stop waiting for data if the input is closed before the end */
Christopher Fauletd20fdb02019-06-13 16:43:22 +02001318 if (msg->msg_state < HTTP_MSG_ENDING && req->flags & CF_SHUTR)
Christopher Faulet93e02d82019-03-08 14:18:50 +01001319 goto return_cli_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001320
1321 waiting:
1322 /* waiting for the last bits to leave the buffer */
1323 if (req->flags & CF_SHUTW)
Christopher Faulet93e02d82019-03-08 14:18:50 +01001324 goto return_srv_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001325
1326 /* When TE: chunked is used, we need to get there again to parse remaining
1327 * chunks even if the client has closed, so we don't want to set CF_DONTCLOSE.
1328 * And when content-length is used, we never want to let the possible
1329 * shutdown be forwarded to the other side, as the state machine will
1330 * take care of it once the client responds. It's also important to
1331 * prevent TIME_WAITs from accumulating on the backend side, and for
1332 * HTTP/2 where the last frame comes with a shutdown.
1333 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001334 if (msg->flags & HTTP_MSGF_XFER_LEN)
Christopher Faulete0768eb2018-10-03 16:38:02 +02001335 channel_dont_close(req);
1336
1337 /* We know that more data are expected, but we couldn't send more that
1338 * what we did. So we always set the CF_EXPECT_MORE flag so that the
1339 * system knows it must not set a PUSH on this first part. Interactive
1340 * modes are already handled by the stream sock layer. We must not do
1341 * this in content-length mode because it could present the MSG_MORE
1342 * flag with the last block of forwarded data, which would cause an
1343 * additional delay to be observed by the receiver.
1344 */
Christopher Faulet2151cdd2020-07-22 16:34:59 +02001345 if (HAS_REQ_DATA_FILTERS(s))
Christopher Faulete0768eb2018-10-03 16:38:02 +02001346 req->flags |= CF_EXPECT_MORE;
1347
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001348 DBG_TRACE_DEVEL("waiting for more data to forward",
1349 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001350 return 0;
1351
Christopher Faulet93e02d82019-03-08 14:18:50 +01001352 return_cli_abort:
1353 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
1354 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01001355 if (sess->listener->counters)
1356 _HA_ATOMIC_ADD(&sess->listener->counters->cli_aborts, 1);
Christopher Faulet93e02d82019-03-08 14:18:50 +01001357 if (objt_server(s->target))
Christopher Fauletcff0f732019-12-16 16:13:44 +01001358 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.cli_aborts, 1);
Christopher Faulet93e02d82019-03-08 14:18:50 +01001359 if (!(s->flags & SF_ERR_MASK))
1360 s->flags |= SF_ERR_CLICL;
1361 status = 400;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001362 goto return_prx_cond;
Christopher Faulet93e02d82019-03-08 14:18:50 +01001363
1364 return_srv_abort:
1365 _HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
1366 _HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01001367 if (sess->listener->counters)
1368 _HA_ATOMIC_ADD(&sess->listener->counters->srv_aborts, 1);
Christopher Faulet93e02d82019-03-08 14:18:50 +01001369 if (objt_server(s->target))
Christopher Fauletcff0f732019-12-16 16:13:44 +01001370 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.srv_aborts, 1);
Christopher Faulet93e02d82019-03-08 14:18:50 +01001371 if (!(s->flags & SF_ERR_MASK))
1372 s->flags |= SF_ERR_SRVCL;
1373 status = 502;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001374 goto return_prx_cond;
Christopher Faulet93e02d82019-03-08 14:18:50 +01001375
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001376 return_int_err:
1377 if (!(s->flags & SF_ERR_MASK))
1378 s->flags |= SF_ERR_INTERNAL;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001379 _HA_ATOMIC_ADD(&sess->fe->fe_counters.internal_errors, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01001380 _HA_ATOMIC_ADD(&s->be->be_counters.internal_errors, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +01001381 if (sess->listener->counters)
1382 _HA_ATOMIC_ADD(&sess->listener->counters->internal_errors, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01001383 if (objt_server(s->target))
1384 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.internal_errors, 1);
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001385 status = 500;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001386 goto return_prx_cond;
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001387
Christopher Faulet93e02d82019-03-08 14:18:50 +01001388 return_bad_req:
Olivier Houcharda798bf52019-03-08 18:52:00 +01001389 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001390 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +01001391 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Christopher Faulet93e02d82019-03-08 14:18:50 +01001392 status = 400;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001393 /* fall through */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001394
Christopher Fauletb8a53712019-12-16 11:29:38 +01001395 return_prx_cond:
Christopher Faulet9768c262018-10-22 09:34:31 +02001396 if (txn->status > 0) {
Christopher Faulete0768eb2018-10-03 16:38:02 +02001397 /* Note: we don't send any error if some data were already sent */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001398 http_reply_and_close(s, txn->status, NULL);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001399 } else {
Christopher Faulet93e02d82019-03-08 14:18:50 +01001400 txn->status = status;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001401 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001402 }
1403 req->analysers &= AN_REQ_FLT_END;
1404 s->res.analysers &= AN_RES_FLT_END; /* we're in data phase, we want to abort both directions */
Christopher Fauletb8a53712019-12-16 11:29:38 +01001405 if (!(s->flags & SF_ERR_MASK))
1406 s->flags |= SF_ERR_PRXCOND;
Christopher Faulet93e02d82019-03-08 14:18:50 +01001407 if (!(s->flags & SF_FINST_MASK))
1408 s->flags |= ((txn->rsp.msg_state < HTTP_MSG_ERROR) ? SF_FINST_H : SF_FINST_D);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001409 DBG_TRACE_DEVEL("leaving on error ",
1410 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001411 return 0;
1412}
1413
Olivier Houcharda254a372019-04-05 15:30:12 +02001414/* Reset the stream and the backend stream_interface to a situation suitable for attemption connection */
1415/* Returns 0 if we can attempt to retry, -1 otherwise */
1416static __inline int do_l7_retry(struct stream *s, struct stream_interface *si)
1417{
1418 struct channel *req, *res;
1419 int co_data;
1420
1421 si->conn_retries--;
1422 if (si->conn_retries < 0)
1423 return -1;
1424
Willy Tarreau223995e2019-05-04 10:38:31 +02001425 if (objt_server(s->target))
1426 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.retries, 1);
1427 _HA_ATOMIC_ADD(&s->be->be_counters.retries, 1);
1428
Olivier Houcharda254a372019-04-05 15:30:12 +02001429 req = &s->req;
1430 res = &s->res;
1431 /* Remove any write error from the request, and read error from the response */
1432 req->flags &= ~(CF_WRITE_ERROR | CF_WRITE_TIMEOUT | CF_SHUTW | CF_SHUTW_NOW);
1433 res->flags &= ~(CF_READ_ERROR | CF_READ_TIMEOUT | CF_SHUTR | CF_EOI | CF_READ_NULL | CF_SHUTR_NOW);
1434 res->analysers = 0;
1435 si->flags &= ~(SI_FL_ERR | SI_FL_EXP | SI_FL_RXBLK_SHUT);
Olivier Houchard8cabc972020-05-12 22:18:14 +02001436 s->flags &= ~SF_ADDR_SET;
Olivier Houchard4bd58672019-07-12 16:16:59 +02001437 stream_choose_redispatch(s);
Olivier Houcharda254a372019-04-05 15:30:12 +02001438 si->exp = TICK_ETERNITY;
1439 res->rex = TICK_ETERNITY;
1440 res->to_forward = 0;
1441 res->analyse_exp = TICK_ETERNITY;
1442 res->total = 0;
Olivier Houchard4bd58672019-07-12 16:16:59 +02001443 s->flags &= ~(SF_ERR_SRVTO | SF_ERR_SRVCL);
Olivier Houcharda254a372019-04-05 15:30:12 +02001444 si_release_endpoint(&s->si[1]);
1445 b_free(&req->buf);
1446 /* Swap the L7 buffer with the channel buffer */
1447 /* We know we stored the co_data as b_data, so get it there */
1448 co_data = b_data(&si->l7_buffer);
1449 b_set_data(&si->l7_buffer, b_size(&si->l7_buffer));
1450 b_xfer(&req->buf, &si->l7_buffer, b_data(&si->l7_buffer));
1451
1452 co_set_data(req, co_data);
1453 b_reset(&res->buf);
1454 co_set_data(res, 0);
1455 return 0;
1456}
1457
Christopher Faulete0768eb2018-10-03 16:38:02 +02001458/* This stream analyser waits for a complete HTTP response. It returns 1 if the
1459 * processing can continue on next analysers, or zero if it either needs more
1460 * data or wants to immediately abort the response (eg: timeout, error, ...). It
1461 * is tied to AN_RES_WAIT_HTTP and may may remove itself from s->res.analysers
1462 * when it has nothing left to do, and may remove any analyser when it wants to
1463 * abort.
1464 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001465int http_wait_for_response(struct stream *s, struct channel *rep, int an_bit)
Christopher Faulete0768eb2018-10-03 16:38:02 +02001466{
Christopher Faulet9768c262018-10-22 09:34:31 +02001467 /*
1468 * We will analyze a complete HTTP response to check the its syntax.
1469 *
1470 * Once the start line and all headers are received, we may perform a
1471 * capture of the error (if any), and we will set a few fields. We also
1472 * logging and finally headers capture.
1473 */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001474 struct session *sess = s->sess;
1475 struct http_txn *txn = s->txn;
1476 struct http_msg *msg = &txn->rsp;
Christopher Faulet9768c262018-10-22 09:34:31 +02001477 struct htx *htx;
Olivier Houcharda254a372019-04-05 15:30:12 +02001478 struct stream_interface *si_b = &s->si[1];
Christopher Faulet61608322018-11-23 16:23:45 +01001479 struct connection *srv_conn;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001480 struct htx_sl *sl;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001481 int n;
1482
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001483 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001484
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001485 htx = htxbuf(&rep->buf);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001486
Willy Tarreau4236f032019-03-05 10:43:32 +01001487 /* Parsing errors are caught here */
1488 if (htx->flags & HTX_FL_PARSING_ERROR)
1489 goto return_bad_res;
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001490 if (htx->flags & HTX_FL_PROCESSING_ERROR)
1491 goto return_int_err;
Willy Tarreau4236f032019-03-05 10:43:32 +01001492
Christopher Faulete0768eb2018-10-03 16:38:02 +02001493 /*
1494 * Now we quickly check if we have found a full valid response.
1495 * If not so, we check the FD and buffer states before leaving.
1496 * A full response is indicated by the fact that we have seen
1497 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
1498 * responses are checked first.
1499 *
1500 * Depending on whether the client is still there or not, we
1501 * may send an error response back or not. Note that normally
1502 * we should only check for HTTP status there, and check I/O
1503 * errors somewhere else.
1504 */
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001505 next_one:
Christopher Faulet29f17582019-05-23 11:03:26 +02001506 if (unlikely(htx_is_empty(htx) || htx->first == -1)) {
Christopher Faulet9768c262018-10-22 09:34:31 +02001507 /* 1: have we encountered a read error ? */
1508 if (rep->flags & CF_READ_ERROR) {
Olivier Houchard865d8392019-05-03 22:46:27 +02001509 struct connection *conn = NULL;
1510
Olivier Houchard865d8392019-05-03 22:46:27 +02001511 if (objt_cs(s->si[1].end))
1512 conn = objt_cs(s->si[1].end)->conn;
1513
1514 if (si_b->flags & SI_FL_L7_RETRY &&
1515 (!conn || conn->err_code != CO_ER_SSL_EARLY_FAILED)) {
Olivier Houcharda254a372019-04-05 15:30:12 +02001516 /* If we arrive here, then CF_READ_ERROR was
1517 * set by si_cs_recv() because we matched a
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05001518 * status, otherwise it would have removed
Olivier Houcharda254a372019-04-05 15:30:12 +02001519 * the SI_FL_L7_RETRY flag, so it's ok not
1520 * to check s->be->retry_type.
1521 */
1522 if (co_data(rep) || do_l7_retry(s, si_b) == 0)
1523 return 0;
1524 }
1525
Olivier Houchard6db16992019-05-17 15:40:49 +02001526 if (txn->flags & TX_NOT_FIRST)
1527 goto abort_keep_alive;
1528
Olivier Houcharda798bf52019-03-08 18:52:00 +01001529 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001530 if (objt_server(s->target)) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01001531 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001532 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_READ_ERROR);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001533 }
1534
Christopher Faulete0768eb2018-10-03 16:38:02 +02001535 rep->analysers &= AN_RES_FLT_END;
1536 txn->status = 502;
1537
1538 /* Check to see if the server refused the early data.
1539 * If so, just send a 425
1540 */
Willy Tarreauee99aaf2020-06-23 05:58:20 +02001541 if (conn && conn->err_code == CO_ER_SSL_EARLY_FAILED) {
Olivier Houchard865d8392019-05-03 22:46:27 +02001542 if ((s->be->retry_type & PR_RE_EARLY_ERROR) &&
Olivier Houchardad26d8d2019-05-10 17:48:28 +02001543 (si_b->flags & SI_FL_L7_RETRY) &&
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001544 do_l7_retry(s, si_b) == 0) {
1545 DBG_TRACE_DEVEL("leaving on L7 retry",
1546 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Olivier Houchard865d8392019-05-03 22:46:27 +02001547 return 0;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001548 }
Olivier Houchard865d8392019-05-03 22:46:27 +02001549 txn->status = 425;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001550 }
1551
1552 s->si[1].flags |= SI_FL_NOLINGER;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001553 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001554
1555 if (!(s->flags & SF_ERR_MASK))
1556 s->flags |= SF_ERR_SRVCL;
1557 if (!(s->flags & SF_FINST_MASK))
1558 s->flags |= SF_FINST_H;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001559 DBG_TRACE_DEVEL("leaving on error",
1560 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001561 return 0;
1562 }
1563
Christopher Faulet9768c262018-10-22 09:34:31 +02001564 /* 2: read timeout : return a 504 to the client. */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001565 else if (rep->flags & CF_READ_TIMEOUT) {
Olivier Houcharda254a372019-04-05 15:30:12 +02001566 if ((si_b->flags & SI_FL_L7_RETRY) &&
1567 (s->be->retry_type & PR_RE_TIMEOUT)) {
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001568 if (co_data(rep) || do_l7_retry(s, si_b) == 0) {
1569 DBG_TRACE_DEVEL("leaving on L7 retry",
1570 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Olivier Houcharda254a372019-04-05 15:30:12 +02001571 return 0;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001572 }
Olivier Houcharda254a372019-04-05 15:30:12 +02001573 }
Olivier Houcharda798bf52019-03-08 18:52:00 +01001574 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001575 if (objt_server(s->target)) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01001576 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001577 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_READ_TIMEOUT);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001578 }
1579
Christopher Faulete0768eb2018-10-03 16:38:02 +02001580 rep->analysers &= AN_RES_FLT_END;
1581 txn->status = 504;
1582 s->si[1].flags |= SI_FL_NOLINGER;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001583 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001584
1585 if (!(s->flags & SF_ERR_MASK))
1586 s->flags |= SF_ERR_SRVTO;
1587 if (!(s->flags & SF_FINST_MASK))
1588 s->flags |= SF_FINST_H;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001589 DBG_TRACE_DEVEL("leaving on error",
1590 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001591 return 0;
1592 }
1593
Christopher Faulet9768c262018-10-22 09:34:31 +02001594 /* 3: client abort with an abortonclose */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001595 else if ((rep->flags & CF_SHUTR) && ((s->req.flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01001596 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
1597 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01001598 if (sess->listener->counters)
1599 _HA_ATOMIC_ADD(&sess->listener->counters->cli_aborts, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001600 if (objt_server(s->target))
Olivier Houcharda798bf52019-03-08 18:52:00 +01001601 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.cli_aborts, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001602
1603 rep->analysers &= AN_RES_FLT_END;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001604 txn->status = 400;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001605 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001606
1607 if (!(s->flags & SF_ERR_MASK))
1608 s->flags |= SF_ERR_CLICL;
1609 if (!(s->flags & SF_FINST_MASK))
1610 s->flags |= SF_FINST_H;
1611
1612 /* process_stream() will take care of the error */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001613 DBG_TRACE_DEVEL("leaving on error",
1614 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001615 return 0;
1616 }
1617
Christopher Faulet9768c262018-10-22 09:34:31 +02001618 /* 4: close from server, capture the response if the server has started to respond */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001619 else if (rep->flags & CF_SHUTR) {
Olivier Houcharda254a372019-04-05 15:30:12 +02001620 if ((si_b->flags & SI_FL_L7_RETRY) &&
1621 (s->be->retry_type & PR_RE_DISCONNECTED)) {
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001622 if (co_data(rep) || do_l7_retry(s, si_b) == 0) {
1623 DBG_TRACE_DEVEL("leaving on L7 retry",
1624 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Olivier Houcharda254a372019-04-05 15:30:12 +02001625 return 0;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001626 }
Olivier Houcharda254a372019-04-05 15:30:12 +02001627 }
1628
Olivier Houchard6db16992019-05-17 15:40:49 +02001629 if (txn->flags & TX_NOT_FIRST)
1630 goto abort_keep_alive;
1631
Olivier Houcharda798bf52019-03-08 18:52:00 +01001632 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001633 if (objt_server(s->target)) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01001634 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001635 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_BROKEN_PIPE);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001636 }
1637
Christopher Faulete0768eb2018-10-03 16:38:02 +02001638 rep->analysers &= AN_RES_FLT_END;
1639 txn->status = 502;
1640 s->si[1].flags |= SI_FL_NOLINGER;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001641 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001642
1643 if (!(s->flags & SF_ERR_MASK))
1644 s->flags |= SF_ERR_SRVCL;
1645 if (!(s->flags & SF_FINST_MASK))
1646 s->flags |= SF_FINST_H;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001647 DBG_TRACE_DEVEL("leaving on error",
1648 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001649 return 0;
1650 }
1651
Christopher Faulet9768c262018-10-22 09:34:31 +02001652 /* 5: write error to client (we don't send any message then) */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001653 else if (rep->flags & CF_WRITE_ERROR) {
Christopher Faulet9768c262018-10-22 09:34:31 +02001654 if (txn->flags & TX_NOT_FIRST)
Christopher Faulete0768eb2018-10-03 16:38:02 +02001655 goto abort_keep_alive;
1656
Olivier Houcharda798bf52019-03-08 18:52:00 +01001657 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01001658 if (objt_server(s->target))
1659 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001660 rep->analysers &= AN_RES_FLT_END;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001661
1662 if (!(s->flags & SF_ERR_MASK))
1663 s->flags |= SF_ERR_CLICL;
1664 if (!(s->flags & SF_FINST_MASK))
1665 s->flags |= SF_FINST_H;
1666
1667 /* process_stream() will take care of the error */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001668 DBG_TRACE_DEVEL("leaving on error",
1669 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001670 return 0;
1671 }
1672
1673 channel_dont_close(rep);
1674 rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001675 DBG_TRACE_DEVEL("waiting for more data",
1676 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001677 return 0;
1678 }
1679
1680 /* More interesting part now : we know that we have a complete
1681 * response which at least looks like HTTP. We have an indicator
1682 * of each header's length, so we can parse them quickly.
1683 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001684 msg->msg_state = HTTP_MSG_BODY;
Christopher Faulet29f17582019-05-23 11:03:26 +02001685 BUG_ON(htx_get_first_type(htx) != HTX_BLK_RES_SL);
Christopher Faulet297fbb42019-05-13 14:41:27 +02001686 sl = http_get_stline(htx);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001687
Christopher Faulet9768c262018-10-22 09:34:31 +02001688 /* 0: we might have to print this header in debug mode */
1689 if (unlikely((global.mode & MODE_DEBUG) &&
1690 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
1691 int32_t pos;
1692
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001693 http_debug_stline("srvrep", s, sl);
Christopher Faulet9768c262018-10-22 09:34:31 +02001694
Christopher Fauleta3f15502019-05-13 15:27:23 +02001695 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
Christopher Faulet9768c262018-10-22 09:34:31 +02001696 struct htx_blk *blk = htx_get_blk(htx, pos);
1697 enum htx_blk_type type = htx_get_blk_type(blk);
1698
1699 if (type == HTX_BLK_EOH)
1700 break;
1701 if (type != HTX_BLK_HDR)
1702 continue;
1703
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001704 http_debug_hdr("srvhdr", s,
1705 htx_get_blk_name(htx, blk),
1706 htx_get_blk_value(htx, blk));
Christopher Faulet9768c262018-10-22 09:34:31 +02001707 }
1708 }
1709
Christopher Faulet03599112018-11-27 11:21:21 +01001710 /* 1: get the status code and the version. Also set HTTP flags */
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001711 txn->status = sl->info.res.status;
Christopher Faulet03599112018-11-27 11:21:21 +01001712 if (sl->flags & HTX_SL_F_VER_11)
Christopher Faulet9768c262018-10-22 09:34:31 +02001713 msg->flags |= HTTP_MSGF_VER_11;
Christopher Faulet03599112018-11-27 11:21:21 +01001714 if (sl->flags & HTX_SL_F_XFER_LEN) {
1715 msg->flags |= HTTP_MSGF_XFER_LEN;
Christopher Faulet834eee72019-02-18 11:35:02 +01001716 msg->flags |= ((sl->flags & HTX_SL_F_CLEN) ? HTTP_MSGF_CNT_LEN : HTTP_MSGF_TE_CHNK);
Christopher Fauletb2db4fa2018-11-27 16:51:09 +01001717 if (sl->flags & HTX_SL_F_BODYLESS)
1718 msg->flags |= HTTP_MSGF_BODYLESS;
Christopher Faulet03599112018-11-27 11:21:21 +01001719 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001720
1721 n = txn->status / 100;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001722 if (n < 1 || n > 5)
1723 n = 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02001724
Christopher Faulete0768eb2018-10-03 16:38:02 +02001725 /* when the client triggers a 4xx from the server, it's most often due
1726 * to a missing object or permission. These events should be tracked
1727 * because if they happen often, it may indicate a brute force or a
1728 * vulnerability scan.
1729 */
1730 if (n == 4)
1731 stream_inc_http_err_ctr(s);
1732
Marcin Deranek3c27dda2020-05-15 18:32:51 +02001733 if (objt_server(s->target)) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01001734 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.p.http.rsp[n], 1);
Marcin Deranek3c27dda2020-05-15 18:32:51 +02001735 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.p.http.cum_req, 1);
1736 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02001737
Christopher Faulete0768eb2018-10-03 16:38:02 +02001738 /* Adjust server's health based on status code. Note: status codes 501
1739 * and 505 are triggered on demand by client request, so we must not
1740 * count them as server failures.
1741 */
1742 if (objt_server(s->target)) {
1743 if (txn->status >= 100 && (txn->status < 500 || txn->status == 501 || txn->status == 505))
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001744 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_OK);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001745 else
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001746 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_STS);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001747 }
1748
1749 /*
1750 * We may be facing a 100-continue response, or any other informational
1751 * 1xx response which is non-final, in which case this is not the right
1752 * response, and we're waiting for the next one. Let's allow this response
1753 * to go to the client and wait for the next one. There's an exception for
1754 * 101 which is used later in the code to switch protocols.
1755 */
1756 if (txn->status < 200 &&
1757 (txn->status == 100 || txn->status >= 102)) {
Christopher Fauletaed82cf2018-11-30 22:22:32 +01001758 FLT_STRM_CB(s, flt_http_reset(s, msg));
Christopher Faulet421e7692019-06-13 11:16:45 +02001759 htx->first = channel_htx_fwd_headers(rep, htx);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001760 msg->msg_state = HTTP_MSG_RPBEFORE;
Christopher Faulet3499f622019-09-03 15:23:54 +02001761 msg->flags = 0;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001762 txn->status = 0;
1763 s->logs.t_data = -1; /* was not a response yet */
Christopher Faulet7d518452020-08-31 11:07:07 +02001764 rep->flags |= CF_SEND_DONTWAIT; /* Send ASAP informational messages */
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001765 goto next_one;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001766 }
1767
1768 /*
1769 * 2: check for cacheability.
1770 */
1771
1772 switch (txn->status) {
1773 case 200:
1774 case 203:
1775 case 204:
1776 case 206:
1777 case 300:
1778 case 301:
1779 case 404:
1780 case 405:
1781 case 410:
1782 case 414:
1783 case 501:
1784 break;
1785 default:
1786 /* RFC7231#6.1:
1787 * Responses with status codes that are defined as
1788 * cacheable by default (e.g., 200, 203, 204, 206,
1789 * 300, 301, 404, 405, 410, 414, and 501 in this
1790 * specification) can be reused by a cache with
1791 * heuristic expiration unless otherwise indicated
1792 * by the method definition or explicit cache
1793 * controls [RFC7234]; all other status codes are
1794 * not cacheable by default.
1795 */
1796 txn->flags &= ~(TX_CACHEABLE | TX_CACHE_COOK);
1797 break;
1798 }
1799
1800 /*
1801 * 3: we may need to capture headers
1802 */
1803 s->logs.logwait &= ~LW_RESP;
1804 if (unlikely((s->logs.logwait & LW_RSPHDR) && s->res_cap))
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001805 http_capture_headers(htx, s->res_cap, sess->fe->rsp_cap);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001806
Christopher Faulet9768c262018-10-22 09:34:31 +02001807 /* Skip parsing if no content length is possible. */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001808 if (unlikely((txn->meth == HTTP_METH_CONNECT && txn->status == 200) ||
1809 txn->status == 101)) {
1810 /* Either we've established an explicit tunnel, or we're
1811 * switching the protocol. In both cases, we're very unlikely
1812 * to understand the next protocols. We have to switch to tunnel
1813 * mode, so that we transfer the request and responses then let
1814 * this protocol pass unmodified. When we later implement specific
1815 * parsers for such protocols, we'll want to check the Upgrade
1816 * header which contains information about that protocol for
1817 * responses with status 101 (eg: see RFC2817 about TLS).
1818 */
Christopher Fauletc41547b2019-07-16 14:32:23 +02001819 txn->flags |= TX_CON_WANT_TUN;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001820 }
1821
Christopher Faulet61608322018-11-23 16:23:45 +01001822 /* check for NTML authentication headers in 401 (WWW-Authenticate) and
1823 * 407 (Proxy-Authenticate) responses and set the connection to private
1824 */
1825 srv_conn = cs_conn(objt_cs(s->si[1].end));
1826 if (srv_conn) {
1827 struct ist hdr;
1828 struct http_hdr_ctx ctx;
1829
1830 if (txn->status == 401)
1831 hdr = ist("WWW-Authenticate");
1832 else if (txn->status == 407)
1833 hdr = ist("Proxy-Authenticate");
1834 else
1835 goto end;
1836
1837 ctx.blk = NULL;
1838 while (http_find_header(htx, hdr, &ctx, 0)) {
Willy Tarreauf1dcced2020-05-07 19:27:02 +02001839 /* If www-authenticate contains "Negotiate", "Nego2", or "NTLM",
1840 * possibly followed by blanks and a base64 string, the connection
1841 * is private. Since it's a mess to deal with, we only check for
1842 * values starting with "NTLM" or "Nego". Note that often multiple
1843 * headers are sent by the server there.
1844 */
1845 if ((ctx.value.len >= 4 && strncasecmp(ctx.value.ptr, "Nego", 4) == 0) ||
Willy Tarreau49a1d282020-05-07 19:10:15 +02001846 (ctx.value.len >= 4 && strncasecmp(ctx.value.ptr, "NTLM", 4) == 0)) {
Olivier Houchard250031e2019-05-29 15:01:50 +02001847 sess->flags |= SESS_FL_PREFER_LAST;
Christopher Faulet08016ab2020-07-01 16:10:06 +02001848 conn_set_owner(srv_conn, sess, NULL);
Christopher Faulet21ddc742020-07-01 15:26:14 +02001849 conn_set_private(srv_conn);
Ilya Shipitsin6b79f382020-07-23 00:32:55 +05001850 /* If it fail now, the same will be done in mux->detach() callback */
Christopher Faulet08016ab2020-07-01 16:10:06 +02001851 session_add_conn(srv_conn->owner, srv_conn, srv_conn->target);
Willy Tarreauf1dcced2020-05-07 19:27:02 +02001852 break;
Olivier Houchard250031e2019-05-29 15:01:50 +02001853 }
Christopher Faulet61608322018-11-23 16:23:45 +01001854 }
1855 }
1856
1857 end:
Christopher Faulete0768eb2018-10-03 16:38:02 +02001858 /* we want to have the response time before we start processing it */
1859 s->logs.t_data = tv_ms_elapsed(&s->logs.tv_accept, &now);
1860
1861 /* end of job, return OK */
1862 rep->analysers &= ~an_bit;
1863 rep->analyse_exp = TICK_ETERNITY;
1864 channel_auto_close(rep);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001865 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001866 return 1;
1867
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001868 return_int_err:
Christopher Fauletcff0f732019-12-16 16:13:44 +01001869 _HA_ATOMIC_ADD(&sess->fe->fe_counters.internal_errors, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +01001870 _HA_ATOMIC_ADD(&s->be->be_counters.internal_errors, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01001871 if (sess->listener->counters)
1872 _HA_ATOMIC_ADD(&sess->listener->counters->internal_errors, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +01001873 if (objt_server(s->target))
1874 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.internal_errors, 1);
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001875 txn->status = 500;
1876 if (!(s->flags & SF_ERR_MASK))
1877 s->flags |= SF_ERR_INTERNAL;
Christopher Fauletb8a53712019-12-16 11:29:38 +01001878 goto return_prx_cond;
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001879
1880 return_bad_res:
Olivier Houcharda798bf52019-03-08 18:52:00 +01001881 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Christopher Faulet47365272018-10-31 17:40:50 +01001882 if (objt_server(s->target)) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01001883 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001884 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_HDRRSP);
Christopher Faulet47365272018-10-31 17:40:50 +01001885 }
Olivier Houcharde3249a92019-05-03 23:01:47 +02001886 if ((s->be->retry_type & PR_RE_JUNK_REQUEST) &&
Olivier Houchardad26d8d2019-05-10 17:48:28 +02001887 (si_b->flags & SI_FL_L7_RETRY) &&
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001888 do_l7_retry(s, si_b) == 0) {
1889 DBG_TRACE_DEVEL("leaving on L7 retry",
1890 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Olivier Houcharde3249a92019-05-03 23:01:47 +02001891 return 0;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001892 }
Christopher Faulet47365272018-10-31 17:40:50 +01001893 txn->status = 502;
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001894 /* fall through */
1895
Christopher Fauletb8a53712019-12-16 11:29:38 +01001896 return_prx_cond:
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001897 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulet47365272018-10-31 17:40:50 +01001898
1899 if (!(s->flags & SF_ERR_MASK))
1900 s->flags |= SF_ERR_PRXCOND;
1901 if (!(s->flags & SF_FINST_MASK))
1902 s->flags |= SF_FINST_H;
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001903
1904 s->si[1].flags |= SI_FL_NOLINGER;
1905 rep->analysers &= AN_RES_FLT_END;
Christopher Faulete58c0002020-03-02 16:21:01 +01001906 s->req.analysers &= AN_REQ_FLT_END;
Christopher Fauletb9a92f32019-09-09 10:15:21 +02001907 rep->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001908 DBG_TRACE_DEVEL("leaving on error",
1909 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulet47365272018-10-31 17:40:50 +01001910 return 0;
1911
Christopher Faulete0768eb2018-10-03 16:38:02 +02001912 abort_keep_alive:
1913 /* A keep-alive request to the server failed on a network error.
1914 * The client is required to retry. We need to close without returning
1915 * any other information so that the client retries.
1916 */
1917 txn->status = 0;
1918 rep->analysers &= AN_RES_FLT_END;
1919 s->req.analysers &= AN_REQ_FLT_END;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001920 s->logs.logwait = 0;
1921 s->logs.level = 0;
1922 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001923 http_reply_and_close(s, txn->status, NULL);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001924 DBG_TRACE_DEVEL("leaving by closing K/A connection",
1925 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001926 return 0;
1927}
1928
1929/* This function performs all the processing enabled for the current response.
1930 * It normally returns 1 unless it wants to break. It relies on buffers flags,
1931 * and updates s->res.analysers. It might make sense to explode it into several
1932 * other functions. It works like process_request (see indications above).
1933 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001934int http_process_res_common(struct stream *s, struct channel *rep, int an_bit, struct proxy *px)
Christopher Faulete0768eb2018-10-03 16:38:02 +02001935{
1936 struct session *sess = s->sess;
1937 struct http_txn *txn = s->txn;
1938 struct http_msg *msg = &txn->rsp;
Christopher Fauletfec7bd12018-10-24 11:17:50 +02001939 struct htx *htx;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001940 struct proxy *cur_proxy;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001941 enum rule_result ret = HTTP_RULE_RES_CONT;
1942
Christopher Fauletfec7bd12018-10-24 11:17:50 +02001943 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) /* we need more data */
1944 return 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02001945
Christopher Fauleteea8fc72019-11-05 16:18:10 +01001946 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001947
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001948 htx = htxbuf(&rep->buf);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001949
1950 /* The stats applet needs to adjust the Connection header but we don't
1951 * apply any filter there.
1952 */
1953 if (unlikely(objt_applet(s->target) == &http_stats_applet)) {
1954 rep->analysers &= ~an_bit;
1955 rep->analyse_exp = TICK_ETERNITY;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001956 goto end;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001957 }
1958
1959 /*
1960 * We will have to evaluate the filters.
1961 * As opposed to version 1.2, now they will be evaluated in the
1962 * filters order and not in the header order. This means that
1963 * each filter has to be validated among all headers.
1964 *
1965 * Filters are tried with ->be first, then with ->fe if it is
1966 * different from ->be.
1967 *
1968 * Maybe we are in resume condiion. In this case I choose the
1969 * "struct proxy" which contains the rule list matching the resume
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05001970 * pointer. If none of these "struct proxy" match, I initialise
Christopher Faulete0768eb2018-10-03 16:38:02 +02001971 * the process with the first one.
1972 *
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05001973 * In fact, I check only correspondence between the current list
Christopher Faulete0768eb2018-10-03 16:38:02 +02001974 * pointer and the ->fe rule list. If it doesn't match, I initialize
1975 * the loop with the ->be.
1976 */
1977 if (s->current_rule_list == &sess->fe->http_res_rules)
1978 cur_proxy = sess->fe;
1979 else
1980 cur_proxy = s->be;
1981 while (1) {
Christopher Faulete0768eb2018-10-03 16:38:02 +02001982 /* evaluate http-response rules */
1983 if (ret == HTTP_RULE_RES_CONT) {
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02001984 ret = http_res_get_intercept_rule(cur_proxy, &cur_proxy->http_res_rules, s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001985
Christopher Faulet3a26bee2019-12-16 12:47:40 +01001986 switch (ret) {
1987 case HTTP_RULE_RES_YIELD: /* some data miss, call the function later. */
1988 goto return_prx_yield;
1989
1990 case HTTP_RULE_RES_CONT:
1991 case HTTP_RULE_RES_STOP: /* nothing to do */
1992 break;
1993
1994 case HTTP_RULE_RES_DENY: /* deny or tarpit */
1995 goto deny;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001996
Christopher Faulet3a26bee2019-12-16 12:47:40 +01001997 case HTTP_RULE_RES_ABRT: /* abort request, response already sent */
1998 goto return_prx_cond;
1999
2000 case HTTP_RULE_RES_DONE: /* OK, but terminate request processing (eg: redirect) */
Christopher Fauletb8a53712019-12-16 11:29:38 +01002001 goto done;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002002
Christopher Faulet3a26bee2019-12-16 12:47:40 +01002003 case HTTP_RULE_RES_BADREQ: /* failed with a bad request */
2004 goto return_bad_res;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002005
Christopher Faulet3a26bee2019-12-16 12:47:40 +01002006 case HTTP_RULE_RES_ERROR: /* failed with a bad request */
2007 goto return_int_err;
2008 }
2009
2010 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02002011
Christopher Faulete0768eb2018-10-03 16:38:02 +02002012 /* check whether we're already working on the frontend */
2013 if (cur_proxy == sess->fe)
2014 break;
2015 cur_proxy = sess->fe;
2016 }
2017
Christopher Faulete0768eb2018-10-03 16:38:02 +02002018 /* OK that's all we can do for 1xx responses */
2019 if (unlikely(txn->status < 200 && txn->status != 101))
Christopher Fauletf2824e62018-10-01 12:12:37 +02002020 goto end;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002021
2022 /*
2023 * Now check for a server cookie.
2024 */
2025 if (s->be->cookie_name || sess->fe->capture_name || (s->be->options & PR_O_CHK_CACHE))
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002026 http_manage_server_side_cookies(s, rep);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002027
2028 /*
2029 * Check for cache-control or pragma headers if required.
2030 */
2031 if ((s->be->options & PR_O_CHK_CACHE) || (s->be->ck_opts & PR_CK_NOC))
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002032 http_check_response_for_cacheability(s, rep);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002033
2034 /*
2035 * Add server cookie in the response if needed
2036 */
2037 if (objt_server(s->target) && (s->be->ck_opts & PR_CK_INS) &&
2038 !((txn->flags & TX_SCK_FOUND) && (s->be->ck_opts & PR_CK_PSV)) &&
2039 (!(s->flags & SF_DIRECT) ||
2040 ((s->be->cookie_maxidle || txn->cookie_last_date) &&
2041 (!txn->cookie_last_date || (txn->cookie_last_date - date.tv_sec) < 0)) ||
2042 (s->be->cookie_maxlife && !txn->cookie_first_date) || // set the first_date
2043 (!s->be->cookie_maxlife && txn->cookie_first_date)) && // remove the first_date
2044 (!(s->be->ck_opts & PR_CK_POST) || (txn->meth == HTTP_METH_POST)) &&
2045 !(s->flags & SF_IGNORE_PRST)) {
2046 /* the server is known, it's not the one the client requested, or the
2047 * cookie's last seen date needs to be refreshed. We have to
2048 * insert a set-cookie here, except if we want to insert only on POST
2049 * requests and this one isn't. Note that servers which don't have cookies
2050 * (eg: some backup servers) will return a full cookie removal request.
2051 */
2052 if (!objt_server(s->target)->cookie) {
2053 chunk_printf(&trash,
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002054 "%s=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/",
Christopher Faulete0768eb2018-10-03 16:38:02 +02002055 s->be->cookie_name);
2056 }
2057 else {
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002058 chunk_printf(&trash, "%s=%s", s->be->cookie_name, objt_server(s->target)->cookie);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002059
2060 if (s->be->cookie_maxidle || s->be->cookie_maxlife) {
2061 /* emit last_date, which is mandatory */
2062 trash.area[trash.data++] = COOKIE_DELIM_DATE;
2063 s30tob64((date.tv_sec+3) >> 2,
2064 trash.area + trash.data);
2065 trash.data += 5;
2066
2067 if (s->be->cookie_maxlife) {
2068 /* emit first_date, which is either the original one or
2069 * the current date.
2070 */
2071 trash.area[trash.data++] = COOKIE_DELIM_DATE;
2072 s30tob64(txn->cookie_first_date ?
2073 txn->cookie_first_date >> 2 :
2074 (date.tv_sec+3) >> 2,
2075 trash.area + trash.data);
2076 trash.data += 5;
2077 }
2078 }
2079 chunk_appendf(&trash, "; path=/");
2080 }
2081
2082 if (s->be->cookie_domain)
2083 chunk_appendf(&trash, "; domain=%s", s->be->cookie_domain);
2084
2085 if (s->be->ck_opts & PR_CK_HTTPONLY)
2086 chunk_appendf(&trash, "; HttpOnly");
2087
2088 if (s->be->ck_opts & PR_CK_SECURE)
2089 chunk_appendf(&trash, "; Secure");
2090
Christopher Faulet2f533902020-01-21 11:06:48 +01002091 if (s->be->cookie_attrs)
2092 chunk_appendf(&trash, "; %s", s->be->cookie_attrs);
2093
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002094 if (unlikely(!http_add_header(htx, ist("Set-Cookie"), ist2(trash.area, trash.data))))
Christopher Fauletb8a53712019-12-16 11:29:38 +01002095 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002096
2097 txn->flags &= ~TX_SCK_MASK;
2098 if (__objt_server(s->target)->cookie && (s->flags & SF_DIRECT))
2099 /* the server did not change, only the date was updated */
2100 txn->flags |= TX_SCK_UPDATED;
2101 else
2102 txn->flags |= TX_SCK_INSERTED;
2103
2104 /* Here, we will tell an eventual cache on the client side that we don't
2105 * want it to cache this reply because HTTP/1.0 caches also cache cookies !
2106 * Some caches understand the correct form: 'no-cache="set-cookie"', but
2107 * others don't (eg: apache <= 1.3.26). So we use 'private' instead.
2108 */
2109 if ((s->be->ck_opts & PR_CK_NOC) && (txn->flags & TX_CACHEABLE)) {
2110
2111 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
2112
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002113 if (unlikely(!http_add_header(htx, ist("Cache-control"), ist("private"))))
Christopher Fauletb8a53712019-12-16 11:29:38 +01002114 goto return_int_err;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002115 }
2116 }
2117
2118 /*
2119 * Check if result will be cacheable with a cookie.
2120 * We'll block the response if security checks have caught
2121 * nasty things such as a cacheable cookie.
2122 */
2123 if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) ==
2124 (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) &&
2125 (s->be->options & PR_O_CHK_CACHE)) {
2126 /* we're in presence of a cacheable response containing
2127 * a set-cookie header. We'll block it as requested by
2128 * the 'checkcache' option, and send an alert.
2129 */
Christopher Faulete0768eb2018-10-03 16:38:02 +02002130 ha_alert("Blocking cacheable cookie in response from instance %s, server %s.\n",
2131 s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>");
2132 send_log(s->be, LOG_ALERT,
2133 "Blocking cacheable cookie in response from instance %s, server %s.\n",
2134 s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>");
Christopher Fauletb8a53712019-12-16 11:29:38 +01002135 goto deny;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002136 }
2137
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002138 end:
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002139 /*
2140 * Evaluate after-response rules before forwarding the response. rules
2141 * from the backend are evaluated first, then one from the frontend if
2142 * it differs.
2143 */
2144 if (!http_eval_after_res_rules(s))
2145 goto return_int_err;
2146
Christopher Faulete0768eb2018-10-03 16:38:02 +02002147 /* Always enter in the body analyzer */
2148 rep->analysers &= ~AN_RES_FLT_XFER_DATA;
2149 rep->analysers |= AN_RES_HTTP_XFER_BODY;
2150
2151 /* if the user wants to log as soon as possible, without counting
2152 * bytes from the server, then this is the right moment. We have
2153 * to temporarily assign bytes_out to log what we currently have.
2154 */
2155 if (!LIST_ISEMPTY(&sess->fe->logformat) && !(s->logs.logwait & LW_BYTES)) {
2156 s->logs.t_close = s->logs.t_data; /* to get a valid end date */
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002157 s->logs.bytes_out = htx->data;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002158 s->do_log(s);
2159 s->logs.bytes_out = 0;
2160 }
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002161
Christopher Fauletb8a53712019-12-16 11:29:38 +01002162 done:
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002163 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletb8a53712019-12-16 11:29:38 +01002164 rep->analysers &= ~an_bit;
2165 rep->analyse_exp = TICK_ETERNITY;
2166 return 1;
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002167
Christopher Fauletb8a53712019-12-16 11:29:38 +01002168 deny:
Christopher Fauletb8a53712019-12-16 11:29:38 +01002169 _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_resp, 1);
Christopher Fauleta08546b2019-12-16 16:07:34 +01002170 _HA_ATOMIC_ADD(&s->be->be_counters.denied_resp, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +01002171 if (sess->listener->counters)
2172 _HA_ATOMIC_ADD(&sess->listener->counters->denied_resp, 1);
Christopher Fauleta08546b2019-12-16 16:07:34 +01002173 if (objt_server(s->target))
2174 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.denied_resp, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +01002175 goto return_prx_err;
2176
2177 return_int_err:
2178 txn->status = 500;
2179 if (!(s->flags & SF_ERR_MASK))
2180 s->flags |= SF_ERR_INTERNAL;
Christopher Fauletcff0f732019-12-16 16:13:44 +01002181 _HA_ATOMIC_ADD(&sess->fe->fe_counters.internal_errors, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +01002182 _HA_ATOMIC_ADD(&s->be->be_counters.internal_errors, 1);
2183 if (objt_server(s->target))
2184 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.internal_errors, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01002185 if (objt_server(s->target))
2186 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.internal_errors, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +01002187 goto return_prx_err;
2188
2189 return_bad_res:
2190 txn->status = 502;
Christopher Fauleta20a6532020-02-05 10:16:41 +01002191 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
2192 if (objt_server(s->target)) {
2193 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
2194 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_RSP);
2195 }
Christopher Fauletb8a53712019-12-16 11:29:38 +01002196 /* fall through */
2197
2198 return_prx_err:
2199 http_reply_and_close(s, txn->status, http_error_message(s));
2200 /* fall through */
2201
2202 return_prx_cond:
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002203 s->logs.t_data = -1; /* was not a valid response */
2204 s->si[1].flags |= SI_FL_NOLINGER;
Christopher Fauletb8a53712019-12-16 11:29:38 +01002205
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002206 if (!(s->flags & SF_ERR_MASK))
2207 s->flags |= SF_ERR_PRXCOND;
2208 if (!(s->flags & SF_FINST_MASK))
2209 s->flags |= SF_FINST_H;
Christopher Fauletb8a53712019-12-16 11:29:38 +01002210
Christopher Faulete58c0002020-03-02 16:21:01 +01002211 rep->analysers &= AN_RES_FLT_END;
2212 s->req.analysers &= AN_REQ_FLT_END;
Christopher Fauletb8a53712019-12-16 11:29:38 +01002213 rep->analyse_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002214 DBG_TRACE_DEVEL("leaving on error",
2215 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002216 return 0;
Christopher Fauletb8a53712019-12-16 11:29:38 +01002217
2218 return_prx_yield:
2219 channel_dont_close(rep);
2220 DBG_TRACE_DEVEL("waiting for more data",
2221 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
2222 return 0;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002223}
2224
2225/* This function is an analyser which forwards response body (including chunk
2226 * sizes if any). It is called as soon as we must forward, even if we forward
2227 * zero byte. The only situation where it must not be called is when we're in
2228 * tunnel mode and we want to forward till the close. It's used both to forward
2229 * remaining data and to resync after end of body. It expects the msg_state to
2230 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
2231 * read more data, or 1 once we can go on with next request or end the stream.
2232 *
2233 * It is capable of compressing response data both in content-length mode and
2234 * in chunked mode. The state machines follows different flows depending on
2235 * whether content-length and chunked modes are used, since there are no
2236 * trailers in content-length :
2237 *
2238 * chk-mode cl-mode
2239 * ,----- BODY -----.
2240 * / \
2241 * V size > 0 V chk-mode
2242 * .--> SIZE -------------> DATA -------------> CRLF
2243 * | | size == 0 | last byte |
2244 * | v final crlf v inspected |
2245 * | TRAILERS -----------> DONE |
2246 * | |
2247 * `----------------------------------------------'
2248 *
2249 * Compression only happens in the DATA state, and must be flushed in final
2250 * states (TRAILERS/DONE) or when leaving on missing data. Normal forwarding
2251 * is performed at once on final states for all bytes parsed, or when leaving
2252 * on missing data.
2253 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002254int http_response_forward_body(struct stream *s, struct channel *res, int an_bit)
Christopher Faulete0768eb2018-10-03 16:38:02 +02002255{
2256 struct session *sess = s->sess;
2257 struct http_txn *txn = s->txn;
2258 struct http_msg *msg = &s->txn->rsp;
Christopher Faulet9768c262018-10-22 09:34:31 +02002259 struct htx *htx;
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002260 int ret;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002261
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002262 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002263
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01002264 htx = htxbuf(&res->buf);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002265
Christopher Fauletb9a92f32019-09-09 10:15:21 +02002266 if (htx->flags & HTX_FL_PARSING_ERROR)
2267 goto return_bad_res;
2268 if (htx->flags & HTX_FL_PROCESSING_ERROR)
2269 goto return_int_err;
2270
Christopher Faulete0768eb2018-10-03 16:38:02 +02002271 if ((res->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
Christopher Fauletf2824e62018-10-01 12:12:37 +02002272 ((res->flags & CF_SHUTW) && (res->to_forward || co_data(res)))) {
Christopher Faulete0768eb2018-10-03 16:38:02 +02002273 /* Output closed while we were sending data. We must abort and
2274 * wake the other side up.
2275 */
Christopher Faulete0768eb2018-10-03 16:38:02 +02002276 msg->msg_state = HTTP_MSG_ERROR;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002277 http_end_response(s);
2278 http_end_request(s);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002279 DBG_TRACE_DEVEL("leaving on error",
2280 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002281 return 1;
2282 }
2283
Christopher Faulet9768c262018-10-22 09:34:31 +02002284 if (msg->msg_state == HTTP_MSG_BODY)
2285 msg->msg_state = HTTP_MSG_DATA;
2286
Christopher Faulete0768eb2018-10-03 16:38:02 +02002287 /* in most states, we should abort in case of early close */
2288 channel_auto_close(res);
2289
Christopher Faulete0768eb2018-10-03 16:38:02 +02002290 if (res->to_forward) {
Christopher Faulet66af0b22019-03-22 14:54:52 +01002291 if (res->to_forward == CHN_INFINITE_FORWARD) {
Christopher Faulet1a3e0272019-11-15 16:31:46 +01002292 if (res->flags & CF_EOI)
2293 msg->msg_state = HTTP_MSG_ENDING;
Christopher Faulet66af0b22019-03-22 14:54:52 +01002294 }
2295 else {
2296 /* We can't process the buffer's contents yet */
2297 res->flags |= CF_WAKE_WRITE;
2298 goto missing_data_or_waiting;
2299 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02002300 }
2301
Christopher Faulet1a3e0272019-11-15 16:31:46 +01002302 if (msg->msg_state >= HTTP_MSG_ENDING)
2303 goto ending;
2304
2305 if ((txn->meth == HTTP_METH_CONNECT && txn->status == 200) || txn->status == 101 ||
2306 (!(msg->flags & HTTP_MSGF_XFER_LEN) && !HAS_RSP_DATA_FILTERS(s))) {
2307 msg->msg_state = HTTP_MSG_ENDING;
2308 goto ending;
2309 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002310
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002311 /* Forward input data. We get it by removing all outgoing data not
2312 * forwarded yet from HTX data size. If there are some data filters, we
2313 * let them decide the amount of data to forward.
Christopher Faulet9768c262018-10-22 09:34:31 +02002314 */
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002315 if (HAS_RSP_DATA_FILTERS(s)) {
2316 ret = flt_http_payload(s, msg, htx->data);
2317 if (ret < 0)
2318 goto return_bad_res;
Christopher Faulet421e7692019-06-13 11:16:45 +02002319 c_adv(res, ret);
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002320 }
2321 else {
Christopher Faulet421e7692019-06-13 11:16:45 +02002322 c_adv(res, htx->data - co_data(res));
Christopher Faulet66af0b22019-03-22 14:54:52 +01002323 if (msg->flags & HTTP_MSGF_XFER_LEN)
2324 channel_htx_forward_forever(res, htx);
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002325 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002326
Christopher Faulet1a3e0272019-11-15 16:31:46 +01002327 if (htx->data != co_data(res))
2328 goto missing_data_or_waiting;
2329
2330 if (!(msg->flags & HTTP_MSGF_XFER_LEN) && res->flags & CF_SHUTR) {
2331 msg->msg_state = HTTP_MSG_ENDING;
2332 goto ending;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002333 }
2334
Christopher Faulet9768c262018-10-22 09:34:31 +02002335 /* Check if the end-of-message is reached and if so, switch the message
Christopher Fauletd20fdb02019-06-13 16:43:22 +02002336 * in HTTP_MSG_ENDING state. Then if all data was marked to be
2337 * forwarded, set the state to HTTP_MSG_DONE.
Christopher Faulet9768c262018-10-22 09:34:31 +02002338 */
2339 if (htx_get_tail_type(htx) != HTX_BLK_EOM)
2340 goto missing_data_or_waiting;
2341
Christopher Fauletd20fdb02019-06-13 16:43:22 +02002342 msg->msg_state = HTTP_MSG_ENDING;
Christopher Faulet9768c262018-10-22 09:34:31 +02002343
Christopher Faulet1a3e0272019-11-15 16:31:46 +01002344 ending:
Christopher Faulet2151cdd2020-07-22 16:34:59 +02002345 res->flags &= ~CF_EXPECT_MORE; /* no more data are expected */
2346
Christopher Faulet1a3e0272019-11-15 16:31:46 +01002347 /* other states, ENDING...TUNNEL */
2348 if (msg->msg_state >= HTTP_MSG_DONE)
2349 goto done;
Christopher Faulet9768c262018-10-22 09:34:31 +02002350
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002351 if (HAS_RSP_DATA_FILTERS(s)) {
2352 ret = flt_http_end(s, msg);
2353 if (ret <= 0) {
2354 if (!ret)
2355 goto missing_data_or_waiting;
2356 goto return_bad_res;
2357 }
2358 }
2359
Christopher Faulet1a3e0272019-11-15 16:31:46 +01002360 if ((txn->meth == HTTP_METH_CONNECT && txn->status == 200) || txn->status == 101 ||
2361 !(msg->flags & HTTP_MSGF_XFER_LEN)) {
2362 msg->msg_state = HTTP_MSG_TUNNEL;
2363 goto ending;
2364 }
2365 else {
2366 msg->msg_state = HTTP_MSG_DONE;
2367 res->to_forward = 0;
2368 }
2369
2370 done:
2371
2372 channel_dont_close(res);
2373
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002374 http_end_response(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002375 if (!(res->analysers & an_bit)) {
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002376 http_end_request(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002377 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
2378 if (res->flags & CF_SHUTW) {
2379 /* response errors are most likely due to the
2380 * client aborting the transfer. */
Christopher Faulet93e02d82019-03-08 14:18:50 +01002381 goto return_cli_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002382 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02002383 goto return_bad_res;
2384 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002385 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002386 return 1;
2387 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002388 DBG_TRACE_DEVEL("waiting for the end of the HTTP txn",
2389 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002390 return 0;
2391
2392 missing_data_or_waiting:
2393 if (res->flags & CF_SHUTW)
Christopher Faulet93e02d82019-03-08 14:18:50 +01002394 goto return_cli_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002395
2396 /* stop waiting for data if the input is closed before the end. If the
2397 * client side was already closed, it means that the client has aborted,
2398 * so we don't want to count this as a server abort. Otherwise it's a
2399 * server abort.
2400 */
Christopher Fauletd20fdb02019-06-13 16:43:22 +02002401 if (msg->msg_state < HTTP_MSG_ENDING && res->flags & CF_SHUTR) {
Christopher Faulete0768eb2018-10-03 16:38:02 +02002402 if ((s->req.flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))
Christopher Faulet93e02d82019-03-08 14:18:50 +01002403 goto return_cli_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002404 /* If we have some pending data, we continue the processing */
Christopher Faulet93e02d82019-03-08 14:18:50 +01002405 if (htx_is_empty(htx))
2406 goto return_srv_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002407 }
2408
Christopher Faulete0768eb2018-10-03 16:38:02 +02002409 /* When TE: chunked is used, we need to get there again to parse
2410 * remaining chunks even if the server has closed, so we don't want to
Christopher Faulet9768c262018-10-22 09:34:31 +02002411 * set CF_DONTCLOSE. Similarly when there is a content-leng or if there
2412 * are filters registered on the stream, we don't want to forward a
2413 * close
Christopher Faulete0768eb2018-10-03 16:38:02 +02002414 */
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002415 if ((msg->flags & HTTP_MSGF_XFER_LEN) || HAS_RSP_DATA_FILTERS(s))
Christopher Faulete0768eb2018-10-03 16:38:02 +02002416 channel_dont_close(res);
2417
2418 /* We know that more data are expected, but we couldn't send more that
2419 * what we did. So we always set the CF_EXPECT_MORE flag so that the
2420 * system knows it must not set a PUSH on this first part. Interactive
2421 * modes are already handled by the stream sock layer. We must not do
2422 * this in content-length mode because it could present the MSG_MORE
2423 * flag with the last block of forwarded data, which would cause an
2424 * additional delay to be observed by the receiver.
2425 */
Christopher Faulet2151cdd2020-07-22 16:34:59 +02002426 if (HAS_RSP_DATA_FILTERS(s))
Christopher Faulete0768eb2018-10-03 16:38:02 +02002427 res->flags |= CF_EXPECT_MORE;
2428
2429 /* the stream handler will take care of timeouts and errors */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002430 DBG_TRACE_DEVEL("waiting for more data to forward",
2431 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002432 return 0;
2433
Christopher Faulet93e02d82019-03-08 14:18:50 +01002434 return_srv_abort:
2435 _HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
2436 _HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01002437 if (sess->listener->counters)
2438 _HA_ATOMIC_ADD(&sess->listener->counters->srv_aborts, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002439 if (objt_server(s->target))
Christopher Fauletcff0f732019-12-16 16:13:44 +01002440 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.srv_aborts, 1);
Christopher Faulet93e02d82019-03-08 14:18:50 +01002441 if (!(s->flags & SF_ERR_MASK))
2442 s->flags |= SF_ERR_SRVCL;
2443 goto return_error;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002444
Christopher Faulet93e02d82019-03-08 14:18:50 +01002445 return_cli_abort:
2446 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
2447 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01002448 if (sess->listener->counters)
2449 _HA_ATOMIC_ADD(&sess->listener->counters->cli_aborts, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002450 if (objt_server(s->target))
Christopher Fauletcff0f732019-12-16 16:13:44 +01002451 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.cli_aborts, 1);
Christopher Faulet93e02d82019-03-08 14:18:50 +01002452 if (!(s->flags & SF_ERR_MASK))
2453 s->flags |= SF_ERR_CLICL;
2454 goto return_error;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002455
Christopher Fauletb9a92f32019-09-09 10:15:21 +02002456 return_int_err:
Christopher Fauletcff0f732019-12-16 16:13:44 +01002457 _HA_ATOMIC_ADD(&sess->fe->fe_counters.internal_errors, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +01002458 _HA_ATOMIC_ADD(&s->be->be_counters.internal_errors, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01002459 if (sess->listener->counters)
2460 _HA_ATOMIC_ADD(&sess->listener->counters->internal_errors, 1);
Christopher Fauletb8a53712019-12-16 11:29:38 +01002461 if (objt_server(s->target))
2462 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.internal_errors, 1);
Christopher Fauletb9a92f32019-09-09 10:15:21 +02002463 if (!(s->flags & SF_ERR_MASK))
2464 s->flags |= SF_ERR_INTERNAL;
2465 goto return_error;
2466
Christopher Faulet93e02d82019-03-08 14:18:50 +01002467 return_bad_res:
2468 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
2469 if (objt_server(s->target)) {
Christopher Fauletcff0f732019-12-16 16:13:44 +01002470 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Christopher Faulet93e02d82019-03-08 14:18:50 +01002471 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_RSP);
2472 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02002473 if (!(s->flags & SF_ERR_MASK))
Christopher Faulet93e02d82019-03-08 14:18:50 +01002474 s->flags |= SF_ERR_SRVCL;
Christopher Fauletb8a53712019-12-16 11:29:38 +01002475 /* fall through */
Christopher Faulete0768eb2018-10-03 16:38:02 +02002476
Christopher Faulet93e02d82019-03-08 14:18:50 +01002477 return_error:
Christopher Faulete0768eb2018-10-03 16:38:02 +02002478 /* don't send any error message as we're in the body */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002479 http_reply_and_close(s, txn->status, NULL);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002480 res->analysers &= AN_RES_FLT_END;
2481 s->req.analysers &= AN_REQ_FLT_END; /* we're in data phase, we want to abort both directions */
Christopher Faulete0768eb2018-10-03 16:38:02 +02002482 if (!(s->flags & SF_FINST_MASK))
2483 s->flags |= SF_FINST_D;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01002484 DBG_TRACE_DEVEL("leaving on error",
2485 STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002486 return 0;
2487}
2488
Christopher Fauletf2824e62018-10-01 12:12:37 +02002489/* Perform an HTTP redirect based on the information in <rule>. The function
Christopher Faulet99daf282018-11-28 22:58:13 +01002490 * returns zero on success, or zero in case of a, irrecoverable error such
Christopher Fauletf2824e62018-10-01 12:12:37 +02002491 * as too large a request to build a valid response.
2492 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002493int http_apply_redirect_rule(struct redirect_rule *rule, struct stream *s, struct http_txn *txn)
Christopher Fauletf2824e62018-10-01 12:12:37 +02002494{
Christopher Faulet99daf282018-11-28 22:58:13 +01002495 struct channel *req = &s->req;
2496 struct channel *res = &s->res;
2497 struct htx *htx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01002498 struct htx_sl *sl;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002499 struct buffer *chunk;
Christopher Faulet99daf282018-11-28 22:58:13 +01002500 struct ist status, reason, location;
2501 unsigned int flags;
Christopher Faulet08e66462019-05-23 16:44:59 +02002502 int close = 0; /* Try to keep the connection alive byt default */
Christopher Fauletf2824e62018-10-01 12:12:37 +02002503
2504 chunk = alloc_trash_chunk();
Christopher Fauletb8a53712019-12-16 11:29:38 +01002505 if (!chunk) {
2506 if (!(s->flags & SF_ERR_MASK))
2507 s->flags |= SF_ERR_RESOURCE;
Christopher Faulet99daf282018-11-28 22:58:13 +01002508 goto fail;
Christopher Fauletb8a53712019-12-16 11:29:38 +01002509 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002510
Christopher Faulet99daf282018-11-28 22:58:13 +01002511 /*
2512 * Create the location
2513 */
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01002514 htx = htxbuf(&req->buf);
Christopher Fauletf2824e62018-10-01 12:12:37 +02002515 switch(rule->type) {
Christopher Faulet99daf282018-11-28 22:58:13 +01002516 case REDIRECT_TYPE_SCHEME: {
2517 struct http_hdr_ctx ctx;
2518 struct ist path, host;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002519
Christopher Faulet99daf282018-11-28 22:58:13 +01002520 host = ist("");
2521 ctx.blk = NULL;
2522 if (http_find_header(htx, ist("Host"), &ctx, 0))
2523 host = ctx.value;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002524
Christopher Faulet297fbb42019-05-13 14:41:27 +02002525 sl = http_get_stline(htx);
Christopher Faulet99daf282018-11-28 22:58:13 +01002526 path = http_get_path(htx_sl_req_uri(sl));
2527 /* build message using path */
Tim Duesterhused526372020-03-05 17:56:33 +01002528 if (isttest(path)) {
Christopher Faulet99daf282018-11-28 22:58:13 +01002529 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
2530 int qs = 0;
2531 while (qs < path.len) {
2532 if (*(path.ptr + qs) == '?') {
2533 path.len = qs;
2534 break;
2535 }
2536 qs++;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002537 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002538 }
2539 }
Christopher Faulet99daf282018-11-28 22:58:13 +01002540 else
2541 path = ist("/");
Christopher Fauletf2824e62018-10-01 12:12:37 +02002542
Christopher Faulet99daf282018-11-28 22:58:13 +01002543 if (rule->rdr_str) { /* this is an old "redirect" rule */
2544 /* add scheme */
2545 if (!chunk_memcat(chunk, rule->rdr_str, rule->rdr_len))
2546 goto fail;
2547 }
2548 else {
2549 /* add scheme with executing log format */
2550 chunk->data += build_logline(s, chunk->area + chunk->data,
2551 chunk->size - chunk->data,
2552 &rule->rdr_fmt);
2553 }
2554 /* add "://" + host + path */
2555 if (!chunk_memcat(chunk, "://", 3) ||
2556 !chunk_memcat(chunk, host.ptr, host.len) ||
2557 !chunk_memcat(chunk, path.ptr, path.len))
2558 goto fail;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002559
Christopher Faulet99daf282018-11-28 22:58:13 +01002560 /* append a slash at the end of the location if needed and missing */
2561 if (chunk->data && chunk->area[chunk->data - 1] != '/' &&
2562 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
2563 if (chunk->data + 1 >= chunk->size)
2564 goto fail;
2565 chunk->area[chunk->data++] = '/';
2566 }
2567 break;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002568 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002569
Christopher Faulet99daf282018-11-28 22:58:13 +01002570 case REDIRECT_TYPE_PREFIX: {
2571 struct ist path;
2572
Christopher Faulet297fbb42019-05-13 14:41:27 +02002573 sl = http_get_stline(htx);
Christopher Faulet99daf282018-11-28 22:58:13 +01002574 path = http_get_path(htx_sl_req_uri(sl));
2575 /* build message using path */
Tim Duesterhused526372020-03-05 17:56:33 +01002576 if (isttest(path)) {
Christopher Faulet99daf282018-11-28 22:58:13 +01002577 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
2578 int qs = 0;
2579 while (qs < path.len) {
2580 if (*(path.ptr + qs) == '?') {
2581 path.len = qs;
2582 break;
2583 }
2584 qs++;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002585 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002586 }
2587 }
Christopher Faulet99daf282018-11-28 22:58:13 +01002588 else
2589 path = ist("/");
Christopher Fauletf2824e62018-10-01 12:12:37 +02002590
Christopher Faulet99daf282018-11-28 22:58:13 +01002591 if (rule->rdr_str) { /* this is an old "redirect" rule */
2592 /* add prefix. Note that if prefix == "/", we don't want to
2593 * add anything, otherwise it makes it hard for the user to
2594 * configure a self-redirection.
2595 */
2596 if (rule->rdr_len != 1 || *rule->rdr_str != '/') {
2597 if (!chunk_memcat(chunk, rule->rdr_str, rule->rdr_len))
2598 goto fail;
2599 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002600 }
Christopher Faulet99daf282018-11-28 22:58:13 +01002601 else {
2602 /* add prefix with executing log format */
2603 chunk->data += build_logline(s, chunk->area + chunk->data,
2604 chunk->size - chunk->data,
2605 &rule->rdr_fmt);
2606 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002607
Christopher Faulet99daf282018-11-28 22:58:13 +01002608 /* add path */
2609 if (!chunk_memcat(chunk, path.ptr, path.len))
2610 goto fail;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002611
Christopher Faulet99daf282018-11-28 22:58:13 +01002612 /* append a slash at the end of the location if needed and missing */
2613 if (chunk->data && chunk->area[chunk->data - 1] != '/' &&
2614 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
2615 if (chunk->data + 1 >= chunk->size)
2616 goto fail;
2617 chunk->area[chunk->data++] = '/';
2618 }
2619 break;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002620 }
Christopher Faulet99daf282018-11-28 22:58:13 +01002621 case REDIRECT_TYPE_LOCATION:
2622 default:
2623 if (rule->rdr_str) { /* this is an old "redirect" rule */
2624 /* add location */
2625 if (!chunk_memcat(chunk, rule->rdr_str, rule->rdr_len))
2626 goto fail;
2627 }
2628 else {
2629 /* add location with executing log format */
2630 chunk->data += build_logline(s, chunk->area + chunk->data,
2631 chunk->size - chunk->data,
2632 &rule->rdr_fmt);
2633 }
2634 break;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002635 }
Christopher Faulet99daf282018-11-28 22:58:13 +01002636 location = ist2(chunk->area, chunk->data);
2637
2638 /*
2639 * Create the 30x response
2640 */
2641 switch (rule->code) {
2642 case 308:
2643 status = ist("308");
2644 reason = ist("Permanent Redirect");
2645 break;
2646 case 307:
2647 status = ist("307");
2648 reason = ist("Temporary Redirect");
2649 break;
2650 case 303:
2651 status = ist("303");
2652 reason = ist("See Other");
2653 break;
2654 case 301:
2655 status = ist("301");
2656 reason = ist("Moved Permanently");
2657 break;
2658 case 302:
2659 default:
2660 status = ist("302");
2661 reason = ist("Found");
2662 break;
2663 }
2664
Christopher Faulet08e66462019-05-23 16:44:59 +02002665 if (!(txn->req.flags & HTTP_MSGF_BODYLESS) && txn->req.msg_state != HTTP_MSG_DONE)
2666 close = 1;
2667
Christopher Faulet99daf282018-11-28 22:58:13 +01002668 htx = htx_from_buf(&res->buf);
Kevin Zhu96b36392020-01-07 09:42:55 +01002669 /* Trim any possible response */
2670 channel_htx_truncate(&s->res, htx);
Christopher Faulet99daf282018-11-28 22:58:13 +01002671 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN|HTX_SL_F_BODYLESS);
2672 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), status, reason);
2673 if (!sl)
2674 goto fail;
2675 sl->info.res.status = rule->code;
2676 s->txn->status = rule->code;
2677
Christopher Faulet08e66462019-05-23 16:44:59 +02002678 if (close && !htx_add_header(htx, ist("Connection"), ist("close")))
2679 goto fail;
2680
2681 if (!htx_add_header(htx, ist("Content-length"), ist("0")) ||
Christopher Faulet99daf282018-11-28 22:58:13 +01002682 !htx_add_header(htx, ist("Location"), location))
2683 goto fail;
2684
2685 if (rule->code == 302 || rule->code == 303 || rule->code == 307) {
2686 if (!htx_add_header(htx, ist("Cache-Control"), ist("no-cache")))
2687 goto fail;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002688 }
2689
2690 if (rule->cookie_len) {
Christopher Faulet99daf282018-11-28 22:58:13 +01002691 if (!htx_add_header(htx, ist("Set-Cookie"), ist2(rule->cookie_str, rule->cookie_len)))
2692 goto fail;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002693 }
2694
Christopher Faulet99daf282018-11-28 22:58:13 +01002695 if (!htx_add_endof(htx, HTX_BLK_EOH) || !htx_add_endof(htx, HTX_BLK_EOM))
2696 goto fail;
2697
Kevin Zhu96b36392020-01-07 09:42:55 +01002698 htx_to_buf(htx, &res->buf);
Christopher Fauleta72a7e42020-01-28 09:28:11 +01002699 if (!http_forward_proxy_resp(s, 1))
2700 goto fail;
Christopher Faulet99daf282018-11-28 22:58:13 +01002701
Christopher Faulet60b33a52020-01-28 09:18:10 +01002702 if (rule->flags & REDIRECT_FLAG_FROM_REQ) {
2703 /* let's log the request time */
2704 s->logs.tv_request = now;
2705 req->analysers &= AN_REQ_FLT_END;
Christopher Faulet99daf282018-11-28 22:58:13 +01002706
Christopher Faulet60b33a52020-01-28 09:18:10 +01002707 if (s->sess->fe == s->be) /* report it if the request was intercepted by the frontend */
2708 _HA_ATOMIC_ADD(&s->sess->fe->fe_counters.intercepted_req, 1);
2709 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002710
2711 if (!(s->flags & SF_ERR_MASK))
2712 s->flags |= SF_ERR_LOCAL;
2713 if (!(s->flags & SF_FINST_MASK))
Christopher Faulet60b33a52020-01-28 09:18:10 +01002714 s->flags |= ((rule->flags & REDIRECT_FLAG_FROM_REQ) ? SF_FINST_R : SF_FINST_H);
Christopher Fauletf2824e62018-10-01 12:12:37 +02002715
Christopher Faulet99daf282018-11-28 22:58:13 +01002716 free_trash_chunk(chunk);
2717 return 1;
2718
2719 fail:
2720 /* If an error occurred, remove the incomplete HTTP response from the
2721 * buffer */
Christopher Faulet202c6ce2019-01-07 14:57:35 +01002722 channel_htx_truncate(res, htxbuf(&res->buf));
Christopher Fauletf2824e62018-10-01 12:12:37 +02002723 free_trash_chunk(chunk);
Christopher Faulet99daf282018-11-28 22:58:13 +01002724 return 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002725}
2726
Christopher Faulet92d34fe2019-12-17 09:20:34 +01002727/* Replace all headers matching the name <name>. The header value is replaced if
2728 * it matches the regex <re>. <str> is used for the replacement. If <full> is
2729 * set to 1, the full-line is matched and replaced. Otherwise, comma-separated
2730 * values are evaluated one by one. It returns 0 on success and -1 on error.
2731 */
2732int http_replace_hdrs(struct stream* s, struct htx *htx, struct ist name,
2733 const char *str, struct my_regex *re, int full)
Christopher Faulet72333522018-10-24 11:25:02 +02002734{
2735 struct http_hdr_ctx ctx;
2736 struct buffer *output = get_trash_chunk();
2737
Christopher Faulet72333522018-10-24 11:25:02 +02002738 ctx.blk = NULL;
Christopher Faulet92d34fe2019-12-17 09:20:34 +01002739 while (http_find_header(htx, name, &ctx, full)) {
Christopher Faulet72333522018-10-24 11:25:02 +02002740 if (!regex_exec_match2(re, ctx.value.ptr, ctx.value.len, MAX_MATCH, pmatch, 0))
2741 continue;
2742
2743 output->data = exp_replace(output->area, output->size, ctx.value.ptr, str, pmatch);
2744 if (output->data == -1)
2745 return -1;
2746 if (!http_replace_header_value(htx, &ctx, ist2(output->area, output->data)))
2747 return -1;
2748 }
2749 return 0;
2750}
2751
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002752/* This function executes one of the set-{method,path,query,uri} actions. It
2753 * takes the string from the variable 'replace' with length 'len', then modifies
2754 * the relevant part of the request line accordingly. Then it updates various
2755 * pointers to the next elements which were moved, and the total buffer length.
2756 * It finds the action to be performed in p[2], previously filled by function
2757 * parse_set_req_line(). It returns 0 in case of success, -1 in case of internal
2758 * error, though this can be revisited when this code is finally exploited.
2759 *
2760 * 'action' can be '0' to replace method, '1' to replace path, '2' to replace
Christopher Faulet312294f2020-09-02 17:17:44 +02002761 * query string, 3 to replace uri or 4 to replace the path+query.
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002762 *
2763 * In query string case, the mark question '?' must be set at the start of the
2764 * string by the caller, event if the replacement query string is empty.
2765 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002766int http_req_replace_stline(int action, const char *replace, int len,
2767 struct proxy *px, struct stream *s)
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002768{
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01002769 struct htx *htx = htxbuf(&s->req.buf);
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002770
2771 switch (action) {
2772 case 0: // method
2773 if (!http_replace_req_meth(htx, ist2(replace, len)))
2774 return -1;
2775 break;
2776
2777 case 1: // path
Christopher Fauletb8ce5052020-08-31 16:11:57 +02002778 if (!http_replace_req_path(htx, ist2(replace, len), 0))
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002779 return -1;
2780 break;
2781
2782 case 2: // query
2783 if (!http_replace_req_query(htx, ist2(replace, len)))
2784 return -1;
2785 break;
2786
2787 case 3: // uri
2788 if (!http_replace_req_uri(htx, ist2(replace, len)))
2789 return -1;
2790 break;
2791
Christopher Faulet312294f2020-09-02 17:17:44 +02002792 case 4: // path + query
2793 if (!http_replace_req_path(htx, ist2(replace, len), 1))
2794 return -1;
2795 break;
2796
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002797 default:
2798 return -1;
2799 }
2800 return 0;
2801}
2802
2803/* This function replace the HTTP status code and the associated message. The
Christopher Faulete00d06c2019-12-16 17:18:42 +01002804 * variable <status> contains the new status code. This function never fails. It
2805 * returns 0 in case of success, -1 in case of internal error.
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002806 */
Christopher Faulet96bff762019-12-17 13:46:18 +01002807int http_res_set_status(unsigned int status, struct ist reason, struct stream *s)
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002808{
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01002809 struct htx *htx = htxbuf(&s->res.buf);
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002810 char *res;
2811
2812 chunk_reset(&trash);
2813 res = ultoa_o(status, trash.area, trash.size);
2814 trash.data = res - trash.area;
2815
2816 /* Do we have a custom reason format string? */
Tim Duesterhuse296d3e2020-03-05 17:56:31 +01002817 if (!isttest(reason)) {
Christopher Faulet96bff762019-12-17 13:46:18 +01002818 const char *str = http_get_reason(status);
2819 reason = ist2(str, strlen(str));
2820 }
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002821
Christopher Fauletbde2c4c2020-08-31 16:43:34 +02002822 if (!http_replace_res_status(htx, ist2(trash.area, trash.data), reason))
Christopher Faulete00d06c2019-12-16 17:18:42 +01002823 return -1;
2824 return 0;
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002825}
2826
Christopher Faulet3e964192018-10-24 11:39:23 +02002827/* Executes the http-request rules <rules> for stream <s>, proxy <px> and
2828 * transaction <txn>. Returns the verdict of the first rule that prevents
2829 * further processing of the request (auth, deny, ...), and defaults to
2830 * HTTP_RULE_RES_STOP if it executed all rules or stopped on an allow, or
2831 * HTTP_RULE_RES_CONT if the last rule was reached. It may set the TX_CLTARPIT
2832 * on txn->flags if it encounters a tarpit rule. If <deny_status> is not NULL
2833 * and a deny/tarpit rule is matched, it will be filled with this rule's deny
2834 * status.
2835 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002836static enum rule_result http_req_get_intercept_rule(struct proxy *px, struct list *rules,
Christopher Fauletb58f62b2020-01-13 16:40:13 +01002837 struct stream *s)
Christopher Faulet3e964192018-10-24 11:39:23 +02002838{
2839 struct session *sess = strm_sess(s);
2840 struct http_txn *txn = s->txn;
2841 struct htx *htx;
Christopher Faulet3e964192018-10-24 11:39:23 +02002842 struct act_rule *rule;
2843 struct http_hdr_ctx ctx;
Christopher Faulet3e964192018-10-24 11:39:23 +02002844 enum rule_result rule_ret = HTTP_RULE_RES_CONT;
Christopher Faulet105ba6c2019-12-18 14:41:51 +01002845 int act_opts = 0;
Christopher Faulet3e964192018-10-24 11:39:23 +02002846
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01002847 htx = htxbuf(&s->req.buf);
Christopher Faulet3e964192018-10-24 11:39:23 +02002848
2849 /* If "the current_rule_list" match the executed rule list, we are in
2850 * resume condition. If a resume is needed it is always in the action
2851 * and never in the ACL or converters. In this case, we initialise the
2852 * current rule, and go to the action execution point.
2853 */
2854 if (s->current_rule) {
2855 rule = s->current_rule;
2856 s->current_rule = NULL;
2857 if (s->current_rule_list == rules)
2858 goto resume_execution;
2859 }
2860 s->current_rule_list = rules;
2861
Christopher Faulet1aea50e2020-01-17 16:03:53 +01002862 /* start the ruleset evaluation in strict mode */
2863 txn->req.flags &= ~HTTP_MSGF_SOFT_RW;
Christopher Faulet46f95542019-12-20 10:07:22 +01002864
Christopher Faulet3e964192018-10-24 11:39:23 +02002865 list_for_each_entry(rule, rules, list) {
2866 /* check optional condition */
2867 if (rule->cond) {
2868 int ret;
2869
2870 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
2871 ret = acl_pass(ret);
2872
2873 if (rule->cond->pol == ACL_COND_UNLESS)
2874 ret = !ret;
2875
2876 if (!ret) /* condition not matched */
2877 continue;
2878 }
2879
Christopher Faulet105ba6c2019-12-18 14:41:51 +01002880 act_opts |= ACT_OPT_FIRST;
Christopher Faulet3e964192018-10-24 11:39:23 +02002881 resume_execution:
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002882 /* Always call the action function if defined */
2883 if (rule->action_ptr) {
2884 if ((s->req.flags & CF_READ_ERROR) ||
2885 ((s->req.flags & (CF_SHUTR|CF_READ_NULL)) &&
2886 (px->options & PR_O_ABRT_CLOSE)))
Christopher Faulet105ba6c2019-12-18 14:41:51 +01002887 act_opts |= ACT_OPT_FINAL;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002888
Christopher Faulet105ba6c2019-12-18 14:41:51 +01002889 switch (rule->action_ptr(rule, px, sess, s, act_opts)) {
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002890 case ACT_RET_CONT:
2891 break;
2892 case ACT_RET_STOP:
2893 rule_ret = HTTP_RULE_RES_STOP;
2894 goto end;
2895 case ACT_RET_YIELD:
2896 s->current_rule = rule;
2897 rule_ret = HTTP_RULE_RES_YIELD;
2898 goto end;
2899 case ACT_RET_ERR:
2900 rule_ret = HTTP_RULE_RES_ERROR;
2901 goto end;
2902 case ACT_RET_DONE:
2903 rule_ret = HTTP_RULE_RES_DONE;
2904 goto end;
2905 case ACT_RET_DENY:
Christopher Fauletb58f62b2020-01-13 16:40:13 +01002906 if (txn->status == -1)
2907 txn->status = 403;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002908 rule_ret = HTTP_RULE_RES_DENY;
2909 goto end;
2910 case ACT_RET_ABRT:
2911 rule_ret = HTTP_RULE_RES_ABRT;
2912 goto end;
2913 case ACT_RET_INV:
2914 rule_ret = HTTP_RULE_RES_BADREQ;
2915 goto end;
2916 }
2917 continue; /* eval the next rule */
2918 }
2919
2920 /* If not action function defined, check for known actions */
Christopher Faulet3e964192018-10-24 11:39:23 +02002921 switch (rule->action) {
2922 case ACT_ACTION_ALLOW:
2923 rule_ret = HTTP_RULE_RES_STOP;
2924 goto end;
2925
2926 case ACT_ACTION_DENY:
Christopher Faulet5cb513a2020-05-13 17:56:56 +02002927 txn->status = rule->arg.http_reply->status;
2928 txn->http_reply = rule->arg.http_reply;
Christopher Faulet3e964192018-10-24 11:39:23 +02002929 rule_ret = HTTP_RULE_RES_DENY;
2930 goto end;
2931
2932 case ACT_HTTP_REQ_TARPIT:
2933 txn->flags |= TX_CLTARPIT;
Christopher Faulet5cb513a2020-05-13 17:56:56 +02002934 txn->status = rule->arg.http_reply->status;
2935 txn->http_reply = rule->arg.http_reply;
Christopher Faulet3e964192018-10-24 11:39:23 +02002936 rule_ret = HTTP_RULE_RES_DENY;
2937 goto end;
2938
Christopher Faulet3e964192018-10-24 11:39:23 +02002939 case ACT_HTTP_REDIR:
Christopher Faulet90d22a82020-03-06 11:18:39 +01002940 rule_ret = HTTP_RULE_RES_ABRT;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002941 if (!http_apply_redirect_rule(rule->arg.redir, s, txn))
Christopher Faulet3a26bee2019-12-16 12:47:40 +01002942 rule_ret = HTTP_RULE_RES_ERROR;
Christopher Faulet3e964192018-10-24 11:39:23 +02002943 goto end;
2944
2945 case ACT_HTTP_SET_NICE:
Christopher Faulet96bff762019-12-17 13:46:18 +01002946 s->task->nice = rule->arg.http.i;
Christopher Faulet3e964192018-10-24 11:39:23 +02002947 break;
2948
2949 case ACT_HTTP_SET_TOS:
Christopher Faulet96bff762019-12-17 13:46:18 +01002950 conn_set_tos(objt_conn(sess->origin), rule->arg.http.i);
Christopher Faulet3e964192018-10-24 11:39:23 +02002951 break;
2952
2953 case ACT_HTTP_SET_MARK:
Christopher Faulet96bff762019-12-17 13:46:18 +01002954 conn_set_mark(objt_conn(sess->origin), rule->arg.http.i);
Christopher Faulet3e964192018-10-24 11:39:23 +02002955 break;
2956
2957 case ACT_HTTP_SET_LOGL:
Christopher Faulet96bff762019-12-17 13:46:18 +01002958 s->logs.level = rule->arg.http.i;
Christopher Faulet3e964192018-10-24 11:39:23 +02002959 break;
2960
Christopher Faulet3e964192018-10-24 11:39:23 +02002961 case ACT_HTTP_DEL_HDR:
2962 /* remove all occurrences of the header */
2963 ctx.blk = NULL;
Christopher Faulet96bff762019-12-17 13:46:18 +01002964 while (http_find_header(htx, rule->arg.http.str, &ctx, 1))
Christopher Faulet3e964192018-10-24 11:39:23 +02002965 http_remove_header(htx, &ctx);
2966 break;
2967
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01002968 /* other flags exists, but normally, they never be matched. */
Christopher Faulet3e964192018-10-24 11:39:23 +02002969 default:
2970 break;
2971 }
2972 }
2973
2974 end:
Christopher Faulet1aea50e2020-01-17 16:03:53 +01002975 /* if the ruleset evaluation is finished reset the strict mode */
Christopher Faulet46f95542019-12-20 10:07:22 +01002976 if (rule_ret != HTTP_RULE_RES_YIELD)
Christopher Faulet1aea50e2020-01-17 16:03:53 +01002977 txn->req.flags &= ~HTTP_MSGF_SOFT_RW;
Christopher Faulet46f95542019-12-20 10:07:22 +01002978
Christopher Faulet3e964192018-10-24 11:39:23 +02002979 /* we reached the end of the rules, nothing to report */
2980 return rule_ret;
2981}
2982
2983/* Executes the http-response rules <rules> for stream <s> and proxy <px>. It
2984 * returns one of 5 possible statuses: HTTP_RULE_RES_CONT, HTTP_RULE_RES_STOP,
2985 * HTTP_RULE_RES_DONE, HTTP_RULE_RES_YIELD, or HTTP_RULE_RES_BADREQ. If *CONT
2986 * is returned, the process can continue the evaluation of next rule list. If
2987 * *STOP or *DONE is returned, the process must stop the evaluation. If *BADREQ
2988 * is returned, it means the operation could not be processed and a server error
Christopher Fauleta53abad2020-05-13 08:12:22 +02002989 * must be returned. If *YIELD is returned, the caller must call again the
2990 * function with the same context.
Christopher Faulet3e964192018-10-24 11:39:23 +02002991 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02002992static enum rule_result http_res_get_intercept_rule(struct proxy *px, struct list *rules,
2993 struct stream *s)
Christopher Faulet3e964192018-10-24 11:39:23 +02002994{
2995 struct session *sess = strm_sess(s);
2996 struct http_txn *txn = s->txn;
2997 struct htx *htx;
Christopher Faulet3e964192018-10-24 11:39:23 +02002998 struct act_rule *rule;
2999 struct http_hdr_ctx ctx;
3000 enum rule_result rule_ret = HTTP_RULE_RES_CONT;
Christopher Faulet105ba6c2019-12-18 14:41:51 +01003001 int act_opts = 0;
Christopher Faulet3e964192018-10-24 11:39:23 +02003002
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003003 htx = htxbuf(&s->res.buf);
Christopher Faulet3e964192018-10-24 11:39:23 +02003004
3005 /* If "the current_rule_list" match the executed rule list, we are in
3006 * resume condition. If a resume is needed it is always in the action
3007 * and never in the ACL or converters. In this case, we initialise the
3008 * current rule, and go to the action execution point.
3009 */
3010 if (s->current_rule) {
3011 rule = s->current_rule;
3012 s->current_rule = NULL;
3013 if (s->current_rule_list == rules)
3014 goto resume_execution;
3015 }
3016 s->current_rule_list = rules;
3017
Christopher Faulet1aea50e2020-01-17 16:03:53 +01003018 /* start the ruleset evaluation in strict mode */
3019 txn->rsp.flags &= ~HTTP_MSGF_SOFT_RW;
Christopher Faulet46f95542019-12-20 10:07:22 +01003020
Christopher Faulet3e964192018-10-24 11:39:23 +02003021 list_for_each_entry(rule, rules, list) {
3022 /* check optional condition */
3023 if (rule->cond) {
3024 int ret;
3025
3026 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
3027 ret = acl_pass(ret);
3028
3029 if (rule->cond->pol == ACL_COND_UNLESS)
3030 ret = !ret;
3031
3032 if (!ret) /* condition not matched */
3033 continue;
3034 }
3035
Christopher Faulet105ba6c2019-12-18 14:41:51 +01003036 act_opts |= ACT_OPT_FIRST;
Christopher Faulet3e964192018-10-24 11:39:23 +02003037resume_execution:
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01003038
3039 /* Always call the action function if defined */
3040 if (rule->action_ptr) {
3041 if ((s->req.flags & CF_READ_ERROR) ||
3042 ((s->req.flags & (CF_SHUTR|CF_READ_NULL)) &&
3043 (px->options & PR_O_ABRT_CLOSE)))
Christopher Faulet105ba6c2019-12-18 14:41:51 +01003044 act_opts |= ACT_OPT_FINAL;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01003045
Christopher Faulet105ba6c2019-12-18 14:41:51 +01003046 switch (rule->action_ptr(rule, px, sess, s, act_opts)) {
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01003047 case ACT_RET_CONT:
3048 break;
3049 case ACT_RET_STOP:
3050 rule_ret = HTTP_RULE_RES_STOP;
3051 goto end;
3052 case ACT_RET_YIELD:
3053 s->current_rule = rule;
3054 rule_ret = HTTP_RULE_RES_YIELD;
3055 goto end;
3056 case ACT_RET_ERR:
3057 rule_ret = HTTP_RULE_RES_ERROR;
3058 goto end;
3059 case ACT_RET_DONE:
3060 rule_ret = HTTP_RULE_RES_DONE;
3061 goto end;
3062 case ACT_RET_DENY:
Christopher Fauletb58f62b2020-01-13 16:40:13 +01003063 if (txn->status == -1)
3064 txn->status = 502;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01003065 rule_ret = HTTP_RULE_RES_DENY;
3066 goto end;
3067 case ACT_RET_ABRT:
3068 rule_ret = HTTP_RULE_RES_ABRT;
3069 goto end;
3070 case ACT_RET_INV:
3071 rule_ret = HTTP_RULE_RES_BADREQ;
3072 goto end;
3073 }
3074 continue; /* eval the next rule */
3075 }
3076
3077 /* If not action function defined, check for known actions */
Christopher Faulet3e964192018-10-24 11:39:23 +02003078 switch (rule->action) {
3079 case ACT_ACTION_ALLOW:
3080 rule_ret = HTTP_RULE_RES_STOP; /* "allow" rules are OK */
3081 goto end;
3082
3083 case ACT_ACTION_DENY:
Christopher Faulet5cb513a2020-05-13 17:56:56 +02003084 txn->status = rule->arg.http_reply->status;
3085 txn->http_reply = rule->arg.http_reply;
Christopher Faulet3a26bee2019-12-16 12:47:40 +01003086 rule_ret = HTTP_RULE_RES_DENY;
Christopher Faulet3e964192018-10-24 11:39:23 +02003087 goto end;
3088
3089 case ACT_HTTP_SET_NICE:
Christopher Faulet96bff762019-12-17 13:46:18 +01003090 s->task->nice = rule->arg.http.i;
Christopher Faulet3e964192018-10-24 11:39:23 +02003091 break;
3092
3093 case ACT_HTTP_SET_TOS:
Christopher Faulet96bff762019-12-17 13:46:18 +01003094 conn_set_tos(objt_conn(sess->origin), rule->arg.http.i);
Christopher Faulet3e964192018-10-24 11:39:23 +02003095 break;
3096
3097 case ACT_HTTP_SET_MARK:
Christopher Faulet96bff762019-12-17 13:46:18 +01003098 conn_set_mark(objt_conn(sess->origin), rule->arg.http.i);
Christopher Faulet3e964192018-10-24 11:39:23 +02003099 break;
3100
3101 case ACT_HTTP_SET_LOGL:
Christopher Faulet96bff762019-12-17 13:46:18 +01003102 s->logs.level = rule->arg.http.i;
Christopher Faulet3e964192018-10-24 11:39:23 +02003103 break;
3104
Christopher Faulet3e964192018-10-24 11:39:23 +02003105 case ACT_HTTP_DEL_HDR:
3106 /* remove all occurrences of the header */
3107 ctx.blk = NULL;
Christopher Faulet96bff762019-12-17 13:46:18 +01003108 while (http_find_header(htx, rule->arg.http.str, &ctx, 1))
Christopher Faulet3e964192018-10-24 11:39:23 +02003109 http_remove_header(htx, &ctx);
3110 break;
3111
Christopher Faulet3e964192018-10-24 11:39:23 +02003112 case ACT_HTTP_REDIR:
Christopher Faulet49c2a702020-03-06 15:44:37 +01003113 rule_ret = HTTP_RULE_RES_ABRT;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003114 if (!http_apply_redirect_rule(rule->arg.redir, s, txn))
Christopher Faulet3a26bee2019-12-16 12:47:40 +01003115 rule_ret = HTTP_RULE_RES_ERROR;
Christopher Faulet3e964192018-10-24 11:39:23 +02003116 goto end;
3117
Christopher Fauletcd26e8a2019-12-18 11:13:39 +01003118 /* other flags exists, but normally, they never be matched. */
Christopher Faulet3e964192018-10-24 11:39:23 +02003119 default:
3120 break;
3121 }
3122 }
3123
3124 end:
Christopher Faulet1aea50e2020-01-17 16:03:53 +01003125 /* if the ruleset evaluation is finished reset the strict mode */
Christopher Faulet46f95542019-12-20 10:07:22 +01003126 if (rule_ret != HTTP_RULE_RES_YIELD)
Christopher Faulet1aea50e2020-01-17 16:03:53 +01003127 txn->rsp.flags &= ~HTTP_MSGF_SOFT_RW;
Christopher Faulet46f95542019-12-20 10:07:22 +01003128
Christopher Faulet3e964192018-10-24 11:39:23 +02003129 /* we reached the end of the rules, nothing to report */
3130 return rule_ret;
3131}
3132
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01003133/* Executes backend and frontend http-after-response rules for the stream <s>,
3134 * in that order. it return 1 on success and 0 on error. It is the caller
3135 * responsibility to catch error or ignore it. If it catches it, this function
3136 * may be called a second time, for the internal error.
3137 */
3138int http_eval_after_res_rules(struct stream *s)
3139{
3140 struct session *sess = s->sess;
3141 enum rule_result ret = HTTP_RULE_RES_CONT;
3142
Christopher Faulet507479b2020-05-15 12:29:46 +02003143 /* Eval after-response ruleset only if the reply is not const */
3144 if (s->txn->flags & TX_CONST_REPLY)
3145 goto end;
3146
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01003147 /* prune the request variables if not already done and swap to the response variables. */
3148 if (s->vars_reqres.scope != SCOPE_RES) {
3149 if (!LIST_ISEMPTY(&s->vars_reqres.head))
3150 vars_prune(&s->vars_reqres, s->sess, s);
3151 vars_init(&s->vars_reqres, SCOPE_RES);
3152 }
3153
3154 ret = http_res_get_intercept_rule(s->be, &s->be->http_after_res_rules, s);
3155 if ((ret == HTTP_RULE_RES_CONT || ret == HTTP_RULE_RES_STOP) && sess->fe != s->be)
3156 ret = http_res_get_intercept_rule(sess->fe, &sess->fe->http_after_res_rules, s);
3157
Christopher Faulet507479b2020-05-15 12:29:46 +02003158 end:
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01003159 /* All other codes than CONTINUE, STOP or DONE are forbidden */
3160 return (ret == HTTP_RULE_RES_CONT || ret == HTTP_RULE_RES_STOP || ret == HTTP_RULE_RES_DONE);
3161}
3162
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003163/*
3164 * Manage client-side cookie. It can impact performance by about 2% so it is
3165 * desirable to call it only when needed. This code is quite complex because
3166 * of the multiple very crappy and ambiguous syntaxes we have to support. it
3167 * highly recommended not to touch this part without a good reason !
3168 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003169static void http_manage_client_side_cookies(struct stream *s, struct channel *req)
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003170{
3171 struct session *sess = s->sess;
3172 struct http_txn *txn = s->txn;
3173 struct htx *htx;
3174 struct http_hdr_ctx ctx;
3175 char *hdr_beg, *hdr_end, *del_from;
3176 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
3177 int preserve_hdr;
3178
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003179 htx = htxbuf(&req->buf);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003180 ctx.blk = NULL;
3181 while (http_find_header(htx, ist("Cookie"), &ctx, 1)) {
Olivier Houchardf0f42382019-07-22 17:43:46 +02003182 int is_first = 1;
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003183 del_from = NULL; /* nothing to be deleted */
3184 preserve_hdr = 0; /* assume we may kill the whole header */
3185
3186 /* Now look for cookies. Conforming to RFC2109, we have to support
3187 * attributes whose name begin with a '$', and associate them with
3188 * the right cookie, if we want to delete this cookie.
3189 * So there are 3 cases for each cookie read :
3190 * 1) it's a special attribute, beginning with a '$' : ignore it.
3191 * 2) it's a server id cookie that we *MAY* want to delete : save
3192 * some pointers on it (last semi-colon, beginning of cookie...)
3193 * 3) it's an application cookie : we *MAY* have to delete a previous
3194 * "special" cookie.
3195 * At the end of loop, if a "special" cookie remains, we may have to
3196 * remove it. If no application cookie persists in the header, we
3197 * *MUST* delete it.
3198 *
3199 * Note: RFC2965 is unclear about the processing of spaces around
3200 * the equal sign in the ATTR=VALUE form. A careful inspection of
3201 * the RFC explicitly allows spaces before it, and not within the
3202 * tokens (attrs or values). An inspection of RFC2109 allows that
3203 * too but section 10.1.3 lets one think that spaces may be allowed
3204 * after the equal sign too, resulting in some (rare) buggy
3205 * implementations trying to do that. So let's do what servers do.
3206 * Latest ietf draft forbids spaces all around. Also, earlier RFCs
3207 * allowed quoted strings in values, with any possible character
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003208 * after a backslash, including control chars and delimiters, which
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003209 * causes parsing to become ambiguous. Browsers also allow spaces
3210 * within values even without quotes.
3211 *
3212 * We have to keep multiple pointers in order to support cookie
3213 * removal at the beginning, middle or end of header without
3214 * corrupting the header. All of these headers are valid :
3215 *
3216 * hdr_beg hdr_end
3217 * | |
3218 * v |
3219 * NAME1=VALUE1;NAME2=VALUE2;NAME3=VALUE3 |
3220 * NAME1=VALUE1;NAME2_ONLY ;NAME3=VALUE3 v
3221 * NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3
3222 * | | | | | | |
3223 * | | | | | | |
3224 * | | | | | | +--> next
3225 * | | | | | +----> val_end
3226 * | | | | +-----------> val_beg
3227 * | | | +--------------> equal
3228 * | | +----------------> att_end
3229 * | +---------------------> att_beg
3230 * +--------------------------> prev
3231 *
3232 */
3233 hdr_beg = ctx.value.ptr;
3234 hdr_end = hdr_beg + ctx.value.len;
3235 for (prev = hdr_beg; prev < hdr_end; prev = next) {
3236 /* Iterate through all cookies on this line */
3237
3238 /* find att_beg */
3239 att_beg = prev;
Olivier Houchardf0f42382019-07-22 17:43:46 +02003240 if (!is_first)
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003241 att_beg++;
Olivier Houchardf0f42382019-07-22 17:43:46 +02003242 is_first = 0;
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003243
3244 while (att_beg < hdr_end && HTTP_IS_SPHT(*att_beg))
3245 att_beg++;
3246
3247 /* find att_end : this is the first character after the last non
3248 * space before the equal. It may be equal to hdr_end.
3249 */
3250 equal = att_end = att_beg;
3251 while (equal < hdr_end) {
3252 if (*equal == '=' || *equal == ',' || *equal == ';')
3253 break;
3254 if (HTTP_IS_SPHT(*equal++))
3255 continue;
3256 att_end = equal;
3257 }
3258
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003259 /* here, <equal> points to '=', a delimiter or the end. <att_end>
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003260 * is between <att_beg> and <equal>, both may be identical.
3261 */
3262 /* look for end of cookie if there is an equal sign */
3263 if (equal < hdr_end && *equal == '=') {
3264 /* look for the beginning of the value */
3265 val_beg = equal + 1;
3266 while (val_beg < hdr_end && HTTP_IS_SPHT(*val_beg))
3267 val_beg++;
3268
3269 /* find the end of the value, respecting quotes */
3270 next = http_find_cookie_value_end(val_beg, hdr_end);
3271
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003272 /* make val_end point to the first white space or delimiter after the value */
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003273 val_end = next;
3274 while (val_end > val_beg && HTTP_IS_SPHT(*(val_end - 1)))
3275 val_end--;
3276 }
3277 else
3278 val_beg = val_end = next = equal;
3279
3280 /* We have nothing to do with attributes beginning with
3281 * '$'. However, they will automatically be removed if a
3282 * header before them is removed, since they're supposed
3283 * to be linked together.
3284 */
3285 if (*att_beg == '$')
3286 continue;
3287
3288 /* Ignore cookies with no equal sign */
3289 if (equal == next) {
3290 /* This is not our cookie, so we must preserve it. But if we already
3291 * scheduled another cookie for removal, we cannot remove the
3292 * complete header, but we can remove the previous block itself.
3293 */
3294 preserve_hdr = 1;
3295 if (del_from != NULL) {
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003296 int delta = http_del_hdr_value(hdr_beg, hdr_end, &del_from, prev);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003297 val_end += delta;
3298 next += delta;
3299 hdr_end += delta;
3300 prev = del_from;
3301 del_from = NULL;
3302 }
3303 continue;
3304 }
3305
3306 /* if there are spaces around the equal sign, we need to
3307 * strip them otherwise we'll get trouble for cookie captures,
3308 * or even for rewrites. Since this happens extremely rarely,
3309 * it does not hurt performance.
3310 */
3311 if (unlikely(att_end != equal || val_beg > equal + 1)) {
3312 int stripped_before = 0;
3313 int stripped_after = 0;
3314
3315 if (att_end != equal) {
3316 memmove(att_end, equal, hdr_end - equal);
3317 stripped_before = (att_end - equal);
3318 equal += stripped_before;
3319 val_beg += stripped_before;
3320 }
3321
3322 if (val_beg > equal + 1) {
3323 memmove(equal + 1, val_beg, hdr_end + stripped_before - val_beg);
3324 stripped_after = (equal + 1) - val_beg;
3325 val_beg += stripped_after;
3326 stripped_before += stripped_after;
3327 }
3328
3329 val_end += stripped_before;
3330 next += stripped_before;
3331 hdr_end += stripped_before;
3332 }
3333 /* now everything is as on the diagram above */
3334
3335 /* First, let's see if we want to capture this cookie. We check
3336 * that we don't already have a client side cookie, because we
3337 * can only capture one. Also as an optimisation, we ignore
3338 * cookies shorter than the declared name.
3339 */
3340 if (sess->fe->capture_name != NULL && txn->cli_cookie == NULL &&
3341 (val_end - att_beg >= sess->fe->capture_namelen) &&
3342 memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) {
3343 int log_len = val_end - att_beg;
3344
3345 if ((txn->cli_cookie = pool_alloc(pool_head_capture)) == NULL) {
3346 ha_alert("HTTP logging : out of memory.\n");
3347 } else {
3348 if (log_len > sess->fe->capture_len)
3349 log_len = sess->fe->capture_len;
3350 memcpy(txn->cli_cookie, att_beg, log_len);
3351 txn->cli_cookie[log_len] = 0;
3352 }
3353 }
3354
3355 /* Persistence cookies in passive, rewrite or insert mode have the
3356 * following form :
3357 *
3358 * Cookie: NAME=SRV[|<lastseen>[|<firstseen>]]
3359 *
3360 * For cookies in prefix mode, the form is :
3361 *
3362 * Cookie: NAME=SRV~VALUE
3363 */
3364 if ((att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) &&
3365 (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) {
3366 struct server *srv = s->be->srv;
3367 char *delim;
3368
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003369 /* if we're in cookie prefix mode, we'll search the delimiter so that we
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003370 * have the server ID between val_beg and delim, and the original cookie between
3371 * delim+1 and val_end. Otherwise, delim==val_end :
3372 *
3373 * hdr_beg
3374 * |
3375 * v
3376 * NAME=SRV; # in all but prefix modes
3377 * NAME=SRV~OPAQUE ; # in prefix mode
3378 * || || | |+-> next
3379 * || || | +--> val_end
3380 * || || +---------> delim
3381 * || |+------------> val_beg
3382 * || +-------------> att_end = equal
3383 * |+-----------------> att_beg
3384 * +------------------> prev
3385 *
3386 */
3387 if (s->be->ck_opts & PR_CK_PFX) {
3388 for (delim = val_beg; delim < val_end; delim++)
3389 if (*delim == COOKIE_DELIM)
3390 break;
3391 }
3392 else {
3393 char *vbar1;
3394 delim = val_end;
3395 /* Now check if the cookie contains a date field, which would
3396 * appear after a vertical bar ('|') just after the server name
3397 * and before the delimiter.
3398 */
3399 vbar1 = memchr(val_beg, COOKIE_DELIM_DATE, val_end - val_beg);
3400 if (vbar1) {
3401 /* OK, so left of the bar is the server's cookie and
3402 * right is the last seen date. It is a base64 encoded
3403 * 30-bit value representing the UNIX date since the
3404 * epoch in 4-second quantities.
3405 */
3406 int val;
3407 delim = vbar1++;
3408 if (val_end - vbar1 >= 5) {
3409 val = b64tos30(vbar1);
3410 if (val > 0)
3411 txn->cookie_last_date = val << 2;
3412 }
3413 /* look for a second vertical bar */
3414 vbar1 = memchr(vbar1, COOKIE_DELIM_DATE, val_end - vbar1);
3415 if (vbar1 && (val_end - vbar1 > 5)) {
3416 val = b64tos30(vbar1 + 1);
3417 if (val > 0)
3418 txn->cookie_first_date = val << 2;
3419 }
3420 }
3421 }
3422
3423 /* if the cookie has an expiration date and the proxy wants to check
3424 * it, then we do that now. We first check if the cookie is too old,
3425 * then only if it has expired. We detect strict overflow because the
3426 * time resolution here is not great (4 seconds). Cookies with dates
3427 * in the future are ignored if their offset is beyond one day. This
3428 * allows an admin to fix timezone issues without expiring everyone
3429 * and at the same time avoids keeping unwanted side effects for too
3430 * long.
3431 */
3432 if (txn->cookie_first_date && s->be->cookie_maxlife &&
3433 (((signed)(date.tv_sec - txn->cookie_first_date) > (signed)s->be->cookie_maxlife) ||
3434 ((signed)(txn->cookie_first_date - date.tv_sec) > 86400))) {
3435 txn->flags &= ~TX_CK_MASK;
3436 txn->flags |= TX_CK_OLD;
3437 delim = val_beg; // let's pretend we have not found the cookie
3438 txn->cookie_first_date = 0;
3439 txn->cookie_last_date = 0;
3440 }
3441 else if (txn->cookie_last_date && s->be->cookie_maxidle &&
3442 (((signed)(date.tv_sec - txn->cookie_last_date) > (signed)s->be->cookie_maxidle) ||
3443 ((signed)(txn->cookie_last_date - date.tv_sec) > 86400))) {
3444 txn->flags &= ~TX_CK_MASK;
3445 txn->flags |= TX_CK_EXPIRED;
3446 delim = val_beg; // let's pretend we have not found the cookie
3447 txn->cookie_first_date = 0;
3448 txn->cookie_last_date = 0;
3449 }
3450
3451 /* Here, we'll look for the first running server which supports the cookie.
3452 * This allows to share a same cookie between several servers, for example
3453 * to dedicate backup servers to specific servers only.
3454 * However, to prevent clients from sticking to cookie-less backup server
3455 * when they have incidentely learned an empty cookie, we simply ignore
3456 * empty cookies and mark them as invalid.
3457 * The same behaviour is applied when persistence must be ignored.
3458 */
3459 if ((delim == val_beg) || (s->flags & (SF_IGNORE_PRST | SF_ASSIGNED)))
3460 srv = NULL;
3461
3462 while (srv) {
3463 if (srv->cookie && (srv->cklen == delim - val_beg) &&
3464 !memcmp(val_beg, srv->cookie, delim - val_beg)) {
3465 if ((srv->cur_state != SRV_ST_STOPPED) ||
3466 (s->be->options & PR_O_PERSIST) ||
3467 (s->flags & SF_FORCE_PRST)) {
3468 /* we found the server and we can use it */
3469 txn->flags &= ~TX_CK_MASK;
3470 txn->flags |= (srv->cur_state != SRV_ST_STOPPED) ? TX_CK_VALID : TX_CK_DOWN;
3471 s->flags |= SF_DIRECT | SF_ASSIGNED;
3472 s->target = &srv->obj_type;
3473 break;
3474 } else {
3475 /* we found a server, but it's down,
3476 * mark it as such and go on in case
3477 * another one is available.
3478 */
3479 txn->flags &= ~TX_CK_MASK;
3480 txn->flags |= TX_CK_DOWN;
3481 }
3482 }
3483 srv = srv->next;
3484 }
3485
3486 if (!srv && !(txn->flags & (TX_CK_DOWN|TX_CK_EXPIRED|TX_CK_OLD))) {
3487 /* no server matched this cookie or we deliberately skipped it */
3488 txn->flags &= ~TX_CK_MASK;
3489 if ((s->flags & (SF_IGNORE_PRST | SF_ASSIGNED)))
3490 txn->flags |= TX_CK_UNUSED;
3491 else
3492 txn->flags |= TX_CK_INVALID;
3493 }
3494
3495 /* depending on the cookie mode, we may have to either :
3496 * - delete the complete cookie if we're in insert+indirect mode, so that
3497 * the server never sees it ;
3498 * - remove the server id from the cookie value, and tag the cookie as an
Joseph Herlante9d5c722018-11-25 11:00:25 -08003499 * application cookie so that it does not get accidentally removed later,
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003500 * if we're in cookie prefix mode
3501 */
3502 if ((s->be->ck_opts & PR_CK_PFX) && (delim != val_end)) {
3503 int delta; /* negative */
3504
3505 memmove(val_beg, delim + 1, hdr_end - (delim + 1));
3506 delta = val_beg - (delim + 1);
3507 val_end += delta;
3508 next += delta;
3509 hdr_end += delta;
3510 del_from = NULL;
3511 preserve_hdr = 1; /* we want to keep this cookie */
3512 }
3513 else if (del_from == NULL &&
3514 (s->be->ck_opts & (PR_CK_INS | PR_CK_IND)) == (PR_CK_INS | PR_CK_IND)) {
3515 del_from = prev;
3516 }
3517 }
3518 else {
3519 /* This is not our cookie, so we must preserve it. But if we already
3520 * scheduled another cookie for removal, we cannot remove the
3521 * complete header, but we can remove the previous block itself.
3522 */
3523 preserve_hdr = 1;
3524
3525 if (del_from != NULL) {
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003526 int delta = http_del_hdr_value(hdr_beg, hdr_end, &del_from, prev);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003527 if (att_beg >= del_from)
3528 att_beg += delta;
3529 if (att_end >= del_from)
3530 att_end += delta;
3531 val_beg += delta;
3532 val_end += delta;
3533 next += delta;
3534 hdr_end += delta;
3535 prev = del_from;
3536 del_from = NULL;
3537 }
3538 }
3539
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003540 } /* for each cookie */
3541
3542
3543 /* There are no more cookies on this line.
3544 * We may still have one (or several) marked for deletion at the
3545 * end of the line. We must do this now in two ways :
3546 * - if some cookies must be preserved, we only delete from the
3547 * mark to the end of line ;
3548 * - if nothing needs to be preserved, simply delete the whole header
3549 */
3550 if (del_from) {
3551 hdr_end = (preserve_hdr ? del_from : hdr_beg);
3552 }
3553 if ((hdr_end - hdr_beg) != ctx.value.len) {
Christopher Faulet3e2638e2019-06-18 09:49:16 +02003554 if (hdr_beg != hdr_end)
3555 htx_change_blk_value_len(htx, ctx.blk, hdr_end - hdr_beg);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003556 else
3557 http_remove_header(htx, &ctx);
3558 }
3559 } /* for each "Cookie header */
3560}
3561
3562/*
3563 * Manage server-side cookies. It can impact performance by about 2% so it is
3564 * desirable to call it only when needed. This function is also used when we
3565 * just need to know if there is a cookie (eg: for check-cache).
3566 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003567static void http_manage_server_side_cookies(struct stream *s, struct channel *res)
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003568{
3569 struct session *sess = s->sess;
3570 struct http_txn *txn = s->txn;
3571 struct htx *htx;
3572 struct http_hdr_ctx ctx;
3573 struct server *srv;
3574 char *hdr_beg, *hdr_end;
3575 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreau6f7a02a2019-04-15 21:49:49 +02003576 int is_cookie2 = 0;
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003577
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003578 htx = htxbuf(&res->buf);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003579
3580 ctx.blk = NULL;
3581 while (1) {
Olivier Houchardf0f42382019-07-22 17:43:46 +02003582 int is_first = 1;
3583
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003584 if (!http_find_header(htx, ist("Set-Cookie"), &ctx, 1)) {
3585 if (!http_find_header(htx, ist("Set-Cookie2"), &ctx, 1))
3586 break;
3587 is_cookie2 = 1;
3588 }
3589
3590 /* OK, right now we know we have a Set-Cookie* at hdr_beg, and
3591 * <prev> points to the colon.
3592 */
3593 txn->flags |= TX_SCK_PRESENT;
3594
3595 /* Maybe we only wanted to see if there was a Set-Cookie (eg:
3596 * check-cache is enabled) and we are not interested in checking
3597 * them. Warning, the cookie capture is declared in the frontend.
3598 */
3599 if (s->be->cookie_name == NULL && sess->fe->capture_name == NULL)
3600 break;
3601
3602 /* OK so now we know we have to process this response cookie.
3603 * The format of the Set-Cookie header is slightly different
3604 * from the format of the Cookie header in that it does not
3605 * support the comma as a cookie delimiter (thus the header
3606 * cannot be folded) because the Expires attribute described in
3607 * the original Netscape's spec may contain an unquoted date
3608 * with a comma inside. We have to live with this because
3609 * many browsers don't support Max-Age and some browsers don't
3610 * support quoted strings. However the Set-Cookie2 header is
3611 * clean.
3612 *
3613 * We have to keep multiple pointers in order to support cookie
3614 * removal at the beginning, middle or end of header without
3615 * corrupting the header (in case of set-cookie2). A special
3616 * pointer, <scav> points to the beginning of the set-cookie-av
3617 * fields after the first semi-colon. The <next> pointer points
3618 * either to the end of line (set-cookie) or next unquoted comma
3619 * (set-cookie2). All of these headers are valid :
3620 *
3621 * hdr_beg hdr_end
3622 * | |
3623 * v |
3624 * NAME1 = VALUE 1 ; Secure; Path="/" |
3625 * NAME=VALUE; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT v
3626 * NAME = VALUE ; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT
3627 * NAME1 = VALUE 1 ; Max-Age=0, NAME2=VALUE2; Discard
3628 * | | | | | | | |
3629 * | | | | | | | +-> next
3630 * | | | | | | +------------> scav
3631 * | | | | | +--------------> val_end
3632 * | | | | +--------------------> val_beg
3633 * | | | +----------------------> equal
3634 * | | +------------------------> att_end
3635 * | +----------------------------> att_beg
3636 * +------------------------------> prev
3637 * -------------------------------> hdr_beg
3638 */
3639 hdr_beg = ctx.value.ptr;
3640 hdr_end = hdr_beg + ctx.value.len;
3641 for (prev = hdr_beg; prev < hdr_end; prev = next) {
3642
3643 /* Iterate through all cookies on this line */
3644
3645 /* find att_beg */
3646 att_beg = prev;
Olivier Houchardf0f42382019-07-22 17:43:46 +02003647 if (!is_first)
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003648 att_beg++;
Olivier Houchardf0f42382019-07-22 17:43:46 +02003649 is_first = 0;
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003650
3651 while (att_beg < hdr_end && HTTP_IS_SPHT(*att_beg))
3652 att_beg++;
3653
3654 /* find att_end : this is the first character after the last non
3655 * space before the equal. It may be equal to hdr_end.
3656 */
3657 equal = att_end = att_beg;
3658
3659 while (equal < hdr_end) {
3660 if (*equal == '=' || *equal == ';' || (is_cookie2 && *equal == ','))
3661 break;
3662 if (HTTP_IS_SPHT(*equal++))
3663 continue;
3664 att_end = equal;
3665 }
3666
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003667 /* here, <equal> points to '=', a delimiter or the end. <att_end>
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003668 * is between <att_beg> and <equal>, both may be identical.
3669 */
3670
3671 /* look for end of cookie if there is an equal sign */
3672 if (equal < hdr_end && *equal == '=') {
3673 /* look for the beginning of the value */
3674 val_beg = equal + 1;
3675 while (val_beg < hdr_end && HTTP_IS_SPHT(*val_beg))
3676 val_beg++;
3677
3678 /* find the end of the value, respecting quotes */
3679 next = http_find_cookie_value_end(val_beg, hdr_end);
3680
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003681 /* make val_end point to the first white space or delimiter after the value */
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003682 val_end = next;
3683 while (val_end > val_beg && HTTP_IS_SPHT(*(val_end - 1)))
3684 val_end--;
3685 }
3686 else {
3687 /* <equal> points to next comma, semi-colon or EOL */
3688 val_beg = val_end = next = equal;
3689 }
3690
3691 if (next < hdr_end) {
3692 /* Set-Cookie2 supports multiple cookies, and <next> points to
3693 * a colon or semi-colon before the end. So skip all attr-value
3694 * pairs and look for the next comma. For Set-Cookie, since
3695 * commas are permitted in values, skip to the end.
3696 */
3697 if (is_cookie2)
3698 next = http_find_hdr_value_end(next, hdr_end);
3699 else
3700 next = hdr_end;
3701 }
3702
3703 /* Now everything is as on the diagram above */
3704
3705 /* Ignore cookies with no equal sign */
3706 if (equal == val_end)
3707 continue;
3708
3709 /* If there are spaces around the equal sign, we need to
3710 * strip them otherwise we'll get trouble for cookie captures,
3711 * or even for rewrites. Since this happens extremely rarely,
3712 * it does not hurt performance.
3713 */
3714 if (unlikely(att_end != equal || val_beg > equal + 1)) {
3715 int stripped_before = 0;
3716 int stripped_after = 0;
3717
3718 if (att_end != equal) {
3719 memmove(att_end, equal, hdr_end - equal);
3720 stripped_before = (att_end - equal);
3721 equal += stripped_before;
3722 val_beg += stripped_before;
3723 }
3724
3725 if (val_beg > equal + 1) {
3726 memmove(equal + 1, val_beg, hdr_end + stripped_before - val_beg);
3727 stripped_after = (equal + 1) - val_beg;
3728 val_beg += stripped_after;
3729 stripped_before += stripped_after;
3730 }
3731
3732 val_end += stripped_before;
3733 next += stripped_before;
3734 hdr_end += stripped_before;
3735
Christopher Faulet3e2638e2019-06-18 09:49:16 +02003736 htx_change_blk_value_len(htx, ctx.blk, hdr_end - hdr_beg);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003737 ctx.value.len = hdr_end - hdr_beg;
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003738 }
3739
3740 /* First, let's see if we want to capture this cookie. We check
3741 * that we don't already have a server side cookie, because we
3742 * can only capture one. Also as an optimisation, we ignore
3743 * cookies shorter than the declared name.
3744 */
3745 if (sess->fe->capture_name != NULL &&
3746 txn->srv_cookie == NULL &&
3747 (val_end - att_beg >= sess->fe->capture_namelen) &&
3748 memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) {
3749 int log_len = val_end - att_beg;
3750 if ((txn->srv_cookie = pool_alloc(pool_head_capture)) == NULL) {
3751 ha_alert("HTTP logging : out of memory.\n");
3752 }
3753 else {
3754 if (log_len > sess->fe->capture_len)
3755 log_len = sess->fe->capture_len;
3756 memcpy(txn->srv_cookie, att_beg, log_len);
3757 txn->srv_cookie[log_len] = 0;
3758 }
3759 }
3760
3761 srv = objt_server(s->target);
3762 /* now check if we need to process it for persistence */
3763 if (!(s->flags & SF_IGNORE_PRST) &&
3764 (att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) &&
3765 (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) {
3766 /* assume passive cookie by default */
3767 txn->flags &= ~TX_SCK_MASK;
3768 txn->flags |= TX_SCK_FOUND;
3769
3770 /* If the cookie is in insert mode on a known server, we'll delete
3771 * this occurrence because we'll insert another one later.
3772 * We'll delete it too if the "indirect" option is set and we're in
3773 * a direct access.
3774 */
3775 if (s->be->ck_opts & PR_CK_PSV) {
3776 /* The "preserve" flag was set, we don't want to touch the
3777 * server's cookie.
3778 */
3779 }
3780 else if ((srv && (s->be->ck_opts & PR_CK_INS)) ||
3781 ((s->flags & SF_DIRECT) && (s->be->ck_opts & PR_CK_IND))) {
3782 /* this cookie must be deleted */
3783 if (prev == hdr_beg && next == hdr_end) {
3784 /* whole header */
3785 http_remove_header(htx, &ctx);
3786 /* note: while both invalid now, <next> and <hdr_end>
3787 * are still equal, so the for() will stop as expected.
3788 */
3789 } else {
3790 /* just remove the value */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003791 int delta = http_del_hdr_value(hdr_beg, hdr_end, &prev, next);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003792 next = prev;
3793 hdr_end += delta;
3794 }
3795 txn->flags &= ~TX_SCK_MASK;
3796 txn->flags |= TX_SCK_DELETED;
3797 /* and go on with next cookie */
3798 }
3799 else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_RW)) {
3800 /* replace bytes val_beg->val_end with the cookie name associated
3801 * with this server since we know it.
3802 */
3803 int sliding, delta;
3804
3805 ctx.value = ist2(val_beg, val_end - val_beg);
3806 ctx.lws_before = ctx.lws_after = 0;
3807 http_replace_header_value(htx, &ctx, ist2(srv->cookie, srv->cklen));
3808 delta = srv->cklen - (val_end - val_beg);
3809 sliding = (ctx.value.ptr - val_beg);
3810 hdr_beg += sliding;
3811 val_beg += sliding;
3812 next += sliding + delta;
3813 hdr_end += sliding + delta;
3814
3815 txn->flags &= ~TX_SCK_MASK;
3816 txn->flags |= TX_SCK_REPLACED;
3817 }
3818 else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_PFX)) {
3819 /* insert the cookie name associated with this server
3820 * before existing cookie, and insert a delimiter between them..
3821 */
3822 int sliding, delta;
3823 ctx.value = ist2(val_beg, 0);
3824 ctx.lws_before = ctx.lws_after = 0;
3825 http_replace_header_value(htx, &ctx, ist2(srv->cookie, srv->cklen + 1));
3826 delta = srv->cklen + 1;
3827 sliding = (ctx.value.ptr - val_beg);
3828 hdr_beg += sliding;
3829 val_beg += sliding;
3830 next += sliding + delta;
3831 hdr_end += sliding + delta;
3832
3833 val_beg[srv->cklen] = COOKIE_DELIM;
3834 txn->flags &= ~TX_SCK_MASK;
3835 txn->flags |= TX_SCK_REPLACED;
3836 }
3837 }
3838 /* that's done for this cookie, check the next one on the same
3839 * line when next != hdr_end (only if is_cookie2).
3840 */
3841 }
3842 }
3843}
3844
Christopher Faulet25a02f62018-10-24 12:00:25 +02003845/*
3846 * Parses the Cache-Control and Pragma request header fields to determine if
3847 * the request may be served from the cache and/or if it is cacheable. Updates
3848 * s->txn->flags.
3849 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003850void http_check_request_for_cacheability(struct stream *s, struct channel *req)
Christopher Faulet25a02f62018-10-24 12:00:25 +02003851{
3852 struct http_txn *txn = s->txn;
3853 struct htx *htx;
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003854 struct http_hdr_ctx ctx = { .blk = NULL };
3855 int pragma_found, cc_found;
Christopher Faulet25a02f62018-10-24 12:00:25 +02003856
3857 if ((txn->flags & (TX_CACHEABLE|TX_CACHE_IGNORE)) == TX_CACHE_IGNORE)
3858 return; /* nothing more to do here */
3859
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003860 htx = htxbuf(&req->buf);
Christopher Faulet25a02f62018-10-24 12:00:25 +02003861 pragma_found = cc_found = 0;
Christopher Faulet25a02f62018-10-24 12:00:25 +02003862
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003863 /* Check "pragma" header for HTTP/1.0 compatibility. */
3864 if (http_find_header(htx, ist("pragma"), &ctx, 1)) {
3865 if (isteqi(ctx.value, ist("no-cache"))) {
3866 pragma_found = 1;
Christopher Faulet25a02f62018-10-24 12:00:25 +02003867 }
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003868 }
Christopher Faulet25a02f62018-10-24 12:00:25 +02003869
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003870 ctx.blk = NULL;
3871 /* Don't use the cache and don't try to store if we found the
3872 * Authorization header */
3873 if (http_find_header(htx, ist("authorization"), &ctx, 1)) {
3874 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
3875 txn->flags |= TX_CACHE_IGNORE;
3876 }
Christopher Faulet25a02f62018-10-24 12:00:25 +02003877
Christopher Faulet25a02f62018-10-24 12:00:25 +02003878
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003879 /* Look for "cache-control" header and iterate over all the values
3880 * until we find one that specifies that caching is possible or not. */
3881 ctx.blk = NULL;
3882 while (http_find_header(htx, ist("cache-control"), &ctx, 0)) {
Christopher Faulet25a02f62018-10-24 12:00:25 +02003883 cc_found = 1;
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003884 /* We don't check the values after max-age, max-stale nor min-fresh,
3885 * we simply don't use the cache when they're specified. */
3886 if (istmatchi(ctx.value, ist("max-age")) ||
3887 istmatchi(ctx.value, ist("no-cache")) ||
3888 istmatchi(ctx.value, ist("max-stale")) ||
3889 istmatchi(ctx.value, ist("min-fresh"))) {
Christopher Faulet25a02f62018-10-24 12:00:25 +02003890 txn->flags |= TX_CACHE_IGNORE;
3891 continue;
3892 }
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003893 if (istmatchi(ctx.value, ist("no-store"))) {
Christopher Faulet25a02f62018-10-24 12:00:25 +02003894 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
3895 continue;
3896 }
3897 }
3898
3899 /* RFC7234#5.4:
3900 * When the Cache-Control header field is also present and
3901 * understood in a request, Pragma is ignored.
3902 * When the Cache-Control header field is not present in a
3903 * request, caches MUST consider the no-cache request
3904 * pragma-directive as having the same effect as if
3905 * "Cache-Control: no-cache" were present.
3906 */
3907 if (!cc_found && pragma_found)
3908 txn->flags |= TX_CACHE_IGNORE;
3909}
3910
3911/*
3912 * Check if response is cacheable or not. Updates s->txn->flags.
3913 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02003914void http_check_response_for_cacheability(struct stream *s, struct channel *res)
Christopher Faulet25a02f62018-10-24 12:00:25 +02003915{
3916 struct http_txn *txn = s->txn;
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003917 struct http_hdr_ctx ctx = { .blk = NULL };
Christopher Faulet25a02f62018-10-24 12:00:25 +02003918 struct htx *htx;
Remi Tricot-Le Bretoncc9bf2e2020-11-12 11:14:41 +01003919 int has_freshness_info = 0;
3920 int has_validator = 0;
Christopher Faulet25a02f62018-10-24 12:00:25 +02003921
3922 if (txn->status < 200) {
3923 /* do not try to cache interim responses! */
3924 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
3925 return;
3926 }
3927
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003928 htx = htxbuf(&res->buf);
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003929 /* Check "pragma" header for HTTP/1.0 compatibility. */
3930 if (http_find_header(htx, ist("pragma"), &ctx, 1)) {
3931 if (isteqi(ctx.value, ist("no-cache"))) {
3932 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
3933 return;
Christopher Faulet25a02f62018-10-24 12:00:25 +02003934 }
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003935 }
Christopher Faulet25a02f62018-10-24 12:00:25 +02003936
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003937 /* Look for "cache-control" header and iterate over all the values
3938 * until we find one that specifies that caching is possible or not. */
3939 ctx.blk = NULL;
3940 while (http_find_header(htx, ist("cache-control"), &ctx, 0)) {
3941 if (isteqi(ctx.value, ist("public"))) {
3942 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
Christopher Faulet25a02f62018-10-24 12:00:25 +02003943 continue;
3944 }
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003945 if (isteqi(ctx.value, ist("private")) ||
3946 isteqi(ctx.value, ist("no-cache")) ||
3947 isteqi(ctx.value, ist("no-store")) ||
3948 isteqi(ctx.value, ist("max-age=0")) ||
3949 isteqi(ctx.value, ist("s-maxage=0"))) {
Christopher Faulet25a02f62018-10-24 12:00:25 +02003950 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003951 continue;
Christopher Faulet25a02f62018-10-24 12:00:25 +02003952 }
Remi Tricot-Le Breton40ed97b2020-10-28 11:35:15 +01003953 /* We might have a no-cache="set-cookie" form. */
3954 if (istmatchi(ctx.value, ist("no-cache=\"set-cookie"))) {
3955 txn->flags &= ~TX_CACHE_COOK;
Christopher Faulet25a02f62018-10-24 12:00:25 +02003956 continue;
3957 }
Remi Tricot-Le Bretoncc9bf2e2020-11-12 11:14:41 +01003958
3959 if (istmatchi(ctx.value, ist("s-maxage")) ||
3960 istmatchi(ctx.value, ist("max-age"))) {
3961 has_freshness_info = 1;
3962 continue;
3963 }
3964 }
3965
3966 /* If no freshness information could be found in Cache-Control values,
3967 * look for an Expires header. */
3968 if (!has_freshness_info) {
3969 ctx.blk = NULL;
3970 has_freshness_info = http_find_header(htx, ist("expires"), &ctx, 0);
Christopher Faulet25a02f62018-10-24 12:00:25 +02003971 }
Remi Tricot-Le Bretoncc9bf2e2020-11-12 11:14:41 +01003972
3973 /* If no freshness information could be found in Cache-Control or Expires
3974 * values, look for an explicit validator. */
3975 if (!has_freshness_info) {
3976 ctx.blk = NULL;
3977 has_validator = 1;
3978 if (!http_find_header(htx, ist("etag"), &ctx, 0)) {
3979 ctx.blk = NULL;
3980 if (!http_find_header(htx, ist("last-modified"), &ctx, 0))
3981 has_validator = 0;
3982 }
3983 }
3984
3985 /* We won't store an entry that has neither a cache validator nor an
3986 * explicit expiration time, as suggested in RFC 7234#3. */
3987 if (!has_freshness_info && !has_validator)
3988 txn->flags |= TX_CACHE_IGNORE;
Christopher Faulet25a02f62018-10-24 12:00:25 +02003989}
3990
Christopher Faulet377c5a52018-10-24 21:21:30 +02003991/*
3992 * In a GET, HEAD or POST request, check if the requested URI matches the stats uri
3993 * for the current backend.
3994 *
3995 * It is assumed that the request is either a HEAD, GET, or POST and that the
3996 * uri_auth field is valid.
3997 *
3998 * Returns 1 if stats should be provided, otherwise 0.
3999 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004000static int http_stats_check_uri(struct stream *s, struct http_txn *txn, struct proxy *backend)
Christopher Faulet377c5a52018-10-24 21:21:30 +02004001{
4002 struct uri_auth *uri_auth = backend->uri_auth;
4003 struct htx *htx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004004 struct htx_sl *sl;
Christopher Faulet377c5a52018-10-24 21:21:30 +02004005 struct ist uri;
Christopher Faulet377c5a52018-10-24 21:21:30 +02004006
4007 if (!uri_auth)
4008 return 0;
4009
4010 if (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD && txn->meth != HTTP_METH_POST)
4011 return 0;
4012
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004013 htx = htxbuf(&s->req.buf);
Christopher Faulet297fbb42019-05-13 14:41:27 +02004014 sl = http_get_stline(htx);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004015 uri = htx_sl_req_uri(sl);
Willy Tarreau1eb3b482019-10-31 15:50:28 +01004016 if (*uri_auth->uri_prefix == '/')
4017 uri = http_get_path(uri);
Christopher Faulet377c5a52018-10-24 21:21:30 +02004018
4019 /* check URI size */
4020 if (uri_auth->uri_len > uri.len)
4021 return 0;
4022
4023 if (memcmp(uri.ptr, uri_auth->uri_prefix, uri_auth->uri_len) != 0)
4024 return 0;
4025
4026 return 1;
4027}
4028
4029/* This function prepares an applet to handle the stats. It can deal with the
4030 * "100-continue" expectation, check that admin rules are met for POST requests,
4031 * and program a response message if something was unexpected. It cannot fail
4032 * and always relies on the stats applet to complete the job. It does not touch
4033 * analysers nor counters, which are left to the caller. It does not touch
4034 * s->target which is supposed to already point to the stats applet. The caller
4035 * is expected to have already assigned an appctx to the stream.
4036 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004037static int http_handle_stats(struct stream *s, struct channel *req)
Christopher Faulet377c5a52018-10-24 21:21:30 +02004038{
4039 struct stats_admin_rule *stats_admin_rule;
4040 struct stream_interface *si = &s->si[1];
4041 struct session *sess = s->sess;
4042 struct http_txn *txn = s->txn;
4043 struct http_msg *msg = &txn->req;
4044 struct uri_auth *uri_auth = s->be->uri_auth;
4045 const char *h, *lookup, *end;
4046 struct appctx *appctx;
4047 struct htx *htx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004048 struct htx_sl *sl;
Christopher Faulet377c5a52018-10-24 21:21:30 +02004049
4050 appctx = si_appctx(si);
4051 memset(&appctx->ctx.stats, 0, sizeof(appctx->ctx.stats));
4052 appctx->st1 = appctx->st2 = 0;
4053 appctx->ctx.stats.st_code = STAT_STATUS_INIT;
Willy Tarreau676c29e2019-10-09 10:50:01 +02004054 appctx->ctx.stats.flags |= uri_auth->flags;
Christopher Faulet377c5a52018-10-24 21:21:30 +02004055 appctx->ctx.stats.flags |= STAT_FMT_HTML; /* assume HTML mode by default */
4056 if ((msg->flags & HTTP_MSGF_VER_11) && (txn->meth != HTTP_METH_HEAD))
4057 appctx->ctx.stats.flags |= STAT_CHUNKED;
4058
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004059 htx = htxbuf(&req->buf);
Christopher Faulet297fbb42019-05-13 14:41:27 +02004060 sl = http_get_stline(htx);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004061 lookup = HTX_SL_REQ_UPTR(sl) + uri_auth->uri_len;
4062 end = HTX_SL_REQ_UPTR(sl) + HTX_SL_REQ_ULEN(sl);
Christopher Faulet377c5a52018-10-24 21:21:30 +02004063
4064 for (h = lookup; h <= end - 3; h++) {
4065 if (memcmp(h, ";up", 3) == 0) {
4066 appctx->ctx.stats.flags |= STAT_HIDE_DOWN;
4067 break;
4068 }
Willy Tarreau3e320362020-10-23 17:28:57 +02004069 if (memcmp(h, ";no-maint", 3) == 0) {
4070 appctx->ctx.stats.flags |= STAT_HIDE_MAINT;
4071 break;
4072 }
Christopher Faulet377c5a52018-10-24 21:21:30 +02004073 }
4074
4075 if (uri_auth->refresh) {
4076 for (h = lookup; h <= end - 10; h++) {
4077 if (memcmp(h, ";norefresh", 10) == 0) {
4078 appctx->ctx.stats.flags |= STAT_NO_REFRESH;
4079 break;
4080 }
4081 }
4082 }
4083
4084 for (h = lookup; h <= end - 4; h++) {
4085 if (memcmp(h, ";csv", 4) == 0) {
Christopher Faulet6338a082019-09-09 15:50:54 +02004086 appctx->ctx.stats.flags &= ~(STAT_FMT_MASK|STAT_JSON_SCHM);
Christopher Faulet377c5a52018-10-24 21:21:30 +02004087 break;
4088 }
4089 }
4090
4091 for (h = lookup; h <= end - 6; h++) {
4092 if (memcmp(h, ";typed", 6) == 0) {
Christopher Faulet6338a082019-09-09 15:50:54 +02004093 appctx->ctx.stats.flags &= ~(STAT_FMT_MASK|STAT_JSON_SCHM);
Christopher Faulet377c5a52018-10-24 21:21:30 +02004094 appctx->ctx.stats.flags |= STAT_FMT_TYPED;
4095 break;
4096 }
4097 }
4098
Christopher Faulet6338a082019-09-09 15:50:54 +02004099 for (h = lookup; h <= end - 5; h++) {
4100 if (memcmp(h, ";json", 5) == 0) {
4101 appctx->ctx.stats.flags &= ~(STAT_FMT_MASK|STAT_JSON_SCHM);
4102 appctx->ctx.stats.flags |= STAT_FMT_JSON;
4103 break;
4104 }
4105 }
4106
4107 for (h = lookup; h <= end - 12; h++) {
4108 if (memcmp(h, ";json-schema", 12) == 0) {
4109 appctx->ctx.stats.flags &= ~STAT_FMT_MASK;
4110 appctx->ctx.stats.flags |= STAT_JSON_SCHM;
4111 break;
4112 }
4113 }
4114
Christopher Faulet377c5a52018-10-24 21:21:30 +02004115 for (h = lookup; h <= end - 8; h++) {
4116 if (memcmp(h, ";st=", 4) == 0) {
4117 int i;
4118 h += 4;
4119 appctx->ctx.stats.st_code = STAT_STATUS_UNKN;
4120 for (i = STAT_STATUS_INIT + 1; i < STAT_STATUS_SIZE; i++) {
4121 if (strncmp(stat_status_codes[i], h, 4) == 0) {
4122 appctx->ctx.stats.st_code = i;
4123 break;
4124 }
4125 }
4126 break;
4127 }
4128 }
4129
4130 appctx->ctx.stats.scope_str = 0;
4131 appctx->ctx.stats.scope_len = 0;
4132 for (h = lookup; h <= end - 8; h++) {
4133 if (memcmp(h, STAT_SCOPE_INPUT_NAME "=", strlen(STAT_SCOPE_INPUT_NAME) + 1) == 0) {
4134 int itx = 0;
4135 const char *h2;
4136 char scope_txt[STAT_SCOPE_TXT_MAXLEN + 1];
4137 const char *err;
4138
4139 h += strlen(STAT_SCOPE_INPUT_NAME) + 1;
4140 h2 = h;
Christopher Fauleted7a0662019-01-14 11:07:34 +01004141 appctx->ctx.stats.scope_str = h2 - HTX_SL_REQ_UPTR(sl);
4142 while (h < end) {
Christopher Faulet377c5a52018-10-24 21:21:30 +02004143 if (*h == ';' || *h == '&' || *h == ' ')
4144 break;
4145 itx++;
4146 h++;
4147 }
4148
4149 if (itx > STAT_SCOPE_TXT_MAXLEN)
4150 itx = STAT_SCOPE_TXT_MAXLEN;
4151 appctx->ctx.stats.scope_len = itx;
4152
4153 /* scope_txt = search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
4154 memcpy(scope_txt, h2, itx);
4155 scope_txt[itx] = '\0';
4156 err = invalid_char(scope_txt);
4157 if (err) {
4158 /* bad char in search text => clear scope */
4159 appctx->ctx.stats.scope_str = 0;
4160 appctx->ctx.stats.scope_len = 0;
4161 }
4162 break;
4163 }
4164 }
4165
4166 /* now check whether we have some admin rules for this request */
4167 list_for_each_entry(stats_admin_rule, &uri_auth->admin_rules, list) {
4168 int ret = 1;
4169
4170 if (stats_admin_rule->cond) {
4171 ret = acl_exec_cond(stats_admin_rule->cond, s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
4172 ret = acl_pass(ret);
4173 if (stats_admin_rule->cond->pol == ACL_COND_UNLESS)
4174 ret = !ret;
4175 }
4176
4177 if (ret) {
4178 /* no rule, or the rule matches */
4179 appctx->ctx.stats.flags |= STAT_ADMIN;
4180 break;
4181 }
4182 }
4183
Christopher Faulet5d45e382019-02-27 15:15:23 +01004184 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
4185 appctx->st0 = STAT_HTTP_HEAD;
4186 else if (txn->meth == HTTP_METH_POST) {
Christopher Fauletbd9e8422019-08-15 22:26:48 +02004187 if (appctx->ctx.stats.flags & STAT_ADMIN) {
Christopher Faulet377c5a52018-10-24 21:21:30 +02004188 appctx->st0 = STAT_HTTP_POST;
Christopher Fauletbd9e8422019-08-15 22:26:48 +02004189 if (msg->msg_state < HTTP_MSG_DATA)
4190 req->analysers |= AN_REQ_HTTP_BODY;
4191 }
Christopher Faulet377c5a52018-10-24 21:21:30 +02004192 else {
Christopher Faulet5d45e382019-02-27 15:15:23 +01004193 /* POST without admin level */
Christopher Faulet377c5a52018-10-24 21:21:30 +02004194 appctx->ctx.stats.flags &= ~STAT_CHUNKED;
4195 appctx->ctx.stats.st_code = STAT_STATUS_DENY;
4196 appctx->st0 = STAT_HTTP_LAST;
4197 }
4198 }
4199 else {
Christopher Faulet5d45e382019-02-27 15:15:23 +01004200 /* Unsupported method */
4201 appctx->ctx.stats.flags &= ~STAT_CHUNKED;
4202 appctx->ctx.stats.st_code = STAT_STATUS_IVAL;
4203 appctx->st0 = STAT_HTTP_LAST;
Christopher Faulet377c5a52018-10-24 21:21:30 +02004204 }
4205
4206 s->task->nice = -32; /* small boost for HTTP statistics */
4207 return 1;
4208}
4209
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004210void http_perform_server_redirect(struct stream *s, struct stream_interface *si)
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004211{
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004212 struct channel *req = &s->req;
4213 struct channel *res = &s->res;
4214 struct server *srv;
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004215 struct htx *htx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004216 struct htx_sl *sl;
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004217 struct ist path, location;
4218 unsigned int flags;
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004219
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004220 /*
4221 * Create the location
4222 */
4223 chunk_reset(&trash);
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004224
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004225 /* 1: add the server's prefix */
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004226 /* special prefix "/" means don't change URL */
4227 srv = __objt_server(s->target);
4228 if (srv->rdr_len != 1 || *srv->rdr_pfx != '/') {
4229 if (!chunk_memcat(&trash, srv->rdr_pfx, srv->rdr_len))
4230 return;
4231 }
4232
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004233 /* 2: add the request Path */
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004234 htx = htxbuf(&req->buf);
Christopher Faulet297fbb42019-05-13 14:41:27 +02004235 sl = http_get_stline(htx);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004236 path = http_get_path(htx_sl_req_uri(sl));
Tim Duesterhused526372020-03-05 17:56:33 +01004237 if (!isttest(path))
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004238 return;
4239
4240 if (!chunk_memcat(&trash, path.ptr, path.len))
4241 return;
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004242 location = ist2(trash.area, trash.data);
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004243
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004244 /*
4245 * Create the 302 respone
4246 */
4247 htx = htx_from_buf(&res->buf);
4248 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN|HTX_SL_F_BODYLESS);
4249 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags,
4250 ist("HTTP/1.1"), ist("302"), ist("Found"));
4251 if (!sl)
4252 goto fail;
4253 sl->info.res.status = 302;
4254 s->txn->status = 302;
4255
4256 if (!htx_add_header(htx, ist("Cache-Control"), ist("no-cache")) ||
4257 !htx_add_header(htx, ist("Connection"), ist("close")) ||
4258 !htx_add_header(htx, ist("Content-length"), ist("0")) ||
4259 !htx_add_header(htx, ist("Location"), location))
4260 goto fail;
4261
4262 if (!htx_add_endof(htx, HTX_BLK_EOH) || !htx_add_endof(htx, HTX_BLK_EOM))
4263 goto fail;
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004264
Christopher Fauletc20afb82020-01-24 19:16:26 +01004265 htx_to_buf(htx, &res->buf);
Christopher Fauleta72a7e42020-01-28 09:28:11 +01004266 if (!http_forward_proxy_resp(s, 1))
4267 goto fail;
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004268
4269 /* return without error. */
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004270 si_shutr(si);
4271 si_shutw(si);
4272 si->err_type = SI_ET_NONE;
4273 si->state = SI_ST_CLO;
4274
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004275 if (!(s->flags & SF_ERR_MASK))
4276 s->flags |= SF_ERR_LOCAL;
4277 if (!(s->flags & SF_FINST_MASK))
4278 s->flags |= SF_FINST_C;
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004279
4280 /* FIXME: we should increase a counter of redirects per server and per backend. */
4281 srv_inc_sess_ctr(srv);
4282 srv_set_sess_last(srv);
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01004283 return;
4284
4285 fail:
4286 /* If an error occurred, remove the incomplete HTTP response from the
4287 * buffer */
Christopher Faulet202c6ce2019-01-07 14:57:35 +01004288 channel_htx_truncate(res, htx);
Christopher Fauletfefc73d2018-10-24 21:18:04 +02004289}
4290
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05004291/* This function terminates the request because it was completely analyzed or
Christopher Fauletf2824e62018-10-01 12:12:37 +02004292 * because an error was triggered during the body forwarding.
4293 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004294static void http_end_request(struct stream *s)
Christopher Fauletf2824e62018-10-01 12:12:37 +02004295{
4296 struct channel *chn = &s->req;
4297 struct http_txn *txn = s->txn;
4298
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004299 DBG_TRACE_ENTER(STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004300
Christopher Fauletb42a8b62018-11-19 21:59:00 +01004301 if (unlikely(txn->req.msg_state == HTTP_MSG_ERROR ||
4302 txn->rsp.msg_state == HTTP_MSG_ERROR)) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02004303 channel_abort(chn);
Christopher Faulet202c6ce2019-01-07 14:57:35 +01004304 channel_htx_truncate(chn, htxbuf(&chn->buf));
Christopher Fauletf2824e62018-10-01 12:12:37 +02004305 goto end;
4306 }
4307
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004308 if (unlikely(txn->req.msg_state < HTTP_MSG_DONE)) {
4309 DBG_TRACE_DEVEL("waiting end of the request", STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004310 return;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004311 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02004312
4313 if (txn->req.msg_state == HTTP_MSG_DONE) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02004314 /* No need to read anymore, the request was completely parsed.
4315 * We can shut the read side unless we want to abort_on_close,
4316 * or we have a POST request. The issue with POST requests is
4317 * that some browsers still send a CRLF after the request, and
4318 * this CRLF must be read so that it does not remain in the kernel
4319 * buffers, otherwise a close could cause an RST on some systems
4320 * (eg: Linux).
4321 */
Christopher Faulet769d0e92019-03-22 14:23:18 +01004322 if (!(s->be->options & PR_O_ABRT_CLOSE) && txn->meth != HTTP_METH_POST)
Christopher Fauletf2824e62018-10-01 12:12:37 +02004323 channel_dont_read(chn);
4324
4325 /* if the server closes the connection, we want to immediately react
4326 * and close the socket to save packets and syscalls.
4327 */
4328 s->si[1].flags |= SI_FL_NOHALF;
4329
4330 /* In any case we've finished parsing the request so we must
4331 * disable Nagle when sending data because 1) we're not going
4332 * to shut this side, and 2) the server is waiting for us to
4333 * send pending data.
4334 */
4335 chn->flags |= CF_NEVER_WAIT;
4336
Christopher Fauletd01ce402019-01-02 17:44:13 +01004337 if (txn->rsp.msg_state < HTTP_MSG_DONE) {
4338 /* The server has not finished to respond, so we
4339 * don't want to move in order not to upset it.
4340 */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004341 DBG_TRACE_DEVEL("waiting end of the response", STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletd01ce402019-01-02 17:44:13 +01004342 return;
4343 }
4344
Christopher Fauletf2824e62018-10-01 12:12:37 +02004345 /* When we get here, it means that both the request and the
4346 * response have finished receiving. Depending on the connection
4347 * mode, we'll have to wait for the last bytes to leave in either
4348 * direction, and sometimes for a close to be effective.
4349 */
Christopher Fauletc41547b2019-07-16 14:32:23 +02004350 if (txn->flags & TX_CON_WANT_TUN) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02004351 /* Tunnel mode will not have any analyser so it needs to
4352 * poll for reads.
4353 */
4354 channel_auto_read(chn);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004355 if (b_data(&chn->buf)) {
4356 DBG_TRACE_DEVEL("waiting to flush the request", STRM_EV_HTTP_ANA, s, txn);
Christopher Faulet9768c262018-10-22 09:34:31 +02004357 return;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004358 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02004359 txn->req.msg_state = HTTP_MSG_TUNNEL;
4360 }
4361 else {
4362 /* we're not expecting any new data to come for this
4363 * transaction, so we can close it.
Christopher Faulet9768c262018-10-22 09:34:31 +02004364 *
4365 * However, there is an exception if the response
4366 * length is undefined. In this case, we need to wait
4367 * the close from the server. The response will be
4368 * switched in TUNNEL mode until the end.
Christopher Fauletf2824e62018-10-01 12:12:37 +02004369 */
4370 if (!(txn->rsp.flags & HTTP_MSGF_XFER_LEN) &&
4371 txn->rsp.msg_state != HTTP_MSG_CLOSED)
Christopher Faulet9768c262018-10-22 09:34:31 +02004372 goto check_channel_flags;
Christopher Fauletf2824e62018-10-01 12:12:37 +02004373
4374 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
4375 channel_shutr_now(chn);
4376 channel_shutw_now(chn);
4377 }
4378 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02004379 goto check_channel_flags;
4380 }
4381
4382 if (txn->req.msg_state == HTTP_MSG_CLOSING) {
4383 http_msg_closing:
4384 /* nothing else to forward, just waiting for the output buffer
4385 * to be empty and for the shutw_now to take effect.
4386 */
4387 if (channel_is_empty(chn)) {
4388 txn->req.msg_state = HTTP_MSG_CLOSED;
4389 goto http_msg_closed;
4390 }
4391 else if (chn->flags & CF_SHUTW) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02004392 txn->req.msg_state = HTTP_MSG_ERROR;
4393 goto end;
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->req.msg_state == HTTP_MSG_CLOSED) {
4400 http_msg_closed:
Christopher Fauletf2824e62018-10-01 12:12:37 +02004401 /* if we don't know whether the server will close, we need to hard close */
4402 if (txn->rsp.flags & HTTP_MSGF_XFER_LEN)
4403 s->si[1].flags |= SI_FL_NOLINGER; /* we want to close ASAP */
Christopher Fauletf2824e62018-10-01 12:12:37 +02004404 /* see above in MSG_DONE why we only do this in these states */
Christopher Faulet769d0e92019-03-22 14:23:18 +01004405 if (!(s->be->options & PR_O_ABRT_CLOSE))
Christopher Fauletf2824e62018-10-01 12:12:37 +02004406 channel_dont_read(chn);
4407 goto end;
4408 }
4409
4410 check_channel_flags:
4411 /* Here, we are in HTTP_MSG_DONE or HTTP_MSG_TUNNEL */
4412 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
4413 /* if we've just closed an output, let's switch */
4414 txn->req.msg_state = HTTP_MSG_CLOSING;
4415 goto http_msg_closing;
4416 }
4417
4418 end:
4419 chn->analysers &= AN_REQ_FLT_END;
4420 if (txn->req.msg_state == HTTP_MSG_TUNNEL && HAS_REQ_DATA_FILTERS(s))
4421 chn->analysers |= AN_REQ_FLT_XFER_DATA;
4422 channel_auto_close(chn);
4423 channel_auto_read(chn);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004424 DBG_TRACE_LEAVE(STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004425}
4426
4427
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05004428/* This function terminates the response because it was completely analyzed or
Christopher Fauletf2824e62018-10-01 12:12:37 +02004429 * because an error was triggered during the body forwarding.
4430 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004431static void http_end_response(struct stream *s)
Christopher Fauletf2824e62018-10-01 12:12:37 +02004432{
4433 struct channel *chn = &s->res;
4434 struct http_txn *txn = s->txn;
4435
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004436 DBG_TRACE_ENTER(STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004437
Christopher Fauletb42a8b62018-11-19 21:59:00 +01004438 if (unlikely(txn->req.msg_state == HTTP_MSG_ERROR ||
4439 txn->rsp.msg_state == HTTP_MSG_ERROR)) {
Christopher Faulet202c6ce2019-01-07 14:57:35 +01004440 channel_htx_truncate(&s->req, htxbuf(&s->req.buf));
Christopher Faulet9768c262018-10-22 09:34:31 +02004441 channel_abort(&s->req);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004442 goto end;
4443 }
4444
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004445 if (unlikely(txn->rsp.msg_state < HTTP_MSG_DONE)) {
4446 DBG_TRACE_DEVEL("waiting end of the response", STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004447 return;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004448 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02004449
4450 if (txn->rsp.msg_state == HTTP_MSG_DONE) {
4451 /* In theory, we don't need to read anymore, but we must
4452 * still monitor the server connection for a possible close
4453 * while the request is being uploaded, so we don't disable
4454 * reading.
4455 */
4456 /* channel_dont_read(chn); */
4457
4458 if (txn->req.msg_state < HTTP_MSG_DONE) {
4459 /* The client seems to still be sending data, probably
4460 * because we got an error response during an upload.
4461 * We have the choice of either breaking the connection
4462 * or letting it pass through. Let's do the later.
4463 */
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004464 DBG_TRACE_DEVEL("waiting end of the request", STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004465 return;
4466 }
4467
4468 /* When we get here, it means that both the request and the
4469 * response have finished receiving. Depending on the connection
4470 * mode, we'll have to wait for the last bytes to leave in either
4471 * direction, and sometimes for a close to be effective.
4472 */
Christopher Fauletc41547b2019-07-16 14:32:23 +02004473 if (txn->flags & TX_CON_WANT_TUN) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02004474 channel_auto_read(chn);
4475 chn->flags |= CF_NEVER_WAIT;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004476 if (b_data(&chn->buf)) {
4477 DBG_TRACE_DEVEL("waiting to flush the respone", STRM_EV_HTTP_ANA, s, txn);
Christopher Faulet9768c262018-10-22 09:34:31 +02004478 return;
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004479 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02004480 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
4481 }
4482 else {
4483 /* we're not expecting any new data to come for this
4484 * transaction, so we can close it.
4485 */
4486 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
4487 channel_shutr_now(chn);
4488 channel_shutw_now(chn);
4489 }
4490 }
4491 goto check_channel_flags;
4492 }
4493
4494 if (txn->rsp.msg_state == HTTP_MSG_CLOSING) {
4495 http_msg_closing:
4496 /* nothing else to forward, just waiting for the output buffer
4497 * to be empty and for the shutw_now to take effect.
4498 */
4499 if (channel_is_empty(chn)) {
4500 txn->rsp.msg_state = HTTP_MSG_CLOSED;
4501 goto http_msg_closed;
4502 }
4503 else if (chn->flags & CF_SHUTW) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02004504 txn->rsp.msg_state = HTTP_MSG_ERROR;
Christopher Fauletcff0f732019-12-16 16:13:44 +01004505 _HA_ATOMIC_ADD(&strm_sess(s)->fe->fe_counters.cli_aborts, 1);
Olivier Houcharda798bf52019-03-08 18:52:00 +01004506 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
Christopher Fauletcff0f732019-12-16 16:13:44 +01004507 if (strm_sess(s)->listener->counters)
4508 _HA_ATOMIC_ADD(&strm_sess(s)->listener->counters->cli_aborts, 1);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004509 if (objt_server(s->target))
Christopher Fauletcff0f732019-12-16 16:13:44 +01004510 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.cli_aborts, 1);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004511 goto end;
4512 }
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004513 DBG_TRACE_LEAVE(STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004514 return;
4515 }
4516
4517 if (txn->rsp.msg_state == HTTP_MSG_CLOSED) {
4518 http_msg_closed:
4519 /* drop any pending data */
Christopher Faulet202c6ce2019-01-07 14:57:35 +01004520 channel_htx_truncate(&s->req, htxbuf(&s->req.buf));
Christopher Faulet9768c262018-10-22 09:34:31 +02004521 channel_abort(&s->req);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004522 goto end;
4523 }
4524
4525 check_channel_flags:
4526 /* Here, we are in HTTP_MSG_DONE or HTTP_MSG_TUNNEL */
4527 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
4528 /* if we've just closed an output, let's switch */
4529 txn->rsp.msg_state = HTTP_MSG_CLOSING;
4530 goto http_msg_closing;
4531 }
4532
4533 end:
4534 chn->analysers &= AN_RES_FLT_END;
4535 if (txn->rsp.msg_state == HTTP_MSG_TUNNEL && HAS_RSP_DATA_FILTERS(s))
4536 chn->analysers |= AN_RES_FLT_XFER_DATA;
4537 channel_auto_close(chn);
4538 channel_auto_read(chn);
Christopher Fauleteea8fc72019-11-05 16:18:10 +01004539 DBG_TRACE_LEAVE(STRM_EV_HTTP_ANA, s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +02004540}
4541
Christopher Fauletef70e252020-01-28 09:26:19 +01004542/* Forward a response generated by HAProxy (error/redirect/return). This
4543 * function forwards all pending incoming data. If <final> is set to 0, nothing
4544 * more is performed. It is used for 1xx informational messages. Otherwise, the
Christopher Faulet507479b2020-05-15 12:29:46 +02004545 * transaction is terminated and the request is emptied. On success 1 is
Christopher Faulet40e6b552020-06-25 16:04:50 +02004546 * returned. If an error occurred, 0 is returned. If it fails, this function
4547 * only exits. It is the caller responsibility to do the cleanup.
Christopher Fauletef70e252020-01-28 09:26:19 +01004548 */
4549int http_forward_proxy_resp(struct stream *s, int final)
4550{
4551 struct channel *req = &s->req;
4552 struct channel *res = &s->res;
4553 struct htx *htx = htxbuf(&res->buf);
4554 size_t data;
4555
4556 if (final) {
4557 htx->flags |= HTX_FL_PROXY_RESP;
Christopher Faulet507479b2020-05-15 12:29:46 +02004558
Christopher Fauletaab1b672020-11-18 16:44:02 +01004559 if (!htx_is_empty(htx) && !http_eval_after_res_rules(s))
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01004560 return 0;
Christopher Fauletef70e252020-01-28 09:26:19 +01004561
Christopher Fauletd6c48362020-10-19 18:01:38 +02004562 if (s->txn->meth == HTTP_METH_HEAD)
4563 htx_skip_msg_payload(htx);
4564
Christopher Fauletef70e252020-01-28 09:26:19 +01004565 channel_auto_read(req);
4566 channel_abort(req);
4567 channel_auto_close(req);
4568 channel_htx_erase(req, htxbuf(&req->buf));
4569
4570 res->wex = tick_add_ifset(now_ms, res->wto);
4571 channel_auto_read(res);
4572 channel_auto_close(res);
4573 channel_shutr_now(res);
Christopher Faulet1a9db7c2020-06-25 15:36:45 +02004574 res->flags |= CF_EOI; /* The response is terminated, add EOI */
Christopher Faulet810df062020-07-22 16:20:34 +02004575 htxbuf(&res->buf)->flags |= HTX_FL_EOI; /* no more data are expected */
Christopher Fauletef70e252020-01-28 09:26:19 +01004576 }
Christopher Fauletcf6898c2020-06-25 15:55:11 +02004577 else {
4578 /* Send ASAP informational messages. Rely on CF_EOI for final
4579 * response.
4580 */
4581 res->flags |= CF_SEND_DONTWAIT;
4582 }
Christopher Fauletef70e252020-01-28 09:26:19 +01004583
4584 data = htx->data - co_data(res);
4585 c_adv(res, data);
4586 htx->first = -1;
4587 res->total += data;
4588 return 1;
4589}
4590
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004591void http_server_error(struct stream *s, struct stream_interface *si, int err,
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004592 int finst, struct http_reply *msg)
Christopher Faulet0f226952018-10-22 09:29:56 +02004593{
Christopher Faulet72c7d8d2020-01-27 15:32:25 +01004594 http_reply_and_close(s, s->txn->status, msg);
Christopher Faulet0f226952018-10-22 09:29:56 +02004595 if (!(s->flags & SF_ERR_MASK))
4596 s->flags |= err;
4597 if (!(s->flags & SF_FINST_MASK))
4598 s->flags |= finst;
4599}
4600
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004601void http_reply_and_close(struct stream *s, short status, struct http_reply *msg)
Christopher Faulet0f226952018-10-22 09:29:56 +02004602{
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004603 if (!msg) {
4604 channel_htx_truncate(&s->res, htxbuf(&s->res.buf));
4605 goto end;
4606 }
4607
4608 if (http_reply_message(s, msg) == -1) {
4609 /* On error, return a 500 error message, but don't rewrite it if
Christopher Faulet40e6b552020-06-25 16:04:50 +02004610 * it is already an internal error. If it was already a "const"
4611 * 500 error, just fail.
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004612 */
Christopher Faulet40e6b552020-06-25 16:04:50 +02004613 if (s->txn->status == 500) {
4614 if (s->txn->flags & TX_CONST_REPLY)
4615 goto end;
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004616 s->txn->flags |= TX_CONST_REPLY;
Christopher Faulet40e6b552020-06-25 16:04:50 +02004617 }
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004618 s->txn->status = 500;
4619 s->txn->http_reply = NULL;
4620 return http_reply_and_close(s, s->txn->status, http_error_message(s));
4621 }
4622
4623end:
4624 s->res.wex = tick_add_ifset(now_ms, s->res.wto);
4625 s->txn->flags &= ~TX_WAIT_NEXT_RQ;
4626
Christopher Faulet0f226952018-10-22 09:29:56 +02004627 channel_auto_read(&s->req);
4628 channel_abort(&s->req);
4629 channel_auto_close(&s->req);
Christopher Faulet202c6ce2019-01-07 14:57:35 +01004630 channel_htx_erase(&s->req, htxbuf(&s->req.buf));
Christopher Faulet72c7d8d2020-01-27 15:32:25 +01004631 channel_auto_read(&s->res);
4632 channel_auto_close(&s->res);
4633 channel_shutr_now(&s->res);
Christopher Faulet0f226952018-10-22 09:29:56 +02004634}
4635
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004636struct http_reply *http_error_message(struct stream *s)
Christopher Fauleta7b677c2018-11-29 16:48:49 +01004637{
4638 const int msgnum = http_get_status_idx(s->txn->status);
4639
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004640 if (s->txn->http_reply)
4641 return s->txn->http_reply;
4642 else if (s->be->replies[msgnum])
4643 return s->be->replies[msgnum];
4644 else if (strm_fe(s)->replies[msgnum])
4645 return strm_fe(s)->replies[msgnum];
Christopher Fauleta7b677c2018-11-29 16:48:49 +01004646 else
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004647 return &http_err_replies[msgnum];
Christopher Fauleta7b677c2018-11-29 16:48:49 +01004648}
4649
Christopher Faulet40e6b552020-06-25 16:04:50 +02004650/* Produces an HTX message from an http reply. Depending on the http reply type,
4651 * a, errorfile, an raw file or a log-format string is used. On success, it
4652 * returns 0. If an error occurs -1 is returned. If it fails, this function only
4653 * exits. It is the caller responsibility to do the cleanup.
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004654 */
Christopher Fauletae43b6c2020-05-27 15:24:22 +02004655int http_reply_to_htx(struct stream *s, struct htx *htx, struct http_reply *reply)
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004656{
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004657 struct buffer *errmsg;
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004658 struct htx_sl *sl;
4659 struct buffer *body = NULL;
4660 const char *status, *reason, *clen, *ctype;
4661 unsigned int slflags;
4662 int ret = 0;
4663
Christopher Faulete29a97e2020-05-14 14:49:25 +02004664 /*
4665 * - HTTP_REPLY_ERRFILES unexpected here. handled as no payload if so
4666 *
4667 * - HTTP_REPLY_INDIRECT: switch on another reply if defined or handled
4668 * as no payload if NULL. the TXN status code is set with the status
4669 * of the original reply.
4670 */
4671
4672 if (reply->type == HTTP_REPLY_INDIRECT) {
4673 if (reply->body.reply)
4674 reply = reply->body.reply;
4675 }
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004676 if (reply->type == HTTP_REPLY_ERRMSG && !reply->body.errmsg) {
4677 /* get default error message */
4678 if (reply == s->txn->http_reply)
4679 s->txn->http_reply = NULL;
4680 reply = http_error_message(s);
4681 if (reply->type == HTTP_REPLY_INDIRECT) {
4682 if (reply->body.reply)
4683 reply = reply->body.reply;
4684 }
4685 }
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004686
4687 if (reply->type == HTTP_REPLY_ERRMSG) {
4688 /* implicit or explicit error message*/
4689 errmsg = reply->body.errmsg;
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004690 if (errmsg && !b_is_null(errmsg)) {
Christopher Faulet20567362020-05-15 14:52:49 +02004691 if (!htx_copy_msg(htx, errmsg))
Christopher Faulet8dfeccf2020-05-15 14:16:29 +02004692 goto fail;
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004693 }
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004694 }
4695 else {
4696 /* no payload, file or log-format string */
4697 if (reply->type == HTTP_REPLY_RAW) {
4698 /* file */
4699 body = &reply->body.obj;
4700 }
4701 else if (reply->type == HTTP_REPLY_LOGFMT) {
4702 /* log-format string */
4703 body = alloc_trash_chunk();
4704 if (!body)
4705 goto fail_alloc;
4706 body->data = build_logline(s, body->area, body->size, &reply->body.fmt);
4707 }
4708 /* else no payload */
4709
4710 status = ultoa(reply->status);
4711 reason = http_get_reason(reply->status);
4712 slflags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN|HTX_SL_F_CLEN);
4713 if (!body || !b_data(body))
4714 slflags |= HTX_SL_F_BODYLESS;
4715 sl = htx_add_stline(htx, HTX_BLK_RES_SL, slflags, ist("HTTP/1.1"), ist(status), ist(reason));
4716 if (!sl)
4717 goto fail;
4718 sl->info.res.status = reply->status;
4719
4720 clen = (body ? ultoa(b_data(body)) : "0");
4721 ctype = reply->ctype;
4722
4723 if (!LIST_ISEMPTY(&reply->hdrs)) {
4724 struct http_reply_hdr *hdr;
4725 struct buffer *value = alloc_trash_chunk();
4726
4727 if (!value)
4728 goto fail;
4729
4730 list_for_each_entry(hdr, &reply->hdrs, list) {
4731 chunk_reset(value);
4732 value->data = build_logline(s, value->area, value->size, &hdr->value);
4733 if (b_data(value) && !htx_add_header(htx, hdr->name, ist2(b_head(value), b_data(value)))) {
4734 free_trash_chunk(value);
4735 goto fail;
4736 }
4737 chunk_reset(value);
4738 }
4739 free_trash_chunk(value);
4740 }
4741
4742 if (!htx_add_header(htx, ist("content-length"), ist(clen)) ||
4743 (body && b_data(body) && ctype && !htx_add_header(htx, ist("content-type"), ist(ctype))) ||
4744 !htx_add_endof(htx, HTX_BLK_EOH) ||
4745 (body && b_data(body) && !htx_add_data_atonce(htx, ist2(b_head(body), b_data(body)))) ||
4746 !htx_add_endof(htx, HTX_BLK_EOM))
4747 goto fail;
4748 }
4749
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004750 leave:
4751 if (reply->type == HTTP_REPLY_LOGFMT)
4752 free_trash_chunk(body);
4753 return ret;
4754
4755 fail_alloc:
4756 if (!(s->flags & SF_ERR_MASK))
4757 s->flags |= SF_ERR_RESOURCE;
Christopher Faulet97e466c2020-05-15 15:12:47 +02004758 /* fall through */
4759 fail:
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004760 ret = -1;
4761 goto leave;
Christopher Faulet97e466c2020-05-15 15:12:47 +02004762}
4763
4764/* Send an http reply to the client. On success, it returns 0. If an error
Christopher Faulet40e6b552020-06-25 16:04:50 +02004765 * occurs -1 is returned and the response channel is truncated, removing this
4766 * way the faulty reply. This function may fail when the reply is formatted
4767 * (http_reply_to_htx) or when the reply is forwarded
4768 * (http_forward_proxy_resp). On the last case, it is because a
4769 * http-after-response rule fails.
Christopher Faulet97e466c2020-05-15 15:12:47 +02004770 */
4771int http_reply_message(struct stream *s, struct http_reply *reply)
4772{
4773 struct channel *res = &s->res;
4774 struct htx *htx = htx_from_buf(&res->buf);
4775
4776 if (s->txn->status == -1)
4777 s->txn->status = reply->status;
4778 channel_htx_truncate(res, htx);
4779
4780 if (http_reply_to_htx(s, htx, reply) == -1)
4781 goto fail;
4782
4783 htx_to_buf(htx, &s->res.buf);
4784 if (!http_forward_proxy_resp(s, 1))
4785 goto fail;
4786 return 0;
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004787
4788 fail:
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004789 channel_htx_truncate(res, htx);
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004790 if (!(s->flags & SF_ERR_MASK))
4791 s->flags |= SF_ERR_PRXCOND;
Christopher Faulet97e466c2020-05-15 15:12:47 +02004792 return -1;
Christopher Faulet0e2ad612020-05-13 16:38:37 +02004793}
4794
Christopher Faulet304cc402019-07-15 15:46:28 +02004795/* Return the error message corresponding to si->err_type. It is assumed
4796 * that the server side is closed. Note that err_type is actually a
4797 * bitmask, where almost only aborts may be cumulated with other
4798 * values. We consider that aborted operations are more important
4799 * than timeouts or errors due to the fact that nobody else in the
4800 * logs might explain incomplete retries. All others should avoid
4801 * being cumulated. It should normally not be possible to have multiple
4802 * aborts at once, but just in case, the first one in sequence is reported.
4803 * Note that connection errors appearing on the second request of a keep-alive
4804 * connection are not reported since this allows the client to retry.
4805 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004806void http_return_srv_error(struct stream *s, struct stream_interface *si)
Christopher Faulet304cc402019-07-15 15:46:28 +02004807{
4808 int err_type = si->err_type;
4809
4810 /* set s->txn->status for http_error_message(s) */
4811 s->txn->status = 503;
4812
4813 if (err_type & SI_ET_QUEUE_ABRT)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004814 http_server_error(s, si, SF_ERR_CLICL, SF_FINST_Q,
4815 http_error_message(s));
Christopher Faulet304cc402019-07-15 15:46:28 +02004816 else if (err_type & SI_ET_CONN_ABRT)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004817 http_server_error(s, si, SF_ERR_CLICL, SF_FINST_C,
4818 (s->txn->flags & TX_NOT_FIRST) ? NULL :
4819 http_error_message(s));
Christopher Faulet304cc402019-07-15 15:46:28 +02004820 else if (err_type & SI_ET_QUEUE_TO)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004821 http_server_error(s, si, SF_ERR_SRVTO, SF_FINST_Q,
4822 http_error_message(s));
Christopher Faulet304cc402019-07-15 15:46:28 +02004823 else if (err_type & SI_ET_QUEUE_ERR)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004824 http_server_error(s, si, SF_ERR_SRVCL, SF_FINST_Q,
4825 http_error_message(s));
Christopher Faulet304cc402019-07-15 15:46:28 +02004826 else if (err_type & SI_ET_CONN_TO)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004827 http_server_error(s, si, SF_ERR_SRVTO, SF_FINST_C,
4828 (s->txn->flags & TX_NOT_FIRST) ? NULL :
4829 http_error_message(s));
Christopher Faulet304cc402019-07-15 15:46:28 +02004830 else if (err_type & SI_ET_CONN_ERR)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004831 http_server_error(s, si, SF_ERR_SRVCL, SF_FINST_C,
4832 (s->flags & SF_SRV_REUSED) ? NULL :
4833 http_error_message(s));
Christopher Faulet304cc402019-07-15 15:46:28 +02004834 else if (err_type & SI_ET_CONN_RES)
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004835 http_server_error(s, si, SF_ERR_RESOURCE, SF_FINST_C,
4836 (s->txn->flags & TX_NOT_FIRST) ? NULL :
4837 http_error_message(s));
Christopher Faulet304cc402019-07-15 15:46:28 +02004838 else { /* SI_ET_CONN_OTHER and others */
4839 s->txn->status = 500;
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004840 http_server_error(s, si, SF_ERR_INTERNAL, SF_FINST_C,
4841 http_error_message(s));
Christopher Faulet304cc402019-07-15 15:46:28 +02004842 }
4843}
4844
Christopher Fauleta7b677c2018-11-29 16:48:49 +01004845
Christopher Faulet4a28a532019-03-01 11:19:40 +01004846/* Handle Expect: 100-continue for HTTP/1.1 messages if necessary. It returns 0
4847 * on success and -1 on error.
4848 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004849static int http_handle_expect_hdr(struct stream *s, struct htx *htx, struct http_msg *msg)
Christopher Faulet4a28a532019-03-01 11:19:40 +01004850{
4851 /* If we have HTTP/1.1 message with a body and Expect: 100-continue,
4852 * then we must send an HTTP/1.1 100 Continue intermediate response.
4853 */
4854 if (msg->msg_state == HTTP_MSG_BODY && (msg->flags & HTTP_MSGF_VER_11) &&
4855 (msg->flags & (HTTP_MSGF_CNT_LEN|HTTP_MSGF_TE_CHNK))) {
4856 struct ist hdr = { .ptr = "Expect", .len = 6 };
4857 struct http_hdr_ctx ctx;
4858
4859 ctx.blk = NULL;
4860 /* Expect is allowed in 1.1, look for it */
4861 if (http_find_header(htx, hdr, &ctx, 0) &&
4862 unlikely(isteqi(ctx.value, ist2("100-continue", 12)))) {
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004863 if (http_reply_100_continue(s) == -1)
Christopher Faulet4a28a532019-03-01 11:19:40 +01004864 return -1;
4865 http_remove_header(htx, &ctx);
4866 }
4867 }
4868 return 0;
4869}
4870
Christopher Faulet23a3c792018-11-28 10:01:23 +01004871/* Send a 100-Continue response to the client. It returns 0 on success and -1
4872 * on error. The response channel is updated accordingly.
4873 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004874static int http_reply_100_continue(struct stream *s)
Christopher Faulet23a3c792018-11-28 10:01:23 +01004875{
4876 struct channel *res = &s->res;
4877 struct htx *htx = htx_from_buf(&res->buf);
4878 struct htx_sl *sl;
4879 unsigned int flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|
4880 HTX_SL_F_XFER_LEN|HTX_SL_F_BODYLESS);
Christopher Faulet23a3c792018-11-28 10:01:23 +01004881
4882 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags,
4883 ist("HTTP/1.1"), ist("100"), ist("Continue"));
4884 if (!sl)
4885 goto fail;
4886 sl->info.res.status = 100;
4887
Christopher Faulet1d5ec092019-06-26 14:23:54 +02004888 if (!htx_add_endof(htx, HTX_BLK_EOH))
Christopher Faulet23a3c792018-11-28 10:01:23 +01004889 goto fail;
4890
Christopher Fauleta72a7e42020-01-28 09:28:11 +01004891 if (!http_forward_proxy_resp(s, 0))
4892 goto fail;
Christopher Faulet23a3c792018-11-28 10:01:23 +01004893 return 0;
4894
4895 fail:
4896 /* If an error occurred, remove the incomplete HTTP response from the
4897 * buffer */
Christopher Faulet202c6ce2019-01-07 14:57:35 +01004898 channel_htx_truncate(res, htx);
Christopher Faulet23a3c792018-11-28 10:01:23 +01004899 return -1;
4900}
4901
Christopher Faulet12c51e22018-11-28 15:59:42 +01004902
Christopher Faulet0f226952018-10-22 09:29:56 +02004903/*
4904 * Capture headers from message <htx> according to header list <cap_hdr>, and
4905 * fill the <cap> pointers appropriately.
4906 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004907static void http_capture_headers(struct htx *htx, char **cap, struct cap_hdr *cap_hdr)
Christopher Faulet0f226952018-10-22 09:29:56 +02004908{
4909 struct cap_hdr *h;
4910 int32_t pos;
4911
Christopher Fauleta3f15502019-05-13 15:27:23 +02004912 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
Christopher Faulet0f226952018-10-22 09:29:56 +02004913 struct htx_blk *blk = htx_get_blk(htx, pos);
4914 enum htx_blk_type type = htx_get_blk_type(blk);
4915 struct ist n, v;
4916
4917 if (type == HTX_BLK_EOH)
4918 break;
4919 if (type != HTX_BLK_HDR)
4920 continue;
4921
4922 n = htx_get_blk_name(htx, blk);
4923
4924 for (h = cap_hdr; h; h = h->next) {
4925 if (h->namelen && (h->namelen == n.len) &&
4926 (strncasecmp(n.ptr, h->name, h->namelen) == 0)) {
4927 if (cap[h->index] == NULL)
4928 cap[h->index] =
4929 pool_alloc(h->pool);
4930
4931 if (cap[h->index] == NULL) {
4932 ha_alert("HTTP capture : out of memory.\n");
4933 break;
4934 }
4935
4936 v = htx_get_blk_value(htx, blk);
4937 if (v.len > h->len)
4938 v.len = h->len;
4939
4940 memcpy(cap[h->index], v.ptr, v.len);
4941 cap[h->index][v.len]=0;
4942 }
4943 }
4944 }
4945}
4946
Christopher Faulet0b6bdc52018-10-24 11:05:36 +02004947/* Delete a value in a header between delimiters <from> and <next>. The header
4948 * itself is delimited by <start> and <end> pointers. The number of characters
4949 * displaced is returned, and the pointer to the first delimiter is updated if
4950 * required. The function tries as much as possible to respect the following
4951 * principles :
4952 * - replace <from> delimiter by the <next> one unless <from> points to <start>,
4953 * in which case <next> is simply removed
4954 * - set exactly one space character after the new first delimiter, unless there
4955 * are not enough characters in the block being moved to do so.
4956 * - remove unneeded spaces before the previous delimiter and after the new
4957 * one.
4958 *
4959 * It is the caller's responsibility to ensure that :
4960 * - <from> points to a valid delimiter or <start> ;
4961 * - <next> points to a valid delimiter or <end> ;
4962 * - there are non-space chars before <from>.
4963 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02004964static int http_del_hdr_value(char *start, char *end, char **from, char *next)
Christopher Faulet0b6bdc52018-10-24 11:05:36 +02004965{
4966 char *prev = *from;
4967
4968 if (prev == start) {
4969 /* We're removing the first value. eat the semicolon, if <next>
4970 * is lower than <end> */
4971 if (next < end)
4972 next++;
4973
4974 while (next < end && HTTP_IS_SPHT(*next))
4975 next++;
4976 }
4977 else {
4978 /* Remove useless spaces before the old delimiter. */
4979 while (HTTP_IS_SPHT(*(prev-1)))
4980 prev--;
4981 *from = prev;
4982
4983 /* copy the delimiter and if possible a space if we're
4984 * not at the end of the line.
4985 */
4986 if (next < end) {
4987 *prev++ = *next++;
4988 if (prev + 1 < next)
4989 *prev++ = ' ';
4990 while (next < end && HTTP_IS_SPHT(*next))
4991 next++;
4992 }
4993 }
4994 memmove(prev, next, end - next);
4995 return (prev - next);
4996}
4997
Christopher Faulet0f226952018-10-22 09:29:56 +02004998
4999/* Formats the start line of the request (without CRLF) and puts it in <str> and
Joseph Herlantc42c0e92018-11-25 10:43:27 -08005000 * return the written length. The line can be truncated if it exceeds <len>.
Christopher Faulet0f226952018-10-22 09:29:56 +02005001 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005002static size_t http_fmt_req_line(const struct htx_sl *sl, char *str, size_t len)
Christopher Faulet0f226952018-10-22 09:29:56 +02005003{
5004 struct ist dst = ist2(str, 0);
5005
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005006 if (istcat(&dst, htx_sl_req_meth(sl), len) == -1)
Christopher Faulet0f226952018-10-22 09:29:56 +02005007 goto end;
5008 if (dst.len + 1 > len)
5009 goto end;
5010 dst.ptr[dst.len++] = ' ';
5011
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005012 if (istcat(&dst, htx_sl_req_uri(sl), len) == -1)
Christopher Faulet0f226952018-10-22 09:29:56 +02005013 goto end;
5014 if (dst.len + 1 > len)
5015 goto end;
5016 dst.ptr[dst.len++] = ' ';
5017
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005018 istcat(&dst, htx_sl_req_vsn(sl), len);
Christopher Faulet0f226952018-10-22 09:29:56 +02005019 end:
5020 return dst.len;
5021}
5022
5023/*
5024 * Print a debug line with a start line.
5025 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005026static void http_debug_stline(const char *dir, struct stream *s, const struct htx_sl *sl)
Christopher Faulet0f226952018-10-22 09:29:56 +02005027{
5028 struct session *sess = strm_sess(s);
5029 int max;
5030
5031 chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", s->uniq_id, s->be->id,
5032 dir,
5033 objt_conn(sess->origin) ? (unsigned short)objt_conn(sess->origin)->handle.fd : -1,
5034 objt_cs(s->si[1].end) ? (unsigned short)objt_cs(s->si[1].end)->conn->handle.fd : -1);
5035
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005036 max = HTX_SL_P1_LEN(sl);
Christopher Faulet0f226952018-10-22 09:29:56 +02005037 UBOUND(max, trash.size - trash.data - 3);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005038 chunk_memcat(&trash, HTX_SL_P1_PTR(sl), max);
Christopher Faulet0f226952018-10-22 09:29:56 +02005039 trash.area[trash.data++] = ' ';
5040
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005041 max = HTX_SL_P2_LEN(sl);
Christopher Faulet0f226952018-10-22 09:29:56 +02005042 UBOUND(max, trash.size - trash.data - 2);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005043 chunk_memcat(&trash, HTX_SL_P2_PTR(sl), max);
Christopher Faulet0f226952018-10-22 09:29:56 +02005044 trash.area[trash.data++] = ' ';
5045
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005046 max = HTX_SL_P3_LEN(sl);
Christopher Faulet0f226952018-10-22 09:29:56 +02005047 UBOUND(max, trash.size - trash.data - 1);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005048 chunk_memcat(&trash, HTX_SL_P3_PTR(sl), max);
Christopher Faulet0f226952018-10-22 09:29:56 +02005049 trash.area[trash.data++] = '\n';
5050
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +01005051 DISGUISE(write(1, trash.area, trash.data));
Christopher Faulet0f226952018-10-22 09:29:56 +02005052}
5053
5054/*
5055 * Print a debug line with a header.
5056 */
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005057static 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 +02005058{
5059 struct session *sess = strm_sess(s);
5060 int max;
5061
5062 chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", s->uniq_id, s->be->id,
5063 dir,
5064 objt_conn(sess->origin) ? (unsigned short)objt_conn(sess->origin)->handle.fd : -1,
5065 objt_cs(s->si[1].end) ? (unsigned short)objt_cs(s->si[1].end)->conn->handle.fd : -1);
5066
5067 max = n.len;
5068 UBOUND(max, trash.size - trash.data - 3);
5069 chunk_memcat(&trash, n.ptr, max);
5070 trash.area[trash.data++] = ':';
5071 trash.area[trash.data++] = ' ';
5072
5073 max = v.len;
5074 UBOUND(max, trash.size - trash.data - 1);
5075 chunk_memcat(&trash, v.ptr, max);
5076 trash.area[trash.data++] = '\n';
5077
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +01005078 DISGUISE(write(1, trash.area, trash.data));
Christopher Faulet0f226952018-10-22 09:29:56 +02005079}
5080
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005081/* Allocate a new HTTP transaction for stream <s> unless there is one already.
5082 * In case of allocation failure, everything allocated is freed and NULL is
5083 * returned. Otherwise the new transaction is assigned to the stream and
5084 * returned.
5085 */
5086struct http_txn *http_alloc_txn(struct stream *s)
5087{
5088 struct http_txn *txn = s->txn;
5089
5090 if (txn)
5091 return txn;
5092
5093 txn = pool_alloc(pool_head_http_txn);
5094 if (!txn)
5095 return txn;
5096
5097 s->txn = txn;
5098 return txn;
5099}
5100
5101void http_txn_reset_req(struct http_txn *txn)
5102{
Christopher Faulet1aea50e2020-01-17 16:03:53 +01005103 txn->req.flags = 0;
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005104 txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */
5105}
5106
5107void http_txn_reset_res(struct http_txn *txn)
5108{
Christopher Faulet1aea50e2020-01-17 16:03:53 +01005109 txn->rsp.flags = 0;
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005110 txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */
5111}
5112
5113/*
5114 * Initialize a new HTTP transaction for stream <s>. It is assumed that all
5115 * the required fields are properly allocated and that we only need to (re)init
5116 * them. This should be used before processing any new request.
5117 */
5118void http_init_txn(struct stream *s)
5119{
5120 struct http_txn *txn = s->txn;
5121 struct conn_stream *cs = objt_cs(s->si[0].end);
5122
5123 txn->flags = ((cs && cs->flags & CS_FL_NOT_FIRST)
5124 ? (TX_NOT_FIRST|TX_WAIT_NEXT_RQ)
5125 : 0);
5126 txn->status = -1;
Christopher Faulet5cb513a2020-05-13 17:56:56 +02005127 txn->http_reply = NULL;
Willy Tarreau8b507582020-02-25 09:35:07 +01005128 write_u32(txn->cache_hash, 0);
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005129
5130 txn->cookie_first_date = 0;
5131 txn->cookie_last_date = 0;
5132
5133 txn->srv_cookie = NULL;
5134 txn->cli_cookie = NULL;
5135 txn->uri = NULL;
5136
5137 http_txn_reset_req(txn);
5138 http_txn_reset_res(txn);
5139
5140 txn->req.chn = &s->req;
5141 txn->rsp.chn = &s->res;
5142
5143 txn->auth.method = HTTP_AUTH_UNKNOWN;
5144
5145 vars_init(&s->vars_txn, SCOPE_TXN);
5146 vars_init(&s->vars_reqres, SCOPE_REQ);
5147}
5148
5149/* to be used at the end of a transaction */
5150void http_end_txn(struct stream *s)
5151{
5152 struct http_txn *txn = s->txn;
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005153
5154 /* these ones will have been dynamically allocated */
5155 pool_free(pool_head_requri, txn->uri);
5156 pool_free(pool_head_capture, txn->cli_cookie);
5157 pool_free(pool_head_capture, txn->srv_cookie);
Tim Duesterhusa17e6622020-03-05 20:19:02 +01005158 pool_free(pool_head_uniqueid, s->unique_id.ptr);
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005159
Tim Duesterhusa17e6622020-03-05 20:19:02 +01005160 s->unique_id = IST_NULL;
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005161 txn->uri = NULL;
5162 txn->srv_cookie = NULL;
5163 txn->cli_cookie = NULL;
5164
Christopher Faulet59399252019-11-07 14:27:52 +01005165 if (!LIST_ISEMPTY(&s->vars_txn.head))
5166 vars_prune(&s->vars_txn, s->sess, s);
5167 if (!LIST_ISEMPTY(&s->vars_reqres.head))
5168 vars_prune(&s->vars_reqres, s->sess, s);
5169}
5170
Christopher Fauleta8a46e22019-07-16 14:53:09 +02005171
5172DECLARE_POOL(pool_head_http_txn, "http_txn", sizeof(struct http_txn));
Christopher Faulet0f226952018-10-22 09:29:56 +02005173
Christopher Fauletf4eb75d2018-10-11 15:55:07 +02005174__attribute__((constructor))
Christopher Fauletfc9cfe42019-07-16 14:54:53 +02005175static void __http_protocol_init(void)
Christopher Fauletf4eb75d2018-10-11 15:55:07 +02005176{
5177}
5178
5179
5180/*
5181 * Local variables:
5182 * c-indent-level: 8
5183 * c-basic-offset: 8
5184 * End:
5185 */