blob: 7bae526826eaee01c1abd69bd22bbbe3d4938bcd [file] [log] [blame]
Christopher Fauletf4eb75d2018-10-11 15:55:07 +02001/*
2 * HTTP protocol analyzer
3 *
4 * Copyright (C) 2018 HAProxy Technologies, Christopher Faulet <cfaulet@haproxy.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Christopher Faulete0768eb2018-10-03 16:38:02 +020013#include <common/base64.h>
14#include <common/config.h>
15#include <common/debug.h>
Willy Tarreaub96b77e2018-12-11 10:22:41 +010016#include <common/htx.h>
Christopher Faulete0768eb2018-10-03 16:38:02 +020017#include <common/uri_auth.h>
18
Christopher Faulet0f226952018-10-22 09:29:56 +020019#include <types/capture.h>
Christopher Faulete0768eb2018-10-03 16:38:02 +020020
21#include <proto/acl.h>
Christopher Faulet3e964192018-10-24 11:39:23 +020022#include <proto/action.h>
Christopher Faulete0768eb2018-10-03 16:38:02 +020023#include <proto/channel.h>
24#include <proto/checks.h>
25#include <proto/connection.h>
26#include <proto/filters.h>
27#include <proto/hdr_idx.h>
Christopher Faulet0f226952018-10-22 09:29:56 +020028#include <proto/http_htx.h>
Christopher Faulete0768eb2018-10-03 16:38:02 +020029#include <proto/log.h>
Christopher Faulet3e964192018-10-24 11:39:23 +020030#include <proto/pattern.h>
Christopher Faulete0768eb2018-10-03 16:38:02 +020031#include <proto/proto_http.h>
32#include <proto/proxy.h>
Christopher Fauletfefc73d2018-10-24 21:18:04 +020033#include <proto/server.h>
Christopher Faulete0768eb2018-10-03 16:38:02 +020034#include <proto/stream.h>
35#include <proto/stream_interface.h>
36#include <proto/stats.h>
37
Christopher Faulet377c5a52018-10-24 21:21:30 +020038extern const char *stat_status_codes[];
Christopher Fauletf2824e62018-10-01 12:12:37 +020039
40static void htx_end_request(struct stream *s);
41static void htx_end_response(struct stream *s);
42
Christopher Faulet0f226952018-10-22 09:29:56 +020043static void htx_capture_headers(struct htx *htx, char **cap, struct cap_hdr *cap_hdr);
Christopher Faulet0b6bdc52018-10-24 11:05:36 +020044static int htx_del_hdr_value(char *start, char *end, char **from, char *next);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +010045static size_t htx_fmt_req_line(const struct htx_sl *sl, char *str, size_t len);
46static size_t htx_fmt_res_line(const struct htx_sl *sl, char *str, size_t len);
47static void htx_debug_stline(const char *dir, struct stream *s, const struct htx_sl *sl);
Christopher Faulet0f226952018-10-22 09:29:56 +020048static void htx_debug_hdr(const char *dir, struct stream *s, const struct ist n, const struct ist v);
49
Christopher Faulet3e964192018-10-24 11:39:23 +020050static enum rule_result htx_req_get_intercept_rule(struct proxy *px, struct list *rules, struct stream *s, int *deny_status);
51static enum rule_result htx_res_get_intercept_rule(struct proxy *px, struct list *rules, struct stream *s);
52
Christopher Faulet33640082018-10-24 11:53:01 +020053static int htx_apply_filters_to_request(struct stream *s, struct channel *req, struct proxy *px);
54static int htx_apply_filters_to_response(struct stream *s, struct channel *res, struct proxy *px);
55
Christopher Fauletfcda7c62018-10-24 11:56:22 +020056static void htx_manage_client_side_cookies(struct stream *s, struct channel *req);
57static void htx_manage_server_side_cookies(struct stream *s, struct channel *res);
58
Christopher Faulet377c5a52018-10-24 21:21:30 +020059static int htx_stats_check_uri(struct stream *s, struct http_txn *txn, struct proxy *backend);
60static int htx_handle_stats(struct stream *s, struct channel *req);
61
Christopher Faulet4a28a532019-03-01 11:19:40 +010062static int htx_handle_expect_hdr(struct stream *s, struct htx *htx, struct http_msg *msg);
Christopher Faulet23a3c792018-11-28 10:01:23 +010063static int htx_reply_100_continue(struct stream *s);
Christopher Faulet12c51e22018-11-28 15:59:42 +010064static int htx_reply_40x_unauthorized(struct stream *s, const char *auth_realm);
Christopher Faulet23a3c792018-11-28 10:01:23 +010065
Christopher Faulete0768eb2018-10-03 16:38:02 +020066/* This stream analyser waits for a complete HTTP request. It returns 1 if the
67 * processing can continue on next analysers, or zero if it either needs more
68 * data or wants to immediately abort the request (eg: timeout, error, ...). It
69 * is tied to AN_REQ_WAIT_HTTP and may may remove itself from s->req.analysers
70 * when it has nothing left to do, and may remove any analyser when it wants to
71 * abort.
72 */
73int htx_wait_for_request(struct stream *s, struct channel *req, int an_bit)
74{
Christopher Faulet9768c262018-10-22 09:34:31 +020075
Christopher Faulete0768eb2018-10-03 16:38:02 +020076 /*
Christopher Faulet9768c262018-10-22 09:34:31 +020077 * We will analyze a complete HTTP request to check the its syntax.
Christopher Faulete0768eb2018-10-03 16:38:02 +020078 *
Christopher Faulet9768c262018-10-22 09:34:31 +020079 * Once the start line and all headers are received, we may perform a
80 * capture of the error (if any), and we will set a few fields. We also
81 * check for monitor-uri, logging and finally headers capture.
Christopher Faulete0768eb2018-10-03 16:38:02 +020082 */
Christopher Faulete0768eb2018-10-03 16:38:02 +020083 struct session *sess = s->sess;
84 struct http_txn *txn = s->txn;
85 struct http_msg *msg = &txn->req;
Christopher Faulet9768c262018-10-22 09:34:31 +020086 struct htx *htx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +010087 struct htx_sl *sl;
Christopher Faulete0768eb2018-10-03 16:38:02 +020088
89 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n",
90 now_ms, __FUNCTION__,
91 s,
92 req,
93 req->rex, req->wex,
94 req->flags,
95 ci_data(req),
96 req->analysers);
97
Christopher Faulet27ba2dc2018-12-05 11:53:24 +010098 htx = htxbuf(&req->buf);
Christopher Faulet9768c262018-10-22 09:34:31 +020099
Willy Tarreau4236f032019-03-05 10:43:32 +0100100 /* Parsing errors are caught here */
101 if (htx->flags & HTX_FL_PARSING_ERROR) {
102 stream_inc_http_req_ctr(s);
103 stream_inc_http_err_ctr(s);
104 proxy_inc_fe_req_ctr(sess->fe);
105 goto return_bad_req;
106 }
107
Christopher Faulete0768eb2018-10-03 16:38:02 +0200108 /* we're speaking HTTP here, so let's speak HTTP to the client */
109 s->srv_error = http_return_srv_error;
110
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);
152 proxy_inc_fe_req_ctr(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;
158 msg->err_state = msg->msg_state;
159 msg->msg_state = HTTP_MSG_ERROR;
160 htx_reply_and_close(s, txn->status, NULL);
161 req->analysers &= AN_REQ_FLT_END;
162
Christopher Faulete0768eb2018-10-03 16:38:02 +0200163 if (!(s->flags & SF_FINST_MASK))
164 s->flags |= SF_FINST_R;
165 return 0;
166 }
167
Christopher Faulet9768c262018-10-22 09:34:31 +0200168 /* 2: has the read timeout expired ? */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200169 else if (req->flags & CF_READ_TIMEOUT || tick_is_expired(req->analyse_exp, now_ms)) {
170 if (!(s->flags & SF_ERR_MASK))
171 s->flags |= SF_ERR_CLITO;
172
173 if (txn->flags & TX_WAIT_NEXT_RQ)
174 goto failed_keep_alive;
175
176 if (sess->fe->options & PR_O_IGNORE_PRB)
177 goto failed_keep_alive;
178
Christopher Faulet9768c262018-10-22 09:34:31 +0200179 stream_inc_http_err_ctr(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200180 stream_inc_http_req_ctr(s);
181 proxy_inc_fe_req_ctr(sess->fe);
Olivier Houcharda798bf52019-03-08 18:52:00 +0100182 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200183 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100184 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200185
Christopher Faulet9768c262018-10-22 09:34:31 +0200186 txn->status = 408;
187 msg->err_state = msg->msg_state;
188 msg->msg_state = HTTP_MSG_ERROR;
Christopher Fauleta7b677c2018-11-29 16:48:49 +0100189 htx_reply_and_close(s, txn->status, htx_error_message(s));
Christopher Faulet9768c262018-10-22 09:34:31 +0200190 req->analysers &= AN_REQ_FLT_END;
191
Christopher Faulete0768eb2018-10-03 16:38:02 +0200192 if (!(s->flags & SF_FINST_MASK))
193 s->flags |= SF_FINST_R;
194 return 0;
195 }
196
Christopher Faulet9768c262018-10-22 09:34:31 +0200197 /* 3: have we encountered a close ? */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200198 else if (req->flags & CF_SHUTR) {
199 if (!(s->flags & SF_ERR_MASK))
200 s->flags |= SF_ERR_CLICL;
201
202 if (txn->flags & TX_WAIT_NEXT_RQ)
203 goto failed_keep_alive;
204
205 if (sess->fe->options & PR_O_IGNORE_PRB)
206 goto failed_keep_alive;
207
Christopher Faulete0768eb2018-10-03 16:38:02 +0200208 stream_inc_http_err_ctr(s);
209 stream_inc_http_req_ctr(s);
210 proxy_inc_fe_req_ctr(sess->fe);
Olivier Houcharda798bf52019-03-08 18:52:00 +0100211 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200212 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100213 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200214
Christopher Faulet9768c262018-10-22 09:34:31 +0200215 txn->status = 400;
216 msg->err_state = msg->msg_state;
217 msg->msg_state = HTTP_MSG_ERROR;
Christopher Fauleta7b677c2018-11-29 16:48:49 +0100218 htx_reply_and_close(s, txn->status, htx_error_message(s));
Christopher Faulet9768c262018-10-22 09:34:31 +0200219 req->analysers &= AN_REQ_FLT_END;
220
Christopher Faulete0768eb2018-10-03 16:38:02 +0200221 if (!(s->flags & SF_FINST_MASK))
222 s->flags |= SF_FINST_R;
223 return 0;
224 }
225
226 channel_dont_connect(req);
227 req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
228 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau1a18b542018-12-11 16:37:42 +0100229
Christopher Faulet9768c262018-10-22 09:34:31 +0200230 if (sess->listener->options & LI_O_NOQUICKACK && htx_is_not_empty(htx) &&
Christopher Faulete0768eb2018-10-03 16:38:02 +0200231 objt_conn(sess->origin) && conn_ctrl_ready(__objt_conn(sess->origin))) {
232 /* We need more data, we have to re-enable quick-ack in case we
233 * previously disabled it, otherwise we might cause the client
234 * to delay next data.
235 */
Willy Tarreau1a18b542018-12-11 16:37:42 +0100236 conn_set_quickack(objt_conn(sess->origin), 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200237 }
Willy Tarreau1a18b542018-12-11 16:37:42 +0100238
Christopher Faulet47365272018-10-31 17:40:50 +0100239 if ((req->flags & CF_READ_PARTIAL) && (txn->flags & TX_WAIT_NEXT_RQ)) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200240 /* If the client starts to talk, let's fall back to
241 * request timeout processing.
242 */
243 txn->flags &= ~TX_WAIT_NEXT_RQ;
244 req->analyse_exp = TICK_ETERNITY;
245 }
246
247 /* just set the request timeout once at the beginning of the request */
248 if (!tick_isset(req->analyse_exp)) {
Christopher Faulet47365272018-10-31 17:40:50 +0100249 if ((txn->flags & TX_WAIT_NEXT_RQ) && tick_isset(s->be->timeout.httpka))
Christopher Faulete0768eb2018-10-03 16:38:02 +0200250 req->analyse_exp = tick_add(now_ms, s->be->timeout.httpka);
251 else
252 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
253 }
254
255 /* we're not ready yet */
256 return 0;
257
258 failed_keep_alive:
259 /* Here we process low-level errors for keep-alive requests. In
260 * short, if the request is not the first one and it experiences
261 * a timeout, read error or shutdown, we just silently close so
262 * that the client can try again.
263 */
264 txn->status = 0;
265 msg->msg_state = HTTP_MSG_RQBEFORE;
266 req->analysers &= AN_REQ_FLT_END;
267 s->logs.logwait = 0;
268 s->logs.level = 0;
269 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Christopher Faulet9768c262018-10-22 09:34:31 +0200270 htx_reply_and_close(s, txn->status, NULL);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200271 return 0;
272 }
273
Christopher Faulet9768c262018-10-22 09:34:31 +0200274 msg->msg_state = HTTP_MSG_BODY;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200275 stream_inc_http_req_ctr(s);
276 proxy_inc_fe_req_ctr(sess->fe); /* one more valid request for this FE */
277
Christopher Faulet9768c262018-10-22 09:34:31 +0200278 /* kill the pending keep-alive timeout */
279 txn->flags &= ~TX_WAIT_NEXT_RQ;
280 req->analyse_exp = TICK_ETERNITY;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200281
Christopher Faulet29f17582019-05-23 11:03:26 +0200282 BUG_ON(htx_get_first_type(htx) != HTX_BLK_REQ_SL);
Christopher Faulet297fbb42019-05-13 14:41:27 +0200283 sl = http_get_stline(htx);
Christopher Faulet03599112018-11-27 11:21:21 +0100284
Christopher Faulet9768c262018-10-22 09:34:31 +0200285 /* 0: we might have to print this header in debug mode */
286 if (unlikely((global.mode & MODE_DEBUG) &&
287 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
288 int32_t pos;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200289
Christopher Faulet03599112018-11-27 11:21:21 +0100290 htx_debug_stline("clireq", s, sl);
Christopher Faulet9768c262018-10-22 09:34:31 +0200291
Christopher Fauleta3f15502019-05-13 15:27:23 +0200292 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
Christopher Faulet9768c262018-10-22 09:34:31 +0200293 struct htx_blk *blk = htx_get_blk(htx, pos);
294 enum htx_blk_type type = htx_get_blk_type(blk);
295
296 if (type == HTX_BLK_EOH)
297 break;
298 if (type != HTX_BLK_HDR)
299 continue;
300
301 htx_debug_hdr("clihdr", s,
302 htx_get_blk_name(htx, blk),
303 htx_get_blk_value(htx, blk));
304 }
305 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200306
307 /*
Christopher Faulet03599112018-11-27 11:21:21 +0100308 * 1: identify the method and the version. Also set HTTP flags
Christopher Faulete0768eb2018-10-03 16:38:02 +0200309 */
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100310 txn->meth = sl->info.req.meth;
Christopher Faulet03599112018-11-27 11:21:21 +0100311 if (sl->flags & HTX_SL_F_VER_11)
Christopher Faulet9768c262018-10-22 09:34:31 +0200312 msg->flags |= HTTP_MSGF_VER_11;
Christopher Faulet03599112018-11-27 11:21:21 +0100313 msg->flags |= HTTP_MSGF_XFER_LEN;
Christopher Faulet834eee72019-02-18 11:35:02 +0100314 msg->flags |= ((sl->flags & HTX_SL_F_CLEN) ? HTTP_MSGF_CNT_LEN : HTTP_MSGF_TE_CHNK);
Christopher Fauletb2db4fa2018-11-27 16:51:09 +0100315 if (sl->flags & HTX_SL_F_BODYLESS)
316 msg->flags |= HTTP_MSGF_BODYLESS;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200317
318 /* we can make use of server redirect on GET and HEAD */
319 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
320 s->flags |= SF_REDIRECTABLE;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100321 else if (txn->meth == HTTP_METH_OTHER && isteqi(htx_sl_req_meth(sl), ist("PRI"))) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200322 /* PRI is reserved for the HTTP/2 preface */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200323 goto return_bad_req;
324 }
325
326 /*
327 * 2: check if the URI matches the monitor_uri.
328 * We have to do this for every request which gets in, because
329 * the monitor-uri is defined by the frontend.
330 */
331 if (unlikely((sess->fe->monitor_uri_len != 0) &&
Christopher Faulet943ab4d2020-02-18 14:51:51 +0100332 isteq(htx_sl_req_uri(sl), ist2(sess->fe->monitor_uri, sess->fe->monitor_uri_len)))) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200333 /*
334 * We have found the monitor URI
335 */
336 struct acl_cond *cond;
337
338 s->flags |= SF_MONITOR;
Olivier Houcharda798bf52019-03-08 18:52:00 +0100339 _HA_ATOMIC_ADD(&sess->fe->fe_counters.intercepted_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200340
341 /* Check if we want to fail this monitor request or not */
342 list_for_each_entry(cond, &sess->fe->mon_fail_cond, list) {
343 int ret = acl_exec_cond(cond, sess->fe, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
344
345 ret = acl_pass(ret);
346 if (cond->pol == ACL_COND_UNLESS)
347 ret = !ret;
348
349 if (ret) {
350 /* we fail this request, let's return 503 service unavail */
351 txn->status = 503;
Christopher Fauleta7b677c2018-11-29 16:48:49 +0100352 htx_reply_and_close(s, txn->status, htx_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +0200353 if (!(s->flags & SF_ERR_MASK))
354 s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */
355 goto return_prx_cond;
356 }
357 }
358
Joseph Herlantc42c0e92018-11-25 10:43:27 -0800359 /* nothing to fail, let's reply normally */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200360 txn->status = 200;
Christopher Fauleta7b677c2018-11-29 16:48:49 +0100361 htx_reply_and_close(s, txn->status, htx_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +0200362 if (!(s->flags & SF_ERR_MASK))
363 s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */
364 goto return_prx_cond;
365 }
366
367 /*
368 * 3: Maybe we have to copy the original REQURI for the logs ?
369 * Note: we cannot log anymore if the request has been
370 * classified as invalid.
371 */
372 if (unlikely(s->logs.logwait & LW_REQ)) {
373 /* we have a complete HTTP request that we must log */
374 if ((txn->uri = pool_alloc(pool_head_requri)) != NULL) {
Christopher Faulet9768c262018-10-22 09:34:31 +0200375 size_t len;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200376
Christopher Faulet9768c262018-10-22 09:34:31 +0200377 len = htx_fmt_req_line(sl, txn->uri, global.tune.requri_len - 1);
378 txn->uri[len] = 0;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200379
380 if (!(s->logs.logwait &= ~(LW_REQ|LW_INIT)))
381 s->do_log(s);
382 } else {
383 ha_alert("HTTP logging : out of memory.\n");
384 }
385 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200386
Christopher Faulete0768eb2018-10-03 16:38:02 +0200387 /* if the frontend has "option http-use-proxy-header", we'll check if
388 * we have what looks like a proxied connection instead of a connection,
389 * and in this case set the TX_USE_PX_CONN flag to use Proxy-connection.
390 * Note that this is *not* RFC-compliant, however browsers and proxies
391 * happen to do that despite being non-standard :-(
392 * We consider that a request not beginning with either '/' or '*' is
393 * a proxied connection, which covers both "scheme://location" and
394 * CONNECT ip:port.
395 */
396 if ((sess->fe->options2 & PR_O2_USE_PXHDR) &&
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100397 *HTX_SL_REQ_UPTR(sl) != '/' && *HTX_SL_REQ_UPTR(sl) != '*')
Christopher Faulete0768eb2018-10-03 16:38:02 +0200398 txn->flags |= TX_USE_PX_CONN;
399
Christopher Faulete0768eb2018-10-03 16:38:02 +0200400 /* 5: we may need to capture headers */
401 if (unlikely((s->logs.logwait & LW_REQHDR) && s->req_cap))
Christopher Faulet9768c262018-10-22 09:34:31 +0200402 htx_capture_headers(htx, s->req_cap, sess->fe->req_cap);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200403
Christopher Faulet03b9d8b2019-03-26 22:02:00 +0100404 /* by default, close the stream at the end of the transaction. */
405 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200406
407 /* we may have to wait for the request's body */
Christopher Faulet9768c262018-10-22 09:34:31 +0200408 if (s->be->options & PR_O_WREQ_BODY)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200409 req->analysers |= AN_REQ_HTTP_BODY;
410
411 /*
412 * RFC7234#4:
413 * A cache MUST write through requests with methods
414 * that are unsafe (Section 4.2.1 of [RFC7231]) to
415 * the origin server; i.e., a cache is not allowed
416 * to generate a reply to such a request before
417 * having forwarded the request and having received
418 * a corresponding response.
419 *
420 * RFC7231#4.2.1:
421 * Of the request methods defined by this
422 * specification, the GET, HEAD, OPTIONS, and TRACE
423 * methods are defined to be safe.
424 */
425 if (likely(txn->meth == HTTP_METH_GET ||
426 txn->meth == HTTP_METH_HEAD ||
427 txn->meth == HTTP_METH_OPTIONS ||
428 txn->meth == HTTP_METH_TRACE))
429 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
430
431 /* end of job, return OK */
432 req->analysers &= ~an_bit;
433 req->analyse_exp = TICK_ETERNITY;
Christopher Faulet9768c262018-10-22 09:34:31 +0200434
Christopher Faulete0768eb2018-10-03 16:38:02 +0200435 return 1;
436
437 return_bad_req:
Christopher Faulet9768c262018-10-22 09:34:31 +0200438 txn->status = 400;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200439 txn->req.err_state = txn->req.msg_state;
440 txn->req.msg_state = HTTP_MSG_ERROR;
Christopher Fauleta7b677c2018-11-29 16:48:49 +0100441 htx_reply_and_close(s, txn->status, htx_error_message(s));
Olivier Houcharda798bf52019-03-08 18:52:00 +0100442 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200443 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100444 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200445
446 return_prx_cond:
447 if (!(s->flags & SF_ERR_MASK))
448 s->flags |= SF_ERR_PRXCOND;
449 if (!(s->flags & SF_FINST_MASK))
450 s->flags |= SF_FINST_R;
451
452 req->analysers &= AN_REQ_FLT_END;
453 req->analyse_exp = TICK_ETERNITY;
454 return 0;
455}
456
457
458/* This stream analyser runs all HTTP request processing which is common to
459 * frontends and backends, which means blocking ACLs, filters, connection-close,
460 * reqadd, stats and redirects. This is performed for the designated proxy.
461 * It returns 1 if the processing can continue on next analysers, or zero if it
462 * either needs more data or wants to immediately abort the request (eg: deny,
463 * error, ...).
464 */
465int htx_process_req_common(struct stream *s, struct channel *req, int an_bit, struct proxy *px)
466{
467 struct session *sess = s->sess;
468 struct http_txn *txn = s->txn;
469 struct http_msg *msg = &txn->req;
Christopher Fauletff2759f2018-10-24 11:13:16 +0200470 struct htx *htx;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200471 struct redirect_rule *rule;
472 struct cond_wordlist *wl;
473 enum rule_result verdict;
474 int deny_status = HTTP_ERR_403;
475 struct connection *conn = objt_conn(sess->origin);
476
477 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
478 /* we need more data */
479 goto return_prx_yield;
480 }
481
482 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n",
483 now_ms, __FUNCTION__,
484 s,
485 req,
486 req->rex, req->wex,
487 req->flags,
488 ci_data(req),
489 req->analysers);
490
Christopher Faulet27ba2dc2018-12-05 11:53:24 +0100491 htx = htxbuf(&req->buf);
Christopher Fauletff2759f2018-10-24 11:13:16 +0200492
Christopher Faulet1907ccc2019-04-29 13:12:02 +0200493 /* just in case we have some per-backend tracking. Only called the first
494 * execution of the analyser. */
495 if (!s->current_rule || s->current_rule_list != &px->http_req_rules)
496 stream_inc_be_http_req_ctr(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200497
498 /* evaluate http-request rules */
499 if (!LIST_ISEMPTY(&px->http_req_rules)) {
Christopher Fauletff2759f2018-10-24 11:13:16 +0200500 verdict = htx_req_get_intercept_rule(px, &px->http_req_rules, s, &deny_status);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200501
502 switch (verdict) {
503 case HTTP_RULE_RES_YIELD: /* some data miss, call the function later. */
504 goto return_prx_yield;
505
506 case HTTP_RULE_RES_CONT:
507 case HTTP_RULE_RES_STOP: /* nothing to do */
508 break;
509
510 case HTTP_RULE_RES_DENY: /* deny or tarpit */
511 if (txn->flags & TX_CLTARPIT)
512 goto tarpit;
513 goto deny;
514
515 case HTTP_RULE_RES_ABRT: /* abort request, response already sent. Eg: auth */
516 goto return_prx_cond;
517
518 case HTTP_RULE_RES_DONE: /* OK, but terminate request processing (eg: redirect) */
519 goto done;
520
521 case HTTP_RULE_RES_BADREQ: /* failed with a bad request */
522 goto return_bad_req;
523 }
524 }
525
526 if (conn && (conn->flags & CO_FL_EARLY_DATA) &&
Olivier Houchard629693f2020-01-23 14:57:36 +0100527 (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS))) {
Christopher Fauletff2759f2018-10-24 11:13:16 +0200528 struct http_hdr_ctx ctx;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200529
Christopher Fauletff2759f2018-10-24 11:13:16 +0200530 ctx.blk = NULL;
531 if (!http_find_header(htx, ist("Early-Data"), &ctx, 0)) {
532 if (unlikely(!http_add_header(htx, ist("Early-Data"), ist("1"))))
Christopher Faulete0768eb2018-10-03 16:38:02 +0200533 goto return_bad_req;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200534 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200535 }
536
537 /* OK at this stage, we know that the request was accepted according to
538 * the http-request rules, we can check for the stats. Note that the
539 * URI is detected *before* the req* rules in order not to be affected
540 * by a possible reqrep, while they are processed *after* so that a
541 * reqdeny can still block them. This clearly needs to change in 1.6!
542 */
Christopher Faulet4629d082019-07-04 11:27:15 +0200543 if (!s->target && htx_stats_check_uri(s, txn, px)) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200544 s->target = &http_stats_applet.obj_type;
Willy Tarreau14bfe9a2018-12-19 15:19:27 +0100545 if (unlikely(!si_register_handler(&s->si[1], objt_applet(s->target)))) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200546 txn->status = 500;
547 s->logs.tv_request = now;
Christopher Fauleta7b677c2018-11-29 16:48:49 +0100548 htx_reply_and_close(s, txn->status, htx_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +0200549
550 if (!(s->flags & SF_ERR_MASK))
551 s->flags |= SF_ERR_RESOURCE;
552 goto return_prx_cond;
553 }
554
555 /* parse the whole stats request and extract the relevant information */
Christopher Fauletff2759f2018-10-24 11:13:16 +0200556 htx_handle_stats(s, req);
557 verdict = htx_req_get_intercept_rule(px, &px->uri_auth->http_req_rules, s, &deny_status);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200558 /* not all actions implemented: deny, allow, auth */
559
560 if (verdict == HTTP_RULE_RES_DENY) /* stats http-request deny */
561 goto deny;
562
563 if (verdict == HTTP_RULE_RES_ABRT) /* stats auth / stats http-request auth */
564 goto return_prx_cond;
565 }
566
567 /* evaluate the req* rules except reqadd */
568 if (px->req_exp != NULL) {
Christopher Fauletff2759f2018-10-24 11:13:16 +0200569 if (htx_apply_filters_to_request(s, req, px) < 0)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200570 goto return_bad_req;
571
572 if (txn->flags & TX_CLDENY)
573 goto deny;
574
575 if (txn->flags & TX_CLTARPIT) {
576 deny_status = HTTP_ERR_500;
577 goto tarpit;
578 }
579 }
580
581 /* add request headers from the rule sets in the same order */
582 list_for_each_entry(wl, &px->req_add, list) {
Christopher Fauletff2759f2018-10-24 11:13:16 +0200583 struct ist n,v;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200584 if (wl->cond) {
585 int ret = acl_exec_cond(wl->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
586 ret = acl_pass(ret);
587 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
588 ret = !ret;
589 if (!ret)
590 continue;
591 }
592
Christopher Fauletff2759f2018-10-24 11:13:16 +0200593 http_parse_header(ist2(wl->s, strlen(wl->s)), &n, &v);
594 if (unlikely(!http_add_header(htx, n, v)))
Christopher Faulete0768eb2018-10-03 16:38:02 +0200595 goto return_bad_req;
596 }
597
Christopher Faulet2571bc62019-03-01 11:44:26 +0100598 /* Proceed with the applets now. */
599 if (unlikely(objt_applet(s->target))) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200600 if (sess->fe == s->be) /* report it if the request was intercepted by the frontend */
Olivier Houcharda798bf52019-03-08 18:52:00 +0100601 _HA_ATOMIC_ADD(&sess->fe->fe_counters.intercepted_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200602
Christopher Fauletbcf242a2019-03-01 11:36:26 +0100603 if (htx_handle_expect_hdr(s, htx, msg) == -1)
604 goto return_bad_req;
605
Christopher Faulete0768eb2018-10-03 16:38:02 +0200606 if (!(s->flags & SF_ERR_MASK)) // this is not really an error but it is
607 s->flags |= SF_ERR_LOCAL; // to mark that it comes from the proxy
608 if (!(s->flags & SF_FINST_MASK))
609 s->flags |= SF_FINST_R;
610
611 /* enable the minimally required analyzers to handle keep-alive and compression on the HTTP response */
612 req->analysers &= (AN_REQ_HTTP_BODY | AN_REQ_FLT_HTTP_HDRS | AN_REQ_FLT_END);
613 req->analysers &= ~AN_REQ_FLT_XFER_DATA;
614 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Christopher Fauletbcf242a2019-03-01 11:36:26 +0100615
616 req->flags |= CF_SEND_DONTWAIT;
617 s->flags |= SF_ASSIGNED;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200618 goto done;
619 }
620
621 /* check whether we have some ACLs set to redirect this request */
622 list_for_each_entry(rule, &px->redirect_rules, list) {
623 if (rule->cond) {
624 int ret;
625
626 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
627 ret = acl_pass(ret);
628 if (rule->cond->pol == ACL_COND_UNLESS)
629 ret = !ret;
630 if (!ret)
631 continue;
632 }
Christopher Fauletf2824e62018-10-01 12:12:37 +0200633 if (!htx_apply_redirect_rule(rule, s, txn))
Christopher Faulete0768eb2018-10-03 16:38:02 +0200634 goto return_bad_req;
635 goto done;
636 }
637
638 /* POST requests may be accompanied with an "Expect: 100-Continue" header.
639 * If this happens, then the data will not come immediately, so we must
640 * send all what we have without waiting. Note that due to the small gain
641 * in waiting for the body of the request, it's easier to simply put the
642 * CF_SEND_DONTWAIT flag any time. It's a one-shot flag so it will remove
643 * itself once used.
644 */
645 req->flags |= CF_SEND_DONTWAIT;
646
647 done: /* done with this analyser, continue with next ones that the calling
648 * points will have set, if any.
649 */
650 req->analyse_exp = TICK_ETERNITY;
651 done_without_exp: /* done with this analyser, but dont reset the analyse_exp. */
652 req->analysers &= ~an_bit;
653 return 1;
654
655 tarpit:
656 /* Allow cookie logging
657 */
658 if (s->be->cookie_name || sess->fe->capture_name)
Christopher Fauletff2759f2018-10-24 11:13:16 +0200659 htx_manage_client_side_cookies(s, req);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200660
661 /* When a connection is tarpitted, we use the tarpit timeout,
662 * which may be the same as the connect timeout if unspecified.
663 * If unset, then set it to zero because we really want it to
664 * eventually expire. We build the tarpit as an analyser.
665 */
Christopher Faulet202c6ce2019-01-07 14:57:35 +0100666 channel_htx_erase(&s->req, htx);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200667
668 /* wipe the request out so that we can drop the connection early
669 * if the client closes first.
670 */
671 channel_dont_connect(req);
672
673 txn->status = http_err_codes[deny_status];
674
675 req->analysers &= AN_REQ_FLT_END; /* remove switching rules etc... */
676 req->analysers |= AN_REQ_HTTP_TARPIT;
677 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit);
678 if (!req->analyse_exp)
679 req->analyse_exp = tick_add(now_ms, 0);
680 stream_inc_http_err_ctr(s);
Olivier Houcharda798bf52019-03-08 18:52:00 +0100681 _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200682 if (sess->fe != s->be)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100683 _HA_ATOMIC_ADD(&s->be->be_counters.denied_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200684 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100685 _HA_ATOMIC_ADD(&sess->listener->counters->denied_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200686 goto done_without_exp;
687
688 deny: /* this request was blocked (denied) */
689
690 /* Allow cookie logging
691 */
692 if (s->be->cookie_name || sess->fe->capture_name)
Christopher Fauletff2759f2018-10-24 11:13:16 +0200693 htx_manage_client_side_cookies(s, req);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200694
695 txn->flags |= TX_CLDENY;
696 txn->status = http_err_codes[deny_status];
697 s->logs.tv_request = now;
Christopher Fauleta7b677c2018-11-29 16:48:49 +0100698 htx_reply_and_close(s, txn->status, htx_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +0200699 stream_inc_http_err_ctr(s);
Olivier Houcharda798bf52019-03-08 18:52:00 +0100700 _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200701 if (sess->fe != s->be)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100702 _HA_ATOMIC_ADD(&s->be->be_counters.denied_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200703 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100704 _HA_ATOMIC_ADD(&sess->listener->counters->denied_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200705 goto return_prx_cond;
706
707 return_bad_req:
Christopher Faulete0768eb2018-10-03 16:38:02 +0200708 txn->req.err_state = txn->req.msg_state;
709 txn->req.msg_state = HTTP_MSG_ERROR;
710 txn->status = 400;
Christopher Fauleta7b677c2018-11-29 16:48:49 +0100711 htx_reply_and_close(s, txn->status, htx_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +0200712
Olivier Houcharda798bf52019-03-08 18:52:00 +0100713 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200714 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100715 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200716
717 return_prx_cond:
718 if (!(s->flags & SF_ERR_MASK))
719 s->flags |= SF_ERR_PRXCOND;
720 if (!(s->flags & SF_FINST_MASK))
721 s->flags |= SF_FINST_R;
722
723 req->analysers &= AN_REQ_FLT_END;
724 req->analyse_exp = TICK_ETERNITY;
725 return 0;
726
727 return_prx_yield:
728 channel_dont_connect(req);
729 return 0;
730}
731
732/* This function performs all the processing enabled for the current request.
733 * It returns 1 if the processing can continue on next analysers, or zero if it
734 * needs more data, encounters an error, or wants to immediately abort the
735 * request. It relies on buffers flags, and updates s->req.analysers.
736 */
737int htx_process_request(struct stream *s, struct channel *req, int an_bit)
738{
739 struct session *sess = s->sess;
740 struct http_txn *txn = s->txn;
741 struct http_msg *msg = &txn->req;
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200742 struct htx *htx;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200743 struct connection *cli_conn = objt_conn(strm_sess(s)->origin);
744
745 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
746 /* we need more data */
747 channel_dont_connect(req);
748 return 0;
749 }
750
751 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n",
752 now_ms, __FUNCTION__,
753 s,
754 req,
755 req->rex, req->wex,
756 req->flags,
757 ci_data(req),
758 req->analysers);
759
760 /*
761 * Right now, we know that we have processed the entire headers
762 * and that unwanted requests have been filtered out. We can do
763 * whatever we want with the remaining request. Also, now we
764 * may have separate values for ->fe, ->be.
765 */
Christopher Faulet27ba2dc2018-12-05 11:53:24 +0100766 htx = htxbuf(&req->buf);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200767
768 /*
769 * If HTTP PROXY is set we simply get remote server address parsing
770 * incoming request. Note that this requires that a connection is
771 * allocated on the server side.
772 */
773 if ((s->be->options & PR_O_HTTP_PROXY) && !(s->flags & SF_ADDR_SET)) {
774 struct connection *conn;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100775 struct htx_sl *sl;
776 struct ist uri, path;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200777
778 /* Note that for now we don't reuse existing proxy connections */
779 if (unlikely((conn = cs_conn(si_alloc_cs(&s->si[1], NULL))) == NULL)) {
780 txn->req.err_state = txn->req.msg_state;
781 txn->req.msg_state = HTTP_MSG_ERROR;
782 txn->status = 500;
783 req->analysers &= AN_REQ_FLT_END;
Christopher Fauleta7b677c2018-11-29 16:48:49 +0100784 htx_reply_and_close(s, txn->status, htx_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +0200785
786 if (!(s->flags & SF_ERR_MASK))
787 s->flags |= SF_ERR_RESOURCE;
788 if (!(s->flags & SF_FINST_MASK))
789 s->flags |= SF_FINST_R;
790
791 return 0;
792 }
Christopher Faulet297fbb42019-05-13 14:41:27 +0200793 sl = http_get_stline(htx);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100794 uri = htx_sl_req_uri(sl);
795 path = http_get_path(uri);
796 if (url2sa(uri.ptr, uri.len - path.len, &conn->addr.to, NULL) == -1)
Christopher Faulete0768eb2018-10-03 16:38:02 +0200797 goto return_bad_req;
798
799 /* if the path was found, we have to remove everything between
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200800 * uri.ptr and path.ptr (excluded). If it was not found, we need
801 * to replace from all the uri by a single "/".
802 *
803 * Instead of rewritting the whole start line, we just update
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100804 * the star-line URI. Some space will be lost but it should be
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200805 * insignificant.
Christopher Faulete0768eb2018-10-03 16:38:02 +0200806 */
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100807 istcpy(&uri, (path.len ? path : ist("/")), uri.len);
Willy Tarreau3284dd22019-07-18 16:17:15 +0200808 conn->target = &s->be->obj_type;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200809 }
810
811 /*
812 * 7: Now we can work with the cookies.
813 * Note that doing so might move headers in the request, but
814 * the fields will stay coherent and the URI will not move.
815 * This should only be performed in the backend.
816 */
817 if (s->be->cookie_name || sess->fe->capture_name)
Christopher Fauletb6aadbd2018-12-18 16:41:31 +0100818 htx_manage_client_side_cookies(s, req);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200819
820 /* add unique-id if "header-unique-id" is specified */
821
822 if (!LIST_ISEMPTY(&sess->fe->format_unique_id) && !s->unique_id) {
823 if ((s->unique_id = pool_alloc(pool_head_uniqueid)) == NULL)
824 goto return_bad_req;
825 s->unique_id[0] = '\0';
826 build_logline(s, s->unique_id, UNIQUEID_LEN, &sess->fe->format_unique_id);
827 }
828
829 if (sess->fe->header_unique_id && s->unique_id) {
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200830 struct ist n = ist2(sess->fe->header_unique_id, strlen(sess->fe->header_unique_id));
831 struct ist v = ist2(s->unique_id, strlen(s->unique_id));
832
833 if (unlikely(!http_add_header(htx, n, v)))
Christopher Faulete0768eb2018-10-03 16:38:02 +0200834 goto return_bad_req;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200835 }
836
837 /*
838 * 9: add X-Forwarded-For if either the frontend or the backend
839 * asks for it.
840 */
841 if ((sess->fe->options | s->be->options) & PR_O_FWDFOR) {
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200842 struct http_hdr_ctx ctx = { .blk = NULL };
843 struct ist hdr = ist2(s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_name : sess->fe->fwdfor_hdr_name,
844 s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_len : sess->fe->fwdfor_hdr_len);
845
Christopher Faulete0768eb2018-10-03 16:38:02 +0200846 if (!((sess->fe->options | s->be->options) & PR_O_FF_ALWAYS) &&
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200847 http_find_header(htx, hdr, &ctx, 0)) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200848 /* The header is set to be added only if none is present
849 * and we found it, so don't do anything.
850 */
851 }
852 else if (cli_conn && cli_conn->addr.from.ss_family == AF_INET) {
853 /* Add an X-Forwarded-For header unless the source IP is
854 * in the 'except' network range.
855 */
856 if ((!sess->fe->except_mask.s_addr ||
857 (((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr & sess->fe->except_mask.s_addr)
858 != sess->fe->except_net.s_addr) &&
859 (!s->be->except_mask.s_addr ||
860 (((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr & s->be->except_mask.s_addr)
861 != s->be->except_net.s_addr)) {
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200862 unsigned char *pn = (unsigned char *)&((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200863
864 /* Note: we rely on the backend to get the header name to be used for
865 * x-forwarded-for, because the header is really meant for the backends.
866 * However, if the backend did not specify any option, we have to rely
867 * on the frontend's header name.
868 */
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200869 chunk_printf(&trash, "%d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
870 if (unlikely(!http_add_header(htx, hdr, ist2(trash.area, trash.data))))
Christopher Faulete0768eb2018-10-03 16:38:02 +0200871 goto return_bad_req;
872 }
873 }
874 else if (cli_conn && cli_conn->addr.from.ss_family == AF_INET6) {
875 /* FIXME: for the sake of completeness, we should also support
876 * 'except' here, although it is mostly useless in this case.
877 */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200878 char pn[INET6_ADDRSTRLEN];
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200879
Christopher Faulete0768eb2018-10-03 16:38:02 +0200880 inet_ntop(AF_INET6,
881 (const void *)&((struct sockaddr_in6 *)(&cli_conn->addr.from))->sin6_addr,
882 pn, sizeof(pn));
883
884 /* Note: we rely on the backend to get the header name to be used for
885 * x-forwarded-for, because the header is really meant for the backends.
886 * However, if the backend did not specify any option, we have to rely
887 * on the frontend's header name.
888 */
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200889 chunk_printf(&trash, "%s", pn);
890 if (unlikely(!http_add_header(htx, hdr, ist2(trash.area, trash.data))))
Christopher Faulete0768eb2018-10-03 16:38:02 +0200891 goto return_bad_req;
892 }
893 }
894
895 /*
896 * 10: add X-Original-To if either the frontend or the backend
897 * asks for it.
898 */
899 if ((sess->fe->options | s->be->options) & PR_O_ORGTO) {
900
901 /* FIXME: don't know if IPv6 can handle that case too. */
902 if (cli_conn && cli_conn->addr.from.ss_family == AF_INET) {
903 /* Add an X-Original-To header unless the destination IP is
904 * in the 'except' network range.
905 */
906 conn_get_to_addr(cli_conn);
907
908 if (cli_conn->addr.to.ss_family == AF_INET &&
909 ((!sess->fe->except_mask_to.s_addr ||
910 (((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr.s_addr & sess->fe->except_mask_to.s_addr)
911 != sess->fe->except_to.s_addr) &&
912 (!s->be->except_mask_to.s_addr ||
913 (((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr.s_addr & s->be->except_mask_to.s_addr)
914 != s->be->except_to.s_addr))) {
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200915 struct ist hdr;
916 unsigned char *pn = (unsigned char *)&((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
Christopher Faulete0768eb2018-10-03 16:38:02 +0200917
918 /* Note: we rely on the backend to get the header name to be used for
919 * x-original-to, because the header is really meant for the backends.
920 * However, if the backend did not specify any option, we have to rely
921 * on the frontend's header name.
922 */
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200923 if (s->be->orgto_hdr_len)
924 hdr = ist2(s->be->orgto_hdr_name, s->be->orgto_hdr_len);
925 else
926 hdr = ist2(sess->fe->orgto_hdr_name, sess->fe->orgto_hdr_len);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200927
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200928 chunk_printf(&trash, "%d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]);
929 if (unlikely(!http_add_header(htx, hdr, ist2(trash.area, trash.data))))
Christopher Faulete0768eb2018-10-03 16:38:02 +0200930 goto return_bad_req;
931 }
932 }
Christopher Faulete0768eb2018-10-03 16:38:02 +0200933 }
934
Christopher Faulete0768eb2018-10-03 16:38:02 +0200935 /* If we have no server assigned yet and we're balancing on url_param
936 * with a POST request, we may be interested in checking the body for
937 * that parameter. This will be done in another analyser.
938 */
939 if (!(s->flags & (SF_ASSIGNED|SF_DIRECT)) &&
Willy Tarreau089eaa02019-01-14 15:17:46 +0100940 s->txn->meth == HTTP_METH_POST &&
941 (s->be->lbprm.algo & BE_LB_ALGO) == BE_LB_ALGO_PH) {
Christopher Faulete0768eb2018-10-03 16:38:02 +0200942 channel_dont_connect(req);
943 req->analysers |= AN_REQ_HTTP_BODY;
944 }
945
946 req->analysers &= ~AN_REQ_FLT_XFER_DATA;
947 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Willy Tarreau1a18b542018-12-11 16:37:42 +0100948
Christopher Faulete0768eb2018-10-03 16:38:02 +0200949 /* We expect some data from the client. Unless we know for sure
950 * we already have a full request, we have to re-enable quick-ack
951 * in case we previously disabled it, otherwise we might cause
952 * the client to delay further data.
953 */
954 if ((sess->listener->options & LI_O_NOQUICKACK) &&
Christopher Fauletd7bdfb12018-10-24 11:14:34 +0200955 (htx_get_tail_type(htx) != HTX_BLK_EOM))
Willy Tarreau1a18b542018-12-11 16:37:42 +0100956 conn_set_quickack(cli_conn, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200957
958 /*************************************************************
959 * OK, that's finished for the headers. We have done what we *
960 * could. Let's switch to the DATA state. *
961 ************************************************************/
962 req->analyse_exp = TICK_ETERNITY;
963 req->analysers &= ~an_bit;
964
965 s->logs.tv_request = now;
966 /* OK let's go on with the BODY now */
967 return 1;
968
969 return_bad_req: /* let's centralize all bad requests */
Christopher Faulete0768eb2018-10-03 16:38:02 +0200970 txn->req.err_state = txn->req.msg_state;
971 txn->req.msg_state = HTTP_MSG_ERROR;
972 txn->status = 400;
973 req->analysers &= AN_REQ_FLT_END;
Christopher Fauleta7b677c2018-11-29 16:48:49 +0100974 htx_reply_and_close(s, txn->status, htx_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +0200975
Olivier Houcharda798bf52019-03-08 18:52:00 +0100976 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200977 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100978 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +0200979
980 if (!(s->flags & SF_ERR_MASK))
981 s->flags |= SF_ERR_PRXCOND;
982 if (!(s->flags & SF_FINST_MASK))
983 s->flags |= SF_FINST_R;
984 return 0;
985}
986
987/* This function is an analyser which processes the HTTP tarpit. It always
988 * returns zero, at the beginning because it prevents any other processing
989 * from occurring, and at the end because it terminates the request.
990 */
991int htx_process_tarpit(struct stream *s, struct channel *req, int an_bit)
992{
993 struct http_txn *txn = s->txn;
994
995 /* This connection is being tarpitted. The CLIENT side has
996 * already set the connect expiration date to the right
997 * timeout. We just have to check that the client is still
998 * there and that the timeout has not expired.
999 */
1000 channel_dont_connect(req);
1001 if ((req->flags & (CF_SHUTR|CF_READ_ERROR)) == 0 &&
1002 !tick_is_expired(req->analyse_exp, now_ms))
1003 return 0;
1004
1005 /* We will set the queue timer to the time spent, just for
1006 * logging purposes. We fake a 500 server error, so that the
1007 * attacker will not suspect his connection has been tarpitted.
1008 * It will not cause trouble to the logs because we can exclude
1009 * the tarpitted connections by filtering on the 'PT' status flags.
1010 */
1011 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1012
Christopher Fauletef9a1692020-02-21 10:20:46 +01001013 htx_reply_and_close(s, txn->status, (!(req->flags & CF_READ_ERROR) ? htx_error_message(s) : NULL));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001014
1015 req->analysers &= AN_REQ_FLT_END;
1016 req->analyse_exp = TICK_ETERNITY;
1017
1018 if (!(s->flags & SF_ERR_MASK))
1019 s->flags |= SF_ERR_PRXCOND;
1020 if (!(s->flags & SF_FINST_MASK))
1021 s->flags |= SF_FINST_T;
1022 return 0;
1023}
1024
1025/* This function is an analyser which waits for the HTTP request body. It waits
1026 * for either the buffer to be full, or the full advertised contents to have
1027 * reached the buffer. It must only be called after the standard HTTP request
1028 * processing has occurred, because it expects the request to be parsed and will
1029 * look for the Expect header. It may send a 100-Continue interim response. It
1030 * takes in input any state starting from HTTP_MSG_BODY and leaves with one of
1031 * HTTP_MSG_CHK_SIZE, HTTP_MSG_DATA or HTTP_MSG_TRAILERS. It returns zero if it
1032 * needs to read more data, or 1 once it has completed its analysis.
1033 */
1034int htx_wait_for_request_body(struct stream *s, struct channel *req, int an_bit)
1035{
1036 struct session *sess = s->sess;
1037 struct http_txn *txn = s->txn;
1038 struct http_msg *msg = &s->txn->req;
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001039 struct htx *htx;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001040
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001041
1042 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n",
1043 now_ms, __FUNCTION__,
1044 s,
1045 req,
1046 req->rex, req->wex,
1047 req->flags,
1048 ci_data(req),
1049 req->analysers);
1050
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001051 htx = htxbuf(&req->buf);
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001052
Willy Tarreau4236f032019-03-05 10:43:32 +01001053 if (htx->flags & HTX_FL_PARSING_ERROR)
1054 goto return_bad_req;
1055
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001056 if (msg->msg_state < HTTP_MSG_BODY)
1057 goto missing_data;
Christopher Faulet9768c262018-10-22 09:34:31 +02001058
Christopher Faulete0768eb2018-10-03 16:38:02 +02001059 /* We have to parse the HTTP request body to find any required data.
1060 * "balance url_param check_post" should have been the only way to get
1061 * into this. We were brought here after HTTP header analysis, so all
1062 * related structures are ready.
1063 */
1064
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001065 if (msg->msg_state < HTTP_MSG_DATA) {
Christopher Faulet4a28a532019-03-01 11:19:40 +01001066 if (htx_handle_expect_hdr(s, htx, msg) == -1)
1067 goto return_bad_req;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001068 }
1069
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001070 msg->msg_state = HTTP_MSG_DATA;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001071
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001072 /* Now we're in HTTP_MSG_DATA. We just need to know if all data have
1073 * been received or if the buffer is full.
Christopher Faulete0768eb2018-10-03 16:38:02 +02001074 */
Christopher Faulet54b5e212019-06-04 10:08:28 +02001075 if (htx_get_tail_type(htx) > HTX_BLK_DATA ||
Christopher Fauletdcd8c5e2019-01-21 11:24:38 +01001076 channel_htx_full(req, htx, global.tune.maxrewrite))
Christopher Faulete0768eb2018-10-03 16:38:02 +02001077 goto http_end;
1078
Christopher Fauletf76ebe82018-10-24 11:16:22 +02001079 missing_data:
Christopher Faulete0768eb2018-10-03 16:38:02 +02001080 if ((req->flags & CF_READ_TIMEOUT) || tick_is_expired(req->analyse_exp, now_ms)) {
1081 txn->status = 408;
Christopher Fauleta7b677c2018-11-29 16:48:49 +01001082 htx_reply_and_close(s, txn->status, htx_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001083
1084 if (!(s->flags & SF_ERR_MASK))
1085 s->flags |= SF_ERR_CLITO;
1086 if (!(s->flags & SF_FINST_MASK))
1087 s->flags |= SF_FINST_D;
1088 goto return_err_msg;
1089 }
1090
1091 /* we get here if we need to wait for more data */
1092 if (!(req->flags & (CF_SHUTR | CF_READ_ERROR))) {
1093 /* Not enough data. We'll re-use the http-request
1094 * timeout here. Ideally, we should set the timeout
1095 * relative to the accept() date. We just set the
1096 * request timeout once at the beginning of the
1097 * request.
1098 */
1099 channel_dont_connect(req);
1100 if (!tick_isset(req->analyse_exp))
1101 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
1102 return 0;
1103 }
1104
1105 http_end:
1106 /* The situation will not evolve, so let's give up on the analysis. */
1107 s->logs.tv_request = now; /* update the request timer to reflect full request */
1108 req->analysers &= ~an_bit;
1109 req->analyse_exp = TICK_ETERNITY;
1110 return 1;
1111
1112 return_bad_req: /* let's centralize all bad requests */
1113 txn->req.err_state = txn->req.msg_state;
1114 txn->req.msg_state = HTTP_MSG_ERROR;
1115 txn->status = 400;
Christopher Fauleta7b677c2018-11-29 16:48:49 +01001116 htx_reply_and_close(s, txn->status, htx_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001117
1118 if (!(s->flags & SF_ERR_MASK))
1119 s->flags |= SF_ERR_PRXCOND;
1120 if (!(s->flags & SF_FINST_MASK))
1121 s->flags |= SF_FINST_R;
1122
1123 return_err_msg:
1124 req->analysers &= AN_REQ_FLT_END;
Olivier Houcharda798bf52019-03-08 18:52:00 +01001125 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001126 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +01001127 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001128 return 0;
1129}
1130
1131/* This function is an analyser which forwards request body (including chunk
1132 * sizes if any). It is called as soon as we must forward, even if we forward
1133 * zero byte. The only situation where it must not be called is when we're in
1134 * tunnel mode and we want to forward till the close. It's used both to forward
1135 * remaining data and to resync after end of body. It expects the msg_state to
1136 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
1137 * read more data, or 1 once we can go on with next request or end the stream.
1138 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len
1139 * bytes of pending data + the headers if not already done.
1140 */
1141int htx_request_forward_body(struct stream *s, struct channel *req, int an_bit)
1142{
1143 struct session *sess = s->sess;
1144 struct http_txn *txn = s->txn;
Christopher Faulet9768c262018-10-22 09:34:31 +02001145 struct http_msg *msg = &txn->req;
1146 struct htx *htx;
Christopher Faulet93e02d82019-03-08 14:18:50 +01001147 short status = 0;
Christopher Fauletaed82cf2018-11-30 22:22:32 +01001148 int ret;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001149
1150 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n",
1151 now_ms, __FUNCTION__,
1152 s,
1153 req,
1154 req->rex, req->wex,
1155 req->flags,
1156 ci_data(req),
1157 req->analysers);
1158
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001159 htx = htxbuf(&req->buf);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001160
1161 if ((req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
1162 ((req->flags & CF_SHUTW) && (req->to_forward || co_data(req)))) {
1163 /* Output closed while we were sending data. We must abort and
1164 * wake the other side up.
1165 */
Olivier Houcharde8b04b12019-07-12 15:48:58 +02001166 /* Don't abort yet if we had L7 retries activated and it
1167 * was a write error, we may recover.
1168 */
1169 if (!(req->flags & (CF_READ_ERROR | CF_READ_TIMEOUT)) &&
1170 (s->si[1].flags & SI_FL_L7_RETRY))
1171 return 0;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001172 msg->err_state = msg->msg_state;
1173 msg->msg_state = HTTP_MSG_ERROR;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001174 htx_end_request(s);
1175 htx_end_response(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001176 return 1;
1177 }
1178
1179 /* Note that we don't have to send 100-continue back because we don't
1180 * need the data to complete our job, and it's up to the server to
1181 * decide whether to return 100, 417 or anything else in return of
1182 * an "Expect: 100-continue" header.
1183 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001184 if (msg->msg_state == HTTP_MSG_BODY)
1185 msg->msg_state = HTTP_MSG_DATA;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001186
1187 /* Some post-connect processing might want us to refrain from starting to
1188 * forward data. Currently, the only reason for this is "balance url_param"
1189 * whichs need to parse/process the request after we've enabled forwarding.
1190 */
1191 if (unlikely(msg->flags & HTTP_MSGF_WAIT_CONN)) {
1192 if (!(s->res.flags & CF_READ_ATTACHED)) {
1193 channel_auto_connect(req);
1194 req->flags |= CF_WAKE_CONNECT;
1195 channel_dont_close(req); /* don't fail on early shutr */
1196 goto waiting;
1197 }
1198 msg->flags &= ~HTTP_MSGF_WAIT_CONN;
1199 }
1200
1201 /* 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 Fauletbe7c5522019-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 Fauletbe7c5522019-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 Fauletbe7c5522019-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 Fauletbe7c5522019-11-15 16:31:46 +01001252 ending:
1253 /* other states, ENDING...TUNNEL */
1254 if (msg->msg_state >= HTTP_MSG_DONE)
1255 goto done;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001256
Christopher Fauletaed82cf2018-11-30 22:22:32 +01001257 if (HAS_REQ_DATA_FILTERS(s)) {
1258 ret = flt_http_end(s, msg);
1259 if (ret <= 0) {
1260 if (!ret)
1261 goto missing_data_or_waiting;
1262 goto return_bad_req;
1263 }
1264 }
1265
Christopher Fauletbe7c5522019-11-15 16:31:46 +01001266 if (txn->meth == HTTP_METH_CONNECT)
1267 msg->msg_state = HTTP_MSG_TUNNEL;
1268 else {
1269 msg->msg_state = HTTP_MSG_DONE;
1270 req->to_forward = 0;
1271 }
1272
1273 done:
1274 /* we don't want to forward closes on DONE except in tunnel mode. */
1275 if ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN)
1276 channel_dont_close(req);
1277
Christopher Fauletf2824e62018-10-01 12:12:37 +02001278 htx_end_request(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001279 if (!(req->analysers & an_bit)) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02001280 htx_end_response(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001281 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
1282 if (req->flags & CF_SHUTW) {
1283 /* request errors are most likely due to the
1284 * server aborting the transfer. */
Christopher Faulet93e02d82019-03-08 14:18:50 +01001285 goto return_srv_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001286 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02001287 goto return_bad_req;
1288 }
1289 return 1;
1290 }
1291
1292 /* If "option abortonclose" is set on the backend, we want to monitor
1293 * the client's connection and forward any shutdown notification to the
1294 * server, which will decide whether to close or to go on processing the
1295 * request. We only do that in tunnel mode, and not in other modes since
1296 * it can be abused to exhaust source ports. */
Christopher Faulet769d0e92019-03-22 14:23:18 +01001297 if (s->be->options & PR_O_ABRT_CLOSE) {
Christopher Faulete0768eb2018-10-03 16:38:02 +02001298 channel_auto_read(req);
1299 if ((req->flags & (CF_SHUTR|CF_READ_NULL)) &&
1300 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN))
1301 s->si[1].flags |= SI_FL_NOLINGER;
1302 channel_auto_close(req);
1303 }
1304 else if (s->txn->meth == HTTP_METH_POST) {
1305 /* POST requests may require to read extra CRLF sent by broken
1306 * browsers and which could cause an RST to be sent upon close
1307 * on some systems (eg: Linux). */
1308 channel_auto_read(req);
1309 }
1310 return 0;
1311
1312 missing_data_or_waiting:
1313 /* stop waiting for data if the input is closed before the end */
Christopher Fauletd20fdb02019-06-13 16:43:22 +02001314 if (msg->msg_state < HTTP_MSG_ENDING && req->flags & CF_SHUTR)
Christopher Faulet93e02d82019-03-08 14:18:50 +01001315 goto return_cli_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001316
1317 waiting:
1318 /* waiting for the last bits to leave the buffer */
1319 if (req->flags & CF_SHUTW)
Christopher Faulet93e02d82019-03-08 14:18:50 +01001320 goto return_srv_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001321
Christopher Faulet47365272018-10-31 17:40:50 +01001322 if (htx->flags & HTX_FL_PARSING_ERROR)
1323 goto return_bad_req;
Christopher Faulet9768c262018-10-22 09:34:31 +02001324
Christopher Faulete0768eb2018-10-03 16:38:02 +02001325 /* When TE: chunked is used, we need to get there again to parse remaining
1326 * chunks even if the client has closed, so we don't want to set CF_DONTCLOSE.
1327 * And when content-length is used, we never want to let the possible
1328 * shutdown be forwarded to the other side, as the state machine will
1329 * take care of it once the client responds. It's also important to
1330 * prevent TIME_WAITs from accumulating on the backend side, and for
1331 * HTTP/2 where the last frame comes with a shutdown.
1332 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001333 if (msg->flags & HTTP_MSGF_XFER_LEN)
Christopher Faulete0768eb2018-10-03 16:38:02 +02001334 channel_dont_close(req);
1335
1336 /* We know that more data are expected, but we couldn't send more that
1337 * what we did. So we always set the CF_EXPECT_MORE flag so that the
1338 * system knows it must not set a PUSH on this first part. Interactive
1339 * modes are already handled by the stream sock layer. We must not do
1340 * this in content-length mode because it could present the MSG_MORE
1341 * flag with the last block of forwarded data, which would cause an
1342 * additional delay to be observed by the receiver.
1343 */
1344 if (msg->flags & HTTP_MSGF_TE_CHNK)
1345 req->flags |= CF_EXPECT_MORE;
1346
1347 return 0;
1348
Christopher Faulet93e02d82019-03-08 14:18:50 +01001349 return_cli_abort:
1350 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
1351 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
1352 if (objt_server(s->target))
1353 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.cli_aborts, 1);
1354 if (!(s->flags & SF_ERR_MASK))
1355 s->flags |= SF_ERR_CLICL;
1356 status = 400;
1357 goto return_error;
1358
1359 return_srv_abort:
1360 _HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
1361 _HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
1362 if (objt_server(s->target))
1363 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.srv_aborts, 1);
1364 if (!(s->flags & SF_ERR_MASK))
1365 s->flags |= SF_ERR_SRVCL;
1366 status = 502;
1367 goto return_error;
1368
1369 return_bad_req:
Olivier Houcharda798bf52019-03-08 18:52:00 +01001370 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001371 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +01001372 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001373 if (!(s->flags & SF_ERR_MASK))
Christopher Faulet93e02d82019-03-08 14:18:50 +01001374 s->flags |= SF_ERR_CLICL;
1375 status = 400;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001376
Christopher Faulet93e02d82019-03-08 14:18:50 +01001377 return_error:
Christopher Faulete0768eb2018-10-03 16:38:02 +02001378 txn->req.err_state = txn->req.msg_state;
1379 txn->req.msg_state = HTTP_MSG_ERROR;
Christopher Faulet9768c262018-10-22 09:34:31 +02001380 if (txn->status > 0) {
Christopher Faulete0768eb2018-10-03 16:38:02 +02001381 /* Note: we don't send any error if some data were already sent */
Christopher Faulet9768c262018-10-22 09:34:31 +02001382 htx_reply_and_close(s, txn->status, NULL);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001383 } else {
Christopher Faulet93e02d82019-03-08 14:18:50 +01001384 txn->status = status;
Christopher Fauleta7b677c2018-11-29 16:48:49 +01001385 htx_reply_and_close(s, txn->status, htx_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001386 }
1387 req->analysers &= AN_REQ_FLT_END;
1388 s->res.analysers &= AN_RES_FLT_END; /* we're in data phase, we want to abort both directions */
Christopher Faulet93e02d82019-03-08 14:18:50 +01001389 if (!(s->flags & SF_FINST_MASK))
1390 s->flags |= ((txn->rsp.msg_state < HTTP_MSG_ERROR) ? SF_FINST_H : SF_FINST_D);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001391 return 0;
1392}
1393
Olivier Houcharda254a372019-04-05 15:30:12 +02001394/* Reset the stream and the backend stream_interface to a situation suitable for attemption connection */
1395/* Returns 0 if we can attempt to retry, -1 otherwise */
1396static __inline int do_l7_retry(struct stream *s, struct stream_interface *si)
1397{
1398 struct channel *req, *res;
1399 int co_data;
1400
1401 si->conn_retries--;
1402 if (si->conn_retries < 0)
1403 return -1;
1404
Willy Tarreau223995e2019-05-04 10:38:31 +02001405 if (objt_server(s->target))
1406 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.retries, 1);
1407 _HA_ATOMIC_ADD(&s->be->be_counters.retries, 1);
1408
Olivier Houcharda254a372019-04-05 15:30:12 +02001409 req = &s->req;
1410 res = &s->res;
1411 /* Remove any write error from the request, and read error from the response */
1412 req->flags &= ~(CF_WRITE_ERROR | CF_WRITE_TIMEOUT | CF_SHUTW | CF_SHUTW_NOW);
1413 res->flags &= ~(CF_READ_ERROR | CF_READ_TIMEOUT | CF_SHUTR | CF_EOI | CF_READ_NULL | CF_SHUTR_NOW);
1414 res->analysers = 0;
1415 si->flags &= ~(SI_FL_ERR | SI_FL_EXP | SI_FL_RXBLK_SHUT);
Olivier Houchard530249c2019-07-12 16:16:59 +02001416 stream_choose_redispatch(s);
Olivier Houcharda254a372019-04-05 15:30:12 +02001417 si->exp = TICK_ETERNITY;
1418 res->rex = TICK_ETERNITY;
1419 res->to_forward = 0;
1420 res->analyse_exp = TICK_ETERNITY;
1421 res->total = 0;
Olivier Houchard530249c2019-07-12 16:16:59 +02001422 s->flags &= ~(SF_ERR_SRVTO | SF_ERR_SRVCL);
Olivier Houcharda254a372019-04-05 15:30:12 +02001423 si_release_endpoint(&s->si[1]);
1424 b_free(&req->buf);
1425 /* Swap the L7 buffer with the channel buffer */
1426 /* We know we stored the co_data as b_data, so get it there */
1427 co_data = b_data(&si->l7_buffer);
1428 b_set_data(&si->l7_buffer, b_size(&si->l7_buffer));
1429 b_xfer(&req->buf, &si->l7_buffer, b_data(&si->l7_buffer));
1430
1431 co_set_data(req, co_data);
1432 b_reset(&res->buf);
1433 co_set_data(res, 0);
1434 return 0;
1435}
1436
Christopher Faulete0768eb2018-10-03 16:38:02 +02001437/* This stream analyser waits for a complete HTTP response. It returns 1 if the
1438 * processing can continue on next analysers, or zero if it either needs more
1439 * data or wants to immediately abort the response (eg: timeout, error, ...). It
1440 * is tied to AN_RES_WAIT_HTTP and may may remove itself from s->res.analysers
1441 * when it has nothing left to do, and may remove any analyser when it wants to
1442 * abort.
1443 */
1444int htx_wait_for_response(struct stream *s, struct channel *rep, int an_bit)
1445{
Christopher Faulet9768c262018-10-22 09:34:31 +02001446 /*
1447 * We will analyze a complete HTTP response to check the its syntax.
1448 *
1449 * Once the start line and all headers are received, we may perform a
1450 * capture of the error (if any), and we will set a few fields. We also
1451 * logging and finally headers capture.
1452 */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001453 struct session *sess = s->sess;
1454 struct http_txn *txn = s->txn;
1455 struct http_msg *msg = &txn->rsp;
Christopher Faulet9768c262018-10-22 09:34:31 +02001456 struct htx *htx;
Olivier Houcharda254a372019-04-05 15:30:12 +02001457 struct stream_interface *si_b = &s->si[1];
Christopher Faulet61608322018-11-23 16:23:45 +01001458 struct connection *srv_conn;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001459 struct htx_sl *sl;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001460 int n;
1461
1462 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n",
1463 now_ms, __FUNCTION__,
1464 s,
1465 rep,
1466 rep->rex, rep->wex,
1467 rep->flags,
1468 ci_data(rep),
1469 rep->analysers);
1470
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001471 htx = htxbuf(&rep->buf);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001472
Willy Tarreau4236f032019-03-05 10:43:32 +01001473 /* Parsing errors are caught here */
1474 if (htx->flags & HTX_FL_PARSING_ERROR)
1475 goto return_bad_res;
1476
Christopher Faulete0768eb2018-10-03 16:38:02 +02001477 /*
1478 * Now we quickly check if we have found a full valid response.
1479 * If not so, we check the FD and buffer states before leaving.
1480 * A full response is indicated by the fact that we have seen
1481 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
1482 * responses are checked first.
1483 *
1484 * Depending on whether the client is still there or not, we
1485 * may send an error response back or not. Note that normally
1486 * we should only check for HTTP status there, and check I/O
1487 * errors somewhere else.
1488 */
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001489 next_one:
Christopher Faulet29f17582019-05-23 11:03:26 +02001490 if (unlikely(htx_is_empty(htx) || htx->first == -1)) {
Christopher Faulet9768c262018-10-22 09:34:31 +02001491 /* 1: have we encountered a read error ? */
1492 if (rep->flags & CF_READ_ERROR) {
Olivier Houchard865d8392019-05-03 22:46:27 +02001493 struct connection *conn = NULL;
1494
Olivier Houchard865d8392019-05-03 22:46:27 +02001495 if (objt_cs(s->si[1].end))
1496 conn = objt_cs(s->si[1].end)->conn;
1497
1498 if (si_b->flags & SI_FL_L7_RETRY &&
1499 (!conn || conn->err_code != CO_ER_SSL_EARLY_FAILED)) {
Olivier Houcharda254a372019-04-05 15:30:12 +02001500 /* If we arrive here, then CF_READ_ERROR was
1501 * set by si_cs_recv() because we matched a
1502 * status, overwise it would have removed
1503 * the SI_FL_L7_RETRY flag, so it's ok not
1504 * to check s->be->retry_type.
1505 */
1506 if (co_data(rep) || do_l7_retry(s, si_b) == 0)
1507 return 0;
1508 }
1509
Olivier Houchard6db16992019-05-17 15:40:49 +02001510 if (txn->flags & TX_NOT_FIRST)
1511 goto abort_keep_alive;
1512
Olivier Houcharda798bf52019-03-08 18:52:00 +01001513 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001514 if (objt_server(s->target)) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01001515 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001516 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_READ_ERROR);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001517 }
1518
Christopher Faulete0768eb2018-10-03 16:38:02 +02001519 rep->analysers &= AN_RES_FLT_END;
Christopher Faulet8868ac32020-04-01 08:14:16 +02001520 s->req.analysers &= AN_REQ_FLT_END;
1521 rep->analyse_exp = TICK_ETERNITY;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001522 txn->status = 502;
1523
1524 /* Check to see if the server refused the early data.
1525 * If so, just send a 425
1526 */
Olivier Houchard865d8392019-05-03 22:46:27 +02001527 if (conn->err_code == CO_ER_SSL_EARLY_FAILED) {
1528 if ((s->be->retry_type & PR_RE_EARLY_ERROR) &&
Olivier Houchardad26d8d2019-05-10 17:48:28 +02001529 (si_b->flags & SI_FL_L7_RETRY) &&
Olivier Houchard865d8392019-05-03 22:46:27 +02001530 do_l7_retry(s, si_b) == 0)
1531 return 0;
1532 txn->status = 425;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001533 }
1534
1535 s->si[1].flags |= SI_FL_NOLINGER;
Christopher Fauleta7b677c2018-11-29 16:48:49 +01001536 htx_reply_and_close(s, txn->status, htx_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001537
1538 if (!(s->flags & SF_ERR_MASK))
1539 s->flags |= SF_ERR_SRVCL;
1540 if (!(s->flags & SF_FINST_MASK))
1541 s->flags |= SF_FINST_H;
1542 return 0;
1543 }
1544
Christopher Faulet9768c262018-10-22 09:34:31 +02001545 /* 2: read timeout : return a 504 to the client. */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001546 else if (rep->flags & CF_READ_TIMEOUT) {
Olivier Houcharda254a372019-04-05 15:30:12 +02001547 if ((si_b->flags & SI_FL_L7_RETRY) &&
1548 (s->be->retry_type & PR_RE_TIMEOUT)) {
1549 if (co_data(rep) || do_l7_retry(s, si_b) == 0)
1550 return 0;
1551 }
Olivier Houcharda798bf52019-03-08 18:52:00 +01001552 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001553 if (objt_server(s->target)) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01001554 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001555 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_READ_TIMEOUT);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001556 }
1557
Christopher Faulete0768eb2018-10-03 16:38:02 +02001558 rep->analysers &= AN_RES_FLT_END;
Christopher Faulet8868ac32020-04-01 08:14:16 +02001559 s->req.analysers &= AN_REQ_FLT_END;
1560 rep->analyse_exp = TICK_ETERNITY;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001561 txn->status = 504;
1562 s->si[1].flags |= SI_FL_NOLINGER;
Christopher Fauleta7b677c2018-11-29 16:48:49 +01001563 htx_reply_and_close(s, txn->status, htx_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001564
1565 if (!(s->flags & SF_ERR_MASK))
1566 s->flags |= SF_ERR_SRVTO;
1567 if (!(s->flags & SF_FINST_MASK))
1568 s->flags |= SF_FINST_H;
1569 return 0;
1570 }
1571
Christopher Faulet9768c262018-10-22 09:34:31 +02001572 /* 3: client abort with an abortonclose */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001573 else if ((rep->flags & CF_SHUTR) && ((s->req.flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01001574 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
1575 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001576 if (objt_server(s->target))
Olivier Houcharda798bf52019-03-08 18:52:00 +01001577 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.cli_aborts, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001578
1579 rep->analysers &= AN_RES_FLT_END;
Christopher Faulet8868ac32020-04-01 08:14:16 +02001580 s->req.analysers &= AN_REQ_FLT_END;
1581 rep->analyse_exp = TICK_ETERNITY;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001582 txn->status = 400;
Christopher Fauleta7b677c2018-11-29 16:48:49 +01001583 htx_reply_and_close(s, txn->status, htx_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001584
1585 if (!(s->flags & SF_ERR_MASK))
1586 s->flags |= SF_ERR_CLICL;
1587 if (!(s->flags & SF_FINST_MASK))
1588 s->flags |= SF_FINST_H;
1589
1590 /* process_stream() will take care of the error */
1591 return 0;
1592 }
1593
Christopher Faulet9768c262018-10-22 09:34:31 +02001594 /* 4: close from server, capture the response if the server has started to respond */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001595 else if (rep->flags & CF_SHUTR) {
Olivier Houcharda254a372019-04-05 15:30:12 +02001596 if ((si_b->flags & SI_FL_L7_RETRY) &&
1597 (s->be->retry_type & PR_RE_DISCONNECTED)) {
1598 if (co_data(rep) || do_l7_retry(s, si_b) == 0)
1599 return 0;
1600 }
1601
Olivier Houchard6db16992019-05-17 15:40:49 +02001602 if (txn->flags & TX_NOT_FIRST)
1603 goto abort_keep_alive;
1604
Olivier Houcharda798bf52019-03-08 18:52:00 +01001605 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001606 if (objt_server(s->target)) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01001607 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001608 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_BROKEN_PIPE);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001609 }
1610
Christopher Faulete0768eb2018-10-03 16:38:02 +02001611 rep->analysers &= AN_RES_FLT_END;
Christopher Faulet8868ac32020-04-01 08:14:16 +02001612 s->req.analysers &= AN_REQ_FLT_END;
1613 rep->analyse_exp = TICK_ETERNITY;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001614 txn->status = 502;
1615 s->si[1].flags |= SI_FL_NOLINGER;
Christopher Fauleta7b677c2018-11-29 16:48:49 +01001616 htx_reply_and_close(s, txn->status, htx_error_message(s));
Christopher Faulete0768eb2018-10-03 16:38:02 +02001617
1618 if (!(s->flags & SF_ERR_MASK))
1619 s->flags |= SF_ERR_SRVCL;
1620 if (!(s->flags & SF_FINST_MASK))
1621 s->flags |= SF_FINST_H;
1622 return 0;
1623 }
1624
Christopher Faulet9768c262018-10-22 09:34:31 +02001625 /* 5: write error to client (we don't send any message then) */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001626 else if (rep->flags & CF_WRITE_ERROR) {
Christopher Faulet9768c262018-10-22 09:34:31 +02001627 if (txn->flags & TX_NOT_FIRST)
Christopher Faulete0768eb2018-10-03 16:38:02 +02001628 goto abort_keep_alive;
1629
Olivier Houcharda798bf52019-03-08 18:52:00 +01001630 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001631 rep->analysers &= AN_RES_FLT_END;
Christopher Faulet8868ac32020-04-01 08:14:16 +02001632 s->req.analysers &= AN_REQ_FLT_END;
1633 rep->analyse_exp = TICK_ETERNITY;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001634
1635 if (!(s->flags & SF_ERR_MASK))
1636 s->flags |= SF_ERR_CLICL;
1637 if (!(s->flags & SF_FINST_MASK))
1638 s->flags |= SF_FINST_H;
1639
1640 /* process_stream() will take care of the error */
1641 return 0;
1642 }
1643
1644 channel_dont_close(rep);
1645 rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
1646 return 0;
1647 }
1648
1649 /* More interesting part now : we know that we have a complete
1650 * response which at least looks like HTTP. We have an indicator
1651 * of each header's length, so we can parse them quickly.
1652 */
Christopher Faulet9768c262018-10-22 09:34:31 +02001653 msg->msg_state = HTTP_MSG_BODY;
Christopher Faulet29f17582019-05-23 11:03:26 +02001654 BUG_ON(htx_get_first_type(htx) != HTX_BLK_RES_SL);
Christopher Faulet297fbb42019-05-13 14:41:27 +02001655 sl = http_get_stline(htx);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001656
Christopher Faulet9768c262018-10-22 09:34:31 +02001657 /* 0: we might have to print this header in debug mode */
1658 if (unlikely((global.mode & MODE_DEBUG) &&
1659 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
1660 int32_t pos;
1661
Christopher Faulet03599112018-11-27 11:21:21 +01001662 htx_debug_stline("srvrep", s, sl);
Christopher Faulet9768c262018-10-22 09:34:31 +02001663
Christopher Fauleta3f15502019-05-13 15:27:23 +02001664 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
Christopher Faulet9768c262018-10-22 09:34:31 +02001665 struct htx_blk *blk = htx_get_blk(htx, pos);
1666 enum htx_blk_type type = htx_get_blk_type(blk);
1667
1668 if (type == HTX_BLK_EOH)
1669 break;
1670 if (type != HTX_BLK_HDR)
1671 continue;
1672
1673 htx_debug_hdr("srvhdr", s,
1674 htx_get_blk_name(htx, blk),
1675 htx_get_blk_value(htx, blk));
1676 }
1677 }
1678
Christopher Faulet03599112018-11-27 11:21:21 +01001679 /* 1: get the status code and the version. Also set HTTP flags */
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01001680 txn->status = sl->info.res.status;
Christopher Faulet03599112018-11-27 11:21:21 +01001681 if (sl->flags & HTX_SL_F_VER_11)
Christopher Faulet9768c262018-10-22 09:34:31 +02001682 msg->flags |= HTTP_MSGF_VER_11;
Christopher Faulet03599112018-11-27 11:21:21 +01001683 if (sl->flags & HTX_SL_F_XFER_LEN) {
1684 msg->flags |= HTTP_MSGF_XFER_LEN;
Christopher Faulet834eee72019-02-18 11:35:02 +01001685 msg->flags |= ((sl->flags & HTX_SL_F_CLEN) ? HTTP_MSGF_CNT_LEN : HTTP_MSGF_TE_CHNK);
Christopher Fauletb2db4fa2018-11-27 16:51:09 +01001686 if (sl->flags & HTX_SL_F_BODYLESS)
1687 msg->flags |= HTTP_MSGF_BODYLESS;
Christopher Faulet03599112018-11-27 11:21:21 +01001688 }
Christopher Faulet9768c262018-10-22 09:34:31 +02001689
1690 n = txn->status / 100;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001691 if (n < 1 || n > 5)
1692 n = 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02001693
Christopher Faulete0768eb2018-10-03 16:38:02 +02001694 /* when the client triggers a 4xx from the server, it's most often due
1695 * to a missing object or permission. These events should be tracked
1696 * because if they happen often, it may indicate a brute force or a
1697 * vulnerability scan.
1698 */
1699 if (n == 4)
1700 stream_inc_http_err_ctr(s);
1701
1702 if (objt_server(s->target))
Olivier Houcharda798bf52019-03-08 18:52:00 +01001703 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.p.http.rsp[n], 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001704
Christopher Faulete0768eb2018-10-03 16:38:02 +02001705 /* Adjust server's health based on status code. Note: status codes 501
1706 * and 505 are triggered on demand by client request, so we must not
1707 * count them as server failures.
1708 */
1709 if (objt_server(s->target)) {
1710 if (txn->status >= 100 && (txn->status < 500 || txn->status == 501 || txn->status == 505))
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001711 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_OK);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001712 else
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001713 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_STS);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001714 }
1715
1716 /*
1717 * We may be facing a 100-continue response, or any other informational
1718 * 1xx response which is non-final, in which case this is not the right
1719 * response, and we're waiting for the next one. Let's allow this response
1720 * to go to the client and wait for the next one. There's an exception for
1721 * 101 which is used later in the code to switch protocols.
1722 */
1723 if (txn->status < 200 &&
1724 (txn->status == 100 || txn->status >= 102)) {
Christopher Fauletaed82cf2018-11-30 22:22:32 +01001725 FLT_STRM_CB(s, flt_http_reset(s, msg));
Christopher Faulet421e7692019-06-13 11:16:45 +02001726 htx->first = channel_htx_fwd_headers(rep, htx);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001727 msg->msg_state = HTTP_MSG_RPBEFORE;
Christopher Faulet6b0066e2019-09-03 15:23:54 +02001728 msg->flags = 0;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001729 txn->status = 0;
1730 s->logs.t_data = -1; /* was not a response yet */
Christopher Fauletb75b5ea2019-05-17 08:37:28 +02001731 goto next_one;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001732 }
1733
1734 /*
1735 * 2: check for cacheability.
1736 */
1737
1738 switch (txn->status) {
1739 case 200:
1740 case 203:
1741 case 204:
1742 case 206:
1743 case 300:
1744 case 301:
1745 case 404:
1746 case 405:
1747 case 410:
1748 case 414:
1749 case 501:
1750 break;
1751 default:
1752 /* RFC7231#6.1:
1753 * Responses with status codes that are defined as
1754 * cacheable by default (e.g., 200, 203, 204, 206,
1755 * 300, 301, 404, 405, 410, 414, and 501 in this
1756 * specification) can be reused by a cache with
1757 * heuristic expiration unless otherwise indicated
1758 * by the method definition or explicit cache
1759 * controls [RFC7234]; all other status codes are
1760 * not cacheable by default.
1761 */
1762 txn->flags &= ~(TX_CACHEABLE | TX_CACHE_COOK);
1763 break;
1764 }
1765
1766 /*
1767 * 3: we may need to capture headers
1768 */
1769 s->logs.logwait &= ~LW_RESP;
1770 if (unlikely((s->logs.logwait & LW_RSPHDR) && s->res_cap))
Christopher Faulet9768c262018-10-22 09:34:31 +02001771 htx_capture_headers(htx, s->res_cap, sess->fe->rsp_cap);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001772
Christopher Faulet9768c262018-10-22 09:34:31 +02001773 /* Skip parsing if no content length is possible. */
Christopher Faulete0768eb2018-10-03 16:38:02 +02001774 if (unlikely((txn->meth == HTTP_METH_CONNECT && txn->status == 200) ||
1775 txn->status == 101)) {
1776 /* Either we've established an explicit tunnel, or we're
1777 * switching the protocol. In both cases, we're very unlikely
1778 * to understand the next protocols. We have to switch to tunnel
1779 * mode, so that we transfer the request and responses then let
1780 * this protocol pass unmodified. When we later implement specific
1781 * parsers for such protocols, we'll want to check the Upgrade
1782 * header which contains information about that protocol for
1783 * responses with status 101 (eg: see RFC2817 about TLS).
1784 */
1785 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_TUN;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001786 }
1787
Christopher Faulet61608322018-11-23 16:23:45 +01001788 /* check for NTML authentication headers in 401 (WWW-Authenticate) and
1789 * 407 (Proxy-Authenticate) responses and set the connection to private
1790 */
1791 srv_conn = cs_conn(objt_cs(s->si[1].end));
1792 if (srv_conn) {
1793 struct ist hdr;
1794 struct http_hdr_ctx ctx;
1795
1796 if (txn->status == 401)
1797 hdr = ist("WWW-Authenticate");
1798 else if (txn->status == 407)
1799 hdr = ist("Proxy-Authenticate");
1800 else
1801 goto end;
1802
1803 ctx.blk = NULL;
1804 while (http_find_header(htx, hdr, &ctx, 0)) {
1805 if ((ctx.value.len >= 9 && word_match(ctx.value.ptr, ctx.value.len, "Negotiate", 9)) ||
Olivier Houchard250031e2019-05-29 15:01:50 +02001806 (ctx.value.len >= 4 && word_match(ctx.value.ptr, ctx.value.len, "NTLM", 4))) {
1807 sess->flags |= SESS_FL_PREFER_LAST;
Christopher Faulet61608322018-11-23 16:23:45 +01001808 srv_conn->flags |= CO_FL_PRIVATE;
Olivier Houchard250031e2019-05-29 15:01:50 +02001809 }
Christopher Faulet61608322018-11-23 16:23:45 +01001810 }
1811 }
1812
1813 end:
Christopher Faulete0768eb2018-10-03 16:38:02 +02001814 /* we want to have the response time before we start processing it */
1815 s->logs.t_data = tv_ms_elapsed(&s->logs.tv_accept, &now);
1816
1817 /* end of job, return OK */
1818 rep->analysers &= ~an_bit;
1819 rep->analyse_exp = TICK_ETERNITY;
1820 channel_auto_close(rep);
1821 return 1;
1822
Christopher Faulet47365272018-10-31 17:40:50 +01001823 return_bad_res:
Olivier Houcharda798bf52019-03-08 18:52:00 +01001824 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Christopher Faulet47365272018-10-31 17:40:50 +01001825 if (objt_server(s->target)) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01001826 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01001827 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_HDRRSP);
Christopher Faulet47365272018-10-31 17:40:50 +01001828 }
Olivier Houcharde3249a92019-05-03 23:01:47 +02001829 if ((s->be->retry_type & PR_RE_JUNK_REQUEST) &&
Olivier Houchardad26d8d2019-05-10 17:48:28 +02001830 (si_b->flags & SI_FL_L7_RETRY) &&
Olivier Houcharde3249a92019-05-03 23:01:47 +02001831 do_l7_retry(s, si_b) == 0)
1832 return 0;
Christopher Faulet47365272018-10-31 17:40:50 +01001833 txn->status = 502;
1834 s->si[1].flags |= SI_FL_NOLINGER;
Christopher Fauleta7b677c2018-11-29 16:48:49 +01001835 htx_reply_and_close(s, txn->status, htx_error_message(s));
Christopher Faulet47365272018-10-31 17:40:50 +01001836 rep->analysers &= AN_RES_FLT_END;
Christopher Fauletf6df2b42020-03-02 16:21:01 +01001837 s->req.analysers &= AN_REQ_FLT_END;
1838 rep->analyse_exp = TICK_ETERNITY;
Christopher Faulet47365272018-10-31 17:40:50 +01001839
1840 if (!(s->flags & SF_ERR_MASK))
1841 s->flags |= SF_ERR_PRXCOND;
1842 if (!(s->flags & SF_FINST_MASK))
1843 s->flags |= SF_FINST_H;
1844 return 0;
1845
Christopher Faulete0768eb2018-10-03 16:38:02 +02001846 abort_keep_alive:
1847 /* A keep-alive request to the server failed on a network error.
1848 * The client is required to retry. We need to close without returning
1849 * any other information so that the client retries.
1850 */
1851 txn->status = 0;
1852 rep->analysers &= AN_RES_FLT_END;
1853 s->req.analysers &= AN_REQ_FLT_END;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001854 s->logs.logwait = 0;
1855 s->logs.level = 0;
1856 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Christopher Faulet9768c262018-10-22 09:34:31 +02001857 htx_reply_and_close(s, txn->status, NULL);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001858 return 0;
1859}
1860
1861/* This function performs all the processing enabled for the current response.
1862 * It normally returns 1 unless it wants to break. It relies on buffers flags,
1863 * and updates s->res.analysers. It might make sense to explode it into several
1864 * other functions. It works like process_request (see indications above).
1865 */
1866int htx_process_res_common(struct stream *s, struct channel *rep, int an_bit, struct proxy *px)
1867{
1868 struct session *sess = s->sess;
1869 struct http_txn *txn = s->txn;
1870 struct http_msg *msg = &txn->rsp;
Christopher Fauletfec7bd12018-10-24 11:17:50 +02001871 struct htx *htx;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001872 struct proxy *cur_proxy;
1873 struct cond_wordlist *wl;
1874 enum rule_result ret = HTTP_RULE_RES_CONT;
1875
Christopher Fauletfec7bd12018-10-24 11:17:50 +02001876 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) /* we need more data */
1877 return 0;
Christopher Faulet9768c262018-10-22 09:34:31 +02001878
Christopher Faulete0768eb2018-10-03 16:38:02 +02001879 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n",
1880 now_ms, __FUNCTION__,
1881 s,
1882 rep,
1883 rep->rex, rep->wex,
1884 rep->flags,
1885 ci_data(rep),
1886 rep->analysers);
1887
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01001888 htx = htxbuf(&rep->buf);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001889
1890 /* The stats applet needs to adjust the Connection header but we don't
1891 * apply any filter there.
1892 */
1893 if (unlikely(objt_applet(s->target) == &http_stats_applet)) {
1894 rep->analysers &= ~an_bit;
1895 rep->analyse_exp = TICK_ETERNITY;
Christopher Fauletf2824e62018-10-01 12:12:37 +02001896 goto end;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001897 }
1898
1899 /*
1900 * We will have to evaluate the filters.
1901 * As opposed to version 1.2, now they will be evaluated in the
1902 * filters order and not in the header order. This means that
1903 * each filter has to be validated among all headers.
1904 *
1905 * Filters are tried with ->be first, then with ->fe if it is
1906 * different from ->be.
1907 *
1908 * Maybe we are in resume condiion. In this case I choose the
1909 * "struct proxy" which contains the rule list matching the resume
1910 * pointer. If none of theses "struct proxy" match, I initialise
1911 * the process with the first one.
1912 *
1913 * In fact, I check only correspondance betwwen the current list
1914 * pointer and the ->fe rule list. If it doesn't match, I initialize
1915 * the loop with the ->be.
1916 */
1917 if (s->current_rule_list == &sess->fe->http_res_rules)
1918 cur_proxy = sess->fe;
1919 else
1920 cur_proxy = s->be;
1921 while (1) {
1922 struct proxy *rule_set = cur_proxy;
1923
1924 /* evaluate http-response rules */
1925 if (ret == HTTP_RULE_RES_CONT) {
Christopher Fauletfec7bd12018-10-24 11:17:50 +02001926 ret = htx_res_get_intercept_rule(cur_proxy, &cur_proxy->http_res_rules, s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001927
1928 if (ret == HTTP_RULE_RES_BADREQ)
1929 goto return_srv_prx_502;
1930
1931 if (ret == HTTP_RULE_RES_DONE) {
1932 rep->analysers &= ~an_bit;
1933 rep->analyse_exp = TICK_ETERNITY;
1934 return 1;
1935 }
1936 }
1937
1938 /* we need to be called again. */
1939 if (ret == HTTP_RULE_RES_YIELD) {
1940 channel_dont_close(rep);
1941 return 0;
1942 }
1943
1944 /* try headers filters */
1945 if (rule_set->rsp_exp != NULL) {
Christopher Fauletfec7bd12018-10-24 11:17:50 +02001946 if (htx_apply_filters_to_response(s, rep, rule_set) < 0)
1947 goto return_bad_resp;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001948 }
1949
1950 /* has the response been denied ? */
1951 if (txn->flags & TX_SVDENY) {
1952 if (objt_server(s->target))
Olivier Houcharda798bf52019-03-08 18:52:00 +01001953 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_secu, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001954
Olivier Houcharda798bf52019-03-08 18:52:00 +01001955 _HA_ATOMIC_ADD(&s->be->be_counters.denied_resp, 1);
1956 _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_resp, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001957 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +01001958 _HA_ATOMIC_ADD(&sess->listener->counters->denied_resp, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02001959 goto return_srv_prx_502;
1960 }
1961
1962 /* add response headers from the rule sets in the same order */
1963 list_for_each_entry(wl, &rule_set->rsp_add, list) {
Christopher Fauletfec7bd12018-10-24 11:17:50 +02001964 struct ist n, v;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001965 if (txn->status < 200 && txn->status != 101)
1966 break;
1967 if (wl->cond) {
1968 int ret = acl_exec_cond(wl->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
1969 ret = acl_pass(ret);
1970 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
1971 ret = !ret;
1972 if (!ret)
1973 continue;
1974 }
Christopher Fauletfec7bd12018-10-24 11:17:50 +02001975
1976 http_parse_header(ist2(wl->s, strlen(wl->s)), &n, &v);
1977 if (unlikely(!http_add_header(htx, n, v)))
Christopher Faulete0768eb2018-10-03 16:38:02 +02001978 goto return_bad_resp;
1979 }
1980
1981 /* check whether we're already working on the frontend */
1982 if (cur_proxy == sess->fe)
1983 break;
1984 cur_proxy = sess->fe;
1985 }
1986
1987 /* After this point, this anayzer can't return yield, so we can
1988 * remove the bit corresponding to this analyzer from the list.
1989 *
1990 * Note that the intermediate returns and goto found previously
1991 * reset the analyzers.
1992 */
1993 rep->analysers &= ~an_bit;
1994 rep->analyse_exp = TICK_ETERNITY;
1995
1996 /* OK that's all we can do for 1xx responses */
1997 if (unlikely(txn->status < 200 && txn->status != 101))
Christopher Fauletf2824e62018-10-01 12:12:37 +02001998 goto end;
Christopher Faulete0768eb2018-10-03 16:38:02 +02001999
2000 /*
2001 * Now check for a server cookie.
2002 */
2003 if (s->be->cookie_name || sess->fe->capture_name || (s->be->options & PR_O_CHK_CACHE))
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002004 htx_manage_server_side_cookies(s, rep);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002005
2006 /*
2007 * Check for cache-control or pragma headers if required.
2008 */
2009 if ((s->be->options & PR_O_CHK_CACHE) || (s->be->ck_opts & PR_CK_NOC))
2010 check_response_for_cacheability(s, rep);
2011
2012 /*
2013 * Add server cookie in the response if needed
2014 */
2015 if (objt_server(s->target) && (s->be->ck_opts & PR_CK_INS) &&
2016 !((txn->flags & TX_SCK_FOUND) && (s->be->ck_opts & PR_CK_PSV)) &&
2017 (!(s->flags & SF_DIRECT) ||
2018 ((s->be->cookie_maxidle || txn->cookie_last_date) &&
2019 (!txn->cookie_last_date || (txn->cookie_last_date - date.tv_sec) < 0)) ||
2020 (s->be->cookie_maxlife && !txn->cookie_first_date) || // set the first_date
2021 (!s->be->cookie_maxlife && txn->cookie_first_date)) && // remove the first_date
2022 (!(s->be->ck_opts & PR_CK_POST) || (txn->meth == HTTP_METH_POST)) &&
2023 !(s->flags & SF_IGNORE_PRST)) {
2024 /* the server is known, it's not the one the client requested, or the
2025 * cookie's last seen date needs to be refreshed. We have to
2026 * insert a set-cookie here, except if we want to insert only on POST
2027 * requests and this one isn't. Note that servers which don't have cookies
2028 * (eg: some backup servers) will return a full cookie removal request.
2029 */
2030 if (!objt_server(s->target)->cookie) {
2031 chunk_printf(&trash,
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002032 "%s=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/",
Christopher Faulete0768eb2018-10-03 16:38:02 +02002033 s->be->cookie_name);
2034 }
2035 else {
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002036 chunk_printf(&trash, "%s=%s", s->be->cookie_name, objt_server(s->target)->cookie);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002037
2038 if (s->be->cookie_maxidle || s->be->cookie_maxlife) {
2039 /* emit last_date, which is mandatory */
2040 trash.area[trash.data++] = COOKIE_DELIM_DATE;
2041 s30tob64((date.tv_sec+3) >> 2,
2042 trash.area + trash.data);
2043 trash.data += 5;
2044
2045 if (s->be->cookie_maxlife) {
2046 /* emit first_date, which is either the original one or
2047 * the current date.
2048 */
2049 trash.area[trash.data++] = COOKIE_DELIM_DATE;
2050 s30tob64(txn->cookie_first_date ?
2051 txn->cookie_first_date >> 2 :
2052 (date.tv_sec+3) >> 2,
2053 trash.area + trash.data);
2054 trash.data += 5;
2055 }
2056 }
2057 chunk_appendf(&trash, "; path=/");
2058 }
2059
2060 if (s->be->cookie_domain)
2061 chunk_appendf(&trash, "; domain=%s", s->be->cookie_domain);
2062
2063 if (s->be->ck_opts & PR_CK_HTTPONLY)
2064 chunk_appendf(&trash, "; HttpOnly");
2065
2066 if (s->be->ck_opts & PR_CK_SECURE)
2067 chunk_appendf(&trash, "; Secure");
2068
Christopher Fauletdb2cdbb2020-01-21 11:06:48 +01002069 if (s->be->cookie_attrs)
2070 chunk_appendf(&trash, "; %s", s->be->cookie_attrs);
2071
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002072 if (unlikely(!http_add_header(htx, ist("Set-Cookie"), ist2(trash.area, trash.data))))
Christopher Faulete0768eb2018-10-03 16:38:02 +02002073 goto return_bad_resp;
2074
2075 txn->flags &= ~TX_SCK_MASK;
2076 if (__objt_server(s->target)->cookie && (s->flags & SF_DIRECT))
2077 /* the server did not change, only the date was updated */
2078 txn->flags |= TX_SCK_UPDATED;
2079 else
2080 txn->flags |= TX_SCK_INSERTED;
2081
2082 /* Here, we will tell an eventual cache on the client side that we don't
2083 * want it to cache this reply because HTTP/1.0 caches also cache cookies !
2084 * Some caches understand the correct form: 'no-cache="set-cookie"', but
2085 * others don't (eg: apache <= 1.3.26). So we use 'private' instead.
2086 */
2087 if ((s->be->ck_opts & PR_CK_NOC) && (txn->flags & TX_CACHEABLE)) {
2088
2089 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
2090
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002091 if (unlikely(!http_add_header(htx, ist("Cache-control"), ist("private"))))
Christopher Faulete0768eb2018-10-03 16:38:02 +02002092 goto return_bad_resp;
2093 }
2094 }
2095
2096 /*
2097 * Check if result will be cacheable with a cookie.
2098 * We'll block the response if security checks have caught
2099 * nasty things such as a cacheable cookie.
2100 */
2101 if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) ==
2102 (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) &&
2103 (s->be->options & PR_O_CHK_CACHE)) {
2104 /* we're in presence of a cacheable response containing
2105 * a set-cookie header. We'll block it as requested by
2106 * the 'checkcache' option, and send an alert.
2107 */
2108 if (objt_server(s->target))
Olivier Houcharda798bf52019-03-08 18:52:00 +01002109 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_secu, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002110
Olivier Houcharda798bf52019-03-08 18:52:00 +01002111 _HA_ATOMIC_ADD(&s->be->be_counters.denied_resp, 1);
2112 _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_resp, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002113 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +01002114 _HA_ATOMIC_ADD(&sess->listener->counters->denied_resp, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002115
2116 ha_alert("Blocking cacheable cookie in response from instance %s, server %s.\n",
2117 s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>");
2118 send_log(s->be, LOG_ALERT,
2119 "Blocking cacheable cookie in response from instance %s, server %s.\n",
2120 s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>");
2121 goto return_srv_prx_502;
2122 }
2123
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002124 end:
Christopher Faulete0768eb2018-10-03 16:38:02 +02002125 /* Always enter in the body analyzer */
2126 rep->analysers &= ~AN_RES_FLT_XFER_DATA;
2127 rep->analysers |= AN_RES_HTTP_XFER_BODY;
2128
2129 /* if the user wants to log as soon as possible, without counting
2130 * bytes from the server, then this is the right moment. We have
2131 * to temporarily assign bytes_out to log what we currently have.
2132 */
2133 if (!LIST_ISEMPTY(&sess->fe->logformat) && !(s->logs.logwait & LW_BYTES)) {
2134 s->logs.t_close = s->logs.t_data; /* to get a valid end date */
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002135 s->logs.bytes_out = htx->data;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002136 s->do_log(s);
2137 s->logs.bytes_out = 0;
2138 }
2139 return 1;
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002140
2141 return_bad_resp:
2142 if (objt_server(s->target)) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01002143 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01002144 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_RSP);
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002145 }
Olivier Houcharda798bf52019-03-08 18:52:00 +01002146 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002147
2148 return_srv_prx_502:
2149 rep->analysers &= AN_RES_FLT_END;
2150 txn->status = 502;
2151 s->logs.t_data = -1; /* was not a valid response */
2152 s->si[1].flags |= SI_FL_NOLINGER;
Christopher Fauleta7b677c2018-11-29 16:48:49 +01002153 htx_reply_and_close(s, txn->status, htx_error_message(s));
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002154 if (!(s->flags & SF_ERR_MASK))
2155 s->flags |= SF_ERR_PRXCOND;
2156 if (!(s->flags & SF_FINST_MASK))
2157 s->flags |= SF_FINST_H;
Christopher Fauletf6df2b42020-03-02 16:21:01 +01002158
2159 s->req.analysers &= AN_REQ_FLT_END;
2160 rep->analyse_exp = TICK_ETERNITY;
Christopher Fauletfec7bd12018-10-24 11:17:50 +02002161 return 0;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002162}
2163
2164/* This function is an analyser which forwards response body (including chunk
2165 * sizes if any). It is called as soon as we must forward, even if we forward
2166 * zero byte. The only situation where it must not be called is when we're in
2167 * tunnel mode and we want to forward till the close. It's used both to forward
2168 * remaining data and to resync after end of body. It expects the msg_state to
2169 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
2170 * read more data, or 1 once we can go on with next request or end the stream.
2171 *
2172 * It is capable of compressing response data both in content-length mode and
2173 * in chunked mode. The state machines follows different flows depending on
2174 * whether content-length and chunked modes are used, since there are no
2175 * trailers in content-length :
2176 *
2177 * chk-mode cl-mode
2178 * ,----- BODY -----.
2179 * / \
2180 * V size > 0 V chk-mode
2181 * .--> SIZE -------------> DATA -------------> CRLF
2182 * | | size == 0 | last byte |
2183 * | v final crlf v inspected |
2184 * | TRAILERS -----------> DONE |
2185 * | |
2186 * `----------------------------------------------'
2187 *
2188 * Compression only happens in the DATA state, and must be flushed in final
2189 * states (TRAILERS/DONE) or when leaving on missing data. Normal forwarding
2190 * is performed at once on final states for all bytes parsed, or when leaving
2191 * on missing data.
2192 */
2193int htx_response_forward_body(struct stream *s, struct channel *res, int an_bit)
2194{
2195 struct session *sess = s->sess;
2196 struct http_txn *txn = s->txn;
2197 struct http_msg *msg = &s->txn->rsp;
Christopher Faulet9768c262018-10-22 09:34:31 +02002198 struct htx *htx;
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002199 int ret;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002200
2201 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n",
2202 now_ms, __FUNCTION__,
2203 s,
2204 res,
2205 res->rex, res->wex,
2206 res->flags,
2207 ci_data(res),
2208 res->analysers);
2209
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01002210 htx = htxbuf(&res->buf);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002211
2212 if ((res->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
Christopher Fauletf2824e62018-10-01 12:12:37 +02002213 ((res->flags & CF_SHUTW) && (res->to_forward || co_data(res)))) {
Christopher Faulete0768eb2018-10-03 16:38:02 +02002214 /* Output closed while we were sending data. We must abort and
2215 * wake the other side up.
2216 */
2217 msg->err_state = msg->msg_state;
2218 msg->msg_state = HTTP_MSG_ERROR;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002219 htx_end_response(s);
2220 htx_end_request(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002221 return 1;
2222 }
2223
Christopher Faulet9768c262018-10-22 09:34:31 +02002224 if (msg->msg_state == HTTP_MSG_BODY)
2225 msg->msg_state = HTTP_MSG_DATA;
2226
Christopher Faulete0768eb2018-10-03 16:38:02 +02002227 /* in most states, we should abort in case of early close */
2228 channel_auto_close(res);
2229
Christopher Faulete0768eb2018-10-03 16:38:02 +02002230 if (res->to_forward) {
Christopher Faulet66af0b22019-03-22 14:54:52 +01002231 if (res->to_forward == CHN_INFINITE_FORWARD) {
Christopher Fauletbe7c5522019-11-15 16:31:46 +01002232 if (res->flags & CF_EOI)
2233 msg->msg_state = HTTP_MSG_ENDING;
Christopher Faulet66af0b22019-03-22 14:54:52 +01002234 }
2235 else {
2236 /* We can't process the buffer's contents yet */
2237 res->flags |= CF_WAKE_WRITE;
2238 goto missing_data_or_waiting;
2239 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02002240 }
2241
Christopher Fauletbe7c5522019-11-15 16:31:46 +01002242 if (msg->msg_state >= HTTP_MSG_ENDING)
2243 goto ending;
2244
2245 if ((txn->meth == HTTP_METH_CONNECT && txn->status == 200) || txn->status == 101 ||
2246 (!(msg->flags & HTTP_MSGF_XFER_LEN) && !HAS_RSP_DATA_FILTERS(s))) {
2247 msg->msg_state = HTTP_MSG_ENDING;
2248 goto ending;
2249 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002250
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002251 /* Forward input data. We get it by removing all outgoing data not
2252 * forwarded yet from HTX data size. If there are some data filters, we
2253 * let them decide the amount of data to forward.
Christopher Faulet9768c262018-10-22 09:34:31 +02002254 */
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002255 if (HAS_RSP_DATA_FILTERS(s)) {
2256 ret = flt_http_payload(s, msg, htx->data);
2257 if (ret < 0)
2258 goto return_bad_res;
Christopher Faulet421e7692019-06-13 11:16:45 +02002259 c_adv(res, ret);
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002260 }
2261 else {
Christopher Faulet421e7692019-06-13 11:16:45 +02002262 c_adv(res, htx->data - co_data(res));
Christopher Faulet66af0b22019-03-22 14:54:52 +01002263 if (msg->flags & HTTP_MSGF_XFER_LEN)
2264 channel_htx_forward_forever(res, htx);
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002265 }
Christopher Faulet9768c262018-10-22 09:34:31 +02002266
Christopher Fauletbe7c5522019-11-15 16:31:46 +01002267 if (htx->data != co_data(res))
2268 goto missing_data_or_waiting;
2269
2270 if (!(msg->flags & HTTP_MSGF_XFER_LEN) && res->flags & CF_SHUTR) {
2271 msg->msg_state = HTTP_MSG_ENDING;
2272 goto ending;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002273 }
2274
Christopher Faulet9768c262018-10-22 09:34:31 +02002275 /* Check if the end-of-message is reached and if so, switch the message
Christopher Fauletd20fdb02019-06-13 16:43:22 +02002276 * in HTTP_MSG_ENDING state. Then if all data was marked to be
2277 * forwarded, set the state to HTTP_MSG_DONE.
Christopher Faulet9768c262018-10-22 09:34:31 +02002278 */
2279 if (htx_get_tail_type(htx) != HTX_BLK_EOM)
2280 goto missing_data_or_waiting;
2281
Christopher Fauletd20fdb02019-06-13 16:43:22 +02002282 msg->msg_state = HTTP_MSG_ENDING;
Christopher Faulet9768c262018-10-22 09:34:31 +02002283
Christopher Fauletbe7c5522019-11-15 16:31:46 +01002284 ending:
2285 /* other states, ENDING...TUNNEL */
2286 if (msg->msg_state >= HTTP_MSG_DONE)
2287 goto done;
Christopher Faulet9768c262018-10-22 09:34:31 +02002288
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002289 if (HAS_RSP_DATA_FILTERS(s)) {
2290 ret = flt_http_end(s, msg);
2291 if (ret <= 0) {
2292 if (!ret)
2293 goto missing_data_or_waiting;
2294 goto return_bad_res;
2295 }
2296 }
2297
Christopher Fauletbe7c5522019-11-15 16:31:46 +01002298 if ((txn->meth == HTTP_METH_CONNECT && txn->status == 200) || txn->status == 101 ||
2299 !(msg->flags & HTTP_MSGF_XFER_LEN)) {
2300 msg->msg_state = HTTP_MSG_TUNNEL;
2301 goto ending;
2302 }
2303 else {
2304 msg->msg_state = HTTP_MSG_DONE;
2305 res->to_forward = 0;
2306 }
2307
2308 done:
2309
2310 channel_dont_close(res);
2311
Christopher Fauletf2824e62018-10-01 12:12:37 +02002312 htx_end_response(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002313 if (!(res->analysers & an_bit)) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02002314 htx_end_request(s);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002315 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
2316 if (res->flags & CF_SHUTW) {
2317 /* response errors are most likely due to the
2318 * client aborting the transfer. */
Christopher Faulet93e02d82019-03-08 14:18:50 +01002319 goto return_cli_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002320 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02002321 goto return_bad_res;
2322 }
2323 return 1;
2324 }
2325 return 0;
2326
2327 missing_data_or_waiting:
2328 if (res->flags & CF_SHUTW)
Christopher Faulet93e02d82019-03-08 14:18:50 +01002329 goto return_cli_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002330
Christopher Faulet47365272018-10-31 17:40:50 +01002331 if (htx->flags & HTX_FL_PARSING_ERROR)
2332 goto return_bad_res;
2333
Christopher Faulete0768eb2018-10-03 16:38:02 +02002334 /* stop waiting for data if the input is closed before the end. If the
2335 * client side was already closed, it means that the client has aborted,
2336 * so we don't want to count this as a server abort. Otherwise it's a
2337 * server abort.
2338 */
Christopher Fauletd20fdb02019-06-13 16:43:22 +02002339 if (msg->msg_state < HTTP_MSG_ENDING && res->flags & CF_SHUTR) {
Christopher Faulete0768eb2018-10-03 16:38:02 +02002340 if ((s->req.flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))
Christopher Faulet93e02d82019-03-08 14:18:50 +01002341 goto return_cli_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002342 /* If we have some pending data, we continue the processing */
Christopher Faulet93e02d82019-03-08 14:18:50 +01002343 if (htx_is_empty(htx))
2344 goto return_srv_abort;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002345 }
2346
Christopher Faulete0768eb2018-10-03 16:38:02 +02002347 /* When TE: chunked is used, we need to get there again to parse
2348 * remaining chunks even if the server has closed, so we don't want to
Christopher Faulet9768c262018-10-22 09:34:31 +02002349 * set CF_DONTCLOSE. Similarly when there is a content-leng or if there
2350 * are filters registered on the stream, we don't want to forward a
2351 * close
Christopher Faulete0768eb2018-10-03 16:38:02 +02002352 */
Christopher Fauletaed82cf2018-11-30 22:22:32 +01002353 if ((msg->flags & HTTP_MSGF_XFER_LEN) || HAS_RSP_DATA_FILTERS(s))
Christopher Faulete0768eb2018-10-03 16:38:02 +02002354 channel_dont_close(res);
2355
2356 /* We know that more data are expected, but we couldn't send more that
2357 * what we did. So we always set the CF_EXPECT_MORE flag so that the
2358 * system knows it must not set a PUSH on this first part. Interactive
2359 * modes are already handled by the stream sock layer. We must not do
2360 * this in content-length mode because it could present the MSG_MORE
2361 * flag with the last block of forwarded data, which would cause an
2362 * additional delay to be observed by the receiver.
2363 */
2364 if ((msg->flags & HTTP_MSGF_TE_CHNK) || (msg->flags & HTTP_MSGF_COMPRESSING))
2365 res->flags |= CF_EXPECT_MORE;
2366
2367 /* the stream handler will take care of timeouts and errors */
2368 return 0;
2369
Christopher Faulet93e02d82019-03-08 14:18:50 +01002370 return_srv_abort:
2371 _HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
2372 _HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002373 if (objt_server(s->target))
Christopher Faulet93e02d82019-03-08 14:18:50 +01002374 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.srv_aborts, 1);
2375 if (!(s->flags & SF_ERR_MASK))
2376 s->flags |= SF_ERR_SRVCL;
2377 goto return_error;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002378
Christopher Faulet93e02d82019-03-08 14:18:50 +01002379 return_cli_abort:
2380 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
2381 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002382 if (objt_server(s->target))
Christopher Faulet93e02d82019-03-08 14:18:50 +01002383 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.cli_aborts, 1);
2384 if (!(s->flags & SF_ERR_MASK))
2385 s->flags |= SF_ERR_CLICL;
2386 goto return_error;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002387
Christopher Faulet93e02d82019-03-08 14:18:50 +01002388 return_bad_res:
2389 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
2390 if (objt_server(s->target)) {
2391 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_resp, 1);
2392 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_RSP);
2393 }
Christopher Faulete0768eb2018-10-03 16:38:02 +02002394 if (!(s->flags & SF_ERR_MASK))
Christopher Faulet93e02d82019-03-08 14:18:50 +01002395 s->flags |= SF_ERR_SRVCL;
Christopher Faulete0768eb2018-10-03 16:38:02 +02002396
Christopher Faulet93e02d82019-03-08 14:18:50 +01002397 return_error:
Christopher Faulete0768eb2018-10-03 16:38:02 +02002398 txn->rsp.err_state = txn->rsp.msg_state;
2399 txn->rsp.msg_state = HTTP_MSG_ERROR;
2400 /* don't send any error message as we're in the body */
Christopher Faulet9768c262018-10-22 09:34:31 +02002401 htx_reply_and_close(s, txn->status, NULL);
Christopher Faulete0768eb2018-10-03 16:38:02 +02002402 res->analysers &= AN_RES_FLT_END;
2403 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 +02002404 if (!(s->flags & SF_FINST_MASK))
2405 s->flags |= SF_FINST_D;
2406 return 0;
2407}
2408
Christopher Fauletf2824e62018-10-01 12:12:37 +02002409/* Perform an HTTP redirect based on the information in <rule>. The function
Christopher Faulet99daf282018-11-28 22:58:13 +01002410 * returns zero on success, or zero in case of a, irrecoverable error such
Christopher Fauletf2824e62018-10-01 12:12:37 +02002411 * as too large a request to build a valid response.
2412 */
2413int htx_apply_redirect_rule(struct redirect_rule *rule, struct stream *s, struct http_txn *txn)
2414{
Christopher Faulet99daf282018-11-28 22:58:13 +01002415 struct channel *req = &s->req;
2416 struct channel *res = &s->res;
2417 struct htx *htx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01002418 struct htx_sl *sl;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002419 struct buffer *chunk;
Christopher Faulet99daf282018-11-28 22:58:13 +01002420 struct ist status, reason, location;
2421 unsigned int flags;
2422 size_t data;
Christopher Faulet08e66462019-05-23 16:44:59 +02002423 int close = 0; /* Try to keep the connection alive byt default */
Christopher Fauletf2824e62018-10-01 12:12:37 +02002424
2425 chunk = alloc_trash_chunk();
2426 if (!chunk)
Christopher Faulet99daf282018-11-28 22:58:13 +01002427 goto fail;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002428
Christopher Faulet99daf282018-11-28 22:58:13 +01002429 /*
2430 * Create the location
2431 */
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01002432 htx = htxbuf(&req->buf);
Christopher Fauletf2824e62018-10-01 12:12:37 +02002433 switch(rule->type) {
Christopher Faulet99daf282018-11-28 22:58:13 +01002434 case REDIRECT_TYPE_SCHEME: {
2435 struct http_hdr_ctx ctx;
2436 struct ist path, host;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002437
Christopher Faulet99daf282018-11-28 22:58:13 +01002438 host = ist("");
2439 ctx.blk = NULL;
2440 if (http_find_header(htx, ist("Host"), &ctx, 0))
2441 host = ctx.value;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002442
Christopher Faulet297fbb42019-05-13 14:41:27 +02002443 sl = http_get_stline(htx);
Christopher Faulet99daf282018-11-28 22:58:13 +01002444 path = http_get_path(htx_sl_req_uri(sl));
2445 /* build message using path */
2446 if (path.ptr) {
2447 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
2448 int qs = 0;
2449 while (qs < path.len) {
2450 if (*(path.ptr + qs) == '?') {
2451 path.len = qs;
2452 break;
2453 }
2454 qs++;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002455 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002456 }
2457 }
Christopher Faulet99daf282018-11-28 22:58:13 +01002458 else
2459 path = ist("/");
Christopher Fauletf2824e62018-10-01 12:12:37 +02002460
Christopher Faulet99daf282018-11-28 22:58:13 +01002461 if (rule->rdr_str) { /* this is an old "redirect" rule */
2462 /* add scheme */
2463 if (!chunk_memcat(chunk, rule->rdr_str, rule->rdr_len))
2464 goto fail;
2465 }
2466 else {
2467 /* add scheme with executing log format */
2468 chunk->data += build_logline(s, chunk->area + chunk->data,
2469 chunk->size - chunk->data,
2470 &rule->rdr_fmt);
2471 }
2472 /* add "://" + host + path */
2473 if (!chunk_memcat(chunk, "://", 3) ||
2474 !chunk_memcat(chunk, host.ptr, host.len) ||
2475 !chunk_memcat(chunk, path.ptr, path.len))
2476 goto fail;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002477
Christopher Faulet99daf282018-11-28 22:58:13 +01002478 /* append a slash at the end of the location if needed and missing */
2479 if (chunk->data && chunk->area[chunk->data - 1] != '/' &&
2480 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
2481 if (chunk->data + 1 >= chunk->size)
2482 goto fail;
2483 chunk->area[chunk->data++] = '/';
2484 }
2485 break;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002486 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002487
Christopher Faulet99daf282018-11-28 22:58:13 +01002488 case REDIRECT_TYPE_PREFIX: {
2489 struct ist path;
2490
Christopher Faulet297fbb42019-05-13 14:41:27 +02002491 sl = http_get_stline(htx);
Christopher Faulet99daf282018-11-28 22:58:13 +01002492 path = http_get_path(htx_sl_req_uri(sl));
2493 /* build message using path */
2494 if (path.ptr) {
2495 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
2496 int qs = 0;
2497 while (qs < path.len) {
2498 if (*(path.ptr + qs) == '?') {
2499 path.len = qs;
2500 break;
2501 }
2502 qs++;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002503 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002504 }
2505 }
Christopher Faulet99daf282018-11-28 22:58:13 +01002506 else
2507 path = ist("/");
Christopher Fauletf2824e62018-10-01 12:12:37 +02002508
Christopher Faulet99daf282018-11-28 22:58:13 +01002509 if (rule->rdr_str) { /* this is an old "redirect" rule */
2510 /* add prefix. Note that if prefix == "/", we don't want to
2511 * add anything, otherwise it makes it hard for the user to
2512 * configure a self-redirection.
2513 */
2514 if (rule->rdr_len != 1 || *rule->rdr_str != '/') {
2515 if (!chunk_memcat(chunk, rule->rdr_str, rule->rdr_len))
2516 goto fail;
2517 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002518 }
Christopher Faulet99daf282018-11-28 22:58:13 +01002519 else {
2520 /* add prefix with executing log format */
2521 chunk->data += build_logline(s, chunk->area + chunk->data,
2522 chunk->size - chunk->data,
2523 &rule->rdr_fmt);
2524 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002525
Christopher Faulet99daf282018-11-28 22:58:13 +01002526 /* add path */
2527 if (!chunk_memcat(chunk, path.ptr, path.len))
2528 goto fail;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002529
Christopher Faulet99daf282018-11-28 22:58:13 +01002530 /* append a slash at the end of the location if needed and missing */
2531 if (chunk->data && chunk->area[chunk->data - 1] != '/' &&
2532 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
2533 if (chunk->data + 1 >= chunk->size)
2534 goto fail;
2535 chunk->area[chunk->data++] = '/';
2536 }
2537 break;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002538 }
Christopher Faulet99daf282018-11-28 22:58:13 +01002539 case REDIRECT_TYPE_LOCATION:
2540 default:
2541 if (rule->rdr_str) { /* this is an old "redirect" rule */
2542 /* add location */
2543 if (!chunk_memcat(chunk, rule->rdr_str, rule->rdr_len))
2544 goto fail;
2545 }
2546 else {
2547 /* add location with executing log format */
2548 chunk->data += build_logline(s, chunk->area + chunk->data,
2549 chunk->size - chunk->data,
2550 &rule->rdr_fmt);
2551 }
2552 break;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002553 }
Christopher Faulet99daf282018-11-28 22:58:13 +01002554 location = ist2(chunk->area, chunk->data);
2555
2556 /*
2557 * Create the 30x response
2558 */
2559 switch (rule->code) {
2560 case 308:
2561 status = ist("308");
2562 reason = ist("Permanent Redirect");
2563 break;
2564 case 307:
2565 status = ist("307");
2566 reason = ist("Temporary Redirect");
2567 break;
2568 case 303:
2569 status = ist("303");
2570 reason = ist("See Other");
2571 break;
2572 case 301:
2573 status = ist("301");
2574 reason = ist("Moved Permanently");
2575 break;
2576 case 302:
2577 default:
2578 status = ist("302");
2579 reason = ist("Found");
2580 break;
2581 }
2582
Christopher Faulet08e66462019-05-23 16:44:59 +02002583 if (!(txn->req.flags & HTTP_MSGF_BODYLESS) && txn->req.msg_state != HTTP_MSG_DONE)
2584 close = 1;
2585
Christopher Faulet99daf282018-11-28 22:58:13 +01002586 htx = htx_from_buf(&res->buf);
Kevin Zhu0fd70882020-01-07 09:42:55 +01002587 /* Trim any possible response */
2588 channel_htx_truncate(&s->res, htx);
Christopher Faulet99daf282018-11-28 22:58:13 +01002589 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN|HTX_SL_F_BODYLESS);
2590 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), status, reason);
2591 if (!sl)
2592 goto fail;
2593 sl->info.res.status = rule->code;
2594 s->txn->status = rule->code;
2595
Christopher Faulet08e66462019-05-23 16:44:59 +02002596 if (close && !htx_add_header(htx, ist("Connection"), ist("close")))
2597 goto fail;
2598
2599 if (!htx_add_header(htx, ist("Content-length"), ist("0")) ||
Christopher Faulet99daf282018-11-28 22:58:13 +01002600 !htx_add_header(htx, ist("Location"), location))
2601 goto fail;
2602
2603 if (rule->code == 302 || rule->code == 303 || rule->code == 307) {
2604 if (!htx_add_header(htx, ist("Cache-Control"), ist("no-cache")))
2605 goto fail;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002606 }
2607
2608 if (rule->cookie_len) {
Christopher Faulet99daf282018-11-28 22:58:13 +01002609 if (!htx_add_header(htx, ist("Set-Cookie"), ist2(rule->cookie_str, rule->cookie_len)))
2610 goto fail;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002611 }
2612
Christopher Faulet99daf282018-11-28 22:58:13 +01002613 if (!htx_add_endof(htx, HTX_BLK_EOH) || !htx_add_endof(htx, HTX_BLK_EOM))
2614 goto fail;
2615
Kevin Zhu0fd70882020-01-07 09:42:55 +01002616 htx_to_buf(htx, &res->buf);
2617
Christopher Faulet99daf282018-11-28 22:58:13 +01002618 data = htx->data - co_data(res);
Christopher Faulet99daf282018-11-28 22:58:13 +01002619 c_adv(res, data);
2620 res->total += data;
2621
2622 channel_auto_read(req);
2623 channel_abort(req);
2624 channel_auto_close(req);
Christopher Faulet202c6ce2019-01-07 14:57:35 +01002625 channel_htx_erase(req, htxbuf(&req->buf));
Christopher Faulet99daf282018-11-28 22:58:13 +01002626
2627 res->wex = tick_add_ifset(now_ms, res->wto);
2628 channel_auto_read(res);
2629 channel_auto_close(res);
2630 channel_shutr_now(res);
Christopher Faulet7d84db32020-01-28 09:18:10 +01002631 if (rule->flags & REDIRECT_FLAG_FROM_REQ) {
2632 /* let's log the request time */
2633 s->logs.tv_request = now;
2634 req->analysers &= AN_REQ_FLT_END;
Christopher Faulet99daf282018-11-28 22:58:13 +01002635
Christopher Faulet7d84db32020-01-28 09:18:10 +01002636 if (s->sess->fe == s->be) /* report it if the request was intercepted by the frontend */
2637 _HA_ATOMIC_ADD(&s->sess->fe->fe_counters.intercepted_req, 1);
2638 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02002639
2640 if (!(s->flags & SF_ERR_MASK))
2641 s->flags |= SF_ERR_LOCAL;
2642 if (!(s->flags & SF_FINST_MASK))
Christopher Faulet7d84db32020-01-28 09:18:10 +01002643 s->flags |= ((rule->flags & REDIRECT_FLAG_FROM_REQ) ? SF_FINST_R : SF_FINST_H);
Christopher Fauletf2824e62018-10-01 12:12:37 +02002644
Christopher Faulet99daf282018-11-28 22:58:13 +01002645 free_trash_chunk(chunk);
2646 return 1;
2647
2648 fail:
2649 /* If an error occurred, remove the incomplete HTTP response from the
2650 * buffer */
Christopher Faulet202c6ce2019-01-07 14:57:35 +01002651 channel_htx_truncate(res, htxbuf(&res->buf));
Christopher Fauletf2824e62018-10-01 12:12:37 +02002652 free_trash_chunk(chunk);
Christopher Faulet99daf282018-11-28 22:58:13 +01002653 return 0;
Christopher Fauletf2824e62018-10-01 12:12:37 +02002654}
2655
Christopher Faulet72333522018-10-24 11:25:02 +02002656int htx_transform_header_str(struct stream* s, struct channel *chn, struct htx *htx,
2657 struct ist name, const char *str, struct my_regex *re, int action)
2658{
2659 struct http_hdr_ctx ctx;
2660 struct buffer *output = get_trash_chunk();
2661
2662 /* find full header is action is ACT_HTTP_REPLACE_HDR */
2663 ctx.blk = NULL;
2664 while (http_find_header(htx, name, &ctx, (action == ACT_HTTP_REPLACE_HDR))) {
2665 if (!regex_exec_match2(re, ctx.value.ptr, ctx.value.len, MAX_MATCH, pmatch, 0))
2666 continue;
2667
2668 output->data = exp_replace(output->area, output->size, ctx.value.ptr, str, pmatch);
2669 if (output->data == -1)
2670 return -1;
2671 if (!http_replace_header_value(htx, &ctx, ist2(output->area, output->data)))
2672 return -1;
2673 }
2674 return 0;
2675}
2676
2677static int htx_transform_header(struct stream* s, struct channel *chn, struct htx *htx,
2678 const struct ist name, struct list *fmt, struct my_regex *re, int action)
2679{
2680 struct buffer *replace;
2681 int ret = -1;
2682
2683 replace = alloc_trash_chunk();
2684 if (!replace)
2685 goto leave;
2686
2687 replace->data = build_logline(s, replace->area, replace->size, fmt);
2688 if (replace->data >= replace->size - 1)
2689 goto leave;
2690
2691 ret = htx_transform_header_str(s, chn, htx, name, replace->area, re, action);
2692
2693 leave:
2694 free_trash_chunk(replace);
2695 return ret;
2696}
2697
Christopher Fauletee9b5bf2018-11-28 13:55:14 +01002698
2699/* Terminate a 103-Erly-hints response and send it to the client. It returns 0
2700 * on success and -1 on error. The response channel is updated accordingly.
2701 */
2702static int htx_reply_103_early_hints(struct channel *res)
2703{
2704 struct htx *htx = htx_from_buf(&res->buf);
2705 size_t data;
2706
Christopher Faulet9869f932019-06-26 14:23:54 +02002707 if (!htx_add_endof(htx, HTX_BLK_EOH)) {
Christopher Fauletee9b5bf2018-11-28 13:55:14 +01002708 /* If an error occurred during an Early-hint rule,
2709 * remove the incomplete HTTP 103 response from the
2710 * buffer */
Christopher Faulet202c6ce2019-01-07 14:57:35 +01002711 channel_htx_truncate(res, htx);
Christopher Fauletee9b5bf2018-11-28 13:55:14 +01002712 return -1;
2713 }
2714
2715 data = htx->data - co_data(res);
Christopher Fauletee9b5bf2018-11-28 13:55:14 +01002716 c_adv(res, data);
2717 res->total += data;
2718 return 0;
2719}
2720
Christopher Faulet6eb92892018-11-15 16:39:29 +01002721/*
2722 * Build an HTTP Early Hint HTTP 103 response header with <name> as name and with a value
2723 * built according to <fmt> log line format.
Christopher Fauletee9b5bf2018-11-28 13:55:14 +01002724 * If <early_hints> is 0, it is starts a new response by adding the start
2725 * line. If an error occurred -1 is returned. On success 0 is returned. The
2726 * channel is not updated here. It must be done calling the function
2727 * htx_reply_103_early_hints().
Christopher Faulet6eb92892018-11-15 16:39:29 +01002728 */
Christopher Fauletee9b5bf2018-11-28 13:55:14 +01002729static int htx_add_early_hint_header(struct stream *s, int early_hints, const struct ist name, struct list *fmt)
Christopher Faulet6eb92892018-11-15 16:39:29 +01002730{
Christopher Fauletee9b5bf2018-11-28 13:55:14 +01002731 struct channel *res = &s->res;
2732 struct htx *htx = htx_from_buf(&res->buf);
2733 struct buffer *value = alloc_trash_chunk();
2734
Christopher Faulet6eb92892018-11-15 16:39:29 +01002735 if (!early_hints) {
Christopher Fauletee9b5bf2018-11-28 13:55:14 +01002736 struct htx_sl *sl;
2737 unsigned int flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|
2738 HTX_SL_F_XFER_LEN|HTX_SL_F_BODYLESS);
2739
2740 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags,
2741 ist("HTTP/1.1"), ist("103"), ist("Early Hints"));
2742 if (!sl)
Christopher Faulet6eb92892018-11-15 16:39:29 +01002743 goto fail;
Christopher Fauletee9b5bf2018-11-28 13:55:14 +01002744 sl->info.res.status = 103;
Christopher Faulet6eb92892018-11-15 16:39:29 +01002745 }
2746
Christopher Fauletee9b5bf2018-11-28 13:55:14 +01002747 value->data = build_logline(s, b_tail(value), b_room(value), fmt);
2748 if (!htx_add_header(htx, name, ist2(b_head(value), b_data(value))))
Christopher Faulet6eb92892018-11-15 16:39:29 +01002749 goto fail;
2750
Christopher Fauletee9b5bf2018-11-28 13:55:14 +01002751 free_trash_chunk(value);
Christopher Fauletee9b5bf2018-11-28 13:55:14 +01002752 return 1;
Christopher Faulet6eb92892018-11-15 16:39:29 +01002753
2754 fail:
Christopher Fauletee9b5bf2018-11-28 13:55:14 +01002755 /* If an error occurred during an Early-hint rule, remove the incomplete
2756 * HTTP 103 response from the buffer */
Christopher Faulet202c6ce2019-01-07 14:57:35 +01002757 channel_htx_truncate(res, htx);
Christopher Fauletee9b5bf2018-11-28 13:55:14 +01002758 free_trash_chunk(value);
2759 return -1;
Christopher Faulet6eb92892018-11-15 16:39:29 +01002760}
2761
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002762/* This function executes one of the set-{method,path,query,uri} actions. It
2763 * takes the string from the variable 'replace' with length 'len', then modifies
2764 * the relevant part of the request line accordingly. Then it updates various
2765 * pointers to the next elements which were moved, and the total buffer length.
2766 * It finds the action to be performed in p[2], previously filled by function
2767 * parse_set_req_line(). It returns 0 in case of success, -1 in case of internal
2768 * error, though this can be revisited when this code is finally exploited.
2769 *
2770 * 'action' can be '0' to replace method, '1' to replace path, '2' to replace
2771 * query string and 3 to replace uri.
2772 *
2773 * In query string case, the mark question '?' must be set at the start of the
2774 * string by the caller, event if the replacement query string is empty.
2775 */
2776int htx_req_replace_stline(int action, const char *replace, int len,
2777 struct proxy *px, struct stream *s)
2778{
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01002779 struct htx *htx = htxbuf(&s->req.buf);
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002780
2781 switch (action) {
2782 case 0: // method
2783 if (!http_replace_req_meth(htx, ist2(replace, len)))
2784 return -1;
2785 break;
2786
2787 case 1: // path
2788 if (!http_replace_req_path(htx, ist2(replace, len)))
2789 return -1;
2790 break;
2791
2792 case 2: // query
2793 if (!http_replace_req_query(htx, ist2(replace, len)))
2794 return -1;
2795 break;
2796
2797 case 3: // uri
2798 if (!http_replace_req_uri(htx, ist2(replace, len)))
2799 return -1;
2800 break;
2801
2802 default:
2803 return -1;
2804 }
2805 return 0;
2806}
2807
2808/* This function replace the HTTP status code and the associated message. The
2809 * variable <status> contains the new status code. This function never fails.
2810 */
2811void htx_res_set_status(unsigned int status, const char *reason, struct stream *s)
2812{
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01002813 struct htx *htx = htxbuf(&s->res.buf);
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002814 char *res;
2815
2816 chunk_reset(&trash);
2817 res = ultoa_o(status, trash.area, trash.size);
2818 trash.data = res - trash.area;
2819
2820 /* Do we have a custom reason format string? */
2821 if (reason == NULL)
2822 reason = http_get_reason(status);
2823
Christopher Faulet87a2c0d2018-12-13 21:58:18 +01002824 if (http_replace_res_status(htx, ist2(trash.area, trash.data)))
Christopher Faulet8d8ac192018-10-24 11:27:39 +02002825 http_replace_res_reason(htx, ist2(reason, strlen(reason)));
2826}
2827
Christopher Faulet3e964192018-10-24 11:39:23 +02002828/* Executes the http-request rules <rules> for stream <s>, proxy <px> and
2829 * transaction <txn>. Returns the verdict of the first rule that prevents
2830 * further processing of the request (auth, deny, ...), and defaults to
2831 * HTTP_RULE_RES_STOP if it executed all rules or stopped on an allow, or
2832 * HTTP_RULE_RES_CONT if the last rule was reached. It may set the TX_CLTARPIT
2833 * on txn->flags if it encounters a tarpit rule. If <deny_status> is not NULL
2834 * and a deny/tarpit rule is matched, it will be filled with this rule's deny
2835 * status.
2836 */
2837static enum rule_result htx_req_get_intercept_rule(struct proxy *px, struct list *rules,
2838 struct stream *s, int *deny_status)
2839{
2840 struct session *sess = strm_sess(s);
2841 struct http_txn *txn = s->txn;
2842 struct htx *htx;
Christopher Faulet3e964192018-10-24 11:39:23 +02002843 struct act_rule *rule;
2844 struct http_hdr_ctx ctx;
2845 const char *auth_realm;
Christopher Faulet3e964192018-10-24 11:39:23 +02002846 enum rule_result rule_ret = HTTP_RULE_RES_CONT;
2847 int act_flags = 0;
Christopher Fauletee9b5bf2018-11-28 13:55:14 +01002848 int early_hints = 0;
Christopher Faulet3e964192018-10-24 11:39:23 +02002849
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01002850 htx = htxbuf(&s->req.buf);
Christopher Faulet3e964192018-10-24 11:39:23 +02002851
2852 /* If "the current_rule_list" match the executed rule list, we are in
2853 * resume condition. If a resume is needed it is always in the action
2854 * and never in the ACL or converters. In this case, we initialise the
2855 * current rule, and go to the action execution point.
2856 */
2857 if (s->current_rule) {
2858 rule = s->current_rule;
2859 s->current_rule = NULL;
2860 if (s->current_rule_list == rules)
2861 goto resume_execution;
2862 }
2863 s->current_rule_list = rules;
2864
2865 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
2880 act_flags |= ACT_FLAG_FIRST;
2881 resume_execution:
Christopher Fauletee9b5bf2018-11-28 13:55:14 +01002882 if (early_hints && rule->action != ACT_HTTP_EARLY_HINT) {
2883 early_hints = 0;
2884 if (htx_reply_103_early_hints(&s->res) == -1) {
2885 rule_ret = HTTP_RULE_RES_BADREQ;
2886 goto end;
2887 }
2888 }
2889
Christopher Faulet3e964192018-10-24 11:39:23 +02002890 switch (rule->action) {
2891 case ACT_ACTION_ALLOW:
2892 rule_ret = HTTP_RULE_RES_STOP;
2893 goto end;
2894
2895 case ACT_ACTION_DENY:
2896 if (deny_status)
2897 *deny_status = rule->deny_status;
2898 rule_ret = HTTP_RULE_RES_DENY;
2899 goto end;
2900
2901 case ACT_HTTP_REQ_TARPIT:
2902 txn->flags |= TX_CLTARPIT;
2903 if (deny_status)
2904 *deny_status = rule->deny_status;
2905 rule_ret = HTTP_RULE_RES_DENY;
2906 goto end;
2907
2908 case ACT_HTTP_REQ_AUTH:
Christopher Faulet3e964192018-10-24 11:39:23 +02002909 /* Auth might be performed on regular http-req rules as well as on stats */
2910 auth_realm = rule->arg.auth.realm;
2911 if (!auth_realm) {
2912 if (px->uri_auth && rules == &px->uri_auth->http_req_rules)
2913 auth_realm = STATS_DEFAULT_REALM;
2914 else
2915 auth_realm = px->id;
2916 }
2917 /* send 401/407 depending on whether we use a proxy or not. We still
2918 * count one error, because normal browsing won't significantly
2919 * increase the counter but brute force attempts will.
2920 */
Christopher Faulet3e964192018-10-24 11:39:23 +02002921 rule_ret = HTTP_RULE_RES_ABRT;
Christopher Faulet12c51e22018-11-28 15:59:42 +01002922 if (htx_reply_40x_unauthorized(s, auth_realm) == -1)
2923 rule_ret = HTTP_RULE_RES_BADREQ;
2924 stream_inc_http_err_ctr(s);
Christopher Faulet3e964192018-10-24 11:39:23 +02002925 goto end;
2926
2927 case ACT_HTTP_REDIR:
Christopher Faulet3e964192018-10-24 11:39:23 +02002928 rule_ret = HTTP_RULE_RES_DONE;
2929 if (!htx_apply_redirect_rule(rule->arg.redir, s, txn))
2930 rule_ret = HTTP_RULE_RES_BADREQ;
2931 goto end;
2932
2933 case ACT_HTTP_SET_NICE:
2934 s->task->nice = rule->arg.nice;
2935 break;
2936
2937 case ACT_HTTP_SET_TOS:
Willy Tarreau1a18b542018-12-11 16:37:42 +01002938 conn_set_tos(objt_conn(sess->origin), rule->arg.tos);
Christopher Faulet3e964192018-10-24 11:39:23 +02002939 break;
2940
2941 case ACT_HTTP_SET_MARK:
Willy Tarreau1a18b542018-12-11 16:37:42 +01002942 conn_set_mark(objt_conn(sess->origin), rule->arg.mark);
Christopher Faulet3e964192018-10-24 11:39:23 +02002943 break;
2944
2945 case ACT_HTTP_SET_LOGL:
2946 s->logs.level = rule->arg.loglevel;
2947 break;
2948
2949 case ACT_HTTP_REPLACE_HDR:
2950 case ACT_HTTP_REPLACE_VAL:
2951 if (htx_transform_header(s, &s->req, htx,
2952 ist2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len),
2953 &rule->arg.hdr_add.fmt,
Dragan Dosen26743032019-04-30 15:54:36 +02002954 rule->arg.hdr_add.re, rule->action)) {
Christopher Faulet3e964192018-10-24 11:39:23 +02002955 rule_ret = HTTP_RULE_RES_BADREQ;
2956 goto end;
2957 }
2958 break;
2959
2960 case ACT_HTTP_DEL_HDR:
2961 /* remove all occurrences of the header */
2962 ctx.blk = NULL;
2963 while (http_find_header(htx, ist2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len), &ctx, 1))
2964 http_remove_header(htx, &ctx);
2965 break;
2966
2967 case ACT_HTTP_SET_HDR:
2968 case ACT_HTTP_ADD_HDR: {
2969 /* The scope of the trash buffer must be limited to this function. The
2970 * build_logline() function can execute a lot of other function which
2971 * can use the trash buffer. So for limiting the scope of this global
2972 * buffer, we build first the header value using build_logline, and
2973 * after we store the header name.
2974 */
2975 struct buffer *replace;
2976 struct ist n, v;
2977
2978 replace = alloc_trash_chunk();
2979 if (!replace) {
2980 rule_ret = HTTP_RULE_RES_BADREQ;
2981 goto end;
2982 }
2983
2984 replace->data = build_logline(s, replace->area, replace->size, &rule->arg.hdr_add.fmt);
2985 n = ist2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len);
2986 v = ist2(replace->area, replace->data);
2987
2988 if (rule->action == ACT_HTTP_SET_HDR) {
2989 /* remove all occurrences of the header */
2990 ctx.blk = NULL;
2991 while (http_find_header(htx, ist2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len), &ctx, 1))
2992 http_remove_header(htx, &ctx);
2993 }
2994
2995 if (!http_add_header(htx, n, v)) {
2996 static unsigned char rate_limit = 0;
2997
2998 if ((rate_limit++ & 255) == 0) {
2999 send_log(px, LOG_WARNING, "Proxy %s failed to add or set the request header '%.*s' for request #%u. You might need to increase tune.maxrewrite.", px->id, (int)n.len, n.ptr, s->uniq_id);
3000 }
3001
Olivier Houcharda798bf52019-03-08 18:52:00 +01003002 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_rewrites, 1);
Christopher Faulet3e964192018-10-24 11:39:23 +02003003 if (sess->fe != s->be)
Olivier Houcharda798bf52019-03-08 18:52:00 +01003004 _HA_ATOMIC_ADD(&s->be->be_counters.failed_rewrites, 1);
Christopher Faulet3e964192018-10-24 11:39:23 +02003005 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +01003006 _HA_ATOMIC_ADD(&sess->listener->counters->failed_rewrites, 1);
Christopher Faulet3e964192018-10-24 11:39:23 +02003007 }
3008 free_trash_chunk(replace);
3009 break;
3010 }
3011
3012 case ACT_HTTP_DEL_ACL:
3013 case ACT_HTTP_DEL_MAP: {
3014 struct pat_ref *ref;
3015 struct buffer *key;
3016
3017 /* collect reference */
3018 ref = pat_ref_lookup(rule->arg.map.ref);
3019 if (!ref)
3020 continue;
3021
3022 /* allocate key */
3023 key = alloc_trash_chunk();
3024 if (!key) {
3025 rule_ret = HTTP_RULE_RES_BADREQ;
3026 goto end;
3027 }
3028
3029 /* collect key */
3030 key->data = build_logline(s, key->area, key->size, &rule->arg.map.key);
3031 key->area[key->data] = '\0';
3032
3033 /* perform update */
3034 /* returned code: 1=ok, 0=ko */
3035 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
3036 pat_ref_delete(ref, key->area);
3037 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
3038
3039 free_trash_chunk(key);
3040 break;
3041 }
3042
3043 case ACT_HTTP_ADD_ACL: {
3044 struct pat_ref *ref;
3045 struct buffer *key;
3046
3047 /* collect reference */
3048 ref = pat_ref_lookup(rule->arg.map.ref);
3049 if (!ref)
3050 continue;
3051
3052 /* allocate key */
3053 key = alloc_trash_chunk();
3054 if (!key) {
3055 rule_ret = HTTP_RULE_RES_BADREQ;
3056 goto end;
3057 }
3058
3059 /* collect key */
3060 key->data = build_logline(s, key->area, key->size, &rule->arg.map.key);
3061 key->area[key->data] = '\0';
3062
3063 /* perform update */
3064 /* add entry only if it does not already exist */
3065 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
3066 if (pat_ref_find_elt(ref, key->area) == NULL)
3067 pat_ref_add(ref, key->area, NULL, NULL);
3068 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
3069
3070 free_trash_chunk(key);
3071 break;
3072 }
3073
3074 case ACT_HTTP_SET_MAP: {
3075 struct pat_ref *ref;
3076 struct buffer *key, *value;
3077
3078 /* collect reference */
3079 ref = pat_ref_lookup(rule->arg.map.ref);
3080 if (!ref)
3081 continue;
3082
3083 /* allocate key */
3084 key = alloc_trash_chunk();
3085 if (!key) {
3086 rule_ret = HTTP_RULE_RES_BADREQ;
3087 goto end;
3088 }
3089
3090 /* allocate value */
3091 value = alloc_trash_chunk();
3092 if (!value) {
3093 free_trash_chunk(key);
3094 rule_ret = HTTP_RULE_RES_BADREQ;
3095 goto end;
3096 }
3097
3098 /* collect key */
3099 key->data = build_logline(s, key->area, key->size, &rule->arg.map.key);
3100 key->area[key->data] = '\0';
3101
3102 /* collect value */
3103 value->data = build_logline(s, value->area, value->size, &rule->arg.map.value);
3104 value->area[value->data] = '\0';
3105
3106 /* perform update */
Christopher Faulete84289e2019-04-19 14:50:55 +02003107 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Christopher Faulet3e964192018-10-24 11:39:23 +02003108 if (pat_ref_find_elt(ref, key->area) != NULL)
3109 /* update entry if it exists */
3110 pat_ref_set(ref, key->area, value->area, NULL);
3111 else
3112 /* insert a new entry */
3113 pat_ref_add(ref, key->area, value->area, NULL);
Christopher Faulete84289e2019-04-19 14:50:55 +02003114 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Christopher Faulet3e964192018-10-24 11:39:23 +02003115 free_trash_chunk(key);
3116 free_trash_chunk(value);
3117 break;
3118 }
3119
3120 case ACT_HTTP_EARLY_HINT:
3121 if (!(txn->req.flags & HTTP_MSGF_VER_11))
3122 break;
Christopher Fauletee9b5bf2018-11-28 13:55:14 +01003123 early_hints = htx_add_early_hint_header(s, early_hints,
3124 ist2(rule->arg.early_hint.name, rule->arg.early_hint.name_len),
Christopher Faulet3e964192018-10-24 11:39:23 +02003125 &rule->arg.early_hint.fmt);
Christopher Fauletee9b5bf2018-11-28 13:55:14 +01003126 if (early_hints == -1) {
3127 rule_ret = HTTP_RULE_RES_BADREQ;
Christopher Faulet3e964192018-10-24 11:39:23 +02003128 goto end;
3129 }
3130 break;
3131
3132 case ACT_CUSTOM:
3133 if ((s->req.flags & CF_READ_ERROR) ||
3134 ((s->req.flags & (CF_SHUTR|CF_READ_NULL)) &&
Christopher Faulet3e964192018-10-24 11:39:23 +02003135 (px->options & PR_O_ABRT_CLOSE)))
3136 act_flags |= ACT_FLAG_FINAL;
3137
3138 switch (rule->action_ptr(rule, px, s->sess, s, act_flags)) {
3139 case ACT_RET_ERR:
3140 case ACT_RET_CONT:
3141 break;
3142 case ACT_RET_STOP:
Christopher Faulet4629d082019-07-04 11:27:15 +02003143 rule_ret = HTTP_RULE_RES_STOP;
3144 goto end;
3145 case ACT_RET_DONE:
Christopher Faulet3e964192018-10-24 11:39:23 +02003146 rule_ret = HTTP_RULE_RES_DONE;
3147 goto end;
3148 case ACT_RET_YIELD:
3149 s->current_rule = rule;
3150 rule_ret = HTTP_RULE_RES_YIELD;
3151 goto end;
3152 }
3153 break;
3154
3155 case ACT_ACTION_TRK_SC0 ... ACT_ACTION_TRK_SCMAX:
3156 /* Note: only the first valid tracking parameter of each
3157 * applies.
3158 */
3159
3160 if (stkctr_entry(&s->stkctr[trk_idx(rule->action)]) == NULL) {
3161 struct stktable *t;
3162 struct stksess *ts;
3163 struct stktable_key *key;
3164 void *ptr1, *ptr2;
3165
3166 t = rule->arg.trk_ctr.table.t;
3167 key = stktable_fetch_key(t, s->be, sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL,
3168 rule->arg.trk_ctr.expr, NULL);
3169
3170 if (key && (ts = stktable_get_entry(t, key))) {
3171 stream_track_stkctr(&s->stkctr[trk_idx(rule->action)], t, ts);
3172
3173 /* let's count a new HTTP request as it's the first time we do it */
3174 ptr1 = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_CNT);
3175 ptr2 = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_RATE);
3176 if (ptr1 || ptr2) {
3177 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
3178
3179 if (ptr1)
3180 stktable_data_cast(ptr1, http_req_cnt)++;
3181
3182 if (ptr2)
3183 update_freq_ctr_period(&stktable_data_cast(ptr2, http_req_rate),
3184 t->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u, 1);
3185
3186 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
3187
3188 /* If data was modified, we need to touch to re-schedule sync */
3189 stktable_touch_local(t, ts, 0);
3190 }
3191
3192 stkctr_set_flags(&s->stkctr[trk_idx(rule->action)], STKCTR_TRACK_CONTENT);
3193 if (sess->fe != s->be)
3194 stkctr_set_flags(&s->stkctr[trk_idx(rule->action)], STKCTR_TRACK_BACKEND);
3195 }
3196 }
3197 break;
3198
Joseph Herlantc42c0e92018-11-25 10:43:27 -08003199 /* other flags exists, but normally, they never be matched. */
Christopher Faulet3e964192018-10-24 11:39:23 +02003200 default:
3201 break;
3202 }
3203 }
3204
3205 end:
3206 if (early_hints) {
Christopher Fauletee9b5bf2018-11-28 13:55:14 +01003207 if (htx_reply_103_early_hints(&s->res) == -1)
3208 rule_ret = HTTP_RULE_RES_BADREQ;
Christopher Faulet3e964192018-10-24 11:39:23 +02003209 }
3210
3211 /* we reached the end of the rules, nothing to report */
3212 return rule_ret;
3213}
3214
3215/* Executes the http-response rules <rules> for stream <s> and proxy <px>. It
3216 * returns one of 5 possible statuses: HTTP_RULE_RES_CONT, HTTP_RULE_RES_STOP,
3217 * HTTP_RULE_RES_DONE, HTTP_RULE_RES_YIELD, or HTTP_RULE_RES_BADREQ. If *CONT
3218 * is returned, the process can continue the evaluation of next rule list. If
3219 * *STOP or *DONE is returned, the process must stop the evaluation. If *BADREQ
3220 * is returned, it means the operation could not be processed and a server error
3221 * must be returned. It may set the TX_SVDENY on txn->flags if it encounters a
3222 * deny rule. If *YIELD is returned, the caller must call again the function
3223 * with the same context.
3224 */
3225static enum rule_result htx_res_get_intercept_rule(struct proxy *px, struct list *rules,
3226 struct stream *s)
3227{
3228 struct session *sess = strm_sess(s);
3229 struct http_txn *txn = s->txn;
3230 struct htx *htx;
Christopher Faulet3e964192018-10-24 11:39:23 +02003231 struct act_rule *rule;
3232 struct http_hdr_ctx ctx;
3233 enum rule_result rule_ret = HTTP_RULE_RES_CONT;
3234 int act_flags = 0;
3235
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003236 htx = htxbuf(&s->res.buf);
Christopher Faulet3e964192018-10-24 11:39:23 +02003237
3238 /* If "the current_rule_list" match the executed rule list, we are in
3239 * resume condition. If a resume is needed it is always in the action
3240 * and never in the ACL or converters. In this case, we initialise the
3241 * current rule, and go to the action execution point.
3242 */
3243 if (s->current_rule) {
3244 rule = s->current_rule;
3245 s->current_rule = NULL;
3246 if (s->current_rule_list == rules)
3247 goto resume_execution;
3248 }
3249 s->current_rule_list = rules;
3250
3251 list_for_each_entry(rule, rules, list) {
3252 /* check optional condition */
3253 if (rule->cond) {
3254 int ret;
3255
3256 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
3257 ret = acl_pass(ret);
3258
3259 if (rule->cond->pol == ACL_COND_UNLESS)
3260 ret = !ret;
3261
3262 if (!ret) /* condition not matched */
3263 continue;
3264 }
3265
3266 act_flags |= ACT_FLAG_FIRST;
3267resume_execution:
3268 switch (rule->action) {
3269 case ACT_ACTION_ALLOW:
3270 rule_ret = HTTP_RULE_RES_STOP; /* "allow" rules are OK */
3271 goto end;
3272
3273 case ACT_ACTION_DENY:
3274 txn->flags |= TX_SVDENY;
3275 rule_ret = HTTP_RULE_RES_STOP;
3276 goto end;
3277
3278 case ACT_HTTP_SET_NICE:
3279 s->task->nice = rule->arg.nice;
3280 break;
3281
3282 case ACT_HTTP_SET_TOS:
Willy Tarreau1a18b542018-12-11 16:37:42 +01003283 conn_set_tos(objt_conn(sess->origin), rule->arg.tos);
Christopher Faulet3e964192018-10-24 11:39:23 +02003284 break;
3285
3286 case ACT_HTTP_SET_MARK:
Willy Tarreau1a18b542018-12-11 16:37:42 +01003287 conn_set_mark(objt_conn(sess->origin), rule->arg.mark);
Christopher Faulet3e964192018-10-24 11:39:23 +02003288 break;
3289
3290 case ACT_HTTP_SET_LOGL:
3291 s->logs.level = rule->arg.loglevel;
3292 break;
3293
3294 case ACT_HTTP_REPLACE_HDR:
3295 case ACT_HTTP_REPLACE_VAL:
3296 if (htx_transform_header(s, &s->res, htx,
3297 ist2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len),
3298 &rule->arg.hdr_add.fmt,
Dragan Dosen26743032019-04-30 15:54:36 +02003299 rule->arg.hdr_add.re, rule->action)) {
Christopher Faulet3e964192018-10-24 11:39:23 +02003300 rule_ret = HTTP_RULE_RES_BADREQ;
3301 goto end;
3302 }
3303 break;
3304
3305 case ACT_HTTP_DEL_HDR:
3306 /* remove all occurrences of the header */
3307 ctx.blk = NULL;
3308 while (http_find_header(htx, ist2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len), &ctx, 1))
3309 http_remove_header(htx, &ctx);
3310 break;
3311
3312 case ACT_HTTP_SET_HDR:
3313 case ACT_HTTP_ADD_HDR: {
3314 struct buffer *replace;
3315 struct ist n, v;
3316
3317 replace = alloc_trash_chunk();
3318 if (!replace) {
3319 rule_ret = HTTP_RULE_RES_BADREQ;
3320 goto end;
3321 }
3322
3323 replace->data = build_logline(s, replace->area, replace->size, &rule->arg.hdr_add.fmt);
3324 n = ist2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len);
3325 v = ist2(replace->area, replace->data);
3326
3327 if (rule->action == ACT_HTTP_SET_HDR) {
3328 /* remove all occurrences of the header */
3329 ctx.blk = NULL;
3330 while (http_find_header(htx, ist2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len), &ctx, 1))
3331 http_remove_header(htx, &ctx);
3332 }
3333
3334 if (!http_add_header(htx, n, v)) {
3335 static unsigned char rate_limit = 0;
3336
3337 if ((rate_limit++ & 255) == 0) {
3338 send_log(px, LOG_WARNING, "Proxy %s failed to add or set the response header '%.*s' for request #%u. You might need to increase tune.maxrewrite.", px->id, (int)n.len, n.ptr, s->uniq_id);
3339 }
3340
Olivier Houcharda798bf52019-03-08 18:52:00 +01003341 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_rewrites, 1);
Christopher Faulet3e964192018-10-24 11:39:23 +02003342 if (sess->fe != s->be)
Olivier Houcharda798bf52019-03-08 18:52:00 +01003343 _HA_ATOMIC_ADD(&s->be->be_counters.failed_rewrites, 1);
Christopher Faulet3e964192018-10-24 11:39:23 +02003344 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +01003345 _HA_ATOMIC_ADD(&sess->listener->counters->failed_rewrites, 1);
Christopher Faulet3e964192018-10-24 11:39:23 +02003346 if (objt_server(s->target))
Olivier Houcharda798bf52019-03-08 18:52:00 +01003347 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_rewrites, 1);
Christopher Faulet3e964192018-10-24 11:39:23 +02003348 }
3349 free_trash_chunk(replace);
3350 break;
3351 }
3352
3353 case ACT_HTTP_DEL_ACL:
3354 case ACT_HTTP_DEL_MAP: {
3355 struct pat_ref *ref;
3356 struct buffer *key;
3357
3358 /* collect reference */
3359 ref = pat_ref_lookup(rule->arg.map.ref);
3360 if (!ref)
3361 continue;
3362
3363 /* allocate key */
3364 key = alloc_trash_chunk();
3365 if (!key) {
3366 rule_ret = HTTP_RULE_RES_BADREQ;
3367 goto end;
3368 }
3369
3370 /* collect key */
3371 key->data = build_logline(s, key->area, key->size, &rule->arg.map.key);
3372 key->area[key->data] = '\0';
3373
3374 /* perform update */
3375 /* returned code: 1=ok, 0=ko */
3376 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
3377 pat_ref_delete(ref, key->area);
3378 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
3379
3380 free_trash_chunk(key);
3381 break;
3382 }
3383
3384 case ACT_HTTP_ADD_ACL: {
3385 struct pat_ref *ref;
3386 struct buffer *key;
3387
3388 /* collect reference */
3389 ref = pat_ref_lookup(rule->arg.map.ref);
3390 if (!ref)
3391 continue;
3392
3393 /* allocate key */
3394 key = alloc_trash_chunk();
3395 if (!key) {
3396 rule_ret = HTTP_RULE_RES_BADREQ;
3397 goto end;
3398 }
3399
3400 /* collect key */
3401 key->data = build_logline(s, key->area, key->size, &rule->arg.map.key);
3402 key->area[key->data] = '\0';
3403
3404 /* perform update */
3405 /* check if the entry already exists */
Christopher Faulete84289e2019-04-19 14:50:55 +02003406 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Christopher Faulet3e964192018-10-24 11:39:23 +02003407 if (pat_ref_find_elt(ref, key->area) == NULL)
3408 pat_ref_add(ref, key->area, NULL, NULL);
Christopher Faulete84289e2019-04-19 14:50:55 +02003409 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Christopher Faulet3e964192018-10-24 11:39:23 +02003410 free_trash_chunk(key);
3411 break;
3412 }
3413
3414 case ACT_HTTP_SET_MAP: {
3415 struct pat_ref *ref;
3416 struct buffer *key, *value;
3417
3418 /* collect reference */
3419 ref = pat_ref_lookup(rule->arg.map.ref);
3420 if (!ref)
3421 continue;
3422
3423 /* allocate key */
3424 key = alloc_trash_chunk();
3425 if (!key) {
3426 rule_ret = HTTP_RULE_RES_BADREQ;
3427 goto end;
3428 }
3429
3430 /* allocate value */
3431 value = alloc_trash_chunk();
3432 if (!value) {
3433 free_trash_chunk(key);
3434 rule_ret = HTTP_RULE_RES_BADREQ;
3435 goto end;
3436 }
3437
3438 /* collect key */
3439 key->data = build_logline(s, key->area, key->size, &rule->arg.map.key);
3440 key->area[key->data] = '\0';
3441
3442 /* collect value */
3443 value->data = build_logline(s, value->area, value->size, &rule->arg.map.value);
3444 value->area[value->data] = '\0';
3445
3446 /* perform update */
3447 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
3448 if (pat_ref_find_elt(ref, key->area) != NULL)
3449 /* update entry if it exists */
3450 pat_ref_set(ref, key->area, value->area, NULL);
3451 else
3452 /* insert a new entry */
3453 pat_ref_add(ref, key->area, value->area, NULL);
3454 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
3455 free_trash_chunk(key);
3456 free_trash_chunk(value);
3457 break;
3458 }
3459
3460 case ACT_HTTP_REDIR:
3461 rule_ret = HTTP_RULE_RES_DONE;
3462 if (!http_apply_redirect_rule(rule->arg.redir, s, txn))
3463 rule_ret = HTTP_RULE_RES_BADREQ;
3464 goto end;
3465
3466 case ACT_ACTION_TRK_SC0 ... ACT_ACTION_TRK_SCMAX:
3467 /* Note: only the first valid tracking parameter of each
3468 * applies.
3469 */
3470 if (stkctr_entry(&s->stkctr[trk_idx(rule->action)]) == NULL) {
3471 struct stktable *t;
3472 struct stksess *ts;
3473 struct stktable_key *key;
3474 void *ptr;
3475
3476 t = rule->arg.trk_ctr.table.t;
3477 key = stktable_fetch_key(t, s->be, sess, s, SMP_OPT_DIR_RES | SMP_OPT_FINAL,
3478 rule->arg.trk_ctr.expr, NULL);
3479
3480 if (key && (ts = stktable_get_entry(t, key))) {
3481 stream_track_stkctr(&s->stkctr[trk_idx(rule->action)], t, ts);
3482
3483 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
3484
3485 /* let's count a new HTTP request as it's the first time we do it */
3486 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_CNT);
3487 if (ptr)
3488 stktable_data_cast(ptr, http_req_cnt)++;
3489
3490 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_RATE);
3491 if (ptr)
3492 update_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
3493 t->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u, 1);
3494
3495 /* When the client triggers a 4xx from the server, it's most often due
3496 * to a missing object or permission. These events should be tracked
3497 * because if they happen often, it may indicate a brute force or a
3498 * vulnerability scan. Normally this is done when receiving the response
3499 * but here we're tracking after this ought to have been done so we have
3500 * to do it on purpose.
3501 */
3502 if ((unsigned)(txn->status - 400) < 100) {
3503 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_ERR_CNT);
3504 if (ptr)
3505 stktable_data_cast(ptr, http_err_cnt)++;
3506
3507 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_ERR_RATE);
3508 if (ptr)
3509 update_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
3510 t->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u, 1);
3511 }
3512
3513 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
3514
3515 /* If data was modified, we need to touch to re-schedule sync */
3516 stktable_touch_local(t, ts, 0);
3517
3518 stkctr_set_flags(&s->stkctr[trk_idx(rule->action)], STKCTR_TRACK_CONTENT);
3519 if (sess->fe != s->be)
3520 stkctr_set_flags(&s->stkctr[trk_idx(rule->action)], STKCTR_TRACK_BACKEND);
3521 }
3522 }
3523 break;
3524
3525 case ACT_CUSTOM:
3526 if ((s->req.flags & CF_READ_ERROR) ||
3527 ((s->req.flags & (CF_SHUTR|CF_READ_NULL)) &&
Christopher Faulet3e964192018-10-24 11:39:23 +02003528 (px->options & PR_O_ABRT_CLOSE)))
3529 act_flags |= ACT_FLAG_FINAL;
3530
3531 switch (rule->action_ptr(rule, px, s->sess, s, act_flags)) {
3532 case ACT_RET_ERR:
3533 case ACT_RET_CONT:
3534 break;
3535 case ACT_RET_STOP:
3536 rule_ret = HTTP_RULE_RES_STOP;
3537 goto end;
Christopher Faulet4629d082019-07-04 11:27:15 +02003538 case ACT_RET_DONE:
3539 rule_ret = HTTP_RULE_RES_DONE;
3540 goto end;
Christopher Faulet3e964192018-10-24 11:39:23 +02003541 case ACT_RET_YIELD:
3542 s->current_rule = rule;
3543 rule_ret = HTTP_RULE_RES_YIELD;
3544 goto end;
3545 }
3546 break;
3547
Joseph Herlantc42c0e92018-11-25 10:43:27 -08003548 /* other flags exists, but normally, they never be matched. */
Christopher Faulet3e964192018-10-24 11:39:23 +02003549 default:
3550 break;
3551 }
3552 }
3553
3554 end:
3555 /* we reached the end of the rules, nothing to report */
3556 return rule_ret;
3557}
3558
Christopher Faulet33640082018-10-24 11:53:01 +02003559/* Iterate the same filter through all request headers.
3560 * Returns 1 if this filter can be stopped upon return, otherwise 0.
3561 * Since it can manage the switch to another backend, it updates the per-proxy
3562 * DENY stats.
3563 */
3564static int htx_apply_filter_to_req_headers(struct stream *s, struct channel *req, struct hdr_exp *exp)
3565{
3566 struct http_txn *txn = s->txn;
3567 struct htx *htx;
3568 struct buffer *hdr = get_trash_chunk();
3569 int32_t pos;
3570
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003571 htx = htxbuf(&req->buf);
Christopher Faulet33640082018-10-24 11:53:01 +02003572
Christopher Fauleta3f15502019-05-13 15:27:23 +02003573 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
Christopher Faulet33640082018-10-24 11:53:01 +02003574 struct htx_blk *blk = htx_get_blk(htx, pos);
3575 enum htx_blk_type type;
3576 struct ist n, v;
3577
3578 next_hdr:
3579 type = htx_get_blk_type(blk);
3580 if (type == HTX_BLK_EOH)
3581 break;
3582 if (type != HTX_BLK_HDR)
3583 continue;
3584
3585 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
3586 return 1;
3587 else if (unlikely(txn->flags & TX_CLALLOW) &&
3588 (exp->action == ACT_ALLOW ||
3589 exp->action == ACT_DENY ||
3590 exp->action == ACT_TARPIT))
3591 return 0;
3592
3593 n = htx_get_blk_name(htx, blk);
3594 v = htx_get_blk_value(htx, blk);
3595
Christopher Faulet02e771a2019-02-26 15:36:05 +01003596 chunk_memcpy(hdr, n.ptr, n.len);
Christopher Faulet33640082018-10-24 11:53:01 +02003597 hdr->area[hdr->data++] = ':';
3598 hdr->area[hdr->data++] = ' ';
3599 chunk_memcat(hdr, v.ptr, v.len);
3600
3601 /* Now we have one header in <hdr> */
3602
3603 if (regex_exec_match2(exp->preg, hdr->area, hdr->data, MAX_MATCH, pmatch, 0)) {
3604 struct http_hdr_ctx ctx;
3605 int len;
3606
3607 switch (exp->action) {
3608 case ACT_ALLOW:
3609 txn->flags |= TX_CLALLOW;
3610 goto end;
3611
3612 case ACT_DENY:
3613 txn->flags |= TX_CLDENY;
3614 goto end;
3615
3616 case ACT_TARPIT:
3617 txn->flags |= TX_CLTARPIT;
3618 goto end;
3619
3620 case ACT_REPLACE:
3621 len = exp_replace(trash.area, trash.size, hdr->area, exp->replace, pmatch);
3622 if (len < 0)
3623 return -1;
3624
3625 http_parse_header(ist2(trash.area, len), &n, &v);
3626 ctx.blk = blk;
3627 ctx.value = v;
Christopher Faulet02e771a2019-02-26 15:36:05 +01003628 ctx.lws_before = ctx.lws_after = 0;
Christopher Faulet33640082018-10-24 11:53:01 +02003629 if (!http_replace_header(htx, &ctx, n, v))
3630 return -1;
3631 if (!ctx.blk)
3632 goto end;
3633 pos = htx_get_blk_pos(htx, blk);
3634 break;
3635
3636 case ACT_REMOVE:
3637 ctx.blk = blk;
3638 ctx.value = v;
Christopher Faulet02e771a2019-02-26 15:36:05 +01003639 ctx.lws_before = ctx.lws_after = 0;
Christopher Faulet33640082018-10-24 11:53:01 +02003640 if (!http_remove_header(htx, &ctx))
3641 return -1;
3642 if (!ctx.blk)
3643 goto end;
3644 pos = htx_get_blk_pos(htx, blk);
3645 goto next_hdr;
3646
3647 }
3648 }
3649 }
3650 end:
3651 return 0;
3652}
3653
3654/* Apply the filter to the request line.
3655 * Returns 0 if nothing has been done, 1 if the filter has been applied,
3656 * or -1 if a replacement resulted in an invalid request line.
3657 * Since it can manage the switch to another backend, it updates the per-proxy
3658 * DENY stats.
3659 */
3660static int htx_apply_filter_to_req_line(struct stream *s, struct channel *req, struct hdr_exp *exp)
3661{
3662 struct http_txn *txn = s->txn;
3663 struct htx *htx;
3664 struct buffer *reqline = get_trash_chunk();
3665 int done;
3666
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003667 htx = htxbuf(&req->buf);
Christopher Faulet33640082018-10-24 11:53:01 +02003668
3669 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
3670 return 1;
3671 else if (unlikely(txn->flags & TX_CLALLOW) &&
3672 (exp->action == ACT_ALLOW ||
3673 exp->action == ACT_DENY ||
3674 exp->action == ACT_TARPIT))
3675 return 0;
3676 else if (exp->action == ACT_REMOVE)
3677 return 0;
3678
3679 done = 0;
3680
Christopher Faulet297fbb42019-05-13 14:41:27 +02003681 reqline->data = htx_fmt_req_line(http_get_stline(htx), reqline->area, reqline->size);
Christopher Faulet33640082018-10-24 11:53:01 +02003682
3683 /* Now we have the request line between cur_ptr and cur_end */
3684 if (regex_exec_match2(exp->preg, reqline->area, reqline->data, MAX_MATCH, pmatch, 0)) {
Christopher Faulet297fbb42019-05-13 14:41:27 +02003685 struct htx_sl *sl = http_get_stline(htx);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01003686 struct ist meth, uri, vsn;
Christopher Faulet33640082018-10-24 11:53:01 +02003687 int len;
3688
3689 switch (exp->action) {
3690 case ACT_ALLOW:
3691 txn->flags |= TX_CLALLOW;
3692 done = 1;
3693 break;
3694
3695 case ACT_DENY:
3696 txn->flags |= TX_CLDENY;
3697 done = 1;
3698 break;
3699
3700 case ACT_TARPIT:
3701 txn->flags |= TX_CLTARPIT;
3702 done = 1;
3703 break;
3704
3705 case ACT_REPLACE:
3706 len = exp_replace(trash.area, trash.size, reqline->area, exp->replace, pmatch);
3707 if (len < 0)
3708 return -1;
3709
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01003710 http_parse_stline(ist2(trash.area, len), &meth, &uri, &vsn);
3711 sl->info.req.meth = find_http_meth(meth.ptr, meth.len);
3712 if (!http_replace_stline(htx, meth, uri, vsn))
Christopher Faulet33640082018-10-24 11:53:01 +02003713 return -1;
3714 done = 1;
3715 break;
3716 }
3717 }
3718 return done;
3719}
3720
3721/*
3722 * Apply all the req filters of proxy <px> to all headers in buffer <req> of stream <s>.
3723 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
3724 * unparsable request. Since it can manage the switch to another backend, it
3725 * updates the per-proxy DENY stats.
3726 */
3727static int htx_apply_filters_to_request(struct stream *s, struct channel *req, struct proxy *px)
3728{
3729 struct session *sess = s->sess;
3730 struct http_txn *txn = s->txn;
3731 struct hdr_exp *exp;
3732
3733 for (exp = px->req_exp; exp; exp = exp->next) {
3734 int ret;
3735
3736 /*
3737 * The interleaving of transformations and verdicts
3738 * makes it difficult to decide to continue or stop
3739 * the evaluation.
3740 */
3741
3742 if (txn->flags & (TX_CLDENY|TX_CLTARPIT))
3743 break;
3744
3745 if ((txn->flags & TX_CLALLOW) &&
3746 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
3747 exp->action == ACT_TARPIT || exp->action == ACT_PASS))
3748 continue;
3749
3750 /* if this filter had a condition, evaluate it now and skip to
3751 * next filter if the condition does not match.
3752 */
3753 if (exp->cond) {
3754 ret = acl_exec_cond(exp->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
3755 ret = acl_pass(ret);
3756 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
3757 ret = !ret;
3758
3759 if (!ret)
3760 continue;
3761 }
3762
3763 /* Apply the filter to the request line. */
3764 ret = htx_apply_filter_to_req_line(s, req, exp);
3765 if (unlikely(ret < 0))
3766 return -1;
3767
3768 if (likely(ret == 0)) {
3769 /* The filter did not match the request, it can be
3770 * iterated through all headers.
3771 */
3772 if (unlikely(htx_apply_filter_to_req_headers(s, req, exp) < 0))
3773 return -1;
3774 }
3775 }
3776 return 0;
3777}
3778
3779/* Iterate the same filter through all response headers contained in <res>.
3780 * Returns 1 if this filter can be stopped upon return, otherwise 0.
3781 */
3782static int htx_apply_filter_to_resp_headers(struct stream *s, struct channel *res, struct hdr_exp *exp)
3783{
3784 struct http_txn *txn = s->txn;
3785 struct htx *htx;
3786 struct buffer *hdr = get_trash_chunk();
3787 int32_t pos;
3788
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003789 htx = htxbuf(&res->buf);
Christopher Faulet33640082018-10-24 11:53:01 +02003790
Christopher Fauleta3f15502019-05-13 15:27:23 +02003791 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
Christopher Faulet33640082018-10-24 11:53:01 +02003792 struct htx_blk *blk = htx_get_blk(htx, pos);
3793 enum htx_blk_type type;
3794 struct ist n, v;
3795
3796 next_hdr:
3797 type = htx_get_blk_type(blk);
3798 if (type == HTX_BLK_EOH)
3799 break;
3800 if (type != HTX_BLK_HDR)
3801 continue;
3802
3803 if (unlikely(txn->flags & TX_SVDENY))
3804 return 1;
3805 else if (unlikely(txn->flags & TX_SVALLOW) &&
3806 (exp->action == ACT_ALLOW ||
3807 exp->action == ACT_DENY))
3808 return 0;
3809
3810 n = htx_get_blk_name(htx, blk);
3811 v = htx_get_blk_value(htx, blk);
3812
Christopher Faulet02e771a2019-02-26 15:36:05 +01003813 chunk_memcpy(hdr, n.ptr, n.len);
Christopher Faulet33640082018-10-24 11:53:01 +02003814 hdr->area[hdr->data++] = ':';
3815 hdr->area[hdr->data++] = ' ';
3816 chunk_memcat(hdr, v.ptr, v.len);
3817
3818 /* Now we have one header in <hdr> */
3819
3820 if (regex_exec_match2(exp->preg, hdr->area, hdr->data, MAX_MATCH, pmatch, 0)) {
3821 struct http_hdr_ctx ctx;
3822 int len;
3823
3824 switch (exp->action) {
3825 case ACT_ALLOW:
3826 txn->flags |= TX_SVALLOW;
3827 goto end;
3828 break;
3829
3830 case ACT_DENY:
3831 txn->flags |= TX_SVDENY;
3832 goto end;
3833 break;
3834
3835 case ACT_REPLACE:
3836 len = exp_replace(trash.area, trash.size, hdr->area, exp->replace, pmatch);
3837 if (len < 0)
3838 return -1;
3839
3840 http_parse_header(ist2(trash.area, len), &n, &v);
3841 ctx.blk = blk;
3842 ctx.value = v;
Christopher Faulet02e771a2019-02-26 15:36:05 +01003843 ctx.lws_before = ctx.lws_after = 0;
Christopher Faulet33640082018-10-24 11:53:01 +02003844 if (!http_replace_header(htx, &ctx, n, v))
3845 return -1;
3846 if (!ctx.blk)
3847 goto end;
3848 pos = htx_get_blk_pos(htx, blk);
3849 break;
3850
3851 case ACT_REMOVE:
3852 ctx.blk = blk;
3853 ctx.value = v;
Christopher Faulet02e771a2019-02-26 15:36:05 +01003854 ctx.lws_before = ctx.lws_after = 0;
Christopher Faulet33640082018-10-24 11:53:01 +02003855 if (!http_remove_header(htx, &ctx))
3856 return -1;
3857 if (!ctx.blk)
3858 goto end;
3859 pos = htx_get_blk_pos(htx, blk);
3860 goto next_hdr;
3861 }
3862 }
3863
3864 }
3865 end:
3866 return 0;
3867}
3868
3869/* Apply the filter to the status line in the response buffer <res>.
3870 * Returns 0 if nothing has been done, 1 if the filter has been applied,
3871 * or -1 if a replacement resulted in an invalid status line.
3872 */
3873static int htx_apply_filter_to_sts_line(struct stream *s, struct channel *res, struct hdr_exp *exp)
3874{
3875 struct http_txn *txn = s->txn;
3876 struct htx *htx;
3877 struct buffer *resline = get_trash_chunk();
3878 int done;
3879
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01003880 htx = htxbuf(&res->buf);
Christopher Faulet33640082018-10-24 11:53:01 +02003881
3882 if (unlikely(txn->flags & TX_SVDENY))
3883 return 1;
3884 else if (unlikely(txn->flags & TX_SVALLOW) &&
3885 (exp->action == ACT_ALLOW ||
3886 exp->action == ACT_DENY))
3887 return 0;
3888 else if (exp->action == ACT_REMOVE)
3889 return 0;
3890
3891 done = 0;
Christopher Faulet297fbb42019-05-13 14:41:27 +02003892 resline->data = htx_fmt_res_line(http_get_stline(htx), resline->area, resline->size);
Christopher Faulet33640082018-10-24 11:53:01 +02003893
3894 /* Now we have the status line between cur_ptr and cur_end */
3895 if (regex_exec_match2(exp->preg, resline->area, resline->data, MAX_MATCH, pmatch, 0)) {
Christopher Faulet297fbb42019-05-13 14:41:27 +02003896 struct htx_sl *sl = http_get_stline(htx);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01003897 struct ist vsn, code, reason;
Christopher Faulet33640082018-10-24 11:53:01 +02003898 int len;
3899
3900 switch (exp->action) {
3901 case ACT_ALLOW:
3902 txn->flags |= TX_SVALLOW;
3903 done = 1;
3904 break;
3905
3906 case ACT_DENY:
3907 txn->flags |= TX_SVDENY;
3908 done = 1;
3909 break;
3910
3911 case ACT_REPLACE:
3912 len = exp_replace(trash.area, trash.size, resline->area, exp->replace, pmatch);
3913 if (len < 0)
3914 return -1;
3915
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01003916 http_parse_stline(ist2(trash.area, len), &vsn, &code, &reason);
3917 sl->info.res.status = strl2ui(code.ptr, code.len);
3918 if (!http_replace_stline(htx, vsn, code, reason))
Christopher Faulet33640082018-10-24 11:53:01 +02003919 return -1;
3920
3921 done = 1;
3922 return 1;
3923 }
3924 }
3925 return done;
3926}
3927
3928/*
3929 * Apply all the resp filters of proxy <px> to all headers in buffer <res> of stream <s>.
3930 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
3931 * unparsable response.
3932 */
3933static int htx_apply_filters_to_response(struct stream *s, struct channel *res, struct proxy *px)
3934{
3935 struct session *sess = s->sess;
3936 struct http_txn *txn = s->txn;
3937 struct hdr_exp *exp;
3938
3939 for (exp = px->rsp_exp; exp; exp = exp->next) {
3940 int ret;
3941
3942 /*
3943 * The interleaving of transformations and verdicts
3944 * makes it difficult to decide to continue or stop
3945 * the evaluation.
3946 */
3947
3948 if (txn->flags & TX_SVDENY)
3949 break;
3950
3951 if ((txn->flags & TX_SVALLOW) &&
3952 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
3953 exp->action == ACT_PASS)) {
3954 exp = exp->next;
3955 continue;
3956 }
3957
3958 /* if this filter had a condition, evaluate it now and skip to
3959 * next filter if the condition does not match.
3960 */
3961 if (exp->cond) {
3962 ret = acl_exec_cond(exp->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
3963 ret = acl_pass(ret);
3964 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
3965 ret = !ret;
3966 if (!ret)
3967 continue;
3968 }
3969
3970 /* Apply the filter to the status line. */
3971 ret = htx_apply_filter_to_sts_line(s, res, exp);
3972 if (unlikely(ret < 0))
3973 return -1;
3974
3975 if (likely(ret == 0)) {
3976 /* The filter did not match the response, it can be
3977 * iterated through all headers.
3978 */
3979 if (unlikely(htx_apply_filter_to_resp_headers(s, res, exp) < 0))
3980 return -1;
3981 }
3982 }
3983 return 0;
3984}
3985
Christopher Fauletfcda7c62018-10-24 11:56:22 +02003986/*
3987 * Manage client-side cookie. It can impact performance by about 2% so it is
3988 * desirable to call it only when needed. This code is quite complex because
3989 * of the multiple very crappy and ambiguous syntaxes we have to support. it
3990 * highly recommended not to touch this part without a good reason !
3991 */
3992static void htx_manage_client_side_cookies(struct stream *s, struct channel *req)
3993{
3994 struct session *sess = s->sess;
3995 struct http_txn *txn = s->txn;
3996 struct htx *htx;
3997 struct http_hdr_ctx ctx;
3998 char *hdr_beg, *hdr_end, *del_from;
3999 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
4000 int preserve_hdr;
4001
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004002 htx = htxbuf(&req->buf);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02004003 ctx.blk = NULL;
4004 while (http_find_header(htx, ist("Cookie"), &ctx, 1)) {
Olivier Houchardfc7f52e2019-07-22 17:43:46 +02004005 int is_first = 1;
Christopher Fauletfcda7c62018-10-24 11:56:22 +02004006 del_from = NULL; /* nothing to be deleted */
4007 preserve_hdr = 0; /* assume we may kill the whole header */
4008
4009 /* Now look for cookies. Conforming to RFC2109, we have to support
4010 * attributes whose name begin with a '$', and associate them with
4011 * the right cookie, if we want to delete this cookie.
4012 * So there are 3 cases for each cookie read :
4013 * 1) it's a special attribute, beginning with a '$' : ignore it.
4014 * 2) it's a server id cookie that we *MAY* want to delete : save
4015 * some pointers on it (last semi-colon, beginning of cookie...)
4016 * 3) it's an application cookie : we *MAY* have to delete a previous
4017 * "special" cookie.
4018 * At the end of loop, if a "special" cookie remains, we may have to
4019 * remove it. If no application cookie persists in the header, we
4020 * *MUST* delete it.
4021 *
4022 * Note: RFC2965 is unclear about the processing of spaces around
4023 * the equal sign in the ATTR=VALUE form. A careful inspection of
4024 * the RFC explicitly allows spaces before it, and not within the
4025 * tokens (attrs or values). An inspection of RFC2109 allows that
4026 * too but section 10.1.3 lets one think that spaces may be allowed
4027 * after the equal sign too, resulting in some (rare) buggy
4028 * implementations trying to do that. So let's do what servers do.
4029 * Latest ietf draft forbids spaces all around. Also, earlier RFCs
4030 * allowed quoted strings in values, with any possible character
4031 * after a backslash, including control chars and delimitors, which
4032 * causes parsing to become ambiguous. Browsers also allow spaces
4033 * within values even without quotes.
4034 *
4035 * We have to keep multiple pointers in order to support cookie
4036 * removal at the beginning, middle or end of header without
4037 * corrupting the header. All of these headers are valid :
4038 *
4039 * hdr_beg hdr_end
4040 * | |
4041 * v |
4042 * NAME1=VALUE1;NAME2=VALUE2;NAME3=VALUE3 |
4043 * NAME1=VALUE1;NAME2_ONLY ;NAME3=VALUE3 v
4044 * NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3
4045 * | | | | | | |
4046 * | | | | | | |
4047 * | | | | | | +--> next
4048 * | | | | | +----> val_end
4049 * | | | | +-----------> val_beg
4050 * | | | +--------------> equal
4051 * | | +----------------> att_end
4052 * | +---------------------> att_beg
4053 * +--------------------------> prev
4054 *
4055 */
4056 hdr_beg = ctx.value.ptr;
4057 hdr_end = hdr_beg + ctx.value.len;
4058 for (prev = hdr_beg; prev < hdr_end; prev = next) {
4059 /* Iterate through all cookies on this line */
4060
4061 /* find att_beg */
4062 att_beg = prev;
Olivier Houchardfc7f52e2019-07-22 17:43:46 +02004063 if (!is_first)
Christopher Fauletfcda7c62018-10-24 11:56:22 +02004064 att_beg++;
Olivier Houchardfc7f52e2019-07-22 17:43:46 +02004065 is_first = 0;
Christopher Fauletfcda7c62018-10-24 11:56:22 +02004066
4067 while (att_beg < hdr_end && HTTP_IS_SPHT(*att_beg))
4068 att_beg++;
4069
4070 /* find att_end : this is the first character after the last non
4071 * space before the equal. It may be equal to hdr_end.
4072 */
4073 equal = att_end = att_beg;
4074 while (equal < hdr_end) {
4075 if (*equal == '=' || *equal == ',' || *equal == ';')
4076 break;
4077 if (HTTP_IS_SPHT(*equal++))
4078 continue;
4079 att_end = equal;
4080 }
4081
4082 /* here, <equal> points to '=', a delimitor or the end. <att_end>
4083 * is between <att_beg> and <equal>, both may be identical.
4084 */
4085 /* look for end of cookie if there is an equal sign */
4086 if (equal < hdr_end && *equal == '=') {
4087 /* look for the beginning of the value */
4088 val_beg = equal + 1;
4089 while (val_beg < hdr_end && HTTP_IS_SPHT(*val_beg))
4090 val_beg++;
4091
4092 /* find the end of the value, respecting quotes */
4093 next = http_find_cookie_value_end(val_beg, hdr_end);
4094
4095 /* make val_end point to the first white space or delimitor after the value */
4096 val_end = next;
4097 while (val_end > val_beg && HTTP_IS_SPHT(*(val_end - 1)))
4098 val_end--;
4099 }
4100 else
4101 val_beg = val_end = next = equal;
4102
4103 /* We have nothing to do with attributes beginning with
4104 * '$'. However, they will automatically be removed if a
4105 * header before them is removed, since they're supposed
4106 * to be linked together.
4107 */
4108 if (*att_beg == '$')
4109 continue;
4110
4111 /* Ignore cookies with no equal sign */
4112 if (equal == next) {
4113 /* This is not our cookie, so we must preserve it. But if we already
4114 * scheduled another cookie for removal, we cannot remove the
4115 * complete header, but we can remove the previous block itself.
4116 */
4117 preserve_hdr = 1;
4118 if (del_from != NULL) {
4119 int delta = htx_del_hdr_value(hdr_beg, hdr_end, &del_from, prev);
4120 val_end += delta;
4121 next += delta;
4122 hdr_end += delta;
4123 prev = del_from;
4124 del_from = NULL;
4125 }
4126 continue;
4127 }
4128
4129 /* if there are spaces around the equal sign, we need to
4130 * strip them otherwise we'll get trouble for cookie captures,
4131 * or even for rewrites. Since this happens extremely rarely,
4132 * it does not hurt performance.
4133 */
4134 if (unlikely(att_end != equal || val_beg > equal + 1)) {
4135 int stripped_before = 0;
4136 int stripped_after = 0;
4137
4138 if (att_end != equal) {
4139 memmove(att_end, equal, hdr_end - equal);
4140 stripped_before = (att_end - equal);
4141 equal += stripped_before;
4142 val_beg += stripped_before;
4143 }
4144
4145 if (val_beg > equal + 1) {
4146 memmove(equal + 1, val_beg, hdr_end + stripped_before - val_beg);
4147 stripped_after = (equal + 1) - val_beg;
4148 val_beg += stripped_after;
4149 stripped_before += stripped_after;
4150 }
4151
4152 val_end += stripped_before;
4153 next += stripped_before;
4154 hdr_end += stripped_before;
4155 }
4156 /* now everything is as on the diagram above */
4157
4158 /* First, let's see if we want to capture this cookie. We check
4159 * that we don't already have a client side cookie, because we
4160 * can only capture one. Also as an optimisation, we ignore
4161 * cookies shorter than the declared name.
4162 */
4163 if (sess->fe->capture_name != NULL && txn->cli_cookie == NULL &&
4164 (val_end - att_beg >= sess->fe->capture_namelen) &&
4165 memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) {
4166 int log_len = val_end - att_beg;
4167
4168 if ((txn->cli_cookie = pool_alloc(pool_head_capture)) == NULL) {
4169 ha_alert("HTTP logging : out of memory.\n");
4170 } else {
4171 if (log_len > sess->fe->capture_len)
4172 log_len = sess->fe->capture_len;
4173 memcpy(txn->cli_cookie, att_beg, log_len);
4174 txn->cli_cookie[log_len] = 0;
4175 }
4176 }
4177
4178 /* Persistence cookies in passive, rewrite or insert mode have the
4179 * following form :
4180 *
4181 * Cookie: NAME=SRV[|<lastseen>[|<firstseen>]]
4182 *
4183 * For cookies in prefix mode, the form is :
4184 *
4185 * Cookie: NAME=SRV~VALUE
4186 */
4187 if ((att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) &&
4188 (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) {
4189 struct server *srv = s->be->srv;
4190 char *delim;
4191
4192 /* if we're in cookie prefix mode, we'll search the delimitor so that we
4193 * have the server ID between val_beg and delim, and the original cookie between
4194 * delim+1 and val_end. Otherwise, delim==val_end :
4195 *
4196 * hdr_beg
4197 * |
4198 * v
4199 * NAME=SRV; # in all but prefix modes
4200 * NAME=SRV~OPAQUE ; # in prefix mode
4201 * || || | |+-> next
4202 * || || | +--> val_end
4203 * || || +---------> delim
4204 * || |+------------> val_beg
4205 * || +-------------> att_end = equal
4206 * |+-----------------> att_beg
4207 * +------------------> prev
4208 *
4209 */
4210 if (s->be->ck_opts & PR_CK_PFX) {
4211 for (delim = val_beg; delim < val_end; delim++)
4212 if (*delim == COOKIE_DELIM)
4213 break;
4214 }
4215 else {
4216 char *vbar1;
4217 delim = val_end;
4218 /* Now check if the cookie contains a date field, which would
4219 * appear after a vertical bar ('|') just after the server name
4220 * and before the delimiter.
4221 */
4222 vbar1 = memchr(val_beg, COOKIE_DELIM_DATE, val_end - val_beg);
4223 if (vbar1) {
4224 /* OK, so left of the bar is the server's cookie and
4225 * right is the last seen date. It is a base64 encoded
4226 * 30-bit value representing the UNIX date since the
4227 * epoch in 4-second quantities.
4228 */
4229 int val;
4230 delim = vbar1++;
4231 if (val_end - vbar1 >= 5) {
4232 val = b64tos30(vbar1);
4233 if (val > 0)
4234 txn->cookie_last_date = val << 2;
4235 }
4236 /* look for a second vertical bar */
4237 vbar1 = memchr(vbar1, COOKIE_DELIM_DATE, val_end - vbar1);
4238 if (vbar1 && (val_end - vbar1 > 5)) {
4239 val = b64tos30(vbar1 + 1);
4240 if (val > 0)
4241 txn->cookie_first_date = val << 2;
4242 }
4243 }
4244 }
4245
4246 /* if the cookie has an expiration date and the proxy wants to check
4247 * it, then we do that now. We first check if the cookie is too old,
4248 * then only if it has expired. We detect strict overflow because the
4249 * time resolution here is not great (4 seconds). Cookies with dates
4250 * in the future are ignored if their offset is beyond one day. This
4251 * allows an admin to fix timezone issues without expiring everyone
4252 * and at the same time avoids keeping unwanted side effects for too
4253 * long.
4254 */
4255 if (txn->cookie_first_date && s->be->cookie_maxlife &&
4256 (((signed)(date.tv_sec - txn->cookie_first_date) > (signed)s->be->cookie_maxlife) ||
4257 ((signed)(txn->cookie_first_date - date.tv_sec) > 86400))) {
4258 txn->flags &= ~TX_CK_MASK;
4259 txn->flags |= TX_CK_OLD;
4260 delim = val_beg; // let's pretend we have not found the cookie
4261 txn->cookie_first_date = 0;
4262 txn->cookie_last_date = 0;
4263 }
4264 else if (txn->cookie_last_date && s->be->cookie_maxidle &&
4265 (((signed)(date.tv_sec - txn->cookie_last_date) > (signed)s->be->cookie_maxidle) ||
4266 ((signed)(txn->cookie_last_date - date.tv_sec) > 86400))) {
4267 txn->flags &= ~TX_CK_MASK;
4268 txn->flags |= TX_CK_EXPIRED;
4269 delim = val_beg; // let's pretend we have not found the cookie
4270 txn->cookie_first_date = 0;
4271 txn->cookie_last_date = 0;
4272 }
4273
4274 /* Here, we'll look for the first running server which supports the cookie.
4275 * This allows to share a same cookie between several servers, for example
4276 * to dedicate backup servers to specific servers only.
4277 * However, to prevent clients from sticking to cookie-less backup server
4278 * when they have incidentely learned an empty cookie, we simply ignore
4279 * empty cookies and mark them as invalid.
4280 * The same behaviour is applied when persistence must be ignored.
4281 */
4282 if ((delim == val_beg) || (s->flags & (SF_IGNORE_PRST | SF_ASSIGNED)))
4283 srv = NULL;
4284
4285 while (srv) {
4286 if (srv->cookie && (srv->cklen == delim - val_beg) &&
4287 !memcmp(val_beg, srv->cookie, delim - val_beg)) {
4288 if ((srv->cur_state != SRV_ST_STOPPED) ||
4289 (s->be->options & PR_O_PERSIST) ||
4290 (s->flags & SF_FORCE_PRST)) {
4291 /* we found the server and we can use it */
4292 txn->flags &= ~TX_CK_MASK;
4293 txn->flags |= (srv->cur_state != SRV_ST_STOPPED) ? TX_CK_VALID : TX_CK_DOWN;
4294 s->flags |= SF_DIRECT | SF_ASSIGNED;
4295 s->target = &srv->obj_type;
4296 break;
4297 } else {
4298 /* we found a server, but it's down,
4299 * mark it as such and go on in case
4300 * another one is available.
4301 */
4302 txn->flags &= ~TX_CK_MASK;
4303 txn->flags |= TX_CK_DOWN;
4304 }
4305 }
4306 srv = srv->next;
4307 }
4308
4309 if (!srv && !(txn->flags & (TX_CK_DOWN|TX_CK_EXPIRED|TX_CK_OLD))) {
4310 /* no server matched this cookie or we deliberately skipped it */
4311 txn->flags &= ~TX_CK_MASK;
4312 if ((s->flags & (SF_IGNORE_PRST | SF_ASSIGNED)))
4313 txn->flags |= TX_CK_UNUSED;
4314 else
4315 txn->flags |= TX_CK_INVALID;
4316 }
4317
4318 /* depending on the cookie mode, we may have to either :
4319 * - delete the complete cookie if we're in insert+indirect mode, so that
4320 * the server never sees it ;
4321 * - remove the server id from the cookie value, and tag the cookie as an
Joseph Herlante9d5c722018-11-25 11:00:25 -08004322 * application cookie so that it does not get accidentally removed later,
Christopher Fauletfcda7c62018-10-24 11:56:22 +02004323 * if we're in cookie prefix mode
4324 */
4325 if ((s->be->ck_opts & PR_CK_PFX) && (delim != val_end)) {
4326 int delta; /* negative */
4327
4328 memmove(val_beg, delim + 1, hdr_end - (delim + 1));
4329 delta = val_beg - (delim + 1);
4330 val_end += delta;
4331 next += delta;
4332 hdr_end += delta;
4333 del_from = NULL;
4334 preserve_hdr = 1; /* we want to keep this cookie */
4335 }
4336 else if (del_from == NULL &&
4337 (s->be->ck_opts & (PR_CK_INS | PR_CK_IND)) == (PR_CK_INS | PR_CK_IND)) {
4338 del_from = prev;
4339 }
4340 }
4341 else {
4342 /* This is not our cookie, so we must preserve it. But if we already
4343 * scheduled another cookie for removal, we cannot remove the
4344 * complete header, but we can remove the previous block itself.
4345 */
4346 preserve_hdr = 1;
4347
4348 if (del_from != NULL) {
4349 int delta = htx_del_hdr_value(hdr_beg, hdr_end, &del_from, prev);
4350 if (att_beg >= del_from)
4351 att_beg += delta;
4352 if (att_end >= del_from)
4353 att_end += delta;
4354 val_beg += delta;
4355 val_end += delta;
4356 next += delta;
4357 hdr_end += delta;
4358 prev = del_from;
4359 del_from = NULL;
4360 }
4361 }
4362
4363 /* continue with next cookie on this header line */
4364 att_beg = next;
4365 } /* for each cookie */
4366
4367
4368 /* There are no more cookies on this line.
4369 * We may still have one (or several) marked for deletion at the
4370 * end of the line. We must do this now in two ways :
4371 * - if some cookies must be preserved, we only delete from the
4372 * mark to the end of line ;
4373 * - if nothing needs to be preserved, simply delete the whole header
4374 */
4375 if (del_from) {
4376 hdr_end = (preserve_hdr ? del_from : hdr_beg);
4377 }
4378 if ((hdr_end - hdr_beg) != ctx.value.len) {
Christopher Faulet41dc8432019-06-18 09:49:16 +02004379 if (hdr_beg != hdr_end)
4380 htx_change_blk_value_len(htx, ctx.blk, hdr_end - hdr_beg);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02004381 else
4382 http_remove_header(htx, &ctx);
4383 }
4384 } /* for each "Cookie header */
4385}
4386
4387/*
4388 * Manage server-side cookies. It can impact performance by about 2% so it is
4389 * desirable to call it only when needed. This function is also used when we
4390 * just need to know if there is a cookie (eg: for check-cache).
4391 */
4392static void htx_manage_server_side_cookies(struct stream *s, struct channel *res)
4393{
4394 struct session *sess = s->sess;
4395 struct http_txn *txn = s->txn;
4396 struct htx *htx;
4397 struct http_hdr_ctx ctx;
4398 struct server *srv;
4399 char *hdr_beg, *hdr_end;
4400 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreau6f7a02a2019-04-15 21:49:49 +02004401 int is_cookie2 = 0;
Christopher Fauletfcda7c62018-10-24 11:56:22 +02004402
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004403 htx = htxbuf(&res->buf);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02004404
4405 ctx.blk = NULL;
4406 while (1) {
Olivier Houchardfc7f52e2019-07-22 17:43:46 +02004407 int is_first = 1;
4408
Christopher Fauletfcda7c62018-10-24 11:56:22 +02004409 if (!http_find_header(htx, ist("Set-Cookie"), &ctx, 1)) {
4410 if (!http_find_header(htx, ist("Set-Cookie2"), &ctx, 1))
4411 break;
4412 is_cookie2 = 1;
4413 }
4414
4415 /* OK, right now we know we have a Set-Cookie* at hdr_beg, and
4416 * <prev> points to the colon.
4417 */
4418 txn->flags |= TX_SCK_PRESENT;
4419
4420 /* Maybe we only wanted to see if there was a Set-Cookie (eg:
4421 * check-cache is enabled) and we are not interested in checking
4422 * them. Warning, the cookie capture is declared in the frontend.
4423 */
4424 if (s->be->cookie_name == NULL && sess->fe->capture_name == NULL)
4425 break;
4426
4427 /* OK so now we know we have to process this response cookie.
4428 * The format of the Set-Cookie header is slightly different
4429 * from the format of the Cookie header in that it does not
4430 * support the comma as a cookie delimiter (thus the header
4431 * cannot be folded) because the Expires attribute described in
4432 * the original Netscape's spec may contain an unquoted date
4433 * with a comma inside. We have to live with this because
4434 * many browsers don't support Max-Age and some browsers don't
4435 * support quoted strings. However the Set-Cookie2 header is
4436 * clean.
4437 *
4438 * We have to keep multiple pointers in order to support cookie
4439 * removal at the beginning, middle or end of header without
4440 * corrupting the header (in case of set-cookie2). A special
4441 * pointer, <scav> points to the beginning of the set-cookie-av
4442 * fields after the first semi-colon. The <next> pointer points
4443 * either to the end of line (set-cookie) or next unquoted comma
4444 * (set-cookie2). All of these headers are valid :
4445 *
4446 * hdr_beg hdr_end
4447 * | |
4448 * v |
4449 * NAME1 = VALUE 1 ; Secure; Path="/" |
4450 * NAME=VALUE; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT v
4451 * NAME = VALUE ; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT
4452 * NAME1 = VALUE 1 ; Max-Age=0, NAME2=VALUE2; Discard
4453 * | | | | | | | |
4454 * | | | | | | | +-> next
4455 * | | | | | | +------------> scav
4456 * | | | | | +--------------> val_end
4457 * | | | | +--------------------> val_beg
4458 * | | | +----------------------> equal
4459 * | | +------------------------> att_end
4460 * | +----------------------------> att_beg
4461 * +------------------------------> prev
4462 * -------------------------------> hdr_beg
4463 */
4464 hdr_beg = ctx.value.ptr;
4465 hdr_end = hdr_beg + ctx.value.len;
4466 for (prev = hdr_beg; prev < hdr_end; prev = next) {
4467
4468 /* Iterate through all cookies on this line */
4469
4470 /* find att_beg */
4471 att_beg = prev;
Olivier Houchardfc7f52e2019-07-22 17:43:46 +02004472 if (!is_first)
Christopher Fauletfcda7c62018-10-24 11:56:22 +02004473 att_beg++;
Olivier Houchardfc7f52e2019-07-22 17:43:46 +02004474 is_first = 0;
Christopher Fauletfcda7c62018-10-24 11:56:22 +02004475
4476 while (att_beg < hdr_end && HTTP_IS_SPHT(*att_beg))
4477 att_beg++;
4478
4479 /* find att_end : this is the first character after the last non
4480 * space before the equal. It may be equal to hdr_end.
4481 */
4482 equal = att_end = att_beg;
4483
4484 while (equal < hdr_end) {
4485 if (*equal == '=' || *equal == ';' || (is_cookie2 && *equal == ','))
4486 break;
4487 if (HTTP_IS_SPHT(*equal++))
4488 continue;
4489 att_end = equal;
4490 }
4491
4492 /* here, <equal> points to '=', a delimitor or the end. <att_end>
4493 * is between <att_beg> and <equal>, both may be identical.
4494 */
4495
4496 /* look for end of cookie if there is an equal sign */
4497 if (equal < hdr_end && *equal == '=') {
4498 /* look for the beginning of the value */
4499 val_beg = equal + 1;
4500 while (val_beg < hdr_end && HTTP_IS_SPHT(*val_beg))
4501 val_beg++;
4502
4503 /* find the end of the value, respecting quotes */
4504 next = http_find_cookie_value_end(val_beg, hdr_end);
4505
4506 /* make val_end point to the first white space or delimitor after the value */
4507 val_end = next;
4508 while (val_end > val_beg && HTTP_IS_SPHT(*(val_end - 1)))
4509 val_end--;
4510 }
4511 else {
4512 /* <equal> points to next comma, semi-colon or EOL */
4513 val_beg = val_end = next = equal;
4514 }
4515
4516 if (next < hdr_end) {
4517 /* Set-Cookie2 supports multiple cookies, and <next> points to
4518 * a colon or semi-colon before the end. So skip all attr-value
4519 * pairs and look for the next comma. For Set-Cookie, since
4520 * commas are permitted in values, skip to the end.
4521 */
4522 if (is_cookie2)
4523 next = http_find_hdr_value_end(next, hdr_end);
4524 else
4525 next = hdr_end;
4526 }
4527
4528 /* Now everything is as on the diagram above */
4529
4530 /* Ignore cookies with no equal sign */
4531 if (equal == val_end)
4532 continue;
4533
4534 /* If there are spaces around the equal sign, we need to
4535 * strip them otherwise we'll get trouble for cookie captures,
4536 * or even for rewrites. Since this happens extremely rarely,
4537 * it does not hurt performance.
4538 */
4539 if (unlikely(att_end != equal || val_beg > equal + 1)) {
4540 int stripped_before = 0;
4541 int stripped_after = 0;
4542
4543 if (att_end != equal) {
4544 memmove(att_end, equal, hdr_end - equal);
4545 stripped_before = (att_end - equal);
4546 equal += stripped_before;
4547 val_beg += stripped_before;
4548 }
4549
4550 if (val_beg > equal + 1) {
4551 memmove(equal + 1, val_beg, hdr_end + stripped_before - val_beg);
4552 stripped_after = (equal + 1) - val_beg;
4553 val_beg += stripped_after;
4554 stripped_before += stripped_after;
4555 }
4556
4557 val_end += stripped_before;
4558 next += stripped_before;
4559 hdr_end += stripped_before;
4560
Christopher Faulet41dc8432019-06-18 09:49:16 +02004561 htx_change_blk_value_len(htx, ctx.blk, hdr_end - hdr_beg);
Christopher Fauletfcda7c62018-10-24 11:56:22 +02004562 ctx.value.len = hdr_end - hdr_beg;
Christopher Fauletfcda7c62018-10-24 11:56:22 +02004563 }
4564
4565 /* First, let's see if we want to capture this cookie. We check
4566 * that we don't already have a server side cookie, because we
4567 * can only capture one. Also as an optimisation, we ignore
4568 * cookies shorter than the declared name.
4569 */
4570 if (sess->fe->capture_name != NULL &&
4571 txn->srv_cookie == NULL &&
4572 (val_end - att_beg >= sess->fe->capture_namelen) &&
4573 memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) {
4574 int log_len = val_end - att_beg;
4575 if ((txn->srv_cookie = pool_alloc(pool_head_capture)) == NULL) {
4576 ha_alert("HTTP logging : out of memory.\n");
4577 }
4578 else {
4579 if (log_len > sess->fe->capture_len)
4580 log_len = sess->fe->capture_len;
4581 memcpy(txn->srv_cookie, att_beg, log_len);
4582 txn->srv_cookie[log_len] = 0;
4583 }
4584 }
4585
4586 srv = objt_server(s->target);
4587 /* now check if we need to process it for persistence */
4588 if (!(s->flags & SF_IGNORE_PRST) &&
4589 (att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) &&
4590 (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) {
4591 /* assume passive cookie by default */
4592 txn->flags &= ~TX_SCK_MASK;
4593 txn->flags |= TX_SCK_FOUND;
4594
4595 /* If the cookie is in insert mode on a known server, we'll delete
4596 * this occurrence because we'll insert another one later.
4597 * We'll delete it too if the "indirect" option is set and we're in
4598 * a direct access.
4599 */
4600 if (s->be->ck_opts & PR_CK_PSV) {
4601 /* The "preserve" flag was set, we don't want to touch the
4602 * server's cookie.
4603 */
4604 }
4605 else if ((srv && (s->be->ck_opts & PR_CK_INS)) ||
4606 ((s->flags & SF_DIRECT) && (s->be->ck_opts & PR_CK_IND))) {
4607 /* this cookie must be deleted */
4608 if (prev == hdr_beg && next == hdr_end) {
4609 /* whole header */
4610 http_remove_header(htx, &ctx);
4611 /* note: while both invalid now, <next> and <hdr_end>
4612 * are still equal, so the for() will stop as expected.
4613 */
4614 } else {
4615 /* just remove the value */
4616 int delta = htx_del_hdr_value(hdr_beg, hdr_end, &prev, next);
4617 next = prev;
4618 hdr_end += delta;
4619 }
4620 txn->flags &= ~TX_SCK_MASK;
4621 txn->flags |= TX_SCK_DELETED;
4622 /* and go on with next cookie */
4623 }
4624 else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_RW)) {
4625 /* replace bytes val_beg->val_end with the cookie name associated
4626 * with this server since we know it.
4627 */
4628 int sliding, delta;
4629
4630 ctx.value = ist2(val_beg, val_end - val_beg);
4631 ctx.lws_before = ctx.lws_after = 0;
4632 http_replace_header_value(htx, &ctx, ist2(srv->cookie, srv->cklen));
4633 delta = srv->cklen - (val_end - val_beg);
4634 sliding = (ctx.value.ptr - val_beg);
4635 hdr_beg += sliding;
4636 val_beg += sliding;
4637 next += sliding + delta;
4638 hdr_end += sliding + delta;
4639
4640 txn->flags &= ~TX_SCK_MASK;
4641 txn->flags |= TX_SCK_REPLACED;
4642 }
4643 else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_PFX)) {
4644 /* insert the cookie name associated with this server
4645 * before existing cookie, and insert a delimiter between them..
4646 */
4647 int sliding, delta;
4648 ctx.value = ist2(val_beg, 0);
4649 ctx.lws_before = ctx.lws_after = 0;
4650 http_replace_header_value(htx, &ctx, ist2(srv->cookie, srv->cklen + 1));
4651 delta = srv->cklen + 1;
4652 sliding = (ctx.value.ptr - val_beg);
4653 hdr_beg += sliding;
4654 val_beg += sliding;
4655 next += sliding + delta;
4656 hdr_end += sliding + delta;
4657
4658 val_beg[srv->cklen] = COOKIE_DELIM;
4659 txn->flags &= ~TX_SCK_MASK;
4660 txn->flags |= TX_SCK_REPLACED;
4661 }
4662 }
4663 /* that's done for this cookie, check the next one on the same
4664 * line when next != hdr_end (only if is_cookie2).
4665 */
4666 }
4667 }
4668}
4669
Christopher Faulet25a02f62018-10-24 12:00:25 +02004670/*
4671 * Parses the Cache-Control and Pragma request header fields to determine if
4672 * the request may be served from the cache and/or if it is cacheable. Updates
4673 * s->txn->flags.
4674 */
4675void htx_check_request_for_cacheability(struct stream *s, struct channel *req)
4676{
4677 struct http_txn *txn = s->txn;
4678 struct htx *htx;
4679 int32_t pos;
4680 int pragma_found, cc_found, i;
4681
4682 if ((txn->flags & (TX_CACHEABLE|TX_CACHE_IGNORE)) == TX_CACHE_IGNORE)
4683 return; /* nothing more to do here */
4684
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004685 htx = htxbuf(&req->buf);
Christopher Faulet25a02f62018-10-24 12:00:25 +02004686 pragma_found = cc_found = 0;
Christopher Fauleta3f15502019-05-13 15:27:23 +02004687 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
Christopher Faulet25a02f62018-10-24 12:00:25 +02004688 struct htx_blk *blk = htx_get_blk(htx, pos);
4689 enum htx_blk_type type = htx_get_blk_type(blk);
4690 struct ist n, v;
4691
4692 if (type == HTX_BLK_EOH)
4693 break;
4694 if (type != HTX_BLK_HDR)
4695 continue;
4696
4697 n = htx_get_blk_name(htx, blk);
4698 v = htx_get_blk_value(htx, blk);
4699
Willy Tarreau2e754bf2018-12-07 11:38:03 +01004700 if (isteq(n, ist("pragma"))) {
Christopher Faulet25a02f62018-10-24 12:00:25 +02004701 if (v.len >= 8 && strncasecmp(v.ptr, "no-cache", 8) == 0) {
4702 pragma_found = 1;
4703 continue;
4704 }
4705 }
4706
4707 /* Don't use the cache and don't try to store if we found the
4708 * Authorization header */
Willy Tarreau2e754bf2018-12-07 11:38:03 +01004709 if (isteq(n, ist("authorization"))) {
Christopher Faulet25a02f62018-10-24 12:00:25 +02004710 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
4711 txn->flags |= TX_CACHE_IGNORE;
4712 continue;
4713 }
4714
Willy Tarreau2e754bf2018-12-07 11:38:03 +01004715 if (!isteq(n, ist("cache-control")))
Christopher Faulet25a02f62018-10-24 12:00:25 +02004716 continue;
4717
4718 /* OK, right now we know we have a cache-control header */
4719 cc_found = 1;
4720 if (!v.len) /* no info */
4721 continue;
4722
4723 i = 0;
4724 while (i < v.len && *(v.ptr+i) != '=' && *(v.ptr+i) != ',' &&
4725 !isspace((unsigned char)*(v.ptr+i)))
4726 i++;
4727
4728 /* we have a complete value between v.ptr and (v.ptr+i). We don't check the
4729 * values after max-age, max-stale nor min-fresh, we simply don't
4730 * use the cache when they're specified.
4731 */
4732 if (((i == 7) && strncasecmp(v.ptr, "max-age", 7) == 0) ||
4733 ((i == 8) && strncasecmp(v.ptr, "no-cache", 8) == 0) ||
4734 ((i == 9) && strncasecmp(v.ptr, "max-stale", 9) == 0) ||
4735 ((i == 9) && strncasecmp(v.ptr, "min-fresh", 9) == 0)) {
4736 txn->flags |= TX_CACHE_IGNORE;
4737 continue;
4738 }
4739
4740 if ((i == 8) && strncasecmp(v.ptr, "no-store", 8) == 0) {
4741 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
4742 continue;
4743 }
4744 }
4745
4746 /* RFC7234#5.4:
4747 * When the Cache-Control header field is also present and
4748 * understood in a request, Pragma is ignored.
4749 * When the Cache-Control header field is not present in a
4750 * request, caches MUST consider the no-cache request
4751 * pragma-directive as having the same effect as if
4752 * "Cache-Control: no-cache" were present.
4753 */
4754 if (!cc_found && pragma_found)
4755 txn->flags |= TX_CACHE_IGNORE;
4756}
4757
4758/*
4759 * Check if response is cacheable or not. Updates s->txn->flags.
4760 */
4761void htx_check_response_for_cacheability(struct stream *s, struct channel *res)
4762{
4763 struct http_txn *txn = s->txn;
4764 struct htx *htx;
4765 int32_t pos;
4766 int i;
4767
4768 if (txn->status < 200) {
4769 /* do not try to cache interim responses! */
4770 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
4771 return;
4772 }
4773
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004774 htx = htxbuf(&res->buf);
Christopher Fauleta3f15502019-05-13 15:27:23 +02004775 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
Christopher Faulet25a02f62018-10-24 12:00:25 +02004776 struct htx_blk *blk = htx_get_blk(htx, pos);
4777 enum htx_blk_type type = htx_get_blk_type(blk);
4778 struct ist n, v;
4779
4780 if (type == HTX_BLK_EOH)
4781 break;
4782 if (type != HTX_BLK_HDR)
4783 continue;
4784
4785 n = htx_get_blk_name(htx, blk);
4786 v = htx_get_blk_value(htx, blk);
4787
Willy Tarreau2e754bf2018-12-07 11:38:03 +01004788 if (isteq(n, ist("pragma"))) {
Christopher Faulet25a02f62018-10-24 12:00:25 +02004789 if ((v.len >= 8) && strncasecmp(v.ptr, "no-cache", 8) == 0) {
4790 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
4791 return;
4792 }
4793 }
4794
Willy Tarreau2e754bf2018-12-07 11:38:03 +01004795 if (!isteq(n, ist("cache-control")))
Christopher Faulet25a02f62018-10-24 12:00:25 +02004796 continue;
4797
4798 /* OK, right now we know we have a cache-control header */
4799 if (!v.len) /* no info */
4800 continue;
4801
4802 i = 0;
4803 while (i < v.len && *(v.ptr+i) != '=' && *(v.ptr+i) != ',' &&
4804 !isspace((unsigned char)*(v.ptr+i)))
4805 i++;
4806
4807 /* we have a complete value between v.ptr and (v.ptr+i) */
4808 if (i < v.len && *(v.ptr + i) == '=') {
4809 if (((v.len - i) > 1 && (i == 7) && strncasecmp(v.ptr, "max-age=0", 9) == 0) ||
4810 ((v.len - i) > 1 && (i == 8) && strncasecmp(v.ptr, "s-maxage=0", 10) == 0)) {
4811 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
4812 continue;
4813 }
4814
4815 /* we have something of the form no-cache="set-cookie" */
4816 if ((v.len >= 21) &&
4817 strncasecmp(v.ptr, "no-cache=\"set-cookie", 20) == 0
4818 && (*(v.ptr + 20) == '"' || *(v.ptr + 20 ) == ','))
4819 txn->flags &= ~TX_CACHE_COOK;
4820 continue;
4821 }
4822
4823 /* OK, so we know that either p2 points to the end of string or to a comma */
4824 if (((i == 7) && strncasecmp(v.ptr, "private", 7) == 0) ||
4825 ((i == 8) && strncasecmp(v.ptr, "no-cache", 8) == 0) ||
4826 ((i == 8) && strncasecmp(v.ptr, "no-store", 8) == 0)) {
4827 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
4828 return;
4829 }
4830
4831 if ((i == 6) && strncasecmp(v.ptr, "public", 6) == 0) {
4832 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
4833 continue;
4834 }
4835 }
4836}
4837
Christopher Faulet64159df2018-10-24 21:15:35 +02004838/* send a server's name with an outgoing request over an established connection.
4839 * Note: this function is designed to be called once the request has been
4840 * scheduled for being forwarded. This is the reason why the number of forwarded
4841 * bytes have to be adjusted.
4842 */
4843int htx_send_name_header(struct stream *s, struct proxy *be, const char *srv_name)
4844{
4845 struct htx *htx;
4846 struct http_hdr_ctx ctx;
4847 struct ist hdr;
4848 uint32_t data;
4849
4850 hdr = ist2(be->server_id_hdr_name, be->server_id_hdr_len);
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004851 htx = htxbuf(&s->req.buf);
Christopher Faulet64159df2018-10-24 21:15:35 +02004852 data = htx->data;
4853
4854 ctx.blk = NULL;
4855 while (http_find_header(htx, hdr, &ctx, 1))
4856 http_remove_header(htx, &ctx);
4857 http_add_header(htx, hdr, ist2(srv_name, strlen(srv_name)));
4858
4859 if (co_data(&s->req)) {
4860 if (data >= htx->data)
4861 c_rew(&s->req, data - htx->data);
4862 else
4863 c_adv(&s->req, htx->data - data);
4864 }
4865 return 0;
4866}
4867
Christopher Faulet377c5a52018-10-24 21:21:30 +02004868/*
4869 * In a GET, HEAD or POST request, check if the requested URI matches the stats uri
4870 * for the current backend.
4871 *
4872 * It is assumed that the request is either a HEAD, GET, or POST and that the
4873 * uri_auth field is valid.
4874 *
4875 * Returns 1 if stats should be provided, otherwise 0.
4876 */
4877static int htx_stats_check_uri(struct stream *s, struct http_txn *txn, struct proxy *backend)
4878{
4879 struct uri_auth *uri_auth = backend->uri_auth;
4880 struct htx *htx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004881 struct htx_sl *sl;
Christopher Faulet377c5a52018-10-24 21:21:30 +02004882 struct ist uri;
Christopher Faulet377c5a52018-10-24 21:21:30 +02004883
4884 if (!uri_auth)
4885 return 0;
4886
4887 if (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD && txn->meth != HTTP_METH_POST)
4888 return 0;
4889
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004890 htx = htxbuf(&s->req.buf);
Christopher Faulet297fbb42019-05-13 14:41:27 +02004891 sl = http_get_stline(htx);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004892 uri = htx_sl_req_uri(sl);
Christopher Faulet377c5a52018-10-24 21:21:30 +02004893
4894 /* check URI size */
4895 if (uri_auth->uri_len > uri.len)
4896 return 0;
4897
4898 if (memcmp(uri.ptr, uri_auth->uri_prefix, uri_auth->uri_len) != 0)
4899 return 0;
4900
4901 return 1;
4902}
4903
4904/* This function prepares an applet to handle the stats. It can deal with the
4905 * "100-continue" expectation, check that admin rules are met for POST requests,
4906 * and program a response message if something was unexpected. It cannot fail
4907 * and always relies on the stats applet to complete the job. It does not touch
4908 * analysers nor counters, which are left to the caller. It does not touch
4909 * s->target which is supposed to already point to the stats applet. The caller
4910 * is expected to have already assigned an appctx to the stream.
4911 */
4912static int htx_handle_stats(struct stream *s, struct channel *req)
4913{
4914 struct stats_admin_rule *stats_admin_rule;
4915 struct stream_interface *si = &s->si[1];
4916 struct session *sess = s->sess;
4917 struct http_txn *txn = s->txn;
4918 struct http_msg *msg = &txn->req;
4919 struct uri_auth *uri_auth = s->be->uri_auth;
4920 const char *h, *lookup, *end;
4921 struct appctx *appctx;
4922 struct htx *htx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004923 struct htx_sl *sl;
Christopher Faulet377c5a52018-10-24 21:21:30 +02004924
4925 appctx = si_appctx(si);
4926 memset(&appctx->ctx.stats, 0, sizeof(appctx->ctx.stats));
4927 appctx->st1 = appctx->st2 = 0;
4928 appctx->ctx.stats.st_code = STAT_STATUS_INIT;
4929 appctx->ctx.stats.flags |= STAT_FMT_HTML; /* assume HTML mode by default */
4930 if ((msg->flags & HTTP_MSGF_VER_11) && (txn->meth != HTTP_METH_HEAD))
4931 appctx->ctx.stats.flags |= STAT_CHUNKED;
4932
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01004933 htx = htxbuf(&req->buf);
Christopher Faulet297fbb42019-05-13 14:41:27 +02004934 sl = http_get_stline(htx);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01004935 lookup = HTX_SL_REQ_UPTR(sl) + uri_auth->uri_len;
4936 end = HTX_SL_REQ_UPTR(sl) + HTX_SL_REQ_ULEN(sl);
Christopher Faulet377c5a52018-10-24 21:21:30 +02004937
4938 for (h = lookup; h <= end - 3; h++) {
4939 if (memcmp(h, ";up", 3) == 0) {
4940 appctx->ctx.stats.flags |= STAT_HIDE_DOWN;
4941 break;
4942 }
4943 }
4944
4945 if (uri_auth->refresh) {
4946 for (h = lookup; h <= end - 10; h++) {
4947 if (memcmp(h, ";norefresh", 10) == 0) {
4948 appctx->ctx.stats.flags |= STAT_NO_REFRESH;
4949 break;
4950 }
4951 }
4952 }
4953
4954 for (h = lookup; h <= end - 4; h++) {
4955 if (memcmp(h, ";csv", 4) == 0) {
4956 appctx->ctx.stats.flags &= ~STAT_FMT_HTML;
4957 break;
4958 }
4959 }
4960
4961 for (h = lookup; h <= end - 6; h++) {
4962 if (memcmp(h, ";typed", 6) == 0) {
4963 appctx->ctx.stats.flags &= ~STAT_FMT_HTML;
4964 appctx->ctx.stats.flags |= STAT_FMT_TYPED;
4965 break;
4966 }
4967 }
4968
4969 for (h = lookup; h <= end - 8; h++) {
4970 if (memcmp(h, ";st=", 4) == 0) {
4971 int i;
4972 h += 4;
4973 appctx->ctx.stats.st_code = STAT_STATUS_UNKN;
4974 for (i = STAT_STATUS_INIT + 1; i < STAT_STATUS_SIZE; i++) {
4975 if (strncmp(stat_status_codes[i], h, 4) == 0) {
4976 appctx->ctx.stats.st_code = i;
4977 break;
4978 }
4979 }
4980 break;
4981 }
4982 }
4983
4984 appctx->ctx.stats.scope_str = 0;
4985 appctx->ctx.stats.scope_len = 0;
4986 for (h = lookup; h <= end - 8; h++) {
4987 if (memcmp(h, STAT_SCOPE_INPUT_NAME "=", strlen(STAT_SCOPE_INPUT_NAME) + 1) == 0) {
4988 int itx = 0;
4989 const char *h2;
4990 char scope_txt[STAT_SCOPE_TXT_MAXLEN + 1];
4991 const char *err;
4992
4993 h += strlen(STAT_SCOPE_INPUT_NAME) + 1;
4994 h2 = h;
Christopher Fauleted7a0662019-01-14 11:07:34 +01004995 appctx->ctx.stats.scope_str = h2 - HTX_SL_REQ_UPTR(sl);
4996 while (h < end) {
Christopher Faulet377c5a52018-10-24 21:21:30 +02004997 if (*h == ';' || *h == '&' || *h == ' ')
4998 break;
4999 itx++;
5000 h++;
5001 }
5002
5003 if (itx > STAT_SCOPE_TXT_MAXLEN)
5004 itx = STAT_SCOPE_TXT_MAXLEN;
5005 appctx->ctx.stats.scope_len = itx;
5006
5007 /* scope_txt = search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
5008 memcpy(scope_txt, h2, itx);
5009 scope_txt[itx] = '\0';
5010 err = invalid_char(scope_txt);
5011 if (err) {
5012 /* bad char in search text => clear scope */
5013 appctx->ctx.stats.scope_str = 0;
5014 appctx->ctx.stats.scope_len = 0;
5015 }
5016 break;
5017 }
5018 }
5019
5020 /* now check whether we have some admin rules for this request */
5021 list_for_each_entry(stats_admin_rule, &uri_auth->admin_rules, list) {
5022 int ret = 1;
5023
5024 if (stats_admin_rule->cond) {
5025 ret = acl_exec_cond(stats_admin_rule->cond, s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
5026 ret = acl_pass(ret);
5027 if (stats_admin_rule->cond->pol == ACL_COND_UNLESS)
5028 ret = !ret;
5029 }
5030
5031 if (ret) {
5032 /* no rule, or the rule matches */
5033 appctx->ctx.stats.flags |= STAT_ADMIN;
5034 break;
5035 }
5036 }
5037
Christopher Faulet5d45e382019-02-27 15:15:23 +01005038 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
5039 appctx->st0 = STAT_HTTP_HEAD;
5040 else if (txn->meth == HTTP_METH_POST) {
Christopher Faulet69af2522019-08-15 22:26:48 +02005041 if (appctx->ctx.stats.flags & STAT_ADMIN) {
Christopher Faulet377c5a52018-10-24 21:21:30 +02005042 appctx->st0 = STAT_HTTP_POST;
Christopher Faulet69af2522019-08-15 22:26:48 +02005043 if (msg->msg_state < HTTP_MSG_DATA)
5044 req->analysers |= AN_REQ_HTTP_BODY;
5045 }
Christopher Faulet377c5a52018-10-24 21:21:30 +02005046 else {
Christopher Faulet5d45e382019-02-27 15:15:23 +01005047 /* POST without admin level */
Christopher Faulet377c5a52018-10-24 21:21:30 +02005048 appctx->ctx.stats.flags &= ~STAT_CHUNKED;
5049 appctx->ctx.stats.st_code = STAT_STATUS_DENY;
5050 appctx->st0 = STAT_HTTP_LAST;
5051 }
5052 }
5053 else {
Christopher Faulet5d45e382019-02-27 15:15:23 +01005054 /* Unsupported method */
5055 appctx->ctx.stats.flags &= ~STAT_CHUNKED;
5056 appctx->ctx.stats.st_code = STAT_STATUS_IVAL;
5057 appctx->st0 = STAT_HTTP_LAST;
Christopher Faulet377c5a52018-10-24 21:21:30 +02005058 }
5059
5060 s->task->nice = -32; /* small boost for HTTP statistics */
5061 return 1;
5062}
5063
Christopher Fauletfefc73d2018-10-24 21:18:04 +02005064void htx_perform_server_redirect(struct stream *s, struct stream_interface *si)
5065{
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01005066 struct channel *req = &s->req;
5067 struct channel *res = &s->res;
5068 struct server *srv;
Christopher Fauletfefc73d2018-10-24 21:18:04 +02005069 struct htx *htx;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005070 struct htx_sl *sl;
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01005071 struct ist path, location;
5072 unsigned int flags;
5073 size_t data;
Christopher Fauletfefc73d2018-10-24 21:18:04 +02005074
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01005075 /*
5076 * Create the location
5077 */
5078 chunk_reset(&trash);
Christopher Fauletfefc73d2018-10-24 21:18:04 +02005079
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01005080 /* 1: add the server's prefix */
Christopher Fauletfefc73d2018-10-24 21:18:04 +02005081 /* special prefix "/" means don't change URL */
5082 srv = __objt_server(s->target);
5083 if (srv->rdr_len != 1 || *srv->rdr_pfx != '/') {
5084 if (!chunk_memcat(&trash, srv->rdr_pfx, srv->rdr_len))
5085 return;
5086 }
5087
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01005088 /* 2: add the request Path */
Christopher Faulet27ba2dc2018-12-05 11:53:24 +01005089 htx = htxbuf(&req->buf);
Christopher Faulet297fbb42019-05-13 14:41:27 +02005090 sl = http_get_stline(htx);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005091 path = http_get_path(htx_sl_req_uri(sl));
Christopher Fauletfefc73d2018-10-24 21:18:04 +02005092 if (!path.ptr)
5093 return;
5094
5095 if (!chunk_memcat(&trash, path.ptr, path.len))
5096 return;
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01005097 location = ist2(trash.area, trash.data);
Christopher Fauletfefc73d2018-10-24 21:18:04 +02005098
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01005099 /*
5100 * Create the 302 respone
5101 */
5102 htx = htx_from_buf(&res->buf);
5103 flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN|HTX_SL_F_BODYLESS);
5104 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags,
5105 ist("HTTP/1.1"), ist("302"), ist("Found"));
5106 if (!sl)
5107 goto fail;
5108 sl->info.res.status = 302;
5109 s->txn->status = 302;
5110
5111 if (!htx_add_header(htx, ist("Cache-Control"), ist("no-cache")) ||
5112 !htx_add_header(htx, ist("Connection"), ist("close")) ||
5113 !htx_add_header(htx, ist("Content-length"), ist("0")) ||
5114 !htx_add_header(htx, ist("Location"), location))
5115 goto fail;
5116
5117 if (!htx_add_endof(htx, HTX_BLK_EOH) || !htx_add_endof(htx, HTX_BLK_EOM))
5118 goto fail;
Christopher Fauletfefc73d2018-10-24 21:18:04 +02005119
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01005120 /*
5121 * Send the message
5122 */
5123 data = htx->data - co_data(res);
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01005124 c_adv(res, data);
5125 res->total += data;
5126
5127 /* return without error. */
Christopher Fauletfefc73d2018-10-24 21:18:04 +02005128 si_shutr(si);
5129 si_shutw(si);
5130 si->err_type = SI_ET_NONE;
5131 si->state = SI_ST_CLO;
5132
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01005133 channel_auto_read(req);
5134 channel_abort(req);
5135 channel_auto_close(req);
Christopher Faulet202c6ce2019-01-07 14:57:35 +01005136 channel_htx_erase(req, htxbuf(&req->buf));
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01005137 channel_auto_read(res);
5138 channel_auto_close(res);
5139
5140 if (!(s->flags & SF_ERR_MASK))
5141 s->flags |= SF_ERR_LOCAL;
5142 if (!(s->flags & SF_FINST_MASK))
5143 s->flags |= SF_FINST_C;
Christopher Fauletfefc73d2018-10-24 21:18:04 +02005144
5145 /* FIXME: we should increase a counter of redirects per server and per backend. */
5146 srv_inc_sess_ctr(srv);
5147 srv_set_sess_last(srv);
Christopher Faulet0eaed6b2018-11-28 17:46:40 +01005148 return;
5149
5150 fail:
5151 /* If an error occurred, remove the incomplete HTTP response from the
5152 * buffer */
Christopher Faulet202c6ce2019-01-07 14:57:35 +01005153 channel_htx_truncate(res, htx);
Christopher Fauletfefc73d2018-10-24 21:18:04 +02005154}
5155
Christopher Fauletf2824e62018-10-01 12:12:37 +02005156/* This function terminates the request because it was completly analyzed or
5157 * because an error was triggered during the body forwarding.
5158 */
5159static void htx_end_request(struct stream *s)
5160{
5161 struct channel *chn = &s->req;
5162 struct http_txn *txn = s->txn;
5163
5164 DPRINTF(stderr,"[%u] %s: stream=%p states=%s,%s req->analysers=0x%08x res->analysers=0x%08x\n",
5165 now_ms, __FUNCTION__, s,
5166 h1_msg_state_str(txn->req.msg_state), h1_msg_state_str(txn->rsp.msg_state),
5167 s->req.analysers, s->res.analysers);
5168
Christopher Fauletb42a8b62018-11-19 21:59:00 +01005169 if (unlikely(txn->req.msg_state == HTTP_MSG_ERROR ||
5170 txn->rsp.msg_state == HTTP_MSG_ERROR)) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02005171 channel_abort(chn);
Christopher Faulet202c6ce2019-01-07 14:57:35 +01005172 channel_htx_truncate(chn, htxbuf(&chn->buf));
Christopher Fauletf2824e62018-10-01 12:12:37 +02005173 goto end;
5174 }
5175
5176 if (unlikely(txn->req.msg_state < HTTP_MSG_DONE))
5177 return;
5178
5179 if (txn->req.msg_state == HTTP_MSG_DONE) {
Christopher Fauletf2824e62018-10-01 12:12:37 +02005180 /* No need to read anymore, the request was completely parsed.
5181 * We can shut the read side unless we want to abort_on_close,
5182 * or we have a POST request. The issue with POST requests is
5183 * that some browsers still send a CRLF after the request, and
5184 * this CRLF must be read so that it does not remain in the kernel
5185 * buffers, otherwise a close could cause an RST on some systems
5186 * (eg: Linux).
5187 */
Christopher Faulet769d0e92019-03-22 14:23:18 +01005188 if (!(s->be->options & PR_O_ABRT_CLOSE) && txn->meth != HTTP_METH_POST)
Christopher Fauletf2824e62018-10-01 12:12:37 +02005189 channel_dont_read(chn);
5190
5191 /* if the server closes the connection, we want to immediately react
5192 * and close the socket to save packets and syscalls.
5193 */
5194 s->si[1].flags |= SI_FL_NOHALF;
5195
5196 /* In any case we've finished parsing the request so we must
5197 * disable Nagle when sending data because 1) we're not going
5198 * to shut this side, and 2) the server is waiting for us to
5199 * send pending data.
5200 */
5201 chn->flags |= CF_NEVER_WAIT;
5202
Christopher Fauletd01ce402019-01-02 17:44:13 +01005203 if (txn->rsp.msg_state < HTTP_MSG_DONE) {
5204 /* The server has not finished to respond, so we
5205 * don't want to move in order not to upset it.
5206 */
5207 return;
5208 }
5209
Christopher Fauletf2824e62018-10-01 12:12:37 +02005210 /* When we get here, it means that both the request and the
5211 * response have finished receiving. Depending on the connection
5212 * mode, we'll have to wait for the last bytes to leave in either
5213 * direction, and sometimes for a close to be effective.
5214 */
5215 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN) {
5216 /* Tunnel mode will not have any analyser so it needs to
5217 * poll for reads.
5218 */
5219 channel_auto_read(chn);
Christopher Faulet9768c262018-10-22 09:34:31 +02005220 if (b_data(&chn->buf))
5221 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02005222 txn->req.msg_state = HTTP_MSG_TUNNEL;
5223 }
5224 else {
5225 /* we're not expecting any new data to come for this
5226 * transaction, so we can close it.
Christopher Faulet9768c262018-10-22 09:34:31 +02005227 *
5228 * However, there is an exception if the response
5229 * length is undefined. In this case, we need to wait
5230 * the close from the server. The response will be
5231 * switched in TUNNEL mode until the end.
Christopher Fauletf2824e62018-10-01 12:12:37 +02005232 */
5233 if (!(txn->rsp.flags & HTTP_MSGF_XFER_LEN) &&
5234 txn->rsp.msg_state != HTTP_MSG_CLOSED)
Christopher Faulet9768c262018-10-22 09:34:31 +02005235 goto check_channel_flags;
Christopher Fauletf2824e62018-10-01 12:12:37 +02005236
5237 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
5238 channel_shutr_now(chn);
5239 channel_shutw_now(chn);
5240 }
5241 }
Christopher Fauletf2824e62018-10-01 12:12:37 +02005242 goto check_channel_flags;
5243 }
5244
5245 if (txn->req.msg_state == HTTP_MSG_CLOSING) {
5246 http_msg_closing:
5247 /* nothing else to forward, just waiting for the output buffer
5248 * to be empty and for the shutw_now to take effect.
5249 */
5250 if (channel_is_empty(chn)) {
5251 txn->req.msg_state = HTTP_MSG_CLOSED;
5252 goto http_msg_closed;
5253 }
5254 else if (chn->flags & CF_SHUTW) {
5255 txn->req.err_state = txn->req.msg_state;
5256 txn->req.msg_state = HTTP_MSG_ERROR;
5257 goto end;
5258 }
5259 return;
5260 }
5261
5262 if (txn->req.msg_state == HTTP_MSG_CLOSED) {
5263 http_msg_closed:
Christopher Fauletf2824e62018-10-01 12:12:37 +02005264 /* if we don't know whether the server will close, we need to hard close */
5265 if (txn->rsp.flags & HTTP_MSGF_XFER_LEN)
5266 s->si[1].flags |= SI_FL_NOLINGER; /* we want to close ASAP */
Christopher Fauletf2824e62018-10-01 12:12:37 +02005267 /* see above in MSG_DONE why we only do this in these states */
Christopher Faulet769d0e92019-03-22 14:23:18 +01005268 if (!(s->be->options & PR_O_ABRT_CLOSE))
Christopher Fauletf2824e62018-10-01 12:12:37 +02005269 channel_dont_read(chn);
5270 goto end;
5271 }
5272
5273 check_channel_flags:
5274 /* Here, we are in HTTP_MSG_DONE or HTTP_MSG_TUNNEL */
5275 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
5276 /* if we've just closed an output, let's switch */
5277 txn->req.msg_state = HTTP_MSG_CLOSING;
5278 goto http_msg_closing;
5279 }
5280
5281 end:
5282 chn->analysers &= AN_REQ_FLT_END;
5283 if (txn->req.msg_state == HTTP_MSG_TUNNEL && HAS_REQ_DATA_FILTERS(s))
5284 chn->analysers |= AN_REQ_FLT_XFER_DATA;
5285 channel_auto_close(chn);
5286 channel_auto_read(chn);
5287}
5288
5289
5290/* This function terminates the response because it was completly analyzed or
5291 * because an error was triggered during the body forwarding.
5292 */
5293static void htx_end_response(struct stream *s)
5294{
5295 struct channel *chn = &s->res;
5296 struct http_txn *txn = s->txn;
5297
5298 DPRINTF(stderr,"[%u] %s: stream=%p states=%s,%s req->analysers=0x%08x res->analysers=0x%08x\n",
5299 now_ms, __FUNCTION__, s,
5300 h1_msg_state_str(txn->req.msg_state), h1_msg_state_str(txn->rsp.msg_state),
5301 s->req.analysers, s->res.analysers);
5302
Christopher Fauletb42a8b62018-11-19 21:59:00 +01005303 if (unlikely(txn->req.msg_state == HTTP_MSG_ERROR ||
5304 txn->rsp.msg_state == HTTP_MSG_ERROR)) {
Christopher Faulet202c6ce2019-01-07 14:57:35 +01005305 channel_htx_truncate(&s->req, htxbuf(&s->req.buf));
Christopher Faulet9768c262018-10-22 09:34:31 +02005306 channel_abort(&s->req);
Christopher Fauletf2824e62018-10-01 12:12:37 +02005307 goto end;
5308 }
5309
5310 if (unlikely(txn->rsp.msg_state < HTTP_MSG_DONE))
5311 return;
5312
5313 if (txn->rsp.msg_state == HTTP_MSG_DONE) {
5314 /* In theory, we don't need to read anymore, but we must
5315 * still monitor the server connection for a possible close
5316 * while the request is being uploaded, so we don't disable
5317 * reading.
5318 */
5319 /* channel_dont_read(chn); */
5320
5321 if (txn->req.msg_state < HTTP_MSG_DONE) {
5322 /* The client seems to still be sending data, probably
5323 * because we got an error response during an upload.
5324 * We have the choice of either breaking the connection
5325 * or letting it pass through. Let's do the later.
5326 */
5327 return;
5328 }
5329
5330 /* When we get here, it means that both the request and the
5331 * response have finished receiving. Depending on the connection
5332 * mode, we'll have to wait for the last bytes to leave in either
5333 * direction, and sometimes for a close to be effective.
5334 */
5335 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN) {
5336 channel_auto_read(chn);
5337 chn->flags |= CF_NEVER_WAIT;
Christopher Faulet9768c262018-10-22 09:34:31 +02005338 if (b_data(&chn->buf))
5339 return;
Christopher Fauletf2824e62018-10-01 12:12:37 +02005340 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
5341 }
5342 else {
5343 /* we're not expecting any new data to come for this
5344 * transaction, so we can close it.
5345 */
5346 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
5347 channel_shutr_now(chn);
5348 channel_shutw_now(chn);
5349 }
5350 }
5351 goto check_channel_flags;
5352 }
5353
5354 if (txn->rsp.msg_state == HTTP_MSG_CLOSING) {
5355 http_msg_closing:
5356 /* nothing else to forward, just waiting for the output buffer
5357 * to be empty and for the shutw_now to take effect.
5358 */
5359 if (channel_is_empty(chn)) {
5360 txn->rsp.msg_state = HTTP_MSG_CLOSED;
5361 goto http_msg_closed;
5362 }
5363 else if (chn->flags & CF_SHUTW) {
5364 txn->rsp.err_state = txn->rsp.msg_state;
5365 txn->rsp.msg_state = HTTP_MSG_ERROR;
Olivier Houcharda798bf52019-03-08 18:52:00 +01005366 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
Christopher Fauletf2824e62018-10-01 12:12:37 +02005367 if (objt_server(s->target))
Olivier Houcharda798bf52019-03-08 18:52:00 +01005368 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.cli_aborts, 1);
Christopher Fauletf2824e62018-10-01 12:12:37 +02005369 goto end;
5370 }
5371 return;
5372 }
5373
5374 if (txn->rsp.msg_state == HTTP_MSG_CLOSED) {
5375 http_msg_closed:
5376 /* drop any pending data */
Christopher Faulet202c6ce2019-01-07 14:57:35 +01005377 channel_htx_truncate(&s->req, htxbuf(&s->req.buf));
Christopher Faulet9768c262018-10-22 09:34:31 +02005378 channel_abort(&s->req);
Christopher Fauletf2824e62018-10-01 12:12:37 +02005379 goto end;
5380 }
5381
5382 check_channel_flags:
5383 /* Here, we are in HTTP_MSG_DONE or HTTP_MSG_TUNNEL */
5384 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
5385 /* if we've just closed an output, let's switch */
5386 txn->rsp.msg_state = HTTP_MSG_CLOSING;
5387 goto http_msg_closing;
5388 }
5389
5390 end:
5391 chn->analysers &= AN_RES_FLT_END;
5392 if (txn->rsp.msg_state == HTTP_MSG_TUNNEL && HAS_RSP_DATA_FILTERS(s))
5393 chn->analysers |= AN_RES_FLT_XFER_DATA;
5394 channel_auto_close(chn);
5395 channel_auto_read(chn);
5396}
5397
Christopher Faulet0f226952018-10-22 09:29:56 +02005398void htx_server_error(struct stream *s, struct stream_interface *si, int err,
5399 int finst, const struct buffer *msg)
5400{
5401 channel_auto_read(si_oc(si));
5402 channel_abort(si_oc(si));
5403 channel_auto_close(si_oc(si));
Christopher Faulet202c6ce2019-01-07 14:57:35 +01005404 channel_htx_erase(si_oc(si), htxbuf(&(si_oc(si))->buf));
Christopher Faulet0f226952018-10-22 09:29:56 +02005405 channel_auto_close(si_ic(si));
5406 channel_auto_read(si_ic(si));
Christopher Fauleta7b677c2018-11-29 16:48:49 +01005407
5408 /* <msg> is an HTX structure. So we copy it in the response's
5409 * channel */
Christopher Faulet2f8ef7c2019-07-22 16:41:43 +02005410 if (msg && !b_is_null(msg)) {
Christopher Faulet0f226952018-10-22 09:29:56 +02005411 struct channel *chn = si_ic(si);
5412 struct htx *htx;
5413
Christopher Fauletaed82cf2018-11-30 22:22:32 +01005414 FLT_STRM_CB(s, flt_http_reply(s, s->txn->status, msg));
Christopher Fauleta7b677c2018-11-29 16:48:49 +01005415 chn->buf.data = msg->data;
5416 memcpy(chn->buf.area, msg->area, msg->data);
5417 htx = htx_from_buf(&chn->buf);
Christopher Faulet0f226952018-10-22 09:29:56 +02005418 c_adv(chn, htx->data);
5419 chn->total += htx->data;
5420 }
5421 if (!(s->flags & SF_ERR_MASK))
5422 s->flags |= err;
5423 if (!(s->flags & SF_FINST_MASK))
5424 s->flags |= finst;
5425}
5426
5427void htx_reply_and_close(struct stream *s, short status, struct buffer *msg)
5428{
5429 channel_auto_read(&s->req);
5430 channel_abort(&s->req);
5431 channel_auto_close(&s->req);
Christopher Faulet202c6ce2019-01-07 14:57:35 +01005432 channel_htx_erase(&s->req, htxbuf(&s->req.buf));
5433 channel_htx_truncate(&s->res, htxbuf(&s->res.buf));
Christopher Faulet0f226952018-10-22 09:29:56 +02005434
5435 s->txn->flags &= ~TX_WAIT_NEXT_RQ;
Christopher Fauleta7b677c2018-11-29 16:48:49 +01005436
5437 /* <msg> is an HTX structure. So we copy it in the response's
5438 * channel */
5439 /* FIXME: It is a problem for now if there is some outgoing data */
Christopher Faulet2f8ef7c2019-07-22 16:41:43 +02005440 if (msg && !b_is_null(msg)) {
Christopher Faulet0f226952018-10-22 09:29:56 +02005441 struct channel *chn = &s->res;
5442 struct htx *htx;
5443
Christopher Fauletaed82cf2018-11-30 22:22:32 +01005444 FLT_STRM_CB(s, flt_http_reply(s, s->txn->status, msg));
Christopher Fauleta7b677c2018-11-29 16:48:49 +01005445 chn->buf.data = msg->data;
5446 memcpy(chn->buf.area, msg->area, msg->data);
5447 htx = htx_from_buf(&chn->buf);
Christopher Faulet0f226952018-10-22 09:29:56 +02005448 c_adv(chn, htx->data);
5449 chn->total += htx->data;
5450 }
5451
5452 s->res.wex = tick_add_ifset(now_ms, s->res.wto);
5453 channel_auto_read(&s->res);
5454 channel_auto_close(&s->res);
5455 channel_shutr_now(&s->res);
5456}
5457
Christopher Fauleta7b677c2018-11-29 16:48:49 +01005458struct buffer *htx_error_message(struct stream *s)
5459{
5460 const int msgnum = http_get_status_idx(s->txn->status);
5461
5462 if (s->be->errmsg[msgnum].area)
5463 return &s->be->errmsg[msgnum];
5464 else if (strm_fe(s)->errmsg[msgnum].area)
5465 return &strm_fe(s)->errmsg[msgnum];
5466 else
5467 return &htx_err_chunks[msgnum];
5468}
5469
5470
Christopher Faulet4a28a532019-03-01 11:19:40 +01005471/* Handle Expect: 100-continue for HTTP/1.1 messages if necessary. It returns 0
5472 * on success and -1 on error.
5473 */
5474static int htx_handle_expect_hdr(struct stream *s, struct htx *htx, struct http_msg *msg)
5475{
5476 /* If we have HTTP/1.1 message with a body and Expect: 100-continue,
5477 * then we must send an HTTP/1.1 100 Continue intermediate response.
5478 */
5479 if (msg->msg_state == HTTP_MSG_BODY && (msg->flags & HTTP_MSGF_VER_11) &&
5480 (msg->flags & (HTTP_MSGF_CNT_LEN|HTTP_MSGF_TE_CHNK))) {
5481 struct ist hdr = { .ptr = "Expect", .len = 6 };
5482 struct http_hdr_ctx ctx;
5483
5484 ctx.blk = NULL;
5485 /* Expect is allowed in 1.1, look for it */
5486 if (http_find_header(htx, hdr, &ctx, 0) &&
5487 unlikely(isteqi(ctx.value, ist2("100-continue", 12)))) {
5488 if (htx_reply_100_continue(s) == -1)
5489 return -1;
5490 http_remove_header(htx, &ctx);
5491 }
5492 }
5493 return 0;
5494}
5495
Christopher Faulet23a3c792018-11-28 10:01:23 +01005496/* Send a 100-Continue response to the client. It returns 0 on success and -1
5497 * on error. The response channel is updated accordingly.
5498 */
5499static int htx_reply_100_continue(struct stream *s)
5500{
5501 struct channel *res = &s->res;
5502 struct htx *htx = htx_from_buf(&res->buf);
5503 struct htx_sl *sl;
5504 unsigned int flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|
5505 HTX_SL_F_XFER_LEN|HTX_SL_F_BODYLESS);
5506 size_t data;
5507
5508 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags,
5509 ist("HTTP/1.1"), ist("100"), ist("Continue"));
5510 if (!sl)
5511 goto fail;
5512 sl->info.res.status = 100;
5513
Christopher Faulet9869f932019-06-26 14:23:54 +02005514 if (!htx_add_endof(htx, HTX_BLK_EOH))
Christopher Faulet23a3c792018-11-28 10:01:23 +01005515 goto fail;
5516
5517 data = htx->data - co_data(res);
Christopher Faulet23a3c792018-11-28 10:01:23 +01005518 c_adv(res, data);
5519 res->total += data;
5520 return 0;
5521
5522 fail:
5523 /* If an error occurred, remove the incomplete HTTP response from the
5524 * buffer */
Christopher Faulet202c6ce2019-01-07 14:57:35 +01005525 channel_htx_truncate(res, htx);
Christopher Faulet23a3c792018-11-28 10:01:23 +01005526 return -1;
5527}
5528
Christopher Faulet12c51e22018-11-28 15:59:42 +01005529
5530/* Send a 401-Unauthorized or 407-Unauthorized response to the client, depending
5531 * ont whether we use a proxy or not. It returns 0 on success and -1 on
5532 * error. The response channel is updated accordingly.
5533 */
5534static int htx_reply_40x_unauthorized(struct stream *s, const char *auth_realm)
5535{
5536 struct channel *res = &s->res;
5537 struct htx *htx = htx_from_buf(&res->buf);
5538 struct htx_sl *sl;
5539 struct ist code, body;
5540 int status;
5541 unsigned int flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11);
5542 size_t data;
5543
5544 if (!(s->txn->flags & TX_USE_PX_CONN)) {
5545 status = 401;
5546 code = ist("401");
5547 body = ist("<html><body><h1>401 Unauthorized</h1>\n"
5548 "You need a valid user and password to access this content.\n"
5549 "</body></html>\n");
5550 }
5551 else {
5552 status = 407;
5553 code = ist("407");
5554 body = ist("<html><body><h1>407 Unauthorized</h1>\n"
5555 "You need a valid user and password to access this content.\n"
5556 "</body></html>\n");
5557 }
5558
5559 sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags,
5560 ist("HTTP/1.1"), code, ist("Unauthorized"));
5561 if (!sl)
5562 goto fail;
5563 sl->info.res.status = status;
5564 s->txn->status = status;
5565
5566 if (chunk_printf(&trash, "Basic realm=\"%s\"", auth_realm) == -1)
5567 goto fail;
5568
Willy Tarreaub5ba2b02019-06-11 16:08:25 +02005569 if (!htx_add_header(htx, ist("Content-length"), ist("112")) ||
5570 !htx_add_header(htx, ist("Cache-Control"), ist("no-cache")) ||
Christopher Faulet12c51e22018-11-28 15:59:42 +01005571 !htx_add_header(htx, ist("Connection"), ist("close")) ||
Jérôme Magnin86cef232018-12-28 14:49:08 +01005572 !htx_add_header(htx, ist("Content-Type"), ist("text/html")))
5573 goto fail;
5574 if (status == 401 && !htx_add_header(htx, ist("WWW-Authenticate"), ist2(trash.area, trash.data)))
5575 goto fail;
5576 if (status == 407 && !htx_add_header(htx, ist("Proxy-Authenticate"), ist2(trash.area, trash.data)))
Christopher Faulet12c51e22018-11-28 15:59:42 +01005577 goto fail;
Willy Tarreau0a7ef022019-05-28 10:30:11 +02005578 if (!htx_add_endof(htx, HTX_BLK_EOH))
5579 goto fail;
5580
5581 while (body.len) {
5582 size_t sent = htx_add_data(htx, body);
5583 if (!sent)
5584 goto fail;
5585 body.ptr += sent;
5586 body.len -= sent;
5587 }
5588
5589 if (!htx_add_endof(htx, HTX_BLK_EOM))
Christopher Faulet12c51e22018-11-28 15:59:42 +01005590 goto fail;
5591
5592 data = htx->data - co_data(res);
Christopher Faulet12c51e22018-11-28 15:59:42 +01005593 c_adv(res, data);
5594 res->total += data;
5595
5596 channel_auto_read(&s->req);
5597 channel_abort(&s->req);
5598 channel_auto_close(&s->req);
Christopher Faulet202c6ce2019-01-07 14:57:35 +01005599 channel_htx_erase(&s->req, htxbuf(&s->req.buf));
Christopher Faulet12c51e22018-11-28 15:59:42 +01005600
5601 res->wex = tick_add_ifset(now_ms, res->wto);
5602 channel_auto_read(res);
5603 channel_auto_close(res);
5604 channel_shutr_now(res);
5605 return 0;
5606
5607 fail:
5608 /* If an error occurred, remove the incomplete HTTP response from the
5609 * buffer */
Christopher Faulet202c6ce2019-01-07 14:57:35 +01005610 channel_htx_truncate(res, htx);
Christopher Faulet12c51e22018-11-28 15:59:42 +01005611 return -1;
5612}
5613
Christopher Faulet0f226952018-10-22 09:29:56 +02005614/*
5615 * Capture headers from message <htx> according to header list <cap_hdr>, and
5616 * fill the <cap> pointers appropriately.
5617 */
5618static void htx_capture_headers(struct htx *htx, char **cap, struct cap_hdr *cap_hdr)
5619{
5620 struct cap_hdr *h;
5621 int32_t pos;
5622
Christopher Fauleta3f15502019-05-13 15:27:23 +02005623 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
Christopher Faulet0f226952018-10-22 09:29:56 +02005624 struct htx_blk *blk = htx_get_blk(htx, pos);
5625 enum htx_blk_type type = htx_get_blk_type(blk);
5626 struct ist n, v;
5627
5628 if (type == HTX_BLK_EOH)
5629 break;
5630 if (type != HTX_BLK_HDR)
5631 continue;
5632
5633 n = htx_get_blk_name(htx, blk);
5634
5635 for (h = cap_hdr; h; h = h->next) {
5636 if (h->namelen && (h->namelen == n.len) &&
5637 (strncasecmp(n.ptr, h->name, h->namelen) == 0)) {
5638 if (cap[h->index] == NULL)
5639 cap[h->index] =
5640 pool_alloc(h->pool);
5641
5642 if (cap[h->index] == NULL) {
5643 ha_alert("HTTP capture : out of memory.\n");
5644 break;
5645 }
5646
5647 v = htx_get_blk_value(htx, blk);
5648 if (v.len > h->len)
5649 v.len = h->len;
5650
5651 memcpy(cap[h->index], v.ptr, v.len);
5652 cap[h->index][v.len]=0;
5653 }
5654 }
5655 }
5656}
5657
Christopher Faulet0b6bdc52018-10-24 11:05:36 +02005658/* Delete a value in a header between delimiters <from> and <next>. The header
5659 * itself is delimited by <start> and <end> pointers. The number of characters
5660 * displaced is returned, and the pointer to the first delimiter is updated if
5661 * required. The function tries as much as possible to respect the following
5662 * principles :
5663 * - replace <from> delimiter by the <next> one unless <from> points to <start>,
5664 * in which case <next> is simply removed
5665 * - set exactly one space character after the new first delimiter, unless there
5666 * are not enough characters in the block being moved to do so.
5667 * - remove unneeded spaces before the previous delimiter and after the new
5668 * one.
5669 *
5670 * It is the caller's responsibility to ensure that :
5671 * - <from> points to a valid delimiter or <start> ;
5672 * - <next> points to a valid delimiter or <end> ;
5673 * - there are non-space chars before <from>.
5674 */
5675static int htx_del_hdr_value(char *start, char *end, char **from, char *next)
5676{
5677 char *prev = *from;
5678
5679 if (prev == start) {
5680 /* We're removing the first value. eat the semicolon, if <next>
5681 * is lower than <end> */
5682 if (next < end)
5683 next++;
5684
5685 while (next < end && HTTP_IS_SPHT(*next))
5686 next++;
5687 }
5688 else {
5689 /* Remove useless spaces before the old delimiter. */
5690 while (HTTP_IS_SPHT(*(prev-1)))
5691 prev--;
5692 *from = prev;
5693
5694 /* copy the delimiter and if possible a space if we're
5695 * not at the end of the line.
5696 */
5697 if (next < end) {
5698 *prev++ = *next++;
5699 if (prev + 1 < next)
5700 *prev++ = ' ';
5701 while (next < end && HTTP_IS_SPHT(*next))
5702 next++;
5703 }
5704 }
5705 memmove(prev, next, end - next);
5706 return (prev - next);
5707}
5708
Christopher Faulet0f226952018-10-22 09:29:56 +02005709
5710/* Formats the start line of the request (without CRLF) and puts it in <str> and
Joseph Herlantc42c0e92018-11-25 10:43:27 -08005711 * return the written length. The line can be truncated if it exceeds <len>.
Christopher Faulet0f226952018-10-22 09:29:56 +02005712 */
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005713static size_t htx_fmt_req_line(const struct htx_sl *sl, char *str, size_t len)
Christopher Faulet0f226952018-10-22 09:29:56 +02005714{
5715 struct ist dst = ist2(str, 0);
5716
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005717 if (istcat(&dst, htx_sl_req_meth(sl), len) == -1)
Christopher Faulet0f226952018-10-22 09:29:56 +02005718 goto end;
5719 if (dst.len + 1 > len)
5720 goto end;
5721 dst.ptr[dst.len++] = ' ';
5722
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005723 if (istcat(&dst, htx_sl_req_uri(sl), len) == -1)
Christopher Faulet0f226952018-10-22 09:29:56 +02005724 goto end;
5725 if (dst.len + 1 > len)
5726 goto end;
5727 dst.ptr[dst.len++] = ' ';
5728
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005729 istcat(&dst, htx_sl_req_vsn(sl), len);
Christopher Faulet0f226952018-10-22 09:29:56 +02005730 end:
5731 return dst.len;
5732}
5733
Christopher Fauletf0523542018-10-24 11:06:58 +02005734/* Formats the start line of the response (without CRLF) and puts it in <str> and
Joseph Herlantc42c0e92018-11-25 10:43:27 -08005735 * return the written length. The line can be truncated if it exceeds <len>.
Christopher Fauletf0523542018-10-24 11:06:58 +02005736 */
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005737static size_t htx_fmt_res_line(const struct htx_sl *sl, char *str, size_t len)
Christopher Fauletf0523542018-10-24 11:06:58 +02005738{
5739 struct ist dst = ist2(str, 0);
5740
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005741 if (istcat(&dst, htx_sl_res_vsn(sl), len) == -1)
Christopher Fauletf0523542018-10-24 11:06:58 +02005742 goto end;
5743 if (dst.len + 1 > len)
5744 goto end;
5745 dst.ptr[dst.len++] = ' ';
5746
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005747 if (istcat(&dst, htx_sl_res_code(sl), len) == -1)
Christopher Fauletf0523542018-10-24 11:06:58 +02005748 goto end;
5749 if (dst.len + 1 > len)
5750 goto end;
5751 dst.ptr[dst.len++] = ' ';
5752
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005753 istcat(&dst, htx_sl_res_reason(sl), len);
Christopher Fauletf0523542018-10-24 11:06:58 +02005754 end:
5755 return dst.len;
5756}
5757
5758
Christopher Faulet0f226952018-10-22 09:29:56 +02005759/*
5760 * Print a debug line with a start line.
5761 */
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005762static void htx_debug_stline(const char *dir, struct stream *s, const struct htx_sl *sl)
Christopher Faulet0f226952018-10-22 09:29:56 +02005763{
5764 struct session *sess = strm_sess(s);
5765 int max;
5766
5767 chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", s->uniq_id, s->be->id,
5768 dir,
5769 objt_conn(sess->origin) ? (unsigned short)objt_conn(sess->origin)->handle.fd : -1,
5770 objt_cs(s->si[1].end) ? (unsigned short)objt_cs(s->si[1].end)->conn->handle.fd : -1);
5771
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005772 max = HTX_SL_P1_LEN(sl);
Christopher Faulet0f226952018-10-22 09:29:56 +02005773 UBOUND(max, trash.size - trash.data - 3);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005774 chunk_memcat(&trash, HTX_SL_P1_PTR(sl), max);
Christopher Faulet0f226952018-10-22 09:29:56 +02005775 trash.area[trash.data++] = ' ';
5776
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005777 max = HTX_SL_P2_LEN(sl);
Christopher Faulet0f226952018-10-22 09:29:56 +02005778 UBOUND(max, trash.size - trash.data - 2);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005779 chunk_memcat(&trash, HTX_SL_P2_PTR(sl), max);
Christopher Faulet0f226952018-10-22 09:29:56 +02005780 trash.area[trash.data++] = ' ';
5781
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005782 max = HTX_SL_P3_LEN(sl);
Christopher Faulet0f226952018-10-22 09:29:56 +02005783 UBOUND(max, trash.size - trash.data - 1);
Christopher Fauletf1ba18d2018-11-26 21:37:08 +01005784 chunk_memcat(&trash, HTX_SL_P3_PTR(sl), max);
Christopher Faulet0f226952018-10-22 09:29:56 +02005785 trash.area[trash.data++] = '\n';
5786
5787 shut_your_big_mouth_gcc(write(1, trash.area, trash.data));
5788}
5789
5790/*
5791 * Print a debug line with a header.
5792 */
5793static void htx_debug_hdr(const char *dir, struct stream *s, const struct ist n, const struct ist v)
5794{
5795 struct session *sess = strm_sess(s);
5796 int max;
5797
5798 chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", s->uniq_id, s->be->id,
5799 dir,
5800 objt_conn(sess->origin) ? (unsigned short)objt_conn(sess->origin)->handle.fd : -1,
5801 objt_cs(s->si[1].end) ? (unsigned short)objt_cs(s->si[1].end)->conn->handle.fd : -1);
5802
5803 max = n.len;
5804 UBOUND(max, trash.size - trash.data - 3);
5805 chunk_memcat(&trash, n.ptr, max);
5806 trash.area[trash.data++] = ':';
5807 trash.area[trash.data++] = ' ';
5808
5809 max = v.len;
5810 UBOUND(max, trash.size - trash.data - 1);
5811 chunk_memcat(&trash, v.ptr, max);
5812 trash.area[trash.data++] = '\n';
5813
5814 shut_your_big_mouth_gcc(write(1, trash.area, trash.data));
5815}
5816
5817
Christopher Fauletf4eb75d2018-10-11 15:55:07 +02005818__attribute__((constructor))
5819static void __htx_protocol_init(void)
5820{
5821}
5822
5823
5824/*
5825 * Local variables:
5826 * c-indent-level: 8
5827 * c-basic-offset: 8
5828 * End:
5829 */