blob: bd6a15a8815664724feaf610f53d58cdeed3c0ac [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * HTTP protocol analyzer
3 *
Willy Tarreauf68a15a2011-01-06 16:53:21 +01004 * Copyright 2000-2011 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
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
13#include <ctype.h>
14#include <errno.h>
15#include <fcntl.h>
16#include <stdio.h>
17#include <stdlib.h>
18#include <string.h>
19#include <syslog.h>
Willy Tarreau42250582007-04-01 01:30:43 +020020#include <time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
22#include <sys/socket.h>
23#include <sys/stat.h>
24#include <sys/types.h>
25
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010026#include <common/base64.h>
Frédéric Lécaillea41d5312018-01-29 12:05:07 +010027#include <common/cfgparse.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020028#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020029#include <common/compat.h>
30#include <common/config.h>
Willy Tarreaua4cd1f52006-12-16 19:57:26 +010031#include <common/debug.h>
Willy Tarreauafba57a2018-12-11 13:44:24 +010032#include <common/h1.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020033#include <common/memory.h>
34#include <common/mini-clist.h>
35#include <common/standard.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020036#include <common/ticks.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020037#include <common/time.h>
38#include <common/uri_auth.h>
39#include <common/version.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020040
41#include <types/capture.h>
Willy Tarreau12207b32016-11-22 19:48:51 +010042#include <types/cli.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020043#include <types/filters.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020044#include <types/global.h>
William Lallemand71bd11a2017-11-20 19:13:14 +010045#include <types/cache.h>
William Lallemand9ed62032016-11-21 17:49:11 +010046#include <types/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020047
Willy Tarreau8797c062007-05-07 00:55:35 +020048#include <proto/acl.h>
Thierry FOURNIER322a1242015-08-19 09:07:47 +020049#include <proto/action.h>
Willy Tarreau61612d42012-04-19 18:42:05 +020050#include <proto/arg.h>
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +010051#include <proto/auth.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020052#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020053#include <proto/channel.h>
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010054#include <proto/checks.h>
Willy Tarreau12207b32016-11-22 19:48:51 +010055#include <proto/cli.h>
William Lallemand82fe75c2012-10-23 10:25:10 +020056#include <proto/compression.h>
William Lallemand9ed62032016-11-21 17:49:11 +010057#include <proto/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020058#include <proto/fd.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020059#include <proto/filters.h>
Willy Tarreau03fa5df2010-05-24 21:02:37 +020060#include <proto/frontend.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020061#include <proto/log.h>
Willy Tarreau58f10d72006-12-04 02:26:12 +010062#include <proto/hdr_idx.h>
Patrick Hemmere3faf022018-08-22 10:02:00 -040063#include <proto/hlua.h>
Thierry FOURNIERed66c292013-11-28 11:05:19 +010064#include <proto/pattern.h>
Willy Tarreaub6866442008-07-14 23:54:42 +020065#include <proto/proto_tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020066#include <proto/proto_http.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010067#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020068#include <proto/queue.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020069#include <proto/sample.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010070#include <proto/server.h>
Olivier Houchard985f1392018-11-30 17:31:52 +010071#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020072#include <proto/stream.h>
Willy Tarreaucff64112008-11-03 06:26:53 +010073#include <proto/stream_interface.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020074#include <proto/task.h>
Baptiste Assmannfabcbe02014-04-24 22:16:59 +020075#include <proto/pattern.h>
Thierry FOURNIER4834bc72015-06-06 19:29:07 +020076#include <proto/vars.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020077
Willy Tarreau2d3d94c2008-11-30 20:20:08 +010078/* This function handles a server error at the stream interface level. The
79 * stream interface is assumed to be already in a closed state. An optional
Willy Tarreau2019f952017-03-14 11:07:31 +010080 * message is copied into the input buffer.
Willy Tarreau2d3d94c2008-11-30 20:20:08 +010081 * The error flags are set to the values in arguments. Any pending request
Willy Tarreau6f0aa472009-03-08 20:33:29 +010082 * in this buffer will be lost.
Willy Tarreaubaaee002006-06-26 02:48:02 +020083 */
Willy Tarreau87b09662015-04-03 00:22:06 +020084static void http_server_error(struct stream *s, struct stream_interface *si,
Willy Tarreau83061a82018-07-13 11:56:34 +020085 int err, int finst, const struct buffer *msg)
Willy Tarreaubaaee002006-06-26 02:48:02 +020086{
Christopher Faulet9768c262018-10-22 09:34:31 +020087 if (IS_HTX_STRM(s))
88 return htx_server_error(s, si, err, finst, msg);
89
Willy Tarreau2019f952017-03-14 11:07:31 +010090 FLT_STRM_CB(s, flt_http_reply(s, s->txn->status, msg));
Willy Tarreau2bb4a962014-11-28 11:11:05 +010091 channel_auto_read(si_oc(si));
92 channel_abort(si_oc(si));
93 channel_auto_close(si_oc(si));
94 channel_erase(si_oc(si));
95 channel_auto_close(si_ic(si));
96 channel_auto_read(si_ic(si));
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +020097 if (msg)
Willy Tarreau843b7cb2018-07-13 10:54:26 +020098 co_inject(si_ic(si), msg->area, msg->data);
Willy Tarreaue7dff022015-04-03 01:14:29 +020099 if (!(s->flags & SF_ERR_MASK))
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +0200100 s->flags |= err;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200101 if (!(s->flags & SF_FINST_MASK))
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +0200102 s->flags |= finst;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200103}
104
Willy Tarreau87b09662015-04-03 00:22:06 +0200105/* This function returns the appropriate error location for the given stream
Willy Tarreau80587432006-12-24 17:47:20 +0100106 * and message.
107 */
108
Willy Tarreau83061a82018-07-13 11:56:34 +0200109struct buffer *http_error_message(struct stream *s)
Willy Tarreau80587432006-12-24 17:47:20 +0100110{
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +0200111 const int msgnum = http_get_status_idx(s->txn->status);
112
Christopher Fauleta7b677c2018-11-29 16:48:49 +0100113 if (IS_HTX_STRM(s))
114 return htx_error_message(s);
115
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200116 if (s->be->errmsg[msgnum].area)
Willy Tarreaue2e27a52007-04-01 00:01:37 +0200117 return &s->be->errmsg[msgnum];
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200118 else if (strm_fe(s)->errmsg[msgnum].area)
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200119 return &strm_fe(s)->errmsg[msgnum];
Willy Tarreau80587432006-12-24 17:47:20 +0100120 else
121 return &http_err_chunks[msgnum];
122}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200123
Christopher Fauleta94e5a52015-12-09 15:55:06 +0100124void
Willy Tarreau83061a82018-07-13 11:56:34 +0200125http_reply_and_close(struct stream *s, short status, struct buffer *msg)
Christopher Fauleta94e5a52015-12-09 15:55:06 +0100126{
Christopher Faulet9768c262018-10-22 09:34:31 +0200127 if (IS_HTX_STRM(s))
128 return htx_reply_and_close(s, status, msg);
129
Christopher Fauletd7c91962015-04-30 11:48:27 +0200130 s->txn->flags &= ~TX_WAIT_NEXT_RQ;
Christopher Faulet3e344292015-11-24 16:24:13 +0100131 FLT_STRM_CB(s, flt_http_reply(s, status, msg));
Willy Tarreau14bfe9a2018-12-19 15:19:27 +0100132 si_retnclose(&s->si[0], msg);
Christopher Fauleta94e5a52015-12-09 15:55:06 +0100133}
134
Willy Tarreau21d2af32008-02-14 20:25:24 +0100135/* Parse the URI from the given transaction (which is assumed to be in request
136 * phase) and look for the "/" beginning the PATH. If not found, return NULL.
137 * It is returned otherwise.
138 */
Willy Tarreau6b952c82018-09-10 17:45:34 +0200139char *http_txn_get_path(const struct http_txn *txn)
Willy Tarreau21d2af32008-02-14 20:25:24 +0100140{
Willy Tarreau6b952c82018-09-10 17:45:34 +0200141 struct ist ret;
Willy Tarreau21d2af32008-02-14 20:25:24 +0100142
Willy Tarreau9d9ccdb2018-10-28 20:13:12 +0100143 if (!txn->req.chn->buf.size)
144 return NULL;
145
Willy Tarreau6b952c82018-09-10 17:45:34 +0200146 ret = http_get_path(ist2(ci_head(txn->req.chn) + txn->req.sl.rq.u, txn->req.sl.rq.u_l));
William Lallemand65ad6e12014-01-31 15:08:02 +0100147
Willy Tarreau6b952c82018-09-10 17:45:34 +0200148 return ret.ptr;
William Lallemand65ad6e12014-01-31 15:08:02 +0100149}
150
Willy Tarreau71241ab2012-12-27 11:30:54 +0100151/* Returns a 302 for a redirectable request that reaches a server working in
152 * in redirect mode. This may only be called just after the stream interface
153 * has moved to SI_ST_ASS. Unprocessable requests are left unchanged and will
154 * follow normal proxy processing. NOTE: this function is designed to support
155 * being called once data are scheduled for forwarding.
Willy Tarreauefb453c2008-10-26 20:49:47 +0100156 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200157void http_perform_server_redirect(struct stream *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100158{
159 struct http_txn *txn;
Willy Tarreau827aee92011-03-10 16:55:02 +0100160 struct server *srv;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100161 char *path;
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200162 int len, rewind;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100163
Christopher Fauletfefc73d2018-10-24 21:18:04 +0200164 if (IS_HTX_STRM(s))
165 return htx_perform_server_redirect(s, si);
166
Willy Tarreauefb453c2008-10-26 20:49:47 +0100167 /* 1: create the response header */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200168 trash.data = strlen(HTTP_302);
169 memcpy(trash.area, HTTP_302, trash.data);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100170
Willy Tarreaub05e48a2018-09-20 11:12:58 +0200171 srv = __objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100172
Willy Tarreauefb453c2008-10-26 20:49:47 +0100173 /* 2: add the server's prefix */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200174 if (trash.data + srv->rdr_len > trash.size)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100175 return;
176
Willy Tarreaudcb75c42010-01-10 00:24:22 +0100177 /* special prefix "/" means don't change URL */
Willy Tarreau827aee92011-03-10 16:55:02 +0100178 if (srv->rdr_len != 1 || *srv->rdr_pfx != '/') {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200179 memcpy(trash.area + trash.data, srv->rdr_pfx, srv->rdr_len);
180 trash.data += srv->rdr_len;
Willy Tarreaudcb75c42010-01-10 00:24:22 +0100181 }
Willy Tarreauefb453c2008-10-26 20:49:47 +0100182
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200183 /* 3: add the request URI. Since it was already forwarded, we need
184 * to temporarily rewind the buffer.
185 */
Willy Tarreaueee5b512015-04-03 23:46:31 +0200186 txn = s->txn;
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200187 c_rew(&s->req, rewind = http_hdr_rewind(&txn->req));
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200188
Willy Tarreau6b952c82018-09-10 17:45:34 +0200189 path = http_txn_get_path(txn);
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200190 len = b_dist(&s->req.buf, path, c_ptr(&s->req, txn->req.sl.rq.u + txn->req.sl.rq.u_l));
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200191
Willy Tarreaubcbd3932018-06-06 07:13:22 +0200192 c_adv(&s->req, rewind);
Willy Tarreaucde18fc2012-05-30 07:59:54 +0200193
Willy Tarreauefb453c2008-10-26 20:49:47 +0100194 if (!path)
195 return;
196
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200197 if (trash.data + len > trash.size - 4) /* 4 for CRLF-CRLF */
Willy Tarreauefb453c2008-10-26 20:49:47 +0100198 return;
199
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200200 memcpy(trash.area + trash.data, path, len);
201 trash.data += len;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100202
203 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200204 memcpy(trash.area + trash.data,
205 "\r\nProxy-Connection: close\r\n\r\n", 29);
206 trash.data += 29;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100207 } else {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200208 memcpy(trash.area + trash.data,
209 "\r\nConnection: close\r\n\r\n", 23);
210 trash.data += 23;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100211 }
Willy Tarreauefb453c2008-10-26 20:49:47 +0100212
213 /* prepare to return without error. */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200214 si_shutr(si);
215 si_shutw(si);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100216 si->err_type = SI_ET_NONE;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100217 si->state = SI_ST_CLO;
218
219 /* send the message */
Willy Tarreau2019f952017-03-14 11:07:31 +0100220 txn->status = 302;
221 http_server_error(s, si, SF_ERR_LOCAL, SF_FINST_C, &trash);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100222
223 /* FIXME: we should increase a counter of redirects per server and per backend. */
Willy Tarreau4521ba62013-01-24 01:25:25 +0100224 srv_inc_sess_ctr(srv);
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -0500225 srv_set_sess_last(srv);
Willy Tarreauefb453c2008-10-26 20:49:47 +0100226}
227
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100228/* Return the error message corresponding to si->err_type. It is assumed
Willy Tarreauefb453c2008-10-26 20:49:47 +0100229 * that the server side is closed. Note that err_type is actually a
230 * bitmask, where almost only aborts may be cumulated with other
231 * values. We consider that aborted operations are more important
232 * than timeouts or errors due to the fact that nobody else in the
233 * logs might explain incomplete retries. All others should avoid
234 * being cumulated. It should normally not be possible to have multiple
235 * aborts at once, but just in case, the first one in sequence is reported.
Willy Tarreau6b726ad2013-12-15 19:31:37 +0100236 * Note that connection errors appearing on the second request of a keep-alive
237 * connection are not reported since this allows the client to retry.
Willy Tarreauefb453c2008-10-26 20:49:47 +0100238 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200239void http_return_srv_error(struct stream *s, struct stream_interface *si)
Willy Tarreauefb453c2008-10-26 20:49:47 +0100240{
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100241 int err_type = si->err_type;
Willy Tarreauefb453c2008-10-26 20:49:47 +0100242
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +0200243 /* set s->txn->status for http_error_message(s) */
244 s->txn->status = 503;
245
Willy Tarreauefb453c2008-10-26 20:49:47 +0100246 if (err_type & SI_ET_QUEUE_ABRT)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200247 http_server_error(s, si, SF_ERR_CLICL, SF_FINST_Q,
Willy Tarreau2019f952017-03-14 11:07:31 +0100248 http_error_message(s));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100249 else if (err_type & SI_ET_CONN_ABRT)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200250 http_server_error(s, si, SF_ERR_CLICL, SF_FINST_C,
Willy Tarreau2019f952017-03-14 11:07:31 +0100251 (s->txn->flags & TX_NOT_FIRST) ? NULL :
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +0200252 http_error_message(s));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100253 else if (err_type & SI_ET_QUEUE_TO)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200254 http_server_error(s, si, SF_ERR_SRVTO, SF_FINST_Q,
Willy Tarreau2019f952017-03-14 11:07:31 +0100255 http_error_message(s));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100256 else if (err_type & SI_ET_QUEUE_ERR)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200257 http_server_error(s, si, SF_ERR_SRVCL, SF_FINST_Q,
Willy Tarreau2019f952017-03-14 11:07:31 +0100258 http_error_message(s));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100259 else if (err_type & SI_ET_CONN_TO)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200260 http_server_error(s, si, SF_ERR_SRVTO, SF_FINST_C,
Willy Tarreau2019f952017-03-14 11:07:31 +0100261 (s->txn->flags & TX_NOT_FIRST) ? NULL :
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +0200262 http_error_message(s));
Willy Tarreauefb453c2008-10-26 20:49:47 +0100263 else if (err_type & SI_ET_CONN_ERR)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200264 http_server_error(s, si, SF_ERR_SRVCL, SF_FINST_C,
Willy Tarreau2019f952017-03-14 11:07:31 +0100265 (s->flags & SF_SRV_REUSED) ? NULL :
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +0200266 http_error_message(s));
Willy Tarreau2d400bb2012-05-14 12:11:47 +0200267 else if (err_type & SI_ET_CONN_RES)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200268 http_server_error(s, si, SF_ERR_RESOURCE, SF_FINST_C,
Willy Tarreau2019f952017-03-14 11:07:31 +0100269 (s->txn->flags & TX_NOT_FIRST) ? NULL :
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +0200270 http_error_message(s));
271 else { /* SI_ET_CONN_OTHER and others */
272 s->txn->status = 500;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200273 http_server_error(s, si, SF_ERR_INTERNAL, SF_FINST_C,
Willy Tarreau2019f952017-03-14 11:07:31 +0100274 http_error_message(s));
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +0200275 }
Willy Tarreauefb453c2008-10-26 20:49:47 +0100276}
277
Willy Tarreau42250582007-04-01 01:30:43 +0200278extern const char sess_term_cond[8];
279extern const char sess_fin_state[8];
280extern const char *monthname[12];
Willy Tarreau8ceae722018-11-26 11:58:30 +0100281
282DECLARE_POOL(pool_head_http_txn, "http_txn", sizeof(struct http_txn));
283DECLARE_POOL(pool_head_uniqueid, "uniqueid", UNIQUEID_LEN);
284
285struct pool_head *pool_head_requri = NULL;
Willy Tarreaubafbe012017-11-24 17:34:44 +0100286struct pool_head *pool_head_capture = NULL;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100287
Willy Tarreau117f59e2007-03-04 18:17:17 +0100288/*
289 * Capture headers from message starting at <som> according to header list
Willy Tarreau54da8db2014-06-13 16:11:48 +0200290 * <cap_hdr>, and fill the <cap> pointers appropriately.
Willy Tarreau117f59e2007-03-04 18:17:17 +0100291 */
Christopher Faulet10079f52018-10-03 15:17:28 +0200292void http_capture_headers(char *som, struct hdr_idx *idx,
293 char **cap, struct cap_hdr *cap_hdr)
Willy Tarreau117f59e2007-03-04 18:17:17 +0100294{
295 char *eol, *sol, *col, *sov;
296 int cur_idx;
297 struct cap_hdr *h;
298 int len;
299
300 sol = som + hdr_idx_first_pos(idx);
301 cur_idx = hdr_idx_first_idx(idx);
302
303 while (cur_idx) {
304 eol = sol + idx->v[cur_idx].len;
305
306 col = sol;
307 while (col < eol && *col != ':')
308 col++;
309
310 sov = col + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +0100311 while (sov < eol && HTTP_IS_LWS(*sov))
Willy Tarreau117f59e2007-03-04 18:17:17 +0100312 sov++;
313
314 for (h = cap_hdr; h; h = h->next) {
Willy Tarreau54da8db2014-06-13 16:11:48 +0200315 if (h->namelen && (h->namelen == col - sol) &&
Willy Tarreau117f59e2007-03-04 18:17:17 +0100316 (strncasecmp(sol, h->name, h->namelen) == 0)) {
317 if (cap[h->index] == NULL)
318 cap[h->index] =
Willy Tarreaubafbe012017-11-24 17:34:44 +0100319 pool_alloc(h->pool);
Willy Tarreau117f59e2007-03-04 18:17:17 +0100320
321 if (cap[h->index] == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100322 ha_alert("HTTP capture : out of memory.\n");
Willy Tarreau117f59e2007-03-04 18:17:17 +0100323 continue;
324 }
325
326 len = eol - sov;
327 if (len > h->len)
328 len = h->len;
329
330 memcpy(cap[h->index], sov, len);
331 cap[h->index][len]=0;
332 }
333 }
334 sol = eol + idx->v[cur_idx].cr + 1;
335 cur_idx = idx->v[cur_idx].next;
336 }
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +0100337}
338
Willy Tarreau2492d5b2009-07-11 00:06:00 +0200339/* convert an HTTP/0.9 request into an HTTP/1.0 request. Returns 1 if the
340 * conversion succeeded, 0 in case of error. If the request was already 1.X,
341 * nothing is done and 1 is returned.
342 */
Willy Tarreau79e57332018-10-02 16:01:16 +0200343int http_upgrade_v09_to_v10(struct http_txn *txn)
Willy Tarreau2492d5b2009-07-11 00:06:00 +0200344{
345 int delta;
346 char *cur_end;
Willy Tarreau418bfcc2012-03-09 13:56:20 +0100347 struct http_msg *msg = &txn->req;
Willy Tarreau2492d5b2009-07-11 00:06:00 +0200348
349 if (msg->sl.rq.v_l != 0)
350 return 1;
351
Apollon Oikonomopoulos25a15222014-04-06 02:46:00 +0300352 /* RFC 1945 allows only GET for HTTP/0.9 requests */
353 if (txn->meth != HTTP_METH_GET)
354 return 0;
355
Willy Tarreauf37954d2018-06-15 18:31:02 +0200356 cur_end = ci_head(msg->chn) + msg->sl.rq.l;
Willy Tarreau2492d5b2009-07-11 00:06:00 +0200357
358 if (msg->sl.rq.u_l == 0) {
Apollon Oikonomopoulos25a15222014-04-06 02:46:00 +0300359 /* HTTP/0.9 requests *must* have a request URI, per RFC 1945 */
360 return 0;
Willy Tarreau2492d5b2009-07-11 00:06:00 +0200361 }
362 /* add HTTP version */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200363 delta = b_rep_blk(&msg->chn->buf, cur_end, cur_end, " HTTP/1.0\r\n", 11);
Willy Tarreaufa355d42009-11-29 18:12:29 +0100364 http_msg_move_end(msg, delta);
Willy Tarreau2492d5b2009-07-11 00:06:00 +0200365 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +0200366 cur_end = (char *)http_parse_reqline(msg,
Willy Tarreau2492d5b2009-07-11 00:06:00 +0200367 HTTP_MSG_RQMETH,
Willy Tarreauf37954d2018-06-15 18:31:02 +0200368 ci_head(msg->chn), cur_end + 1,
Willy Tarreau2492d5b2009-07-11 00:06:00 +0200369 NULL, NULL);
370 if (unlikely(!cur_end))
371 return 0;
372
373 /* we have a full HTTP/1.0 request now and we know that
374 * we have either a CR or an LF at <ptr>.
375 */
376 hdr_idx_set_start(&txn->hdr_idx, msg->sl.rq.l, *cur_end == '\r');
377 return 1;
378}
379
Willy Tarreaubbf0b372010-01-18 16:54:40 +0100380/* Parse the Connection: header of an HTTP request, looking for both "close"
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100381 * and "keep-alive" values. If we already know that some headers may safely
382 * be removed, we remove them now. The <to_del> flags are used for that :
Willy Tarreaubbf0b372010-01-18 16:54:40 +0100383 * - bit 0 means remove "close" headers (in HTTP/1.0 requests/responses)
384 * - bit 1 means remove "keep-alive" headers (in HTTP/1.1 reqs/resp to 1.1).
Willy Tarreau50fc7772012-11-11 22:19:57 +0100385 * Presence of the "Upgrade" token is also checked and reported.
Willy Tarreaubbf0b372010-01-18 16:54:40 +0100386 * The TX_HDR_CONN_* flags are adjusted in txn->flags depending on what was
387 * found, and TX_CON_*_SET is adjusted depending on what is left so only
388 * harmless combinations may be removed. Do not call that after changes have
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100389 * been processed.
Willy Tarreau5b154472009-12-21 20:11:07 +0100390 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100391void http_parse_connection_header(struct http_txn *txn, struct http_msg *msg, int to_del)
Willy Tarreau5b154472009-12-21 20:11:07 +0100392{
Willy Tarreau5b154472009-12-21 20:11:07 +0100393 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100394 const char *hdr_val = "Connection";
395 int hdr_len = 10;
Willy Tarreau5b154472009-12-21 20:11:07 +0100396
Willy Tarreaubbf0b372010-01-18 16:54:40 +0100397 if (txn->flags & TX_HDR_CONN_PRS)
Willy Tarreau5b154472009-12-21 20:11:07 +0100398 return;
399
Willy Tarreau88d349d2010-01-25 12:15:43 +0100400 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
401 hdr_val = "Proxy-Connection";
402 hdr_len = 16;
403 }
404
Willy Tarreau5b154472009-12-21 20:11:07 +0100405 ctx.idx = 0;
Willy Tarreaubbf0b372010-01-18 16:54:40 +0100406 txn->flags &= ~(TX_CON_KAL_SET|TX_CON_CLO_SET);
Willy Tarreauf37954d2018-06-15 18:31:02 +0200407 while (http_find_header2(hdr_val, hdr_len, ci_head(msg->chn), &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +0100408 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
409 txn->flags |= TX_HDR_CONN_KAL;
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100410 if (to_del & 2)
411 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreaubbf0b372010-01-18 16:54:40 +0100412 else
413 txn->flags |= TX_CON_KAL_SET;
414 }
415 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
416 txn->flags |= TX_HDR_CONN_CLO;
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100417 if (to_del & 1)
418 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreaubbf0b372010-01-18 16:54:40 +0100419 else
420 txn->flags |= TX_CON_CLO_SET;
421 }
Willy Tarreau50fc7772012-11-11 22:19:57 +0100422 else if (ctx.vlen >= 7 && word_match(ctx.line + ctx.val, ctx.vlen, "upgrade", 7)) {
423 txn->flags |= TX_HDR_CONN_UPG;
424 }
Willy Tarreau5b154472009-12-21 20:11:07 +0100425 }
426
Willy Tarreaubbf0b372010-01-18 16:54:40 +0100427 txn->flags |= TX_HDR_CONN_PRS;
428 return;
429}
Willy Tarreau5b154472009-12-21 20:11:07 +0100430
Willy Tarreaubbf0b372010-01-18 16:54:40 +0100431/* Apply desired changes on the Connection: header. Values may be removed and/or
432 * added depending on the <wanted> flags, which are exclusively composed of
433 * TX_CON_CLO_SET and TX_CON_KAL_SET, depending on what flags are desired. The
434 * TX_CON_*_SET flags are adjusted in txn->flags depending on what is left.
435 */
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100436void http_change_connection_header(struct http_txn *txn, struct http_msg *msg, int wanted)
Willy Tarreaubbf0b372010-01-18 16:54:40 +0100437{
438 struct hdr_ctx ctx;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100439 const char *hdr_val = "Connection";
440 int hdr_len = 10;
Willy Tarreaubbf0b372010-01-18 16:54:40 +0100441
442 ctx.idx = 0;
443
Willy Tarreau88d349d2010-01-25 12:15:43 +0100444
445 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
446 hdr_val = "Proxy-Connection";
447 hdr_len = 16;
448 }
449
Willy Tarreaubbf0b372010-01-18 16:54:40 +0100450 txn->flags &= ~(TX_CON_CLO_SET | TX_CON_KAL_SET);
Willy Tarreauf37954d2018-06-15 18:31:02 +0200451 while (http_find_header2(hdr_val, hdr_len, ci_head(msg->chn), &txn->hdr_idx, &ctx)) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +0100452 if (ctx.vlen >= 10 && word_match(ctx.line + ctx.val, ctx.vlen, "keep-alive", 10)) {
453 if (wanted & TX_CON_KAL_SET)
454 txn->flags |= TX_CON_KAL_SET;
455 else
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100456 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreau5b154472009-12-21 20:11:07 +0100457 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +0100458 else if (ctx.vlen >= 5 && word_match(ctx.line + ctx.val, ctx.vlen, "close", 5)) {
459 if (wanted & TX_CON_CLO_SET)
460 txn->flags |= TX_CON_CLO_SET;
461 else
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100462 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Willy Tarreau0dfdf192010-01-05 11:33:11 +0100463 }
Willy Tarreau5b154472009-12-21 20:11:07 +0100464 }
Willy Tarreaubbf0b372010-01-18 16:54:40 +0100465
466 if (wanted == (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
467 return;
468
469 if ((wanted & TX_CON_CLO_SET) && !(txn->flags & TX_CON_CLO_SET)) {
470 txn->flags |= TX_CON_CLO_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100471 hdr_val = "Connection: close";
472 hdr_len = 17;
473 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
474 hdr_val = "Proxy-Connection: close";
475 hdr_len = 23;
476 }
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100477 http_header_add_tail2(msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +0100478 }
479
480 if ((wanted & TX_CON_KAL_SET) && !(txn->flags & TX_CON_KAL_SET)) {
481 txn->flags |= TX_CON_KAL_SET;
Willy Tarreau88d349d2010-01-25 12:15:43 +0100482 hdr_val = "Connection: keep-alive";
483 hdr_len = 22;
484 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
485 hdr_val = "Proxy-Connection: keep-alive";
486 hdr_len = 28;
487 }
Willy Tarreau6acf7c92012-03-09 13:30:45 +0100488 http_header_add_tail2(msg, &txn->hdr_idx, hdr_val, hdr_len);
Willy Tarreaubbf0b372010-01-18 16:54:40 +0100489 }
490 return;
Willy Tarreau5b154472009-12-21 20:11:07 +0100491}
492
Willy Tarreau87b09662015-04-03 00:22:06 +0200493void http_adjust_conn_mode(struct stream *s, struct http_txn *txn, struct http_msg *msg)
Willy Tarreau4e21ff92014-09-30 18:44:22 +0200494{
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200495 struct proxy *fe = strm_fe(s);
Willy Tarreau4e21ff92014-09-30 18:44:22 +0200496 int tmp = TX_CON_WANT_KAL;
497
Christopher Fauletf2824e62018-10-01 12:12:37 +0200498 if (IS_HTX_STRM(s))
Christopher Faulet0f226952018-10-22 09:29:56 +0200499 return htx_adjust_conn_mode(s, txn);
Christopher Fauletf2824e62018-10-01 12:12:37 +0200500
Christopher Faulet315b39c2018-09-21 16:26:19 +0200501 if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN ||
502 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN)
503 tmp = TX_CON_WANT_TUN;
Willy Tarreau4e21ff92014-09-30 18:44:22 +0200504
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200505 if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL ||
Christopher Faulet315b39c2018-09-21 16:26:19 +0200506 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_SCL)
Willy Tarreau4e21ff92014-09-30 18:44:22 +0200507 tmp = TX_CON_WANT_SCL;
Willy Tarreau4e21ff92014-09-30 18:44:22 +0200508
Christopher Faulet315b39c2018-09-21 16:26:19 +0200509 if ((fe->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO ||
510 (s->be->options & PR_O_HTTP_MODE) == PR_O_HTTP_CLO)
Willy Tarreau4e21ff92014-09-30 18:44:22 +0200511 tmp = TX_CON_WANT_CLO;
512
513 if ((txn->flags & TX_CON_WANT_MSK) < tmp)
514 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | tmp;
515
516 if (!(txn->flags & TX_HDR_CONN_PRS) &&
517 (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) {
518 /* parse the Connection header and possibly clean it */
519 int to_del = 0;
520 if ((msg->flags & HTTP_MSGF_VER_11) ||
521 ((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200522 !((fe->options2|s->be->options2) & PR_O2_FAKE_KA)))
Willy Tarreau4e21ff92014-09-30 18:44:22 +0200523 to_del |= 2; /* remove "keep-alive" */
524 if (!(msg->flags & HTTP_MSGF_VER_11))
525 to_del |= 1; /* remove "close" */
526 http_parse_connection_header(txn, msg, to_del);
527 }
528
529 /* check if client or config asks for explicit close in KAL/SCL */
530 if (((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
531 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) &&
532 ((txn->flags & TX_HDR_CONN_CLO) || /* "connection: close" */
533 (!(msg->flags & HTTP_MSGF_VER_11) && !(txn->flags & TX_HDR_CONN_KAL)) || /* no "connection: k-a" in 1.0 */
534 !(msg->flags & HTTP_MSGF_XFER_LEN) || /* no length known => close */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200535 fe->state == PR_STSTOPPED)) /* frontend is stopping */
Willy Tarreau4e21ff92014-09-30 18:44:22 +0200536 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
537}
William Lallemand82fe75c2012-10-23 10:25:10 +0200538
Willy Tarreaud787e662009-07-07 10:14:51 +0200539/* This stream analyser waits for a complete HTTP request. It returns 1 if the
540 * processing can continue on next analysers, or zero if it either needs more
541 * data or wants to immediately abort the request (eg: timeout, error, ...). It
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100542 * is tied to AN_REQ_WAIT_HTTP and may may remove itself from s->req.analysers
Willy Tarreaud787e662009-07-07 10:14:51 +0200543 * when it has nothing left to do, and may remove any analyser when it wants to
544 * abort.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100545 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200546int http_wait_for_request(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100547{
Willy Tarreau59234e92008-11-30 23:51:27 +0100548 /*
549 * We will parse the partial (or complete) lines.
550 * We will check the request syntax, and also join multi-line
551 * headers. An index of all the lines will be elaborated while
552 * parsing.
553 *
554 * For the parsing, we use a 28 states FSM.
555 *
556 * Here is the information we currently have :
Willy Tarreauf37954d2018-06-15 18:31:02 +0200557 * ci_head(req) = beginning of request
558 * ci_head(req) + msg->eoh = end of processed headers / start of current one
559 * ci_tail(req) = end of input data
560 * msg->eol = end of current header or line (LF or CRLF)
561 * msg->next = first non-visited byte
Willy Tarreaud787e662009-07-07 10:14:51 +0200562 *
563 * At end of parsing, we may perform a capture of the error (if any), and
Willy Tarreaue7dff022015-04-03 01:14:29 +0200564 * we will set a few fields (txn->meth, sn->flags/SF_REDIRECTABLE).
Willy Tarreaud787e662009-07-07 10:14:51 +0200565 * We also check for monitor-uri, logging, HTTP/0.9 to 1.0 conversion, and
566 * finally headers capture.
Willy Tarreau59234e92008-11-30 23:51:27 +0100567 */
Willy Tarreau976f1ee2006-12-17 10:06:03 +0100568
Willy Tarreau59234e92008-11-30 23:51:27 +0100569 int cur_idx;
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200570 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +0200571 struct http_txn *txn = s->txn;
Willy Tarreau59234e92008-11-30 23:51:27 +0100572 struct http_msg *msg = &txn->req;
Willy Tarreau32b47f42009-10-18 20:55:02 +0200573 struct hdr_ctx ctx;
Willy Tarreau976f1ee2006-12-17 10:06:03 +0100574
Christopher Faulete0768eb2018-10-03 16:38:02 +0200575 if (IS_HTX_STRM(s))
576 return htx_wait_for_request(s, req, an_bit);
577
Christopher Faulet45073512018-07-20 10:16:29 +0200578 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n",
Willy Tarreau6bf17362009-02-24 10:48:35 +0100579 now_ms, __FUNCTION__,
580 s,
581 req,
582 req->rex, req->wex,
583 req->flags,
Christopher Faulet45073512018-07-20 10:16:29 +0200584 ci_data(req),
Willy Tarreau6bf17362009-02-24 10:48:35 +0100585 req->analysers);
586
Willy Tarreau52a0c602009-08-16 22:45:38 +0200587 /* we're speaking HTTP here, so let's speak HTTP to the client */
588 s->srv_error = http_return_srv_error;
589
Rian McGuire89fcb7d2018-04-24 11:19:21 -0300590 /* If there is data available for analysis, log the end of the idle time. */
Willy Tarreaud760eec2018-07-10 09:50:25 +0200591 if (c_data(req) && s->logs.t_idle == -1)
Rian McGuire89fcb7d2018-04-24 11:19:21 -0300592 s->logs.t_idle = tv_ms_elapsed(&s->logs.tv_accept, &now) - s->logs.t_handshake;
593
Willy Tarreau83e3af02009-12-28 17:39:57 +0100594 /* There's a protected area at the end of the buffer for rewriting
595 * purposes. We don't want to start to parse the request if the
596 * protected area is affected, because we may have to move processed
597 * data later, which is much more complicated.
598 */
Willy Tarreaud760eec2018-07-10 09:50:25 +0200599 if (c_data(req) && msg->msg_state < HTTP_MSG_ERROR) {
Willy Tarreau379357a2013-06-08 12:55:46 +0200600 if (txn->flags & TX_NOT_FIRST) {
Willy Tarreauba0902e2015-01-13 14:39:16 +0100601 if (unlikely(!channel_is_rewritable(req))) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200602 if (req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT))
Willy Tarreau64648412010-03-05 10:41:54 +0100603 goto failed_keep_alive;
Willy Tarreau2ab6eb12010-01-02 22:04:45 +0100604 /* some data has still not left the buffer, wake us once that's done */
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200605 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200606 req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreaud7ad9f52013-12-31 17:26:25 +0100607 req->flags |= CF_WAKE_WRITE;
Willy Tarreau2ab6eb12010-01-02 22:04:45 +0100608 return 0;
609 }
Willy Tarreau188e2302018-06-15 11:11:53 +0200610 if (unlikely(ci_tail(req) < c_ptr(req, msg->next) ||
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200611 ci_tail(req) > b_wrap(&req->buf) - global.tune.maxrewrite))
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200612 channel_slow_realign(req, trash.area);
Willy Tarreau83e3af02009-12-28 17:39:57 +0100613 }
614
Willy Tarreauf37954d2018-06-15 18:31:02 +0200615 if (likely(msg->next < ci_data(req))) /* some unparsed data are available */
Willy Tarreaua560c212012-03-09 13:50:57 +0100616 http_msg_analyzer(msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +0100617 }
618
Willy Tarreau59234e92008-11-30 23:51:27 +0100619 /* 1: we might have to print this header in debug mode */
620 if (unlikely((global.mode & MODE_DEBUG) &&
621 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreau7d59e902014-10-21 19:36:09 +0200622 msg->msg_state >= HTTP_MSG_BODY)) {
Willy Tarreau59234e92008-11-30 23:51:27 +0100623 char *eol, *sol;
Willy Tarreau58f10d72006-12-04 02:26:12 +0100624
Willy Tarreauf37954d2018-06-15 18:31:02 +0200625 sol = ci_head(req);
Willy Tarreaue92693a2012-09-24 21:13:39 +0200626 /* this is a bit complex : in case of error on the request line,
627 * we know that rq.l is still zero, so we display only the part
628 * up to the end of the line (truncated by debug_hdr).
629 */
Willy Tarreauf37954d2018-06-15 18:31:02 +0200630 eol = sol + (msg->sl.rq.l ? msg->sl.rq.l : ci_data(req));
Willy Tarreau59234e92008-11-30 23:51:27 +0100631 debug_hdr("clireq", s, sol, eol);
Willy Tarreau45e73e32006-12-17 00:05:15 +0100632
Willy Tarreau59234e92008-11-30 23:51:27 +0100633 sol += hdr_idx_first_pos(&txn->hdr_idx);
634 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +0100635
Willy Tarreau59234e92008-11-30 23:51:27 +0100636 while (cur_idx) {
637 eol = sol + txn->hdr_idx.v[cur_idx].len;
638 debug_hdr("clihdr", s, sol, eol);
639 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
640 cur_idx = txn->hdr_idx.v[cur_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100641 }
Willy Tarreau59234e92008-11-30 23:51:27 +0100642 }
643
Willy Tarreau58f10d72006-12-04 02:26:12 +0100644
Willy Tarreau59234e92008-11-30 23:51:27 +0100645 /*
646 * Now we quickly check if we have found a full valid request.
647 * If not so, we check the FD and buffer states before leaving.
648 * A full request is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +0100649 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaud3c343f2010-01-16 10:26:19 +0100650 * requests are checked first. When waiting for a second request
Willy Tarreau87b09662015-04-03 00:22:06 +0200651 * on a keep-alive stream, if we encounter and error, close, t/o,
652 * we note the error in the stream flags but don't set any state.
Willy Tarreaud3c343f2010-01-16 10:26:19 +0100653 * Since the error will be noted there, it will not be counted by
Willy Tarreau87b09662015-04-03 00:22:06 +0200654 * process_stream() as a frontend error.
Willy Tarreauda7ff642010-06-23 11:44:09 +0200655 * Last, we may increase some tracked counters' http request errors on
656 * the cases that are deliberately the client's fault. For instance,
657 * a timeout or connection reset is not counted as an error. However
658 * a bad request is.
Willy Tarreau59234e92008-11-30 23:51:27 +0100659 */
Willy Tarreau58f10d72006-12-04 02:26:12 +0100660
Willy Tarreau655dce92009-11-08 13:10:58 +0100661 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +0100662 /*
Willy Tarreau59234e92008-11-30 23:51:27 +0100663 * First, let's catch bad requests.
Willy Tarreau58f10d72006-12-04 02:26:12 +0100664 */
Willy Tarreau3e1b6d12010-03-04 23:02:38 +0100665 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200666 stream_inc_http_req_ctr(s);
667 stream_inc_http_err_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200668 proxy_inc_fe_req_ctr(sess->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +0100669 goto return_bad_req;
Willy Tarreau3e1b6d12010-03-04 23:02:38 +0100670 }
Willy Tarreau58f10d72006-12-04 02:26:12 +0100671
Willy Tarreau59234e92008-11-30 23:51:27 +0100672 /* 1: Since we are in header mode, if there's no space
673 * left for headers, we won't be able to free more
Willy Tarreau87b09662015-04-03 00:22:06 +0200674 * later, so the stream will never terminate. We
Willy Tarreau59234e92008-11-30 23:51:27 +0100675 * must terminate it now.
676 */
Willy Tarreau23752332018-06-15 14:54:53 +0200677 if (unlikely(channel_full(req, global.tune.maxrewrite))) {
Willy Tarreau59234e92008-11-30 23:51:27 +0100678 /* FIXME: check if URI is set and return Status
679 * 414 Request URI too long instead.
Willy Tarreau58f10d72006-12-04 02:26:12 +0100680 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200681 stream_inc_http_req_ctr(s);
682 stream_inc_http_err_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200683 proxy_inc_fe_req_ctr(sess->fe);
Willy Tarreaufec4d892011-09-02 20:04:57 +0200684 if (msg->err_pos < 0)
Willy Tarreauf37954d2018-06-15 18:31:02 +0200685 msg->err_pos = ci_data(req);
Willy Tarreau59234e92008-11-30 23:51:27 +0100686 goto return_bad_req;
687 }
Willy Tarreau58f10d72006-12-04 02:26:12 +0100688
Willy Tarreau59234e92008-11-30 23:51:27 +0100689 /* 2: have we encountered a read error ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200690 else if (req->flags & CF_READ_ERROR) {
Willy Tarreaue7dff022015-04-03 01:14:29 +0200691 if (!(s->flags & SF_ERR_MASK))
692 s->flags |= SF_ERR_CLICL;
Willy Tarreaud3c343f2010-01-16 10:26:19 +0100693
Willy Tarreaufcffa692010-01-10 14:21:19 +0100694 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +0100695 goto failed_keep_alive;
696
Willy Tarreau0f228a02015-05-01 15:37:53 +0200697 if (sess->fe->options & PR_O_IGNORE_PRB)
698 goto failed_keep_alive;
699
Willy Tarreau59234e92008-11-30 23:51:27 +0100700 /* we cannot return any message on error */
Willy Tarreauda7ff642010-06-23 11:44:09 +0200701 if (msg->err_pos >= 0) {
Willy Tarreaufd9419d2018-09-07 18:01:03 +0200702 http_capture_bad_message(sess->fe, s, msg, msg->err_state, sess->fe);
Willy Tarreau87b09662015-04-03 00:22:06 +0200703 stream_inc_http_err_ctr(s);
Willy Tarreauda7ff642010-06-23 11:44:09 +0200704 }
705
Willy Tarreaudc979f22012-12-04 10:39:01 +0100706 txn->status = 400;
Willy Tarreau10e61cb2017-01-04 14:51:22 +0100707 msg->err_state = msg->msg_state;
Willy Tarreau59234e92008-11-30 23:51:27 +0100708 msg->msg_state = HTTP_MSG_ERROR;
Christopher Fauleta94e5a52015-12-09 15:55:06 +0100709 http_reply_and_close(s, txn->status, NULL);
Christopher Faulet0184ea72017-01-05 14:06:34 +0100710 req->analysers &= AN_REQ_FLT_END;
Willy Tarreau87b09662015-04-03 00:22:06 +0200711 stream_inc_http_req_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200712 proxy_inc_fe_req_ctr(sess->fe);
Olivier Houcharda798bf52019-03-08 18:52:00 +0100713 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200714 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100715 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200716
Willy Tarreaue7dff022015-04-03 01:14:29 +0200717 if (!(s->flags & SF_FINST_MASK))
718 s->flags |= SF_FINST_R;
Willy Tarreau59234e92008-11-30 23:51:27 +0100719 return 0;
720 }
Willy Tarreauf9839bd2008-08-27 23:57:16 +0200721
Willy Tarreau59234e92008-11-30 23:51:27 +0100722 /* 3: has the read timeout expired ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200723 else if (req->flags & CF_READ_TIMEOUT || tick_is_expired(req->analyse_exp, now_ms)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +0200724 if (!(s->flags & SF_ERR_MASK))
725 s->flags |= SF_ERR_CLITO;
Willy Tarreaud3c343f2010-01-16 10:26:19 +0100726
Willy Tarreaufcffa692010-01-10 14:21:19 +0100727 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +0100728 goto failed_keep_alive;
729
Willy Tarreau0f228a02015-05-01 15:37:53 +0200730 if (sess->fe->options & PR_O_IGNORE_PRB)
731 goto failed_keep_alive;
732
Willy Tarreau59234e92008-11-30 23:51:27 +0100733 /* read timeout : give up with an error message. */
Willy Tarreauda7ff642010-06-23 11:44:09 +0200734 if (msg->err_pos >= 0) {
Willy Tarreaufd9419d2018-09-07 18:01:03 +0200735 http_capture_bad_message(sess->fe, s, msg, msg->err_state, sess->fe);
Willy Tarreau87b09662015-04-03 00:22:06 +0200736 stream_inc_http_err_ctr(s);
Willy Tarreauda7ff642010-06-23 11:44:09 +0200737 }
Willy Tarreau59234e92008-11-30 23:51:27 +0100738 txn->status = 408;
Willy Tarreau10e61cb2017-01-04 14:51:22 +0100739 msg->err_state = msg->msg_state;
Willy Tarreau59234e92008-11-30 23:51:27 +0100740 msg->msg_state = HTTP_MSG_ERROR;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +0200741 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulet0184ea72017-01-05 14:06:34 +0100742 req->analysers &= AN_REQ_FLT_END;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200743
Willy Tarreau87b09662015-04-03 00:22:06 +0200744 stream_inc_http_req_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200745 proxy_inc_fe_req_ctr(sess->fe);
Olivier Houcharda798bf52019-03-08 18:52:00 +0100746 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200747 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100748 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200749
Willy Tarreaue7dff022015-04-03 01:14:29 +0200750 if (!(s->flags & SF_FINST_MASK))
751 s->flags |= SF_FINST_R;
Willy Tarreau59234e92008-11-30 23:51:27 +0100752 return 0;
753 }
Willy Tarreauc65a3ba2008-08-11 23:42:50 +0200754
Willy Tarreau59234e92008-11-30 23:51:27 +0100755 /* 4: have we encountered a close ? */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200756 else if (req->flags & CF_SHUTR) {
Willy Tarreaue7dff022015-04-03 01:14:29 +0200757 if (!(s->flags & SF_ERR_MASK))
758 s->flags |= SF_ERR_CLICL;
Willy Tarreaud3c343f2010-01-16 10:26:19 +0100759
Willy Tarreaufcffa692010-01-10 14:21:19 +0100760 if (txn->flags & TX_WAIT_NEXT_RQ)
Willy Tarreaub608feb2010-01-02 22:47:18 +0100761 goto failed_keep_alive;
762
Willy Tarreau0f228a02015-05-01 15:37:53 +0200763 if (sess->fe->options & PR_O_IGNORE_PRB)
764 goto failed_keep_alive;
765
Willy Tarreau4076a152009-04-02 15:18:36 +0200766 if (msg->err_pos >= 0)
Willy Tarreaufd9419d2018-09-07 18:01:03 +0200767 http_capture_bad_message(sess->fe, s, msg, msg->err_state, sess->fe);
Willy Tarreau59234e92008-11-30 23:51:27 +0100768 txn->status = 400;
Willy Tarreau10e61cb2017-01-04 14:51:22 +0100769 msg->err_state = msg->msg_state;
Willy Tarreau59234e92008-11-30 23:51:27 +0100770 msg->msg_state = HTTP_MSG_ERROR;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +0200771 http_reply_and_close(s, txn->status, http_error_message(s));
Christopher Faulet0184ea72017-01-05 14:06:34 +0100772 req->analysers &= AN_REQ_FLT_END;
Willy Tarreau87b09662015-04-03 00:22:06 +0200773 stream_inc_http_err_ctr(s);
774 stream_inc_http_req_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200775 proxy_inc_fe_req_ctr(sess->fe);
Olivier Houcharda798bf52019-03-08 18:52:00 +0100776 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200777 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +0100778 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200779
Willy Tarreaue7dff022015-04-03 01:14:29 +0200780 if (!(s->flags & SF_FINST_MASK))
781 s->flags |= SF_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +0200782 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +0100783 }
784
Willy Tarreau8263d2b2012-08-28 00:06:31 +0200785 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200786 req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100787 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau1a18b542018-12-11 16:37:42 +0100788
789 if (sess->listener->options & LI_O_NOQUICKACK && ci_data(req)) {
Willy Tarreau5e205522011-12-17 16:34:27 +0100790 /* We need more data, we have to re-enable quick-ack in case we
791 * previously disabled it, otherwise we might cause the client
792 * to delay next data.
793 */
Willy Tarreau1a18b542018-12-11 16:37:42 +0100794 conn_set_quickack(objt_conn(sess->origin), 1);
Willy Tarreau5e205522011-12-17 16:34:27 +0100795 }
Willy Tarreau1b194fe2009-03-21 21:10:04 +0100796
Willy Tarreaufcffa692010-01-10 14:21:19 +0100797 if ((msg->msg_state != HTTP_MSG_RQBEFORE) && (txn->flags & TX_WAIT_NEXT_RQ)) {
798 /* If the client starts to talk, let's fall back to
799 * request timeout processing.
800 */
801 txn->flags &= ~TX_WAIT_NEXT_RQ;
Willy Tarreaub16a5742010-01-10 14:46:16 +0100802 req->analyse_exp = TICK_ETERNITY;
Willy Tarreaufcffa692010-01-10 14:21:19 +0100803 }
804
Willy Tarreau59234e92008-11-30 23:51:27 +0100805 /* just set the request timeout once at the beginning of the request */
Willy Tarreaub16a5742010-01-10 14:46:16 +0100806 if (!tick_isset(req->analyse_exp)) {
807 if ((msg->msg_state == HTTP_MSG_RQBEFORE) &&
808 (txn->flags & TX_WAIT_NEXT_RQ) &&
809 tick_isset(s->be->timeout.httpka))
810 req->analyse_exp = tick_add(now_ms, s->be->timeout.httpka);
811 else
812 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
813 }
Willy Tarreau58f10d72006-12-04 02:26:12 +0100814
Willy Tarreau59234e92008-11-30 23:51:27 +0100815 /* we're not ready yet */
816 return 0;
Willy Tarreaub608feb2010-01-02 22:47:18 +0100817
818 failed_keep_alive:
819 /* Here we process low-level errors for keep-alive requests. In
820 * short, if the request is not the first one and it experiences
821 * a timeout, read error or shutdown, we just silently close so
822 * that the client can try again.
823 */
824 txn->status = 0;
825 msg->msg_state = HTTP_MSG_RQBEFORE;
Christopher Faulet0184ea72017-01-05 14:06:34 +0100826 req->analysers &= AN_REQ_FLT_END;
Willy Tarreaub608feb2010-01-02 22:47:18 +0100827 s->logs.logwait = 0;
Willy Tarreauabcd5142013-06-11 17:18:02 +0200828 s->logs.level = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100829 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Christopher Fauleta94e5a52015-12-09 15:55:06 +0100830 http_reply_and_close(s, txn->status, NULL);
Willy Tarreaub608feb2010-01-02 22:47:18 +0100831 return 0;
Willy Tarreau59234e92008-11-30 23:51:27 +0100832 }
Willy Tarreau58f10d72006-12-04 02:26:12 +0100833
Willy Tarreaud787e662009-07-07 10:14:51 +0200834 /* OK now we have a complete HTTP request with indexed headers. Let's
835 * complete the request parsing by setting a few fields we will need
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200836 * later. At this point, we have the last CRLF at req->buf.data + msg->eoh.
Willy Tarreaufa355d42009-11-29 18:12:29 +0100837 * If the request is in HTTP/0.9 form, the rule is still true, and eoh
Willy Tarreaua458b672012-03-05 11:17:50 +0100838 * points to the CRLF of the request line. msg->next points to the first
Willy Tarreaufa4a03c2012-03-09 21:28:54 +0100839 * byte after the last LF. msg->sov points to the first byte of data.
840 * msg->eol cannot be trusted because it may have been left uninitialized
841 * (for instance in the absence of headers).
Willy Tarreaud787e662009-07-07 10:14:51 +0200842 */
Willy Tarreau9cdde232007-05-02 20:58:19 +0200843
Willy Tarreau87b09662015-04-03 00:22:06 +0200844 stream_inc_http_req_ctr(s);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200845 proxy_inc_fe_req_ctr(sess->fe); /* one more valid request for this FE */
Willy Tarreaud9b587f2010-02-26 10:05:55 +0100846
Willy Tarreaub16a5742010-01-10 14:46:16 +0100847 if (txn->flags & TX_WAIT_NEXT_RQ) {
848 /* kill the pending keep-alive timeout */
849 txn->flags &= ~TX_WAIT_NEXT_RQ;
850 req->analyse_exp = TICK_ETERNITY;
851 }
852
853
Willy Tarreaud787e662009-07-07 10:14:51 +0200854 /* Maybe we found in invalid header name while we were configured not
855 * to block on that, so we have to capture it now.
856 */
857 if (unlikely(msg->err_pos >= 0))
Willy Tarreaufd9419d2018-09-07 18:01:03 +0200858 http_capture_bad_message(sess->fe, s, msg, msg->err_state, sess->fe);
Willy Tarreau4076a152009-04-02 15:18:36 +0200859
Willy Tarreau59234e92008-11-30 23:51:27 +0100860 /*
861 * 1: identify the method
862 */
Willy Tarreauf37954d2018-06-15 18:31:02 +0200863 txn->meth = find_http_meth(ci_head(req), msg->sl.rq.m_l);
Willy Tarreau59234e92008-11-30 23:51:27 +0100864
865 /* we can make use of server redirect on GET and HEAD */
866 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
Willy Tarreaue7dff022015-04-03 01:14:29 +0200867 s->flags |= SF_REDIRECTABLE;
Willy Tarreau91659792017-11-10 19:38:10 +0100868 else if (txn->meth == HTTP_METH_OTHER &&
Willy Tarreauf37954d2018-06-15 18:31:02 +0200869 msg->sl.rq.m_l == 3 && memcmp(ci_head(req), "PRI", 3) == 0) {
Willy Tarreau91659792017-11-10 19:38:10 +0100870 /* PRI is reserved for the HTTP/2 preface */
871 msg->err_pos = 0;
872 goto return_bad_req;
873 }
Willy Tarreaufa7e1022008-10-19 07:30:41 +0200874
Willy Tarreau59234e92008-11-30 23:51:27 +0100875 /*
876 * 2: check if the URI matches the monitor_uri.
877 * We have to do this for every request which gets in, because
878 * the monitor-uri is defined by the frontend.
879 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200880 if (unlikely((sess->fe->monitor_uri_len != 0) &&
881 (sess->fe->monitor_uri_len == msg->sl.rq.u_l) &&
Willy Tarreauf37954d2018-06-15 18:31:02 +0200882 !memcmp(ci_head(req) + msg->sl.rq.u,
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200883 sess->fe->monitor_uri,
884 sess->fe->monitor_uri_len))) {
Willy Tarreau58f10d72006-12-04 02:26:12 +0100885 /*
Willy Tarreau59234e92008-11-30 23:51:27 +0100886 * We have found the monitor URI
Willy Tarreau58f10d72006-12-04 02:26:12 +0100887 */
Willy Tarreau59234e92008-11-30 23:51:27 +0100888 struct acl_cond *cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +0100889
Willy Tarreaue7dff022015-04-03 01:14:29 +0200890 s->flags |= SF_MONITOR;
Olivier Houcharda798bf52019-03-08 18:52:00 +0100891 _HA_ATOMIC_ADD(&sess->fe->fe_counters.intercepted_req, 1);
Willy Tarreaub80c2302007-11-30 20:51:32 +0100892
Willy Tarreau59234e92008-11-30 23:51:27 +0100893 /* Check if we want to fail this monitor request or not */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200894 list_for_each_entry(cond, &sess->fe->mon_fail_cond, list) {
Willy Tarreau192252e2015-04-04 01:47:55 +0200895 int ret = acl_exec_cond(cond, sess->fe, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau11382812008-07-09 16:18:21 +0200896
Willy Tarreau59234e92008-11-30 23:51:27 +0100897 ret = acl_pass(ret);
898 if (cond->pol == ACL_COND_UNLESS)
899 ret = !ret;
Willy Tarreaub80c2302007-11-30 20:51:32 +0100900
Willy Tarreau59234e92008-11-30 23:51:27 +0100901 if (ret) {
902 /* we fail this request, let's return 503 service unavail */
903 txn->status = 503;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +0200904 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreaue7dff022015-04-03 01:14:29 +0200905 if (!(s->flags & SF_ERR_MASK))
906 s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */
Willy Tarreau59234e92008-11-30 23:51:27 +0100907 goto return_prx_cond;
Willy Tarreaub80c2302007-11-30 20:51:32 +0100908 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100909 }
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100910
Joseph Herlant5ba80252018-11-15 09:25:36 -0800911 /* nothing to fail, let's reply normally */
Willy Tarreau59234e92008-11-30 23:51:27 +0100912 txn->status = 200;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +0200913 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreaue7dff022015-04-03 01:14:29 +0200914 if (!(s->flags & SF_ERR_MASK))
915 s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */
Willy Tarreau59234e92008-11-30 23:51:27 +0100916 goto return_prx_cond;
917 }
918
919 /*
920 * 3: Maybe we have to copy the original REQURI for the logs ?
921 * Note: we cannot log anymore if the request has been
922 * classified as invalid.
923 */
924 if (unlikely(s->logs.logwait & LW_REQ)) {
925 /* we have a complete HTTP request that we must log */
Willy Tarreaubafbe012017-11-24 17:34:44 +0100926 if ((txn->uri = pool_alloc(pool_head_requri)) != NULL) {
Willy Tarreau59234e92008-11-30 23:51:27 +0100927 int urilen = msg->sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100928
Stéphane Cottin23e9e932017-05-18 08:58:41 +0200929 if (urilen >= global.tune.requri_len )
930 urilen = global.tune.requri_len - 1;
Willy Tarreauf37954d2018-06-15 18:31:02 +0200931 memcpy(txn->uri, ci_head(req), urilen);
Willy Tarreau59234e92008-11-30 23:51:27 +0100932 txn->uri[urilen] = 0;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100933
Willy Tarreaud79a3b22012-12-28 09:40:16 +0100934 if (!(s->logs.logwait &= ~(LW_REQ|LW_INIT)))
Willy Tarreau59234e92008-11-30 23:51:27 +0100935 s->do_log(s);
936 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100937 ha_alert("HTTP logging : out of memory.\n");
Willy Tarreau8d5d7f22007-01-21 19:16:41 +0100938 }
Willy Tarreau59234e92008-11-30 23:51:27 +0100939 }
Willy Tarreau06619262006-12-17 08:37:22 +0100940
Willy Tarreau91852eb2015-05-01 13:26:00 +0200941 /* RFC7230#2.6 has enforced the format of the HTTP version string to be
942 * exactly one digit "." one digit. This check may be disabled using
943 * option accept-invalid-http-request.
944 */
945 if (!(sess->fe->options2 & PR_O2_REQBUG_OK)) {
946 if (msg->sl.rq.v_l != 8) {
947 msg->err_pos = msg->sl.rq.v;
948 goto return_bad_req;
949 }
950
Willy Tarreauf37954d2018-06-15 18:31:02 +0200951 if (ci_head(req)[msg->sl.rq.v + 4] != '/' ||
952 !isdigit((unsigned char)ci_head(req)[msg->sl.rq.v + 5]) ||
953 ci_head(req)[msg->sl.rq.v + 6] != '.' ||
954 !isdigit((unsigned char)ci_head(req)[msg->sl.rq.v + 7])) {
Willy Tarreau91852eb2015-05-01 13:26:00 +0200955 msg->err_pos = msg->sl.rq.v + 4;
956 goto return_bad_req;
957 }
958 }
Willy Tarreau13317662015-05-01 13:47:08 +0200959 else {
960 /* 4. We may have to convert HTTP/0.9 requests to HTTP/1.0 */
961 if (unlikely(msg->sl.rq.v_l == 0) && !http_upgrade_v09_to_v10(txn))
962 goto return_bad_req;
963 }
Willy Tarreau91852eb2015-05-01 13:26:00 +0200964
Willy Tarreau5b154472009-12-21 20:11:07 +0100965 /* ... and check if the request is HTTP/1.1 or above */
966 if ((msg->sl.rq.v_l == 8) &&
Willy Tarreauf37954d2018-06-15 18:31:02 +0200967 ((ci_head(req)[msg->sl.rq.v + 5] > '1') ||
968 ((ci_head(req)[msg->sl.rq.v + 5] == '1') &&
969 (ci_head(req)[msg->sl.rq.v + 7] >= '1'))))
Willy Tarreaua36fc4d2012-02-17 17:39:37 +0100970 msg->flags |= HTTP_MSGF_VER_11;
Willy Tarreau5b154472009-12-21 20:11:07 +0100971
972 /* "connection" has not been parsed yet */
Willy Tarreau50fc7772012-11-11 22:19:57 +0100973 txn->flags &= ~(TX_HDR_CONN_PRS | TX_HDR_CONN_CLO | TX_HDR_CONN_KAL | TX_HDR_CONN_UPG);
Willy Tarreau5b154472009-12-21 20:11:07 +0100974
Willy Tarreau88d349d2010-01-25 12:15:43 +0100975 /* if the frontend has "option http-use-proxy-header", we'll check if
976 * we have what looks like a proxied connection instead of a connection,
977 * and in this case set the TX_USE_PX_CONN flag to use Proxy-connection.
978 * Note that this is *not* RFC-compliant, however browsers and proxies
979 * happen to do that despite being non-standard :-(
980 * We consider that a request not beginning with either '/' or '*' is
981 * a proxied connection, which covers both "scheme://location" and
982 * CONNECT ip:port.
983 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200984 if ((sess->fe->options2 & PR_O2_USE_PXHDR) &&
Willy Tarreauf37954d2018-06-15 18:31:02 +0200985 ci_head(req)[msg->sl.rq.u] != '/' && ci_head(req)[msg->sl.rq.u] != '*')
Willy Tarreau88d349d2010-01-25 12:15:43 +0100986 txn->flags |= TX_USE_PX_CONN;
987
Willy Tarreaue8e785b2009-12-26 15:34:26 +0100988 /* transfer length unknown*/
Willy Tarreaua36fc4d2012-02-17 17:39:37 +0100989 msg->flags &= ~HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +0100990
Willy Tarreau59234e92008-11-30 23:51:27 +0100991 /* 5: we may need to capture headers */
Willy Tarreaucb7dd012015-04-03 22:16:32 +0200992 if (unlikely((s->logs.logwait & LW_REQHDR) && s->req_cap))
Christopher Faulet10079f52018-10-03 15:17:28 +0200993 http_capture_headers(ci_head(req), &txn->hdr_idx,
994 s->req_cap, sess->fe->req_cap);
Willy Tarreau11382812008-07-09 16:18:21 +0200995
Willy Tarreau557f1992015-05-01 10:05:17 +0200996 /* 6: determine the transfer-length according to RFC2616 #4.4, updated
997 * by RFC7230#3.3.3 :
Willy Tarreaue8e785b2009-12-26 15:34:26 +0100998 *
Willy Tarreau557f1992015-05-01 10:05:17 +0200999 * The length of a message body is determined by one of the following
1000 * (in order of precedence):
Willy Tarreau32b47f42009-10-18 20:55:02 +02001001 *
Willy Tarreau557f1992015-05-01 10:05:17 +02001002 * 1. Any response to a HEAD request and any response with a 1xx
1003 * (Informational), 204 (No Content), or 304 (Not Modified) status
1004 * code is always terminated by the first empty line after the
1005 * header fields, regardless of the header fields present in the
1006 * message, and thus cannot contain a message body.
Willy Tarreau32b47f42009-10-18 20:55:02 +02001007 *
Willy Tarreau557f1992015-05-01 10:05:17 +02001008 * 2. Any 2xx (Successful) response to a CONNECT request implies that
1009 * the connection will become a tunnel immediately after the empty
1010 * line that concludes the header fields. A client MUST ignore any
1011 * Content-Length or Transfer-Encoding header fields received in
1012 * such a message.
Willy Tarreaue8e785b2009-12-26 15:34:26 +01001013 *
Willy Tarreau557f1992015-05-01 10:05:17 +02001014 * 3. If a Transfer-Encoding header field is present and the chunked
1015 * transfer coding (Section 4.1) is the final encoding, the message
1016 * body length is determined by reading and decoding the chunked
1017 * data until the transfer coding indicates the data is complete.
1018 *
1019 * If a Transfer-Encoding header field is present in a response and
1020 * the chunked transfer coding is not the final encoding, the
1021 * message body length is determined by reading the connection until
1022 * it is closed by the server. If a Transfer-Encoding header field
1023 * is present in a request and the chunked transfer coding is not
1024 * the final encoding, the message body length cannot be determined
1025 * reliably; the server MUST respond with the 400 (Bad Request)
1026 * status code and then close the connection.
1027 *
1028 * If a message is received with both a Transfer-Encoding and a
1029 * Content-Length header field, the Transfer-Encoding overrides the
1030 * Content-Length. Such a message might indicate an attempt to
1031 * perform request smuggling (Section 9.5) or response splitting
1032 * (Section 9.4) and ought to be handled as an error. A sender MUST
1033 * remove the received Content-Length field prior to forwarding such
1034 * a message downstream.
1035 *
1036 * 4. If a message is received without Transfer-Encoding and with
1037 * either multiple Content-Length header fields having differing
1038 * field-values or a single Content-Length header field having an
1039 * invalid value, then the message framing is invalid and the
1040 * recipient MUST treat it as an unrecoverable error. If this is a
1041 * request message, the server MUST respond with a 400 (Bad Request)
1042 * status code and then close the connection. If this is a response
1043 * message received by a proxy, the proxy MUST close the connection
1044 * to the server, discard the received response, and send a 502 (Bad
1045 * Gateway) response to the client. If this is a response message
1046 * received by a user agent, the user agent MUST close the
1047 * connection to the server and discard the received response.
1048 *
1049 * 5. If a valid Content-Length header field is present without
1050 * Transfer-Encoding, its decimal value defines the expected message
1051 * body length in octets. If the sender closes the connection or
1052 * the recipient times out before the indicated number of octets are
1053 * received, the recipient MUST consider the message to be
1054 * incomplete and close the connection.
1055 *
1056 * 6. If this is a request message and none of the above are true, then
1057 * the message body length is zero (no message body is present).
1058 *
1059 * 7. Otherwise, this is a response message without a declared message
1060 * body length, so the message body length is determined by the
1061 * number of octets received prior to the server closing the
1062 * connection.
Willy Tarreau32b47f42009-10-18 20:55:02 +02001063 */
1064
Willy Tarreau32b47f42009-10-18 20:55:02 +02001065 ctx.idx = 0;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01001066 /* set TE_CHNK and XFER_LEN only if "chunked" is seen last */
Willy Tarreauf37954d2018-06-15 18:31:02 +02001067 while (http_find_header2("Transfer-Encoding", 17, ci_head(req), &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01001068 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
Christopher Fauletbe821b92017-03-30 11:21:53 +02001069 msg->flags |= HTTP_MSGF_TE_CHNK;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01001070 else if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreau34dfc602015-05-01 10:09:49 +02001071 /* chunked not last, return badreq */
1072 goto return_bad_req;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01001073 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02001074 }
1075
Willy Tarreau1c913912015-04-30 10:57:51 +02001076 /* Chunked requests must have their content-length removed */
Willy Tarreau32b47f42009-10-18 20:55:02 +02001077 ctx.idx = 0;
Willy Tarreau1c913912015-04-30 10:57:51 +02001078 if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreauf37954d2018-06-15 18:31:02 +02001079 while (http_find_header2("Content-Length", 14, ci_head(req), &txn->hdr_idx, &ctx))
Willy Tarreau1c913912015-04-30 10:57:51 +02001080 http_remove_header2(msg, &txn->hdr_idx, &ctx);
1081 }
Willy Tarreauf37954d2018-06-15 18:31:02 +02001082 else while (http_find_header2("Content-Length", 14, ci_head(req), &txn->hdr_idx, &ctx)) {
Willy Tarreau32b47f42009-10-18 20:55:02 +02001083 signed long long cl;
1084
Willy Tarreauad14f752011-09-02 20:33:27 +02001085 if (!ctx.vlen) {
Willy Tarreauf37954d2018-06-15 18:31:02 +02001086 msg->err_pos = ctx.line + ctx.val - ci_head(req);
Willy Tarreau32b47f42009-10-18 20:55:02 +02001087 goto return_bad_req;
Willy Tarreauad14f752011-09-02 20:33:27 +02001088 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02001089
Willy Tarreauad14f752011-09-02 20:33:27 +02001090 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) {
Willy Tarreauf37954d2018-06-15 18:31:02 +02001091 msg->err_pos = ctx.line + ctx.val - ci_head(req);
Willy Tarreau32b47f42009-10-18 20:55:02 +02001092 goto return_bad_req; /* parse failure */
Willy Tarreauad14f752011-09-02 20:33:27 +02001093 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02001094
Willy Tarreauad14f752011-09-02 20:33:27 +02001095 if (cl < 0) {
Willy Tarreauf37954d2018-06-15 18:31:02 +02001096 msg->err_pos = ctx.line + ctx.val - ci_head(req);
Willy Tarreau32b47f42009-10-18 20:55:02 +02001097 goto return_bad_req;
Willy Tarreauad14f752011-09-02 20:33:27 +02001098 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02001099
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01001100 if ((msg->flags & HTTP_MSGF_CNT_LEN) && (msg->chunk_len != cl)) {
Willy Tarreauf37954d2018-06-15 18:31:02 +02001101 msg->err_pos = ctx.line + ctx.val - ci_head(req);
Willy Tarreau32b47f42009-10-18 20:55:02 +02001102 goto return_bad_req; /* already specified, was different */
Willy Tarreauad14f752011-09-02 20:33:27 +02001103 }
Willy Tarreau32b47f42009-10-18 20:55:02 +02001104
Christopher Fauletbe821b92017-03-30 11:21:53 +02001105 msg->flags |= HTTP_MSGF_CNT_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01001106 msg->body_len = msg->chunk_len = cl;
Willy Tarreau32b47f42009-10-18 20:55:02 +02001107 }
1108
Willy Tarreau34dfc602015-05-01 10:09:49 +02001109 /* even bodyless requests have a known length */
1110 msg->flags |= HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01001111
Willy Tarreau179085c2014-04-28 16:48:56 +02001112 /* Until set to anything else, the connection mode is set as Keep-Alive. It will
1113 * only change if both the request and the config reference something else.
1114 * Option httpclose by itself sets tunnel mode where headers are mangled.
1115 * However, if another mode is set, it will affect it (eg: server-close/
1116 * keep-alive + httpclose = close). Note that we avoid to redo the same work
1117 * if FE and BE have the same settings (common). The method consists in
1118 * checking if options changed between the two calls (implying that either
1119 * one is non-null, or one of them is non-null and we are there for the first
1120 * time.
1121 */
1122 if (!(txn->flags & TX_HDR_CONN_PRS) ||
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001123 ((sess->fe->options & PR_O_HTTP_MODE) != (s->be->options & PR_O_HTTP_MODE)))
Willy Tarreau4e21ff92014-09-30 18:44:22 +02001124 http_adjust_conn_mode(s, txn, msg);
Willy Tarreau179085c2014-04-28 16:48:56 +02001125
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001126 /* we may have to wait for the request's body */
1127 if ((s->be->options & PR_O_WREQ_BODY) &&
1128 (msg->body_len || (msg->flags & HTTP_MSGF_TE_CHNK)))
1129 req->analysers |= AN_REQ_HTTP_BODY;
1130
Willy Tarreau83ece462017-12-21 15:13:09 +01001131 /*
1132 * RFC7234#4:
1133 * A cache MUST write through requests with methods
1134 * that are unsafe (Section 4.2.1 of [RFC7231]) to
1135 * the origin server; i.e., a cache is not allowed
1136 * to generate a reply to such a request before
1137 * having forwarded the request and having received
1138 * a corresponding response.
1139 *
1140 * RFC7231#4.2.1:
1141 * Of the request methods defined by this
1142 * specification, the GET, HEAD, OPTIONS, and TRACE
1143 * methods are defined to be safe.
1144 */
1145 if (likely(txn->meth == HTTP_METH_GET ||
1146 txn->meth == HTTP_METH_HEAD ||
1147 txn->meth == HTTP_METH_OPTIONS ||
1148 txn->meth == HTTP_METH_TRACE))
1149 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
1150
Willy Tarreaud787e662009-07-07 10:14:51 +02001151 /* end of job, return OK */
Willy Tarreau3a816292009-07-07 10:55:49 +02001152 req->analysers &= ~an_bit;
Willy Tarreaud787e662009-07-07 10:14:51 +02001153 req->analyse_exp = TICK_ETERNITY;
1154 return 1;
1155
1156 return_bad_req:
1157 /* We centralize bad requests processing here */
1158 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
1159 /* we detected a parsing error. We want to archive this request
1160 * in the dedicated proxy area for later troubleshooting.
1161 */
Willy Tarreaufd9419d2018-09-07 18:01:03 +02001162 http_capture_bad_message(sess->fe, s, msg, msg->err_state, sess->fe);
Willy Tarreaud787e662009-07-07 10:14:51 +02001163 }
1164
Willy Tarreau10e61cb2017-01-04 14:51:22 +01001165 txn->req.err_state = txn->req.msg_state;
Willy Tarreaud787e662009-07-07 10:14:51 +02001166 txn->req.msg_state = HTTP_MSG_ERROR;
1167 txn->status = 400;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02001168 http_reply_and_close(s, txn->status, http_error_message(s));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02001169
Olivier Houcharda798bf52019-03-08 18:52:00 +01001170 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001171 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +01001172 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Willy Tarreaud787e662009-07-07 10:14:51 +02001173
1174 return_prx_cond:
Willy Tarreaue7dff022015-04-03 01:14:29 +02001175 if (!(s->flags & SF_ERR_MASK))
1176 s->flags |= SF_ERR_PRXCOND;
1177 if (!(s->flags & SF_FINST_MASK))
1178 s->flags |= SF_FINST_R;
Willy Tarreaud787e662009-07-07 10:14:51 +02001179
Christopher Faulet0184ea72017-01-05 14:06:34 +01001180 req->analysers &= AN_REQ_FLT_END;
Willy Tarreaud787e662009-07-07 10:14:51 +02001181 req->analyse_exp = TICK_ETERNITY;
1182 return 0;
1183}
1184
Willy Tarreau4f8a83c2012-06-04 00:26:23 +02001185
Willy Tarreau347a35d2013-11-22 17:51:09 +01001186/* This function prepares an applet to handle the stats. It can deal with the
1187 * "100-continue" expectation, check that admin rules are met for POST requests,
1188 * and program a response message if something was unexpected. It cannot fail
1189 * and always relies on the stats applet to complete the job. It does not touch
Willy Tarreau414e9bb2013-11-23 00:30:38 +01001190 * analysers nor counters, which are left to the caller. It does not touch
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001191 * s->target which is supposed to already point to the stats applet. The caller
Willy Tarreau87b09662015-04-03 00:22:06 +02001192 * is expected to have already assigned an appctx to the stream.
Willy Tarreau1facd6d2012-12-22 22:03:39 +01001193 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001194int http_handle_stats(struct stream *s, struct channel *req)
Willy Tarreau1facd6d2012-12-22 22:03:39 +01001195{
1196 struct stats_admin_rule *stats_admin_rule;
Willy Tarreau350f4872014-11-28 14:42:25 +01001197 struct stream_interface *si = &s->si[1];
Willy Tarreau192252e2015-04-04 01:47:55 +02001198 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02001199 struct http_txn *txn = s->txn;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01001200 struct http_msg *msg = &txn->req;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01001201 struct uri_auth *uri_auth = s->be->uri_auth;
1202 const char *uri, *h, *lookup;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001203 struct appctx *appctx;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01001204
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001205 appctx = si_appctx(si);
1206 memset(&appctx->ctx.stats, 0, sizeof(appctx->ctx.stats));
1207 appctx->st1 = appctx->st2 = 0;
1208 appctx->ctx.stats.st_code = STAT_STATUS_INIT;
1209 appctx->ctx.stats.flags |= STAT_FMT_HTML; /* assume HTML mode by default */
Willy Tarreaueee5b512015-04-03 23:46:31 +02001210 if ((msg->flags & HTTP_MSGF_VER_11) && (s->txn->meth != HTTP_METH_HEAD))
Willy Tarreauaf3cf702014-04-22 22:19:53 +02001211 appctx->ctx.stats.flags |= STAT_CHUNKED;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01001212
Willy Tarreauf37954d2018-06-15 18:31:02 +02001213 uri = ci_head(msg->chn) + msg->sl.rq.u;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01001214 lookup = uri + uri_auth->uri_len;
1215
1216 for (h = lookup; h <= uri + msg->sl.rq.u_l - 3; h++) {
1217 if (memcmp(h, ";up", 3) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001218 appctx->ctx.stats.flags |= STAT_HIDE_DOWN;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01001219 break;
1220 }
1221 }
1222
1223 if (uri_auth->refresh) {
1224 for (h = lookup; h <= uri + msg->sl.rq.u_l - 10; h++) {
1225 if (memcmp(h, ";norefresh", 10) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001226 appctx->ctx.stats.flags |= STAT_NO_REFRESH;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01001227 break;
1228 }
1229 }
1230 }
1231
1232 for (h = lookup; h <= uri + msg->sl.rq.u_l - 4; h++) {
1233 if (memcmp(h, ";csv", 4) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001234 appctx->ctx.stats.flags &= ~STAT_FMT_HTML;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01001235 break;
1236 }
1237 }
1238
Willy Tarreau1e62df92016-01-11 18:57:53 +01001239 for (h = lookup; h <= uri + msg->sl.rq.u_l - 6; h++) {
1240 if (memcmp(h, ";typed", 6) == 0) {
1241 appctx->ctx.stats.flags &= ~STAT_FMT_HTML;
1242 appctx->ctx.stats.flags |= STAT_FMT_TYPED;
1243 break;
1244 }
1245 }
1246
Willy Tarreau414e9bb2013-11-23 00:30:38 +01001247 for (h = lookup; h <= uri + msg->sl.rq.u_l - 8; h++) {
1248 if (memcmp(h, ";st=", 4) == 0) {
1249 int i;
1250 h += 4;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001251 appctx->ctx.stats.st_code = STAT_STATUS_UNKN;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01001252 for (i = STAT_STATUS_INIT + 1; i < STAT_STATUS_SIZE; i++) {
1253 if (strncmp(stat_status_codes[i], h, 4) == 0) {
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001254 appctx->ctx.stats.st_code = i;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01001255 break;
1256 }
1257 }
1258 break;
1259 }
1260 }
1261
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001262 appctx->ctx.stats.scope_str = 0;
1263 appctx->ctx.stats.scope_len = 0;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01001264 for (h = lookup; h <= uri + msg->sl.rq.u_l - 8; h++) {
1265 if (memcmp(h, STAT_SCOPE_INPUT_NAME "=", strlen(STAT_SCOPE_INPUT_NAME) + 1) == 0) {
1266 int itx = 0;
1267 const char *h2;
1268 char scope_txt[STAT_SCOPE_TXT_MAXLEN + 1];
1269 const char *err;
1270
1271 h += strlen(STAT_SCOPE_INPUT_NAME) + 1;
1272 h2 = h;
Willy Tarreauf37954d2018-06-15 18:31:02 +02001273 appctx->ctx.stats.scope_str = h2 - ci_head(msg->chn);
Willy Tarreau414e9bb2013-11-23 00:30:38 +01001274 while (*h != ';' && *h != '\0' && *h != '&' && *h != ' ' && *h != '\n') {
1275 itx++;
1276 h++;
1277 }
1278
1279 if (itx > STAT_SCOPE_TXT_MAXLEN)
1280 itx = STAT_SCOPE_TXT_MAXLEN;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001281 appctx->ctx.stats.scope_len = itx;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01001282
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001283 /* scope_txt = search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */
Willy Tarreau414e9bb2013-11-23 00:30:38 +01001284 memcpy(scope_txt, h2, itx);
1285 scope_txt[itx] = '\0';
1286 err = invalid_char(scope_txt);
1287 if (err) {
1288 /* bad char in search text => clear scope */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001289 appctx->ctx.stats.scope_str = 0;
1290 appctx->ctx.stats.scope_len = 0;
Willy Tarreau414e9bb2013-11-23 00:30:38 +01001291 }
1292 break;
1293 }
1294 }
Willy Tarreau1facd6d2012-12-22 22:03:39 +01001295
1296 /* now check whether we have some admin rules for this request */
Willy Tarreau414e9bb2013-11-23 00:30:38 +01001297 list_for_each_entry(stats_admin_rule, &uri_auth->admin_rules, list) {
Willy Tarreau1facd6d2012-12-22 22:03:39 +01001298 int ret = 1;
1299
1300 if (stats_admin_rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001301 ret = acl_exec_cond(stats_admin_rule->cond, s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau1facd6d2012-12-22 22:03:39 +01001302 ret = acl_pass(ret);
1303 if (stats_admin_rule->cond->pol == ACL_COND_UNLESS)
1304 ret = !ret;
1305 }
1306
1307 if (ret) {
1308 /* no rule, or the rule matches */
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001309 appctx->ctx.stats.flags |= STAT_ADMIN;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01001310 break;
1311 }
1312 }
1313
Christopher Faulet5d45e382019-02-27 15:15:23 +01001314 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
1315 appctx->st0 = STAT_HTTP_HEAD;
1316 else if (txn->meth == HTTP_METH_POST && (msg->flags & HTTP_MSGF_CNT_LEN)) {
Christopher Fauletbcf242a2019-03-01 11:36:26 +01001317 if (appctx->ctx.stats.flags & STAT_ADMIN)
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001318 appctx->st0 = STAT_HTTP_POST;
Willy Tarreau347a35d2013-11-22 17:51:09 +01001319 else {
Christopher Faulet5d45e382019-02-27 15:15:23 +01001320 /* POST without admin level */
1321 appctx->ctx.stats.flags &= ~STAT_CHUNKED;
Willy Tarreau7b4b4992013-12-01 09:15:12 +01001322 appctx->ctx.stats.st_code = STAT_STATUS_DENY;
1323 appctx->st0 = STAT_HTTP_LAST;
de Lafond Guillaume88c278f2013-04-15 19:27:10 +02001324 }
Willy Tarreau1facd6d2012-12-22 22:03:39 +01001325 }
Willy Tarreau347a35d2013-11-22 17:51:09 +01001326 else {
Christopher Faulet5d45e382019-02-27 15:15:23 +01001327 /* Unsupported method or chunked POST */
1328 appctx->ctx.stats.flags &= ~STAT_CHUNKED;
1329 appctx->ctx.stats.st_code = STAT_STATUS_IVAL;
1330 appctx->st0 = STAT_HTTP_LAST;
Willy Tarreau1facd6d2012-12-22 22:03:39 +01001331 }
1332
Willy Tarreau1facd6d2012-12-22 22:03:39 +01001333 s->task->nice = -32; /* small boost for HTTP statistics */
Willy Tarreau1facd6d2012-12-22 22:03:39 +01001334 return 1;
1335}
1336
Willy Tarreau87b09662015-04-03 00:22:06 +02001337int http_transform_header_str(struct stream* s, struct http_msg *msg,
Thierry FOURNIER5531f872015-03-16 11:15:50 +01001338 const char* name, unsigned int name_len,
1339 const char *str, struct my_regex *re,
1340 int action)
Sasha Pachev218f0642014-06-16 12:05:59 -06001341{
Willy Tarreaueee5b512015-04-03 23:46:31 +02001342 struct hdr_idx *idx = &s->txn->hdr_idx;
Willy Tarreau83061a82018-07-13 11:56:34 +02001343 struct buffer *output = get_trash_chunk();
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01001344
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01001345 /* Choose the header browsing function. */
1346 switch (action) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001347 case ACT_HTTP_REPLACE_VAL:
Willy Tarreauc5a4fd52018-12-11 11:42:27 +01001348 return http_legacy_replace_header(idx, msg, name, name_len, str, re, output);
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001349 case ACT_HTTP_REPLACE_HDR:
Willy Tarreauc5a4fd52018-12-11 11:42:27 +01001350 return http_legacy_replace_full_header(idx, msg, name, name_len, str, re, output);
Thierry FOURNIER191f9ef2015-03-16 23:23:53 +01001351 default: /* impossible */
1352 return -1;
1353 }
Sasha Pachev218f0642014-06-16 12:05:59 -06001354}
1355
Willy Tarreau87b09662015-04-03 00:22:06 +02001356static int http_transform_header(struct stream* s, struct http_msg *msg,
Thierry FOURNIER5531f872015-03-16 11:15:50 +01001357 const char* name, unsigned int name_len,
1358 struct list *fmt, struct my_regex *re,
1359 int action)
1360{
Willy Tarreau83061a82018-07-13 11:56:34 +02001361 struct buffer *replace;
Christopher Faulet07a0fec2017-02-08 12:17:07 +01001362 int ret = -1;
1363
1364 replace = alloc_trash_chunk();
1365 if (!replace)
1366 goto leave;
Thierry FOURNIER5531f872015-03-16 11:15:50 +01001367
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001368 replace->data = build_logline(s, replace->area, replace->size, fmt);
1369 if (replace->data >= replace->size - 1)
Christopher Faulet07a0fec2017-02-08 12:17:07 +01001370 goto leave;
1371
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001372 ret = http_transform_header_str(s, msg, name, name_len, replace->area,
1373 re, action);
Thierry FOURNIER5531f872015-03-16 11:15:50 +01001374
Christopher Faulet07a0fec2017-02-08 12:17:07 +01001375 leave:
1376 free_trash_chunk(replace);
1377 return ret;
Thierry FOURNIER5531f872015-03-16 11:15:50 +01001378}
1379
Christopher Faulet87451fd2019-03-01 11:16:34 +01001380/* Handle Expect: 100-continue for HTTP/1.1 messages if necessary. */
1381static void http_handle_expect_hdr(struct stream *s, struct channel *req, struct http_msg *msg)
1382{
1383 /* If we have HTTP/1.1 message with a body and Expect: 100-continue,
1384 * then we must send an HTTP/1.1 100 Continue intermediate response.
1385 */
1386 if (msg->msg_state == HTTP_MSG_BODY && (msg->flags & HTTP_MSGF_VER_11) &&
1387 (msg->flags & (HTTP_MSGF_CNT_LEN|HTTP_MSGF_TE_CHNK))) {
1388 struct hdr_ctx ctx;
1389 ctx.idx = 0;
1390 /* Expect is allowed in 1.1, look for it */
1391 if (http_find_header2("Expect", 6, ci_head(req), &s->txn->hdr_idx, &ctx) &&
1392 unlikely(ctx.vlen == 12 && strncasecmp(ctx.line+ctx.val, "100-continue", 12) == 0)) {
1393 co_inject(&s->res, HTTP_100.ptr, HTTP_100.len);
1394 http_remove_header2(&s->txn->req, &s->txn->hdr_idx, &ctx);
1395 }
1396 }
1397}
1398
Frédéric Lécaille9ca51aa2018-11-12 10:06:54 +01001399/*
1400 * Build an HTTP Early Hint HTTP 103 response header with <name> as name and with a value
1401 * built according to <fmt> log line format.
Christopher Faulet3c0544e2018-11-15 15:41:55 +01001402 * If <early_hints> is NULL, it is allocated and the HTTP 103 response first
1403 * line is inserted before the header. If an error occurred <early_hints> is
1404 * released and NULL is returned. On success the updated buffer is returned.
Frédéric Lécaille9ca51aa2018-11-12 10:06:54 +01001405 */
Christopher Faulet3c0544e2018-11-15 15:41:55 +01001406static struct buffer *http_apply_early_hint_rule(struct stream* s, struct buffer *early_hints,
1407 const char* name, unsigned int name_len,
1408 struct list *fmt)
Frédéric Lécaille9ca51aa2018-11-12 10:06:54 +01001409{
Christopher Faulet3c0544e2018-11-15 15:41:55 +01001410 if (!early_hints) {
1411 early_hints = alloc_trash_chunk();
1412 if (!early_hints)
1413 goto fail;
1414 if (!chunk_memcat(early_hints, HTTP_103.ptr, HTTP_103.len))
1415 goto fail;
1416 }
Frédéric Lécaille9ca51aa2018-11-12 10:06:54 +01001417
Christopher Faulet3c0544e2018-11-15 15:41:55 +01001418 if (!chunk_memcat(early_hints, name, name_len) || !chunk_memcat(early_hints, ": ", 2))
1419 goto fail;
Frédéric Lécaille9ca51aa2018-11-12 10:06:54 +01001420
Christopher Faulet3c0544e2018-11-15 15:41:55 +01001421 early_hints->data += build_logline(s, b_tail(early_hints), b_room(early_hints), fmt);
1422 if (!chunk_memcat(early_hints, "\r\n", 2))
1423 goto fail;
Frédéric Lécaille9ca51aa2018-11-12 10:06:54 +01001424
Christopher Faulet3c0544e2018-11-15 15:41:55 +01001425 return early_hints;
Frédéric Lécaille9ca51aa2018-11-12 10:06:54 +01001426
Christopher Faulet3c0544e2018-11-15 15:41:55 +01001427 fail:
1428 free_trash_chunk(early_hints);
1429 return NULL;
1430}
Frédéric Lécaille9ca51aa2018-11-12 10:06:54 +01001431
Christopher Faulet3c0544e2018-11-15 15:41:55 +01001432/* Sends an HTTP 103 response. Before sending it, the last CRLF finishing the
1433 * response is added. If an error occurred or if another response was already
1434 * sent, this function does nothing.
1435 */
1436static void http_send_early_hints(struct stream *s, struct buffer *early_hints)
1437{
1438 struct channel *chn = s->txn->rsp.chn;
1439 char *cur_ptr = ci_head(chn);
1440 int ret;
Frédéric Lécaille9ca51aa2018-11-12 10:06:54 +01001441
Christopher Faulet3c0544e2018-11-15 15:41:55 +01001442 /* If a response was already sent, skip early hints */
1443 if (s->txn->status > 0)
1444 return;
Frédéric Lécaille9ca51aa2018-11-12 10:06:54 +01001445
Christopher Faulet3c0544e2018-11-15 15:41:55 +01001446 if (!chunk_memcat(early_hints, "\r\n", 2))
1447 return;
Frédéric Lécaille9ca51aa2018-11-12 10:06:54 +01001448
Christopher Faulet3c0544e2018-11-15 15:41:55 +01001449 ret = b_rep_blk(&chn->buf, cur_ptr, cur_ptr, b_head(early_hints), b_data(early_hints));
1450 c_adv(chn, ret);
1451 chn->total += ret;
Frédéric Lécaille9ca51aa2018-11-12 10:06:54 +01001452}
1453
Willy Tarreau87b09662015-04-03 00:22:06 +02001454/* Executes the http-request rules <rules> for stream <s>, proxy <px> and
Willy Tarreau0b748332014-04-29 00:13:29 +02001455 * transaction <txn>. Returns the verdict of the first rule that prevents
1456 * further processing of the request (auth, deny, ...), and defaults to
1457 * HTTP_RULE_RES_STOP if it executed all rules or stopped on an allow, or
1458 * HTTP_RULE_RES_CONT if the last rule was reached. It may set the TX_CLTARPIT
Willy Tarreau58727ec2016-05-25 16:23:59 +02001459 * on txn->flags if it encounters a tarpit rule. If <deny_status> is not NULL
1460 * and a deny/tarpit rule is matched, it will be filled with this rule's deny
1461 * status.
Willy Tarreauf68a15a2011-01-06 16:53:21 +01001462 */
Willy Tarreau0b748332014-04-29 00:13:29 +02001463enum rule_result
Willy Tarreau58727ec2016-05-25 16:23:59 +02001464http_req_get_intercept_rule(struct proxy *px, struct list *rules, struct stream *s, int *deny_status)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01001465{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02001466 struct session *sess = strm_sess(s);
Willy Tarreau987e3fb2015-04-04 01:09:08 +02001467 struct http_txn *txn = s->txn;
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02001468 struct act_rule *rule;
Willy Tarreau20b0de52012-12-24 15:45:22 +01001469 struct hdr_ctx ctx;
Willy Tarreauae3c0102014-04-28 23:22:08 +02001470 const char *auth_realm;
Christopher Faulet3c0544e2018-11-15 15:41:55 +01001471 struct buffer *early_hints = NULL;
Christopher Fauletea827bd2018-11-15 15:34:11 +01001472 enum rule_result rule_ret = HTTP_RULE_RES_CONT;
Willy Tarreauacc98002015-09-27 23:34:39 +02001473 int act_flags = 0;
Thierry Fournier4b788f72016-06-01 13:35:36 +02001474 int len;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01001475
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001476 /* If "the current_rule_list" match the executed rule list, we are in
1477 * resume condition. If a resume is needed it is always in the action
1478 * and never in the ACL or converters. In this case, we initialise the
1479 * current rule, and go to the action execution point.
1480 */
Willy Tarreau152b81e2015-04-20 13:26:17 +02001481 if (s->current_rule) {
1482 rule = s->current_rule;
1483 s->current_rule = NULL;
1484 if (s->current_rule_list == rules)
1485 goto resume_execution;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001486 }
1487 s->current_rule_list = rules;
Willy Tarreau152b81e2015-04-20 13:26:17 +02001488
Willy Tarreauff011f22011-01-06 17:51:27 +01001489 list_for_each_entry(rule, rules, list) {
Willy Tarreauf68a15a2011-01-06 16:53:21 +01001490
Willy Tarreau96257ec2012-12-27 10:46:37 +01001491 /* check optional condition */
Willy Tarreauff011f22011-01-06 17:51:27 +01001492 if (rule->cond) {
Willy Tarreau96257ec2012-12-27 10:46:37 +01001493 int ret;
1494
Willy Tarreau192252e2015-04-04 01:47:55 +02001495 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf68a15a2011-01-06 16:53:21 +01001496 ret = acl_pass(ret);
1497
Willy Tarreauff011f22011-01-06 17:51:27 +01001498 if (rule->cond->pol == ACL_COND_UNLESS)
Willy Tarreauf68a15a2011-01-06 16:53:21 +01001499 ret = !ret;
Willy Tarreau96257ec2012-12-27 10:46:37 +01001500
1501 if (!ret) /* condition not matched */
1502 continue;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01001503 }
1504
Willy Tarreauacc98002015-09-27 23:34:39 +02001505 act_flags |= ACT_FLAG_FIRST;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001506resume_execution:
Willy Tarreau96257ec2012-12-27 10:46:37 +01001507 switch (rule->action) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001508 case ACT_ACTION_ALLOW:
Christopher Fauletea827bd2018-11-15 15:34:11 +01001509 rule_ret = HTTP_RULE_RES_STOP;
1510 goto end;
Willy Tarreau96257ec2012-12-27 10:46:37 +01001511
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001512 case ACT_ACTION_DENY:
Willy Tarreau58727ec2016-05-25 16:23:59 +02001513 if (deny_status)
1514 *deny_status = rule->deny_status;
Christopher Fauletea827bd2018-11-15 15:34:11 +01001515 rule_ret = HTTP_RULE_RES_DENY;
1516 goto end;
Willy Tarreau96257ec2012-12-27 10:46:37 +01001517
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001518 case ACT_HTTP_REQ_TARPIT:
Willy Tarreauccbcc372012-12-27 12:37:57 +01001519 txn->flags |= TX_CLTARPIT;
Willy Tarreau58727ec2016-05-25 16:23:59 +02001520 if (deny_status)
1521 *deny_status = rule->deny_status;
Christopher Fauletea827bd2018-11-15 15:34:11 +01001522 rule_ret = HTTP_RULE_RES_DENY;
1523 goto end;
Willy Tarreauccbcc372012-12-27 12:37:57 +01001524
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001525 case ACT_HTTP_REQ_AUTH:
Christopher Faulet3c0544e2018-11-15 15:41:55 +01001526 /* Be sure to send any pending HTTP 103 response first */
1527 if (early_hints) {
1528 http_send_early_hints(s, early_hints);
1529 free_trash_chunk(early_hints);
1530 early_hints = NULL;
1531 }
Willy Tarreauae3c0102014-04-28 23:22:08 +02001532 /* Auth might be performed on regular http-req rules as well as on stats */
1533 auth_realm = rule->arg.auth.realm;
1534 if (!auth_realm) {
1535 if (px->uri_auth && rules == &px->uri_auth->http_req_rules)
1536 auth_realm = STATS_DEFAULT_REALM;
1537 else
1538 auth_realm = px->id;
1539 }
1540 /* send 401/407 depending on whether we use a proxy or not. We still
1541 * count one error, because normal browsing won't significantly
1542 * increase the counter but brute force attempts will.
1543 */
1544 chunk_printf(&trash, (txn->flags & TX_USE_PX_CONN) ? HTTP_407_fmt : HTTP_401_fmt, auth_realm);
1545 txn->status = (txn->flags & TX_USE_PX_CONN) ? 407 : 401;
Christopher Fauleta94e5a52015-12-09 15:55:06 +01001546 http_reply_and_close(s, txn->status, &trash);
Willy Tarreau87b09662015-04-03 00:22:06 +02001547 stream_inc_http_err_ctr(s);
Christopher Fauletea827bd2018-11-15 15:34:11 +01001548 rule_ret = HTTP_RULE_RES_ABRT;
1549 goto end;
Willy Tarreau96257ec2012-12-27 10:46:37 +01001550
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001551 case ACT_HTTP_REDIR:
Christopher Faulet3c0544e2018-11-15 15:41:55 +01001552 /* Be sure to send any pending HTTP 103 response first */
1553 if (early_hints) {
1554 http_send_early_hints(s, early_hints);
1555 free_trash_chunk(early_hints);
1556 early_hints = NULL;
1557 }
Christopher Fauletea827bd2018-11-15 15:34:11 +01001558 rule_ret = HTTP_RULE_RES_DONE;
Willy Tarreau0b748332014-04-29 00:13:29 +02001559 if (!http_apply_redirect_rule(rule->arg.redir, s, txn))
Christopher Fauletea827bd2018-11-15 15:34:11 +01001560 rule_ret = HTTP_RULE_RES_BADREQ;
1561 goto end;
Willy Tarreau81499eb2012-12-27 12:19:02 +01001562
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001563 case ACT_HTTP_SET_NICE:
Willy Tarreauf4c43c12013-06-11 17:01:13 +02001564 s->task->nice = rule->arg.nice;
1565 break;
1566
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001567 case ACT_HTTP_SET_TOS:
Willy Tarreau1a18b542018-12-11 16:37:42 +01001568 conn_set_tos(objt_conn(sess->origin), rule->arg.tos);
Willy Tarreau42cf39e2013-06-11 18:51:32 +02001569 break;
1570
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001571 case ACT_HTTP_SET_MARK:
Willy Tarreau1a18b542018-12-11 16:37:42 +01001572 conn_set_mark(objt_conn(sess->origin), rule->arg.mark);
Willy Tarreau51347ed2013-06-11 19:34:13 +02001573 break;
1574
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001575 case ACT_HTTP_SET_LOGL:
Willy Tarreau9a355ec2013-06-11 17:45:46 +02001576 s->logs.level = rule->arg.loglevel;
1577 break;
1578
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001579 case ACT_HTTP_REPLACE_HDR:
1580 case ACT_HTTP_REPLACE_VAL:
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01001581 if (http_transform_header(s, &txn->req, rule->arg.hdr_add.name,
1582 rule->arg.hdr_add.name_len,
1583 &rule->arg.hdr_add.fmt,
Christopher Fauletea827bd2018-11-15 15:34:11 +01001584 &rule->arg.hdr_add.re, rule->action)) {
1585 rule_ret = HTTP_RULE_RES_BADREQ;
1586 goto end;
1587 }
Sasha Pachev218f0642014-06-16 12:05:59 -06001588 break;
1589
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001590 case ACT_HTTP_DEL_HDR:
Willy Tarreau96257ec2012-12-27 10:46:37 +01001591 ctx.idx = 0;
1592 /* remove all occurrences of the header */
1593 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
Willy Tarreauf37954d2018-06-15 18:31:02 +02001594 ci_head(txn->req.chn), &txn->hdr_idx, &ctx)) {
Willy Tarreau96257ec2012-12-27 10:46:37 +01001595 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
Willy Tarreau20b0de52012-12-24 15:45:22 +01001596 }
Willy Tarreau85603282015-01-21 20:39:27 +01001597 break;
Willy Tarreau96257ec2012-12-27 10:46:37 +01001598
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001599 case ACT_HTTP_SET_HDR:
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001600 case ACT_HTTP_ADD_HDR: {
Thierry Fournier4b788f72016-06-01 13:35:36 +02001601 /* The scope of the trash buffer must be limited to this function. The
1602 * build_logline() function can execute a lot of other function which
1603 * can use the trash buffer. So for limiting the scope of this global
1604 * buffer, we build first the header value using build_logline, and
1605 * after we store the header name.
1606 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001607 struct buffer *replace;
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001608
1609 replace = alloc_trash_chunk();
Christopher Fauletea827bd2018-11-15 15:34:11 +01001610 if (!replace) {
1611 rule_ret = HTTP_RULE_RES_BADREQ;
1612 goto end;
1613 }
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001614
Thierry Fournier4b788f72016-06-01 13:35:36 +02001615 len = rule->arg.hdr_add.name_len + 2,
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001616 len += build_logline(s, replace->area + len,
1617 replace->size - len,
1618 &rule->arg.hdr_add.fmt);
1619 memcpy(replace->area, rule->arg.hdr_add.name,
1620 rule->arg.hdr_add.name_len);
1621 replace->area[rule->arg.hdr_add.name_len] = ':';
1622 replace->area[rule->arg.hdr_add.name_len + 1] = ' ';
1623 replace->data = len;
Willy Tarreau85603282015-01-21 20:39:27 +01001624
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001625 if (rule->action == ACT_HTTP_SET_HDR) {
Willy Tarreau85603282015-01-21 20:39:27 +01001626 /* remove all occurrences of the header */
1627 ctx.idx = 0;
1628 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
Willy Tarreauf37954d2018-06-15 18:31:02 +02001629 ci_head(txn->req.chn), &txn->hdr_idx, &ctx)) {
Willy Tarreau85603282015-01-21 20:39:27 +01001630 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
1631 }
1632 }
1633
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001634 if (http_header_add_tail2(&txn->req, &txn->hdr_idx, replace->area, replace->data) < 0) {
Tim Duesterhus3fd19732018-05-27 20:35:08 +02001635 static unsigned char rate_limit = 0;
1636
1637 if ((rate_limit++ & 255) == 0) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001638 replace->area[rule->arg.hdr_add.name_len] = 0;
1639 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,
1640 replace->area, s->uniq_id);
Tim Duesterhus3fd19732018-05-27 20:35:08 +02001641 }
1642
Olivier Houcharda798bf52019-03-08 18:52:00 +01001643 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_rewrites, 1);
Tim Duesterhus3fd19732018-05-27 20:35:08 +02001644 if (sess->fe != s->be)
Olivier Houcharda798bf52019-03-08 18:52:00 +01001645 _HA_ATOMIC_ADD(&s->be->be_counters.failed_rewrites, 1);
Tim Duesterhus3fd19732018-05-27 20:35:08 +02001646 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +01001647 _HA_ATOMIC_ADD(&sess->listener->counters->failed_rewrites, 1);
Tim Duesterhus3fd19732018-05-27 20:35:08 +02001648 }
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001649
1650 free_trash_chunk(replace);
Willy Tarreau96257ec2012-12-27 10:46:37 +01001651 break;
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001652 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001653
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001654 case ACT_HTTP_DEL_ACL:
1655 case ACT_HTTP_DEL_MAP: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001656 struct pat_ref *ref;
Willy Tarreau83061a82018-07-13 11:56:34 +02001657 struct buffer *key;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001658
1659 /* collect reference */
1660 ref = pat_ref_lookup(rule->arg.map.ref);
1661 if (!ref)
1662 continue;
1663
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001664 /* allocate key */
1665 key = alloc_trash_chunk();
Christopher Fauletea827bd2018-11-15 15:34:11 +01001666 if (!key) {
1667 rule_ret = HTTP_RULE_RES_BADREQ;
1668 goto end;
1669 }
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001670
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001671 /* collect key */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001672 key->data = build_logline(s, key->area, key->size,
1673 &rule->arg.map.key);
1674 key->area[key->data] = '\0';
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001675
1676 /* perform update */
1677 /* returned code: 1=ok, 0=ko */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001678 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001679 pat_ref_delete(ref, key->area);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001680 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001681
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001682 free_trash_chunk(key);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001683 break;
1684 }
1685
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001686 case ACT_HTTP_ADD_ACL: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001687 struct pat_ref *ref;
Willy Tarreau83061a82018-07-13 11:56:34 +02001688 struct buffer *key;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001689
1690 /* collect reference */
1691 ref = pat_ref_lookup(rule->arg.map.ref);
1692 if (!ref)
1693 continue;
1694
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001695 /* allocate key */
1696 key = alloc_trash_chunk();
Christopher Fauletea827bd2018-11-15 15:34:11 +01001697 if (!key) {
1698 rule_ret = HTTP_RULE_RES_BADREQ;
1699 goto end;
1700 }
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001701
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001702 /* collect key */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001703 key->data = build_logline(s, key->area, key->size,
1704 &rule->arg.map.key);
1705 key->area[key->data] = '\0';
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001706
1707 /* perform update */
1708 /* add entry only if it does not already exist */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001709 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001710 if (pat_ref_find_elt(ref, key->area) == NULL)
1711 pat_ref_add(ref, key->area, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001712 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001713
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001714 free_trash_chunk(key);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001715 break;
1716 }
1717
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001718 case ACT_HTTP_SET_MAP: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001719 struct pat_ref *ref;
Willy Tarreau83061a82018-07-13 11:56:34 +02001720 struct buffer *key, *value;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001721
1722 /* collect reference */
1723 ref = pat_ref_lookup(rule->arg.map.ref);
1724 if (!ref)
1725 continue;
1726
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001727 /* allocate key */
1728 key = alloc_trash_chunk();
Christopher Fauletea827bd2018-11-15 15:34:11 +01001729 if (!key) {
1730 rule_ret = HTTP_RULE_RES_BADREQ;
1731 goto end;
1732 }
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001733
1734 /* allocate value */
1735 value = alloc_trash_chunk();
1736 if (!value) {
1737 free_trash_chunk(key);
Christopher Fauletea827bd2018-11-15 15:34:11 +01001738 rule_ret = HTTP_RULE_RES_BADREQ;
1739 goto end;
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001740 }
1741
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001742 /* collect key */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001743 key->data = build_logline(s, key->area, key->size,
1744 &rule->arg.map.key);
1745 key->area[key->data] = '\0';
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001746
1747 /* collect value */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001748 value->data = build_logline(s, value->area,
1749 value->size,
1750 &rule->arg.map.value);
1751 value->area[value->data] = '\0';
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001752
1753 /* perform update */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001754 if (pat_ref_find_elt(ref, key->area) != NULL)
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001755 /* update entry if it exists */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001756 pat_ref_set(ref, key->area, value->area, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001757 else
1758 /* insert a new entry */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001759 pat_ref_add(ref, key->area, value->area, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001760
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001761 free_trash_chunk(key);
1762 free_trash_chunk(value);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02001763 break;
1764 }
William Lallemand73025dd2014-04-24 14:38:37 +02001765
Frédéric Lécaille9ca51aa2018-11-12 10:06:54 +01001766 case ACT_HTTP_EARLY_HINT:
1767 if (!(txn->req.flags & HTTP_MSGF_VER_11))
1768 break;
Christopher Faulet3c0544e2018-11-15 15:41:55 +01001769 early_hints = http_apply_early_hint_rule(s, early_hints,
1770 rule->arg.early_hint.name,
1771 rule->arg.early_hint.name_len,
1772 &rule->arg.early_hint.fmt);
1773 if (!early_hints) {
Christopher Fauletea827bd2018-11-15 15:34:11 +01001774 rule_ret = HTTP_RULE_RES_DONE;
1775 goto end;
1776 }
Frédéric Lécaille9ca51aa2018-11-12 10:06:54 +01001777 break;
Thierry FOURNIER42148732015-09-02 17:17:33 +02001778 case ACT_CUSTOM:
Willy Tarreau7aa15b02017-12-20 16:56:50 +01001779 if ((s->req.flags & CF_READ_ERROR) ||
1780 ((s->req.flags & (CF_SHUTR|CF_READ_NULL)) &&
1781 !(s->si[0].flags & SI_FL_CLEAN_ABRT) &&
1782 (px->options & PR_O_ABRT_CLOSE)))
Willy Tarreauacc98002015-09-27 23:34:39 +02001783 act_flags |= ACT_FLAG_FINAL;
Willy Tarreau39458682015-09-27 10:33:15 +02001784
Willy Tarreauacc98002015-09-27 23:34:39 +02001785 switch (rule->action_ptr(rule, px, s->sess, s, act_flags)) {
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02001786 case ACT_RET_ERR:
1787 case ACT_RET_CONT:
1788 break;
Thierry FOURNIER42148732015-09-02 17:17:33 +02001789 case ACT_RET_STOP:
Christopher Fauletea827bd2018-11-15 15:34:11 +01001790 rule_ret = HTTP_RULE_RES_DONE;
1791 goto end;
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02001792 case ACT_RET_YIELD:
Willy Tarreau152b81e2015-04-20 13:26:17 +02001793 s->current_rule = rule;
Christopher Fauletea827bd2018-11-15 15:34:11 +01001794 rule_ret = HTTP_RULE_RES_YIELD;
1795 goto end;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001796 }
William Lallemand73025dd2014-04-24 14:38:37 +02001797 break;
1798
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001799 case ACT_ACTION_TRK_SC0 ... ACT_ACTION_TRK_SCMAX:
Willy Tarreau09448f72014-06-25 18:12:15 +02001800 /* Note: only the first valid tracking parameter of each
1801 * applies.
1802 */
1803
Christopher Faulet4fce0d82017-09-18 11:57:31 +02001804 if (stkctr_entry(&s->stkctr[trk_idx(rule->action)]) == NULL) {
Willy Tarreau09448f72014-06-25 18:12:15 +02001805 struct stktable *t;
1806 struct stksess *ts;
1807 struct stktable_key *key;
Emeric Brun819fc6f2017-06-13 19:37:32 +02001808 void *ptr1, *ptr2;
Willy Tarreau09448f72014-06-25 18:12:15 +02001809
Thierry FOURNIER5ec63e02015-08-04 09:09:48 +02001810 t = rule->arg.trk_ctr.table.t;
1811 key = stktable_fetch_key(t, s->be, sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL, rule->arg.trk_ctr.expr, NULL);
Willy Tarreau09448f72014-06-25 18:12:15 +02001812
1813 if (key && (ts = stktable_get_entry(t, key))) {
Christopher Faulet4fce0d82017-09-18 11:57:31 +02001814 stream_track_stkctr(&s->stkctr[trk_idx(rule->action)], t, ts);
Willy Tarreau09448f72014-06-25 18:12:15 +02001815
1816 /* let's count a new HTTP request as it's the first time we do it */
Emeric Brun819fc6f2017-06-13 19:37:32 +02001817 ptr1 = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_CNT);
1818 ptr2 = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_RATE);
1819 if (ptr1 || ptr2) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001820 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
Willy Tarreau09448f72014-06-25 18:12:15 +02001821
Emeric Brun819fc6f2017-06-13 19:37:32 +02001822 if (ptr1)
1823 stktable_data_cast(ptr1, http_req_cnt)++;
1824
1825 if (ptr2)
1826 update_freq_ctr_period(&stktable_data_cast(ptr2, http_req_rate),
1827 t->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u, 1);
1828
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001829 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun0fed0b02017-11-29 16:15:07 +01001830
1831 /* If data was modified, we need to touch to re-schedule sync */
1832 stktable_touch_local(t, ts, 0);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001833 }
Willy Tarreau09448f72014-06-25 18:12:15 +02001834
Christopher Faulet4fce0d82017-09-18 11:57:31 +02001835 stkctr_set_flags(&s->stkctr[trk_idx(rule->action)], STKCTR_TRACK_CONTENT);
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02001836 if (sess->fe != s->be)
Christopher Faulet4fce0d82017-09-18 11:57:31 +02001837 stkctr_set_flags(&s->stkctr[trk_idx(rule->action)], STKCTR_TRACK_BACKEND);
Willy Tarreau09448f72014-06-25 18:12:15 +02001838 }
1839 }
Adis Nezirovic2fbcafc2015-07-06 15:44:30 +02001840 break;
1841
Joseph Herlant5ba80252018-11-15 09:25:36 -08001842 /* other flags exists, but normally, they never be matched. */
Thierry FOURNIER22e49012015-08-05 19:13:48 +02001843 default:
1844 break;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01001845 }
1846 }
Willy Tarreau96257ec2012-12-27 10:46:37 +01001847
Christopher Fauletea827bd2018-11-15 15:34:11 +01001848 end:
Christopher Faulet3c0544e2018-11-15 15:41:55 +01001849 if (early_hints) {
1850 http_send_early_hints(s, early_hints);
1851 free_trash_chunk(early_hints);
Frédéric Lécaille9ca51aa2018-11-12 10:06:54 +01001852 }
1853
Willy Tarreau96257ec2012-12-27 10:46:37 +01001854 /* we reached the end of the rules, nothing to report */
Christopher Fauletea827bd2018-11-15 15:34:11 +01001855 return rule_ret;
Willy Tarreauf68a15a2011-01-06 16:53:21 +01001856}
1857
Willy Tarreau71241ab2012-12-27 11:30:54 +01001858
Willy Tarreau51d861a2015-05-22 17:30:48 +02001859/* Executes the http-response rules <rules> for stream <s> and proxy <px>. It
1860 * returns one of 5 possible statuses: HTTP_RULE_RES_CONT, HTTP_RULE_RES_STOP,
1861 * HTTP_RULE_RES_DONE, HTTP_RULE_RES_YIELD, or HTTP_RULE_RES_BADREQ. If *CONT
1862 * is returned, the process can continue the evaluation of next rule list. If
1863 * *STOP or *DONE is returned, the process must stop the evaluation. If *BADREQ
1864 * is returned, it means the operation could not be processed and a server error
1865 * must be returned. It may set the TX_SVDENY on txn->flags if it encounters a
1866 * deny rule. If *YIELD is returned, the caller must call again the function
1867 * with the same context.
Willy Tarreaue365c0b2013-06-11 16:06:12 +02001868 */
Christopher Faulet10079f52018-10-03 15:17:28 +02001869enum rule_result
Willy Tarreau987e3fb2015-04-04 01:09:08 +02001870http_res_get_intercept_rule(struct proxy *px, struct list *rules, struct stream *s)
Willy Tarreaue365c0b2013-06-11 16:06:12 +02001871{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02001872 struct session *sess = strm_sess(s);
Willy Tarreau987e3fb2015-04-04 01:09:08 +02001873 struct http_txn *txn = s->txn;
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02001874 struct act_rule *rule;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02001875 struct hdr_ctx ctx;
Christopher Faulet6c243eb2018-11-15 15:40:29 +01001876 enum rule_result rule_ret = HTTP_RULE_RES_CONT;
Willy Tarreauacc98002015-09-27 23:34:39 +02001877 int act_flags = 0;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02001878
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001879 /* If "the current_rule_list" match the executed rule list, we are in
1880 * resume condition. If a resume is needed it is always in the action
1881 * and never in the ACL or converters. In this case, we initialise the
1882 * current rule, and go to the action execution point.
1883 */
Willy Tarreau152b81e2015-04-20 13:26:17 +02001884 if (s->current_rule) {
1885 rule = s->current_rule;
1886 s->current_rule = NULL;
1887 if (s->current_rule_list == rules)
1888 goto resume_execution;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001889 }
1890 s->current_rule_list = rules;
Willy Tarreau152b81e2015-04-20 13:26:17 +02001891
Willy Tarreaue365c0b2013-06-11 16:06:12 +02001892 list_for_each_entry(rule, rules, list) {
Willy Tarreaue365c0b2013-06-11 16:06:12 +02001893
1894 /* check optional condition */
1895 if (rule->cond) {
1896 int ret;
1897
Willy Tarreau192252e2015-04-04 01:47:55 +02001898 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Willy Tarreaue365c0b2013-06-11 16:06:12 +02001899 ret = acl_pass(ret);
1900
1901 if (rule->cond->pol == ACL_COND_UNLESS)
1902 ret = !ret;
1903
1904 if (!ret) /* condition not matched */
1905 continue;
1906 }
1907
Willy Tarreauacc98002015-09-27 23:34:39 +02001908 act_flags |= ACT_FLAG_FIRST;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01001909resume_execution:
Willy Tarreaue365c0b2013-06-11 16:06:12 +02001910 switch (rule->action) {
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001911 case ACT_ACTION_ALLOW:
Christopher Faulet6c243eb2018-11-15 15:40:29 +01001912 rule_ret = HTTP_RULE_RES_STOP; /* "allow" rules are OK */
1913 goto end;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02001914
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001915 case ACT_ACTION_DENY:
Willy Tarreaue365c0b2013-06-11 16:06:12 +02001916 txn->flags |= TX_SVDENY;
Christopher Faulet6c243eb2018-11-15 15:40:29 +01001917 rule_ret = HTTP_RULE_RES_STOP;
1918 goto end;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02001919
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001920 case ACT_HTTP_SET_NICE:
Willy Tarreauf4c43c12013-06-11 17:01:13 +02001921 s->task->nice = rule->arg.nice;
1922 break;
1923
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001924 case ACT_HTTP_SET_TOS:
Willy Tarreau1a18b542018-12-11 16:37:42 +01001925 conn_set_tos(objt_conn(sess->origin), rule->arg.tos);
Willy Tarreau42cf39e2013-06-11 18:51:32 +02001926 break;
1927
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001928 case ACT_HTTP_SET_MARK:
Willy Tarreau1a18b542018-12-11 16:37:42 +01001929 conn_set_mark(objt_conn(sess->origin), rule->arg.mark);
Willy Tarreau51347ed2013-06-11 19:34:13 +02001930 break;
1931
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001932 case ACT_HTTP_SET_LOGL:
Willy Tarreau9a355ec2013-06-11 17:45:46 +02001933 s->logs.level = rule->arg.loglevel;
1934 break;
1935
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001936 case ACT_HTTP_REPLACE_HDR:
1937 case ACT_HTTP_REPLACE_VAL:
Thierry FOURNIER5a33ac72015-03-16 23:54:35 +01001938 if (http_transform_header(s, &txn->rsp, rule->arg.hdr_add.name,
1939 rule->arg.hdr_add.name_len,
1940 &rule->arg.hdr_add.fmt,
Christopher Faulet6c243eb2018-11-15 15:40:29 +01001941 &rule->arg.hdr_add.re, rule->action)) {
1942 rule_ret = HTTP_RULE_RES_BADREQ;
1943 goto end;
1944 }
Sasha Pachev218f0642014-06-16 12:05:59 -06001945 break;
1946
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001947 case ACT_HTTP_DEL_HDR:
Willy Tarreaue365c0b2013-06-11 16:06:12 +02001948 ctx.idx = 0;
1949 /* remove all occurrences of the header */
1950 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
Willy Tarreauf37954d2018-06-15 18:31:02 +02001951 ci_head(txn->rsp.chn), &txn->hdr_idx, &ctx)) {
Willy Tarreaue365c0b2013-06-11 16:06:12 +02001952 http_remove_header2(&txn->rsp, &txn->hdr_idx, &ctx);
1953 }
Willy Tarreau85603282015-01-21 20:39:27 +01001954 break;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02001955
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001956 case ACT_HTTP_SET_HDR:
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001957 case ACT_HTTP_ADD_HDR: {
Willy Tarreau83061a82018-07-13 11:56:34 +02001958 struct buffer *replace;
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001959
1960 replace = alloc_trash_chunk();
Christopher Faulet6c243eb2018-11-15 15:40:29 +01001961 if (!replace) {
1962 rule_ret = HTTP_RULE_RES_BADREQ;
1963 goto end;
1964 }
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001965
1966 chunk_printf(replace, "%s: ", rule->arg.hdr_add.name);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001967 memcpy(replace->area, rule->arg.hdr_add.name,
1968 rule->arg.hdr_add.name_len);
1969 replace->data = rule->arg.hdr_add.name_len;
1970 replace->area[replace->data++] = ':';
1971 replace->area[replace->data++] = ' ';
1972 replace->data += build_logline(s,
1973 replace->area + replace->data,
1974 replace->size - replace->data,
1975 &rule->arg.hdr_add.fmt);
Willy Tarreau85603282015-01-21 20:39:27 +01001976
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02001977 if (rule->action == ACT_HTTP_SET_HDR) {
Willy Tarreau85603282015-01-21 20:39:27 +01001978 /* remove all occurrences of the header */
1979 ctx.idx = 0;
1980 while (http_find_header2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len,
Willy Tarreauf37954d2018-06-15 18:31:02 +02001981 ci_head(txn->rsp.chn), &txn->hdr_idx, &ctx)) {
Willy Tarreau85603282015-01-21 20:39:27 +01001982 http_remove_header2(&txn->rsp, &txn->hdr_idx, &ctx);
1983 }
1984 }
Tim Duesterhus3fd19732018-05-27 20:35:08 +02001985
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001986 if (http_header_add_tail2(&txn->rsp, &txn->hdr_idx, replace->area, replace->data) < 0) {
Tim Duesterhus3fd19732018-05-27 20:35:08 +02001987 static unsigned char rate_limit = 0;
1988
1989 if ((rate_limit++ & 255) == 0) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001990 replace->area[rule->arg.hdr_add.name_len] = 0;
1991 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,
1992 replace->area, s->uniq_id);
Tim Duesterhus3fd19732018-05-27 20:35:08 +02001993 }
1994
Olivier Houcharda798bf52019-03-08 18:52:00 +01001995 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_rewrites, 1);
Tim Duesterhus3fd19732018-05-27 20:35:08 +02001996 if (sess->fe != s->be)
Olivier Houcharda798bf52019-03-08 18:52:00 +01001997 _HA_ATOMIC_ADD(&s->be->be_counters.failed_rewrites, 1);
Tim Duesterhus3fd19732018-05-27 20:35:08 +02001998 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +01001999 _HA_ATOMIC_ADD(&sess->listener->counters->failed_rewrites, 1);
Tim Duesterhus3fd19732018-05-27 20:35:08 +02002000 if (objt_server(s->target))
Olivier Houcharda798bf52019-03-08 18:52:00 +01002001 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_rewrites, 1);
Tim Duesterhus3fd19732018-05-27 20:35:08 +02002002 }
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002003
2004 free_trash_chunk(replace);
Willy Tarreaue365c0b2013-06-11 16:06:12 +02002005 break;
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002006 }
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002007
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002008 case ACT_HTTP_DEL_ACL:
2009 case ACT_HTTP_DEL_MAP: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002010 struct pat_ref *ref;
Willy Tarreau83061a82018-07-13 11:56:34 +02002011 struct buffer *key;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002012
2013 /* collect reference */
2014 ref = pat_ref_lookup(rule->arg.map.ref);
2015 if (!ref)
2016 continue;
2017
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002018 /* allocate key */
2019 key = alloc_trash_chunk();
Christopher Faulet6c243eb2018-11-15 15:40:29 +01002020 if (!key) {
2021 rule_ret = HTTP_RULE_RES_BADREQ;
2022 goto end;
2023 }
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002024
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002025 /* collect key */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002026 key->data = build_logline(s, key->area, key->size,
2027 &rule->arg.map.key);
2028 key->area[key->data] = '\0';
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002029
2030 /* perform update */
2031 /* returned code: 1=ok, 0=ko */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002032 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002033 pat_ref_delete(ref, key->area);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002034 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002035
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002036 free_trash_chunk(key);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002037 break;
2038 }
2039
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002040 case ACT_HTTP_ADD_ACL: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002041 struct pat_ref *ref;
Willy Tarreau83061a82018-07-13 11:56:34 +02002042 struct buffer *key;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002043
2044 /* collect reference */
2045 ref = pat_ref_lookup(rule->arg.map.ref);
2046 if (!ref)
2047 continue;
2048
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002049 /* allocate key */
2050 key = alloc_trash_chunk();
Christopher Faulet6c243eb2018-11-15 15:40:29 +01002051 if (!key) {
2052 rule_ret = HTTP_RULE_RES_BADREQ;
2053 goto end;
2054 }
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002055
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002056 /* collect key */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002057 key->data = build_logline(s, key->area, key->size,
2058 &rule->arg.map.key);
2059 key->area[key->data] = '\0';
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002060
2061 /* perform update */
2062 /* check if the entry already exists */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002063 if (pat_ref_find_elt(ref, key->area) == NULL)
2064 pat_ref_add(ref, key->area, NULL, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002065
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002066 free_trash_chunk(key);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002067 break;
2068 }
2069
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002070 case ACT_HTTP_SET_MAP: {
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002071 struct pat_ref *ref;
Willy Tarreau83061a82018-07-13 11:56:34 +02002072 struct buffer *key, *value;
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002073
2074 /* collect reference */
2075 ref = pat_ref_lookup(rule->arg.map.ref);
2076 if (!ref)
2077 continue;
2078
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002079 /* allocate key */
2080 key = alloc_trash_chunk();
Christopher Faulet6c243eb2018-11-15 15:40:29 +01002081 if (!key) {
2082 rule_ret = HTTP_RULE_RES_BADREQ;
2083 goto end;
2084 }
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002085
2086 /* allocate value */
2087 value = alloc_trash_chunk();
2088 if (!value) {
2089 free_trash_chunk(key);
Christopher Faulet6c243eb2018-11-15 15:40:29 +01002090 rule_ret = HTTP_RULE_RES_BADREQ;
2091 goto end;
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002092 }
2093
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002094 /* collect key */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002095 key->data = build_logline(s, key->area, key->size,
2096 &rule->arg.map.key);
2097 key->area[key->data] = '\0';
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002098
2099 /* collect value */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002100 value->data = build_logline(s, value->area,
2101 value->size,
2102 &rule->arg.map.value);
2103 value->area[value->data] = '\0';
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002104
2105 /* perform update */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002106 HA_SPIN_LOCK(PATREF_LOCK, &ref->lock);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002107 if (pat_ref_find_elt(ref, key->area) != NULL)
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002108 /* update entry if it exists */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002109 pat_ref_set(ref, key->area, value->area, NULL);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002110 else
2111 /* insert a new entry */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002112 pat_ref_add(ref, key->area, value->area, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002113 HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock);
Dragan Dosen2ae327e2017-10-26 11:25:10 +02002114 free_trash_chunk(key);
2115 free_trash_chunk(value);
Baptiste Assmannfabcbe02014-04-24 22:16:59 +02002116 break;
2117 }
William Lallemand73025dd2014-04-24 14:38:37 +02002118
Thierry FOURNIER0ea5c7f2015-08-05 19:05:19 +02002119 case ACT_HTTP_REDIR:
Christopher Faulet6c243eb2018-11-15 15:40:29 +01002120 rule_ret = HTTP_RULE_RES_DONE;
Willy Tarreau51d861a2015-05-22 17:30:48 +02002121 if (!http_apply_redirect_rule(rule->arg.redir, s, txn))
Christopher Faulet6c243eb2018-11-15 15:40:29 +01002122 rule_ret = HTTP_RULE_RES_BADREQ;
2123 goto end;
Willy Tarreau51d861a2015-05-22 17:30:48 +02002124
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002125 case ACT_ACTION_TRK_SC0 ... ACT_ACTION_TRK_SCMAX:
2126 /* Note: only the first valid tracking parameter of each
2127 * applies.
2128 */
2129
Christopher Faulet4fce0d82017-09-18 11:57:31 +02002130 if (stkctr_entry(&s->stkctr[trk_idx(rule->action)]) == NULL) {
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002131 struct stktable *t;
2132 struct stksess *ts;
2133 struct stktable_key *key;
2134 void *ptr;
2135
2136 t = rule->arg.trk_ctr.table.t;
2137 key = stktable_fetch_key(t, s->be, sess, s, SMP_OPT_DIR_RES | SMP_OPT_FINAL, rule->arg.trk_ctr.expr, NULL);
2138
2139 if (key && (ts = stktable_get_entry(t, key))) {
Christopher Faulet4fce0d82017-09-18 11:57:31 +02002140 stream_track_stkctr(&s->stkctr[trk_idx(rule->action)], t, ts);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002141
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002142 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02002143
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002144 /* let's count a new HTTP request as it's the first time we do it */
2145 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_CNT);
2146 if (ptr)
2147 stktable_data_cast(ptr, http_req_cnt)++;
2148
2149 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_RATE);
2150 if (ptr)
2151 update_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
2152 t->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u, 1);
2153
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002154 /* When the client triggers a 4xx from the server, it's most often due
2155 * to a missing object or permission. These events should be tracked
2156 * because if they happen often, it may indicate a brute force or a
2157 * vulnerability scan. Normally this is done when receiving the response
2158 * but here we're tracking after this ought to have been done so we have
2159 * to do it on purpose.
2160 */
Willy Tarreau3146a4c2016-07-26 15:22:33 +02002161 if ((unsigned)(txn->status - 400) < 100) {
2162 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_ERR_CNT);
2163 if (ptr)
2164 stktable_data_cast(ptr, http_err_cnt)++;
2165
2166 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_ERR_RATE);
2167 if (ptr)
2168 update_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
2169 t->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u, 1);
2170 }
Emeric Brun819fc6f2017-06-13 19:37:32 +02002171
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002172 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02002173
Emeric Brun0fed0b02017-11-29 16:15:07 +01002174 /* If data was modified, we need to touch to re-schedule sync */
2175 stktable_touch_local(t, ts, 0);
2176
Emeric Brun819fc6f2017-06-13 19:37:32 +02002177 stkctr_set_flags(&s->stkctr[trk_idx(rule->action)], STKCTR_TRACK_CONTENT);
2178 if (sess->fe != s->be)
2179 stkctr_set_flags(&s->stkctr[trk_idx(rule->action)], STKCTR_TRACK_BACKEND);
2180
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002181 }
2182 }
2183 break;
2184
Thierry FOURNIER42148732015-09-02 17:17:33 +02002185 case ACT_CUSTOM:
Willy Tarreau7aa15b02017-12-20 16:56:50 +01002186 if ((s->req.flags & CF_READ_ERROR) ||
2187 ((s->req.flags & (CF_SHUTR|CF_READ_NULL)) &&
2188 !(s->si[0].flags & SI_FL_CLEAN_ABRT) &&
2189 (px->options & PR_O_ABRT_CLOSE)))
Willy Tarreauacc98002015-09-27 23:34:39 +02002190 act_flags |= ACT_FLAG_FINAL;
Willy Tarreau39458682015-09-27 10:33:15 +02002191
Willy Tarreauacc98002015-09-27 23:34:39 +02002192 switch (rule->action_ptr(rule, px, s->sess, s, act_flags)) {
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02002193 case ACT_RET_ERR:
2194 case ACT_RET_CONT:
2195 break;
Thierry FOURNIER42148732015-09-02 17:17:33 +02002196 case ACT_RET_STOP:
Christopher Faulet6c243eb2018-11-15 15:40:29 +01002197 rule_ret = HTTP_RULE_RES_STOP;
2198 goto end;
Thierry FOURNIER24ff6c62015-08-06 08:52:53 +02002199 case ACT_RET_YIELD:
Willy Tarreau152b81e2015-04-20 13:26:17 +02002200 s->current_rule = rule;
Christopher Faulet6c243eb2018-11-15 15:40:29 +01002201 rule_ret = HTTP_RULE_RES_YIELD;
2202 goto end;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01002203 }
William Lallemand73025dd2014-04-24 14:38:37 +02002204 break;
2205
Joseph Herlant5ba80252018-11-15 09:25:36 -08002206 /* other flags exists, but normally, they never be matched. */
Thierry FOURNIER22e49012015-08-05 19:13:48 +02002207 default:
2208 break;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02002209 }
2210 }
2211
Christopher Faulet6c243eb2018-11-15 15:40:29 +01002212 end:
Willy Tarreaue365c0b2013-06-11 16:06:12 +02002213 /* we reached the end of the rules, nothing to report */
Christopher Faulet6c243eb2018-11-15 15:40:29 +01002214 return rule_ret;
Willy Tarreaue365c0b2013-06-11 16:06:12 +02002215}
2216
2217
Willy Tarreau71241ab2012-12-27 11:30:54 +01002218/* Perform an HTTP redirect based on the information in <rule>. The function
2219 * returns non-zero on success, or zero in case of a, irrecoverable error such
2220 * as too large a request to build a valid response.
2221 */
Christopher Faulet10079f52018-10-03 15:17:28 +02002222int http_apply_redirect_rule(struct redirect_rule *rule, struct stream *s, struct http_txn *txn)
Willy Tarreau71241ab2012-12-27 11:30:54 +01002223{
Willy Tarreaub329a312015-05-22 16:27:37 +02002224 struct http_msg *req = &txn->req;
2225 struct http_msg *res = &txn->rsp;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002226 const char *msg_fmt;
Willy Tarreau83061a82018-07-13 11:56:34 +02002227 struct buffer *chunk;
Thierry FOURNIER0d945762017-01-28 07:39:53 +01002228 int ret = 0;
2229
Christopher Fauletf2824e62018-10-01 12:12:37 +02002230 if (IS_HTX_STRM(s))
2231 return htx_apply_redirect_rule(rule, s, txn);
2232
Thierry FOURNIER0d945762017-01-28 07:39:53 +01002233 chunk = alloc_trash_chunk();
2234 if (!chunk)
2235 goto leave;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002236
2237 /* build redirect message */
2238 switch(rule->code) {
Yves Lafon3e8d1ae2013-03-11 11:06:05 -04002239 case 308:
2240 msg_fmt = HTTP_308;
2241 break;
2242 case 307:
2243 msg_fmt = HTTP_307;
2244 break;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002245 case 303:
2246 msg_fmt = HTTP_303;
2247 break;
2248 case 301:
2249 msg_fmt = HTTP_301;
2250 break;
2251 case 302:
2252 default:
2253 msg_fmt = HTTP_302;
2254 break;
2255 }
2256
Thierry FOURNIER0d945762017-01-28 07:39:53 +01002257 if (unlikely(!chunk_strcpy(chunk, msg_fmt)))
2258 goto leave;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002259
2260 switch(rule->type) {
2261 case REDIRECT_TYPE_SCHEME: {
2262 const char *path;
2263 const char *host;
2264 struct hdr_ctx ctx;
2265 int pathlen;
2266 int hostlen;
2267
2268 host = "";
2269 hostlen = 0;
2270 ctx.idx = 0;
Willy Tarreauf37954d2018-06-15 18:31:02 +02002271 if (http_find_header2("Host", 4, ci_head(req->chn), &txn->hdr_idx, &ctx)) {
Willy Tarreau71241ab2012-12-27 11:30:54 +01002272 host = ctx.line + ctx.val;
2273 hostlen = ctx.vlen;
2274 }
2275
Willy Tarreau6b952c82018-09-10 17:45:34 +02002276 path = http_txn_get_path(txn);
Willy Tarreau71241ab2012-12-27 11:30:54 +01002277 /* build message using path */
2278 if (path) {
Willy Tarreauf37954d2018-06-15 18:31:02 +02002279 pathlen = req->sl.rq.u_l + (ci_head(req->chn) + req->sl.rq.u) - path;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002280 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
2281 int qs = 0;
2282 while (qs < pathlen) {
2283 if (path[qs] == '?') {
2284 pathlen = qs;
2285 break;
2286 }
2287 qs++;
2288 }
2289 }
2290 } else {
2291 path = "/";
2292 pathlen = 1;
2293 }
2294
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002295 if (rule->rdr_str) { /* this is an old "redirect" rule */
2296 /* check if we can add scheme + "://" + host + path */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002297 if (chunk->data + rule->rdr_len + 3 + hostlen + pathlen > chunk->size - 4)
Thierry FOURNIER0d945762017-01-28 07:39:53 +01002298 goto leave;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002299
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002300 /* add scheme */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002301 memcpy(chunk->area + chunk->data, rule->rdr_str,
2302 rule->rdr_len);
2303 chunk->data += rule->rdr_len;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002304 }
2305 else {
2306 /* add scheme with executing log format */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002307 chunk->data += build_logline(s,
2308 chunk->area + chunk->data,
2309 chunk->size - chunk->data,
2310 &rule->rdr_fmt);
Willy Tarreau71241ab2012-12-27 11:30:54 +01002311
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002312 /* check if we can add scheme + "://" + host + path */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002313 if (chunk->data + 3 + hostlen + pathlen > chunk->size - 4)
Thierry FOURNIER0d945762017-01-28 07:39:53 +01002314 goto leave;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002315 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01002316 /* add "://" */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002317 memcpy(chunk->area + chunk->data, "://", 3);
2318 chunk->data += 3;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002319
2320 /* add host */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002321 memcpy(chunk->area + chunk->data, host, hostlen);
2322 chunk->data += hostlen;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002323
2324 /* add path */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002325 memcpy(chunk->area + chunk->data, path, pathlen);
2326 chunk->data += pathlen;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002327
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002328 /* append a slash at the end of the location if needed and missing */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002329 if (chunk->data && chunk->area[chunk->data - 1] != '/' &&
Willy Tarreau71241ab2012-12-27 11:30:54 +01002330 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002331 if (chunk->data > chunk->size - 5)
Thierry FOURNIER0d945762017-01-28 07:39:53 +01002332 goto leave;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002333 chunk->area[chunk->data] = '/';
2334 chunk->data++;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002335 }
2336
2337 break;
2338 }
2339 case REDIRECT_TYPE_PREFIX: {
2340 const char *path;
2341 int pathlen;
2342
Willy Tarreau6b952c82018-09-10 17:45:34 +02002343 path = http_txn_get_path(txn);
Willy Tarreau71241ab2012-12-27 11:30:54 +01002344 /* build message using path */
2345 if (path) {
Willy Tarreauf37954d2018-06-15 18:31:02 +02002346 pathlen = req->sl.rq.u_l + (ci_head(req->chn) + req->sl.rq.u) - path;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002347 if (rule->flags & REDIRECT_FLAG_DROP_QS) {
2348 int qs = 0;
2349 while (qs < pathlen) {
2350 if (path[qs] == '?') {
2351 pathlen = qs;
2352 break;
2353 }
2354 qs++;
2355 }
2356 }
2357 } else {
2358 path = "/";
2359 pathlen = 1;
2360 }
2361
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002362 if (rule->rdr_str) { /* this is an old "redirect" rule */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002363 if (chunk->data + rule->rdr_len + pathlen > chunk->size - 4)
Thierry FOURNIER0d945762017-01-28 07:39:53 +01002364 goto leave;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002365
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002366 /* add prefix. Note that if prefix == "/", we don't want to
2367 * add anything, otherwise it makes it hard for the user to
2368 * configure a self-redirection.
2369 */
2370 if (rule->rdr_len != 1 || *rule->rdr_str != '/') {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002371 memcpy(chunk->area + chunk->data,
2372 rule->rdr_str, rule->rdr_len);
2373 chunk->data += rule->rdr_len;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002374 }
2375 }
2376 else {
2377 /* add prefix with executing log format */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002378 chunk->data += build_logline(s,
2379 chunk->area + chunk->data,
2380 chunk->size - chunk->data,
2381 &rule->rdr_fmt);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002382
2383 /* Check length */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002384 if (chunk->data + pathlen > chunk->size - 4)
Thierry FOURNIER0d945762017-01-28 07:39:53 +01002385 goto leave;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002386 }
2387
2388 /* add path */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002389 memcpy(chunk->area + chunk->data, path, pathlen);
2390 chunk->data += pathlen;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002391
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002392 /* append a slash at the end of the location if needed and missing */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002393 if (chunk->data && chunk->area[chunk->data - 1] != '/' &&
Willy Tarreau71241ab2012-12-27 11:30:54 +01002394 (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002395 if (chunk->data > chunk->size - 5)
Thierry FOURNIER0d945762017-01-28 07:39:53 +01002396 goto leave;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002397 chunk->area[chunk->data] = '/';
2398 chunk->data++;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002399 }
2400
2401 break;
2402 }
2403 case REDIRECT_TYPE_LOCATION:
2404 default:
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002405 if (rule->rdr_str) { /* this is an old "redirect" rule */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002406 if (chunk->data + rule->rdr_len > chunk->size - 4)
Thierry FOURNIER0d945762017-01-28 07:39:53 +01002407 goto leave;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002408
2409 /* add location */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002410 memcpy(chunk->area + chunk->data, rule->rdr_str,
2411 rule->rdr_len);
2412 chunk->data += rule->rdr_len;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002413 }
2414 else {
2415 /* add location with executing log format */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002416 chunk->data += build_logline(s,
2417 chunk->area + chunk->data,
2418 chunk->size - chunk->data,
2419 &rule->rdr_fmt);
Willy Tarreau71241ab2012-12-27 11:30:54 +01002420
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002421 /* Check left length */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002422 if (chunk->data > chunk->size - 4)
Thierry FOURNIER0d945762017-01-28 07:39:53 +01002423 goto leave;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002424 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01002425 break;
2426 }
2427
2428 if (rule->cookie_len) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002429 memcpy(chunk->area + chunk->data, "\r\nSet-Cookie: ", 14);
2430 chunk->data += 14;
2431 memcpy(chunk->area + chunk->data, rule->cookie_str,
2432 rule->cookie_len);
2433 chunk->data += rule->cookie_len;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002434 }
2435
Willy Tarreau19b14122017-02-28 09:48:11 +01002436 /* add end of headers and the keep-alive/close status. */
Willy Tarreau71241ab2012-12-27 11:30:54 +01002437 txn->status = rule->code;
2438 /* let's log the request time */
2439 s->logs.tv_request = now;
2440
Christopher Fauletbe821b92017-03-30 11:21:53 +02002441 if (((!(req->flags & HTTP_MSGF_TE_CHNK) && !req->body_len) || (req->msg_state == HTTP_MSG_DONE)) &&
Willy Tarreau71241ab2012-12-27 11:30:54 +01002442 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL ||
2443 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) {
2444 /* keep-alive possible */
Willy Tarreaub329a312015-05-22 16:27:37 +02002445 if (!(req->flags & HTTP_MSGF_VER_11)) {
Willy Tarreau71241ab2012-12-27 11:30:54 +01002446 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002447 memcpy(chunk->area + chunk->data,
2448 "\r\nProxy-Connection: keep-alive", 30);
2449 chunk->data += 30;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002450 } else {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002451 memcpy(chunk->area + chunk->data,
2452 "\r\nConnection: keep-alive", 24);
2453 chunk->data += 24;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002454 }
2455 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002456 memcpy(chunk->area + chunk->data, "\r\n\r\n", 4);
2457 chunk->data += 4;
Thierry FOURNIER0d945762017-01-28 07:39:53 +01002458 FLT_STRM_CB(s, flt_http_reply(s, txn->status, chunk));
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002459 co_inject(res->chn, chunk->area, chunk->data);
Willy Tarreau71241ab2012-12-27 11:30:54 +01002460 /* "eat" the request */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002461 b_del(&req->chn->buf, req->sov);
Willy Tarreaub329a312015-05-22 16:27:37 +02002462 req->next -= req->sov;
2463 req->sov = 0;
Christopher Faulet0184ea72017-01-05 14:06:34 +01002464 s->req.analysers = AN_REQ_HTTP_XFER_BODY | (s->req.analysers & AN_REQ_FLT_END);
Christopher Faulet014e39c2017-03-10 13:52:30 +01002465 s->res.analysers = AN_RES_HTTP_XFER_BODY | (s->res.analysers & AN_RES_FLT_END);
Willy Tarreaub329a312015-05-22 16:27:37 +02002466 req->msg_state = HTTP_MSG_CLOSED;
2467 res->msg_state = HTTP_MSG_DONE;
Willy Tarreau51d861a2015-05-22 17:30:48 +02002468 /* Trim any possible response */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002469 b_set_data(&res->chn->buf, co_data(res->chn));
Willy Tarreau51d861a2015-05-22 17:30:48 +02002470 res->next = res->sov = 0;
Christopher Faulet5d468ca2017-09-11 09:27:29 +02002471 /* let the server side turn to SI_ST_CLO */
2472 channel_shutw_now(req->chn);
Willy Tarreau71241ab2012-12-27 11:30:54 +01002473 } else {
2474 /* keep-alive not possible */
2475 if (unlikely(txn->flags & TX_USE_PX_CONN)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002476 memcpy(chunk->area + chunk->data,
2477 "\r\nProxy-Connection: close\r\n\r\n", 29);
2478 chunk->data += 29;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002479 } else {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002480 memcpy(chunk->area + chunk->data,
2481 "\r\nConnection: close\r\n\r\n", 23);
2482 chunk->data += 23;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002483 }
Thierry FOURNIER0d945762017-01-28 07:39:53 +01002484 http_reply_and_close(s, txn->status, chunk);
Christopher Faulet0184ea72017-01-05 14:06:34 +01002485 req->chn->analysers &= AN_REQ_FLT_END;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002486 }
2487
Willy Tarreaue7dff022015-04-03 01:14:29 +02002488 if (!(s->flags & SF_ERR_MASK))
2489 s->flags |= SF_ERR_LOCAL;
2490 if (!(s->flags & SF_FINST_MASK))
2491 s->flags |= SF_FINST_R;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002492
Thierry FOURNIER0d945762017-01-28 07:39:53 +01002493 ret = 1;
2494 leave:
2495 free_trash_chunk(chunk);
2496 return ret;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002497}
2498
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002499/* This stream analyser runs all HTTP request processing which is common to
2500 * frontends and backends, which means blocking ACLs, filters, connection-close,
2501 * reqadd, stats and redirects. This is performed for the designated proxy.
Willy Tarreaud787e662009-07-07 10:14:51 +02002502 * It returns 1 if the processing can continue on next analysers, or zero if it
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002503 * either needs more data or wants to immediately abort the request (eg: deny,
2504 * error, ...).
Willy Tarreaud787e662009-07-07 10:14:51 +02002505 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002506int http_process_req_common(struct stream *s, struct channel *req, int an_bit, struct proxy *px)
Willy Tarreaud787e662009-07-07 10:14:51 +02002507{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02002508 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02002509 struct http_txn *txn = s->txn;
Willy Tarreaud787e662009-07-07 10:14:51 +02002510 struct http_msg *msg = &txn->req;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002511 struct redirect_rule *rule;
Willy Tarreauf4f04122010-01-28 18:10:50 +01002512 struct cond_wordlist *wl;
Willy Tarreau0b748332014-04-29 00:13:29 +02002513 enum rule_result verdict;
Willy Tarreau58727ec2016-05-25 16:23:59 +02002514 int deny_status = HTTP_ERR_403;
Olivier Houchardc2aae742017-09-22 18:26:28 +02002515 struct connection *conn = objt_conn(sess->origin);
Willy Tarreaud787e662009-07-07 10:14:51 +02002516
Christopher Faulete0768eb2018-10-03 16:38:02 +02002517 if (IS_HTX_STRM(s))
2518 return htx_process_req_common(s, req, an_bit, px);
2519
Willy Tarreau655dce92009-11-08 13:10:58 +01002520 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02002521 /* we need more data */
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01002522 goto return_prx_yield;
Willy Tarreau51aecc72009-07-12 09:47:04 +02002523 }
2524
Christopher Faulet45073512018-07-20 10:16:29 +02002525 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n",
Willy Tarreaud787e662009-07-07 10:14:51 +02002526 now_ms, __FUNCTION__,
2527 s,
2528 req,
2529 req->rex, req->wex,
2530 req->flags,
Christopher Faulet45073512018-07-20 10:16:29 +02002531 ci_data(req),
Willy Tarreaud787e662009-07-07 10:14:51 +02002532 req->analysers);
2533
Willy Tarreau65410832014-04-28 21:25:43 +02002534 /* just in case we have some per-backend tracking */
Willy Tarreau87b09662015-04-03 00:22:06 +02002535 stream_inc_be_http_req_ctr(s);
Willy Tarreau65410832014-04-28 21:25:43 +02002536
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002537 /* evaluate http-request rules */
Willy Tarreau0b748332014-04-29 00:13:29 +02002538 if (!LIST_ISEMPTY(&px->http_req_rules)) {
Willy Tarreau58727ec2016-05-25 16:23:59 +02002539 verdict = http_req_get_intercept_rule(px, &px->http_req_rules, s, &deny_status);
Willy Tarreau51425942010-02-01 10:40:19 +01002540
Willy Tarreau0b748332014-04-29 00:13:29 +02002541 switch (verdict) {
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01002542 case HTTP_RULE_RES_YIELD: /* some data miss, call the function later. */
2543 goto return_prx_yield;
2544
Willy Tarreau0b748332014-04-29 00:13:29 +02002545 case HTTP_RULE_RES_CONT:
2546 case HTTP_RULE_RES_STOP: /* nothing to do */
2547 break;
Willy Tarreau52542592014-04-28 18:33:26 +02002548
Willy Tarreau0b748332014-04-29 00:13:29 +02002549 case HTTP_RULE_RES_DENY: /* deny or tarpit */
2550 if (txn->flags & TX_CLTARPIT)
2551 goto tarpit;
2552 goto deny;
Willy Tarreau52542592014-04-28 18:33:26 +02002553
Willy Tarreau0b748332014-04-29 00:13:29 +02002554 case HTTP_RULE_RES_ABRT: /* abort request, response already sent. Eg: auth */
2555 goto return_prx_cond;
Willy Tarreau52542592014-04-28 18:33:26 +02002556
Willy Tarreau0b748332014-04-29 00:13:29 +02002557 case HTTP_RULE_RES_DONE: /* OK, but terminate request processing (eg: redirect) */
Willy Tarreau52542592014-04-28 18:33:26 +02002558 goto done;
2559
Willy Tarreau0b748332014-04-29 00:13:29 +02002560 case HTTP_RULE_RES_BADREQ: /* failed with a bad request */
2561 goto return_bad_req;
2562 }
Willy Tarreaubbba2a82014-04-28 13:57:26 +02002563 }
2564
Olivier Houchard25ae45a2017-11-29 19:51:19 +01002565 if (conn && (conn->flags & CO_FL_EARLY_DATA) &&
2566 (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_HANDSHAKE))) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02002567 struct hdr_ctx ctx;
2568
2569 ctx.idx = 0;
2570 if (!http_find_header2("Early-Data", strlen("Early-Data"),
Willy Tarreauf37954d2018-06-15 18:31:02 +02002571 ci_head(&s->req), &txn->hdr_idx, &ctx)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02002572 if (unlikely(http_header_add_tail2(&txn->req,
2573 &txn->hdr_idx, "Early-Data: 1",
Christopher Faulet005e79e2018-07-20 09:54:26 +02002574 strlen("Early-Data: 1")) < 0)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02002575 goto return_bad_req;
2576 }
2577 }
2578
2579 }
2580
Willy Tarreau52542592014-04-28 18:33:26 +02002581 /* OK at this stage, we know that the request was accepted according to
2582 * the http-request rules, we can check for the stats. Note that the
2583 * URI is detected *before* the req* rules in order not to be affected
2584 * by a possible reqrep, while they are processed *after* so that a
2585 * reqdeny can still block them. This clearly needs to change in 1.6!
2586 */
Willy Tarreau350f4872014-11-28 14:42:25 +01002587 if (stats_check_uri(&s->si[1], txn, px)) {
Willy Tarreau52542592014-04-28 18:33:26 +02002588 s->target = &http_stats_applet.obj_type;
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01002589 if (unlikely(!si_register_handler(&s->si[1], objt_applet(s->target)))) {
Willy Tarreau52542592014-04-28 18:33:26 +02002590 txn->status = 500;
2591 s->logs.tv_request = now;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02002592 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau7b4b4992013-12-01 09:15:12 +01002593
Willy Tarreaue7dff022015-04-03 01:14:29 +02002594 if (!(s->flags & SF_ERR_MASK))
2595 s->flags |= SF_ERR_RESOURCE;
Willy Tarreau52542592014-04-28 18:33:26 +02002596 goto return_prx_cond;
2597 }
2598
2599 /* parse the whole stats request and extract the relevant information */
2600 http_handle_stats(s, req);
Willy Tarreau58727ec2016-05-25 16:23:59 +02002601 verdict = http_req_get_intercept_rule(px, &px->uri_auth->http_req_rules, s, &deny_status);
Willy Tarreau0b748332014-04-29 00:13:29 +02002602 /* not all actions implemented: deny, allow, auth */
Willy Tarreaubbba2a82014-04-28 13:57:26 +02002603
Willy Tarreau0b748332014-04-29 00:13:29 +02002604 if (verdict == HTTP_RULE_RES_DENY) /* stats http-request deny */
2605 goto deny;
Willy Tarreau52542592014-04-28 18:33:26 +02002606
Willy Tarreau0b748332014-04-29 00:13:29 +02002607 if (verdict == HTTP_RULE_RES_ABRT) /* stats auth / stats http-request auth */
2608 goto return_prx_cond;
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01002609 }
2610
Willy Tarreaubbba2a82014-04-28 13:57:26 +02002611 /* evaluate the req* rules except reqadd */
2612 if (px->req_exp != NULL) {
Willy Tarreau6c123b12010-01-28 20:22:06 +01002613 if (apply_filters_to_request(s, req, px) < 0)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002614 goto return_bad_req;
Willy Tarreau06619262006-12-17 08:37:22 +01002615
Willy Tarreaubbba2a82014-04-28 13:57:26 +02002616 if (txn->flags & TX_CLDENY)
2617 goto deny;
Willy Tarreauc465fd72009-08-31 00:17:18 +02002618
Jarno Huuskonen800d1762017-03-06 14:56:36 +02002619 if (txn->flags & TX_CLTARPIT) {
2620 deny_status = HTTP_ERR_500;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02002621 goto tarpit;
Jarno Huuskonen800d1762017-03-06 14:56:36 +02002622 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002623 }
Willy Tarreau06619262006-12-17 08:37:22 +01002624
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002625 /* add request headers from the rule sets in the same order */
2626 list_for_each_entry(wl, &px->req_add, list) {
2627 if (wl->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02002628 int ret = acl_exec_cond(wl->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002629 ret = acl_pass(ret);
2630 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
2631 ret = !ret;
2632 if (!ret)
2633 continue;
2634 }
2635
Christopher Faulet10079f52018-10-03 15:17:28 +02002636 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, wl->s, strlen(wl->s)) < 0))
Willy Tarreauf68a15a2011-01-06 16:53:21 +01002637 goto return_bad_req;
Willy Tarreau81499eb2012-12-27 12:19:02 +01002638 }
2639
Willy Tarreau52542592014-04-28 18:33:26 +02002640
2641 /* Proceed with the stats now. */
William Lallemand71bd11a2017-11-20 19:13:14 +01002642 if (unlikely(objt_applet(s->target) == &http_stats_applet) ||
2643 unlikely(objt_applet(s->target) == &http_cache_applet)) {
Willy Tarreau1facd6d2012-12-22 22:03:39 +01002644 /* process the stats request now */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002645 if (sess->fe == s->be) /* report it if the request was intercepted by the frontend */
Olivier Houcharda798bf52019-03-08 18:52:00 +01002646 _HA_ATOMIC_ADD(&sess->fe->fe_counters.intercepted_req, 1);
Willy Tarreau347a35d2013-11-22 17:51:09 +01002647
Christopher Fauletbcf242a2019-03-01 11:36:26 +01002648 http_handle_expect_hdr(s, req, msg);
2649
Willy Tarreaue7dff022015-04-03 01:14:29 +02002650 if (!(s->flags & SF_ERR_MASK)) // this is not really an error but it is
2651 s->flags |= SF_ERR_LOCAL; // to mark that it comes from the proxy
2652 if (!(s->flags & SF_FINST_MASK))
2653 s->flags |= SF_FINST_R;
Willy Tarreau347a35d2013-11-22 17:51:09 +01002654
Willy Tarreau70730dd2014-04-24 18:06:27 +02002655 /* enable the minimally required analyzers to handle keep-alive and compression on the HTTP response */
Christopher Faulet0184ea72017-01-05 14:06:34 +01002656 req->analysers &= (AN_REQ_HTTP_BODY | AN_REQ_FLT_HTTP_HDRS | AN_REQ_FLT_END);
2657 req->analysers &= ~AN_REQ_FLT_XFER_DATA;
Christopher Fauletd7c91962015-04-30 11:48:27 +02002658 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Christopher Fauletbcf242a2019-03-01 11:36:26 +01002659
2660 req->flags |= CF_SEND_DONTWAIT;
2661 s->flags |= SF_ASSIGNED;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02002662 goto done;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002663 }
Willy Tarreaub2513902006-12-17 14:52:38 +01002664
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002665 /* check whether we have some ACLs set to redirect this request */
2666 list_for_each_entry(rule, &px->redirect_rules, list) {
Willy Tarreauf285f542010-01-03 20:03:03 +01002667 if (rule->cond) {
Willy Tarreau71241ab2012-12-27 11:30:54 +01002668 int ret;
2669
Willy Tarreau192252e2015-04-04 01:47:55 +02002670 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf285f542010-01-03 20:03:03 +01002671 ret = acl_pass(ret);
2672 if (rule->cond->pol == ACL_COND_UNLESS)
2673 ret = !ret;
Willy Tarreau71241ab2012-12-27 11:30:54 +01002674 if (!ret)
2675 continue;
Willy Tarreauf285f542010-01-03 20:03:03 +01002676 }
Willy Tarreau71241ab2012-12-27 11:30:54 +01002677 if (!http_apply_redirect_rule(rule, s, txn))
2678 goto return_bad_req;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02002679 goto done;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002680 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02002681
Willy Tarreau2be39392010-01-03 17:24:51 +01002682 /* POST requests may be accompanied with an "Expect: 100-Continue" header.
2683 * If this happens, then the data will not come immediately, so we must
2684 * send all what we have without waiting. Note that due to the small gain
2685 * in waiting for the body of the request, it's easier to simply put the
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002686 * CF_SEND_DONTWAIT flag any time. It's a one-shot flag so it will remove
Willy Tarreau2be39392010-01-03 17:24:51 +01002687 * itself once used.
2688 */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002689 req->flags |= CF_SEND_DONTWAIT;
Willy Tarreau2be39392010-01-03 17:24:51 +01002690
Willy Tarreaubbba2a82014-04-28 13:57:26 +02002691 done: /* done with this analyser, continue with next ones that the calling
2692 * points will have set, if any.
2693 */
Willy Tarreaubbba2a82014-04-28 13:57:26 +02002694 req->analyse_exp = TICK_ETERNITY;
Thierry FOURNIER7566e302014-08-22 06:55:26 +02002695 done_without_exp: /* done with this analyser, but dont reset the analyse_exp. */
2696 req->analysers &= ~an_bit;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002697 return 1;
Willy Tarreau11382812008-07-09 16:18:21 +02002698
Willy Tarreaubbba2a82014-04-28 13:57:26 +02002699 tarpit:
Willy Tarreau6a0bca92017-06-11 17:56:27 +02002700 /* Allow cookie logging
2701 */
2702 if (s->be->cookie_name || sess->fe->capture_name)
2703 manage_client_side_cookies(s, req);
2704
Willy Tarreaubbba2a82014-04-28 13:57:26 +02002705 /* When a connection is tarpitted, we use the tarpit timeout,
2706 * which may be the same as the connect timeout if unspecified.
2707 * If unset, then set it to zero because we really want it to
2708 * eventually expire. We build the tarpit as an analyser.
2709 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002710 channel_erase(&s->req);
Willy Tarreaubbba2a82014-04-28 13:57:26 +02002711
2712 /* wipe the request out so that we can drop the connection early
2713 * if the client closes first.
2714 */
2715 channel_dont_connect(req);
Bertrand Paquet83a2c3d2016-04-06 11:58:31 +02002716
Jarno Huuskonen800d1762017-03-06 14:56:36 +02002717 txn->status = http_err_codes[deny_status];
2718
Christopher Faulet0184ea72017-01-05 14:06:34 +01002719 req->analysers &= AN_REQ_FLT_END; /* remove switching rules etc... */
Willy Tarreaubbba2a82014-04-28 13:57:26 +02002720 req->analysers |= AN_REQ_HTTP_TARPIT;
2721 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit);
2722 if (!req->analyse_exp)
2723 req->analyse_exp = tick_add(now_ms, 0);
Willy Tarreau87b09662015-04-03 00:22:06 +02002724 stream_inc_http_err_ctr(s);
Olivier Houcharda798bf52019-03-08 18:52:00 +01002725 _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_req, 1);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002726 if (sess->fe != s->be)
Olivier Houcharda798bf52019-03-08 18:52:00 +01002727 _HA_ATOMIC_ADD(&s->be->be_counters.denied_req, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +02002728 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +01002729 _HA_ATOMIC_ADD(&sess->listener->counters->denied_req, 1);
Thierry FOURNIER7566e302014-08-22 06:55:26 +02002730 goto done_without_exp;
Willy Tarreaubbba2a82014-04-28 13:57:26 +02002731
2732 deny: /* this request was blocked (denied) */
Bertrand Paquet83a2c3d2016-04-06 11:58:31 +02002733
2734 /* Allow cookie logging
2735 */
2736 if (s->be->cookie_name || sess->fe->capture_name)
2737 manage_client_side_cookies(s, req);
2738
Willy Tarreau0b748332014-04-29 00:13:29 +02002739 txn->flags |= TX_CLDENY;
Willy Tarreau58727ec2016-05-25 16:23:59 +02002740 txn->status = http_err_codes[deny_status];
Willy Tarreaubbba2a82014-04-28 13:57:26 +02002741 s->logs.tv_request = now;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02002742 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau87b09662015-04-03 00:22:06 +02002743 stream_inc_http_err_ctr(s);
Olivier Houcharda798bf52019-03-08 18:52:00 +01002744 _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_req, 1);
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002745 if (sess->fe != s->be)
Olivier Houcharda798bf52019-03-08 18:52:00 +01002746 _HA_ATOMIC_ADD(&s->be->be_counters.denied_req, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +02002747 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +01002748 _HA_ATOMIC_ADD(&sess->listener->counters->denied_req, 1);
Willy Tarreaubbba2a82014-04-28 13:57:26 +02002749 goto return_prx_cond;
2750
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002751 return_bad_req:
2752 /* We centralize bad requests processing here */
2753 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
2754 /* we detected a parsing error. We want to archive this request
2755 * in the dedicated proxy area for later troubleshooting.
2756 */
Willy Tarreaufd9419d2018-09-07 18:01:03 +02002757 http_capture_bad_message(sess->fe, s, msg, msg->err_state, sess->fe);
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002758 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02002759
Willy Tarreau10e61cb2017-01-04 14:51:22 +01002760 txn->req.err_state = txn->req.msg_state;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002761 txn->req.msg_state = HTTP_MSG_ERROR;
2762 txn->status = 400;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02002763 http_reply_and_close(s, txn->status, http_error_message(s));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02002764
Olivier Houcharda798bf52019-03-08 18:52:00 +01002765 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +02002766 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +01002767 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Willy Tarreau6e4261e2007-09-18 18:36:05 +02002768
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002769 return_prx_cond:
Willy Tarreaue7dff022015-04-03 01:14:29 +02002770 if (!(s->flags & SF_ERR_MASK))
2771 s->flags |= SF_ERR_PRXCOND;
2772 if (!(s->flags & SF_FINST_MASK))
2773 s->flags |= SF_FINST_R;
Willy Tarreauf1221aa2006-12-17 22:14:12 +01002774
Christopher Faulet0184ea72017-01-05 14:06:34 +01002775 req->analysers &= AN_REQ_FLT_END;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002776 req->analyse_exp = TICK_ETERNITY;
2777 return 0;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01002778
2779 return_prx_yield:
2780 channel_dont_connect(req);
2781 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002782}
Willy Tarreau58f10d72006-12-04 02:26:12 +01002783
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002784/* This function performs all the processing enabled for the current request.
2785 * It returns 1 if the processing can continue on next analysers, or zero if it
2786 * needs more data, encounters an error, or wants to immediately abort the
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002787 * request. It relies on buffers flags, and updates s->req.analysers.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002788 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002789int http_process_request(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002790{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02002791 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02002792 struct http_txn *txn = s->txn;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002793 struct http_msg *msg = &txn->req;
Willy Tarreauee335e62015-04-21 18:15:13 +02002794 struct connection *cli_conn = objt_conn(strm_sess(s)->origin);
Willy Tarreau58f10d72006-12-04 02:26:12 +01002795
Christopher Faulete0768eb2018-10-03 16:38:02 +02002796 if (IS_HTX_STRM(s))
2797 return htx_process_request(s, req, an_bit);
2798
Willy Tarreau655dce92009-11-08 13:10:58 +01002799 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreau51aecc72009-07-12 09:47:04 +02002800 /* we need more data */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002801 channel_dont_connect(req);
Willy Tarreau51aecc72009-07-12 09:47:04 +02002802 return 0;
2803 }
2804
Christopher Faulet45073512018-07-20 10:16:29 +02002805 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n",
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002806 now_ms, __FUNCTION__,
2807 s,
2808 req,
2809 req->rex, req->wex,
2810 req->flags,
Christopher Faulet45073512018-07-20 10:16:29 +02002811 ci_data(req),
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002812 req->analysers);
Willy Tarreau06619262006-12-17 08:37:22 +01002813
Willy Tarreau59234e92008-11-30 23:51:27 +01002814 /*
2815 * Right now, we know that we have processed the entire headers
2816 * and that unwanted requests have been filtered out. We can do
2817 * whatever we want with the remaining request. Also, now we
2818 * may have separate values for ->fe, ->be.
2819 */
Willy Tarreau06619262006-12-17 08:37:22 +01002820
Willy Tarreau59234e92008-11-30 23:51:27 +01002821 /*
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002822 * If HTTP PROXY is set we simply get remote server address parsing
2823 * incoming request. Note that this requires that a connection is
2824 * allocated on the server side.
Willy Tarreau59234e92008-11-30 23:51:27 +01002825 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02002826 if ((s->be->options & PR_O_HTTP_PROXY) && !(s->flags & SF_ADDR_SET)) {
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002827 struct connection *conn;
Willy Tarreaue8df1e12013-12-16 14:30:55 +01002828 char *path;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002829
Willy Tarreau9471b8c2013-12-15 13:31:35 +01002830 /* Note that for now we don't reuse existing proxy connections */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002831 if (unlikely((conn = cs_conn(si_alloc_cs(&s->si[1], NULL))) == NULL)) {
Willy Tarreau10e61cb2017-01-04 14:51:22 +01002832 txn->req.err_state = txn->req.msg_state;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002833 txn->req.msg_state = HTTP_MSG_ERROR;
2834 txn->status = 500;
Christopher Faulet0184ea72017-01-05 14:06:34 +01002835 req->analysers &= AN_REQ_FLT_END;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02002836 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002837
Willy Tarreaue7dff022015-04-03 01:14:29 +02002838 if (!(s->flags & SF_ERR_MASK))
2839 s->flags |= SF_ERR_RESOURCE;
2840 if (!(s->flags & SF_FINST_MASK))
2841 s->flags |= SF_FINST_R;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +02002842
2843 return 0;
2844 }
Willy Tarreaue8df1e12013-12-16 14:30:55 +01002845
Willy Tarreau6b952c82018-09-10 17:45:34 +02002846 path = http_txn_get_path(txn);
Willy Tarreauf37954d2018-06-15 18:31:02 +02002847 if (url2sa(ci_head(req) + msg->sl.rq.u,
2848 path ? path - (ci_head(req) + msg->sl.rq.u) : msg->sl.rq.u_l,
Christopher Faulet11ebb202018-04-13 15:53:12 +02002849 &conn->addr.to, NULL) == -1)
2850 goto return_bad_req;
2851
Willy Tarreaue8df1e12013-12-16 14:30:55 +01002852 /* if the path was found, we have to remove everything between
Willy Tarreauf37954d2018-06-15 18:31:02 +02002853 * ci_head(req) + msg->sl.rq.u and path (excluded). If it was not
2854 * found, we need to replace from ci_head(req) + msg->sl.rq.u for
Willy Tarreaue8df1e12013-12-16 14:30:55 +01002855 * u_l characters by a single "/".
2856 */
2857 if (path) {
Willy Tarreauf37954d2018-06-15 18:31:02 +02002858 char *cur_ptr = ci_head(req);
Willy Tarreaue8df1e12013-12-16 14:30:55 +01002859 char *cur_end = cur_ptr + txn->req.sl.rq.l;
2860 int delta;
2861
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002862 delta = b_rep_blk(&req->buf, cur_ptr + msg->sl.rq.u, path, NULL, 0);
Willy Tarreaue8df1e12013-12-16 14:30:55 +01002863 http_msg_move_end(&txn->req, delta);
2864 cur_end += delta;
2865 if (http_parse_reqline(&txn->req, HTTP_MSG_RQMETH, cur_ptr, cur_end + 1, NULL, NULL) == NULL)
2866 goto return_bad_req;
2867 }
2868 else {
Willy Tarreauf37954d2018-06-15 18:31:02 +02002869 char *cur_ptr = ci_head(req);
Willy Tarreaue8df1e12013-12-16 14:30:55 +01002870 char *cur_end = cur_ptr + txn->req.sl.rq.l;
2871 int delta;
2872
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002873 delta = b_rep_blk(&req->buf, cur_ptr + msg->sl.rq.u,
Willy Tarreauf37954d2018-06-15 18:31:02 +02002874 cur_ptr + msg->sl.rq.u + msg->sl.rq.u_l, "/", 1);
Willy Tarreaue8df1e12013-12-16 14:30:55 +01002875 http_msg_move_end(&txn->req, delta);
2876 cur_end += delta;
2877 if (http_parse_reqline(&txn->req, HTTP_MSG_RQMETH, cur_ptr, cur_end + 1, NULL, NULL) == NULL)
2878 goto return_bad_req;
2879 }
Willy Tarreau59234e92008-11-30 23:51:27 +01002880 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01002881
Willy Tarreau59234e92008-11-30 23:51:27 +01002882 /*
Cyril Bontéb21570a2009-11-29 20:04:48 +01002883 * 7: Now we can work with the cookies.
Willy Tarreau59234e92008-11-30 23:51:27 +01002884 * Note that doing so might move headers in the request, but
2885 * the fields will stay coherent and the URI will not move.
2886 * This should only be performed in the backend.
2887 */
Bertrand Paquet83a2c3d2016-04-06 11:58:31 +02002888 if (s->be->cookie_name || sess->fe->capture_name)
Willy Tarreau59234e92008-11-30 23:51:27 +01002889 manage_client_side_cookies(s, req);
Willy Tarreau7ac51f62007-03-25 16:00:04 +02002890
William Lallemanda73203e2012-03-12 12:48:57 +01002891 /* add unique-id if "header-unique-id" is specified */
2892
Thierry Fournierf4011dd2016-03-29 17:23:51 +02002893 if (!LIST_ISEMPTY(&sess->fe->format_unique_id) && !s->unique_id) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01002894 if ((s->unique_id = pool_alloc(pool_head_uniqueid)) == NULL)
William Lallemand5b7ea3a2013-08-28 15:44:19 +02002895 goto return_bad_req;
2896 s->unique_id[0] = '\0';
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002897 build_logline(s, s->unique_id, UNIQUEID_LEN, &sess->fe->format_unique_id);
William Lallemand5b7ea3a2013-08-28 15:44:19 +02002898 }
William Lallemanda73203e2012-03-12 12:48:57 +01002899
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002900 if (sess->fe->header_unique_id && s->unique_id) {
Willy Tarreau5f6333c2018-08-22 05:14:37 +02002901 if (chunk_printf(&trash, "%s: %s", sess->fe->header_unique_id, s->unique_id) < 0)
William Lallemanda73203e2012-03-12 12:48:57 +01002902 goto return_bad_req;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002903 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.area, trash.data) < 0))
William Lallemanda73203e2012-03-12 12:48:57 +01002904 goto return_bad_req;
2905 }
2906
Cyril Bontéb21570a2009-11-29 20:04:48 +01002907 /*
Willy Tarreau59234e92008-11-30 23:51:27 +01002908 * 9: add X-Forwarded-For if either the frontend or the backend
2909 * asks for it.
2910 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002911 if ((sess->fe->options | s->be->options) & PR_O_FWDFOR) {
Willy Tarreau87cf5142011-08-19 22:57:24 +02002912 struct hdr_ctx ctx = { .idx = 0 };
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002913 if (!((sess->fe->options | s->be->options) & PR_O_FF_ALWAYS) &&
2914 http_find_header2(s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_name : sess->fe->fwdfor_hdr_name,
2915 s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_len : sess->fe->fwdfor_hdr_len,
Willy Tarreauf37954d2018-06-15 18:31:02 +02002916 ci_head(req), &txn->hdr_idx, &ctx)) {
Willy Tarreau87cf5142011-08-19 22:57:24 +02002917 /* The header is set to be added only if none is present
2918 * and we found it, so don't do anything.
2919 */
2920 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002921 else if (cli_conn && cli_conn->addr.from.ss_family == AF_INET) {
Willy Tarreau59234e92008-11-30 23:51:27 +01002922 /* Add an X-Forwarded-For header unless the source IP is
2923 * in the 'except' network range.
2924 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002925 if ((!sess->fe->except_mask.s_addr ||
2926 (((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr & sess->fe->except_mask.s_addr)
2927 != sess->fe->except_net.s_addr) &&
Willy Tarreau59234e92008-11-30 23:51:27 +01002928 (!s->be->except_mask.s_addr ||
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002929 (((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr.s_addr & s->be->except_mask.s_addr)
Willy Tarreau59234e92008-11-30 23:51:27 +01002930 != s->be->except_net.s_addr)) {
Willy Tarreau2a324282006-12-05 00:05:46 +01002931 int len;
Willy Tarreau59234e92008-11-30 23:51:27 +01002932 unsigned char *pn;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002933 pn = (unsigned char *)&((struct sockaddr_in *)&cli_conn->addr.from)->sin_addr;
Ross Westaf72a1d2008-08-03 10:51:45 +02002934
2935 /* Note: we rely on the backend to get the header name to be used for
2936 * x-forwarded-for, because the header is really meant for the backends.
2937 * However, if the backend did not specify any option, we have to rely
2938 * on the frontend's header name.
2939 */
Willy Tarreau59234e92008-11-30 23:51:27 +01002940 if (s->be->fwdfor_hdr_len) {
2941 len = s->be->fwdfor_hdr_len;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002942 memcpy(trash.area,
2943 s->be->fwdfor_hdr_name, len);
Ross Westaf72a1d2008-08-03 10:51:45 +02002944 } else {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002945 len = sess->fe->fwdfor_hdr_len;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002946 memcpy(trash.area,
2947 sess->fe->fwdfor_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01002948 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002949 len += snprintf(trash.area + len,
2950 trash.size - len,
2951 ": %d.%d.%d.%d", pn[0], pn[1],
2952 pn[2], pn[3]);
Willy Tarreauedcf6682008-11-30 23:15:34 +01002953
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002954 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.area, len) < 0))
Willy Tarreau06619262006-12-17 08:37:22 +01002955 goto return_bad_req;
Willy Tarreau2a324282006-12-05 00:05:46 +01002956 }
2957 }
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002958 else if (cli_conn && cli_conn->addr.from.ss_family == AF_INET6) {
Willy Tarreau59234e92008-11-30 23:51:27 +01002959 /* FIXME: for the sake of completeness, we should also support
2960 * 'except' here, although it is mostly useless in this case.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002961 */
Willy Tarreau59234e92008-11-30 23:51:27 +01002962 int len;
2963 char pn[INET6_ADDRSTRLEN];
2964 inet_ntop(AF_INET6,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002965 (const void *)&((struct sockaddr_in6 *)(&cli_conn->addr.from))->sin6_addr,
Willy Tarreau59234e92008-11-30 23:51:27 +01002966 pn, sizeof(pn));
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002967
Willy Tarreau59234e92008-11-30 23:51:27 +01002968 /* Note: we rely on the backend to get the header name to be used for
2969 * x-forwarded-for, because the header is really meant for the backends.
2970 * However, if the backend did not specify any option, we have to rely
2971 * on the frontend's header name.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002972 */
Willy Tarreau59234e92008-11-30 23:51:27 +01002973 if (s->be->fwdfor_hdr_len) {
2974 len = s->be->fwdfor_hdr_len;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002975 memcpy(trash.area, s->be->fwdfor_hdr_name,
2976 len);
Willy Tarreau59234e92008-11-30 23:51:27 +01002977 } else {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002978 len = sess->fe->fwdfor_hdr_len;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002979 memcpy(trash.area, sess->fe->fwdfor_hdr_name,
2980 len);
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02002981 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002982 len += snprintf(trash.area + len, trash.size - len,
2983 ": %s", pn);
Willy Tarreauadfb8562008-08-11 15:24:42 +02002984
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002985 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.area, len) < 0))
Willy Tarreau59234e92008-11-30 23:51:27 +01002986 goto return_bad_req;
2987 }
2988 }
2989
2990 /*
Maik Broemme2850cb42009-04-17 18:53:21 +02002991 * 10: add X-Original-To if either the frontend or the backend
2992 * asks for it.
2993 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002994 if ((sess->fe->options | s->be->options) & PR_O_ORGTO) {
Maik Broemme2850cb42009-04-17 18:53:21 +02002995
2996 /* FIXME: don't know if IPv6 can handle that case too. */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02002997 if (cli_conn && cli_conn->addr.from.ss_family == AF_INET) {
Maik Broemme2850cb42009-04-17 18:53:21 +02002998 /* Add an X-Original-To header unless the destination IP is
2999 * in the 'except' network range.
3000 */
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003001 conn_get_to_addr(cli_conn);
Maik Broemme2850cb42009-04-17 18:53:21 +02003002
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003003 if (cli_conn->addr.to.ss_family == AF_INET &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003004 ((!sess->fe->except_mask_to.s_addr ||
3005 (((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr.s_addr & sess->fe->except_mask_to.s_addr)
3006 != sess->fe->except_to.s_addr) &&
Emeric Brun5bd86a82010-10-22 17:23:04 +02003007 (!s->be->except_mask_to.s_addr ||
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003008 (((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr.s_addr & s->be->except_mask_to.s_addr)
Emeric Brun5bd86a82010-10-22 17:23:04 +02003009 != s->be->except_to.s_addr))) {
Maik Broemme2850cb42009-04-17 18:53:21 +02003010 int len;
3011 unsigned char *pn;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02003012 pn = (unsigned char *)&((struct sockaddr_in *)&cli_conn->addr.to)->sin_addr;
Maik Broemme2850cb42009-04-17 18:53:21 +02003013
3014 /* Note: we rely on the backend to get the header name to be used for
3015 * x-original-to, because the header is really meant for the backends.
3016 * However, if the backend did not specify any option, we have to rely
3017 * on the frontend's header name.
3018 */
3019 if (s->be->orgto_hdr_len) {
3020 len = s->be->orgto_hdr_len;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003021 memcpy(trash.area,
3022 s->be->orgto_hdr_name, len);
Maik Broemme2850cb42009-04-17 18:53:21 +02003023 } else {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003024 len = sess->fe->orgto_hdr_len;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003025 memcpy(trash.area,
3026 sess->fe->orgto_hdr_name, len);
Willy Tarreaub86db342009-11-30 11:50:16 +01003027 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003028 len += snprintf(trash.area + len,
3029 trash.size - len,
3030 ": %d.%d.%d.%d", pn[0], pn[1],
3031 pn[2], pn[3]);
Maik Broemme2850cb42009-04-17 18:53:21 +02003032
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003033 if (unlikely(http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.area, len) < 0))
Maik Broemme2850cb42009-04-17 18:53:21 +02003034 goto return_bad_req;
3035 }
3036 }
3037 }
3038
Willy Tarreau50fc7772012-11-11 22:19:57 +01003039 /* 11: add "Connection: close" or "Connection: keep-alive" if needed and not yet set.
3040 * If an "Upgrade" token is found, the header is left untouched in order not to have
3041 * to deal with some servers bugs : some of them fail an Upgrade if anything but
3042 * "Upgrade" is present in the Connection header.
3043 */
Christopher Faulet315b39c2018-09-21 16:26:19 +02003044 if (!(txn->flags & TX_HDR_CONN_UPG) && (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) {
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003045 unsigned int want_flags = 0;
3046
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003047 if (msg->flags & HTTP_MSGF_VER_11) {
Christopher Faulet315b39c2018-09-21 16:26:19 +02003048 if ((txn->flags & TX_CON_WANT_MSK) >= TX_CON_WANT_SCL &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003049 !((sess->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003050 want_flags |= TX_CON_CLO_SET;
3051 } else {
Christopher Faulet315b39c2018-09-21 16:26:19 +02003052 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003053 ((sess->fe->options2|s->be->options2) & PR_O2_FAKE_KA))
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003054 want_flags |= TX_CON_KAL_SET;
3055 }
3056
3057 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
Willy Tarreau6acf7c92012-03-09 13:30:45 +01003058 http_change_connection_header(txn, msg, want_flags);
Willy Tarreau59234e92008-11-30 23:51:27 +01003059 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01003060
Willy Tarreaubbf0b372010-01-18 16:54:40 +01003061
Willy Tarreau522d6c02009-12-06 18:49:18 +01003062 /* If we have no server assigned yet and we're balancing on url_param
3063 * with a POST request, we may be interested in checking the body for
3064 * that parameter. This will be done in another analyser.
Willy Tarreau59234e92008-11-30 23:51:27 +01003065 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02003066 if (!(s->flags & (SF_ASSIGNED|SF_DIRECT)) &&
Willy Tarreau089eaa02019-01-14 15:17:46 +01003067 s->txn->meth == HTTP_METH_POST &&
3068 (s->be->lbprm.algo & BE_LB_ALGO) == BE_LB_ALGO_PH &&
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003069 (msg->flags & (HTTP_MSGF_CNT_LEN|HTTP_MSGF_TE_CHNK))) {
Willy Tarreau8263d2b2012-08-28 00:06:31 +02003070 channel_dont_connect(req);
Willy Tarreau522d6c02009-12-06 18:49:18 +01003071 req->analysers |= AN_REQ_HTTP_BODY;
Willy Tarreau59234e92008-11-30 23:51:27 +01003072 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003073
Christopher Fauletbe821b92017-03-30 11:21:53 +02003074 req->analysers &= ~AN_REQ_FLT_XFER_DATA;
3075 req->analysers |= AN_REQ_HTTP_XFER_BODY;
Willy Tarreau1a18b542018-12-11 16:37:42 +01003076
Christopher Fauletbe821b92017-03-30 11:21:53 +02003077 /* We expect some data from the client. Unless we know for sure
3078 * we already have a full request, we have to re-enable quick-ack
3079 * in case we previously disabled it, otherwise we might cause
3080 * the client to delay further data.
3081 */
3082 if ((sess->listener->options & LI_O_NOQUICKACK) &&
Christopher Fauletbe821b92017-03-30 11:21:53 +02003083 ((msg->flags & HTTP_MSGF_TE_CHNK) ||
Willy Tarreauf37954d2018-06-15 18:31:02 +02003084 (msg->body_len > ci_data(req) - txn->req.eoh - 2)))
Willy Tarreau1a18b542018-12-11 16:37:42 +01003085 conn_set_quickack(cli_conn, 1);
Willy Tarreau03945942009-12-22 16:50:27 +01003086
Willy Tarreau59234e92008-11-30 23:51:27 +01003087 /*************************************************************
3088 * OK, that's finished for the headers. We have done what we *
3089 * could. Let's switch to the DATA state. *
3090 ************************************************************/
Willy Tarreau522d6c02009-12-06 18:49:18 +01003091 req->analyse_exp = TICK_ETERNITY;
3092 req->analysers &= ~an_bit;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003093
Willy Tarreau59234e92008-11-30 23:51:27 +01003094 s->logs.tv_request = now;
Willy Tarreau59234e92008-11-30 23:51:27 +01003095 /* OK let's go on with the BODY now */
3096 return 1;
Willy Tarreau06619262006-12-17 08:37:22 +01003097
Willy Tarreau59234e92008-11-30 23:51:27 +01003098 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau4076a152009-04-02 15:18:36 +02003099 if (unlikely(msg->msg_state == HTTP_MSG_ERROR) || msg->err_pos >= 0) {
Willy Tarreauf073a832009-03-01 23:21:47 +01003100 /* we detected a parsing error. We want to archive this request
3101 * in the dedicated proxy area for later troubleshooting.
3102 */
Willy Tarreaufd9419d2018-09-07 18:01:03 +02003103 http_capture_bad_message(sess->fe, s, msg, msg->err_state, sess->fe);
Willy Tarreauf073a832009-03-01 23:21:47 +01003104 }
Willy Tarreau4076a152009-04-02 15:18:36 +02003105
Willy Tarreau10e61cb2017-01-04 14:51:22 +01003106 txn->req.err_state = txn->req.msg_state;
Willy Tarreau59234e92008-11-30 23:51:27 +01003107 txn->req.msg_state = HTTP_MSG_ERROR;
3108 txn->status = 400;
Christopher Faulet0184ea72017-01-05 14:06:34 +01003109 req->analysers &= AN_REQ_FLT_END;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02003110 http_reply_and_close(s, txn->status, http_error_message(s));
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003111
Olivier Houcharda798bf52019-03-08 18:52:00 +01003112 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +02003113 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +01003114 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Willy Tarreauadfb8562008-08-11 15:24:42 +02003115
Willy Tarreaue7dff022015-04-03 01:14:29 +02003116 if (!(s->flags & SF_ERR_MASK))
3117 s->flags |= SF_ERR_PRXCOND;
3118 if (!(s->flags & SF_FINST_MASK))
3119 s->flags |= SF_FINST_R;
Willy Tarreaudafde432008-08-17 01:00:46 +02003120 return 0;
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02003121}
Willy Tarreauadfb8562008-08-11 15:24:42 +02003122
Willy Tarreau60b85b02008-11-30 23:28:40 +01003123/* This function is an analyser which processes the HTTP tarpit. It always
3124 * returns zero, at the beginning because it prevents any other processing
3125 * from occurring, and at the end because it terminates the request.
3126 */
Willy Tarreau87b09662015-04-03 00:22:06 +02003127int http_process_tarpit(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau60b85b02008-11-30 23:28:40 +01003128{
Willy Tarreaueee5b512015-04-03 23:46:31 +02003129 struct http_txn *txn = s->txn;
Willy Tarreau60b85b02008-11-30 23:28:40 +01003130
Christopher Faulete0768eb2018-10-03 16:38:02 +02003131 if (IS_HTX_STRM(s))
3132 return htx_process_tarpit(s, req, an_bit);
3133
Willy Tarreau60b85b02008-11-30 23:28:40 +01003134 /* This connection is being tarpitted. The CLIENT side has
3135 * already set the connect expiration date to the right
3136 * timeout. We just have to check that the client is still
3137 * there and that the timeout has not expired.
3138 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02003139 channel_dont_connect(req);
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02003140 if ((req->flags & (CF_SHUTR|CF_READ_ERROR)) == 0 &&
Willy Tarreau60b85b02008-11-30 23:28:40 +01003141 !tick_is_expired(req->analyse_exp, now_ms))
3142 return 0;
3143
3144 /* We will set the queue timer to the time spent, just for
3145 * logging purposes. We fake a 500 server error, so that the
3146 * attacker will not suspect his connection has been tarpitted.
3147 * It will not cause trouble to the logs because we can exclude
3148 * the tarpitted connections by filtering on the 'PT' status flags.
3149 */
Willy Tarreau60b85b02008-11-30 23:28:40 +01003150 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
3151
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02003152 if (!(req->flags & CF_READ_ERROR))
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02003153 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau60b85b02008-11-30 23:28:40 +01003154
Christopher Faulet0184ea72017-01-05 14:06:34 +01003155 req->analysers &= AN_REQ_FLT_END;
Willy Tarreau60b85b02008-11-30 23:28:40 +01003156 req->analyse_exp = TICK_ETERNITY;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003157
Willy Tarreaue7dff022015-04-03 01:14:29 +02003158 if (!(s->flags & SF_ERR_MASK))
3159 s->flags |= SF_ERR_PRXCOND;
3160 if (!(s->flags & SF_FINST_MASK))
3161 s->flags |= SF_FINST_T;
Willy Tarreau60b85b02008-11-30 23:28:40 +01003162 return 0;
3163}
3164
Willy Tarreau5a8f9472014-04-10 11:16:06 +02003165/* This function is an analyser which waits for the HTTP request body. It waits
3166 * for either the buffer to be full, or the full advertised contents to have
3167 * reached the buffer. It must only be called after the standard HTTP request
3168 * processing has occurred, because it expects the request to be parsed and will
3169 * look for the Expect header. It may send a 100-Continue interim response. It
3170 * takes in input any state starting from HTTP_MSG_BODY and leaves with one of
3171 * HTTP_MSG_CHK_SIZE, HTTP_MSG_DATA or HTTP_MSG_TRAILERS. It returns zero if it
3172 * needs to read more data, or 1 once it has completed its analysis.
Willy Tarreaud34af782008-11-30 23:36:37 +01003173 */
Willy Tarreau87b09662015-04-03 00:22:06 +02003174int http_wait_for_request_body(struct stream *s, struct channel *req, int an_bit)
Willy Tarreaud34af782008-11-30 23:36:37 +01003175{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02003176 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02003177 struct http_txn *txn = s->txn;
3178 struct http_msg *msg = &s->txn->req;
Willy Tarreaud34af782008-11-30 23:36:37 +01003179
Christopher Faulete0768eb2018-10-03 16:38:02 +02003180 if (IS_HTX_STRM(s))
3181 return htx_wait_for_request_body(s, req, an_bit);
3182
Christopher Faulet87451fd2019-03-01 11:16:34 +01003183 if (msg->msg_state < HTTP_MSG_BODY)
3184 goto missing_data;
3185
Willy Tarreaud34af782008-11-30 23:36:37 +01003186 /* We have to parse the HTTP request body to find any required data.
3187 * "balance url_param check_post" should have been the only way to get
3188 * into this. We were brought here after HTTP header analysis, so all
3189 * related structures are ready.
3190 */
Willy Tarreau890988f2014-04-10 11:59:33 +02003191 if (msg->msg_state < HTTP_MSG_CHUNK_SIZE) {
Christopher Faulet87451fd2019-03-01 11:16:34 +01003192 http_handle_expect_hdr(s, req, msg);
Willy Tarreau522d6c02009-12-06 18:49:18 +01003193
Willy Tarreaufa4a03c2012-03-09 21:28:54 +01003194 /* we have msg->sov which points to the first byte of message body.
Willy Tarreauf37954d2018-06-15 18:31:02 +02003195 * ci_head(req) still points to the beginning of the message. We
Willy Tarreau877e78d2013-04-07 18:48:08 +02003196 * must save the body in msg->next because it survives buffer
3197 * re-alignments.
Willy Tarreaud98cf932009-12-27 22:54:55 +01003198 */
Willy Tarreauea1175a2012-03-05 15:52:30 +01003199 msg->next = msg->sov;
Willy Tarreaua458b672012-03-05 11:17:50 +01003200
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01003201 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau522d6c02009-12-06 18:49:18 +01003202 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
3203 else
3204 msg->msg_state = HTTP_MSG_DATA;
3205 }
3206
Willy Tarreau890988f2014-04-10 11:59:33 +02003207 if (!(msg->flags & HTTP_MSGF_TE_CHNK)) {
3208 /* We're in content-length mode, we just have to wait for enough data. */
Willy Tarreaue115b492015-05-01 23:05:14 +02003209 if (http_body_bytes(msg) < msg->body_len)
Willy Tarreau890988f2014-04-10 11:59:33 +02003210 goto missing_data;
3211
3212 /* OK we have everything we need now */
3213 goto http_end;
3214 }
3215
3216 /* OK here we're parsing a chunked-encoded message */
3217
Willy Tarreau522d6c02009-12-06 18:49:18 +01003218 if (msg->msg_state == HTTP_MSG_CHUNK_SIZE) {
Willy Tarreau124d9912011-03-01 20:30:48 +01003219 /* read the chunk size and assign it to ->chunk_len, then
Willy Tarreaua458b672012-03-05 11:17:50 +01003220 * set ->sov and ->next to point to the body and switch to DATA or
Willy Tarreaud98cf932009-12-27 22:54:55 +01003221 * TRAILERS state.
Willy Tarreau115acb92009-12-26 13:56:06 +01003222 */
Willy Tarreaue56cdd32017-09-21 08:36:33 +02003223 unsigned int chunk;
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003224 int ret = h1_parse_chunk_size(&req->buf, co_data(req) + msg->next, c_data(req), &chunk);
Willy Tarreaud34af782008-11-30 23:36:37 +01003225
Willy Tarreau115acb92009-12-26 13:56:06 +01003226 if (!ret)
3227 goto missing_data;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003228 else if (ret < 0) {
Willy Tarreauf37954d2018-06-15 18:31:02 +02003229 msg->err_pos = ci_data(req) + ret;
Willy Tarreaue56cdd32017-09-21 08:36:33 +02003230 if (msg->err_pos < 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003231 msg->err_pos += req->buf.size;
Willy Tarreau87b09662015-04-03 00:22:06 +02003232 stream_inc_http_err_ctr(s);
Willy Tarreau522d6c02009-12-06 18:49:18 +01003233 goto return_bad_req;
Willy Tarreauda7ff642010-06-23 11:44:09 +02003234 }
Willy Tarreaue56cdd32017-09-21 08:36:33 +02003235
3236 msg->chunk_len = chunk;
3237 msg->body_len += chunk;
3238
3239 msg->sol = ret;
Christopher Faulet113f7de2015-12-14 14:52:13 +01003240 msg->next += ret;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003241 msg->msg_state = msg->chunk_len ? HTTP_MSG_DATA : HTTP_MSG_TRAILERS;
Willy Tarreaud34af782008-11-30 23:36:37 +01003242 }
3243
Willy Tarreaud98cf932009-12-27 22:54:55 +01003244 /* Now we're in HTTP_MSG_DATA or HTTP_MSG_TRAILERS state.
Willy Tarreaue115b492015-05-01 23:05:14 +02003245 * We have the first data byte is in msg->sov + msg->sol. We're waiting
3246 * for at least a whole chunk or the whole content length bytes after
3247 * msg->sov + msg->sol.
Willy Tarreaud34af782008-11-30 23:36:37 +01003248 */
Willy Tarreau890988f2014-04-10 11:59:33 +02003249 if (msg->msg_state == HTTP_MSG_TRAILERS)
3250 goto http_end;
3251
Willy Tarreaue115b492015-05-01 23:05:14 +02003252 if (http_body_bytes(msg) >= msg->body_len) /* we have enough bytes now */
Willy Tarreau522d6c02009-12-06 18:49:18 +01003253 goto http_end;
3254
3255 missing_data:
Willy Tarreau31a19952014-04-10 11:50:37 +02003256 /* we get here if we need to wait for more data. If the buffer is full,
3257 * we have the maximum we can expect.
3258 */
Willy Tarreau23752332018-06-15 14:54:53 +02003259 if (channel_full(req, global.tune.maxrewrite))
Willy Tarreau31a19952014-04-10 11:50:37 +02003260 goto http_end;
Willy Tarreau115acb92009-12-26 13:56:06 +01003261
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02003262 if ((req->flags & CF_READ_TIMEOUT) || tick_is_expired(req->analyse_exp, now_ms)) {
Willy Tarreau522d6c02009-12-06 18:49:18 +01003263 txn->status = 408;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02003264 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau79ebac62010-06-07 13:47:49 +02003265
Willy Tarreaue7dff022015-04-03 01:14:29 +02003266 if (!(s->flags & SF_ERR_MASK))
3267 s->flags |= SF_ERR_CLITO;
3268 if (!(s->flags & SF_FINST_MASK))
3269 s->flags |= SF_FINST_D;
Willy Tarreau522d6c02009-12-06 18:49:18 +01003270 goto return_err_msg;
Willy Tarreaud34af782008-11-30 23:36:37 +01003271 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01003272
3273 /* we get here if we need to wait for more data */
Willy Tarreau31a19952014-04-10 11:50:37 +02003274 if (!(req->flags & (CF_SHUTR | CF_READ_ERROR))) {
Willy Tarreaud34af782008-11-30 23:36:37 +01003275 /* Not enough data. We'll re-use the http-request
3276 * timeout here. Ideally, we should set the timeout
3277 * relative to the accept() date. We just set the
3278 * request timeout once at the beginning of the
3279 * request.
3280 */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02003281 channel_dont_connect(req);
Willy Tarreaud34af782008-11-30 23:36:37 +01003282 if (!tick_isset(req->analyse_exp))
Willy Tarreaucd7afc02009-07-12 10:03:17 +02003283 req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq);
Willy Tarreaud34af782008-11-30 23:36:37 +01003284 return 0;
3285 }
Willy Tarreau522d6c02009-12-06 18:49:18 +01003286
3287 http_end:
3288 /* The situation will not evolve, so let's give up on the analysis. */
3289 s->logs.tv_request = now; /* update the request timer to reflect full request */
3290 req->analysers &= ~an_bit;
3291 req->analyse_exp = TICK_ETERNITY;
3292 return 1;
3293
3294 return_bad_req: /* let's centralize all bad requests */
Willy Tarreau10e61cb2017-01-04 14:51:22 +01003295 txn->req.err_state = txn->req.msg_state;
Willy Tarreau522d6c02009-12-06 18:49:18 +01003296 txn->req.msg_state = HTTP_MSG_ERROR;
3297 txn->status = 400;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02003298 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau522d6c02009-12-06 18:49:18 +01003299
Willy Tarreaue7dff022015-04-03 01:14:29 +02003300 if (!(s->flags & SF_ERR_MASK))
3301 s->flags |= SF_ERR_PRXCOND;
3302 if (!(s->flags & SF_FINST_MASK))
3303 s->flags |= SF_FINST_R;
Willy Tarreau79ebac62010-06-07 13:47:49 +02003304
Willy Tarreau522d6c02009-12-06 18:49:18 +01003305 return_err_msg:
Christopher Faulet0184ea72017-01-05 14:06:34 +01003306 req->analysers &= AN_REQ_FLT_END;
Olivier Houcharda798bf52019-03-08 18:52:00 +01003307 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +02003308 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +01003309 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Willy Tarreau522d6c02009-12-06 18:49:18 +01003310 return 0;
Willy Tarreaud34af782008-11-30 23:36:37 +01003311}
3312
Willy Tarreaud1de8af2012-05-18 22:12:14 +02003313/* send a server's name with an outgoing request over an established connection.
3314 * Note: this function is designed to be called once the request has been scheduled
3315 * for being forwarded. This is the reason why it rewinds the buffer before
3316 * proceeding.
3317 */
Christopher Faulet27a3dc82018-10-23 15:34:07 +02003318int http_send_name_header(struct stream *s, struct proxy* be, const char* srv_name) {
Mark Lamourinec2247f02012-01-04 13:02:01 -05003319
3320 struct hdr_ctx ctx;
Christopher Faulet27a3dc82018-10-23 15:34:07 +02003321 struct http_txn *txn = s->txn;
Mark Lamourinec2247f02012-01-04 13:02:01 -05003322 char *hdr_name = be->server_id_hdr_name;
3323 int hdr_name_len = be->server_id_hdr_len;
Willy Tarreau394db372012-10-12 22:40:39 +02003324 struct channel *chn = txn->req.chn;
Mark Lamourinec2247f02012-01-04 13:02:01 -05003325 char *hdr_val;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02003326 unsigned int old_o, old_i;
Mark Lamourinec2247f02012-01-04 13:02:01 -05003327
Christopher Faulet64159df2018-10-24 21:15:35 +02003328 if (IS_HTX_STRM(s))
3329 return htx_send_name_header(s, be, srv_name);
William Lallemandd9e90662012-01-30 17:27:17 +01003330 ctx.idx = 0;
3331
Willy Tarreau211cdec2014-04-17 20:18:08 +02003332 old_o = http_hdr_rewind(&txn->req);
Willy Tarreaud1de8af2012-05-18 22:12:14 +02003333 if (old_o) {
3334 /* The request was already skipped, let's restore it */
Willy Tarreaubcbd3932018-06-06 07:13:22 +02003335 c_rew(chn, old_o);
Willy Tarreau877e78d2013-04-07 18:48:08 +02003336 txn->req.next += old_o;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003337 txn->req.sov += old_o;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02003338 }
3339
Willy Tarreauf37954d2018-06-15 18:31:02 +02003340 old_i = ci_data(chn);
3341 while (http_find_header2(hdr_name, hdr_name_len, ci_head(txn->req.chn), &txn->hdr_idx, &ctx)) {
Mark Lamourinec2247f02012-01-04 13:02:01 -05003342 /* remove any existing values from the header */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01003343 http_remove_header2(&txn->req, &txn->hdr_idx, &ctx);
Mark Lamourinec2247f02012-01-04 13:02:01 -05003344 }
3345
3346 /* Add the new header requested with the server value */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003347 hdr_val = trash.area;
Mark Lamourinec2247f02012-01-04 13:02:01 -05003348 memcpy(hdr_val, hdr_name, hdr_name_len);
3349 hdr_val += hdr_name_len;
3350 *hdr_val++ = ':';
3351 *hdr_val++ = ' ';
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003352 hdr_val += strlcpy2(hdr_val, srv_name,
3353 trash.area + trash.size - hdr_val);
3354 http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.area,
3355 hdr_val - trash.area);
Mark Lamourinec2247f02012-01-04 13:02:01 -05003356
Willy Tarreaud1de8af2012-05-18 22:12:14 +02003357 if (old_o) {
3358 /* If this was a forwarded request, we must readjust the amount of
3359 * data to be forwarded in order to take into account the size
Willy Tarreau877e78d2013-04-07 18:48:08 +02003360 * variations. Note that the current state is >= HTTP_MSG_BODY,
3361 * so we don't have to adjust ->sol.
Willy Tarreaud1de8af2012-05-18 22:12:14 +02003362 */
Willy Tarreauf37954d2018-06-15 18:31:02 +02003363 old_o += ci_data(chn) - old_i;
Willy Tarreaubcbd3932018-06-06 07:13:22 +02003364 c_adv(chn, old_o);
Willy Tarreau877e78d2013-04-07 18:48:08 +02003365 txn->req.next -= old_o;
3366 txn->req.sov -= old_o;
Willy Tarreaud1de8af2012-05-18 22:12:14 +02003367 }
3368
Mark Lamourinec2247f02012-01-04 13:02:01 -05003369 return 0;
3370}
3371
Willy Tarreau610ecce2010-01-04 21:15:02 +01003372/* Terminate current transaction and prepare a new one. This is very tricky
3373 * right now but it works.
3374 */
Willy Tarreau87b09662015-04-03 00:22:06 +02003375void http_end_txn_clean_session(struct stream *s)
Willy Tarreau610ecce2010-01-04 21:15:02 +01003376{
Willy Tarreaueee5b512015-04-03 23:46:31 +02003377 int prev_status = s->txn->status;
Willy Tarreaud0d8da92015-04-04 02:10:38 +02003378 struct proxy *fe = strm_fe(s);
Willy Tarreau858b1032015-12-07 17:04:59 +01003379 struct proxy *be = s->be;
Olivier Houchard9aaf7782017-09-13 18:30:23 +02003380 struct conn_stream *cs;
Willy Tarreau323a2d92015-08-04 19:00:17 +02003381 struct connection *srv_conn;
3382 struct server *srv;
Willy Tarreau449d74a2015-08-05 17:16:33 +02003383 unsigned int prev_flags = s->txn->flags;
Willy Tarreau068621e2013-12-23 15:11:25 +01003384
Willy Tarreau610ecce2010-01-04 21:15:02 +01003385 /* FIXME: We need a more portable way of releasing a backend's and a
3386 * server's connections. We need a safer way to reinitialize buffer
3387 * flags. We also need a more accurate method for computing per-request
3388 * data.
3389 */
Olivier Houchard9aaf7782017-09-13 18:30:23 +02003390 cs = objt_cs(s->si[1].end);
3391 srv_conn = cs_conn(cs);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003392
Willy Tarreau4213a112013-12-15 10:25:42 +01003393 /* unless we're doing keep-alive, we want to quickly close the connection
3394 * to the server.
3395 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02003396 if (((s->txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) ||
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01003397 !si_conn_ready(&s->si[1]) || !srv_conn->owner) {
Willy Tarreau350f4872014-11-28 14:42:25 +01003398 s->si[1].flags |= SI_FL_NOLINGER | SI_FL_NOHALF;
3399 si_shutr(&s->si[1]);
3400 si_shutw(&s->si[1]);
Willy Tarreau4213a112013-12-15 10:25:42 +01003401 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01003402
Willy Tarreaue7dff022015-04-03 01:14:29 +02003403 if (s->flags & SF_BE_ASSIGNED) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01003404 _HA_ATOMIC_SUB(&be->beconn, 1);
Willy Tarreau2d5cd472012-03-01 23:34:37 +01003405 if (unlikely(s->srv_conn))
3406 sess_change_server(s, NULL);
3407 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01003408
3409 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau87b09662015-04-03 00:22:06 +02003410 stream_process_counters(s);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003411
Willy Tarreaueee5b512015-04-03 23:46:31 +02003412 if (s->txn->status) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01003413 int n;
3414
Willy Tarreaueee5b512015-04-03 23:46:31 +02003415 n = s->txn->status / 100;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003416 if (n < 1 || n > 5)
3417 n = 0;
3418
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003419 if (fe->mode == PR_MODE_HTTP) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01003420 _HA_ATOMIC_ADD(&fe->fe_counters.p.http.rsp[n], 1);
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01003421 }
Willy Tarreaue7dff022015-04-03 01:14:29 +02003422 if ((s->flags & SF_BE_ASSIGNED) &&
Willy Tarreau858b1032015-12-07 17:04:59 +01003423 (be->mode == PR_MODE_HTTP)) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01003424 _HA_ATOMIC_ADD(&be->be_counters.p.http.rsp[n], 1);
3425 _HA_ATOMIC_ADD(&be->be_counters.p.http.cum_req, 1);
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01003426 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01003427 }
3428
3429 /* don't count other requests' data */
Willy Tarreauf37954d2018-06-15 18:31:02 +02003430 s->logs.bytes_in -= ci_data(&s->req);
3431 s->logs.bytes_out -= ci_data(&s->res);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003432
Willy Tarreau66425e32018-07-25 06:55:12 +02003433 /* we may need to know the position in the queue */
3434 pendconn_free(s);
3435
Willy Tarreau610ecce2010-01-04 21:15:02 +01003436 /* let's do a final log if we need it */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003437 if (!LIST_ISEMPTY(&fe->logformat) && s->logs.logwait &&
Willy Tarreaue7dff022015-04-03 01:14:29 +02003438 !(s->flags & SF_MONITOR) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003439 (!(fe->options & PR_O_NULLNOLOG) || s->req.total)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01003440 s->do_log(s);
3441 }
3442
Willy Tarreaud713bcc2014-06-25 15:36:04 +02003443 /* stop tracking content-based counters */
Willy Tarreau87b09662015-04-03 00:22:06 +02003444 stream_stop_content_counters(s);
3445 stream_update_time_stats(s);
Willy Tarreau4bfc5802014-06-17 12:19:18 +02003446
Willy Tarreau9efd7452018-05-31 14:48:54 +02003447 /* reset the profiling counter */
3448 s->task->calls = 0;
3449 s->task->cpu_time = 0;
3450 s->task->lat_time = 0;
3451 s->task->call_date = (profiling & HA_PROF_TASKS) ? now_mono_time() : 0;
3452
Willy Tarreau610ecce2010-01-04 21:15:02 +01003453 s->logs.accept_date = date; /* user-visible date for logging */
3454 s->logs.tv_accept = now; /* corrected date for internal use */
Thierry FOURNIER / OZON.IO4cac3592016-07-28 17:19:45 +02003455 s->logs.t_handshake = 0; /* There are no handshake in keep alive connection. */
3456 s->logs.t_idle = -1;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003457 tv_zero(&s->logs.tv_request);
3458 s->logs.t_queue = -1;
3459 s->logs.t_connect = -1;
3460 s->logs.t_data = -1;
3461 s->logs.t_close = 0;
Patrick Hemmerffe5e8c2018-05-11 12:52:31 -04003462 s->logs.prx_queue_pos = 0; /* we get the number of pending conns before us */
3463 s->logs.srv_queue_pos = 0; /* we will get this number soon */
Willy Tarreau610ecce2010-01-04 21:15:02 +01003464
Willy Tarreauf37954d2018-06-15 18:31:02 +02003465 s->logs.bytes_in = s->req.total = ci_data(&s->req);
3466 s->logs.bytes_out = s->res.total = ci_data(&s->res);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003467
Willy Tarreau3fdb3662012-11-12 00:42:33 +01003468 if (objt_server(s->target)) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02003469 if (s->flags & SF_CURR_SESS) {
3470 s->flags &= ~SF_CURR_SESS;
Olivier Houcharda798bf52019-03-08 18:52:00 +01003471 _HA_ATOMIC_SUB(&__objt_server(s->target)->cur_sess, 1);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003472 }
Willy Tarreau858b1032015-12-07 17:04:59 +01003473 if (may_dequeue_tasks(objt_server(s->target), be))
Willy Tarreau3fdb3662012-11-12 00:42:33 +01003474 process_srv_queue(objt_server(s->target));
Willy Tarreau610ecce2010-01-04 21:15:02 +01003475 }
3476
Willy Tarreau3fdb3662012-11-12 00:42:33 +01003477 s->target = NULL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003478
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01003479
3480 /* If we're doing keepalive, first call the mux detach() method
3481 * to let it know we want to detach without freing the connection.
3482 * We then can call si_release_endpoint() to destroy the conn_stream
Willy Tarreau4213a112013-12-15 10:25:42 +01003483 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02003484 if (((s->txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) ||
Olivier Houcharda70e1762018-12-13 18:01:00 +01003485 !si_conn_ready(&s->si[1]) ||
3486 (srv_conn && srv_conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)))
Willy Tarreau323a2d92015-08-04 19:00:17 +02003487 srv_conn = NULL;
Olivier Houchard985f1392018-11-30 17:31:52 +01003488 else if (!srv_conn->owner) {
3489 srv_conn->owner = s->sess;
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003490 /* Add it unconditionally to the session list, it'll be removed
3491 * later if needed by session_check_idle_conn(), once we'll
3492 * have released the endpoint and know if it no longer has
3493 * attached streams, and so an idling connection
3494 */
Olivier Houchard351411f2018-12-27 17:20:54 +01003495 if (!session_add_conn(s->sess, srv_conn, s->target)) {
3496 srv_conn->owner = NULL;
3497 /* Try to add the connection to the server idle list.
3498 * If it fails, as the connection no longer has an
3499 * owner, it will be destroy later by
3500 * si_release_endpoint(), anyway
3501 */
3502 srv_add_to_idle_list(objt_server(srv_conn->target), srv_conn);
3503 srv_conn = NULL;
3504
3505 }
Olivier Houchard985f1392018-11-30 17:31:52 +01003506 }
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01003507 si_release_endpoint(&s->si[1]);
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +01003508 if (srv_conn && srv_conn->owner == s->sess) {
3509 if (session_check_idle_conn(s->sess, srv_conn) != 0)
3510 srv_conn = NULL;
3511 }
3512
Willy Tarreau4213a112013-12-15 10:25:42 +01003513
Willy Tarreau350f4872014-11-28 14:42:25 +01003514 s->si[1].state = s->si[1].prev_state = SI_ST_INI;
3515 s->si[1].err_type = SI_ET_NONE;
3516 s->si[1].conn_retries = 0; /* used for logging too */
3517 s->si[1].exp = TICK_ETERNITY;
Willy Tarreau87b09662015-04-03 00:22:06 +02003518 s->si[1].flags &= SI_FL_ISBACK | SI_FL_DONT_WAKE; /* we're in the context of process_stream */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01003519 s->req.flags &= ~(CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CONNECT|CF_WRITE_ERROR|CF_STREAMER|CF_STREAMER_FAST|CF_NEVER_WAIT|CF_WAKE_CONNECT|CF_WROTE_DATA);
Willy Tarreauede3d882018-10-24 17:17:56 +02003520 s->res.flags &= ~(CF_SHUTR|CF_SHUTR_NOW|CF_READ_ATTACHED|CF_READ_ERROR|CF_READ_NOEXP|CF_STREAMER|CF_STREAMER_FAST|CF_WRITE_PARTIAL|CF_NEVER_WAIT|CF_WROTE_DATA);
Willy Tarreaue7dff022015-04-03 01:14:29 +02003521 s->flags &= ~(SF_DIRECT|SF_ASSIGNED|SF_ADDR_SET|SF_BE_ASSIGNED|SF_FORCE_PRST|SF_IGNORE_PRST);
3522 s->flags &= ~(SF_CURR_SESS|SF_REDIRECTABLE|SF_SRV_REUSED);
3523 s->flags &= ~(SF_ERR_MASK|SF_FINST_MASK|SF_REDISP);
Willy Tarreau543db622012-11-15 16:41:22 +01003524
Patrick Hemmere3faf022018-08-22 10:02:00 -04003525 hlua_ctx_destroy(s->hlua);
3526 s->hlua = NULL;
3527
Willy Tarreaueee5b512015-04-03 23:46:31 +02003528 s->txn->meth = 0;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003529 http_reset_txn(s);
Willy Tarreaueee5b512015-04-03 23:46:31 +02003530 s->txn->flags |= TX_NOT_FIRST | TX_WAIT_NEXT_RQ;
Willy Tarreau068621e2013-12-23 15:11:25 +01003531
3532 if (prev_status == 401 || prev_status == 407) {
3533 /* In HTTP keep-alive mode, if we receive a 401, we still have
3534 * a chance of being able to send the visitor again to the same
3535 * server over the same connection. This is required by some
3536 * broken protocols such as NTLM, and anyway whenever there is
3537 * an opportunity for sending the challenge to the proper place,
Lukas Tribus80512b12018-10-27 20:07:40 +02003538 * it's better to do it (at least it helps with debugging), at
3539 * least for non-deterministic load balancing algorithms.
Willy Tarreau068621e2013-12-23 15:11:25 +01003540 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02003541 s->txn->flags |= TX_PREFER_LAST;
Willy Tarreau068621e2013-12-23 15:11:25 +01003542 }
3543
Willy Tarreau53f96852016-02-02 18:50:47 +01003544 /* Never ever allow to reuse a connection from a non-reuse backend */
3545 if (srv_conn && (be->options & PR_O_REUSE_MASK) == PR_O_REUSE_NEVR)
3546 srv_conn->flags |= CO_FL_PRIVATE;
3547
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003548 if (fe->options2 & PR_O2_INDEPSTR)
Willy Tarreau350f4872014-11-28 14:42:25 +01003549 s->si[1].flags |= SI_FL_INDEP_STR;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003550
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02003551 if (fe->options2 & PR_O2_NODELAY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01003552 s->req.flags |= CF_NEVER_WAIT;
3553 s->res.flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +02003554 }
3555
Willy Tarreau714ea782015-11-25 20:11:11 +01003556 /* we're removing the analysers, we MUST re-enable events detection.
3557 * We don't enable close on the response channel since it's either
3558 * already closed, or in keep-alive with an idle connection handler.
3559 */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01003560 channel_auto_read(&s->req);
3561 channel_auto_close(&s->req);
3562 channel_auto_read(&s->res);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003563
Willy Tarreau1c59bd52015-11-02 20:20:11 +01003564 /* we're in keep-alive with an idle connection, monitor it if not already done */
3565 if (srv_conn && LIST_ISEMPTY(&srv_conn->list)) {
Willy Tarreau323a2d92015-08-04 19:00:17 +02003566 srv = objt_server(srv_conn->target);
Olivier Houchard7c6f8b12018-11-13 16:48:36 +01003567 if (srv) {
3568 if (srv_conn->flags & CO_FL_PRIVATE)
3569 LIST_ADD(&srv->priv_conns[tid], &srv_conn->list);
3570 else if (prev_flags & TX_NOT_FIRST)
3571 /* note: we check the request, not the connection, but
3572 * this is valid for strategies SAFE and AGGR, and in
3573 * case of ALWS, we don't care anyway.
3574 */
3575 LIST_ADD(&srv->safe_conns[tid], &srv_conn->list);
3576 else
3577 LIST_ADD(&srv->idle_conns[tid], &srv_conn->list);
3578 }
Willy Tarreau4320eaa2015-08-05 11:08:30 +02003579 }
Christopher Faulete6006242017-03-10 11:52:44 +01003580 s->req.analysers = strm_li(s) ? strm_li(s)->analysers : 0;
3581 s->res.analysers = 0;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003582}
3583
3584
3585/* This function updates the request state machine according to the response
3586 * state machine and buffer flags. It returns 1 if it changes anything (flag
3587 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
3588 * it is only used to find when a request/response couple is complete. Both
3589 * this function and its equivalent should loop until both return zero. It
3590 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
3591 */
Willy Tarreau87b09662015-04-03 00:22:06 +02003592int http_sync_req_state(struct stream *s)
Willy Tarreau610ecce2010-01-04 21:15:02 +01003593{
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01003594 struct channel *chn = &s->req;
Willy Tarreaueee5b512015-04-03 23:46:31 +02003595 struct http_txn *txn = s->txn;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02003596 unsigned int old_flags = chn->flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003597 unsigned int old_state = txn->req.msg_state;
3598
Christopher Faulet4be98032017-07-18 10:48:24 +02003599 if (unlikely(txn->req.msg_state < HTTP_MSG_DONE))
Willy Tarreau610ecce2010-01-04 21:15:02 +01003600 return 0;
3601
3602 if (txn->req.msg_state == HTTP_MSG_DONE) {
Willy Tarreau90deb182010-01-07 00:20:41 +01003603 /* No need to read anymore, the request was completely parsed.
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02003604 * We can shut the read side unless we want to abort_on_close,
3605 * or we have a POST request. The issue with POST requests is
3606 * that some browsers still send a CRLF after the request, and
3607 * this CRLF must be read so that it does not remain in the kernel
3608 * buffers, otherwise a close could cause an RST on some systems
3609 * (eg: Linux).
Willy Tarreau3988d932013-12-27 23:03:08 +01003610 * Note that if we're using keep-alive on the client side, we'd
3611 * rather poll now and keep the polling enabled for the whole
Willy Tarreau87b09662015-04-03 00:22:06 +02003612 * stream's life than enabling/disabling it between each
Willy Tarreau3988d932013-12-27 23:03:08 +01003613 * response and next request.
Willy Tarreau90deb182010-01-07 00:20:41 +01003614 */
Willy Tarreau3988d932013-12-27 23:03:08 +01003615 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_SCL) &&
3616 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) &&
Willy Tarreau7aa15b02017-12-20 16:56:50 +01003617 (!(s->be->options & PR_O_ABRT_CLOSE) ||
3618 (s->si[0].flags & SI_FL_CLEAN_ABRT)) &&
Willy Tarreau3988d932013-12-27 23:03:08 +01003619 txn->meth != HTTP_METH_POST)
Willy Tarreaucdbdd522012-10-12 22:51:15 +02003620 channel_dont_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003621
Willy Tarreau40f151a2012-12-20 12:10:09 +01003622 /* if the server closes the connection, we want to immediately react
3623 * and close the socket to save packets and syscalls.
3624 */
Willy Tarreau350f4872014-11-28 14:42:25 +01003625 s->si[1].flags |= SI_FL_NOHALF;
Willy Tarreau40f151a2012-12-20 12:10:09 +01003626
Willy Tarreau7f876a12015-11-18 11:59:55 +01003627 /* In any case we've finished parsing the request so we must
3628 * disable Nagle when sending data because 1) we're not going
3629 * to shut this side, and 2) the server is waiting for us to
3630 * send pending data.
3631 */
3632 chn->flags |= CF_NEVER_WAIT;
3633
Willy Tarreau610ecce2010-01-04 21:15:02 +01003634 if (txn->rsp.msg_state == HTTP_MSG_ERROR)
3635 goto wait_other_side;
3636
3637 if (txn->rsp.msg_state < HTTP_MSG_DONE) {
3638 /* The server has not finished to respond, so we
3639 * don't want to move in order not to upset it.
3640 */
3641 goto wait_other_side;
3642 }
3643
Willy Tarreau610ecce2010-01-04 21:15:02 +01003644 /* When we get here, it means that both the request and the
3645 * response have finished receiving. Depending on the connection
3646 * mode, we'll have to wait for the last bytes to leave in either
3647 * direction, and sometimes for a close to be effective.
3648 */
3649
Willy Tarreaucce7fa42010-01-16 23:19:39 +01003650 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
3651 /* Server-close mode : queue a connection close to the server */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02003652 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW)))
3653 channel_shutw_now(chn);
Willy Tarreaucce7fa42010-01-16 23:19:39 +01003654 }
3655 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
3656 /* Option forceclose is set, or either side wants to close,
3657 * let's enforce it now that we're not expecting any new
Willy Tarreau87b09662015-04-03 00:22:06 +02003658 * data to come. The caller knows the stream is complete
Willy Tarreaucce7fa42010-01-16 23:19:39 +01003659 * once both states are CLOSED.
Christopher Faulet1486b0a2017-07-18 11:42:08 +02003660 *
3661 * However, there is an exception if the response
3662 * length is undefined. In this case, we need to wait
3663 * the close from the server. The response will be
3664 * switched in TUNNEL mode until the end.
Willy Tarreaucce7fa42010-01-16 23:19:39 +01003665 */
Christopher Faulet1486b0a2017-07-18 11:42:08 +02003666 if (!(txn->rsp.flags & HTTP_MSGF_XFER_LEN) &&
3667 txn->rsp.msg_state != HTTP_MSG_CLOSED)
3668 goto check_channel_flags;
3669
Willy Tarreaucdbdd522012-10-12 22:51:15 +02003670 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
3671 channel_shutr_now(chn);
3672 channel_shutw_now(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003673 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01003674 }
3675 else {
Willy Tarreau4213a112013-12-15 10:25:42 +01003676 /* The last possible modes are keep-alive and tunnel. Tunnel mode
3677 * will not have any analyser so it needs to poll for reads.
Willy Tarreaucce7fa42010-01-16 23:19:39 +01003678 */
Willy Tarreau4213a112013-12-15 10:25:42 +01003679 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN) {
3680 channel_auto_read(chn);
3681 txn->req.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreau4213a112013-12-15 10:25:42 +01003682 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01003683 }
3684
Christopher Faulet4be98032017-07-18 10:48:24 +02003685 goto check_channel_flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003686 }
3687
3688 if (txn->req.msg_state == HTTP_MSG_CLOSING) {
3689 http_msg_closing:
3690 /* nothing else to forward, just waiting for the output buffer
3691 * to be empty and for the shutw_now to take effect.
3692 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02003693 if (channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01003694 txn->req.msg_state = HTTP_MSG_CLOSED;
3695 goto http_msg_closed;
3696 }
Willy Tarreaucdbdd522012-10-12 22:51:15 +02003697 else if (chn->flags & CF_SHUTW) {
Willy Tarreau10e61cb2017-01-04 14:51:22 +01003698 txn->req.err_state = txn->req.msg_state;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003699 txn->req.msg_state = HTTP_MSG_ERROR;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003700 }
Christopher Faulet56d26092017-07-20 11:05:10 +02003701 goto wait_other_side;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003702 }
3703
3704 if (txn->req.msg_state == HTTP_MSG_CLOSED) {
3705 http_msg_closed:
Willy Tarreau80593512017-12-14 10:43:31 +01003706 /* if we don't know whether the server will close, we need to hard close */
3707 if (txn->rsp.flags & HTTP_MSGF_XFER_LEN)
3708 s->si[1].flags |= SI_FL_NOLINGER; /* we want to close ASAP */
3709
Willy Tarreau3988d932013-12-27 23:03:08 +01003710 /* see above in MSG_DONE why we only do this in these states */
3711 if (((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_SCL) &&
3712 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_KAL) &&
Willy Tarreau7aa15b02017-12-20 16:56:50 +01003713 (!(s->be->options & PR_O_ABRT_CLOSE) ||
3714 (s->si[0].flags & SI_FL_CLEAN_ABRT)))
Willy Tarreau2e7a1652013-12-15 15:32:10 +01003715 channel_dont_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003716 goto wait_other_side;
3717 }
3718
Christopher Faulet4be98032017-07-18 10:48:24 +02003719 check_channel_flags:
3720 /* Here, we are in HTTP_MSG_DONE or HTTP_MSG_TUNNEL */
3721 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
3722 /* if we've just closed an output, let's switch */
Christopher Faulet4be98032017-07-18 10:48:24 +02003723 txn->req.msg_state = HTTP_MSG_CLOSING;
3724 goto http_msg_closing;
3725 }
3726
3727
Willy Tarreau610ecce2010-01-04 21:15:02 +01003728 wait_other_side:
Willy Tarreaucdbdd522012-10-12 22:51:15 +02003729 return txn->req.msg_state != old_state || chn->flags != old_flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003730}
3731
3732
3733/* This function updates the response state machine according to the request
3734 * state machine and buffer flags. It returns 1 if it changes anything (flag
3735 * or state), otherwise zero. It ignores any state before HTTP_MSG_DONE, as
3736 * it is only used to find when a request/response couple is complete. Both
3737 * this function and its equivalent should loop until both return zero. It
3738 * can set its own state to DONE, CLOSING, CLOSED, TUNNEL, ERROR.
3739 */
Willy Tarreau87b09662015-04-03 00:22:06 +02003740int http_sync_res_state(struct stream *s)
Willy Tarreau610ecce2010-01-04 21:15:02 +01003741{
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01003742 struct channel *chn = &s->res;
Willy Tarreaueee5b512015-04-03 23:46:31 +02003743 struct http_txn *txn = s->txn;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02003744 unsigned int old_flags = chn->flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003745 unsigned int old_state = txn->rsp.msg_state;
3746
Christopher Faulet4be98032017-07-18 10:48:24 +02003747 if (unlikely(txn->rsp.msg_state < HTTP_MSG_DONE))
Willy Tarreau610ecce2010-01-04 21:15:02 +01003748 return 0;
3749
3750 if (txn->rsp.msg_state == HTTP_MSG_DONE) {
3751 /* In theory, we don't need to read anymore, but we must
Willy Tarreau90deb182010-01-07 00:20:41 +01003752 * still monitor the server connection for a possible close
3753 * while the request is being uploaded, so we don't disable
3754 * reading.
Willy Tarreau610ecce2010-01-04 21:15:02 +01003755 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02003756 /* channel_dont_read(chn); */
Willy Tarreau610ecce2010-01-04 21:15:02 +01003757
3758 if (txn->req.msg_state == HTTP_MSG_ERROR)
3759 goto wait_other_side;
3760
3761 if (txn->req.msg_state < HTTP_MSG_DONE) {
3762 /* The client seems to still be sending data, probably
3763 * because we got an error response during an upload.
3764 * We have the choice of either breaking the connection
3765 * or letting it pass through. Let's do the later.
3766 */
3767 goto wait_other_side;
3768 }
3769
Willy Tarreau610ecce2010-01-04 21:15:02 +01003770 /* When we get here, it means that both the request and the
3771 * response have finished receiving. Depending on the connection
3772 * mode, we'll have to wait for the last bytes to leave in either
3773 * direction, and sometimes for a close to be effective.
3774 */
3775
3776 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
3777 /* Server-close mode : shut read and wait for the request
3778 * side to close its output buffer. The caller will detect
3779 * when we're in DONE and the other is in CLOSED and will
3780 * catch that for the final cleanup.
3781 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02003782 if (!(chn->flags & (CF_SHUTR|CF_SHUTR_NOW)))
3783 channel_shutr_now(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003784 }
Willy Tarreaucce7fa42010-01-16 23:19:39 +01003785 else if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
3786 /* Option forceclose is set, or either side wants to close,
3787 * let's enforce it now that we're not expecting any new
Willy Tarreau87b09662015-04-03 00:22:06 +02003788 * data to come. The caller knows the stream is complete
Willy Tarreaucce7fa42010-01-16 23:19:39 +01003789 * once both states are CLOSED.
Willy Tarreau610ecce2010-01-04 21:15:02 +01003790 */
Christopher Fauletfd04fcf2018-02-02 15:54:15 +01003791 if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) {
Willy Tarreaucdbdd522012-10-12 22:51:15 +02003792 channel_shutr_now(chn);
3793 channel_shutw_now(chn);
Willy Tarreaucce7fa42010-01-16 23:19:39 +01003794 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01003795 }
3796 else {
Willy Tarreau4213a112013-12-15 10:25:42 +01003797 /* The last possible modes are keep-alive and tunnel. Tunnel will
3798 * need to forward remaining data. Keep-alive will need to monitor
3799 * for connection closing.
Willy Tarreau610ecce2010-01-04 21:15:02 +01003800 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02003801 channel_auto_read(chn);
Willy Tarreaufc47f912012-10-20 10:38:09 +02003802 chn->flags |= CF_NEVER_WAIT;
Willy Tarreau4213a112013-12-15 10:25:42 +01003803 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_TUN)
3804 txn->rsp.msg_state = HTTP_MSG_TUNNEL;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003805 }
3806
Christopher Faulet4be98032017-07-18 10:48:24 +02003807 goto check_channel_flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003808 }
3809
3810 if (txn->rsp.msg_state == HTTP_MSG_CLOSING) {
3811 http_msg_closing:
3812 /* nothing else to forward, just waiting for the output buffer
3813 * to be empty and for the shutw_now to take effect.
3814 */
Willy Tarreaucdbdd522012-10-12 22:51:15 +02003815 if (channel_is_empty(chn)) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01003816 txn->rsp.msg_state = HTTP_MSG_CLOSED;
3817 goto http_msg_closed;
3818 }
Willy Tarreaucdbdd522012-10-12 22:51:15 +02003819 else if (chn->flags & CF_SHUTW) {
Christopher Fauleta3992e02017-07-18 10:35:55 +02003820 txn->rsp.err_state = txn->rsp.msg_state;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003821 txn->rsp.msg_state = HTTP_MSG_ERROR;
Olivier Houcharda798bf52019-03-08 18:52:00 +01003822 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01003823 if (objt_server(s->target))
Olivier Houcharda798bf52019-03-08 18:52:00 +01003824 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.cli_aborts, 1);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003825 }
Christopher Faulet56d26092017-07-20 11:05:10 +02003826 goto wait_other_side;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003827 }
3828
3829 if (txn->rsp.msg_state == HTTP_MSG_CLOSED) {
3830 http_msg_closed:
3831 /* drop any pending data */
Willy Tarreau319f7452015-01-14 20:32:59 +01003832 channel_truncate(chn);
Willy Tarreaucdbdd522012-10-12 22:51:15 +02003833 channel_auto_close(chn);
3834 channel_auto_read(chn);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003835 goto wait_other_side;
3836 }
3837
Christopher Faulet4be98032017-07-18 10:48:24 +02003838 check_channel_flags:
3839 /* Here, we are in HTTP_MSG_DONE or HTTP_MSG_TUNNEL */
3840 if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) {
3841 /* if we've just closed an output, let's switch */
3842 txn->rsp.msg_state = HTTP_MSG_CLOSING;
3843 goto http_msg_closing;
3844 }
3845
Willy Tarreau610ecce2010-01-04 21:15:02 +01003846 wait_other_side:
Willy Tarreaufc47f912012-10-20 10:38:09 +02003847 /* We force the response to leave immediately if we're waiting for the
3848 * other side, since there is no pending shutdown to push it out.
3849 */
3850 if (!channel_is_empty(chn))
3851 chn->flags |= CF_SEND_DONTWAIT;
Willy Tarreaucdbdd522012-10-12 22:51:15 +02003852 return txn->rsp.msg_state != old_state || chn->flags != old_flags;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003853}
3854
3855
Christopher Faulet894da4c2017-07-18 11:29:07 +02003856/* Resync the request and response state machines. */
3857void http_resync_states(struct stream *s)
Willy Tarreau610ecce2010-01-04 21:15:02 +01003858{
Willy Tarreaueee5b512015-04-03 23:46:31 +02003859 struct http_txn *txn = s->txn;
Christopher Faulet894da4c2017-07-18 11:29:07 +02003860#ifdef DEBUG_FULL
Willy Tarreau610ecce2010-01-04 21:15:02 +01003861 int old_req_state = txn->req.msg_state;
3862 int old_res_state = txn->rsp.msg_state;
Christopher Faulet894da4c2017-07-18 11:29:07 +02003863#endif
Willy Tarreau610ecce2010-01-04 21:15:02 +01003864
Willy Tarreau610ecce2010-01-04 21:15:02 +01003865 http_sync_req_state(s);
3866 while (1) {
Willy Tarreau610ecce2010-01-04 21:15:02 +01003867 if (!http_sync_res_state(s))
3868 break;
Willy Tarreau610ecce2010-01-04 21:15:02 +01003869 if (!http_sync_req_state(s))
3870 break;
3871 }
Willy Tarreau3ce10ff2014-04-22 08:24:38 +02003872
Christopher Faulet894da4c2017-07-18 11:29:07 +02003873 DPRINTF(stderr,"[%u] %s: stream=%p old=%s,%s cur=%s,%s "
3874 "req->analysers=0x%08x res->analysers=0x%08x\n",
3875 now_ms, __FUNCTION__, s,
Willy Tarreau0da5b3b2017-09-21 09:30:46 +02003876 h1_msg_state_str(old_req_state), h1_msg_state_str(old_res_state),
3877 h1_msg_state_str(txn->req.msg_state), h1_msg_state_str(txn->rsp.msg_state),
Christopher Faulet894da4c2017-07-18 11:29:07 +02003878 s->req.analysers, s->res.analysers);
Christopher Faulet814d2702017-03-30 11:33:44 +02003879
3880
Willy Tarreau610ecce2010-01-04 21:15:02 +01003881 /* OK, both state machines agree on a compatible state.
3882 * There are a few cases we're interested in :
Willy Tarreau610ecce2010-01-04 21:15:02 +01003883 * - HTTP_MSG_CLOSED on both sides means we've reached the end in both
3884 * directions, so let's simply disable both analysers.
Christopher Fauletf77bb532017-07-18 11:18:46 +02003885 * - HTTP_MSG_CLOSED on the response only or HTTP_MSG_ERROR on either
3886 * means we must abort the request.
3887 * - HTTP_MSG_TUNNEL on either means we have to disable analyser on
3888 * corresponding channel.
3889 * - HTTP_MSG_DONE or HTTP_MSG_CLOSED on the request and HTTP_MSG_DONE
3890 * on the response with server-close mode means we've completed one
3891 * request and we must re-initialize the server connection.
Willy Tarreau610ecce2010-01-04 21:15:02 +01003892 */
Christopher Fauletf77bb532017-07-18 11:18:46 +02003893 if (txn->req.msg_state == HTTP_MSG_CLOSED &&
3894 txn->rsp.msg_state == HTTP_MSG_CLOSED) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003895 s->req.analysers &= AN_REQ_FLT_END;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01003896 channel_auto_close(&s->req);
3897 channel_auto_read(&s->req);
Christopher Faulet0184ea72017-01-05 14:06:34 +01003898 s->res.analysers &= AN_RES_FLT_END;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01003899 channel_auto_close(&s->res);
3900 channel_auto_read(&s->res);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003901 }
Christopher Fauletf77bb532017-07-18 11:18:46 +02003902 else if (txn->rsp.msg_state == HTTP_MSG_CLOSED ||
3903 txn->rsp.msg_state == HTTP_MSG_ERROR ||
Willy Tarreau40f151a2012-12-20 12:10:09 +01003904 txn->req.msg_state == HTTP_MSG_ERROR) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003905 s->res.analysers &= AN_RES_FLT_END;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01003906 channel_auto_close(&s->res);
3907 channel_auto_read(&s->res);
Christopher Faulet0184ea72017-01-05 14:06:34 +01003908 s->req.analysers &= AN_REQ_FLT_END;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01003909 channel_abort(&s->req);
3910 channel_auto_close(&s->req);
3911 channel_auto_read(&s->req);
3912 channel_truncate(&s->req);
Willy Tarreau610ecce2010-01-04 21:15:02 +01003913 }
Christopher Fauletf77bb532017-07-18 11:18:46 +02003914 else if (txn->req.msg_state == HTTP_MSG_TUNNEL ||
3915 txn->rsp.msg_state == HTTP_MSG_TUNNEL) {
3916 if (txn->req.msg_state == HTTP_MSG_TUNNEL) {
3917 s->req.analysers &= AN_REQ_FLT_END;
3918 if (HAS_REQ_DATA_FILTERS(s))
3919 s->req.analysers |= AN_REQ_FLT_XFER_DATA;
3920 }
3921 if (txn->rsp.msg_state == HTTP_MSG_TUNNEL) {
3922 s->res.analysers &= AN_RES_FLT_END;
3923 if (HAS_RSP_DATA_FILTERS(s))
3924 s->res.analysers |= AN_RES_FLT_XFER_DATA;
3925 }
3926 channel_auto_close(&s->req);
3927 channel_auto_read(&s->req);
3928 channel_auto_close(&s->res);
3929 channel_auto_read(&s->res);
3930 }
Willy Tarreau4213a112013-12-15 10:25:42 +01003931 else if ((txn->req.msg_state == HTTP_MSG_DONE ||
3932 txn->req.msg_state == HTTP_MSG_CLOSED) &&
Willy Tarreau610ecce2010-01-04 21:15:02 +01003933 txn->rsp.msg_state == HTTP_MSG_DONE &&
Willy Tarreau4213a112013-12-15 10:25:42 +01003934 ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL ||
3935 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL)) {
3936 /* server-close/keep-alive: terminate this transaction,
3937 * possibly killing the server connection and reinitialize
Willy Tarreau3de5bd62016-05-02 16:07:07 +02003938 * a fresh-new transaction, but only once we're sure there's
3939 * enough room in the request and response buffer to process
Christopher Fauletc0c672a2017-03-28 11:51:33 +02003940 * another request. They must not hold any pending output data
3941 * and the response buffer must realigned
3942 * (realign is done is http_end_txn_clean_session).
Willy Tarreau610ecce2010-01-04 21:15:02 +01003943 */
Willy Tarreauf37954d2018-06-15 18:31:02 +02003944 if (co_data(&s->req))
Willy Tarreau3de5bd62016-05-02 16:07:07 +02003945 s->req.flags |= CF_WAKE_WRITE;
Willy Tarreauf37954d2018-06-15 18:31:02 +02003946 else if (co_data(&s->res))
Willy Tarreau3de5bd62016-05-02 16:07:07 +02003947 s->res.flags |= CF_WAKE_WRITE;
Christopher Fauleta81ff602017-07-18 22:01:05 +02003948 else {
3949 s->req.analysers = AN_REQ_FLT_END;
3950 s->res.analysers = AN_RES_FLT_END;
3951 txn->flags |= TX_WAIT_CLEANUP;
3952 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01003953 }
Willy Tarreau610ecce2010-01-04 21:15:02 +01003954}
3955
Willy Tarreaud98cf932009-12-27 22:54:55 +01003956/* This function is an analyser which forwards request body (including chunk
3957 * sizes if any). It is called as soon as we must forward, even if we forward
3958 * zero byte. The only situation where it must not be called is when we're in
3959 * tunnel mode and we want to forward till the close. It's used both to forward
3960 * remaining data and to resync after end of body. It expects the msg_state to
3961 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
Willy Tarreau87b09662015-04-03 00:22:06 +02003962 * read more data, or 1 once we can go on with next request or end the stream.
Willy Tarreau124d9912011-03-01 20:30:48 +01003963 * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len
Willy Tarreauc24715e2014-04-17 15:21:20 +02003964 * bytes of pending data + the headers if not already done.
Willy Tarreaud98cf932009-12-27 22:54:55 +01003965 */
Willy Tarreau87b09662015-04-03 00:22:06 +02003966int http_request_forward_body(struct stream *s, struct channel *req, int an_bit)
Willy Tarreaud98cf932009-12-27 22:54:55 +01003967{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02003968 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02003969 struct http_txn *txn = s->txn;
3970 struct http_msg *msg = &s->txn->req;
Christopher Faulet93e02d82019-03-08 14:18:50 +01003971 short status = 0;
Christopher Faulet3e344292015-11-24 16:24:13 +01003972 int ret;
Willy Tarreaud98cf932009-12-27 22:54:55 +01003973
Christopher Faulete0768eb2018-10-03 16:38:02 +02003974 if (IS_HTX_STRM(s))
3975 return htx_request_forward_body(s, req, an_bit);
3976
Christopher Faulet45073512018-07-20 10:16:29 +02003977 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n",
Christopher Faulet814d2702017-03-30 11:33:44 +02003978 now_ms, __FUNCTION__,
3979 s,
3980 req,
3981 req->rex, req->wex,
3982 req->flags,
Christopher Faulet45073512018-07-20 10:16:29 +02003983 ci_data(req),
Christopher Faulet814d2702017-03-30 11:33:44 +02003984 req->analysers);
3985
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01003986 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
3987 return 0;
3988
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02003989 if ((req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
Willy Tarreauf37954d2018-06-15 18:31:02 +02003990 ((req->flags & CF_SHUTW) && (req->to_forward || co_data(req)))) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02003991 /* Output closed while we were sending data. We must abort and
3992 * wake the other side up.
3993 */
Willy Tarreau10e61cb2017-01-04 14:51:22 +01003994 msg->err_state = msg->msg_state;
Willy Tarreau4fe41902010-06-07 22:27:41 +02003995 msg->msg_state = HTTP_MSG_ERROR;
3996 http_resync_states(s);
Willy Tarreau082b01c2010-01-02 23:58:04 +01003997 }
3998
Willy Tarreaud98cf932009-12-27 22:54:55 +01003999 /* Note that we don't have to send 100-continue back because we don't
4000 * need the data to complete our job, and it's up to the server to
4001 * decide whether to return 100, 417 or anything else in return of
4002 * an "Expect: 100-continue" header.
4003 */
Christopher Fauletd7c91962015-04-30 11:48:27 +02004004 if (msg->msg_state == HTTP_MSG_BODY) {
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004005 msg->msg_state = ((msg->flags & HTTP_MSGF_TE_CHNK)
4006 ? HTTP_MSG_CHUNK_SIZE
4007 : HTTP_MSG_DATA);
Christopher Fauletd7c91962015-04-30 11:48:27 +02004008
4009 /* TODO/filters: when http-buffer-request option is set or if a
4010 * rule on url_param exists, the first chunk size could be
4011 * already parsed. In that case, msg->next is after the chunk
4012 * size (including the CRLF after the size). So this case should
4013 * be handled to */
Willy Tarreaud98cf932009-12-27 22:54:55 +01004014 }
4015
Willy Tarreau7ba23542014-04-17 21:50:00 +02004016 /* Some post-connect processing might want us to refrain from starting to
4017 * forward data. Currently, the only reason for this is "balance url_param"
4018 * whichs need to parse/process the request after we've enabled forwarding.
4019 */
4020 if (unlikely(msg->flags & HTTP_MSGF_WAIT_CONN)) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004021 if (!(s->res.flags & CF_READ_ATTACHED)) {
Willy Tarreau7ba23542014-04-17 21:50:00 +02004022 channel_auto_connect(req);
Willy Tarreau644c1012014-04-30 18:11:11 +02004023 req->flags |= CF_WAKE_CONNECT;
Willy Tarreauba20dfc2018-05-16 11:35:05 +02004024 channel_dont_close(req); /* don't fail on early shutr */
4025 goto waiting;
Willy Tarreau7ba23542014-04-17 21:50:00 +02004026 }
4027 msg->flags &= ~HTTP_MSGF_WAIT_CONN;
4028 }
4029
Willy Tarreau80a92c02014-03-12 10:41:13 +01004030 /* in most states, we should abort in case of early close */
4031 channel_auto_close(req);
4032
Willy Tarreauefdf0942014-04-24 20:08:57 +02004033 if (req->to_forward) {
4034 /* We can't process the buffer's contents yet */
4035 req->flags |= CF_WAKE_WRITE;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004036 goto missing_data_or_waiting;
Willy Tarreauefdf0942014-04-24 20:08:57 +02004037 }
4038
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004039 if (msg->msg_state < HTTP_MSG_DONE) {
4040 ret = ((msg->flags & HTTP_MSGF_TE_CHNK)
4041 ? http_msg_forward_chunked_body(s, msg)
4042 : http_msg_forward_body(s, msg));
4043 if (!ret)
4044 goto missing_data_or_waiting;
4045 if (ret < 0)
4046 goto return_bad_req;
4047 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02004048
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004049 /* other states, DONE...TUNNEL */
4050 /* we don't want to forward closes on DONE except in tunnel mode. */
4051 if ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN)
4052 channel_dont_close(req);
Willy Tarreau5c54c712010-07-17 08:02:58 +02004053
Christopher Faulet894da4c2017-07-18 11:29:07 +02004054 http_resync_states(s);
4055 if (!(req->analysers & an_bit)) {
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004056 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
4057 if (req->flags & CF_SHUTW) {
4058 /* request errors are most likely due to the
4059 * server aborting the transfer. */
Christopher Faulet93e02d82019-03-08 14:18:50 +01004060 goto return_srv_abort;
Willy Tarreau58bd8fd2010-09-28 14:16:41 +02004061 }
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004062 if (msg->err_pos >= 0)
Willy Tarreaufd9419d2018-09-07 18:01:03 +02004063 http_capture_bad_message(sess->fe, s, msg, msg->err_state, s->be);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004064 goto return_bad_req;
Willy Tarreaud98cf932009-12-27 22:54:55 +01004065 }
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004066 return 1;
Willy Tarreaud98cf932009-12-27 22:54:55 +01004067 }
4068
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004069 /* If "option abortonclose" is set on the backend, we want to monitor
4070 * the client's connection and forward any shutdown notification to the
4071 * server, which will decide whether to close or to go on processing the
4072 * request. We only do that in tunnel mode, and not in other modes since
4073 * it can be abused to exhaust source ports. */
Willy Tarreau7aa15b02017-12-20 16:56:50 +01004074 if ((s->be->options & PR_O_ABRT_CLOSE) && !(s->si[0].flags & SI_FL_CLEAN_ABRT)) {
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004075 channel_auto_read(req);
4076 if ((req->flags & (CF_SHUTR|CF_READ_NULL)) &&
4077 ((txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN))
4078 s->si[1].flags |= SI_FL_NOLINGER;
4079 channel_auto_close(req);
4080 }
4081 else if (s->txn->meth == HTTP_METH_POST) {
4082 /* POST requests may require to read extra CRLF sent by broken
4083 * browsers and which could cause an RST to be sent upon close
4084 * on some systems (eg: Linux). */
4085 channel_auto_read(req);
4086 }
4087 return 0;
Willy Tarreaubed410e2014-04-22 08:19:34 +02004088
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01004089 missing_data_or_waiting:
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004090 /* stop waiting for data if the input is closed before the end */
Christopher Faulet93e02d82019-03-08 14:18:50 +01004091 if (msg->msg_state < HTTP_MSG_ENDING && req->flags & CF_SHUTR)
4092 goto return_cli_abort;
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004093
Willy Tarreauba20dfc2018-05-16 11:35:05 +02004094 waiting:
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004095 /* waiting for the last bits to leave the buffer */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004096 if (req->flags & CF_SHUTW)
Christopher Faulet93e02d82019-03-08 14:18:50 +01004097 goto return_srv_abort;
Willy Tarreau610ecce2010-01-04 21:15:02 +01004098
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02004099 /* When TE: chunked is used, we need to get there again to parse remaining
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004100 * chunks even if the client has closed, so we don't want to set CF_DONTCLOSE.
Willy Tarreauff47b3f2017-12-29 16:30:31 +01004101 * And when content-length is used, we never want to let the possible
4102 * shutdown be forwarded to the other side, as the state machine will
4103 * take care of it once the client responds. It's also important to
4104 * prevent TIME_WAITs from accumulating on the backend side, and for
4105 * HTTP/2 where the last frame comes with a shutdown.
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02004106 */
Willy Tarreauff47b3f2017-12-29 16:30:31 +01004107 if (msg->flags & (HTTP_MSGF_TE_CHNK|HTTP_MSGF_CNT_LEN))
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004108 channel_dont_close(req);
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02004109
Willy Tarreau5c620922011-05-11 19:56:11 +02004110 /* We know that more data are expected, but we couldn't send more that
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004111 * what we did. So we always set the CF_EXPECT_MORE flag so that the
Willy Tarreau07293032011-05-30 18:29:28 +02004112 * system knows it must not set a PUSH on this first part. Interactive
Willy Tarreau869fc1e2012-03-05 08:29:20 +01004113 * modes are already handled by the stream sock layer. We must not do
4114 * this in content-length mode because it could present the MSG_MORE
4115 * flag with the last block of forwarded data, which would cause an
4116 * additional delay to be observed by the receiver.
Willy Tarreau5c620922011-05-11 19:56:11 +02004117 */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004118 if (msg->flags & HTTP_MSGF_TE_CHNK)
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004119 req->flags |= CF_EXPECT_MORE;
Willy Tarreau5c620922011-05-11 19:56:11 +02004120
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01004121 return 0;
4122
Christopher Faulet93e02d82019-03-08 14:18:50 +01004123 return_cli_abort:
4124 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
4125 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
4126 if (objt_server(s->target))
4127 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.cli_aborts, 1);
4128 if (!(s->flags & SF_ERR_MASK))
4129 s->flags |= SF_ERR_CLICL;
4130 status = 400;
4131 goto return_error;
4132
4133 return_srv_abort:
4134 _HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
4135 _HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
4136 if (objt_server(s->target))
4137 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.srv_aborts, 1);
4138 if (!(s->flags & SF_ERR_MASK))
4139 s->flags |= SF_ERR_SRVCL;
4140 status = 502;
4141 goto return_error;
4142
4143 return_bad_req: /* let's centralize all bad requests */
Olivier Houcharda798bf52019-03-08 18:52:00 +01004144 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004145 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +01004146 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02004147 if (!(s->flags & SF_ERR_MASK))
Christopher Faulet93e02d82019-03-08 14:18:50 +01004148 s->flags |= SF_ERR_CLICL;
4149 status = 400;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004150
Christopher Faulet93e02d82019-03-08 14:18:50 +01004151 return_error:
Willy Tarreau10e61cb2017-01-04 14:51:22 +01004152 txn->req.err_state = txn->req.msg_state;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004153 txn->req.msg_state = HTTP_MSG_ERROR;
Christopher Faulet93e02d82019-03-08 14:18:50 +01004154 if (txn->status > 0) {
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004155 /* Note: we don't send any error if some data were already sent */
Christopher Fauleta94e5a52015-12-09 15:55:06 +01004156 http_reply_and_close(s, txn->status, NULL);
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004157 } else {
Christopher Faulet93e02d82019-03-08 14:18:50 +01004158 txn->status = status;
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02004159 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01004160 }
Christopher Faulet0184ea72017-01-05 14:06:34 +01004161 req->analysers &= AN_REQ_FLT_END;
4162 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 +01004163 if (!(s->flags & SF_FINST_MASK))
4164 s->flags |= ((txn->rsp.msg_state < HTTP_MSG_ERROR) ? SF_FINST_H : SF_FINST_D);
Willy Tarreaud98cf932009-12-27 22:54:55 +01004165 return 0;
4166}
4167
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004168/* This stream analyser waits for a complete HTTP response. It returns 1 if the
4169 * processing can continue on next analysers, or zero if it either needs more
4170 * data or wants to immediately abort the response (eg: timeout, error, ...). It
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004171 * is tied to AN_RES_WAIT_HTTP and may may remove itself from s->res.analysers
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004172 * when it has nothing left to do, and may remove any analyser when it wants to
4173 * abort.
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02004174 */
Willy Tarreau87b09662015-04-03 00:22:06 +02004175int http_wait_for_response(struct stream *s, struct channel *rep, int an_bit)
Willy Tarreauc65a3ba2008-08-11 23:42:50 +02004176{
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004177 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02004178 struct http_txn *txn = s->txn;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004179 struct http_msg *msg = &txn->rsp;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004180 struct hdr_ctx ctx;
Lukas Tribusfd9b68c2018-10-27 20:06:59 +02004181 struct connection *srv_conn;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004182 int use_close_only;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004183 int cur_idx;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004184 int n;
Willy Tarreauadfb8562008-08-11 15:24:42 +02004185
Lukas Tribusfd9b68c2018-10-27 20:06:59 +02004186 srv_conn = cs_conn(objt_cs(s->si[1].end));
4187
Christopher Faulete0768eb2018-10-03 16:38:02 +02004188 if (IS_HTX_STRM(s))
4189 return htx_wait_for_response(s, rep, an_bit);
4190
Christopher Faulet45073512018-07-20 10:16:29 +02004191 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n",
Willy Tarreaufa7e1022008-10-19 07:30:41 +02004192 now_ms, __FUNCTION__,
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004193 s,
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02004194 rep,
4195 rep->rex, rep->wex,
4196 rep->flags,
Willy Tarreauf37954d2018-06-15 18:31:02 +02004197 ci_data(rep),
Willy Tarreau3a16b2c2008-08-28 08:54:27 +02004198 rep->analysers);
Willy Tarreau67f0eea2008-08-10 22:55:22 +02004199
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004200 /*
4201 * Now parse the partial (or complete) lines.
4202 * We will check the response syntax, and also join multi-line
4203 * headers. An index of all the lines will be elaborated while
4204 * parsing.
4205 *
4206 * For the parsing, we use a 28 states FSM.
4207 *
4208 * Here is the information we currently have :
Willy Tarreauf37954d2018-06-15 18:31:02 +02004209 * ci_head(rep) = beginning of response
4210 * ci_head(rep) + msg->eoh = end of processed headers / start of current one
4211 * ci_tail(rep) = end of input data
4212 * msg->eol = end of current header or line (LF or CRLF)
4213 * msg->next = first non-visited byte
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004214 */
4215
Willy Tarreau628c40c2014-04-24 19:11:26 +02004216 next_one:
Willy Tarreau83e3af02009-12-28 17:39:57 +01004217 /* There's a protected area at the end of the buffer for rewriting
4218 * purposes. We don't want to start to parse the request if the
4219 * protected area is affected, because we may have to move processed
4220 * data later, which is much more complicated.
4221 */
Willy Tarreaud760eec2018-07-10 09:50:25 +02004222 if (c_data(rep) && msg->msg_state < HTTP_MSG_ERROR) {
Willy Tarreauba0902e2015-01-13 14:39:16 +01004223 if (unlikely(!channel_is_rewritable(rep))) {
Willy Tarreau379357a2013-06-08 12:55:46 +02004224 /* some data has still not left the buffer, wake us once that's done */
4225 if (rep->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_WRITE_ERROR|CF_WRITE_TIMEOUT))
4226 goto abort_response;
4227 channel_dont_close(rep);
4228 rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreaud7ad9f52013-12-31 17:26:25 +01004229 rep->flags |= CF_WAKE_WRITE;
Willy Tarreau379357a2013-06-08 12:55:46 +02004230 return 0;
Willy Tarreau83e3af02009-12-28 17:39:57 +01004231 }
4232
Willy Tarreau188e2302018-06-15 11:11:53 +02004233 if (unlikely(ci_tail(rep) < c_ptr(rep, msg->next) ||
Willy Tarreauc9fa0482018-07-10 17:43:27 +02004234 ci_tail(rep) > b_wrap(&rep->buf) - global.tune.maxrewrite))
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004235 channel_slow_realign(rep, trash.area);
Willy Tarreau379357a2013-06-08 12:55:46 +02004236
Willy Tarreauf37954d2018-06-15 18:31:02 +02004237 if (likely(msg->next < ci_data(rep)))
Willy Tarreaua560c212012-03-09 13:50:57 +01004238 http_msg_analyzer(msg, &txn->hdr_idx);
Willy Tarreau83e3af02009-12-28 17:39:57 +01004239 }
4240
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004241 /* 1: we might have to print this header in debug mode */
4242 if (unlikely((global.mode & MODE_DEBUG) &&
4243 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
Willy Tarreau7d59e902014-10-21 19:36:09 +02004244 msg->msg_state >= HTTP_MSG_BODY)) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004245 char *eol, *sol;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004246
Willy Tarreauf37954d2018-06-15 18:31:02 +02004247 sol = ci_head(rep);
4248 eol = sol + (msg->sl.st.l ? msg->sl.st.l : ci_data(rep));
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004249 debug_hdr("srvrep", s, sol, eol);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004250
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004251 sol += hdr_idx_first_pos(&txn->hdr_idx);
4252 cur_idx = hdr_idx_first_idx(&txn->hdr_idx);
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004253
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004254 while (cur_idx) {
4255 eol = sol + txn->hdr_idx.v[cur_idx].len;
4256 debug_hdr("srvhdr", s, sol, eol);
4257 sol = eol + txn->hdr_idx.v[cur_idx].cr + 1;
4258 cur_idx = txn->hdr_idx.v[cur_idx].next;
4259 }
4260 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004261
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004262 /*
4263 * Now we quickly check if we have found a full valid response.
4264 * If not so, we check the FD and buffer states before leaving.
4265 * A full response is indicated by the fact that we have seen
Willy Tarreau655dce92009-11-08 13:10:58 +01004266 * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004267 * responses are checked first.
4268 *
4269 * Depending on whether the client is still there or not, we
4270 * may send an error response back or not. Note that normally
4271 * we should only check for HTTP status there, and check I/O
4272 * errors somewhere else.
4273 */
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004274
Willy Tarreau655dce92009-11-08 13:10:58 +01004275 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004276 /* Invalid response */
4277 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
4278 /* we detected a parsing error. We want to archive this response
4279 * in the dedicated proxy area for later troubleshooting.
4280 */
4281 hdr_response_bad:
4282 if (msg->msg_state == HTTP_MSG_ERROR || msg->err_pos >= 0)
Willy Tarreaufd9419d2018-09-07 18:01:03 +02004283 http_capture_bad_message(s->be, s, msg, msg->err_state, sess->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004284
Olivier Houcharda798bf52019-03-08 18:52:00 +01004285 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004286 if (objt_server(s->target)) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01004287 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01004288 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_HDRRSP);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004289 }
Willy Tarreau64648412010-03-05 10:41:54 +01004290 abort_response:
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004291 channel_auto_close(rep);
Christopher Faulet0184ea72017-01-05 14:06:34 +01004292 rep->analysers &= AN_RES_FLT_END;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004293 txn->status = 502;
Willy Tarreau350f4872014-11-28 14:42:25 +01004294 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01004295 channel_truncate(rep);
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02004296 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004297
Willy Tarreaue7dff022015-04-03 01:14:29 +02004298 if (!(s->flags & SF_ERR_MASK))
4299 s->flags |= SF_ERR_PRXCOND;
4300 if (!(s->flags & SF_FINST_MASK))
4301 s->flags |= SF_FINST_H;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004302
4303 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004304 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02004305
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004306 /* too large response does not fit in buffer. */
Willy Tarreau23752332018-06-15 14:54:53 +02004307 else if (channel_full(rep, global.tune.maxrewrite)) {
Willy Tarreaufec4d892011-09-02 20:04:57 +02004308 if (msg->err_pos < 0)
Willy Tarreauf37954d2018-06-15 18:31:02 +02004309 msg->err_pos = ci_data(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004310 goto hdr_response_bad;
4311 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004312
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004313 /* read error */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004314 else if (rep->flags & CF_READ_ERROR) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004315 if (msg->err_pos >= 0)
Willy Tarreaufd9419d2018-09-07 18:01:03 +02004316 http_capture_bad_message(s->be, s, msg, msg->err_state, sess->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01004317 else if (txn->flags & TX_NOT_FIRST)
4318 goto abort_keep_alive;
Willy Tarreau4076a152009-04-02 15:18:36 +02004319
Olivier Houcharda798bf52019-03-08 18:52:00 +01004320 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004321 if (objt_server(s->target)) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01004322 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01004323 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_READ_ERROR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004324 }
Willy Tarreau461f6622008-08-15 23:43:19 +02004325
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004326 channel_auto_close(rep);
Christopher Faulet0184ea72017-01-05 14:06:34 +01004327 rep->analysers &= AN_RES_FLT_END;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004328 txn->status = 502;
Olivier Houchard522eea72017-11-03 16:27:47 +01004329
4330 /* Check to see if the server refused the early data.
4331 * If so, just send a 425
4332 */
4333 if (objt_cs(s->si[1].end)) {
4334 struct connection *conn = objt_cs(s->si[1].end)->conn;
4335
4336 if (conn->err_code == CO_ER_SSL_EARLY_FAILED)
4337 txn->status = 425;
4338 }
4339
Willy Tarreau350f4872014-11-28 14:42:25 +01004340 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01004341 channel_truncate(rep);
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02004342 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau816b9792009-09-15 21:25:21 +02004343
Willy Tarreaue7dff022015-04-03 01:14:29 +02004344 if (!(s->flags & SF_ERR_MASK))
4345 s->flags |= SF_ERR_SRVCL;
4346 if (!(s->flags & SF_FINST_MASK))
4347 s->flags |= SF_FINST_H;
Willy Tarreaucebf57e2008-08-15 18:16:37 +02004348 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004349 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02004350
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02004351 /* read timeout : return a 504 to the client. */
4352 else if (rep->flags & CF_READ_TIMEOUT) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004353 if (msg->err_pos >= 0)
Willy Tarreaufd9419d2018-09-07 18:01:03 +02004354 http_capture_bad_message(s->be, s, msg, msg->err_state, sess->fe);
Willy Tarreau21d2af32008-02-14 20:25:24 +01004355
Olivier Houcharda798bf52019-03-08 18:52:00 +01004356 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004357 if (objt_server(s->target)) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01004358 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01004359 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_READ_TIMEOUT);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004360 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01004361
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004362 channel_auto_close(rep);
Christopher Faulet0184ea72017-01-05 14:06:34 +01004363 rep->analysers &= AN_RES_FLT_END;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004364 txn->status = 504;
Willy Tarreau350f4872014-11-28 14:42:25 +01004365 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01004366 channel_truncate(rep);
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02004367 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau4076a152009-04-02 15:18:36 +02004368
Willy Tarreaue7dff022015-04-03 01:14:29 +02004369 if (!(s->flags & SF_ERR_MASK))
4370 s->flags |= SF_ERR_SRVTO;
4371 if (!(s->flags & SF_FINST_MASK))
4372 s->flags |= SF_FINST_H;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004373 return 0;
4374 }
Willy Tarreaua7c52762008-08-16 18:40:18 +02004375
Willy Tarreauf003d372012-11-26 13:35:37 +01004376 /* client abort with an abortonclose */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004377 else if ((rep->flags & CF_SHUTR) && ((s->req.flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01004378 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
4379 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
Willy Tarreauf003d372012-11-26 13:35:37 +01004380 if (objt_server(s->target))
Olivier Houcharda798bf52019-03-08 18:52:00 +01004381 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.cli_aborts, 1);
Willy Tarreauf003d372012-11-26 13:35:37 +01004382
Christopher Faulet0184ea72017-01-05 14:06:34 +01004383 rep->analysers &= AN_RES_FLT_END;
Willy Tarreauf003d372012-11-26 13:35:37 +01004384 channel_auto_close(rep);
4385
4386 txn->status = 400;
Willy Tarreau319f7452015-01-14 20:32:59 +01004387 channel_truncate(rep);
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02004388 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreauf003d372012-11-26 13:35:37 +01004389
Willy Tarreaue7dff022015-04-03 01:14:29 +02004390 if (!(s->flags & SF_ERR_MASK))
4391 s->flags |= SF_ERR_CLICL;
4392 if (!(s->flags & SF_FINST_MASK))
4393 s->flags |= SF_FINST_H;
Willy Tarreauf003d372012-11-26 13:35:37 +01004394
Willy Tarreau87b09662015-04-03 00:22:06 +02004395 /* process_stream() will take care of the error */
Willy Tarreauf003d372012-11-26 13:35:37 +01004396 return 0;
4397 }
4398
Willy Tarreau3b8c08a2011-09-02 20:16:24 +02004399 /* close from server, capture the response if the server has started to respond */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004400 else if (rep->flags & CF_SHUTR) {
Willy Tarreau3b8c08a2011-09-02 20:16:24 +02004401 if (msg->msg_state >= HTTP_MSG_RPVER || msg->err_pos >= 0)
Willy Tarreaufd9419d2018-09-07 18:01:03 +02004402 http_capture_bad_message(s->be, s, msg, msg->err_state, sess->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01004403 else if (txn->flags & TX_NOT_FIRST)
4404 goto abort_keep_alive;
Willy Tarreau21d2af32008-02-14 20:25:24 +01004405
Olivier Houcharda798bf52019-03-08 18:52:00 +01004406 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004407 if (objt_server(s->target)) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01004408 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01004409 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_BROKEN_PIPE);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004410 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01004411
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004412 channel_auto_close(rep);
Christopher Faulet0184ea72017-01-05 14:06:34 +01004413 rep->analysers &= AN_RES_FLT_END;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004414 txn->status = 502;
Willy Tarreau350f4872014-11-28 14:42:25 +01004415 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01004416 channel_truncate(rep);
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02004417 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreau21d2af32008-02-14 20:25:24 +01004418
Willy Tarreaue7dff022015-04-03 01:14:29 +02004419 if (!(s->flags & SF_ERR_MASK))
4420 s->flags |= SF_ERR_SRVCL;
4421 if (!(s->flags & SF_FINST_MASK))
4422 s->flags |= SF_FINST_H;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004423 return 0;
4424 }
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004425
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004426 /* write error to client (we don't send any message then) */
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02004427 else if (rep->flags & CF_WRITE_ERROR) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004428 if (msg->err_pos >= 0)
Willy Tarreaufd9419d2018-09-07 18:01:03 +02004429 http_capture_bad_message(s->be, s, msg, msg->err_state, sess->fe);
Willy Tarreau6b726ad2013-12-15 19:31:37 +01004430 else if (txn->flags & TX_NOT_FIRST)
4431 goto abort_keep_alive;
Krzysztof Piotr Oledzki5fb18822009-10-13 21:14:09 +02004432
Olivier Houcharda798bf52019-03-08 18:52:00 +01004433 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Christopher Faulet0184ea72017-01-05 14:06:34 +01004434 rep->analysers &= AN_RES_FLT_END;
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004435 channel_auto_close(rep);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004436
Willy Tarreaue7dff022015-04-03 01:14:29 +02004437 if (!(s->flags & SF_ERR_MASK))
4438 s->flags |= SF_ERR_CLICL;
4439 if (!(s->flags & SF_FINST_MASK))
4440 s->flags |= SF_FINST_H;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004441
Willy Tarreau87b09662015-04-03 00:22:06 +02004442 /* process_stream() will take care of the error */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004443 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004444 }
Willy Tarreau21d2af32008-02-14 20:25:24 +01004445
Willy Tarreau8263d2b2012-08-28 00:06:31 +02004446 channel_dont_close(rep);
Willy Tarreau3f3997e2013-12-15 15:21:32 +01004447 rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004448 return 0;
4449 }
4450
4451 /* More interesting part now : we know that we have a complete
4452 * response which at least looks like HTTP. We have an indicator
4453 * of each header's length, so we can parse them quickly.
4454 */
4455
4456 if (unlikely(msg->err_pos >= 0))
Willy Tarreaufd9419d2018-09-07 18:01:03 +02004457 http_capture_bad_message(s->be, s, msg, msg->err_state, sess->fe);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004458
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004459 /*
4460 * 1: get the status code
4461 */
Willy Tarreauf37954d2018-06-15 18:31:02 +02004462 n = ci_head(rep)[msg->sl.st.c] - '0';
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004463 if (n < 1 || n > 5)
4464 n = 0;
Willy Tarreauda7ff642010-06-23 11:44:09 +02004465 /* when the client triggers a 4xx from the server, it's most often due
4466 * to a missing object or permission. These events should be tracked
4467 * because if they happen often, it may indicate a brute force or a
4468 * vulnerability scan.
4469 */
4470 if (n == 4)
Willy Tarreau87b09662015-04-03 00:22:06 +02004471 stream_inc_http_err_ctr(s);
Willy Tarreauda7ff642010-06-23 11:44:09 +02004472
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004473 if (objt_server(s->target))
Olivier Houcharda798bf52019-03-08 18:52:00 +01004474 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.p.http.rsp[n], 1);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004475
Willy Tarreau91852eb2015-05-01 13:26:00 +02004476 /* RFC7230#2.6 has enforced the format of the HTTP version string to be
4477 * exactly one digit "." one digit. This check may be disabled using
4478 * option accept-invalid-http-response.
4479 */
4480 if (!(s->be->options2 & PR_O2_RSPBUG_OK)) {
4481 if (msg->sl.st.v_l != 8) {
4482 msg->err_pos = 0;
4483 goto hdr_response_bad;
4484 }
4485
Willy Tarreauf37954d2018-06-15 18:31:02 +02004486 if (ci_head(rep)[4] != '/' ||
4487 !isdigit((unsigned char)ci_head(rep)[5]) ||
4488 ci_head(rep)[6] != '.' ||
4489 !isdigit((unsigned char)ci_head(rep)[7])) {
Willy Tarreau91852eb2015-05-01 13:26:00 +02004490 msg->err_pos = 4;
4491 goto hdr_response_bad;
4492 }
4493 }
4494
Willy Tarreau5b154472009-12-21 20:11:07 +01004495 /* check if the response is HTTP/1.1 or above */
4496 if ((msg->sl.st.v_l == 8) &&
Willy Tarreauf37954d2018-06-15 18:31:02 +02004497 ((ci_head(rep)[5] > '1') ||
4498 ((ci_head(rep)[5] == '1') && (ci_head(rep)[7] >= '1'))))
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004499 msg->flags |= HTTP_MSGF_VER_11;
Willy Tarreau5b154472009-12-21 20:11:07 +01004500
4501 /* "connection" has not been parsed yet */
Willy Tarreau50fc7772012-11-11 22:19:57 +01004502 txn->flags &= ~(TX_HDR_CONN_PRS|TX_HDR_CONN_CLO|TX_HDR_CONN_KAL|TX_HDR_CONN_UPG|TX_CON_CLO_SET|TX_CON_KAL_SET);
Willy Tarreau5b154472009-12-21 20:11:07 +01004503
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004504 /* transfer length unknown*/
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004505 msg->flags &= ~HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004506
Willy Tarreauf37954d2018-06-15 18:31:02 +02004507 txn->status = strl2ui(ci_head(rep) + msg->sl.st.c, msg->sl.st.c_l);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004508
Willy Tarreau39650402010-03-15 19:44:39 +01004509 /* Adjust server's health based on status code. Note: status codes 501
4510 * and 505 are triggered on demand by client request, so we must not
4511 * count them as server failures.
4512 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004513 if (objt_server(s->target)) {
Willy Tarreaud45b3d52010-05-20 11:49:03 +02004514 if (txn->status >= 100 && (txn->status < 500 || txn->status == 501 || txn->status == 505))
Willy Tarreaub54c40a2018-12-02 19:28:41 +01004515 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_OK);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02004516 else
Willy Tarreaub54c40a2018-12-02 19:28:41 +01004517 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_STS);
Willy Tarreaud45b3d52010-05-20 11:49:03 +02004518 }
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01004519
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004520 /*
Willy Tarreaua14ad722017-07-07 11:36:32 +02004521 * We may be facing a 100-continue response, or any other informational
4522 * 1xx response which is non-final, in which case this is not the right
4523 * response, and we're waiting for the next one. Let's allow this response
4524 * to go to the client and wait for the next one. There's an exception for
4525 * 101 which is used later in the code to switch protocols.
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004526 */
Willy Tarreaua14ad722017-07-07 11:36:32 +02004527 if (txn->status < 200 &&
4528 (txn->status == 100 || txn->status >= 102)) {
Willy Tarreau628c40c2014-04-24 19:11:26 +02004529 hdr_idx_init(&txn->hdr_idx);
4530 msg->next -= channel_forward(rep, msg->next);
4531 msg->msg_state = HTTP_MSG_RPBEFORE;
4532 txn->status = 0;
4533 s->logs.t_data = -1; /* was not a response yet */
Christopher Faulet3e344292015-11-24 16:24:13 +01004534 FLT_STRM_CB(s, flt_http_reset(s, msg));
Willy Tarreau628c40c2014-04-24 19:11:26 +02004535 goto next_one;
Willy Tarreaua14ad722017-07-07 11:36:32 +02004536 }
Willy Tarreau628c40c2014-04-24 19:11:26 +02004537
Willy Tarreaua14ad722017-07-07 11:36:32 +02004538 /*
4539 * 2: check for cacheability.
4540 */
4541
4542 switch (txn->status) {
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004543 case 200:
4544 case 203:
Willy Tarreauc55ddce2017-12-21 11:41:38 +01004545 case 204:
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004546 case 206:
4547 case 300:
4548 case 301:
Willy Tarreauc55ddce2017-12-21 11:41:38 +01004549 case 404:
4550 case 405:
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004551 case 410:
Willy Tarreauc55ddce2017-12-21 11:41:38 +01004552 case 414:
4553 case 501:
Willy Tarreau83ece462017-12-21 15:13:09 +01004554 break;
4555 default:
Willy Tarreauc55ddce2017-12-21 11:41:38 +01004556 /* RFC7231#6.1:
4557 * Responses with status codes that are defined as
4558 * cacheable by default (e.g., 200, 203, 204, 206,
4559 * 300, 301, 404, 405, 410, 414, and 501 in this
4560 * specification) can be reused by a cache with
4561 * heuristic expiration unless otherwise indicated
4562 * by the method definition or explicit cache
4563 * controls [RFC7234]; all other status codes are
4564 * not cacheable by default.
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004565 */
Willy Tarreau83ece462017-12-21 15:13:09 +01004566 txn->flags &= ~(TX_CACHEABLE | TX_CACHE_COOK);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004567 break;
4568 }
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004569
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004570 /*
4571 * 3: we may need to capture headers
4572 */
4573 s->logs.logwait &= ~LW_RESP;
Willy Tarreaucb7dd012015-04-03 22:16:32 +02004574 if (unlikely((s->logs.logwait & LW_RSPHDR) && s->res_cap))
Christopher Faulet10079f52018-10-03 15:17:28 +02004575 http_capture_headers(ci_head(rep), &txn->hdr_idx,
4576 s->res_cap, sess->fe->rsp_cap);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004577
Willy Tarreau557f1992015-05-01 10:05:17 +02004578 /* 4: determine the transfer-length according to RFC2616 #4.4, updated
4579 * by RFC7230#3.3.3 :
4580 *
4581 * The length of a message body is determined by one of the following
4582 * (in order of precedence):
4583 *
Christopher Fauletd1cd2092016-11-28 10:14:03 +01004584 * 1. Any 2xx (Successful) response to a CONNECT request implies that
4585 * the connection will become a tunnel immediately after the empty
4586 * line that concludes the header fields. A client MUST ignore
4587 * any Content-Length or Transfer-Encoding header fields received
4588 * in such a message. Any 101 response (Switching Protocols) is
4589 * managed in the same manner.
4590 *
4591 * 2. Any response to a HEAD request and any response with a 1xx
Willy Tarreau557f1992015-05-01 10:05:17 +02004592 * (Informational), 204 (No Content), or 304 (Not Modified) status
4593 * code is always terminated by the first empty line after the
4594 * header fields, regardless of the header fields present in the
4595 * message, and thus cannot contain a message body.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004596 *
Willy Tarreau557f1992015-05-01 10:05:17 +02004597 * 3. If a Transfer-Encoding header field is present and the chunked
4598 * transfer coding (Section 4.1) is the final encoding, the message
4599 * body length is determined by reading and decoding the chunked
4600 * data until the transfer coding indicates the data is complete.
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004601 *
Willy Tarreau557f1992015-05-01 10:05:17 +02004602 * If a Transfer-Encoding header field is present in a response and
4603 * the chunked transfer coding is not the final encoding, the
4604 * message body length is determined by reading the connection until
4605 * it is closed by the server. If a Transfer-Encoding header field
4606 * is present in a request and the chunked transfer coding is not
4607 * the final encoding, the message body length cannot be determined
4608 * reliably; the server MUST respond with the 400 (Bad Request)
4609 * status code and then close the connection.
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004610 *
Willy Tarreau557f1992015-05-01 10:05:17 +02004611 * If a message is received with both a Transfer-Encoding and a
4612 * Content-Length header field, the Transfer-Encoding overrides the
4613 * Content-Length. Such a message might indicate an attempt to
4614 * perform request smuggling (Section 9.5) or response splitting
4615 * (Section 9.4) and ought to be handled as an error. A sender MUST
4616 * remove the received Content-Length field prior to forwarding such
4617 * a message downstream.
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004618 *
Willy Tarreau557f1992015-05-01 10:05:17 +02004619 * 4. If a message is received without Transfer-Encoding and with
4620 * either multiple Content-Length header fields having differing
4621 * field-values or a single Content-Length header field having an
4622 * invalid value, then the message framing is invalid and the
4623 * recipient MUST treat it as an unrecoverable error. If this is a
4624 * request message, the server MUST respond with a 400 (Bad Request)
4625 * status code and then close the connection. If this is a response
4626 * message received by a proxy, the proxy MUST close the connection
4627 * to the server, discard the received response, and send a 502 (Bad
4628 * Gateway) response to the client. If this is a response message
4629 * received by a user agent, the user agent MUST close the
4630 * connection to the server and discard the received response.
4631 *
4632 * 5. If a valid Content-Length header field is present without
4633 * Transfer-Encoding, its decimal value defines the expected message
4634 * body length in octets. If the sender closes the connection or
4635 * the recipient times out before the indicated number of octets are
4636 * received, the recipient MUST consider the message to be
4637 * incomplete and close the connection.
4638 *
4639 * 6. If this is a request message and none of the above are true, then
4640 * the message body length is zero (no message body is present).
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004641 *
Willy Tarreau557f1992015-05-01 10:05:17 +02004642 * 7. Otherwise, this is a response message without a declared message
4643 * body length, so the message body length is determined by the
4644 * number of octets received prior to the server closing the
4645 * connection.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004646 */
4647
4648 /* Skip parsing if no content length is possible. The response flags
Willy Tarreau124d9912011-03-01 20:30:48 +01004649 * remain 0 as well as the chunk_len, which may or may not mirror
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004650 * the real header value, and we note that we know the response's length.
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004651 * FIXME: should we parse anyway and return an error on chunked encoding ?
4652 */
Christopher Fauletd1cd2092016-11-28 10:14:03 +01004653 if (unlikely((txn->meth == HTTP_METH_CONNECT && txn->status == 200) ||
4654 txn->status == 101)) {
4655 /* Either we've established an explicit tunnel, or we're
4656 * switching the protocol. In both cases, we're very unlikely
4657 * to understand the next protocols. We have to switch to tunnel
4658 * mode, so that we transfer the request and responses then let
4659 * this protocol pass unmodified. When we later implement specific
4660 * parsers for such protocols, we'll want to check the Upgrade
4661 * header which contains information about that protocol for
4662 * responses with status 101 (eg: see RFC2817 about TLS).
4663 */
4664 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_TUN;
4665 msg->flags |= HTTP_MSGF_XFER_LEN;
4666 goto end;
4667 }
4668
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004669 if (txn->meth == HTTP_METH_HEAD ||
4670 (txn->status >= 100 && txn->status < 200) ||
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004671 txn->status == 204 || txn->status == 304) {
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004672 msg->flags |= HTTP_MSGF_XFER_LEN;
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004673 goto skip_content_length;
4674 }
4675
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004676 use_close_only = 0;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004677 ctx.idx = 0;
Willy Tarreauf37954d2018-06-15 18:31:02 +02004678 while (http_find_header2("Transfer-Encoding", 17, ci_head(rep), &txn->hdr_idx, &ctx)) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004679 if (ctx.vlen == 7 && strncasecmp(ctx.line + ctx.val, "chunked", 7) == 0)
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004680 msg->flags |= (HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
4681 else if (msg->flags & HTTP_MSGF_TE_CHNK) {
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004682 /* bad transfer-encoding (chunked followed by something else) */
4683 use_close_only = 1;
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004684 msg->flags &= ~(HTTP_MSGF_TE_CHNK | HTTP_MSGF_XFER_LEN);
Willy Tarreaue8e785b2009-12-26 15:34:26 +01004685 break;
4686 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004687 }
4688
Willy Tarreau1c913912015-04-30 10:57:51 +02004689 /* Chunked responses must have their content-length removed */
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004690 ctx.idx = 0;
Willy Tarreaub4d0c032015-05-01 10:25:45 +02004691 if (use_close_only || (msg->flags & HTTP_MSGF_TE_CHNK)) {
Willy Tarreauf37954d2018-06-15 18:31:02 +02004692 while (http_find_header2("Content-Length", 14, ci_head(rep), &txn->hdr_idx, &ctx))
Willy Tarreau1c913912015-04-30 10:57:51 +02004693 http_remove_header2(msg, &txn->hdr_idx, &ctx);
4694 }
Willy Tarreauf37954d2018-06-15 18:31:02 +02004695 else while (http_find_header2("Content-Length", 14, ci_head(rep), &txn->hdr_idx, &ctx)) {
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004696 signed long long cl;
4697
Willy Tarreauad14f752011-09-02 20:33:27 +02004698 if (!ctx.vlen) {
Willy Tarreauf37954d2018-06-15 18:31:02 +02004699 msg->err_pos = ctx.line + ctx.val - ci_head(rep);
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004700 goto hdr_response_bad;
Willy Tarreauad14f752011-09-02 20:33:27 +02004701 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004702
Willy Tarreauad14f752011-09-02 20:33:27 +02004703 if (strl2llrc(ctx.line + ctx.val, ctx.vlen, &cl)) {
Willy Tarreauf37954d2018-06-15 18:31:02 +02004704 msg->err_pos = ctx.line + ctx.val - ci_head(rep);
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004705 goto hdr_response_bad; /* parse failure */
Willy Tarreauad14f752011-09-02 20:33:27 +02004706 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004707
Willy Tarreauad14f752011-09-02 20:33:27 +02004708 if (cl < 0) {
Willy Tarreauf37954d2018-06-15 18:31:02 +02004709 msg->err_pos = ctx.line + ctx.val - ci_head(rep);
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004710 goto hdr_response_bad;
Willy Tarreauad14f752011-09-02 20:33:27 +02004711 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004712
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004713 if ((msg->flags & HTTP_MSGF_CNT_LEN) && (msg->chunk_len != cl)) {
Willy Tarreauf37954d2018-06-15 18:31:02 +02004714 msg->err_pos = ctx.line + ctx.val - ci_head(rep);
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004715 goto hdr_response_bad; /* already specified, was different */
Willy Tarreauad14f752011-09-02 20:33:27 +02004716 }
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004717
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004718 msg->flags |= HTTP_MSGF_CNT_LEN | HTTP_MSGF_XFER_LEN;
Willy Tarreau124d9912011-03-01 20:30:48 +01004719 msg->body_len = msg->chunk_len = cl;
Willy Tarreaub8c82c22009-10-18 23:45:12 +02004720 }
4721
Lukas Tribusfd9b68c2018-10-27 20:06:59 +02004722 /* check for NTML authentication headers in 401 (WWW-Authenticate) and
4723 * 407 (Proxy-Authenticate) responses and set the connection to private
4724 */
4725 if (srv_conn && txn->status == 401) {
4726 /* check for Negotiate/NTLM WWW-Authenticate headers */
4727 ctx.idx = 0;
4728 while (http_find_header2("WWW-Authenticate", 16, ci_head(rep), &txn->hdr_idx, &ctx)) {
4729 if ((ctx.vlen >= 9 && word_match(ctx.line + ctx.val, ctx.vlen, "Negotiate", 9)) ||
4730 (ctx.vlen >= 4 && word_match(ctx.line + ctx.val, ctx.vlen, "NTLM", 4)))
4731 srv_conn->flags |= CO_FL_PRIVATE;
4732 }
4733 } else if (srv_conn && txn->status == 407) {
4734 /* check for Negotiate/NTLM Proxy-Authenticate headers */
4735 ctx.idx = 0;
4736 while (http_find_header2("Proxy-Authenticate", 18, ci_head(rep), &txn->hdr_idx, &ctx)) {
4737 if ((ctx.vlen >= 9 && word_match(ctx.line + ctx.val, ctx.vlen, "Negotiate", 9)) ||
4738 (ctx.vlen >= 4 && word_match(ctx.line + ctx.val, ctx.vlen, "NTLM", 4)))
4739 srv_conn->flags |= CO_FL_PRIVATE;
4740 }
4741 }
4742
Christopher Fauletd1cd2092016-11-28 10:14:03 +01004743 skip_content_length:
Willy Tarreau5b154472009-12-21 20:11:07 +01004744 /* Now we have to check if we need to modify the Connection header.
4745 * This is more difficult on the response than it is on the request,
4746 * because we can have two different HTTP versions and we don't know
4747 * how the client will interprete a response. For instance, let's say
4748 * that the client sends a keep-alive request in HTTP/1.0 and gets an
4749 * HTTP/1.1 response without any header. Maybe it will bound itself to
4750 * HTTP/1.0 because it only knows about it, and will consider the lack
4751 * of header as a close, or maybe it knows HTTP/1.1 and can consider
4752 * the lack of header as a keep-alive. Thus we will use two flags
4753 * indicating how a request MAY be understood by the client. In case
4754 * of multiple possibilities, we'll fix the header to be explicit. If
4755 * ambiguous cases such as both close and keepalive are seen, then we
4756 * will fall back to explicit close. Note that we won't take risks with
4757 * HTTP/1.0 clients which may not necessarily understand keep-alive.
Willy Tarreau60466522010-01-18 19:08:45 +01004758 * See doc/internals/connection-header.txt for the complete matrix.
Willy Tarreau5b154472009-12-21 20:11:07 +01004759 */
Christopher Fauletd1cd2092016-11-28 10:14:03 +01004760 if ((txn->status >= 200) && !(txn->flags & TX_HDR_CONN_PRS) &&
Christopher Faulet315b39c2018-09-21 16:26:19 +02004761 (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) {
Willy Tarreau60466522010-01-18 19:08:45 +01004762 int to_del = 0;
Willy Tarreau5b154472009-12-21 20:11:07 +01004763
Willy Tarreau60466522010-01-18 19:08:45 +01004764 /* on unknown transfer length, we must close */
Christopher Faulet315b39c2018-09-21 16:26:19 +02004765 if (!(msg->flags & HTTP_MSGF_XFER_LEN))
Willy Tarreau60466522010-01-18 19:08:45 +01004766 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_CLO;
Willy Tarreau5b154472009-12-21 20:11:07 +01004767
Willy Tarreau60466522010-01-18 19:08:45 +01004768 /* now adjust header transformations depending on current state */
Christopher Faulet315b39c2018-09-21 16:26:19 +02004769 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_CLO) {
Willy Tarreau60466522010-01-18 19:08:45 +01004770 to_del |= 2; /* remove "keep-alive" on any response */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004771 if (!(msg->flags & HTTP_MSGF_VER_11))
Willy Tarreau60466522010-01-18 19:08:45 +01004772 to_del |= 1; /* remove "close" for HTTP/1.0 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01004773 }
Willy Tarreau60466522010-01-18 19:08:45 +01004774 else { /* SCL / KAL */
4775 to_del |= 1; /* remove "close" on any response */
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004776 if (txn->req.flags & msg->flags & HTTP_MSGF_VER_11)
Willy Tarreau60466522010-01-18 19:08:45 +01004777 to_del |= 2; /* remove "keep-alive" on pure 1.1 responses */
Willy Tarreau5b154472009-12-21 20:11:07 +01004778 }
Willy Tarreau5b154472009-12-21 20:11:07 +01004779
Willy Tarreau60466522010-01-18 19:08:45 +01004780 /* Parse and remove some headers from the connection header */
Willy Tarreau6acf7c92012-03-09 13:30:45 +01004781 http_parse_connection_header(txn, msg, to_del);
Willy Tarreau5b154472009-12-21 20:11:07 +01004782
Willy Tarreau60466522010-01-18 19:08:45 +01004783 /* Some keep-alive responses are converted to Server-close if
4784 * the server wants to close.
Willy Tarreau5b154472009-12-21 20:11:07 +01004785 */
Willy Tarreau60466522010-01-18 19:08:45 +01004786 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL) {
4787 if ((txn->flags & TX_HDR_CONN_CLO) ||
Willy Tarreaua36fc4d2012-02-17 17:39:37 +01004788 (!(txn->flags & TX_HDR_CONN_KAL) && !(msg->flags & HTTP_MSGF_VER_11)))
Willy Tarreau60466522010-01-18 19:08:45 +01004789 txn->flags = (txn->flags & ~TX_CON_WANT_MSK) | TX_CON_WANT_SCL;
Willy Tarreaub608feb2010-01-02 22:47:18 +01004790 }
Willy Tarreau5b154472009-12-21 20:11:07 +01004791 }
4792
Christopher Fauletd1cd2092016-11-28 10:14:03 +01004793 end:
Willy Tarreau7959a552013-09-23 16:44:27 +02004794 /* we want to have the response time before we start processing it */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02004795 s->logs.t_data = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau7959a552013-09-23 16:44:27 +02004796
Willy Tarreauf118d9f2014-04-24 18:26:08 +02004797 /* end of job, return OK */
4798 rep->analysers &= ~an_bit;
4799 rep->analyse_exp = TICK_ETERNITY;
4800 channel_auto_close(rep);
4801 return 1;
4802
4803 abort_keep_alive:
4804 /* A keep-alive request to the server failed on a network error.
4805 * The client is required to retry. We need to close without returning
4806 * any other information so that the client retries.
4807 */
4808 txn->status = 0;
Christopher Faulet0184ea72017-01-05 14:06:34 +01004809 rep->analysers &= AN_RES_FLT_END;
4810 s->req.analysers &= AN_REQ_FLT_END;
Willy Tarreauf118d9f2014-04-24 18:26:08 +02004811 channel_auto_close(rep);
4812 s->logs.logwait = 0;
4813 s->logs.level = 0;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004814 s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */
Willy Tarreau319f7452015-01-14 20:32:59 +01004815 channel_truncate(rep);
Christopher Fauleta94e5a52015-12-09 15:55:06 +01004816 http_reply_and_close(s, txn->status, NULL);
Willy Tarreauf118d9f2014-04-24 18:26:08 +02004817 return 0;
4818}
4819
4820/* This function performs all the processing enabled for the current response.
4821 * It normally returns 1 unless it wants to break. It relies on buffers flags,
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01004822 * and updates s->res.analysers. It might make sense to explode it into several
Willy Tarreauf118d9f2014-04-24 18:26:08 +02004823 * other functions. It works like process_request (see indications above).
4824 */
Willy Tarreau87b09662015-04-03 00:22:06 +02004825int http_process_res_common(struct stream *s, struct channel *rep, int an_bit, struct proxy *px)
Willy Tarreauf118d9f2014-04-24 18:26:08 +02004826{
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004827 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02004828 struct http_txn *txn = s->txn;
Willy Tarreauf118d9f2014-04-24 18:26:08 +02004829 struct http_msg *msg = &txn->rsp;
4830 struct proxy *cur_proxy;
4831 struct cond_wordlist *wl;
Thierry FOURNIER9e2ef992015-02-25 13:51:19 +01004832 enum rule_result ret = HTTP_RULE_RES_CONT;
Willy Tarreauf118d9f2014-04-24 18:26:08 +02004833
Christopher Faulete0768eb2018-10-03 16:38:02 +02004834 if (IS_HTX_STRM(s))
4835 return htx_process_res_common(s, rep, an_bit, px);
4836
Christopher Faulet45073512018-07-20 10:16:29 +02004837 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n",
Willy Tarreauf118d9f2014-04-24 18:26:08 +02004838 now_ms, __FUNCTION__,
4839 s,
4840 rep,
4841 rep->rex, rep->wex,
4842 rep->flags,
Willy Tarreauf37954d2018-06-15 18:31:02 +02004843 ci_data(rep),
Willy Tarreauf118d9f2014-04-24 18:26:08 +02004844 rep->analysers);
4845
4846 if (unlikely(msg->msg_state < HTTP_MSG_BODY)) /* we need more data */
4847 return 0;
4848
Willy Tarreau70730dd2014-04-24 18:06:27 +02004849 /* The stats applet needs to adjust the Connection header but we don't
4850 * apply any filter there.
4851 */
Willy Tarreau612adb82015-03-10 15:25:54 +01004852 if (unlikely(objt_applet(s->target) == &http_stats_applet)) {
4853 rep->analysers &= ~an_bit;
4854 rep->analyse_exp = TICK_ETERNITY;
Willy Tarreau70730dd2014-04-24 18:06:27 +02004855 goto skip_filters;
Willy Tarreau612adb82015-03-10 15:25:54 +01004856 }
Willy Tarreau70730dd2014-04-24 18:06:27 +02004857
Willy Tarreau58975672014-04-24 21:13:57 +02004858 /*
4859 * We will have to evaluate the filters.
4860 * As opposed to version 1.2, now they will be evaluated in the
4861 * filters order and not in the header order. This means that
4862 * each filter has to be validated among all headers.
4863 *
4864 * Filters are tried with ->be first, then with ->fe if it is
4865 * different from ->be.
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01004866 *
4867 * Maybe we are in resume condiion. In this case I choose the
4868 * "struct proxy" which contains the rule list matching the resume
4869 * pointer. If none of theses "struct proxy" match, I initialise
4870 * the process with the first one.
4871 *
4872 * In fact, I check only correspondance betwwen the current list
4873 * pointer and the ->fe rule list. If it doesn't match, I initialize
4874 * the loop with the ->be.
Willy Tarreau58975672014-04-24 21:13:57 +02004875 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004876 if (s->current_rule_list == &sess->fe->http_res_rules)
4877 cur_proxy = sess->fe;
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01004878 else
4879 cur_proxy = s->be;
Willy Tarreau58975672014-04-24 21:13:57 +02004880 while (1) {
4881 struct proxy *rule_set = cur_proxy;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004882
Willy Tarreau58975672014-04-24 21:13:57 +02004883 /* evaluate http-response rules */
Willy Tarreau51d861a2015-05-22 17:30:48 +02004884 if (ret == HTTP_RULE_RES_CONT) {
Willy Tarreau987e3fb2015-04-04 01:09:08 +02004885 ret = http_res_get_intercept_rule(cur_proxy, &cur_proxy->http_res_rules, s);
Willy Tarreaue365c0b2013-06-11 16:06:12 +02004886
Willy Tarreau51d861a2015-05-22 17:30:48 +02004887 if (ret == HTTP_RULE_RES_BADREQ)
4888 goto return_srv_prx_502;
4889
4890 if (ret == HTTP_RULE_RES_DONE) {
4891 rep->analysers &= ~an_bit;
4892 rep->analyse_exp = TICK_ETERNITY;
4893 return 1;
4894 }
4895 }
4896
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01004897 /* we need to be called again. */
4898 if (ret == HTTP_RULE_RES_YIELD) {
4899 channel_dont_close(rep);
4900 return 0;
4901 }
4902
Willy Tarreau58975672014-04-24 21:13:57 +02004903 /* try headers filters */
4904 if (rule_set->rsp_exp != NULL) {
4905 if (apply_filters_to_response(s, rep, rule_set) < 0) {
4906 return_bad_resp:
4907 if (objt_server(s->target)) {
Olivier Houcharda798bf52019-03-08 18:52:00 +01004908 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
Willy Tarreaub54c40a2018-12-02 19:28:41 +01004909 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_RSP);
Willy Tarreau21d2af32008-02-14 20:25:24 +01004910 }
Olivier Houcharda798bf52019-03-08 18:52:00 +01004911 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Willy Tarreau58975672014-04-24 21:13:57 +02004912 return_srv_prx_502:
Christopher Faulet0184ea72017-01-05 14:06:34 +01004913 rep->analysers &= AN_RES_FLT_END;
Willy Tarreau58975672014-04-24 21:13:57 +02004914 txn->status = 502;
4915 s->logs.t_data = -1; /* was not a valid response */
Willy Tarreau350f4872014-11-28 14:42:25 +01004916 s->si[1].flags |= SI_FL_NOLINGER;
Willy Tarreau319f7452015-01-14 20:32:59 +01004917 channel_truncate(rep);
Jarno Huuskonen9e6906b2017-03-06 14:21:49 +02004918 http_reply_and_close(s, txn->status, http_error_message(s));
Willy Tarreaue7dff022015-04-03 01:14:29 +02004919 if (!(s->flags & SF_ERR_MASK))
4920 s->flags |= SF_ERR_PRXCOND;
4921 if (!(s->flags & SF_FINST_MASK))
4922 s->flags |= SF_FINST_H;
Willy Tarreau58975672014-04-24 21:13:57 +02004923 return 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004924 }
Willy Tarreau58975672014-04-24 21:13:57 +02004925 }
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004926
Willy Tarreau58975672014-04-24 21:13:57 +02004927 /* has the response been denied ? */
4928 if (txn->flags & TX_SVDENY) {
4929 if (objt_server(s->target))
Olivier Houcharda798bf52019-03-08 18:52:00 +01004930 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_secu, 1);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004931
Olivier Houcharda798bf52019-03-08 18:52:00 +01004932 _HA_ATOMIC_ADD(&s->be->be_counters.denied_resp, 1);
4933 _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_resp, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +02004934 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +01004935 _HA_ATOMIC_ADD(&sess->listener->counters->denied_resp, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02004936
Willy Tarreau58975672014-04-24 21:13:57 +02004937 goto return_srv_prx_502;
4938 }
Willy Tarreau0bbc3cf2006-10-15 14:26:02 +02004939
Willy Tarreau58975672014-04-24 21:13:57 +02004940 /* add response headers from the rule sets in the same order */
4941 list_for_each_entry(wl, &rule_set->rsp_add, list) {
Willy Tarreauce730de2014-09-16 10:40:38 +02004942 if (txn->status < 200 && txn->status != 101)
Willy Tarreauf5483bf2008-08-14 18:35:40 +02004943 break;
Willy Tarreau58975672014-04-24 21:13:57 +02004944 if (wl->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02004945 int ret = acl_exec_cond(wl->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Willy Tarreau58975672014-04-24 21:13:57 +02004946 ret = acl_pass(ret);
4947 if (((struct acl_cond *)wl->cond)->pol == ACL_COND_UNLESS)
4948 ret = !ret;
4949 if (!ret)
4950 continue;
4951 }
Christopher Faulet10079f52018-10-03 15:17:28 +02004952 if (unlikely(http_header_add_tail2(&txn->rsp, &txn->hdr_idx, wl->s, strlen(wl->s)) < 0))
Willy Tarreau58975672014-04-24 21:13:57 +02004953 goto return_bad_resp;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004954 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02004955
Willy Tarreau58975672014-04-24 21:13:57 +02004956 /* check whether we're already working on the frontend */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004957 if (cur_proxy == sess->fe)
Willy Tarreau58975672014-04-24 21:13:57 +02004958 break;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02004959 cur_proxy = sess->fe;
Willy Tarreau58975672014-04-24 21:13:57 +02004960 }
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01004961
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01004962 /* After this point, this anayzer can't return yield, so we can
4963 * remove the bit corresponding to this analyzer from the list.
4964 *
4965 * Note that the intermediate returns and goto found previously
4966 * reset the analyzers.
4967 */
4968 rep->analysers &= ~an_bit;
4969 rep->analyse_exp = TICK_ETERNITY;
4970
Willy Tarreau58975672014-04-24 21:13:57 +02004971 /* OK that's all we can do for 1xx responses */
Willy Tarreauce730de2014-09-16 10:40:38 +02004972 if (unlikely(txn->status < 200 && txn->status != 101))
Willy Tarreau58975672014-04-24 21:13:57 +02004973 goto skip_header_mangling;
Willy Tarreau63c9e5f2009-12-22 16:01:27 +01004974
Willy Tarreau58975672014-04-24 21:13:57 +02004975 /*
4976 * Now check for a server cookie.
4977 */
Willy Tarreau53a09d52015-08-10 18:59:40 +02004978 if (s->be->cookie_name || sess->fe->capture_name || (s->be->options & PR_O_CHK_CACHE))
Willy Tarreau58975672014-04-24 21:13:57 +02004979 manage_server_side_cookies(s, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02004980
Willy Tarreau58975672014-04-24 21:13:57 +02004981 /*
4982 * Check for cache-control or pragma headers if required.
4983 */
Willy Tarreau12b32f22017-12-21 16:08:09 +01004984 if ((s->be->options & PR_O_CHK_CACHE) || (s->be->ck_opts & PR_CK_NOC))
Willy Tarreau58975672014-04-24 21:13:57 +02004985 check_response_for_cacheability(s, rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +02004986
Willy Tarreau58975672014-04-24 21:13:57 +02004987 /*
4988 * Add server cookie in the response if needed
4989 */
4990 if (objt_server(s->target) && (s->be->ck_opts & PR_CK_INS) &&
4991 !((txn->flags & TX_SCK_FOUND) && (s->be->ck_opts & PR_CK_PSV)) &&
Willy Tarreaue7dff022015-04-03 01:14:29 +02004992 (!(s->flags & SF_DIRECT) ||
Willy Tarreau58975672014-04-24 21:13:57 +02004993 ((s->be->cookie_maxidle || txn->cookie_last_date) &&
4994 (!txn->cookie_last_date || (txn->cookie_last_date - date.tv_sec) < 0)) ||
4995 (s->be->cookie_maxlife && !txn->cookie_first_date) || // set the first_date
4996 (!s->be->cookie_maxlife && txn->cookie_first_date)) && // remove the first_date
4997 (!(s->be->ck_opts & PR_CK_POST) || (txn->meth == HTTP_METH_POST)) &&
Willy Tarreaue7dff022015-04-03 01:14:29 +02004998 !(s->flags & SF_IGNORE_PRST)) {
Willy Tarreau58975672014-04-24 21:13:57 +02004999 /* the server is known, it's not the one the client requested, or the
5000 * cookie's last seen date needs to be refreshed. We have to
5001 * insert a set-cookie here, except if we want to insert only on POST
5002 * requests and this one isn't. Note that servers which don't have cookies
5003 * (eg: some backup servers) will return a full cookie removal request.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005004 */
Willy Tarreau58975672014-04-24 21:13:57 +02005005 if (!objt_server(s->target)->cookie) {
5006 chunk_printf(&trash,
5007 "Set-Cookie: %s=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/",
5008 s->be->cookie_name);
5009 }
5010 else {
5011 chunk_printf(&trash, "Set-Cookie: %s=%s", s->be->cookie_name, objt_server(s->target)->cookie);
Willy Tarreaua15645d2007-03-18 16:22:39 +01005012
Willy Tarreau58975672014-04-24 21:13:57 +02005013 if (s->be->cookie_maxidle || s->be->cookie_maxlife) {
5014 /* emit last_date, which is mandatory */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005015 trash.area[trash.data++] = COOKIE_DELIM_DATE;
5016 s30tob64((date.tv_sec+3) >> 2,
5017 trash.area + trash.data);
5018 trash.data += 5;
Willy Tarreauef4f3912010-10-07 21:00:29 +02005019
Willy Tarreau58975672014-04-24 21:13:57 +02005020 if (s->be->cookie_maxlife) {
5021 /* emit first_date, which is either the original one or
5022 * the current date.
5023 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005024 trash.area[trash.data++] = COOKIE_DELIM_DATE;
Willy Tarreau58975672014-04-24 21:13:57 +02005025 s30tob64(txn->cookie_first_date ?
5026 txn->cookie_first_date >> 2 :
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005027 (date.tv_sec+3) >> 2,
5028 trash.area + trash.data);
5029 trash.data += 5;
Willy Tarreauef4f3912010-10-07 21:00:29 +02005030 }
Willy Tarreauef4f3912010-10-07 21:00:29 +02005031 }
Willy Tarreau58975672014-04-24 21:13:57 +02005032 chunk_appendf(&trash, "; path=/");
5033 }
Willy Tarreau4992dd22012-05-31 21:02:17 +02005034
Willy Tarreau58975672014-04-24 21:13:57 +02005035 if (s->be->cookie_domain)
5036 chunk_appendf(&trash, "; domain=%s", s->be->cookie_domain);
Willy Tarreauef4f3912010-10-07 21:00:29 +02005037
Willy Tarreau58975672014-04-24 21:13:57 +02005038 if (s->be->ck_opts & PR_CK_HTTPONLY)
5039 chunk_appendf(&trash, "; HttpOnly");
Willy Tarreaubaaee002006-06-26 02:48:02 +02005040
Willy Tarreau58975672014-04-24 21:13:57 +02005041 if (s->be->ck_opts & PR_CK_SECURE)
5042 chunk_appendf(&trash, "; Secure");
Willy Tarreaubaaee002006-06-26 02:48:02 +02005043
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005044 if (unlikely(http_header_add_tail2(&txn->rsp, &txn->hdr_idx, trash.area, trash.data) < 0))
Willy Tarreau58975672014-04-24 21:13:57 +02005045 goto return_bad_resp;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005046
Willy Tarreau58975672014-04-24 21:13:57 +02005047 txn->flags &= ~TX_SCK_MASK;
Willy Tarreaub05e48a2018-09-20 11:12:58 +02005048 if (__objt_server(s->target)->cookie && (s->flags & SF_DIRECT))
Willy Tarreau58975672014-04-24 21:13:57 +02005049 /* the server did not change, only the date was updated */
5050 txn->flags |= TX_SCK_UPDATED;
5051 else
5052 txn->flags |= TX_SCK_INSERTED;
Willy Tarreaubaaee002006-06-26 02:48:02 +02005053
Willy Tarreau58975672014-04-24 21:13:57 +02005054 /* Here, we will tell an eventual cache on the client side that we don't
5055 * want it to cache this reply because HTTP/1.0 caches also cache cookies !
5056 * Some caches understand the correct form: 'no-cache="set-cookie"', but
5057 * others don't (eg: apache <= 1.3.26). So we use 'private' instead.
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005058 */
Willy Tarreau58975672014-04-24 21:13:57 +02005059 if ((s->be->ck_opts & PR_CK_NOC) && (txn->flags & TX_CACHEABLE)) {
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005060
Willy Tarreau58975672014-04-24 21:13:57 +02005061 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02005062
Willy Tarreau58975672014-04-24 21:13:57 +02005063 if (unlikely(http_header_add_tail2(&txn->rsp, &txn->hdr_idx,
5064 "Cache-control: private", 22) < 0))
5065 goto return_bad_resp;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005066 }
Willy Tarreau58975672014-04-24 21:13:57 +02005067 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01005068
Willy Tarreau58975672014-04-24 21:13:57 +02005069 /*
5070 * Check if result will be cacheable with a cookie.
5071 * We'll block the response if security checks have caught
5072 * nasty things such as a cacheable cookie.
5073 */
5074 if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) ==
5075 (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) &&
5076 (s->be->options & PR_O_CHK_CACHE)) {
5077 /* we're in presence of a cacheable response containing
5078 * a set-cookie header. We'll block it as requested by
5079 * the 'checkcache' option, and send an alert.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005080 */
Willy Tarreau58975672014-04-24 21:13:57 +02005081 if (objt_server(s->target))
Olivier Houcharda798bf52019-03-08 18:52:00 +01005082 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_secu, 1);
Willy Tarreau60466522010-01-18 19:08:45 +01005083
Olivier Houcharda798bf52019-03-08 18:52:00 +01005084 _HA_ATOMIC_ADD(&s->be->be_counters.denied_resp, 1);
5085 _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_resp, 1);
Willy Tarreaufb0afa72015-04-03 14:46:27 +02005086 if (sess->listener->counters)
Olivier Houcharda798bf52019-03-08 18:52:00 +01005087 _HA_ATOMIC_ADD(&sess->listener->counters->denied_resp, 1);
Willy Tarreaua15645d2007-03-18 16:22:39 +01005088
Christopher Faulet767a84b2017-11-24 16:50:31 +01005089 ha_alert("Blocking cacheable cookie in response from instance %s, server %s.\n",
5090 s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>");
Willy Tarreau58975672014-04-24 21:13:57 +02005091 send_log(s->be, LOG_ALERT,
5092 "Blocking cacheable cookie in response from instance %s, server %s.\n",
5093 s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>");
5094 goto return_srv_prx_502;
5095 }
Willy Tarreau03945942009-12-22 16:50:27 +01005096
Willy Tarreau70730dd2014-04-24 18:06:27 +02005097 skip_filters:
Willy Tarreau58975672014-04-24 21:13:57 +02005098 /*
5099 * Adjust "Connection: close" or "Connection: keep-alive" if needed.
5100 * If an "Upgrade" token is found, the header is left untouched in order
5101 * not to have to deal with some client bugs : some of them fail an upgrade
Willy Tarreauce730de2014-09-16 10:40:38 +02005102 * if anything but "Upgrade" is present in the Connection header. We don't
5103 * want to touch any 101 response either since it's switching to another
5104 * protocol.
Willy Tarreau58975672014-04-24 21:13:57 +02005105 */
Willy Tarreauce730de2014-09-16 10:40:38 +02005106 if ((txn->status != 101) && !(txn->flags & TX_HDR_CONN_UPG) &&
Christopher Faulet315b39c2018-09-21 16:26:19 +02005107 (txn->flags & TX_CON_WANT_MSK) != TX_CON_WANT_TUN) {
Willy Tarreau58975672014-04-24 21:13:57 +02005108 unsigned int want_flags = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02005109
Willy Tarreau58975672014-04-24 21:13:57 +02005110 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
5111 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL) {
5112 /* we want a keep-alive response here. Keep-alive header
5113 * required if either side is not 1.1.
5114 */
5115 if (!(txn->req.flags & msg->flags & HTTP_MSGF_VER_11))
5116 want_flags |= TX_CON_KAL_SET;
5117 }
Christopher Faulet315b39c2018-09-21 16:26:19 +02005118 else { /* CLO */
Willy Tarreau58975672014-04-24 21:13:57 +02005119 /* we want a close response here. Close header required if
5120 * the server is 1.1, regardless of the client.
5121 */
5122 if (msg->flags & HTTP_MSGF_VER_11)
5123 want_flags |= TX_CON_CLO_SET;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005124 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01005125
Willy Tarreau58975672014-04-24 21:13:57 +02005126 if (want_flags != (txn->flags & (TX_CON_CLO_SET|TX_CON_KAL_SET)))
5127 http_change_connection_header(txn, msg, want_flags);
5128 }
5129
5130 skip_header_mangling:
Christopher Faulet69744d92017-03-30 10:54:35 +02005131 /* Always enter in the body analyzer */
5132 rep->analysers &= ~AN_RES_FLT_XFER_DATA;
5133 rep->analysers |= AN_RES_HTTP_XFER_BODY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01005134
Willy Tarreau58975672014-04-24 21:13:57 +02005135 /* if the user wants to log as soon as possible, without counting
5136 * bytes from the server, then this is the right moment. We have
5137 * to temporarily assign bytes_out to log what we currently have.
5138 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005139 if (!LIST_ISEMPTY(&sess->fe->logformat) && !(s->logs.logwait & LW_BYTES)) {
Willy Tarreau58975672014-04-24 21:13:57 +02005140 s->logs.t_close = s->logs.t_data; /* to get a valid end date */
5141 s->logs.bytes_out = txn->rsp.eoh;
5142 s->do_log(s);
5143 s->logs.bytes_out = 0;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005144 }
Willy Tarreaue3fa6e52010-01-04 22:57:43 +01005145 return 1;
Willy Tarreauf5483bf2008-08-14 18:35:40 +02005146}
Willy Tarreaua15645d2007-03-18 16:22:39 +01005147
Willy Tarreaud98cf932009-12-27 22:54:55 +01005148/* This function is an analyser which forwards response body (including chunk
5149 * sizes if any). It is called as soon as we must forward, even if we forward
5150 * zero byte. The only situation where it must not be called is when we're in
5151 * tunnel mode and we want to forward till the close. It's used both to forward
5152 * remaining data and to resync after end of body. It expects the msg_state to
5153 * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to
Willy Tarreau87b09662015-04-03 00:22:06 +02005154 * read more data, or 1 once we can go on with next request or end the stream.
Willy Tarreaud3510212014-04-21 11:24:13 +02005155 *
5156 * It is capable of compressing response data both in content-length mode and
5157 * in chunked mode. The state machines follows different flows depending on
5158 * whether content-length and chunked modes are used, since there are no
5159 * trailers in content-length :
5160 *
5161 * chk-mode cl-mode
5162 * ,----- BODY -----.
5163 * / \
5164 * V size > 0 V chk-mode
5165 * .--> SIZE -------------> DATA -------------> CRLF
5166 * | | size == 0 | last byte |
5167 * | v final crlf v inspected |
5168 * | TRAILERS -----------> DONE |
5169 * | |
5170 * `----------------------------------------------'
5171 *
5172 * Compression only happens in the DATA state, and must be flushed in final
5173 * states (TRAILERS/DONE) or when leaving on missing data. Normal forwarding
5174 * is performed at once on final states for all bytes parsed, or when leaving
5175 * on missing data.
Willy Tarreaud98cf932009-12-27 22:54:55 +01005176 */
Willy Tarreau87b09662015-04-03 00:22:06 +02005177int http_response_forward_body(struct stream *s, struct channel *res, int an_bit)
Willy Tarreaud98cf932009-12-27 22:54:55 +01005178{
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005179 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02005180 struct http_txn *txn = s->txn;
5181 struct http_msg *msg = &s->txn->rsp;
Christopher Faulet3e344292015-11-24 16:24:13 +01005182 int ret;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005183
Christopher Faulete0768eb2018-10-03 16:38:02 +02005184 if (IS_HTX_STRM(s))
5185 return htx_response_forward_body(s, res, an_bit);
5186
Christopher Faulet45073512018-07-20 10:16:29 +02005187 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n",
Christopher Faulet814d2702017-03-30 11:33:44 +02005188 now_ms, __FUNCTION__,
5189 s,
5190 res,
5191 res->rex, res->wex,
5192 res->flags,
Christopher Faulet45073512018-07-20 10:16:29 +02005193 ci_data(res),
Christopher Faulet814d2702017-03-30 11:33:44 +02005194 res->analysers);
5195
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005196 if (unlikely(msg->msg_state < HTTP_MSG_BODY))
5197 return 0;
5198
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005199 if ((res->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
Willy Tarreauf37954d2018-06-15 18:31:02 +02005200 ((res->flags & CF_SHUTW) && (res->to_forward || co_data(res))) ||
Christopher Faulet93e02d82019-03-08 14:18:50 +01005201 !s->req.analysers) {
Willy Tarreau4fe41902010-06-07 22:27:41 +02005202 /* Output closed while we were sending data. We must abort and
5203 * wake the other side up.
5204 */
Willy Tarreau10e61cb2017-01-04 14:51:22 +01005205 msg->err_state = msg->msg_state;
Willy Tarreau4fe41902010-06-07 22:27:41 +02005206 msg->msg_state = HTTP_MSG_ERROR;
5207 http_resync_states(s);
Willy Tarreau082b01c2010-01-02 23:58:04 +01005208 return 1;
5209 }
5210
Willy Tarreau4fe41902010-06-07 22:27:41 +02005211 /* in most states, we should abort in case of early close */
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005212 channel_auto_close(res);
Willy Tarreaub608feb2010-01-02 22:47:18 +01005213
Christopher Fauletd7c91962015-04-30 11:48:27 +02005214 if (msg->msg_state == HTTP_MSG_BODY) {
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005215 msg->msg_state = ((msg->flags & HTTP_MSGF_TE_CHNK)
5216 ? HTTP_MSG_CHUNK_SIZE
5217 : HTTP_MSG_DATA);
Willy Tarreaud98cf932009-12-27 22:54:55 +01005218 }
5219
Willy Tarreauefdf0942014-04-24 20:08:57 +02005220 if (res->to_forward) {
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005221 /* We can't process the buffer's contents yet */
Willy Tarreauefdf0942014-04-24 20:08:57 +02005222 res->flags |= CF_WAKE_WRITE;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005223 goto missing_data_or_waiting;
Willy Tarreauefdf0942014-04-24 20:08:57 +02005224 }
5225
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005226 if (msg->msg_state < HTTP_MSG_DONE) {
5227 ret = ((msg->flags & HTTP_MSGF_TE_CHNK)
5228 ? http_msg_forward_chunked_body(s, msg)
5229 : http_msg_forward_body(s, msg));
5230 if (!ret)
5231 goto missing_data_or_waiting;
5232 if (ret < 0)
5233 goto return_bad_res;
5234 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02005235
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005236 /* other states, DONE...TUNNEL */
5237 /* for keep-alive we don't want to forward closes on DONE */
5238 if ((txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
5239 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
5240 channel_dont_close(res);
Willy Tarreau3ce10ff2014-04-22 08:24:38 +02005241
Christopher Faulet894da4c2017-07-18 11:29:07 +02005242 http_resync_states(s);
5243 if (!(res->analysers & an_bit)) {
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005244 if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) {
5245 if (res->flags & CF_SHUTW) {
5246 /* response errors are most likely due to the
5247 * client aborting the transfer. */
Christopher Faulet93e02d82019-03-08 14:18:50 +01005248 goto return_cli_abort;
Willy Tarreau5523b322009-12-29 12:05:52 +01005249 }
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005250 if (msg->err_pos >= 0)
Willy Tarreaufd9419d2018-09-07 18:01:03 +02005251 http_capture_bad_message(s->be, s, msg, msg->err_state, strm_fe(s));
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005252 goto return_bad_res;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005253 }
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005254 return 1;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005255 }
Willy Tarreauf51d03c2016-05-02 15:25:15 +02005256 return 0;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005257
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005258 missing_data_or_waiting:
Willy Tarreauf003d372012-11-26 13:35:37 +01005259 if (res->flags & CF_SHUTW)
Christopher Faulet93e02d82019-03-08 14:18:50 +01005260 goto return_cli_abort;
Willy Tarreauf003d372012-11-26 13:35:37 +01005261
5262 /* stop waiting for data if the input is closed before the end. If the
5263 * client side was already closed, it means that the client has aborted,
5264 * so we don't want to count this as a server abort. Otherwise it's a
5265 * server abort.
5266 */
Christopher Fauleta33510b2017-03-31 15:37:29 +02005267 if (msg->msg_state < HTTP_MSG_ENDING && res->flags & CF_SHUTR) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005268 if ((s->req.flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))
Christopher Faulet93e02d82019-03-08 14:18:50 +01005269 goto return_cli_abort;
Christopher Fauleta46bbd82015-06-19 09:00:58 +02005270 /* If we have some pending data, we continue the processing */
Christopher Faulet93e02d82019-03-08 14:18:50 +01005271 if (!ci_data(res))
5272 goto return_srv_abort;
Willy Tarreau40dba092010-03-04 18:14:51 +01005273 }
Willy Tarreauf5c8bd62010-01-04 07:10:34 +01005274
Willy Tarreau40dba092010-03-04 18:14:51 +01005275 /* we need to obey the req analyser, so if it leaves, we must too */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01005276 if (!s->req.analysers)
Willy Tarreau610ecce2010-01-04 21:15:02 +01005277 goto return_bad_res;
5278
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005279 /* When TE: chunked is used, we need to get there again to parse
5280 * remaining chunks even if the server has closed, so we don't want to
Christopher Faulet69744d92017-03-30 10:54:35 +02005281 * set CF_DONTCLOSE. Similarly, if keep-alive is set on the client side
5282 * or if there are filters registered on the stream, we don't want to
5283 * forward a close
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005284 */
Christopher Faulet69744d92017-03-30 10:54:35 +02005285 if ((msg->flags & HTTP_MSGF_TE_CHNK) ||
Christopher Fauletf1cc5d02017-02-08 09:45:13 +01005286 HAS_DATA_FILTERS(s, res) ||
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005287 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_KAL ||
5288 (txn->flags & TX_CON_WANT_MSK) == TX_CON_WANT_SCL)
Willy Tarreau8263d2b2012-08-28 00:06:31 +02005289 channel_dont_close(res);
Willy Tarreau92aa1fa2010-08-28 18:57:20 +02005290
Willy Tarreau5c620922011-05-11 19:56:11 +02005291 /* We know that more data are expected, but we couldn't send more that
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005292 * what we did. So we always set the CF_EXPECT_MORE flag so that the
Willy Tarreau07293032011-05-30 18:29:28 +02005293 * system knows it must not set a PUSH on this first part. Interactive
Willy Tarreau869fc1e2012-03-05 08:29:20 +01005294 * modes are already handled by the stream sock layer. We must not do
5295 * this in content-length mode because it could present the MSG_MORE
5296 * flag with the last block of forwarded data, which would cause an
5297 * additional delay to be observed by the receiver.
Willy Tarreau5c620922011-05-11 19:56:11 +02005298 */
Christopher Faulet92d36382015-11-05 13:35:03 +01005299 if ((msg->flags & HTTP_MSGF_TE_CHNK) || (msg->flags & HTTP_MSGF_COMPRESSING))
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02005300 res->flags |= CF_EXPECT_MORE;
Willy Tarreau5c620922011-05-11 19:56:11 +02005301
Willy Tarreau87b09662015-04-03 00:22:06 +02005302 /* the stream handler will take care of timeouts and errors */
Willy Tarreaud98cf932009-12-27 22:54:55 +01005303 return 0;
5304
Christopher Faulet93e02d82019-03-08 14:18:50 +01005305 return_srv_abort:
5306 _HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
5307 _HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005308 if (objt_server(s->target))
Christopher Faulet93e02d82019-03-08 14:18:50 +01005309 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.srv_aborts, 1);
5310 if (!(s->flags & SF_ERR_MASK))
5311 s->flags |= SF_ERR_SRVCL;
5312 goto return_error;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005313
Christopher Faulet93e02d82019-03-08 14:18:50 +01005314 return_cli_abort:
5315 _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
5316 _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005317 if (objt_server(s->target))
Christopher Faulet93e02d82019-03-08 14:18:50 +01005318 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.cli_aborts, 1);
5319 if (!(s->flags & SF_ERR_MASK))
5320 s->flags |= SF_ERR_CLICL;
5321 goto return_error;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005322
Christopher Faulet93e02d82019-03-08 14:18:50 +01005323 return_bad_res:
5324 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
5325 if (objt_server(s->target)) {
5326 _HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_resp, 1);
5327 health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_RSP);
5328 }
Willy Tarreaue7dff022015-04-03 01:14:29 +02005329 if (!(s->flags & SF_ERR_MASK))
Christopher Faulet93e02d82019-03-08 14:18:50 +01005330 s->flags |= SF_ERR_SRVCL;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005331
Christopher Faulet93e02d82019-03-08 14:18:50 +01005332 return_error:
Willy Tarreau10e61cb2017-01-04 14:51:22 +01005333 txn->rsp.err_state = txn->rsp.msg_state;
Willy Tarreaued2fd2d2010-12-29 11:23:27 +01005334 txn->rsp.msg_state = HTTP_MSG_ERROR;
5335 /* don't send any error message as we're in the body */
Christopher Fauleta94e5a52015-12-09 15:55:06 +01005336 http_reply_and_close(s, txn->status, NULL);
Christopher Faulet0184ea72017-01-05 14:06:34 +01005337 res->analysers &= AN_RES_FLT_END;
5338 s->req.analysers &= AN_REQ_FLT_END; /* we're in data phase, we want to abort both directions */
Willy Tarreaue7dff022015-04-03 01:14:29 +02005339 if (!(s->flags & SF_FINST_MASK))
5340 s->flags |= SF_FINST_D;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005341 return 0;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005342}
5343
5344
Christopher Faulet10079f52018-10-03 15:17:28 +02005345int http_msg_forward_body(struct stream *s, struct http_msg *msg)
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005346{
5347 struct channel *chn = msg->chn;
5348 int ret;
5349
5350 /* Here we have the guarantee to be in HTTP_MSG_DATA or HTTP_MSG_ENDING state */
5351
5352 if (msg->msg_state == HTTP_MSG_ENDING)
5353 goto ending;
5354
5355 /* Neither content-length, nor transfer-encoding was found, so we must
5356 * read the body until the server connection is closed. In that case, we
5357 * eat data as they come. Of course, this happens for response only. */
5358 if (!(msg->flags & HTTP_MSGF_XFER_LEN)) {
Willy Tarreauf37954d2018-06-15 18:31:02 +02005359 unsigned long long len = ci_data(chn) - msg->next;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005360 msg->chunk_len += len;
5361 msg->body_len += len;
5362 }
Christopher Fauletda02e172015-12-04 09:25:05 +01005363 ret = FLT_STRM_DATA_CB(s, chn, flt_http_data(s, msg),
Willy Tarreauf37954d2018-06-15 18:31:02 +02005364 /* default_ret */ MIN(msg->chunk_len, ci_data(chn) - msg->next),
Christopher Fauletda02e172015-12-04 09:25:05 +01005365 /* on_error */ goto error);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005366 msg->next += ret;
5367 msg->chunk_len -= ret;
5368 if (msg->chunk_len) {
5369 /* input empty or output full */
Willy Tarreauf37954d2018-06-15 18:31:02 +02005370 if (ci_data(chn) > msg->next)
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005371 chn->flags |= CF_WAKE_WRITE;
5372 goto missing_data_or_waiting;
5373 }
5374
Christopher Faulet1486b0a2017-07-18 11:42:08 +02005375 /* This check can only be true for a response. HTTP_MSGF_XFER_LEN is
5376 * always set for a request. */
5377 if (!(msg->flags & HTTP_MSGF_XFER_LEN)) {
5378 /* The server still sending data that should be filtered */
5379 if (!(chn->flags & CF_SHUTR) && HAS_DATA_FILTERS(s, chn))
5380 goto missing_data_or_waiting;
Christopher Fauletfd04fcf2018-02-02 15:54:15 +01005381 msg->msg_state = HTTP_MSG_TUNNEL;
5382 goto ending;
Christopher Faulet1486b0a2017-07-18 11:42:08 +02005383 }
Christopher Fauletf1cc5d02017-02-08 09:45:13 +01005384
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005385 msg->msg_state = HTTP_MSG_ENDING;
5386
5387 ending:
Willy Tarreauc9fa0482018-07-10 17:43:27 +02005388 /* we may have some pending data starting at res->buf.p such as a last
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005389 * chunk of data or trailers. */
Christopher Fauletda02e172015-12-04 09:25:05 +01005390 ret = FLT_STRM_DATA_CB(s, chn, flt_http_forward_data(s, msg, msg->next),
5391 /* default_ret */ msg->next,
5392 /* on_error */ goto error);
Willy Tarreaubcbd3932018-06-06 07:13:22 +02005393 c_adv(chn, ret);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005394 msg->next -= ret;
Willy Tarreau9962f8f2016-06-28 11:52:08 +02005395 if (unlikely(!(chn->flags & CF_WROTE_DATA) || msg->sov > 0))
5396 msg->sov -= ret;
Christopher Fauleta9300a32016-06-28 15:54:44 +02005397 if (msg->next)
5398 goto waiting;
Willy Tarreau9962f8f2016-06-28 11:52:08 +02005399
Christopher Fauletda02e172015-12-04 09:25:05 +01005400 FLT_STRM_DATA_CB(s, chn, flt_http_end(s, msg),
5401 /* default_ret */ 1,
5402 /* on_error */ goto error,
5403 /* on_wait */ goto waiting);
Christopher Fauletfd04fcf2018-02-02 15:54:15 +01005404 if (msg->msg_state == HTTP_MSG_ENDING)
5405 msg->msg_state = HTTP_MSG_DONE;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005406 return 1;
5407
5408 missing_data_or_waiting:
Willy Tarreauc9fa0482018-07-10 17:43:27 +02005409 /* we may have some pending data starting at chn->buf.p */
Christopher Fauletda02e172015-12-04 09:25:05 +01005410 ret = FLT_STRM_DATA_CB(s, chn, flt_http_forward_data(s, msg, msg->next),
5411 /* default_ret */ msg->next,
5412 /* on_error */ goto error);
Willy Tarreaubcbd3932018-06-06 07:13:22 +02005413 c_adv(chn, ret);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005414 msg->next -= ret;
5415 if (!(chn->flags & CF_WROTE_DATA) || msg->sov > 0)
5416 msg->sov -= ret;
Christopher Faulet75e2eb62015-12-15 10:41:47 +01005417 if (!HAS_DATA_FILTERS(s, chn))
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005418 msg->chunk_len -= channel_forward(chn, msg->chunk_len);
Christopher Fauleta9300a32016-06-28 15:54:44 +02005419 waiting:
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005420 return 0;
5421 error:
5422 return -1;
5423}
5424
Christopher Faulet10079f52018-10-03 15:17:28 +02005425int http_msg_forward_chunked_body(struct stream *s, struct http_msg *msg)
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005426{
5427 struct channel *chn = msg->chn;
Willy Tarreaue56cdd32017-09-21 08:36:33 +02005428 unsigned int chunk;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005429 int ret;
5430
5431 /* Here we have the guarantee to be in one of the following state:
5432 * HTTP_MSG_DATA, HTTP_MSG_CHUNK_SIZE, HTTP_MSG_CHUNK_CRLF,
5433 * HTTP_MSG_TRAILERS or HTTP_MSG_ENDING. */
5434
Christopher Fauletca874b82018-09-20 11:31:01 +02005435 if (msg->msg_state == HTTP_MSG_ENDING)
5436 goto ending;
5437
5438 /* Don't parse chunks if there is no input data */
5439 if (!ci_data(chn))
5440 goto waiting;
5441
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005442 switch_states:
5443 switch (msg->msg_state) {
5444 case HTTP_MSG_DATA:
Christopher Fauletda02e172015-12-04 09:25:05 +01005445 ret = FLT_STRM_DATA_CB(s, chn, flt_http_data(s, msg),
Willy Tarreauf37954d2018-06-15 18:31:02 +02005446 /* default_ret */ MIN(msg->chunk_len, ci_data(chn) - msg->next),
Christopher Fauletda02e172015-12-04 09:25:05 +01005447 /* on_error */ goto error);
5448 msg->next += ret;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005449 msg->chunk_len -= ret;
5450 if (msg->chunk_len) {
5451 /* input empty or output full */
Willy Tarreauf37954d2018-06-15 18:31:02 +02005452 if (ci_data(chn) > msg->next)
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005453 chn->flags |= CF_WAKE_WRITE;
5454 goto missing_data_or_waiting;
5455 }
5456
5457 /* nothing left to forward for this chunk*/
5458 msg->msg_state = HTTP_MSG_CHUNK_CRLF;
5459 /* fall through for HTTP_MSG_CHUNK_CRLF */
5460
5461 case HTTP_MSG_CHUNK_CRLF:
5462 /* we want the CRLF after the data */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02005463 ret = h1_skip_chunk_crlf(&chn->buf, co_data(chn) + msg->next, c_data(chn));
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005464 if (ret == 0)
5465 goto missing_data_or_waiting;
Willy Tarreaub2892562017-09-21 11:33:54 +02005466 if (ret < 0) {
Willy Tarreauf37954d2018-06-15 18:31:02 +02005467 msg->err_pos = ci_data(chn) + ret;
Willy Tarreaub2892562017-09-21 11:33:54 +02005468 if (msg->err_pos < 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02005469 msg->err_pos += chn->buf.size;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005470 goto chunk_parsing_error;
Willy Tarreaub2892562017-09-21 11:33:54 +02005471 }
Christopher Faulet113f7de2015-12-14 14:52:13 +01005472 msg->next += ret;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005473 msg->msg_state = HTTP_MSG_CHUNK_SIZE;
5474 /* fall through for HTTP_MSG_CHUNK_SIZE */
5475
5476 case HTTP_MSG_CHUNK_SIZE:
5477 /* read the chunk size and assign it to ->chunk_len,
5478 * then set ->next to point to the body and switch to
5479 * DATA or TRAILERS state.
5480 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02005481 ret = h1_parse_chunk_size(&chn->buf, co_data(chn) + msg->next, c_data(chn), &chunk);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005482 if (ret == 0)
5483 goto missing_data_or_waiting;
Willy Tarreaue56cdd32017-09-21 08:36:33 +02005484 if (ret < 0) {
Willy Tarreauf37954d2018-06-15 18:31:02 +02005485 msg->err_pos = ci_data(chn) + ret;
Willy Tarreaue56cdd32017-09-21 08:36:33 +02005486 if (msg->err_pos < 0)
Willy Tarreauc9fa0482018-07-10 17:43:27 +02005487 msg->err_pos += chn->buf.size;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005488 goto chunk_parsing_error;
Willy Tarreaue56cdd32017-09-21 08:36:33 +02005489 }
5490
5491 msg->sol = ret;
Christopher Faulet113f7de2015-12-14 14:52:13 +01005492 msg->next += ret;
Willy Tarreaue56cdd32017-09-21 08:36:33 +02005493 msg->chunk_len = chunk;
5494 msg->body_len += chunk;
5495
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005496 if (msg->chunk_len) {
5497 msg->msg_state = HTTP_MSG_DATA;
5498 goto switch_states;
5499 }
5500 msg->msg_state = HTTP_MSG_TRAILERS;
5501 /* fall through for HTTP_MSG_TRAILERS */
5502
5503 case HTTP_MSG_TRAILERS:
5504 ret = http_forward_trailers(msg);
5505 if (ret < 0)
5506 goto chunk_parsing_error;
Christopher Fauletda02e172015-12-04 09:25:05 +01005507 FLT_STRM_DATA_CB(s, chn, flt_http_chunk_trailers(s, msg),
5508 /* default_ret */ 1,
5509 /* on_error */ goto error);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005510 msg->next += msg->sol;
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005511 if (!ret)
5512 goto missing_data_or_waiting;
5513 break;
5514
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005515 default:
5516 /* This should no happen in this function */
5517 goto error;
5518 }
5519
5520 msg->msg_state = HTTP_MSG_ENDING;
5521 ending:
Willy Tarreauc9fa0482018-07-10 17:43:27 +02005522 /* we may have some pending data starting at res->buf.p such as a last
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005523 * chunk of data or trailers. */
Christopher Fauletda02e172015-12-04 09:25:05 +01005524 ret = FLT_STRM_DATA_CB(s, chn, flt_http_forward_data(s, msg, msg->next),
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005525 /* default_ret */ msg->next,
5526 /* on_error */ goto error);
Willy Tarreaubcbd3932018-06-06 07:13:22 +02005527 c_adv(chn, ret);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005528 msg->next -= ret;
Willy Tarreau9962f8f2016-06-28 11:52:08 +02005529 if (unlikely(!(chn->flags & CF_WROTE_DATA) || msg->sov > 0))
5530 msg->sov -= ret;
Christopher Fauleta9300a32016-06-28 15:54:44 +02005531 if (msg->next)
5532 goto waiting;
Willy Tarreau9962f8f2016-06-28 11:52:08 +02005533
Christopher Fauletda02e172015-12-04 09:25:05 +01005534 FLT_STRM_DATA_CB(s, chn, flt_http_end(s, msg),
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005535 /* default_ret */ 1,
5536 /* on_error */ goto error,
5537 /* on_wait */ goto waiting);
5538 msg->msg_state = HTTP_MSG_DONE;
5539 return 1;
5540
5541 missing_data_or_waiting:
Willy Tarreauc9fa0482018-07-10 17:43:27 +02005542 /* we may have some pending data starting at chn->buf.p */
Christopher Fauletda02e172015-12-04 09:25:05 +01005543 ret = FLT_STRM_DATA_CB(s, chn, flt_http_forward_data(s, msg, msg->next),
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005544 /* default_ret */ msg->next,
5545 /* on_error */ goto error);
Willy Tarreaubcbd3932018-06-06 07:13:22 +02005546 c_adv(chn, ret);
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005547 msg->next -= ret;
5548 if (!(chn->flags & CF_WROTE_DATA) || msg->sov > 0)
5549 msg->sov -= ret;
Christopher Faulet75e2eb62015-12-15 10:41:47 +01005550 if (!HAS_DATA_FILTERS(s, chn))
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005551 msg->chunk_len -= channel_forward(chn, msg->chunk_len);
Christopher Fauleta9300a32016-06-28 15:54:44 +02005552 waiting:
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005553 return 0;
5554
5555 chunk_parsing_error:
5556 if (msg->err_pos >= 0) {
5557 if (chn->flags & CF_ISRESP)
Willy Tarreaufd9419d2018-09-07 18:01:03 +02005558 http_capture_bad_message(s->be, s, msg,
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005559 msg->msg_state, strm_fe(s));
5560 else
Willy Tarreaufd9419d2018-09-07 18:01:03 +02005561 http_capture_bad_message(strm_fe(s), s,
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005562 msg, msg->msg_state, s->be);
5563 }
5564 error:
5565 return -1;
Willy Tarreaud98cf932009-12-27 22:54:55 +01005566}
5567
Christopher Fauletdbe34eb2015-12-02 10:01:17 +01005568
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005569/* Iterate the same filter through all request headers.
5570 * Returns 1 if this filter can be stopped upon return, otherwise 0.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005571 * Since it can manage the switch to another backend, it updates the per-proxy
5572 * DENY stats.
Willy Tarreau58f10d72006-12-04 02:26:12 +01005573 */
Willy Tarreau87b09662015-04-03 00:22:06 +02005574int apply_filter_to_req_headers(struct stream *s, struct channel *req, struct hdr_exp *exp)
Willy Tarreau58f10d72006-12-04 02:26:12 +01005575{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005576 char *cur_ptr, *cur_end, *cur_next;
5577 int cur_idx, old_idx, last_hdr;
Willy Tarreaueee5b512015-04-03 23:46:31 +02005578 struct http_txn *txn = s->txn;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005579 struct hdr_idx_elem *cur_hdr;
Willy Tarreau6e27be12018-08-22 04:46:47 +02005580 int delta, len;
Willy Tarreau0f7562b2007-01-07 15:46:13 +01005581
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005582 last_hdr = 0;
5583
Willy Tarreauf37954d2018-06-15 18:31:02 +02005584 cur_next = ci_head(req) + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005585 old_idx = 0;
5586
5587 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01005588 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005589 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01005590 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005591 (exp->action == ACT_ALLOW ||
5592 exp->action == ACT_DENY ||
5593 exp->action == ACT_TARPIT))
5594 return 0;
5595
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005596 cur_idx = txn->hdr_idx.v[old_idx].next;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005597 if (!cur_idx)
5598 break;
5599
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005600 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005601 cur_ptr = cur_next;
5602 cur_end = cur_ptr + cur_hdr->len;
5603 cur_next = cur_end + cur_hdr->cr + 1;
5604
5605 /* Now we have one header between cur_ptr and cur_end,
5606 * and the next header starts at cur_next.
Willy Tarreau58f10d72006-12-04 02:26:12 +01005607 */
5608
Willy Tarreau15a53a42015-01-21 13:39:42 +01005609 if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005610 switch (exp->action) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005611 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01005612 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005613 last_hdr = 1;
5614 break;
5615
5616 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01005617 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005618 last_hdr = 1;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005619 break;
5620
5621 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01005622 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005623 last_hdr = 1;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005624 break;
5625
5626 case ACT_REPLACE:
Willy Tarreau6e27be12018-08-22 04:46:47 +02005627 len = exp_replace(trash.area,
5628 trash.size, cur_ptr,
5629 exp->replace, pmatch);
5630 if (len < 0)
Sasha Pachevc6002042014-05-26 12:33:48 -06005631 return -1;
5632
Willy Tarreau6e27be12018-08-22 04:46:47 +02005633 delta = b_rep_blk(&req->buf, cur_ptr, cur_end, trash.area, len);
5634
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005635 /* FIXME: if the user adds a newline in the replacement, the
5636 * index will not be recalculated for now, and the new line
5637 * will not be counted as a new header.
5638 */
5639
5640 cur_end += delta;
5641 cur_next += delta;
5642 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01005643 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005644 break;
5645
5646 case ACT_REMOVE:
Willy Tarreauc9fa0482018-07-10 17:43:27 +02005647 delta = b_rep_blk(&req->buf, cur_ptr, cur_next, NULL, 0);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005648 cur_next += delta;
5649
Willy Tarreaufa355d42009-11-29 18:12:29 +01005650 http_msg_move_end(&txn->req, delta);
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005651 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
5652 txn->hdr_idx.used--;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005653 cur_hdr->len = 0;
5654 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01005655 cur_idx = old_idx;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005656 break;
5657
5658 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01005659 }
5660
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005661 /* keep the link from this header to next one in case of later
5662 * removal of next header.
Willy Tarreau58f10d72006-12-04 02:26:12 +01005663 */
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005664 old_idx = cur_idx;
5665 }
5666 return 0;
5667}
5668
5669
5670/* Apply the filter to the request line.
5671 * Returns 0 if nothing has been done, 1 if the filter has been applied,
5672 * or -1 if a replacement resulted in an invalid request line.
Willy Tarreaua15645d2007-03-18 16:22:39 +01005673 * Since it can manage the switch to another backend, it updates the per-proxy
5674 * DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005675 */
Willy Tarreau87b09662015-04-03 00:22:06 +02005676int apply_filter_to_req_line(struct stream *s, struct channel *req, struct hdr_exp *exp)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005677{
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005678 char *cur_ptr, *cur_end;
5679 int done;
Willy Tarreaueee5b512015-04-03 23:46:31 +02005680 struct http_txn *txn = s->txn;
Willy Tarreau6e27be12018-08-22 04:46:47 +02005681 int delta, len;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005682
Willy Tarreau3d300592007-03-18 18:34:41 +01005683 if (unlikely(txn->flags & (TX_CLDENY | TX_CLTARPIT)))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005684 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01005685 else if (unlikely(txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005686 (exp->action == ACT_ALLOW ||
5687 exp->action == ACT_DENY ||
5688 exp->action == ACT_TARPIT))
5689 return 0;
5690 else if (exp->action == ACT_REMOVE)
5691 return 0;
5692
5693 done = 0;
5694
Willy Tarreauf37954d2018-06-15 18:31:02 +02005695 cur_ptr = ci_head(req);
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005696 cur_end = cur_ptr + txn->req.sl.rq.l;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005697
5698 /* Now we have the request line between cur_ptr and cur_end */
5699
Willy Tarreau15a53a42015-01-21 13:39:42 +01005700 if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005701 switch (exp->action) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005702 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01005703 txn->flags |= TX_CLALLOW;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005704 done = 1;
5705 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01005706
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005707 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01005708 txn->flags |= TX_CLDENY;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005709 done = 1;
5710 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01005711
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005712 case ACT_TARPIT:
Willy Tarreau3d300592007-03-18 18:34:41 +01005713 txn->flags |= TX_CLTARPIT;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005714 done = 1;
5715 break;
Willy Tarreaua496b602006-12-17 23:15:24 +01005716
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005717 case ACT_REPLACE:
Willy Tarreau6e27be12018-08-22 04:46:47 +02005718 len = exp_replace(trash.area, trash.size,
5719 cur_ptr, exp->replace, pmatch);
5720 if (len < 0)
Sasha Pachevc6002042014-05-26 12:33:48 -06005721 return -1;
5722
Willy Tarreau6e27be12018-08-22 04:46:47 +02005723 delta = b_rep_blk(&req->buf, cur_ptr, cur_end, trash.area, len);
5724
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005725 /* FIXME: if the user adds a newline in the replacement, the
5726 * index will not be recalculated for now, and the new line
5727 * will not be counted as a new header.
5728 */
Willy Tarreaua496b602006-12-17 23:15:24 +01005729
Willy Tarreaufa355d42009-11-29 18:12:29 +01005730 http_msg_move_end(&txn->req, delta);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005731 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02005732 cur_end = (char *)http_parse_reqline(&txn->req,
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005733 HTTP_MSG_RQMETH,
5734 cur_ptr, cur_end + 1,
5735 NULL, NULL);
5736 if (unlikely(!cur_end))
5737 return -1;
Willy Tarreaua496b602006-12-17 23:15:24 +01005738
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005739 /* we have a full request and we know that we have either a CR
5740 * or an LF at <ptr>.
5741 */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005742 txn->meth = find_http_meth(cur_ptr, txn->req.sl.rq.m_l);
5743 hdr_idx_set_start(&txn->hdr_idx, txn->req.sl.rq.l, *cur_end == '\r');
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005744 /* there is no point trying this regex on headers */
5745 return 1;
5746 }
5747 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005748 return done;
5749}
Willy Tarreau97de6242006-12-27 17:18:38 +01005750
Willy Tarreau58f10d72006-12-04 02:26:12 +01005751
Willy Tarreau58f10d72006-12-04 02:26:12 +01005752
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005753/*
Willy Tarreau87b09662015-04-03 00:22:06 +02005754 * Apply all the req filters of proxy <px> to all headers in buffer <req> of stream <s>.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005755 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
Willy Tarreaua15645d2007-03-18 16:22:39 +01005756 * unparsable request. Since it can manage the switch to another backend, it
5757 * updates the per-proxy DENY stats.
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005758 */
Willy Tarreau87b09662015-04-03 00:22:06 +02005759int apply_filters_to_request(struct stream *s, struct channel *req, struct proxy *px)
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005760{
Willy Tarreau192252e2015-04-04 01:47:55 +02005761 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02005762 struct http_txn *txn = s->txn;
Willy Tarreau6c123b12010-01-28 20:22:06 +01005763 struct hdr_exp *exp;
5764
5765 for (exp = px->req_exp; exp; exp = exp->next) {
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005766 int ret;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005767
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005768 /*
5769 * The interleaving of transformations and verdicts
5770 * makes it difficult to decide to continue or stop
5771 * the evaluation.
5772 */
5773
Willy Tarreau6c123b12010-01-28 20:22:06 +01005774 if (txn->flags & (TX_CLDENY|TX_CLTARPIT))
5775 break;
5776
Willy Tarreau3d300592007-03-18 18:34:41 +01005777 if ((txn->flags & TX_CLALLOW) &&
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005778 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
Willy Tarreau6c123b12010-01-28 20:22:06 +01005779 exp->action == ACT_TARPIT || exp->action == ACT_PASS))
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005780 continue;
Willy Tarreau6c123b12010-01-28 20:22:06 +01005781
5782 /* if this filter had a condition, evaluate it now and skip to
5783 * next filter if the condition does not match.
5784 */
5785 if (exp->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02005786 ret = acl_exec_cond(exp->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau6c123b12010-01-28 20:22:06 +01005787 ret = acl_pass(ret);
5788 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
5789 ret = !ret;
5790
5791 if (!ret)
5792 continue;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005793 }
5794
5795 /* Apply the filter to the request line. */
Willy Tarreau6c123b12010-01-28 20:22:06 +01005796 ret = apply_filter_to_req_line(s, req, exp);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005797 if (unlikely(ret < 0))
5798 return -1;
5799
5800 if (likely(ret == 0)) {
5801 /* The filter did not match the request, it can be
5802 * iterated through all headers.
5803 */
Willy Tarreau34d4c3c2015-01-30 20:58:58 +01005804 if (unlikely(apply_filter_to_req_headers(s, req, exp) < 0))
5805 return -1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005806 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01005807 }
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005808 return 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005809}
5810
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005811
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005812/* Delete a value in a header between delimiters <from> and <next> in buffer
5813 * <buf>. The number of characters displaced is returned, and the pointer to
5814 * the first delimiter is updated if required. The function tries as much as
5815 * possible to respect the following principles :
5816 * - replace <from> delimiter by the <next> one unless <from> points to a
5817 * colon, in which case <next> is simply removed
5818 * - set exactly one space character after the new first delimiter, unless
5819 * there are not enough characters in the block being moved to do so.
5820 * - remove unneeded spaces before the previous delimiter and after the new
5821 * one.
5822 *
5823 * It is the caller's responsibility to ensure that :
5824 * - <from> points to a valid delimiter or the colon ;
5825 * - <next> points to a valid delimiter or the final CR/LF ;
5826 * - there are non-space chars before <from> ;
5827 * - there is a CR/LF at or after <next>.
5828 */
Willy Tarreauc5a4fd52018-12-11 11:42:27 +01005829static int del_hdr_value(struct buffer *buf, char **from, char *next)
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005830{
5831 char *prev = *from;
5832
5833 if (*prev == ':') {
5834 /* We're removing the first value, preserve the colon and add a
5835 * space if possible.
5836 */
Willy Tarreau2235b262016-11-05 15:50:20 +01005837 if (!HTTP_IS_CRLF(*next))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005838 next++;
5839 prev++;
5840 if (prev < next)
5841 *prev++ = ' ';
5842
Willy Tarreau2235b262016-11-05 15:50:20 +01005843 while (HTTP_IS_SPHT(*next))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005844 next++;
5845 } else {
5846 /* Remove useless spaces before the old delimiter. */
Willy Tarreau2235b262016-11-05 15:50:20 +01005847 while (HTTP_IS_SPHT(*(prev-1)))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005848 prev--;
5849 *from = prev;
5850
5851 /* copy the delimiter and if possible a space if we're
5852 * not at the end of the line.
5853 */
Willy Tarreau2235b262016-11-05 15:50:20 +01005854 if (!HTTP_IS_CRLF(*next)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005855 *prev++ = *next++;
5856 if (prev + 1 < next)
5857 *prev++ = ' ';
Willy Tarreau2235b262016-11-05 15:50:20 +01005858 while (HTTP_IS_SPHT(*next))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005859 next++;
5860 }
5861 }
Willy Tarreaue3128022018-07-12 15:55:34 +02005862 return b_rep_blk(buf, prev, next, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005863}
5864
Cyril Bontébf47aeb2009-10-15 00:15:40 +02005865/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01005866 * Manage client-side cookie. It can impact performance by about 2% so it is
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005867 * desirable to call it only when needed. This code is quite complex because
5868 * of the multiple very crappy and ambiguous syntaxes we have to support. it
5869 * highly recommended not to touch this part without a good reason !
Willy Tarreau58f10d72006-12-04 02:26:12 +01005870 */
Willy Tarreau87b09662015-04-03 00:22:06 +02005871void manage_client_side_cookies(struct stream *s, struct channel *req)
Willy Tarreau58f10d72006-12-04 02:26:12 +01005872{
Willy Tarreaueee5b512015-04-03 23:46:31 +02005873 struct http_txn *txn = s->txn;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02005874 struct session *sess = s->sess;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005875 int preserve_hdr;
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01005876 int cur_idx, old_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005877 char *hdr_beg, *hdr_end, *hdr_next, *del_from;
5878 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005879
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005880 /* Iterate through the headers, we start with the start line. */
Willy Tarreau83969f42007-01-22 08:55:47 +01005881 old_idx = 0;
Willy Tarreauf37954d2018-06-15 18:31:02 +02005882 hdr_next = ci_head(req) + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau58f10d72006-12-04 02:26:12 +01005883
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005884 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01005885 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01005886 int val;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005887
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01005888 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005889 hdr_beg = hdr_next;
5890 hdr_end = hdr_beg + cur_hdr->len;
5891 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005892
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005893 /* We have one full header between hdr_beg and hdr_end, and the
5894 * next header starts at hdr_next. We're only interested in
Willy Tarreau58f10d72006-12-04 02:26:12 +01005895 * "Cookie:" headers.
5896 */
5897
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005898 val = http_header_match2(hdr_beg, hdr_end, "Cookie", 6);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01005899 if (!val) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01005900 old_idx = cur_idx;
5901 continue;
5902 }
5903
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005904 del_from = NULL; /* nothing to be deleted */
5905 preserve_hdr = 0; /* assume we may kill the whole header */
5906
Willy Tarreau58f10d72006-12-04 02:26:12 +01005907 /* Now look for cookies. Conforming to RFC2109, we have to support
5908 * attributes whose name begin with a '$', and associate them with
5909 * the right cookie, if we want to delete this cookie.
5910 * So there are 3 cases for each cookie read :
5911 * 1) it's a special attribute, beginning with a '$' : ignore it.
5912 * 2) it's a server id cookie that we *MAY* want to delete : save
5913 * some pointers on it (last semi-colon, beginning of cookie...)
5914 * 3) it's an application cookie : we *MAY* have to delete a previous
5915 * "special" cookie.
5916 * At the end of loop, if a "special" cookie remains, we may have to
5917 * remove it. If no application cookie persists in the header, we
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005918 * *MUST* delete it.
5919 *
5920 * Note: RFC2965 is unclear about the processing of spaces around
5921 * the equal sign in the ATTR=VALUE form. A careful inspection of
5922 * the RFC explicitly allows spaces before it, and not within the
5923 * tokens (attrs or values). An inspection of RFC2109 allows that
5924 * too but section 10.1.3 lets one think that spaces may be allowed
5925 * after the equal sign too, resulting in some (rare) buggy
5926 * implementations trying to do that. So let's do what servers do.
5927 * Latest ietf draft forbids spaces all around. Also, earlier RFCs
5928 * allowed quoted strings in values, with any possible character
5929 * after a backslash, including control chars and delimitors, which
5930 * causes parsing to become ambiguous. Browsers also allow spaces
5931 * within values even without quotes.
5932 *
5933 * We have to keep multiple pointers in order to support cookie
5934 * removal at the beginning, middle or end of header without
5935 * corrupting the header. All of these headers are valid :
5936 *
5937 * Cookie:NAME1=VALUE1;NAME2=VALUE2;NAME3=VALUE3\r\n
5938 * Cookie:NAME1=VALUE1;NAME2_ONLY ;NAME3=VALUE3\r\n
5939 * Cookie: NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3\r\n
5940 * | | | | | | | | |
5941 * | | | | | | | | hdr_end <--+
5942 * | | | | | | | +--> next
5943 * | | | | | | +----> val_end
5944 * | | | | | +-----------> val_beg
5945 * | | | | +--------------> equal
5946 * | | | +----------------> att_end
5947 * | | +---------------------> att_beg
5948 * | +--------------------------> prev
5949 * +--------------------------------> hdr_beg
Willy Tarreau58f10d72006-12-04 02:26:12 +01005950 */
5951
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005952 for (prev = hdr_beg + 6; prev < hdr_end; prev = next) {
5953 /* Iterate through all cookies on this line */
5954
5955 /* find att_beg */
5956 att_beg = prev + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +01005957 while (att_beg < hdr_end && HTTP_IS_SPHT(*att_beg))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005958 att_beg++;
5959
5960 /* find att_end : this is the first character after the last non
5961 * space before the equal. It may be equal to hdr_end.
5962 */
5963 equal = att_end = att_beg;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005964
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005965 while (equal < hdr_end) {
5966 if (*equal == '=' || *equal == ',' || *equal == ';')
Willy Tarreau58f10d72006-12-04 02:26:12 +01005967 break;
Willy Tarreau2235b262016-11-05 15:50:20 +01005968 if (HTTP_IS_SPHT(*equal++))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005969 continue;
5970 att_end = equal;
Willy Tarreau58f10d72006-12-04 02:26:12 +01005971 }
5972
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005973 /* here, <equal> points to '=', a delimitor or the end. <att_end>
5974 * is between <att_beg> and <equal>, both may be identical.
5975 */
5976
5977 /* look for end of cookie if there is an equal sign */
5978 if (equal < hdr_end && *equal == '=') {
5979 /* look for the beginning of the value */
5980 val_beg = equal + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +01005981 while (val_beg < hdr_end && HTTP_IS_SPHT(*val_beg))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005982 val_beg++;
5983
5984 /* find the end of the value, respecting quotes */
Willy Tarreauab813a42018-09-10 18:41:28 +02005985 next = http_find_cookie_value_end(val_beg, hdr_end);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005986
5987 /* make val_end point to the first white space or delimitor after the value */
5988 val_end = next;
Willy Tarreau2235b262016-11-05 15:50:20 +01005989 while (val_end > val_beg && HTTP_IS_SPHT(*(val_end - 1)))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005990 val_end--;
5991 } else {
5992 val_beg = val_end = next = equal;
Willy Tarreau305ae852010-01-03 19:45:54 +01005993 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01005994
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02005995 /* We have nothing to do with attributes beginning with '$'. However,
5996 * they will automatically be removed if a header before them is removed,
5997 * since they're supposed to be linked together.
5998 */
5999 if (*att_beg == '$')
6000 continue;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006001
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006002 /* Ignore cookies with no equal sign */
6003 if (equal == next) {
6004 /* This is not our cookie, so we must preserve it. But if we already
6005 * scheduled another cookie for removal, we cannot remove the
6006 * complete header, but we can remove the previous block itself.
6007 */
6008 preserve_hdr = 1;
6009 if (del_from != NULL) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02006010 int delta = del_hdr_value(&req->buf, &del_from, prev);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006011 val_end += delta;
6012 next += delta;
6013 hdr_end += delta;
6014 hdr_next += delta;
6015 cur_hdr->len += delta;
6016 http_msg_move_end(&txn->req, delta);
6017 prev = del_from;
6018 del_from = NULL;
6019 }
6020 continue;
Willy Tarreau305ae852010-01-03 19:45:54 +01006021 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006022
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006023 /* if there are spaces around the equal sign, we need to
6024 * strip them otherwise we'll get trouble for cookie captures,
6025 * or even for rewrites. Since this happens extremely rarely,
6026 * it does not hurt performance.
Willy Tarreau58f10d72006-12-04 02:26:12 +01006027 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006028 if (unlikely(att_end != equal || val_beg > equal + 1)) {
6029 int stripped_before = 0;
6030 int stripped_after = 0;
6031
6032 if (att_end != equal) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02006033 stripped_before = b_rep_blk(&req->buf, att_end, equal, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006034 equal += stripped_before;
6035 val_beg += stripped_before;
6036 }
6037
6038 if (val_beg > equal + 1) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02006039 stripped_after = b_rep_blk(&req->buf, equal + 1, val_beg, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006040 val_beg += stripped_after;
6041 stripped_before += stripped_after;
6042 }
6043
6044 val_end += stripped_before;
6045 next += stripped_before;
6046 hdr_end += stripped_before;
6047 hdr_next += stripped_before;
6048 cur_hdr->len += stripped_before;
6049 http_msg_move_end(&txn->req, stripped_before);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006050 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006051 /* now everything is as on the diagram above */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006052
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006053 /* First, let's see if we want to capture this cookie. We check
6054 * that we don't already have a client side cookie, because we
6055 * can only capture one. Also as an optimisation, we ignore
6056 * cookies shorter than the declared name.
6057 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006058 if (sess->fe->capture_name != NULL && txn->cli_cookie == NULL &&
6059 (val_end - att_beg >= sess->fe->capture_namelen) &&
6060 memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006061 int log_len = val_end - att_beg;
6062
Willy Tarreaubafbe012017-11-24 17:34:44 +01006063 if ((txn->cli_cookie = pool_alloc(pool_head_capture)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01006064 ha_alert("HTTP logging : out of memory.\n");
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006065 } else {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006066 if (log_len > sess->fe->capture_len)
6067 log_len = sess->fe->capture_len;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006068 memcpy(txn->cli_cookie, att_beg, log_len);
6069 txn->cli_cookie[log_len] = 0;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006070 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006071 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006072
Willy Tarreaubca99692010-10-06 19:25:55 +02006073 /* Persistence cookies in passive, rewrite or insert mode have the
6074 * following form :
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006075 *
Willy Tarreaubca99692010-10-06 19:25:55 +02006076 * Cookie: NAME=SRV[|<lastseen>[|<firstseen>]]
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006077 *
Willy Tarreaubca99692010-10-06 19:25:55 +02006078 * For cookies in prefix mode, the form is :
6079 *
6080 * Cookie: NAME=SRV~VALUE
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006081 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006082 if ((att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) &&
6083 (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) {
6084 struct server *srv = s->be->srv;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006085 char *delim;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006086
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006087 /* if we're in cookie prefix mode, we'll search the delimitor so that we
6088 * have the server ID between val_beg and delim, and the original cookie between
6089 * delim+1 and val_end. Otherwise, delim==val_end :
6090 *
6091 * Cookie: NAME=SRV; # in all but prefix modes
6092 * Cookie: NAME=SRV~OPAQUE ; # in prefix mode
6093 * | || || | |+-> next
6094 * | || || | +--> val_end
6095 * | || || +---------> delim
6096 * | || |+------------> val_beg
6097 * | || +-------------> att_end = equal
6098 * | |+-----------------> att_beg
6099 * | +------------------> prev
6100 * +-------------------------> hdr_beg
6101 */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006102
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006103 if (s->be->ck_opts & PR_CK_PFX) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006104 for (delim = val_beg; delim < val_end; delim++)
6105 if (*delim == COOKIE_DELIM)
6106 break;
Willy Tarreaubca99692010-10-06 19:25:55 +02006107 } else {
6108 char *vbar1;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006109 delim = val_end;
Willy Tarreaubca99692010-10-06 19:25:55 +02006110 /* Now check if the cookie contains a date field, which would
6111 * appear after a vertical bar ('|') just after the server name
6112 * and before the delimiter.
6113 */
6114 vbar1 = memchr(val_beg, COOKIE_DELIM_DATE, val_end - val_beg);
6115 if (vbar1) {
6116 /* OK, so left of the bar is the server's cookie and
Willy Tarreauf64d1412010-10-07 20:06:11 +02006117 * right is the last seen date. It is a base64 encoded
6118 * 30-bit value representing the UNIX date since the
6119 * epoch in 4-second quantities.
Willy Tarreaubca99692010-10-06 19:25:55 +02006120 */
Willy Tarreauf64d1412010-10-07 20:06:11 +02006121 int val;
Willy Tarreaubca99692010-10-06 19:25:55 +02006122 delim = vbar1++;
Willy Tarreauf64d1412010-10-07 20:06:11 +02006123 if (val_end - vbar1 >= 5) {
6124 val = b64tos30(vbar1);
6125 if (val > 0)
6126 txn->cookie_last_date = val << 2;
6127 }
6128 /* look for a second vertical bar */
6129 vbar1 = memchr(vbar1, COOKIE_DELIM_DATE, val_end - vbar1);
6130 if (vbar1 && (val_end - vbar1 > 5)) {
6131 val = b64tos30(vbar1 + 1);
6132 if (val > 0)
6133 txn->cookie_first_date = val << 2;
6134 }
Willy Tarreaubca99692010-10-06 19:25:55 +02006135 }
6136 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006137
Willy Tarreauf64d1412010-10-07 20:06:11 +02006138 /* if the cookie has an expiration date and the proxy wants to check
6139 * it, then we do that now. We first check if the cookie is too old,
6140 * then only if it has expired. We detect strict overflow because the
6141 * time resolution here is not great (4 seconds). Cookies with dates
6142 * in the future are ignored if their offset is beyond one day. This
6143 * allows an admin to fix timezone issues without expiring everyone
6144 * and at the same time avoids keeping unwanted side effects for too
6145 * long.
6146 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006147 if (txn->cookie_first_date && s->be->cookie_maxlife &&
6148 (((signed)(date.tv_sec - txn->cookie_first_date) > (signed)s->be->cookie_maxlife) ||
Willy Tarreauef4f3912010-10-07 21:00:29 +02006149 ((signed)(txn->cookie_first_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02006150 txn->flags &= ~TX_CK_MASK;
6151 txn->flags |= TX_CK_OLD;
6152 delim = val_beg; // let's pretend we have not found the cookie
6153 txn->cookie_first_date = 0;
6154 txn->cookie_last_date = 0;
6155 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006156 else if (txn->cookie_last_date && s->be->cookie_maxidle &&
6157 (((signed)(date.tv_sec - txn->cookie_last_date) > (signed)s->be->cookie_maxidle) ||
Willy Tarreauef4f3912010-10-07 21:00:29 +02006158 ((signed)(txn->cookie_last_date - date.tv_sec) > 86400))) {
Willy Tarreauf64d1412010-10-07 20:06:11 +02006159 txn->flags &= ~TX_CK_MASK;
6160 txn->flags |= TX_CK_EXPIRED;
6161 delim = val_beg; // let's pretend we have not found the cookie
6162 txn->cookie_first_date = 0;
6163 txn->cookie_last_date = 0;
6164 }
6165
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006166 /* Here, we'll look for the first running server which supports the cookie.
6167 * This allows to share a same cookie between several servers, for example
6168 * to dedicate backup servers to specific servers only.
6169 * However, to prevent clients from sticking to cookie-less backup server
6170 * when they have incidentely learned an empty cookie, we simply ignore
6171 * empty cookies and mark them as invalid.
6172 * The same behaviour is applied when persistence must be ignored.
6173 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02006174 if ((delim == val_beg) || (s->flags & (SF_IGNORE_PRST | SF_ASSIGNED)))
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006175 srv = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006176
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006177 while (srv) {
6178 if (srv->cookie && (srv->cklen == delim - val_beg) &&
6179 !memcmp(val_beg, srv->cookie, delim - val_beg)) {
Emeric Brun52a91d32017-08-31 14:41:55 +02006180 if ((srv->cur_state != SRV_ST_STOPPED) ||
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006181 (s->be->options & PR_O_PERSIST) ||
Willy Tarreaue7dff022015-04-03 01:14:29 +02006182 (s->flags & SF_FORCE_PRST)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006183 /* we found the server and we can use it */
6184 txn->flags &= ~TX_CK_MASK;
Emeric Brun52a91d32017-08-31 14:41:55 +02006185 txn->flags |= (srv->cur_state != SRV_ST_STOPPED) ? TX_CK_VALID : TX_CK_DOWN;
Willy Tarreaue7dff022015-04-03 01:14:29 +02006186 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006187 s->target = &srv->obj_type;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006188 break;
6189 } else {
6190 /* we found a server, but it's down,
6191 * mark it as such and go on in case
6192 * another one is available.
6193 */
6194 txn->flags &= ~TX_CK_MASK;
6195 txn->flags |= TX_CK_DOWN;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006196 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006197 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006198 srv = srv->next;
6199 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006200
Willy Tarreauf64d1412010-10-07 20:06:11 +02006201 if (!srv && !(txn->flags & (TX_CK_DOWN|TX_CK_EXPIRED|TX_CK_OLD))) {
Willy Tarreauc89ccb62012-04-05 21:18:22 +02006202 /* no server matched this cookie or we deliberately skipped it */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006203 txn->flags &= ~TX_CK_MASK;
Willy Tarreaue7dff022015-04-03 01:14:29 +02006204 if ((s->flags & (SF_IGNORE_PRST | SF_ASSIGNED)))
Willy Tarreauc89ccb62012-04-05 21:18:22 +02006205 txn->flags |= TX_CK_UNUSED;
6206 else
6207 txn->flags |= TX_CK_INVALID;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006208 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006209
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006210 /* depending on the cookie mode, we may have to either :
6211 * - delete the complete cookie if we're in insert+indirect mode, so that
6212 * the server never sees it ;
6213 * - remove the server id from the cookie value, and tag the cookie as an
Joseph Herlant5ba80252018-11-15 09:25:36 -08006214 * application cookie so that it does not get accidently removed later,
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006215 * if we're in cookie prefix mode
6216 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006217 if ((s->be->ck_opts & PR_CK_PFX) && (delim != val_end)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006218 int delta; /* negative */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006219
Willy Tarreauc9fa0482018-07-10 17:43:27 +02006220 delta = b_rep_blk(&req->buf, val_beg, delim + 1, NULL, 0);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006221 val_end += delta;
6222 next += delta;
6223 hdr_end += delta;
6224 hdr_next += delta;
6225 cur_hdr->len += delta;
6226 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006227
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006228 del_from = NULL;
6229 preserve_hdr = 1; /* we want to keep this cookie */
6230 }
6231 else if (del_from == NULL &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006232 (s->be->ck_opts & (PR_CK_INS | PR_CK_IND)) == (PR_CK_INS | PR_CK_IND)) {
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006233 del_from = prev;
6234 }
6235 } else {
6236 /* This is not our cookie, so we must preserve it. But if we already
6237 * scheduled another cookie for removal, we cannot remove the
6238 * complete header, but we can remove the previous block itself.
6239 */
6240 preserve_hdr = 1;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006241
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006242 if (del_from != NULL) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02006243 int delta = del_hdr_value(&req->buf, &del_from, prev);
Willy Tarreaub8105542010-11-24 18:31:28 +01006244 if (att_beg >= del_from)
6245 att_beg += delta;
6246 if (att_end >= del_from)
6247 att_end += delta;
6248 val_beg += delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006249 val_end += delta;
6250 next += delta;
6251 hdr_end += delta;
6252 hdr_next += delta;
6253 cur_hdr->len += delta;
6254 http_msg_move_end(&txn->req, delta);
6255 prev = del_from;
6256 del_from = NULL;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006257 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006258 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006259
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006260 /* continue with next cookie on this header line */
6261 att_beg = next;
6262 } /* for each cookie */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006263
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006264 /* There are no more cookies on this line.
6265 * We may still have one (or several) marked for deletion at the
6266 * end of the line. We must do this now in two ways :
6267 * - if some cookies must be preserved, we only delete from the
6268 * mark to the end of line ;
6269 * - if nothing needs to be preserved, simply delete the whole header
Willy Tarreau58f10d72006-12-04 02:26:12 +01006270 */
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006271 if (del_from) {
Willy Tarreau58f10d72006-12-04 02:26:12 +01006272 int delta;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006273 if (preserve_hdr) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02006274 delta = del_hdr_value(&req->buf, &del_from, hdr_end);
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006275 hdr_end = del_from;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006276 cur_hdr->len += delta;
6277 } else {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02006278 delta = b_rep_blk(&req->buf, hdr_beg, hdr_next, NULL, 0);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006279
6280 /* FIXME: this should be a separate function */
Willy Tarreau4dbc4a22007-03-03 16:23:22 +01006281 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
6282 txn->hdr_idx.used--;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006283 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01006284 cur_idx = old_idx;
Willy Tarreau58f10d72006-12-04 02:26:12 +01006285 }
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006286 hdr_next += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01006287 http_msg_move_end(&txn->req, delta);
Willy Tarreau58f10d72006-12-04 02:26:12 +01006288 }
6289
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006290 /* check next header */
Willy Tarreau58f10d72006-12-04 02:26:12 +01006291 old_idx = cur_idx;
Willy Tarreaueb7b0a22010-08-31 16:45:02 +02006292 }
Willy Tarreau58f10d72006-12-04 02:26:12 +01006293}
6294
6295
Willy Tarreaua15645d2007-03-18 16:22:39 +01006296/* Iterate the same filter through all response headers contained in <rtr>.
6297 * Returns 1 if this filter can be stopped upon return, otherwise 0.
6298 */
Willy Tarreau87b09662015-04-03 00:22:06 +02006299int apply_filter_to_resp_headers(struct stream *s, struct channel *rtr, struct hdr_exp *exp)
Willy Tarreaua15645d2007-03-18 16:22:39 +01006300{
Willy Tarreaua15645d2007-03-18 16:22:39 +01006301 char *cur_ptr, *cur_end, *cur_next;
6302 int cur_idx, old_idx, last_hdr;
Willy Tarreaueee5b512015-04-03 23:46:31 +02006303 struct http_txn *txn = s->txn;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006304 struct hdr_idx_elem *cur_hdr;
Willy Tarreau6e27be12018-08-22 04:46:47 +02006305 int delta, len;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006306
6307 last_hdr = 0;
6308
Willy Tarreauf37954d2018-06-15 18:31:02 +02006309 cur_next = ci_head(rtr) + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006310 old_idx = 0;
6311
6312 while (!last_hdr) {
Willy Tarreau3d300592007-03-18 18:34:41 +01006313 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01006314 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01006315 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01006316 (exp->action == ACT_ALLOW ||
6317 exp->action == ACT_DENY))
6318 return 0;
6319
6320 cur_idx = txn->hdr_idx.v[old_idx].next;
6321 if (!cur_idx)
6322 break;
6323
6324 cur_hdr = &txn->hdr_idx.v[cur_idx];
6325 cur_ptr = cur_next;
6326 cur_end = cur_ptr + cur_hdr->len;
6327 cur_next = cur_end + cur_hdr->cr + 1;
6328
6329 /* Now we have one header between cur_ptr and cur_end,
6330 * and the next header starts at cur_next.
6331 */
6332
Willy Tarreau15a53a42015-01-21 13:39:42 +01006333 if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01006334 switch (exp->action) {
6335 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01006336 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006337 last_hdr = 1;
6338 break;
6339
6340 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01006341 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006342 last_hdr = 1;
6343 break;
6344
6345 case ACT_REPLACE:
Willy Tarreau6e27be12018-08-22 04:46:47 +02006346 len = exp_replace(trash.area,
6347 trash.size, cur_ptr,
6348 exp->replace, pmatch);
6349 if (len < 0)
Sasha Pachevc6002042014-05-26 12:33:48 -06006350 return -1;
6351
Willy Tarreau6e27be12018-08-22 04:46:47 +02006352 delta = b_rep_blk(&rtr->buf, cur_ptr, cur_end, trash.area, len);
6353
Willy Tarreaua15645d2007-03-18 16:22:39 +01006354 /* FIXME: if the user adds a newline in the replacement, the
6355 * index will not be recalculated for now, and the new line
6356 * will not be counted as a new header.
6357 */
6358
6359 cur_end += delta;
6360 cur_next += delta;
6361 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01006362 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006363 break;
6364
6365 case ACT_REMOVE:
Willy Tarreauc9fa0482018-07-10 17:43:27 +02006366 delta = b_rep_blk(&rtr->buf, cur_ptr, cur_next, NULL, 0);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006367 cur_next += delta;
6368
Willy Tarreaufa355d42009-11-29 18:12:29 +01006369 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006370 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
6371 txn->hdr_idx.used--;
6372 cur_hdr->len = 0;
6373 cur_end = NULL; /* null-term has been rewritten */
Willy Tarreau26db59e2010-11-28 06:57:24 +01006374 cur_idx = old_idx;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006375 break;
6376
6377 }
6378 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006379
6380 /* keep the link from this header to next one in case of later
6381 * removal of next header.
6382 */
6383 old_idx = cur_idx;
6384 }
6385 return 0;
6386}
6387
6388
6389/* Apply the filter to the status line in the response buffer <rtr>.
6390 * Returns 0 if nothing has been done, 1 if the filter has been applied,
6391 * or -1 if a replacement resulted in an invalid status line.
6392 */
Willy Tarreau87b09662015-04-03 00:22:06 +02006393int apply_filter_to_sts_line(struct stream *s, struct channel *rtr, struct hdr_exp *exp)
Willy Tarreaua15645d2007-03-18 16:22:39 +01006394{
Willy Tarreaua15645d2007-03-18 16:22:39 +01006395 char *cur_ptr, *cur_end;
6396 int done;
Willy Tarreaueee5b512015-04-03 23:46:31 +02006397 struct http_txn *txn = s->txn;
Willy Tarreau6e27be12018-08-22 04:46:47 +02006398 int delta, len;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006399
Willy Tarreau3d300592007-03-18 18:34:41 +01006400 if (unlikely(txn->flags & TX_SVDENY))
Willy Tarreaua15645d2007-03-18 16:22:39 +01006401 return 1;
Willy Tarreau3d300592007-03-18 18:34:41 +01006402 else if (unlikely(txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01006403 (exp->action == ACT_ALLOW ||
6404 exp->action == ACT_DENY))
6405 return 0;
6406 else if (exp->action == ACT_REMOVE)
6407 return 0;
6408
6409 done = 0;
6410
Willy Tarreauf37954d2018-06-15 18:31:02 +02006411 cur_ptr = ci_head(rtr);
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02006412 cur_end = cur_ptr + txn->rsp.sl.st.l;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006413
6414 /* Now we have the status line between cur_ptr and cur_end */
6415
Willy Tarreau15a53a42015-01-21 13:39:42 +01006416 if (regex_exec_match2(exp->preg, cur_ptr, cur_end-cur_ptr, MAX_MATCH, pmatch, 0)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01006417 switch (exp->action) {
6418 case ACT_ALLOW:
Willy Tarreau3d300592007-03-18 18:34:41 +01006419 txn->flags |= TX_SVALLOW;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006420 done = 1;
6421 break;
6422
6423 case ACT_DENY:
Willy Tarreau3d300592007-03-18 18:34:41 +01006424 txn->flags |= TX_SVDENY;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006425 done = 1;
6426 break;
6427
6428 case ACT_REPLACE:
Willy Tarreau6e27be12018-08-22 04:46:47 +02006429 len = exp_replace(trash.area, trash.size,
6430 cur_ptr, exp->replace, pmatch);
6431 if (len < 0)
Sasha Pachevc6002042014-05-26 12:33:48 -06006432 return -1;
6433
Willy Tarreau6e27be12018-08-22 04:46:47 +02006434 delta = b_rep_blk(&rtr->buf, cur_ptr, cur_end, trash.area, len);
6435
Willy Tarreaua15645d2007-03-18 16:22:39 +01006436 /* FIXME: if the user adds a newline in the replacement, the
6437 * index will not be recalculated for now, and the new line
6438 * will not be counted as a new header.
6439 */
6440
Willy Tarreaufa355d42009-11-29 18:12:29 +01006441 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006442 cur_end += delta;
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02006443 cur_end = (char *)http_parse_stsline(&txn->rsp,
Willy Tarreau02785762007-04-03 14:45:44 +02006444 HTTP_MSG_RPVER,
Willy Tarreaua15645d2007-03-18 16:22:39 +01006445 cur_ptr, cur_end + 1,
6446 NULL, NULL);
6447 if (unlikely(!cur_end))
6448 return -1;
6449
6450 /* we have a full respnse and we know that we have either a CR
6451 * or an LF at <ptr>.
6452 */
Willy Tarreauf37954d2018-06-15 18:31:02 +02006453 txn->status = strl2ui(ci_head(rtr) + txn->rsp.sl.st.c, txn->rsp.sl.st.c_l);
Willy Tarreau1ba0e5f2010-06-07 13:57:32 +02006454 hdr_idx_set_start(&txn->hdr_idx, txn->rsp.sl.st.l, *cur_end == '\r');
Willy Tarreaua15645d2007-03-18 16:22:39 +01006455 /* there is no point trying this regex on headers */
6456 return 1;
6457 }
6458 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006459 return done;
6460}
6461
6462
6463
6464/*
Willy Tarreau87b09662015-04-03 00:22:06 +02006465 * Apply all the resp filters of proxy <px> to all headers in buffer <rtr> of stream <s>.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006466 * Returns 0 if everything is alright, or -1 in case a replacement lead to an
6467 * unparsable response.
6468 */
Willy Tarreau87b09662015-04-03 00:22:06 +02006469int apply_filters_to_response(struct stream *s, struct channel *rtr, struct proxy *px)
Willy Tarreaua15645d2007-03-18 16:22:39 +01006470{
Willy Tarreau192252e2015-04-04 01:47:55 +02006471 struct session *sess = s->sess;
Willy Tarreaueee5b512015-04-03 23:46:31 +02006472 struct http_txn *txn = s->txn;
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006473 struct hdr_exp *exp;
6474
6475 for (exp = px->rsp_exp; exp; exp = exp->next) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01006476 int ret;
6477
6478 /*
6479 * The interleaving of transformations and verdicts
6480 * makes it difficult to decide to continue or stop
6481 * the evaluation.
6482 */
6483
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006484 if (txn->flags & TX_SVDENY)
6485 break;
6486
Willy Tarreau3d300592007-03-18 18:34:41 +01006487 if ((txn->flags & TX_SVALLOW) &&
Willy Tarreaua15645d2007-03-18 16:22:39 +01006488 (exp->action == ACT_ALLOW || exp->action == ACT_DENY ||
6489 exp->action == ACT_PASS)) {
6490 exp = exp->next;
6491 continue;
6492 }
6493
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006494 /* if this filter had a condition, evaluate it now and skip to
6495 * next filter if the condition does not match.
6496 */
6497 if (exp->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02006498 ret = acl_exec_cond(exp->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006499 ret = acl_pass(ret);
6500 if (((struct acl_cond *)exp->cond)->pol == ACL_COND_UNLESS)
6501 ret = !ret;
6502 if (!ret)
6503 continue;
6504 }
6505
Willy Tarreaua15645d2007-03-18 16:22:39 +01006506 /* Apply the filter to the status line. */
Willy Tarreaufdb563c2010-01-31 15:43:27 +01006507 ret = apply_filter_to_sts_line(s, rtr, exp);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006508 if (unlikely(ret < 0))
6509 return -1;
6510
6511 if (likely(ret == 0)) {
6512 /* The filter did not match the response, it can be
6513 * iterated through all headers.
6514 */
Sasha Pachevc6002042014-05-26 12:33:48 -06006515 if (unlikely(apply_filter_to_resp_headers(s, rtr, exp) < 0))
6516 return -1;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006517 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006518 }
6519 return 0;
6520}
6521
6522
Willy Tarreaua15645d2007-03-18 16:22:39 +01006523/*
Willy Tarreau396d2c62007-11-04 19:30:00 +01006524 * Manage server-side cookies. It can impact performance by about 2% so it is
Willy Tarreau24581ba2010-08-31 22:39:35 +02006525 * desirable to call it only when needed. This function is also used when we
6526 * just need to know if there is a cookie (eg: for check-cache).
Willy Tarreaua15645d2007-03-18 16:22:39 +01006527 */
Willy Tarreau87b09662015-04-03 00:22:06 +02006528void manage_server_side_cookies(struct stream *s, struct channel *res)
Willy Tarreaua15645d2007-03-18 16:22:39 +01006529{
Willy Tarreaueee5b512015-04-03 23:46:31 +02006530 struct http_txn *txn = s->txn;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006531 struct session *sess = s->sess;
Willy Tarreau827aee92011-03-10 16:55:02 +01006532 struct server *srv;
Willy Tarreau24581ba2010-08-31 22:39:35 +02006533 int is_cookie2;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006534 int cur_idx, old_idx, delta;
Willy Tarreau24581ba2010-08-31 22:39:35 +02006535 char *hdr_beg, *hdr_end, *hdr_next;
6536 char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006537
Willy Tarreaua15645d2007-03-18 16:22:39 +01006538 /* Iterate through the headers.
6539 * we start with the start line.
6540 */
6541 old_idx = 0;
Willy Tarreauf37954d2018-06-15 18:31:02 +02006542 hdr_next = ci_head(res) + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006543
6544 while ((cur_idx = txn->hdr_idx.v[old_idx].next)) {
6545 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006546 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006547
6548 cur_hdr = &txn->hdr_idx.v[cur_idx];
Willy Tarreau24581ba2010-08-31 22:39:35 +02006549 hdr_beg = hdr_next;
6550 hdr_end = hdr_beg + cur_hdr->len;
6551 hdr_next = hdr_end + cur_hdr->cr + 1;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006552
Willy Tarreau24581ba2010-08-31 22:39:35 +02006553 /* We have one full header between hdr_beg and hdr_end, and the
6554 * next header starts at hdr_next. We're only interested in
6555 * "Set-Cookie" and "Set-Cookie2" headers.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006556 */
6557
Willy Tarreau24581ba2010-08-31 22:39:35 +02006558 is_cookie2 = 0;
6559 prev = hdr_beg + 10;
6560 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie", 10);
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006561 if (!val) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02006562 val = http_header_match2(hdr_beg, hdr_end, "Set-Cookie2", 11);
6563 if (!val) {
6564 old_idx = cur_idx;
6565 continue;
6566 }
6567 is_cookie2 = 1;
6568 prev = hdr_beg + 11;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006569 }
6570
Willy Tarreau24581ba2010-08-31 22:39:35 +02006571 /* OK, right now we know we have a Set-Cookie* at hdr_beg, and
6572 * <prev> points to the colon.
6573 */
Willy Tarreauf1348312010-10-07 15:54:11 +02006574 txn->flags |= TX_SCK_PRESENT;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006575
Willy Tarreau24581ba2010-08-31 22:39:35 +02006576 /* Maybe we only wanted to see if there was a Set-Cookie (eg:
6577 * check-cache is enabled) and we are not interested in checking
6578 * them. Warning, the cookie capture is declared in the frontend.
Willy Tarreaufd39dda2008-10-17 12:01:58 +02006579 */
Willy Tarreau53a09d52015-08-10 18:59:40 +02006580 if (s->be->cookie_name == NULL && sess->fe->capture_name == NULL)
Willy Tarreaua15645d2007-03-18 16:22:39 +01006581 return;
6582
Willy Tarreau24581ba2010-08-31 22:39:35 +02006583 /* OK so now we know we have to process this response cookie.
6584 * The format of the Set-Cookie header is slightly different
6585 * from the format of the Cookie header in that it does not
6586 * support the comma as a cookie delimiter (thus the header
6587 * cannot be folded) because the Expires attribute described in
6588 * the original Netscape's spec may contain an unquoted date
6589 * with a comma inside. We have to live with this because
6590 * many browsers don't support Max-Age and some browsers don't
6591 * support quoted strings. However the Set-Cookie2 header is
6592 * clean.
6593 *
6594 * We have to keep multiple pointers in order to support cookie
6595 * removal at the beginning, middle or end of header without
6596 * corrupting the header (in case of set-cookie2). A special
6597 * pointer, <scav> points to the beginning of the set-cookie-av
6598 * fields after the first semi-colon. The <next> pointer points
6599 * either to the end of line (set-cookie) or next unquoted comma
6600 * (set-cookie2). All of these headers are valid :
6601 *
6602 * Set-Cookie: NAME1 = VALUE 1 ; Secure; Path="/"\r\n
6603 * Set-Cookie:NAME=VALUE; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
6604 * Set-Cookie: NAME = VALUE ; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT\r\n
6605 * Set-Cookie2: NAME1 = VALUE 1 ; Max-Age=0, NAME2=VALUE2; Discard\r\n
6606 * | | | | | | | | | |
6607 * | | | | | | | | +-> next hdr_end <--+
6608 * | | | | | | | +------------> scav
6609 * | | | | | | +--------------> val_end
6610 * | | | | | +--------------------> val_beg
6611 * | | | | +----------------------> equal
6612 * | | | +------------------------> att_end
6613 * | | +----------------------------> att_beg
6614 * | +------------------------------> prev
6615 * +-----------------------------------------> hdr_beg
6616 */
Willy Tarreaua15645d2007-03-18 16:22:39 +01006617
Willy Tarreau24581ba2010-08-31 22:39:35 +02006618 for (; prev < hdr_end; prev = next) {
6619 /* Iterate through all cookies on this line */
Willy Tarreaua15645d2007-03-18 16:22:39 +01006620
Willy Tarreau24581ba2010-08-31 22:39:35 +02006621 /* find att_beg */
6622 att_beg = prev + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +01006623 while (att_beg < hdr_end && HTTP_IS_SPHT(*att_beg))
Willy Tarreau24581ba2010-08-31 22:39:35 +02006624 att_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006625
Willy Tarreau24581ba2010-08-31 22:39:35 +02006626 /* find att_end : this is the first character after the last non
6627 * space before the equal. It may be equal to hdr_end.
6628 */
6629 equal = att_end = att_beg;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006630
Willy Tarreau24581ba2010-08-31 22:39:35 +02006631 while (equal < hdr_end) {
6632 if (*equal == '=' || *equal == ';' || (is_cookie2 && *equal == ','))
6633 break;
Willy Tarreau2235b262016-11-05 15:50:20 +01006634 if (HTTP_IS_SPHT(*equal++))
Willy Tarreau24581ba2010-08-31 22:39:35 +02006635 continue;
6636 att_end = equal;
6637 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006638
Willy Tarreau24581ba2010-08-31 22:39:35 +02006639 /* here, <equal> points to '=', a delimitor or the end. <att_end>
6640 * is between <att_beg> and <equal>, both may be identical.
6641 */
6642
6643 /* look for end of cookie if there is an equal sign */
6644 if (equal < hdr_end && *equal == '=') {
6645 /* look for the beginning of the value */
6646 val_beg = equal + 1;
Willy Tarreau2235b262016-11-05 15:50:20 +01006647 while (val_beg < hdr_end && HTTP_IS_SPHT(*val_beg))
Willy Tarreau24581ba2010-08-31 22:39:35 +02006648 val_beg++;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006649
Willy Tarreau24581ba2010-08-31 22:39:35 +02006650 /* find the end of the value, respecting quotes */
Willy Tarreauab813a42018-09-10 18:41:28 +02006651 next = http_find_cookie_value_end(val_beg, hdr_end);
Willy Tarreau24581ba2010-08-31 22:39:35 +02006652
6653 /* make val_end point to the first white space or delimitor after the value */
6654 val_end = next;
Willy Tarreau2235b262016-11-05 15:50:20 +01006655 while (val_end > val_beg && HTTP_IS_SPHT(*(val_end - 1)))
Willy Tarreau24581ba2010-08-31 22:39:35 +02006656 val_end--;
6657 } else {
6658 /* <equal> points to next comma, semi-colon or EOL */
6659 val_beg = val_end = next = equal;
6660 }
6661
6662 if (next < hdr_end) {
6663 /* Set-Cookie2 supports multiple cookies, and <next> points to
6664 * a colon or semi-colon before the end. So skip all attr-value
6665 * pairs and look for the next comma. For Set-Cookie, since
6666 * commas are permitted in values, skip to the end.
6667 */
6668 if (is_cookie2)
Willy Tarreauab813a42018-09-10 18:41:28 +02006669 next = http_find_hdr_value_end(next, hdr_end);
Willy Tarreau24581ba2010-08-31 22:39:35 +02006670 else
6671 next = hdr_end;
6672 }
6673
6674 /* Now everything is as on the diagram above */
6675
6676 /* Ignore cookies with no equal sign */
6677 if (equal == val_end)
6678 continue;
6679
6680 /* If there are spaces around the equal sign, we need to
6681 * strip them otherwise we'll get trouble for cookie captures,
6682 * or even for rewrites. Since this happens extremely rarely,
6683 * it does not hurt performance.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006684 */
Willy Tarreau24581ba2010-08-31 22:39:35 +02006685 if (unlikely(att_end != equal || val_beg > equal + 1)) {
6686 int stripped_before = 0;
6687 int stripped_after = 0;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006688
Willy Tarreau24581ba2010-08-31 22:39:35 +02006689 if (att_end != equal) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02006690 stripped_before = b_rep_blk(&res->buf, att_end, equal, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02006691 equal += stripped_before;
6692 val_beg += stripped_before;
6693 }
6694
6695 if (val_beg > equal + 1) {
Willy Tarreauc9fa0482018-07-10 17:43:27 +02006696 stripped_after = b_rep_blk(&res->buf, equal + 1, val_beg, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02006697 val_beg += stripped_after;
6698 stripped_before += stripped_after;
6699 }
6700
6701 val_end += stripped_before;
6702 next += stripped_before;
6703 hdr_end += stripped_before;
6704 hdr_next += stripped_before;
6705 cur_hdr->len += stripped_before;
Willy Tarreau1fc1f452011-04-07 22:35:37 +02006706 http_msg_move_end(&txn->rsp, stripped_before);
Willy Tarreau24581ba2010-08-31 22:39:35 +02006707 }
6708
6709 /* First, let's see if we want to capture this cookie. We check
6710 * that we don't already have a server side cookie, because we
6711 * can only capture one. Also as an optimisation, we ignore
6712 * cookies shorter than the declared name.
6713 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006714 if (sess->fe->capture_name != NULL &&
Willy Tarreau3bac9ff2007-03-18 17:31:28 +01006715 txn->srv_cookie == NULL &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006716 (val_end - att_beg >= sess->fe->capture_namelen) &&
6717 memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02006718 int log_len = val_end - att_beg;
Willy Tarreaubafbe012017-11-24 17:34:44 +01006719 if ((txn->srv_cookie = pool_alloc(pool_head_capture)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01006720 ha_alert("HTTP logging : out of memory.\n");
Willy Tarreaua15645d2007-03-18 16:22:39 +01006721 }
Willy Tarreauf70fc752010-11-19 11:27:18 +01006722 else {
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02006723 if (log_len > sess->fe->capture_len)
6724 log_len = sess->fe->capture_len;
Willy Tarreauf70fc752010-11-19 11:27:18 +01006725 memcpy(txn->srv_cookie, att_beg, log_len);
6726 txn->srv_cookie[log_len] = 0;
6727 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006728 }
6729
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006730 srv = objt_server(s->target);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006731 /* now check if we need to process it for persistence */
Willy Tarreaue7dff022015-04-03 01:14:29 +02006732 if (!(s->flags & SF_IGNORE_PRST) &&
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006733 (att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) &&
6734 (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) {
Willy Tarreauf1348312010-10-07 15:54:11 +02006735 /* assume passive cookie by default */
6736 txn->flags &= ~TX_SCK_MASK;
6737 txn->flags |= TX_SCK_FOUND;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006738
6739 /* If the cookie is in insert mode on a known server, we'll delete
6740 * this occurrence because we'll insert another one later.
6741 * We'll delete it too if the "indirect" option is set and we're in
Willy Tarreau24581ba2010-08-31 22:39:35 +02006742 * a direct access.
6743 */
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006744 if (s->be->ck_opts & PR_CK_PSV) {
Willy Tarreauba4c5be2010-10-23 12:46:42 +02006745 /* The "preserve" flag was set, we don't want to touch the
6746 * server's cookie.
6747 */
6748 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006749 else if ((srv && (s->be->ck_opts & PR_CK_INS)) ||
Willy Tarreaue7dff022015-04-03 01:14:29 +02006750 ((s->flags & SF_DIRECT) && (s->be->ck_opts & PR_CK_IND))) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02006751 /* this cookie must be deleted */
6752 if (*prev == ':' && next == hdr_end) {
6753 /* whole header */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02006754 delta = b_rep_blk(&res->buf, hdr_beg, hdr_next, NULL, 0);
Willy Tarreau24581ba2010-08-31 22:39:35 +02006755 txn->hdr_idx.v[old_idx].next = cur_hdr->next;
6756 txn->hdr_idx.used--;
6757 cur_hdr->len = 0;
Willy Tarreau26db59e2010-11-28 06:57:24 +01006758 cur_idx = old_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02006759 hdr_next += delta;
6760 http_msg_move_end(&txn->rsp, delta);
6761 /* note: while both invalid now, <next> and <hdr_end>
6762 * are still equal, so the for() will stop as expected.
6763 */
6764 } else {
6765 /* just remove the value */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02006766 int delta = del_hdr_value(&res->buf, &prev, next);
Willy Tarreau24581ba2010-08-31 22:39:35 +02006767 next = prev;
6768 hdr_end += delta;
6769 hdr_next += delta;
6770 cur_hdr->len += delta;
6771 http_msg_move_end(&txn->rsp, delta);
6772 }
Willy Tarreauf1348312010-10-07 15:54:11 +02006773 txn->flags &= ~TX_SCK_MASK;
Willy Tarreau3d300592007-03-18 18:34:41 +01006774 txn->flags |= TX_SCK_DELETED;
Willy Tarreau24581ba2010-08-31 22:39:35 +02006775 /* and go on with next cookie */
Willy Tarreaua15645d2007-03-18 16:22:39 +01006776 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006777 else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_RW)) {
Willy Tarreau24581ba2010-08-31 22:39:35 +02006778 /* replace bytes val_beg->val_end with the cookie name associated
Willy Tarreaua15645d2007-03-18 16:22:39 +01006779 * with this server since we know it.
6780 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02006781 delta = b_rep_blk(&res->buf, val_beg, val_end, srv->cookie, srv->cklen);
Willy Tarreau24581ba2010-08-31 22:39:35 +02006782 next += delta;
6783 hdr_end += delta;
6784 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006785 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01006786 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006787
Willy Tarreauf1348312010-10-07 15:54:11 +02006788 txn->flags &= ~TX_SCK_MASK;
6789 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006790 }
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02006791 else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_PFX)) {
Willy Tarreaua15645d2007-03-18 16:22:39 +01006792 /* insert the cookie name associated with this server
Willy Tarreau24581ba2010-08-31 22:39:35 +02006793 * before existing cookie, and insert a delimiter between them..
Willy Tarreaua15645d2007-03-18 16:22:39 +01006794 */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02006795 delta = b_rep_blk(&res->buf, val_beg, val_beg, srv->cookie, srv->cklen + 1);
Willy Tarreau24581ba2010-08-31 22:39:35 +02006796 next += delta;
6797 hdr_end += delta;
6798 hdr_next += delta;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006799 cur_hdr->len += delta;
Willy Tarreaufa355d42009-11-29 18:12:29 +01006800 http_msg_move_end(&txn->rsp, delta);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006801
Willy Tarreau827aee92011-03-10 16:55:02 +01006802 val_beg[srv->cklen] = COOKIE_DELIM;
Willy Tarreauf1348312010-10-07 15:54:11 +02006803 txn->flags &= ~TX_SCK_MASK;
6804 txn->flags |= TX_SCK_REPLACED;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006805 }
6806 }
Willy Tarreau24581ba2010-08-31 22:39:35 +02006807 /* that's done for this cookie, check the next one on the same
6808 * line when next != hdr_end (only if is_cookie2).
6809 */
6810 }
6811 /* check next header */
Willy Tarreaua15645d2007-03-18 16:22:39 +01006812 old_idx = cur_idx;
Willy Tarreau24581ba2010-08-31 22:39:35 +02006813 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006814}
6815
6816
Willy Tarreaua15645d2007-03-18 16:22:39 +01006817/*
Willy Tarreau0ad8e0d2017-12-22 15:03:36 +01006818 * Parses the Cache-Control and Pragma request header fields to determine if
6819 * the request may be served from the cache and/or if it is cacheable. Updates
6820 * s->txn->flags.
6821 */
6822void check_request_for_cacheability(struct stream *s, struct channel *chn)
6823{
6824 struct http_txn *txn = s->txn;
6825 char *p1, *p2;
6826 char *cur_ptr, *cur_end, *cur_next;
6827 int pragma_found;
6828 int cc_found;
6829 int cur_idx;
6830
Christopher Faulet25a02f62018-10-24 12:00:25 +02006831 if (IS_HTX_STRM(s))
6832 return htx_check_request_for_cacheability(s, chn);
6833
Willy Tarreau0ad8e0d2017-12-22 15:03:36 +01006834 if ((txn->flags & (TX_CACHEABLE|TX_CACHE_IGNORE)) == TX_CACHE_IGNORE)
6835 return; /* nothing more to do here */
6836
6837 cur_idx = 0;
6838 pragma_found = cc_found = 0;
Willy Tarreauf37954d2018-06-15 18:31:02 +02006839 cur_next = ci_head(chn) + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreau0ad8e0d2017-12-22 15:03:36 +01006840
6841 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
6842 struct hdr_idx_elem *cur_hdr;
6843 int val;
6844
6845 cur_hdr = &txn->hdr_idx.v[cur_idx];
6846 cur_ptr = cur_next;
6847 cur_end = cur_ptr + cur_hdr->len;
6848 cur_next = cur_end + cur_hdr->cr + 1;
6849
6850 /* We have one full header between cur_ptr and cur_end, and the
6851 * next header starts at cur_next.
6852 */
6853
6854 val = http_header_match2(cur_ptr, cur_end, "Pragma", 6);
6855 if (val) {
6856 if ((cur_end - (cur_ptr + val) >= 8) &&
6857 strncasecmp(cur_ptr + val, "no-cache", 8) == 0) {
6858 pragma_found = 1;
6859 continue;
6860 }
6861 }
6862
William Lallemand8a16fe02018-05-22 11:04:33 +02006863 /* Don't use the cache and don't try to store if we found the
6864 * Authorization header */
6865 val = http_header_match2(cur_ptr, cur_end, "Authorization", 13);
6866 if (val) {
6867 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
6868 txn->flags |= TX_CACHE_IGNORE;
6869 continue;
6870 }
6871
Willy Tarreau0ad8e0d2017-12-22 15:03:36 +01006872 val = http_header_match2(cur_ptr, cur_end, "Cache-control", 13);
6873 if (!val)
6874 continue;
6875
6876 /* OK, right now we know we have a cache-control header at cur_ptr */
6877 cc_found = 1;
6878 p1 = cur_ptr + val; /* first non-space char after 'cache-control:' */
6879
6880 if (p1 >= cur_end) /* no more info */
6881 continue;
6882
6883 /* p1 is at the beginning of the value */
6884 p2 = p1;
6885 while (p2 < cur_end && *p2 != '=' && *p2 != ',' && !isspace((unsigned char)*p2))
6886 p2++;
6887
6888 /* we have a complete value between p1 and p2. We don't check the
6889 * values after max-age, max-stale nor min-fresh, we simply don't
6890 * use the cache when they're specified.
6891 */
6892 if (((p2 - p1 == 7) && strncasecmp(p1, "max-age", 7) == 0) ||
6893 ((p2 - p1 == 8) && strncasecmp(p1, "no-cache", 8) == 0) ||
6894 ((p2 - p1 == 9) && strncasecmp(p1, "max-stale", 9) == 0) ||
6895 ((p2 - p1 == 9) && strncasecmp(p1, "min-fresh", 9) == 0)) {
6896 txn->flags |= TX_CACHE_IGNORE;
6897 continue;
6898 }
6899
6900 if ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0) {
6901 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
6902 continue;
6903 }
6904 }
6905
6906 /* RFC7234#5.4:
6907 * When the Cache-Control header field is also present and
6908 * understood in a request, Pragma is ignored.
6909 * When the Cache-Control header field is not present in a
6910 * request, caches MUST consider the no-cache request
6911 * pragma-directive as having the same effect as if
6912 * "Cache-Control: no-cache" were present.
6913 */
6914 if (!cc_found && pragma_found)
6915 txn->flags |= TX_CACHE_IGNORE;
6916}
6917
6918/*
Willy Tarreaud3900cc2017-12-22 15:35:11 +01006919 * Check if response is cacheable or not. Updates s->txn->flags.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006920 */
Willy Tarreau87b09662015-04-03 00:22:06 +02006921void check_response_for_cacheability(struct stream *s, struct channel *rtr)
Willy Tarreaua15645d2007-03-18 16:22:39 +01006922{
Willy Tarreaueee5b512015-04-03 23:46:31 +02006923 struct http_txn *txn = s->txn;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006924 char *p1, *p2;
6925
6926 char *cur_ptr, *cur_end, *cur_next;
6927 int cur_idx;
6928
Christopher Faulet25a02f62018-10-24 12:00:25 +02006929
6930 if (IS_HTX_STRM(s))
6931 return htx_check_response_for_cacheability(s, rtr);
6932
Willy Tarreau12b32f22017-12-21 16:08:09 +01006933 if (txn->status < 200) {
6934 /* do not try to cache interim responses! */
6935 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006936 return;
Willy Tarreau12b32f22017-12-21 16:08:09 +01006937 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006938
6939 /* Iterate through the headers.
6940 * we start with the start line.
6941 */
6942 cur_idx = 0;
Willy Tarreauf37954d2018-06-15 18:31:02 +02006943 cur_next = ci_head(rtr) + hdr_idx_first_pos(&txn->hdr_idx);
Willy Tarreaua15645d2007-03-18 16:22:39 +01006944
6945 while ((cur_idx = txn->hdr_idx.v[cur_idx].next)) {
6946 struct hdr_idx_elem *cur_hdr;
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006947 int val;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006948
6949 cur_hdr = &txn->hdr_idx.v[cur_idx];
6950 cur_ptr = cur_next;
6951 cur_end = cur_ptr + cur_hdr->len;
6952 cur_next = cur_end + cur_hdr->cr + 1;
6953
6954 /* We have one full header between cur_ptr and cur_end, and the
Willy Tarreaud3900cc2017-12-22 15:35:11 +01006955 * next header starts at cur_next.
Willy Tarreaua15645d2007-03-18 16:22:39 +01006956 */
6957
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006958 val = http_header_match2(cur_ptr, cur_end, "Pragma", 6);
6959 if (val) {
6960 if ((cur_end - (cur_ptr + val) >= 8) &&
6961 strncasecmp(cur_ptr + val, "no-cache", 8) == 0) {
6962 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
6963 return;
6964 }
Willy Tarreaua15645d2007-03-18 16:22:39 +01006965 }
6966
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006967 val = http_header_match2(cur_ptr, cur_end, "Cache-control", 13);
6968 if (!val)
Willy Tarreaua15645d2007-03-18 16:22:39 +01006969 continue;
6970
6971 /* OK, right now we know we have a cache-control header at cur_ptr */
6972
Willy Tarreauaa9dce32007-03-18 23:50:16 +01006973 p1 = cur_ptr + val; /* first non-space char after 'cache-control:' */
Willy Tarreaua15645d2007-03-18 16:22:39 +01006974
6975 if (p1 >= cur_end) /* no more info */
6976 continue;
6977
6978 /* p1 is at the beginning of the value */
6979 p2 = p1;
6980
Willy Tarreau8f8e6452007-06-17 21:51:38 +02006981 while (p2 < cur_end && *p2 != '=' && *p2 != ',' && !isspace((unsigned char)*p2))
Willy Tarreaua15645d2007-03-18 16:22:39 +01006982 p2++;
6983
6984 /* we have a complete value between p1 and p2 */
6985 if (p2 < cur_end && *p2 == '=') {
Willy Tarreaud3900cc2017-12-22 15:35:11 +01006986 if (((cur_end - p2) > 1 && (p2 - p1 == 7) && strncasecmp(p1, "max-age=0", 9) == 0) ||
6987 ((cur_end - p2) > 1 && (p2 - p1 == 8) && strncasecmp(p1, "s-maxage=0", 10) == 0)) {
6988 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
6989 continue;
6990 }
6991
Willy Tarreaua15645d2007-03-18 16:22:39 +01006992 /* we have something of the form no-cache="set-cookie" */
6993 if ((cur_end - p1 >= 21) &&
6994 strncasecmp(p1, "no-cache=\"set-cookie", 20) == 0
6995 && (p1[20] == '"' || p1[20] == ','))
Willy Tarreau3d300592007-03-18 18:34:41 +01006996 txn->flags &= ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01006997 continue;
6998 }
6999
7000 /* OK, so we know that either p2 points to the end of string or to a comma */
7001 if (((p2 - p1 == 7) && strncasecmp(p1, "private", 7) == 0) ||
Willy Tarreau5b15f902013-07-04 12:46:56 +02007002 ((p2 - p1 == 8) && strncasecmp(p1, "no-cache", 8) == 0) ||
Willy Tarreaud3900cc2017-12-22 15:35:11 +01007003 ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0)) {
Willy Tarreau3d300592007-03-18 18:34:41 +01007004 txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007005 return;
7006 }
7007
7008 if ((p2 - p1 == 6) && strncasecmp(p1, "public", 6) == 0) {
Willy Tarreau3d300592007-03-18 18:34:41 +01007009 txn->flags |= TX_CACHEABLE | TX_CACHE_COOK;
Willy Tarreaua15645d2007-03-18 16:22:39 +01007010 continue;
7011 }
7012 }
7013}
7014
Willy Tarreau58f10d72006-12-04 02:26:12 +01007015
Willy Tarreaub2513902006-12-17 14:52:38 +01007016/*
Cyril Bonté70be45d2010-10-12 00:14:35 +02007017 * In a GET, HEAD or POST request, check if the requested URI matches the stats uri
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007018 * for the current backend.
Willy Tarreaub2513902006-12-17 14:52:38 +01007019 *
Cyril Bonté70be45d2010-10-12 00:14:35 +02007020 * It is assumed that the request is either a HEAD, GET, or POST and that the
Willy Tarreau295a8372011-03-10 11:25:07 +01007021 * uri_auth field is valid.
Willy Tarreaub2513902006-12-17 14:52:38 +01007022 *
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007023 * Returns 1 if stats should be provided, otherwise 0.
Willy Tarreaub2513902006-12-17 14:52:38 +01007024 */
Willy Tarreau295a8372011-03-10 11:25:07 +01007025int stats_check_uri(struct stream_interface *si, struct http_txn *txn, struct proxy *backend)
Willy Tarreaub2513902006-12-17 14:52:38 +01007026{
7027 struct uri_auth *uri_auth = backend->uri_auth;
Willy Tarreau3a215be2012-03-09 21:39:51 +01007028 struct http_msg *msg = &txn->req;
Willy Tarreauf37954d2018-06-15 18:31:02 +02007029 const char *uri = ci_head(msg->chn)+ msg->sl.rq.u;
Willy Tarreaub2513902006-12-17 14:52:38 +01007030
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007031 if (!uri_auth)
7032 return 0;
7033
Cyril Bonté70be45d2010-10-12 00:14:35 +02007034 if (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD && txn->meth != HTTP_METH_POST)
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01007035 return 0;
7036
Willy Tarreau8d5d7f22007-01-21 19:16:41 +01007037 /* check URI size */
Willy Tarreau3a215be2012-03-09 21:39:51 +01007038 if (uri_auth->uri_len > msg->sl.rq.u_l)
Willy Tarreaub2513902006-12-17 14:52:38 +01007039 return 0;
7040
Willy Tarreau414e9bb2013-11-23 00:30:38 +01007041 if (memcmp(uri, uri_auth->uri_prefix, uri_auth->uri_len) != 0)
Willy Tarreaub2513902006-12-17 14:52:38 +01007042 return 0;
7043
Willy Tarreaub2513902006-12-17 14:52:38 +01007044 return 1;
7045}
7046
Willy Tarreau7ccdd8d2018-09-07 14:01:39 +02007047/* Append the description of what is present in error snapshot <es> into <out>.
7048 * The description must be small enough to always fit in a trash. The output
7049 * buffer may be the trash so the trash must not be used inside this function.
7050 */
7051void http_show_error_snapshot(struct buffer *out, const struct error_snapshot *es)
7052{
Christopher Fauleted26fb82018-11-29 22:53:30 +01007053 chunk_appendf(out,
Willy Tarreau7ccdd8d2018-09-07 14:01:39 +02007054 " stream #%d, stream flags 0x%08x, tx flags 0x%08x\n"
7055 " HTTP msg state %s(%d), msg flags 0x%08x\n"
7056 " HTTP chunk len %lld bytes, HTTP body len %lld bytes, channel flags 0x%08x :\n",
7057 es->ctx.http.sid, es->ctx.http.s_flags, es->ctx.http.t_flags,
7058 h1_msg_state_str(es->ctx.http.state), es->ctx.http.state,
7059 es->ctx.http.m_flags, es->ctx.http.m_clen,
7060 es->ctx.http.m_blen, es->ctx.http.b_flags);
7061}
7062
Willy Tarreau4076a152009-04-02 15:18:36 +02007063/*
7064 * Capture a bad request or response and archive it in the proxy's structure.
Willy Tarreau69d8c5d2012-05-08 09:44:41 +02007065 * By default it tries to report the error position as msg->err_pos. However if
7066 * this one is not set, it will then report msg->next, which is the last known
7067 * parsing point. The function is able to deal with wrapping buffers. It always
Willy Tarreaufd9419d2018-09-07 18:01:03 +02007068 * displays buffers as a contiguous area starting at buf->p. The direction is
7069 * determined thanks to the channel's flags.
Willy Tarreau4076a152009-04-02 15:18:36 +02007070 */
Willy Tarreaufd9419d2018-09-07 18:01:03 +02007071void http_capture_bad_message(struct proxy *proxy, struct stream *s,
Willy Tarreau8a0cef22012-03-09 13:39:23 +01007072 struct http_msg *msg,
Willy Tarreau0da5b3b2017-09-21 09:30:46 +02007073 enum h1_state state, struct proxy *other_end)
Willy Tarreau4076a152009-04-02 15:18:36 +02007074{
Willy Tarreauef3ca732018-09-07 15:47:35 +02007075 union error_snapshot_ctx ctx;
7076 long ofs;
Willy Tarreau8a0cef22012-03-09 13:39:23 +01007077
Willy Tarreauef3ca732018-09-07 15:47:35 +02007078 /* http-specific part now */
7079 ctx.http.sid = s->uniq_id;
7080 ctx.http.state = state;
7081 ctx.http.b_flags = msg->chn->flags;
7082 ctx.http.s_flags = s->flags;
7083 ctx.http.t_flags = s->txn->flags;
7084 ctx.http.m_flags = msg->flags;
7085 ctx.http.m_clen = msg->chunk_len;
7086 ctx.http.m_blen = msg->body_len;
Willy Tarreau7480f322018-09-06 19:41:22 +02007087
Willy Tarreauef3ca732018-09-07 15:47:35 +02007088 ofs = msg->chn->total - ci_data(msg->chn);
7089 if (ofs < 0)
7090 ofs = 0;
Willy Tarreau0b5b4802018-09-07 13:49:44 +02007091
Willy Tarreaufd9419d2018-09-07 18:01:03 +02007092 proxy_capture_error(proxy, !!(msg->chn->flags & CF_ISRESP),
Willy Tarreauef3ca732018-09-07 15:47:35 +02007093 other_end, s->target,
7094 strm_sess(s), &msg->chn->buf,
7095 ofs, co_data(msg->chn),
7096 (msg->err_pos >= 0) ? msg->err_pos : msg->next,
7097 &ctx, http_show_error_snapshot);
Willy Tarreau4076a152009-04-02 15:18:36 +02007098}
Willy Tarreaub2513902006-12-17 14:52:38 +01007099
Willy Tarreaubaaee002006-06-26 02:48:02 +02007100/*
Willy Tarreaue92693a2012-09-24 21:13:39 +02007101 * Print a debug line with a header. Always stop at the first CR or LF char,
7102 * so it is safe to pass it a full buffer if needed. If <err> is not NULL, an
7103 * arrow is printed after the line which contains the pointer.
Willy Tarreau58f10d72006-12-04 02:26:12 +01007104 */
Willy Tarreau87b09662015-04-03 00:22:06 +02007105void debug_hdr(const char *dir, struct stream *s, const char *start, const char *end)
Willy Tarreau58f10d72006-12-04 02:26:12 +01007106{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02007107 struct session *sess = strm_sess(s);
Willy Tarreau19d14ef2012-10-29 16:51:55 +01007108 int max;
Willy Tarreau9ad7bd42015-04-03 19:19:59 +02007109
Willy Tarreauf1fd9dc2014-04-24 20:47:57 +02007110 chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", s->uniq_id, s->be->id,
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007111 dir,
Willy Tarreau585744b2017-08-24 14:31:19 +02007112 objt_conn(sess->origin) ? (unsigned short)objt_conn(sess->origin)->handle.fd : -1,
Olivier Houchard9aaf7782017-09-13 18:30:23 +02007113 objt_cs(s->si[1].end) ? (unsigned short)objt_cs(s->si[1].end)->conn->handle.fd : -1);
Willy Tarreaue92693a2012-09-24 21:13:39 +02007114
7115 for (max = 0; start + max < end; max++)
7116 if (start[max] == '\r' || start[max] == '\n')
7117 break;
7118
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007119 UBOUND(max, trash.size - trash.data - 3);
7120 trash.data += strlcpy2(trash.area + trash.data, start, max + 1);
7121 trash.area[trash.data++] = '\n';
7122 shut_your_big_mouth_gcc(write(1, trash.area, trash.data));
Willy Tarreau58f10d72006-12-04 02:26:12 +01007123}
7124
Willy Tarreaueee5b512015-04-03 23:46:31 +02007125
7126/* Allocate a new HTTP transaction for stream <s> unless there is one already.
7127 * The hdr_idx is allocated as well. In case of allocation failure, everything
7128 * allocated is freed and NULL is returned. Otherwise the new transaction is
7129 * assigned to the stream and returned.
7130 */
7131struct http_txn *http_alloc_txn(struct stream *s)
7132{
7133 struct http_txn *txn = s->txn;
7134
7135 if (txn)
7136 return txn;
7137
Willy Tarreaubafbe012017-11-24 17:34:44 +01007138 txn = pool_alloc(pool_head_http_txn);
Willy Tarreaueee5b512015-04-03 23:46:31 +02007139 if (!txn)
7140 return txn;
7141
7142 txn->hdr_idx.size = global.tune.max_http_hdr;
Willy Tarreaubafbe012017-11-24 17:34:44 +01007143 txn->hdr_idx.v = pool_alloc(pool_head_hdr_idx);
Willy Tarreaueee5b512015-04-03 23:46:31 +02007144 if (!txn->hdr_idx.v) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01007145 pool_free(pool_head_http_txn, txn);
Willy Tarreaueee5b512015-04-03 23:46:31 +02007146 return NULL;
7147 }
7148
7149 s->txn = txn;
7150 return txn;
7151}
7152
Thierry FOURNIERfd50f0b2015-09-25 18:53:18 +02007153void http_txn_reset_req(struct http_txn *txn)
7154{
7155 txn->req.flags = 0;
7156 txn->req.sol = txn->req.eol = txn->req.eoh = 0; /* relative to the buffer */
7157 txn->req.next = 0;
7158 txn->req.chunk_len = 0LL;
7159 txn->req.body_len = 0LL;
7160 txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */
7161}
7162
7163void http_txn_reset_res(struct http_txn *txn)
7164{
7165 txn->rsp.flags = 0;
7166 txn->rsp.sol = txn->rsp.eol = txn->rsp.eoh = 0; /* relative to the buffer */
7167 txn->rsp.next = 0;
7168 txn->rsp.chunk_len = 0LL;
7169 txn->rsp.body_len = 0LL;
7170 txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */
7171}
7172
Willy Tarreau0937bc42009-12-22 15:03:09 +01007173/*
Willy Tarreau87b09662015-04-03 00:22:06 +02007174 * Initialize a new HTTP transaction for stream <s>. It is assumed that all
Willy Tarreau0937bc42009-12-22 15:03:09 +01007175 * the required fields are properly allocated and that we only need to (re)init
7176 * them. This should be used before processing any new request.
7177 */
Willy Tarreau87b09662015-04-03 00:22:06 +02007178void http_init_txn(struct stream *s)
Willy Tarreau0937bc42009-12-22 15:03:09 +01007179{
Willy Tarreaueee5b512015-04-03 23:46:31 +02007180 struct http_txn *txn = s->txn;
Willy Tarreaud0d8da92015-04-04 02:10:38 +02007181 struct proxy *fe = strm_fe(s);
Christopher Fauletf2824e62018-10-01 12:12:37 +02007182 struct conn_stream *cs = objt_cs(s->si[0].end);
Willy Tarreau0937bc42009-12-22 15:03:09 +01007183
Christopher Fauletf2824e62018-10-01 12:12:37 +02007184 txn->flags = ((cs && cs->flags & CS_FL_NOT_FIRST)
7185 ? (TX_NOT_FIRST|TX_WAIT_NEXT_RQ)
7186 : 0);
Willy Tarreau0937bc42009-12-22 15:03:09 +01007187 txn->status = -1;
Willy Tarreauc9036c02019-01-11 19:38:25 +01007188 *(unsigned int *)txn->cache_hash = 0;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007189
Willy Tarreauf64d1412010-10-07 20:06:11 +02007190 txn->cookie_first_date = 0;
7191 txn->cookie_last_date = 0;
7192
Willy Tarreaueee5b512015-04-03 23:46:31 +02007193 txn->srv_cookie = NULL;
7194 txn->cli_cookie = NULL;
7195 txn->uri = NULL;
7196
Thierry FOURNIERfd50f0b2015-09-25 18:53:18 +02007197 http_txn_reset_req(txn);
7198 http_txn_reset_res(txn);
7199
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01007200 txn->req.chn = &s->req;
7201 txn->rsp.chn = &s->res;
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01007202
7203 txn->auth.method = HTTP_AUTH_UNKNOWN;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007204
7205 txn->req.err_pos = txn->rsp.err_pos = -2; /* block buggy requests/responses */
7206 if (fe->options2 & PR_O2_REQBUG_OK)
7207 txn->req.err_pos = -1; /* let buggy requests pass */
7208
Willy Tarreau0937bc42009-12-22 15:03:09 +01007209 if (txn->hdr_idx.v)
7210 hdr_idx_init(&txn->hdr_idx);
Thierry FOURNIER4834bc72015-06-06 19:29:07 +02007211
7212 vars_init(&s->vars_txn, SCOPE_TXN);
7213 vars_init(&s->vars_reqres, SCOPE_REQ);
Willy Tarreau0937bc42009-12-22 15:03:09 +01007214}
7215
7216/* to be used at the end of a transaction */
Willy Tarreau87b09662015-04-03 00:22:06 +02007217void http_end_txn(struct stream *s)
Willy Tarreau0937bc42009-12-22 15:03:09 +01007218{
Willy Tarreaueee5b512015-04-03 23:46:31 +02007219 struct http_txn *txn = s->txn;
Willy Tarreaud0d8da92015-04-04 02:10:38 +02007220 struct proxy *fe = strm_fe(s);
Willy Tarreau0937bc42009-12-22 15:03:09 +01007221
7222 /* these ones will have been dynamically allocated */
Willy Tarreaubafbe012017-11-24 17:34:44 +01007223 pool_free(pool_head_requri, txn->uri);
7224 pool_free(pool_head_capture, txn->cli_cookie);
7225 pool_free(pool_head_capture, txn->srv_cookie);
7226 pool_free(pool_head_uniqueid, s->unique_id);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01007227
William Lallemanda73203e2012-03-12 12:48:57 +01007228 s->unique_id = NULL;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007229 txn->uri = NULL;
7230 txn->srv_cookie = NULL;
7231 txn->cli_cookie = NULL;
Willy Tarreau46023632010-01-07 22:51:47 +01007232
Willy Tarreaucb7dd012015-04-03 22:16:32 +02007233 if (s->req_cap) {
Willy Tarreau46023632010-01-07 22:51:47 +01007234 struct cap_hdr *h;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02007235 for (h = fe->req_cap; h; h = h->next)
Willy Tarreaubafbe012017-11-24 17:34:44 +01007236 pool_free(h->pool, s->req_cap[h->index]);
Willy Tarreaucb7dd012015-04-03 22:16:32 +02007237 memset(s->req_cap, 0, fe->nb_req_cap * sizeof(void *));
Willy Tarreau46023632010-01-07 22:51:47 +01007238 }
7239
Willy Tarreaucb7dd012015-04-03 22:16:32 +02007240 if (s->res_cap) {
Willy Tarreau46023632010-01-07 22:51:47 +01007241 struct cap_hdr *h;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02007242 for (h = fe->rsp_cap; h; h = h->next)
Willy Tarreaubafbe012017-11-24 17:34:44 +01007243 pool_free(h->pool, s->res_cap[h->index]);
Willy Tarreaucb7dd012015-04-03 22:16:32 +02007244 memset(s->res_cap, 0, fe->nb_rsp_cap * sizeof(void *));
Willy Tarreau46023632010-01-07 22:51:47 +01007245 }
7246
Willy Tarreaucda7f3f2018-10-28 13:44:36 +01007247 if (!LIST_ISEMPTY(&s->vars_txn.head))
7248 vars_prune(&s->vars_txn, s->sess, s);
7249 if (!LIST_ISEMPTY(&s->vars_reqres.head))
7250 vars_prune(&s->vars_reqres, s->sess, s);
Willy Tarreau0937bc42009-12-22 15:03:09 +01007251}
7252
7253/* to be used at the end of a transaction to prepare a new one */
Willy Tarreau87b09662015-04-03 00:22:06 +02007254void http_reset_txn(struct stream *s)
Willy Tarreau0937bc42009-12-22 15:03:09 +01007255{
7256 http_end_txn(s);
7257 http_init_txn(s);
7258
Thierry FOURNIERbc4c1ac2015-02-25 13:36:14 +01007259 /* reinitialise the current rule list pointer to NULL. We are sure that
7260 * any rulelist match the NULL pointer.
7261 */
7262 s->current_rule_list = NULL;
7263
Willy Tarreaud0d8da92015-04-04 02:10:38 +02007264 s->be = strm_fe(s);
7265 s->logs.logwait = strm_fe(s)->to_log;
Willy Tarreauabcd5142013-06-11 17:18:02 +02007266 s->logs.level = 0;
Willy Tarreau87b09662015-04-03 00:22:06 +02007267 stream_del_srv_conn(s);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01007268 s->target = NULL;
Emeric Brunb982a3d2010-01-04 15:45:53 +01007269 /* re-init store persistence */
7270 s->store_count = 0;
Olivier Houcharda798bf52019-03-08 18:52:00 +01007271 s->uniq_id = _HA_ATOMIC_XADD(&global.req_count, 1);
Emeric Brunb982a3d2010-01-04 15:45:53 +01007272
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01007273 s->req.flags |= CF_READ_DONTWAIT; /* one read is usually enough */
Willy Tarreau0937bc42009-12-22 15:03:09 +01007274
Willy Tarreau739cfba2010-01-25 23:11:14 +01007275 /* We must trim any excess data from the response buffer, because we
7276 * may have blocked an invalid response from a server that we don't
Joseph Herlant5ba80252018-11-15 09:25:36 -08007277 * want to accidently forward once we disable the analysers, nor do
Willy Tarreau739cfba2010-01-25 23:11:14 +01007278 * we want those data to come along with next response. A typical
7279 * example of such data would be from a buggy server responding to
7280 * a HEAD with some data, or sending more than the advertised
7281 * content-length.
7282 */
Willy Tarreauf37954d2018-06-15 18:31:02 +02007283 if (unlikely(ci_data(&s->res)))
Willy Tarreauc9fa0482018-07-10 17:43:27 +02007284 b_set_data(&s->res.buf, co_data(&s->res));
Willy Tarreau739cfba2010-01-25 23:11:14 +01007285
Christopher Fauletc0c672a2017-03-28 11:51:33 +02007286 /* Now we can realign the response buffer */
Willy Tarreaud5b343b2018-06-06 06:42:46 +02007287 c_realign_if_empty(&s->res);
Christopher Fauletc0c672a2017-03-28 11:51:33 +02007288
Willy Tarreaud0d8da92015-04-04 02:10:38 +02007289 s->req.rto = strm_fe(s)->timeout.client;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01007290 s->req.wto = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007291
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01007292 s->res.rto = TICK_ETERNITY;
Willy Tarreaud0d8da92015-04-04 02:10:38 +02007293 s->res.wto = strm_fe(s)->timeout.client;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007294
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01007295 s->req.rex = TICK_ETERNITY;
7296 s->req.wex = TICK_ETERNITY;
7297 s->req.analyse_exp = TICK_ETERNITY;
7298 s->res.rex = TICK_ETERNITY;
7299 s->res.wex = TICK_ETERNITY;
7300 s->res.analyse_exp = TICK_ETERNITY;
Hongbo Longe39683c2017-03-10 18:41:51 +01007301 s->si[1].hcto = TICK_ETERNITY;
Willy Tarreau0937bc42009-12-22 15:03:09 +01007302}
Willy Tarreau58f10d72006-12-04 02:26:12 +01007303
Willy Tarreau79e57332018-10-02 16:01:16 +02007304/* This function executes one of the set-{method,path,query,uri} actions. It
7305 * takes the string from the variable 'replace' with length 'len', then modifies
7306 * the relevant part of the request line accordingly. Then it updates various
7307 * pointers to the next elements which were moved, and the total buffer length.
7308 * It finds the action to be performed in p[2], previously filled by function
7309 * parse_set_req_line(). It returns 0 in case of success, -1 in case of internal
7310 * error, though this can be revisited when this code is finally exploited.
7311 *
7312 * 'action' can be '0' to replace method, '1' to replace path, '2' to replace
7313 * query string and 3 to replace uri.
Willy Tarreau14174bc2012-04-16 14:34:04 +02007314 *
Willy Tarreau79e57332018-10-02 16:01:16 +02007315 * In query string case, the mark question '?' must be set at the start of the
7316 * string by the caller, event if the replacement query string is empty.
Willy Tarreau14174bc2012-04-16 14:34:04 +02007317 */
Willy Tarreau79e57332018-10-02 16:01:16 +02007318int http_replace_req_line(int action, const char *replace, int len,
7319 struct proxy *px, struct stream *s)
Willy Tarreau14174bc2012-04-16 14:34:04 +02007320{
Willy Tarreau79e57332018-10-02 16:01:16 +02007321 struct http_txn *txn = s->txn;
7322 char *cur_ptr, *cur_end;
7323 int offset = 0;
7324 int delta;
Willy Tarreau14174bc2012-04-16 14:34:04 +02007325
Christopher Faulet8d8ac192018-10-24 11:27:39 +02007326 if (IS_HTX_STRM(s))
7327 return htx_req_replace_stline(action, replace, len, px, s);
7328
Willy Tarreau79e57332018-10-02 16:01:16 +02007329 switch (action) {
7330 case 0: // method
7331 cur_ptr = ci_head(&s->req);
7332 cur_end = cur_ptr + txn->req.sl.rq.m_l;
Willy Tarreau14174bc2012-04-16 14:34:04 +02007333
Willy Tarreau79e57332018-10-02 16:01:16 +02007334 /* adjust req line offsets and lengths */
7335 delta = len - offset - (cur_end - cur_ptr);
7336 txn->req.sl.rq.m_l += delta;
7337 txn->req.sl.rq.u += delta;
7338 txn->req.sl.rq.v += delta;
7339 break;
Willy Tarreauaae75e32013-03-29 12:31:49 +01007340
Willy Tarreau79e57332018-10-02 16:01:16 +02007341 case 1: // path
7342 cur_ptr = http_txn_get_path(txn);
7343 if (!cur_ptr)
7344 cur_ptr = ci_head(&s->req) + txn->req.sl.rq.u;
Willy Tarreau14174bc2012-04-16 14:34:04 +02007345
Willy Tarreau79e57332018-10-02 16:01:16 +02007346 cur_end = cur_ptr;
7347 while (cur_end < ci_head(&s->req) + txn->req.sl.rq.u + txn->req.sl.rq.u_l && *cur_end != '?')
7348 cur_end++;
Willy Tarreau14174bc2012-04-16 14:34:04 +02007349
Willy Tarreau79e57332018-10-02 16:01:16 +02007350 /* adjust req line offsets and lengths */
7351 delta = len - offset - (cur_end - cur_ptr);
7352 txn->req.sl.rq.u_l += delta;
7353 txn->req.sl.rq.v += delta;
7354 break;
Willy Tarreau14174bc2012-04-16 14:34:04 +02007355
Willy Tarreau79e57332018-10-02 16:01:16 +02007356 case 2: // query
7357 offset = 1;
7358 cur_ptr = ci_head(&s->req) + txn->req.sl.rq.u;
7359 cur_end = cur_ptr + txn->req.sl.rq.u_l;
7360 while (cur_ptr < cur_end && *cur_ptr != '?')
7361 cur_ptr++;
Willy Tarreauaae75e32013-03-29 12:31:49 +01007362
Willy Tarreau79e57332018-10-02 16:01:16 +02007363 /* skip the question mark or indicate that we must insert it
7364 * (but only if the format string is not empty then).
7365 */
7366 if (cur_ptr < cur_end)
7367 cur_ptr++;
7368 else if (len > 1)
7369 offset = 0;
Willy Tarreauaae75e32013-03-29 12:31:49 +01007370
Willy Tarreau79e57332018-10-02 16:01:16 +02007371 /* adjust req line offsets and lengths */
7372 delta = len - offset - (cur_end - cur_ptr);
7373 txn->req.sl.rq.u_l += delta;
7374 txn->req.sl.rq.v += delta;
7375 break;
Willy Tarreau14174bc2012-04-16 14:34:04 +02007376
Willy Tarreau79e57332018-10-02 16:01:16 +02007377 case 3: // uri
7378 cur_ptr = ci_head(&s->req) + txn->req.sl.rq.u;
7379 cur_end = cur_ptr + txn->req.sl.rq.u_l;
Willy Tarreau14174bc2012-04-16 14:34:04 +02007380
Willy Tarreau79e57332018-10-02 16:01:16 +02007381 /* adjust req line offsets and lengths */
7382 delta = len - offset - (cur_end - cur_ptr);
7383 txn->req.sl.rq.u_l += delta;
7384 txn->req.sl.rq.v += delta;
7385 break;
Willy Tarreau14174bc2012-04-16 14:34:04 +02007386
Willy Tarreau79e57332018-10-02 16:01:16 +02007387 default:
7388 return -1;
Willy Tarreau14174bc2012-04-16 14:34:04 +02007389 }
7390
Willy Tarreau79e57332018-10-02 16:01:16 +02007391 /* commit changes and adjust end of message */
7392 delta = b_rep_blk(&s->req.buf, cur_ptr, cur_end, replace + offset, len - offset);
7393 txn->req.sl.rq.l += delta;
7394 txn->hdr_idx.v[0].len += delta;
7395 http_msg_move_end(&txn->req, delta);
7396 return 0;
Willy Tarreau8797c062007-05-07 00:55:35 +02007397}
7398
Willy Tarreau79e57332018-10-02 16:01:16 +02007399/* This function replace the HTTP status code and the associated message. The
7400 * variable <status> contains the new status code. This function never fails.
Willy Tarreau8e5e9552011-12-16 15:38:49 +01007401 */
Willy Tarreau79e57332018-10-02 16:01:16 +02007402void http_set_status(unsigned int status, const char *reason, struct stream *s)
Willy Tarreau8797c062007-05-07 00:55:35 +02007403{
Willy Tarreau79e57332018-10-02 16:01:16 +02007404 struct http_txn *txn = s->txn;
7405 char *cur_ptr, *cur_end;
7406 int delta;
7407 char *res;
7408 int c_l;
7409 const char *msg = reason;
7410 int msg_len;
Willy Tarreau8797c062007-05-07 00:55:35 +02007411
Christopher Faulet8d8ac192018-10-24 11:27:39 +02007412 if (IS_HTX_STRM(s))
7413 return htx_res_set_status(status, reason, s);
7414
Willy Tarreau79e57332018-10-02 16:01:16 +02007415 chunk_reset(&trash);
Willy Tarreau8797c062007-05-07 00:55:35 +02007416
Willy Tarreau79e57332018-10-02 16:01:16 +02007417 res = ultoa_o(status, trash.area, trash.size);
7418 c_l = res - trash.area;
Willy Tarreau8797c062007-05-07 00:55:35 +02007419
Willy Tarreau79e57332018-10-02 16:01:16 +02007420 trash.area[c_l] = ' ';
7421 trash.data = c_l + 1;
Willy Tarreau8797c062007-05-07 00:55:35 +02007422
Willy Tarreau79e57332018-10-02 16:01:16 +02007423 /* Do we have a custom reason format string? */
7424 if (msg == NULL)
7425 msg = http_get_reason(status);
7426 msg_len = strlen(msg);
7427 strncpy(&trash.area[trash.data], msg, trash.size - trash.data);
7428 trash.data += msg_len;
Willy Tarreau8797c062007-05-07 00:55:35 +02007429
Willy Tarreau79e57332018-10-02 16:01:16 +02007430 cur_ptr = ci_head(&s->res) + txn->rsp.sl.st.c;
7431 cur_end = ci_head(&s->res) + txn->rsp.sl.st.r + txn->rsp.sl.st.r_l;
Willy Tarreauc11416f2007-06-17 16:58:38 +02007432
Willy Tarreau79e57332018-10-02 16:01:16 +02007433 /* commit changes and adjust message */
7434 delta = b_rep_blk(&s->res.buf, cur_ptr, cur_end, trash.area,
7435 trash.data);
Willy Tarreauf26b2522012-12-14 08:33:14 +01007436
Willy Tarreau79e57332018-10-02 16:01:16 +02007437 /* adjust res line offsets and lengths */
7438 txn->rsp.sl.st.r += c_l - txn->rsp.sl.st.c_l;
7439 txn->rsp.sl.st.c_l = c_l;
7440 txn->rsp.sl.st.r_l = msg_len;
Willy Tarreau8797c062007-05-07 00:55:35 +02007441
Willy Tarreau79e57332018-10-02 16:01:16 +02007442 delta = trash.data - (cur_end - cur_ptr);
7443 txn->rsp.sl.st.l += delta;
7444 txn->hdr_idx.v[0].len += delta;
7445 http_msg_move_end(&txn->rsp, delta);
Willy Tarreau8797c062007-05-07 00:55:35 +02007446}
7447
Willy Tarreau58f10d72006-12-04 02:26:12 +01007448/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02007449 * Local variables:
7450 * c-indent-level: 8
7451 * c-basic-offset: 8
7452 * End:
7453 */