Christopher Faulet | f4eb75d | 2018-10-11 15:55:07 +0200 | [diff] [blame] | 1 | /* |
| 2 | * HTTP protocol analyzer |
| 3 | * |
| 4 | * Copyright (C) 2018 HAProxy Technologies, Christopher Faulet <cfaulet@haproxy.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
Willy Tarreau | dcc048a | 2020-06-04 19:11:43 +0200 | [diff] [blame] | 13 | #include <haproxy/acl.h> |
Willy Tarreau | 122eba9 | 2020-06-04 10:15:32 +0200 | [diff] [blame] | 14 | #include <haproxy/action-t.h> |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 15 | #include <haproxy/api.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 16 | #include <haproxy/backend.h> |
Willy Tarreau | 8d36697 | 2020-05-27 16:10:29 +0200 | [diff] [blame] | 17 | #include <haproxy/base64.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 18 | #include <haproxy/capture-t.h> |
Amaury Denoyelle | 0351773 | 2021-05-07 14:25:01 +0200 | [diff] [blame] | 19 | #include <haproxy/cfgparse.h> |
Willy Tarreau | f1d32c4 | 2020-06-04 21:07:02 +0200 | [diff] [blame] | 20 | #include <haproxy/channel.h> |
Willy Tarreau | 4aa573d | 2020-06-04 18:21:56 +0200 | [diff] [blame] | 21 | #include <haproxy/check.h> |
Willy Tarreau | 7ea393d | 2020-06-04 18:02:10 +0200 | [diff] [blame] | 22 | #include <haproxy/connection.h> |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 23 | #include <haproxy/errors.h> |
Willy Tarreau | c7babd8 | 2020-06-04 21:29:29 +0200 | [diff] [blame] | 24 | #include <haproxy/filters.h> |
Willy Tarreau | cd72d8c | 2020-06-02 19:11:26 +0200 | [diff] [blame] | 25 | #include <haproxy/http.h> |
Willy Tarreau | c2b1ff0 | 2020-06-04 21:21:03 +0200 | [diff] [blame] | 26 | #include <haproxy/http_ana.h> |
Willy Tarreau | 8773533 | 2020-06-04 09:08:41 +0200 | [diff] [blame] | 27 | #include <haproxy/http_htx.h> |
Willy Tarreau | 16f958c | 2020-06-03 08:44:35 +0200 | [diff] [blame] | 28 | #include <haproxy/htx.h> |
Willy Tarreau | aeed4a8 | 2020-06-04 22:01:04 +0200 | [diff] [blame] | 29 | #include <haproxy/log.h> |
Willy Tarreau | 6131d6a | 2020-06-02 16:48:09 +0200 | [diff] [blame] | 30 | #include <haproxy/net_helper.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 31 | #include <haproxy/proxy.h> |
Willy Tarreau | 7cd8b6e | 2020-06-02 17:32:26 +0200 | [diff] [blame] | 32 | #include <haproxy/regex.h> |
Willy Tarreau | 1e56f92 | 2020-06-04 23:20:13 +0200 | [diff] [blame] | 33 | #include <haproxy/server-t.h> |
Willy Tarreau | 2eec9b5 | 2020-06-04 19:58:55 +0200 | [diff] [blame] | 34 | #include <haproxy/stats.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 35 | #include <haproxy/stream.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 36 | #include <haproxy/stream_interface.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 37 | #include <haproxy/trace.h> |
Willy Tarreau | 8c42b8a | 2020-06-04 19:27:34 +0200 | [diff] [blame] | 38 | #include <haproxy/uri_auth-t.h> |
Willy Tarreau | a171892 | 2020-06-04 16:25:31 +0200 | [diff] [blame] | 39 | #include <haproxy/vars.h> |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 40 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 41 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 42 | #define TRACE_SOURCE &trace_strm |
| 43 | |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 44 | extern const char *stat_status_codes[]; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 45 | |
Willy Tarreau | ff88270 | 2021-04-10 17:23:00 +0200 | [diff] [blame] | 46 | struct pool_head *pool_head_requri __read_mostly = NULL; |
| 47 | struct pool_head *pool_head_capture __read_mostly = NULL; |
Christopher Faulet | a8a46e2 | 2019-07-16 14:53:09 +0200 | [diff] [blame] | 48 | |
| 49 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 50 | static void http_end_request(struct stream *s); |
| 51 | static void http_end_response(struct stream *s); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 52 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 53 | static void http_capture_headers(struct htx *htx, char **cap, struct cap_hdr *cap_hdr); |
| 54 | static int http_del_hdr_value(char *start, char *end, char **from, char *next); |
| 55 | static size_t http_fmt_req_line(const struct htx_sl *sl, char *str, size_t len); |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 56 | static void http_debug_stline(const char *dir, struct stream *s, const struct htx_sl *sl); |
| 57 | static void http_debug_hdr(const char *dir, struct stream *s, const struct ist n, const struct ist v); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 58 | |
Christopher Faulet | b58f62b | 2020-01-13 16:40:13 +0100 | [diff] [blame] | 59 | static enum rule_result http_req_get_intercept_rule(struct proxy *px, struct list *rules, struct stream *s); |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 60 | static enum rule_result http_res_get_intercept_rule(struct proxy *px, struct list *rules, struct stream *s); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 61 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 62 | static void http_manage_client_side_cookies(struct stream *s, struct channel *req); |
| 63 | static void http_manage_server_side_cookies(struct stream *s, struct channel *res); |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 64 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 65 | static int http_stats_check_uri(struct stream *s, struct http_txn *txn, struct proxy *backend); |
| 66 | static int http_handle_stats(struct stream *s, struct channel *req); |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 67 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 68 | static int http_handle_expect_hdr(struct stream *s, struct htx *htx, struct http_msg *msg); |
| 69 | static int http_reply_100_continue(struct stream *s); |
Christopher Faulet | 23a3c79 | 2018-11-28 10:01:23 +0100 | [diff] [blame] | 70 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 71 | /* This stream analyser waits for a complete HTTP request. It returns 1 if the |
| 72 | * processing can continue on next analysers, or zero if it either needs more |
| 73 | * data or wants to immediately abort the request (eg: timeout, error, ...). It |
| 74 | * is tied to AN_REQ_WAIT_HTTP and may may remove itself from s->req.analysers |
| 75 | * when it has nothing left to do, and may remove any analyser when it wants to |
| 76 | * abort. |
| 77 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 78 | int http_wait_for_request(struct stream *s, struct channel *req, int an_bit) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 79 | { |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 80 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 81 | /* |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 82 | * We will analyze a complete HTTP request to check the its syntax. |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 83 | * |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 84 | * Once the start line and all headers are received, we may perform a |
| 85 | * capture of the error (if any), and we will set a few fields. We also |
| 86 | * check for monitor-uri, logging and finally headers capture. |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 87 | */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 88 | struct session *sess = s->sess; |
| 89 | struct http_txn *txn = s->txn; |
| 90 | struct http_msg *msg = &txn->req; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 91 | struct htx *htx; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 92 | struct htx_sl *sl; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 93 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 94 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 95 | |
Christopher Faulet | da46a0d | 2021-01-21 17:32:58 +0100 | [diff] [blame] | 96 | if (unlikely(!IS_HTX_STRM(s))) { |
| 97 | /* It is only possible when a TCP stream is upgrade to HTTP. |
| 98 | * There is a transition period during which there is no |
| 99 | * data. The stream is still in raw mode and SF_IGNORE flag is |
| 100 | * still set. When this happens, the new mux is responsible to |
Ilya Shipitsin | acf8459 | 2021-02-06 22:29:08 +0500 | [diff] [blame] | 101 | * handle all errors. Thus we may leave immediately. |
Christopher Faulet | da46a0d | 2021-01-21 17:32:58 +0100 | [diff] [blame] | 102 | */ |
| 103 | BUG_ON(!(s->flags & SF_IGNORE) || !c_empty(&s->req)); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 104 | |
Christopher Faulet | 97b3a61 | 2021-03-15 17:10:12 +0100 | [diff] [blame] | 105 | /* Don't connect for now */ |
| 106 | channel_dont_connect(req); |
| 107 | |
| 108 | /* A SHUTR at this stage means we are performing a "destructive" |
| 109 | * HTTP upgrade (TCP>H2). In this case, we can leave. |
| 110 | */ |
| 111 | if (req->flags & CF_SHUTR) { |
| 112 | s->logs.logwait = 0; |
| 113 | s->logs.level = 0; |
| 114 | channel_abort(&s->req); |
| 115 | channel_abort(&s->res); |
| 116 | req->analysers &= AN_REQ_FLT_END; |
| 117 | req->analyse_exp = TICK_ETERNITY; |
| 118 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA, s); |
| 119 | return 1; |
| 120 | } |
Christopher Faulet | da46a0d | 2021-01-21 17:32:58 +0100 | [diff] [blame] | 121 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA, s); |
| 122 | return 0; |
| 123 | } |
| 124 | |
| 125 | htx = htxbuf(&req->buf); |
Christopher Faulet | 8bebd2f | 2020-10-06 17:54:56 +0200 | [diff] [blame] | 126 | |
Willy Tarreau | 4236f03 | 2019-03-05 10:43:32 +0100 | [diff] [blame] | 127 | /* Parsing errors are caught here */ |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 128 | if (htx->flags & (HTX_FL_PARSING_ERROR|HTX_FL_PROCESSING_ERROR)) { |
Willy Tarreau | 4236f03 | 2019-03-05 10:43:32 +0100 | [diff] [blame] | 129 | stream_inc_http_req_ctr(s); |
Emeric Brun | 2897644 | 2020-10-07 08:50:09 +0200 | [diff] [blame] | 130 | proxy_inc_fe_req_ctr(sess->listener, sess->fe); |
Christopher Faulet | bf7175f | 2021-02-10 14:58:01 +0100 | [diff] [blame] | 131 | if (htx->flags & HTX_FL_PARSING_ERROR) { |
| 132 | stream_inc_http_err_ctr(s); |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 133 | goto return_bad_req; |
Christopher Faulet | bf7175f | 2021-02-10 14:58:01 +0100 | [diff] [blame] | 134 | } |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 135 | else |
| 136 | goto return_int_err; |
Willy Tarreau | 4236f03 | 2019-03-05 10:43:32 +0100 | [diff] [blame] | 137 | } |
| 138 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 139 | /* we're speaking HTTP here, so let's speak HTTP to the client */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 140 | s->srv_error = http_return_srv_error; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 141 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 142 | msg->msg_state = HTTP_MSG_BODY; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 143 | stream_inc_http_req_ctr(s); |
Emeric Brun | 2897644 | 2020-10-07 08:50:09 +0200 | [diff] [blame] | 144 | proxy_inc_fe_req_ctr(sess->listener, sess->fe); /* one more valid request for this FE */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 145 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 146 | /* kill the pending keep-alive timeout */ |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 147 | req->analyse_exp = TICK_ETERNITY; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 148 | |
Christopher Faulet | 29f1758 | 2019-05-23 11:03:26 +0200 | [diff] [blame] | 149 | BUG_ON(htx_get_first_type(htx) != HTX_BLK_REQ_SL); |
Christopher Faulet | 297fbb4 | 2019-05-13 14:41:27 +0200 | [diff] [blame] | 150 | sl = http_get_stline(htx); |
Christopher Faulet | 0359911 | 2018-11-27 11:21:21 +0100 | [diff] [blame] | 151 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 152 | /* 0: we might have to print this header in debug mode */ |
| 153 | if (unlikely((global.mode & MODE_DEBUG) && |
| 154 | (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) { |
| 155 | int32_t pos; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 156 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 157 | http_debug_stline("clireq", s, sl); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 158 | |
Christopher Faulet | a3f1550 | 2019-05-13 15:27:23 +0200 | [diff] [blame] | 159 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 160 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 161 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 162 | |
| 163 | if (type == HTX_BLK_EOH) |
| 164 | break; |
| 165 | if (type != HTX_BLK_HDR) |
| 166 | continue; |
| 167 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 168 | http_debug_hdr("clihdr", s, |
| 169 | htx_get_blk_name(htx, blk), |
| 170 | htx_get_blk_value(htx, blk)); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 171 | } |
| 172 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 173 | |
| 174 | /* |
Christopher Faulet | 0359911 | 2018-11-27 11:21:21 +0100 | [diff] [blame] | 175 | * 1: identify the method and the version. Also set HTTP flags |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 176 | */ |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 177 | txn->meth = sl->info.req.meth; |
Christopher Faulet | 0359911 | 2018-11-27 11:21:21 +0100 | [diff] [blame] | 178 | if (sl->flags & HTX_SL_F_VER_11) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 179 | msg->flags |= HTTP_MSGF_VER_11; |
Christopher Faulet | 0359911 | 2018-11-27 11:21:21 +0100 | [diff] [blame] | 180 | msg->flags |= HTTP_MSGF_XFER_LEN; |
Christopher Faulet | 2a40854 | 2020-11-20 14:22:37 +0100 | [diff] [blame] | 181 | if (sl->flags & HTX_SL_F_CLEN) |
| 182 | msg->flags |= HTTP_MSGF_CNT_LEN; |
| 183 | else if (sl->flags & HTX_SL_F_CHNK) |
| 184 | msg->flags |= HTTP_MSGF_TE_CHNK; |
Christopher Faulet | b2db4fa | 2018-11-27 16:51:09 +0100 | [diff] [blame] | 185 | if (sl->flags & HTX_SL_F_BODYLESS) |
| 186 | msg->flags |= HTTP_MSGF_BODYLESS; |
Christopher Faulet | 576c358 | 2021-01-08 15:53:01 +0100 | [diff] [blame] | 187 | if (sl->flags & HTX_SL_F_CONN_UPG) |
| 188 | msg->flags |= HTTP_MSGF_CONN_UPG; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 189 | |
| 190 | /* we can make use of server redirect on GET and HEAD */ |
| 191 | if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD) |
| 192 | s->flags |= SF_REDIRECTABLE; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 193 | else if (txn->meth == HTTP_METH_OTHER && isteqi(htx_sl_req_meth(sl), ist("PRI"))) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 194 | /* PRI is reserved for the HTTP/2 preface */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 195 | goto return_bad_req; |
| 196 | } |
| 197 | |
| 198 | /* |
Christopher Faulet | 6072beb | 2020-02-18 15:34:58 +0100 | [diff] [blame] | 199 | * 2: check if the URI matches the monitor_uri. We have to do this for |
| 200 | * every request which gets in, because the monitor-uri is defined by |
| 201 | * the frontend. If the monitor-uri starts with a '/', the matching is |
| 202 | * done against the request's path. Otherwise, the request's uri is |
| 203 | * used. It is a workaround to let HTTP/2 health-checks work as |
| 204 | * expected. |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 205 | */ |
| 206 | if (unlikely((sess->fe->monitor_uri_len != 0) && |
Christopher Faulet | 6072beb | 2020-02-18 15:34:58 +0100 | [diff] [blame] | 207 | ((*sess->fe->monitor_uri == '/' && isteq(http_get_path(htx_sl_req_uri(sl)), |
| 208 | ist2(sess->fe->monitor_uri, sess->fe->monitor_uri_len))) || |
| 209 | isteq(htx_sl_req_uri(sl), ist2(sess->fe->monitor_uri, sess->fe->monitor_uri_len))))) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 210 | /* |
| 211 | * We have found the monitor URI |
| 212 | */ |
| 213 | struct acl_cond *cond; |
| 214 | |
| 215 | s->flags |= SF_MONITOR; |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 216 | _HA_ATOMIC_INC(&sess->fe->fe_counters.intercepted_req); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 217 | |
| 218 | /* Check if we want to fail this monitor request or not */ |
| 219 | list_for_each_entry(cond, &sess->fe->mon_fail_cond, list) { |
| 220 | int ret = acl_exec_cond(cond, sess->fe, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL); |
| 221 | |
| 222 | ret = acl_pass(ret); |
| 223 | if (cond->pol == ACL_COND_UNLESS) |
| 224 | ret = !ret; |
| 225 | |
| 226 | if (ret) { |
| 227 | /* we fail this request, let's return 503 service unavail */ |
| 228 | txn->status = 503; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 229 | if (!(s->flags & SF_ERR_MASK)) |
| 230 | s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */ |
| 231 | goto return_prx_cond; |
| 232 | } |
| 233 | } |
| 234 | |
Joseph Herlant | c42c0e9 | 2018-11-25 10:43:27 -0800 | [diff] [blame] | 235 | /* nothing to fail, let's reply normally */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 236 | txn->status = 200; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 237 | if (!(s->flags & SF_ERR_MASK)) |
| 238 | s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */ |
| 239 | goto return_prx_cond; |
| 240 | } |
| 241 | |
| 242 | /* |
| 243 | * 3: Maybe we have to copy the original REQURI for the logs ? |
| 244 | * Note: we cannot log anymore if the request has been |
| 245 | * classified as invalid. |
| 246 | */ |
| 247 | if (unlikely(s->logs.logwait & LW_REQ)) { |
| 248 | /* we have a complete HTTP request that we must log */ |
| 249 | if ((txn->uri = pool_alloc(pool_head_requri)) != NULL) { |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 250 | size_t len; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 251 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 252 | len = http_fmt_req_line(sl, txn->uri, global.tune.requri_len - 1); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 253 | txn->uri[len] = 0; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 254 | |
| 255 | if (!(s->logs.logwait &= ~(LW_REQ|LW_INIT))) |
| 256 | s->do_log(s); |
| 257 | } else { |
| 258 | ha_alert("HTTP logging : out of memory.\n"); |
| 259 | } |
| 260 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 261 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 262 | /* if the frontend has "option http-use-proxy-header", we'll check if |
| 263 | * we have what looks like a proxied connection instead of a connection, |
| 264 | * and in this case set the TX_USE_PX_CONN flag to use Proxy-connection. |
| 265 | * Note that this is *not* RFC-compliant, however browsers and proxies |
| 266 | * happen to do that despite being non-standard :-( |
| 267 | * We consider that a request not beginning with either '/' or '*' is |
| 268 | * a proxied connection, which covers both "scheme://location" and |
| 269 | * CONNECT ip:port. |
| 270 | */ |
| 271 | if ((sess->fe->options2 & PR_O2_USE_PXHDR) && |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 272 | *HTX_SL_REQ_UPTR(sl) != '/' && *HTX_SL_REQ_UPTR(sl) != '*') |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 273 | txn->flags |= TX_USE_PX_CONN; |
| 274 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 275 | /* 5: we may need to capture headers */ |
| 276 | if (unlikely((s->logs.logwait & LW_REQHDR) && s->req_cap)) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 277 | http_capture_headers(htx, s->req_cap, sess->fe->req_cap); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 278 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 279 | /* we may have to wait for the request's body */ |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 280 | if (s->be->options & PR_O_WREQ_BODY) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 281 | req->analysers |= AN_REQ_HTTP_BODY; |
| 282 | |
| 283 | /* |
| 284 | * RFC7234#4: |
| 285 | * A cache MUST write through requests with methods |
| 286 | * that are unsafe (Section 4.2.1 of [RFC7231]) to |
| 287 | * the origin server; i.e., a cache is not allowed |
| 288 | * to generate a reply to such a request before |
| 289 | * having forwarded the request and having received |
| 290 | * a corresponding response. |
| 291 | * |
| 292 | * RFC7231#4.2.1: |
| 293 | * Of the request methods defined by this |
| 294 | * specification, the GET, HEAD, OPTIONS, and TRACE |
| 295 | * methods are defined to be safe. |
| 296 | */ |
| 297 | if (likely(txn->meth == HTTP_METH_GET || |
| 298 | txn->meth == HTTP_METH_HEAD || |
| 299 | txn->meth == HTTP_METH_OPTIONS || |
| 300 | txn->meth == HTTP_METH_TRACE)) |
| 301 | txn->flags |= TX_CACHEABLE | TX_CACHE_COOK; |
| 302 | |
| 303 | /* end of job, return OK */ |
| 304 | req->analysers &= ~an_bit; |
| 305 | req->analyse_exp = TICK_ETERNITY; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 306 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 307 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 308 | return 1; |
| 309 | |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 310 | return_int_err: |
| 311 | txn->status = 500; |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 312 | if (!(s->flags & SF_ERR_MASK)) |
| 313 | s->flags |= SF_ERR_INTERNAL; |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 314 | _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 315 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 316 | _HA_ATOMIC_INC(&sess->listener->counters->internal_errors); |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 317 | goto return_prx_cond; |
| 318 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 319 | return_bad_req: |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 320 | txn->status = 400; |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 321 | _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 322 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 323 | _HA_ATOMIC_INC(&sess->listener->counters->failed_req); |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 324 | /* fall through */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 325 | |
| 326 | return_prx_cond: |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 327 | http_reply_and_close(s, txn->status, http_error_message(s)); |
| 328 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 329 | if (!(s->flags & SF_ERR_MASK)) |
| 330 | s->flags |= SF_ERR_PRXCOND; |
| 331 | if (!(s->flags & SF_FINST_MASK)) |
| 332 | s->flags |= SF_FINST_R; |
| 333 | |
| 334 | req->analysers &= AN_REQ_FLT_END; |
| 335 | req->analyse_exp = TICK_ETERNITY; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 336 | DBG_TRACE_DEVEL("leaving on error", |
| 337 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 338 | return 0; |
| 339 | } |
| 340 | |
| 341 | |
| 342 | /* This stream analyser runs all HTTP request processing which is common to |
| 343 | * frontends and backends, which means blocking ACLs, filters, connection-close, |
| 344 | * reqadd, stats and redirects. This is performed for the designated proxy. |
| 345 | * It returns 1 if the processing can continue on next analysers, or zero if it |
| 346 | * either needs more data or wants to immediately abort the request (eg: deny, |
| 347 | * error, ...). |
| 348 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 349 | int http_process_req_common(struct stream *s, struct channel *req, int an_bit, struct proxy *px) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 350 | { |
| 351 | struct session *sess = s->sess; |
| 352 | struct http_txn *txn = s->txn; |
| 353 | struct http_msg *msg = &txn->req; |
Christopher Faulet | ff2759f | 2018-10-24 11:13:16 +0200 | [diff] [blame] | 354 | struct htx *htx; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 355 | struct redirect_rule *rule; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 356 | enum rule_result verdict; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 357 | struct connection *conn = objt_conn(sess->origin); |
| 358 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 359 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 360 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 361 | htx = htxbuf(&req->buf); |
Christopher Faulet | ff2759f | 2018-10-24 11:13:16 +0200 | [diff] [blame] | 362 | |
Christopher Faulet | 1907ccc | 2019-04-29 13:12:02 +0200 | [diff] [blame] | 363 | /* just in case we have some per-backend tracking. Only called the first |
| 364 | * execution of the analyser. */ |
| 365 | if (!s->current_rule || s->current_rule_list != &px->http_req_rules) |
| 366 | stream_inc_be_http_req_ctr(s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 367 | |
| 368 | /* evaluate http-request rules */ |
| 369 | if (!LIST_ISEMPTY(&px->http_req_rules)) { |
Christopher Faulet | b58f62b | 2020-01-13 16:40:13 +0100 | [diff] [blame] | 370 | verdict = http_req_get_intercept_rule(px, &px->http_req_rules, s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 371 | |
| 372 | switch (verdict) { |
| 373 | case HTTP_RULE_RES_YIELD: /* some data miss, call the function later. */ |
| 374 | goto return_prx_yield; |
| 375 | |
| 376 | case HTTP_RULE_RES_CONT: |
| 377 | case HTTP_RULE_RES_STOP: /* nothing to do */ |
| 378 | break; |
| 379 | |
| 380 | case HTTP_RULE_RES_DENY: /* deny or tarpit */ |
| 381 | if (txn->flags & TX_CLTARPIT) |
| 382 | goto tarpit; |
| 383 | goto deny; |
| 384 | |
| 385 | case HTTP_RULE_RES_ABRT: /* abort request, response already sent. Eg: auth */ |
| 386 | goto return_prx_cond; |
| 387 | |
| 388 | case HTTP_RULE_RES_DONE: /* OK, but terminate request processing (eg: redirect) */ |
| 389 | goto done; |
| 390 | |
| 391 | case HTTP_RULE_RES_BADREQ: /* failed with a bad request */ |
| 392 | goto return_bad_req; |
Christopher Faulet | 3a26bee | 2019-12-16 12:47:40 +0100 | [diff] [blame] | 393 | |
| 394 | case HTTP_RULE_RES_ERROR: /* failed with a bad request */ |
| 395 | goto return_int_err; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 396 | } |
| 397 | } |
| 398 | |
| 399 | if (conn && (conn->flags & CO_FL_EARLY_DATA) && |
Olivier Houchard | 220a26c | 2020-01-23 14:57:36 +0100 | [diff] [blame] | 400 | (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS))) { |
Christopher Faulet | ff2759f | 2018-10-24 11:13:16 +0200 | [diff] [blame] | 401 | struct http_hdr_ctx ctx; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 402 | |
Christopher Faulet | ff2759f | 2018-10-24 11:13:16 +0200 | [diff] [blame] | 403 | ctx.blk = NULL; |
| 404 | if (!http_find_header(htx, ist("Early-Data"), &ctx, 0)) { |
| 405 | if (unlikely(!http_add_header(htx, ist("Early-Data"), ist("1")))) |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 406 | goto return_int_err; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 407 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 408 | } |
| 409 | |
| 410 | /* OK at this stage, we know that the request was accepted according to |
| 411 | * the http-request rules, we can check for the stats. Note that the |
| 412 | * URI is detected *before* the req* rules in order not to be affected |
| 413 | * by a possible reqrep, while they are processed *after* so that a |
| 414 | * reqdeny can still block them. This clearly needs to change in 1.6! |
| 415 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 416 | if (!s->target && http_stats_check_uri(s, txn, px)) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 417 | s->target = &http_stats_applet.obj_type; |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 418 | if (unlikely(!si_register_handler(&s->si[1], objt_applet(s->target)))) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 419 | s->logs.tv_request = now; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 420 | if (!(s->flags & SF_ERR_MASK)) |
| 421 | s->flags |= SF_ERR_RESOURCE; |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 422 | goto return_int_err; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 423 | } |
| 424 | |
| 425 | /* parse the whole stats request and extract the relevant information */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 426 | http_handle_stats(s, req); |
Christopher Faulet | b58f62b | 2020-01-13 16:40:13 +0100 | [diff] [blame] | 427 | verdict = http_req_get_intercept_rule(px, &px->uri_auth->http_req_rules, s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 428 | /* not all actions implemented: deny, allow, auth */ |
| 429 | |
| 430 | if (verdict == HTTP_RULE_RES_DENY) /* stats http-request deny */ |
| 431 | goto deny; |
| 432 | |
| 433 | if (verdict == HTTP_RULE_RES_ABRT) /* stats auth / stats http-request auth */ |
| 434 | goto return_prx_cond; |
Christopher Faulet | 3a26bee | 2019-12-16 12:47:40 +0100 | [diff] [blame] | 435 | |
| 436 | if (verdict == HTTP_RULE_RES_BADREQ) /* failed with a bad request */ |
| 437 | goto return_bad_req; |
| 438 | |
| 439 | if (verdict == HTTP_RULE_RES_ERROR) /* failed with a bad request */ |
| 440 | goto return_int_err; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 441 | } |
| 442 | |
Christopher Faulet | 2571bc6 | 2019-03-01 11:44:26 +0100 | [diff] [blame] | 443 | /* Proceed with the applets now. */ |
| 444 | if (unlikely(objt_applet(s->target))) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 445 | if (sess->fe == s->be) /* report it if the request was intercepted by the frontend */ |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 446 | _HA_ATOMIC_INC(&sess->fe->fe_counters.intercepted_req); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 447 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 448 | if (http_handle_expect_hdr(s, htx, msg) == -1) |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 449 | goto return_int_err; |
Christopher Faulet | bcf242a | 2019-03-01 11:36:26 +0100 | [diff] [blame] | 450 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 451 | if (!(s->flags & SF_ERR_MASK)) // this is not really an error but it is |
| 452 | s->flags |= SF_ERR_LOCAL; // to mark that it comes from the proxy |
| 453 | if (!(s->flags & SF_FINST_MASK)) |
| 454 | s->flags |= SF_FINST_R; |
| 455 | |
Christopher Faulet | c2ac5e4 | 2021-03-08 18:20:09 +0100 | [diff] [blame] | 456 | if (HAS_FILTERS(s)) |
| 457 | req->analysers |= AN_REQ_FLT_HTTP_HDRS; |
| 458 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 459 | /* enable the minimally required analyzers to handle keep-alive and compression on the HTTP response */ |
| 460 | req->analysers &= (AN_REQ_HTTP_BODY | AN_REQ_FLT_HTTP_HDRS | AN_REQ_FLT_END); |
| 461 | req->analysers &= ~AN_REQ_FLT_XFER_DATA; |
| 462 | req->analysers |= AN_REQ_HTTP_XFER_BODY; |
Christopher Faulet | bcf242a | 2019-03-01 11:36:26 +0100 | [diff] [blame] | 463 | |
| 464 | req->flags |= CF_SEND_DONTWAIT; |
| 465 | s->flags |= SF_ASSIGNED; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 466 | goto done; |
| 467 | } |
| 468 | |
| 469 | /* check whether we have some ACLs set to redirect this request */ |
| 470 | list_for_each_entry(rule, &px->redirect_rules, list) { |
| 471 | if (rule->cond) { |
| 472 | int ret; |
| 473 | |
| 474 | ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL); |
| 475 | ret = acl_pass(ret); |
| 476 | if (rule->cond->pol == ACL_COND_UNLESS) |
| 477 | ret = !ret; |
| 478 | if (!ret) |
| 479 | continue; |
| 480 | } |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 481 | if (!http_apply_redirect_rule(rule, s, txn)) |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 482 | goto return_int_err; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 483 | goto done; |
| 484 | } |
| 485 | |
| 486 | /* POST requests may be accompanied with an "Expect: 100-Continue" header. |
| 487 | * If this happens, then the data will not come immediately, so we must |
| 488 | * send all what we have without waiting. Note that due to the small gain |
| 489 | * in waiting for the body of the request, it's easier to simply put the |
| 490 | * CF_SEND_DONTWAIT flag any time. It's a one-shot flag so it will remove |
| 491 | * itself once used. |
| 492 | */ |
| 493 | req->flags |= CF_SEND_DONTWAIT; |
| 494 | |
| 495 | done: /* done with this analyser, continue with next ones that the calling |
| 496 | * points will have set, if any. |
| 497 | */ |
| 498 | req->analyse_exp = TICK_ETERNITY; |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 499 | done_without_exp: /* done with this analyser, but don't reset the analyse_exp. */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 500 | req->analysers &= ~an_bit; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 501 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 502 | return 1; |
| 503 | |
| 504 | tarpit: |
| 505 | /* Allow cookie logging |
| 506 | */ |
| 507 | if (s->be->cookie_name || sess->fe->capture_name) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 508 | http_manage_client_side_cookies(s, req); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 509 | |
| 510 | /* When a connection is tarpitted, we use the tarpit timeout, |
| 511 | * which may be the same as the connect timeout if unspecified. |
| 512 | * If unset, then set it to zero because we really want it to |
| 513 | * eventually expire. We build the tarpit as an analyser. |
| 514 | */ |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 515 | channel_htx_erase(&s->req, htx); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 516 | |
| 517 | /* wipe the request out so that we can drop the connection early |
| 518 | * if the client closes first. |
| 519 | */ |
| 520 | channel_dont_connect(req); |
| 521 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 522 | req->analysers &= AN_REQ_FLT_END; /* remove switching rules etc... */ |
| 523 | req->analysers |= AN_REQ_HTTP_TARPIT; |
| 524 | req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit); |
| 525 | if (!req->analyse_exp) |
| 526 | req->analyse_exp = tick_add(now_ms, 0); |
| 527 | stream_inc_http_err_ctr(s); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 528 | _HA_ATOMIC_INC(&sess->fe->fe_counters.denied_req); |
Christopher Faulet | cff0f73 | 2019-12-16 16:13:44 +0100 | [diff] [blame] | 529 | if (s->flags & SF_BE_ASSIGNED) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 530 | _HA_ATOMIC_INC(&s->be->be_counters.denied_req); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 531 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 532 | _HA_ATOMIC_INC(&sess->listener->counters->denied_req); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 533 | goto done_without_exp; |
| 534 | |
| 535 | deny: /* this request was blocked (denied) */ |
| 536 | |
| 537 | /* Allow cookie logging |
| 538 | */ |
| 539 | if (s->be->cookie_name || sess->fe->capture_name) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 540 | http_manage_client_side_cookies(s, req); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 541 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 542 | s->logs.tv_request = now; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 543 | stream_inc_http_err_ctr(s); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 544 | _HA_ATOMIC_INC(&sess->fe->fe_counters.denied_req); |
Christopher Faulet | cff0f73 | 2019-12-16 16:13:44 +0100 | [diff] [blame] | 545 | if (s->flags & SF_BE_ASSIGNED) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 546 | _HA_ATOMIC_INC(&s->be->be_counters.denied_req); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 547 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 548 | _HA_ATOMIC_INC(&sess->listener->counters->denied_req); |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 549 | goto return_prx_err; |
| 550 | |
| 551 | return_int_err: |
| 552 | txn->status = 500; |
| 553 | if (!(s->flags & SF_ERR_MASK)) |
| 554 | s->flags |= SF_ERR_INTERNAL; |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 555 | _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors); |
Christopher Faulet | cff0f73 | 2019-12-16 16:13:44 +0100 | [diff] [blame] | 556 | if (s->flags & SF_BE_ASSIGNED) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 557 | _HA_ATOMIC_INC(&s->be->be_counters.internal_errors); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 558 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 559 | _HA_ATOMIC_INC(&sess->listener->counters->internal_errors); |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 560 | goto return_prx_err; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 561 | |
| 562 | return_bad_req: |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 563 | txn->status = 400; |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 564 | _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 565 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 566 | _HA_ATOMIC_INC(&sess->listener->counters->failed_req); |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 567 | /* fall through */ |
| 568 | |
| 569 | return_prx_err: |
| 570 | http_reply_and_close(s, txn->status, http_error_message(s)); |
| 571 | /* fall through */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 572 | |
| 573 | return_prx_cond: |
| 574 | if (!(s->flags & SF_ERR_MASK)) |
| 575 | s->flags |= SF_ERR_PRXCOND; |
| 576 | if (!(s->flags & SF_FINST_MASK)) |
| 577 | s->flags |= SF_FINST_R; |
| 578 | |
| 579 | req->analysers &= AN_REQ_FLT_END; |
| 580 | req->analyse_exp = TICK_ETERNITY; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 581 | DBG_TRACE_DEVEL("leaving on error", |
| 582 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 583 | return 0; |
| 584 | |
| 585 | return_prx_yield: |
| 586 | channel_dont_connect(req); |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 587 | DBG_TRACE_DEVEL("waiting for more data", |
| 588 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 589 | return 0; |
| 590 | } |
| 591 | |
| 592 | /* This function performs all the processing enabled for the current request. |
| 593 | * It returns 1 if the processing can continue on next analysers, or zero if it |
| 594 | * needs more data, encounters an error, or wants to immediately abort the |
| 595 | * request. It relies on buffers flags, and updates s->req.analysers. |
| 596 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 597 | int http_process_request(struct stream *s, struct channel *req, int an_bit) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 598 | { |
| 599 | struct session *sess = s->sess; |
| 600 | struct http_txn *txn = s->txn; |
Christopher Faulet | d7bdfb1 | 2018-10-24 11:14:34 +0200 | [diff] [blame] | 601 | struct htx *htx; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 602 | struct connection *cli_conn = objt_conn(strm_sess(s)->origin); |
| 603 | |
Christopher Faulet | 8bebd2f | 2020-10-06 17:54:56 +0200 | [diff] [blame] | 604 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 605 | |
| 606 | /* |
| 607 | * Right now, we know that we have processed the entire headers |
| 608 | * and that unwanted requests have been filtered out. We can do |
| 609 | * whatever we want with the remaining request. Also, now we |
| 610 | * may have separate values for ->fe, ->be. |
| 611 | */ |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 612 | htx = htxbuf(&req->buf); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 613 | |
| 614 | /* |
| 615 | * If HTTP PROXY is set we simply get remote server address parsing |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 616 | * incoming request. |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 617 | */ |
| 618 | if ((s->be->options & PR_O_HTTP_PROXY) && !(s->flags & SF_ADDR_SET)) { |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 619 | struct htx_sl *sl; |
| 620 | struct ist uri, path; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 621 | |
Willy Tarreau | 9b7587a | 2020-10-15 07:32:10 +0200 | [diff] [blame] | 622 | if (!sockaddr_alloc(&s->target_addr, NULL, 0)) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 623 | if (!(s->flags & SF_ERR_MASK)) |
| 624 | s->flags |= SF_ERR_RESOURCE; |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 625 | goto return_int_err; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 626 | } |
Christopher Faulet | 297fbb4 | 2019-05-13 14:41:27 +0200 | [diff] [blame] | 627 | sl = http_get_stline(htx); |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 628 | uri = htx_sl_req_uri(sl); |
| 629 | path = http_get_path(uri); |
Willy Tarreau | a48f4b3 | 2019-07-17 15:11:59 +0200 | [diff] [blame] | 630 | |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 631 | if (url2sa(uri.ptr, uri.len - path.len, s->target_addr, NULL) == -1) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 632 | goto return_bad_req; |
| 633 | |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 634 | s->target = &s->be->obj_type; |
| 635 | s->flags |= SF_ADDR_SET | SF_ASSIGNED; |
| 636 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 637 | /* if the path was found, we have to remove everything between |
Christopher Faulet | d7bdfb1 | 2018-10-24 11:14:34 +0200 | [diff] [blame] | 638 | * uri.ptr and path.ptr (excluded). If it was not found, we need |
| 639 | * to replace from all the uri by a single "/". |
| 640 | * |
Ilya Shipitsin | 46a030c | 2020-07-05 16:36:08 +0500 | [diff] [blame] | 641 | * Instead of rewriting the whole start line, we just update |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 642 | * the star-line URI. Some space will be lost but it should be |
Christopher Faulet | d7bdfb1 | 2018-10-24 11:14:34 +0200 | [diff] [blame] | 643 | * insignificant. |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 644 | */ |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 645 | istcpy(&uri, (path.len ? path : ist("/")), uri.len); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 646 | } |
| 647 | |
| 648 | /* |
| 649 | * 7: Now we can work with the cookies. |
| 650 | * Note that doing so might move headers in the request, but |
| 651 | * the fields will stay coherent and the URI will not move. |
| 652 | * This should only be performed in the backend. |
| 653 | */ |
| 654 | if (s->be->cookie_name || sess->fe->capture_name) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 655 | http_manage_client_side_cookies(s, req); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 656 | |
Tim Duesterhus | 2825b4b | 2020-02-28 15:13:34 +0100 | [diff] [blame] | 657 | /* 8: Generate unique ID if a "unique-id-format" is defined. |
| 658 | * |
| 659 | * A unique ID is generated even when it is not sent to ensure that the ID can make use of |
| 660 | * fetches only available in the HTTP request processing stage. |
| 661 | */ |
| 662 | if (!LIST_ISEMPTY(&sess->fe->format_unique_id)) { |
Tim Duesterhus | a17e662 | 2020-03-05 20:19:02 +0100 | [diff] [blame] | 663 | struct ist unique_id = stream_generate_unique_id(s, &sess->fe->format_unique_id); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 664 | |
Tim Duesterhus | a17e662 | 2020-03-05 20:19:02 +0100 | [diff] [blame] | 665 | if (!isttest(unique_id)) { |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 666 | if (!(s->flags & SF_ERR_MASK)) |
| 667 | s->flags |= SF_ERR_RESOURCE; |
| 668 | goto return_int_err; |
| 669 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 670 | |
Tim Duesterhus | 2825b4b | 2020-02-28 15:13:34 +0100 | [diff] [blame] | 671 | /* send unique ID if a "unique-id-header" is defined */ |
Tim Duesterhus | 0643b0e | 2020-03-05 17:56:35 +0100 | [diff] [blame] | 672 | if (isttest(sess->fe->header_unique_id) && |
Tim Duesterhus | a17e662 | 2020-03-05 20:19:02 +0100 | [diff] [blame] | 673 | unlikely(!http_add_header(htx, sess->fe->header_unique_id, s->unique_id))) |
Tim Duesterhus | 2825b4b | 2020-02-28 15:13:34 +0100 | [diff] [blame] | 674 | goto return_int_err; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 675 | } |
| 676 | |
| 677 | /* |
| 678 | * 9: add X-Forwarded-For if either the frontend or the backend |
| 679 | * asks for it. |
| 680 | */ |
| 681 | if ((sess->fe->options | s->be->options) & PR_O_FWDFOR) { |
Christopher Faulet | d7bdfb1 | 2018-10-24 11:14:34 +0200 | [diff] [blame] | 682 | struct http_hdr_ctx ctx = { .blk = NULL }; |
| 683 | struct ist hdr = ist2(s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_name : sess->fe->fwdfor_hdr_name, |
| 684 | s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_len : sess->fe->fwdfor_hdr_len); |
| 685 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 686 | if (!((sess->fe->options | s->be->options) & PR_O_FF_ALWAYS) && |
Christopher Faulet | d7bdfb1 | 2018-10-24 11:14:34 +0200 | [diff] [blame] | 687 | http_find_header(htx, hdr, &ctx, 0)) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 688 | /* The header is set to be added only if none is present |
| 689 | * and we found it, so don't do anything. |
| 690 | */ |
| 691 | } |
Willy Tarreau | a48f4b3 | 2019-07-17 15:11:59 +0200 | [diff] [blame] | 692 | else if (cli_conn && conn_get_src(cli_conn) && cli_conn->src->ss_family == AF_INET) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 693 | /* Add an X-Forwarded-For header unless the source IP is |
| 694 | * in the 'except' network range. |
| 695 | */ |
Christopher Faulet | 5d1def6 | 2021-02-26 09:19:15 +0100 | [diff] [blame] | 696 | if (ipcmp2net(cli_conn->src, &sess->fe->except_xff_net) && |
| 697 | ipcmp2net(cli_conn->src, &s->be->except_xff_net)) { |
Willy Tarreau | a48f4b3 | 2019-07-17 15:11:59 +0200 | [diff] [blame] | 698 | unsigned char *pn = (unsigned char *)&((struct sockaddr_in *)cli_conn->src)->sin_addr; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 699 | |
| 700 | /* Note: we rely on the backend to get the header name to be used for |
| 701 | * x-forwarded-for, because the header is really meant for the backends. |
| 702 | * However, if the backend did not specify any option, we have to rely |
| 703 | * on the frontend's header name. |
| 704 | */ |
Christopher Faulet | d7bdfb1 | 2018-10-24 11:14:34 +0200 | [diff] [blame] | 705 | chunk_printf(&trash, "%d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]); |
| 706 | if (unlikely(!http_add_header(htx, hdr, ist2(trash.area, trash.data)))) |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 707 | goto return_int_err; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 708 | } |
| 709 | } |
Willy Tarreau | a48f4b3 | 2019-07-17 15:11:59 +0200 | [diff] [blame] | 710 | else if (cli_conn && conn_get_src(cli_conn) && cli_conn->src->ss_family == AF_INET6) { |
Christopher Faulet | 5d1def6 | 2021-02-26 09:19:15 +0100 | [diff] [blame] | 711 | /* Add an X-Forwarded-For header unless the source IP is |
| 712 | * in the 'except' network range. |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 713 | */ |
Christopher Faulet | 5d1def6 | 2021-02-26 09:19:15 +0100 | [diff] [blame] | 714 | if (ipcmp2net(cli_conn->src, &sess->fe->except_xff_net) && |
| 715 | ipcmp2net(cli_conn->src, &s->be->except_xff_net)) { |
| 716 | char pn[INET6_ADDRSTRLEN]; |
Christopher Faulet | d7bdfb1 | 2018-10-24 11:14:34 +0200 | [diff] [blame] | 717 | |
Christopher Faulet | 5d1def6 | 2021-02-26 09:19:15 +0100 | [diff] [blame] | 718 | inet_ntop(AF_INET6, |
| 719 | (const void *)&((struct sockaddr_in6 *)(cli_conn->src))->sin6_addr, |
| 720 | pn, sizeof(pn)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 721 | |
Christopher Faulet | 5d1def6 | 2021-02-26 09:19:15 +0100 | [diff] [blame] | 722 | /* Note: we rely on the backend to get the header name to be used for |
| 723 | * x-forwarded-for, because the header is really meant for the backends. |
| 724 | * However, if the backend did not specify any option, we have to rely |
| 725 | * on the frontend's header name. |
| 726 | */ |
| 727 | chunk_printf(&trash, "%s", pn); |
| 728 | if (unlikely(!http_add_header(htx, hdr, ist2(trash.area, trash.data)))) |
| 729 | goto return_int_err; |
| 730 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 731 | } |
| 732 | } |
| 733 | |
| 734 | /* |
| 735 | * 10: add X-Original-To if either the frontend or the backend |
| 736 | * asks for it. |
| 737 | */ |
| 738 | if ((sess->fe->options | s->be->options) & PR_O_ORGTO) { |
Christopher Faulet | 5d1def6 | 2021-02-26 09:19:15 +0100 | [diff] [blame] | 739 | struct ist hdr = ist2(s->be->orgto_hdr_len ? s->be->orgto_hdr_name : sess->fe->orgto_hdr_name, |
| 740 | s->be->orgto_hdr_len ? s->be->orgto_hdr_len : sess->fe->orgto_hdr_len); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 741 | |
Christopher Faulet | cccded9 | 2021-02-26 12:45:56 +0100 | [diff] [blame] | 742 | if (cli_conn && conn_get_dst(cli_conn) && cli_conn->dst->ss_family == AF_INET) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 743 | /* Add an X-Original-To header unless the destination IP is |
| 744 | * in the 'except' network range. |
| 745 | */ |
Christopher Faulet | 5d1def6 | 2021-02-26 09:19:15 +0100 | [diff] [blame] | 746 | if (ipcmp2net(cli_conn->dst, &sess->fe->except_xot_net) && |
| 747 | ipcmp2net(cli_conn->dst, &s->be->except_xot_net)) { |
Willy Tarreau | a48f4b3 | 2019-07-17 15:11:59 +0200 | [diff] [blame] | 748 | unsigned char *pn = (unsigned char *)&((struct sockaddr_in *)cli_conn->dst)->sin_addr; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 749 | |
| 750 | /* Note: we rely on the backend to get the header name to be used for |
| 751 | * x-original-to, because the header is really meant for the backends. |
| 752 | * However, if the backend did not specify any option, we have to rely |
| 753 | * on the frontend's header name. |
| 754 | */ |
Christopher Faulet | d7bdfb1 | 2018-10-24 11:14:34 +0200 | [diff] [blame] | 755 | chunk_printf(&trash, "%d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]); |
| 756 | if (unlikely(!http_add_header(htx, hdr, ist2(trash.area, trash.data)))) |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 757 | goto return_int_err; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 758 | } |
| 759 | } |
Christopher Faulet | 5d1def6 | 2021-02-26 09:19:15 +0100 | [diff] [blame] | 760 | else if (cli_conn && conn_get_dst(cli_conn) && cli_conn->dst->ss_family == AF_INET6) { |
| 761 | /* Add an X-Original-To header unless the source IP is |
| 762 | * in the 'except' network range. |
| 763 | */ |
| 764 | if (ipcmp2net(cli_conn->dst, &sess->fe->except_xot_net) && |
| 765 | ipcmp2net(cli_conn->dst, &s->be->except_xot_net)) { |
| 766 | char pn[INET6_ADDRSTRLEN]; |
| 767 | |
| 768 | inet_ntop(AF_INET6, |
| 769 | (const void *)&((struct sockaddr_in6 *)(cli_conn->dst))->sin6_addr, |
| 770 | pn, sizeof(pn)); |
| 771 | |
| 772 | /* Note: we rely on the backend to get the header name to be used for |
| 773 | * x-forwarded-for, because the header is really meant for the backends. |
| 774 | * However, if the backend did not specify any option, we have to rely |
| 775 | * on the frontend's header name. |
| 776 | */ |
| 777 | chunk_printf(&trash, "%s", pn); |
| 778 | if (unlikely(!http_add_header(htx, hdr, ist2(trash.area, trash.data)))) |
| 779 | goto return_int_err; |
| 780 | } |
| 781 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 782 | } |
| 783 | |
Christopher Faulet | c2ac5e4 | 2021-03-08 18:20:09 +0100 | [diff] [blame] | 784 | /* Filter the request headers if there are filters attached to the |
| 785 | * stream. |
| 786 | */ |
| 787 | if (HAS_FILTERS(s)) |
| 788 | req->analysers |= AN_REQ_FLT_HTTP_HDRS; |
| 789 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 790 | /* If we have no server assigned yet and we're balancing on url_param |
| 791 | * with a POST request, we may be interested in checking the body for |
| 792 | * that parameter. This will be done in another analyser. |
| 793 | */ |
| 794 | if (!(s->flags & (SF_ASSIGNED|SF_DIRECT)) && |
Willy Tarreau | 089eaa0 | 2019-01-14 15:17:46 +0100 | [diff] [blame] | 795 | s->txn->meth == HTTP_METH_POST && |
| 796 | (s->be->lbprm.algo & BE_LB_ALGO) == BE_LB_ALGO_PH) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 797 | channel_dont_connect(req); |
| 798 | req->analysers |= AN_REQ_HTTP_BODY; |
| 799 | } |
| 800 | |
| 801 | req->analysers &= ~AN_REQ_FLT_XFER_DATA; |
| 802 | req->analysers |= AN_REQ_HTTP_XFER_BODY; |
Willy Tarreau | 1a18b54 | 2018-12-11 16:37:42 +0100 | [diff] [blame] | 803 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 804 | /* We expect some data from the client. Unless we know for sure |
| 805 | * we already have a full request, we have to re-enable quick-ack |
| 806 | * in case we previously disabled it, otherwise we might cause |
| 807 | * the client to delay further data. |
| 808 | */ |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 809 | if ((sess->listener && (sess->listener->options & LI_O_NOQUICKACK)) && !(htx->flags & HTX_FL_EOM)) |
Willy Tarreau | 1a18b54 | 2018-12-11 16:37:42 +0100 | [diff] [blame] | 810 | conn_set_quickack(cli_conn, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 811 | |
| 812 | /************************************************************* |
| 813 | * OK, that's finished for the headers. We have done what we * |
| 814 | * could. Let's switch to the DATA state. * |
| 815 | ************************************************************/ |
| 816 | req->analyse_exp = TICK_ETERNITY; |
| 817 | req->analysers &= ~an_bit; |
| 818 | |
| 819 | s->logs.tv_request = now; |
| 820 | /* OK let's go on with the BODY now */ |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 821 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 822 | return 1; |
| 823 | |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 824 | return_int_err: |
| 825 | txn->status = 500; |
| 826 | if (!(s->flags & SF_ERR_MASK)) |
| 827 | s->flags |= SF_ERR_INTERNAL; |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 828 | _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors); |
Christopher Faulet | cff0f73 | 2019-12-16 16:13:44 +0100 | [diff] [blame] | 829 | if (s->flags & SF_BE_ASSIGNED) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 830 | _HA_ATOMIC_INC(&s->be->be_counters.internal_errors); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 831 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 832 | _HA_ATOMIC_INC(&sess->listener->counters->internal_errors); |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 833 | goto return_prx_cond; |
| 834 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 835 | return_bad_req: /* let's centralize all bad requests */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 836 | txn->status = 400; |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 837 | _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 838 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 839 | _HA_ATOMIC_INC(&sess->listener->counters->failed_req); |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 840 | /* fall through */ |
| 841 | |
| 842 | return_prx_cond: |
| 843 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 844 | |
| 845 | if (!(s->flags & SF_ERR_MASK)) |
| 846 | s->flags |= SF_ERR_PRXCOND; |
| 847 | if (!(s->flags & SF_FINST_MASK)) |
| 848 | s->flags |= SF_FINST_R; |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 849 | |
| 850 | req->analysers &= AN_REQ_FLT_END; |
| 851 | req->analyse_exp = TICK_ETERNITY; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 852 | DBG_TRACE_DEVEL("leaving on error", |
| 853 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 854 | return 0; |
| 855 | } |
| 856 | |
| 857 | /* This function is an analyser which processes the HTTP tarpit. It always |
| 858 | * returns zero, at the beginning because it prevents any other processing |
| 859 | * from occurring, and at the end because it terminates the request. |
| 860 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 861 | int http_process_tarpit(struct stream *s, struct channel *req, int an_bit) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 862 | { |
| 863 | struct http_txn *txn = s->txn; |
| 864 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 865 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, &txn->req); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 866 | /* This connection is being tarpitted. The CLIENT side has |
| 867 | * already set the connect expiration date to the right |
| 868 | * timeout. We just have to check that the client is still |
| 869 | * there and that the timeout has not expired. |
| 870 | */ |
| 871 | channel_dont_connect(req); |
| 872 | if ((req->flags & (CF_SHUTR|CF_READ_ERROR)) == 0 && |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 873 | !tick_is_expired(req->analyse_exp, now_ms)) { |
| 874 | DBG_TRACE_DEVEL("waiting for tarpit timeout expiry", |
| 875 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 876 | return 0; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 877 | } |
| 878 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 879 | |
| 880 | /* We will set the queue timer to the time spent, just for |
| 881 | * logging purposes. We fake a 500 server error, so that the |
| 882 | * attacker will not suspect his connection has been tarpitted. |
| 883 | * It will not cause trouble to the logs because we can exclude |
| 884 | * the tarpitted connections by filtering on the 'PT' status flags. |
| 885 | */ |
| 886 | s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now); |
| 887 | |
Christopher Faulet | 8dfeccf | 2020-05-15 14:16:29 +0200 | [diff] [blame] | 888 | http_reply_and_close(s, txn->status, (!(req->flags & CF_READ_ERROR) ? http_error_message(s) : NULL)); |
Christopher Faulet | 5cb513a | 2020-05-13 17:56:56 +0200 | [diff] [blame] | 889 | |
| 890 | end: |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 891 | req->analysers &= AN_REQ_FLT_END; |
| 892 | req->analyse_exp = TICK_ETERNITY; |
| 893 | |
| 894 | if (!(s->flags & SF_ERR_MASK)) |
| 895 | s->flags |= SF_ERR_PRXCOND; |
| 896 | if (!(s->flags & SF_FINST_MASK)) |
| 897 | s->flags |= SF_FINST_T; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 898 | |
| 899 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 900 | return 0; |
| 901 | } |
| 902 | |
| 903 | /* This function is an analyser which waits for the HTTP request body. It waits |
| 904 | * for either the buffer to be full, or the full advertised contents to have |
| 905 | * reached the buffer. It must only be called after the standard HTTP request |
| 906 | * processing has occurred, because it expects the request to be parsed and will |
| 907 | * look for the Expect header. It may send a 100-Continue interim response. It |
| 908 | * takes in input any state starting from HTTP_MSG_BODY and leaves with one of |
| 909 | * HTTP_MSG_CHK_SIZE, HTTP_MSG_DATA or HTTP_MSG_TRAILERS. It returns zero if it |
| 910 | * needs to read more data, or 1 once it has completed its analysis. |
| 911 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 912 | int http_wait_for_request_body(struct stream *s, struct channel *req, int an_bit) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 913 | { |
| 914 | struct session *sess = s->sess; |
| 915 | struct http_txn *txn = s->txn; |
| 916 | struct http_msg *msg = &s->txn->req; |
| 917 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 918 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg); |
Christopher Faulet | f76ebe8 | 2018-10-24 11:16:22 +0200 | [diff] [blame] | 919 | |
Christopher Faulet | f76ebe8 | 2018-10-24 11:16:22 +0200 | [diff] [blame] | 920 | |
Christopher Faulet | 021a8e4 | 2021-03-29 10:46:38 +0200 | [diff] [blame] | 921 | switch (http_wait_for_msg_body(s, req, s->be->timeout.httpreq, 0)) { |
| 922 | case HTTP_RULE_RES_CONT: |
| 923 | goto http_end; |
| 924 | case HTTP_RULE_RES_YIELD: |
| 925 | goto missing_data_or_waiting; |
| 926 | case HTTP_RULE_RES_BADREQ: |
Willy Tarreau | 4236f03 | 2019-03-05 10:43:32 +0100 | [diff] [blame] | 927 | goto return_bad_req; |
Christopher Faulet | 021a8e4 | 2021-03-29 10:46:38 +0200 | [diff] [blame] | 928 | case HTTP_RULE_RES_ERROR: |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 929 | goto return_int_err; |
Christopher Faulet | 021a8e4 | 2021-03-29 10:46:38 +0200 | [diff] [blame] | 930 | case HTTP_RULE_RES_ABRT: |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 931 | goto return_prx_cond; |
Christopher Faulet | 021a8e4 | 2021-03-29 10:46:38 +0200 | [diff] [blame] | 932 | default: |
| 933 | goto return_int_err; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 934 | } |
| 935 | |
| 936 | http_end: |
| 937 | /* The situation will not evolve, so let's give up on the analysis. */ |
| 938 | s->logs.tv_request = now; /* update the request timer to reflect full request */ |
| 939 | req->analysers &= ~an_bit; |
| 940 | req->analyse_exp = TICK_ETERNITY; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 941 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 942 | return 1; |
| 943 | |
Christopher Faulet | 021a8e4 | 2021-03-29 10:46:38 +0200 | [diff] [blame] | 944 | missing_data_or_waiting: |
| 945 | channel_dont_connect(req); |
| 946 | DBG_TRACE_DEVEL("waiting for more data", |
| 947 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
| 948 | return 0; |
| 949 | |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 950 | return_int_err: |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 951 | txn->status = 500; |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 952 | if (!(s->flags & SF_ERR_MASK)) |
| 953 | s->flags |= SF_ERR_INTERNAL; |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 954 | _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors); |
Christopher Faulet | cff0f73 | 2019-12-16 16:13:44 +0100 | [diff] [blame] | 955 | if (s->flags & SF_BE_ASSIGNED) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 956 | _HA_ATOMIC_INC(&s->be->be_counters.internal_errors); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 957 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 958 | _HA_ATOMIC_INC(&sess->listener->counters->internal_errors); |
Christopher Faulet | 021a8e4 | 2021-03-29 10:46:38 +0200 | [diff] [blame] | 959 | goto return_prx_err; |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 960 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 961 | return_bad_req: /* let's centralize all bad requests */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 962 | txn->status = 400; |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 963 | _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 964 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 965 | _HA_ATOMIC_INC(&sess->listener->counters->failed_req); |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 966 | /* fall through */ |
| 967 | |
Christopher Faulet | 021a8e4 | 2021-03-29 10:46:38 +0200 | [diff] [blame] | 968 | return_prx_err: |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 969 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | 021a8e4 | 2021-03-29 10:46:38 +0200 | [diff] [blame] | 970 | /* fall through */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 971 | |
Christopher Faulet | 021a8e4 | 2021-03-29 10:46:38 +0200 | [diff] [blame] | 972 | return_prx_cond: |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 973 | if (!(s->flags & SF_ERR_MASK)) |
| 974 | s->flags |= SF_ERR_PRXCOND; |
| 975 | if (!(s->flags & SF_FINST_MASK)) |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 976 | s->flags |= (msg->msg_state < HTTP_MSG_DATA ? SF_FINST_R : SF_FINST_D); |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 977 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 978 | req->analysers &= AN_REQ_FLT_END; |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 979 | req->analyse_exp = TICK_ETERNITY; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 980 | DBG_TRACE_DEVEL("leaving on error", |
| 981 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 982 | return 0; |
| 983 | } |
| 984 | |
| 985 | /* This function is an analyser which forwards request body (including chunk |
| 986 | * sizes if any). It is called as soon as we must forward, even if we forward |
| 987 | * zero byte. The only situation where it must not be called is when we're in |
| 988 | * tunnel mode and we want to forward till the close. It's used both to forward |
| 989 | * remaining data and to resync after end of body. It expects the msg_state to |
| 990 | * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to |
| 991 | * read more data, or 1 once we can go on with next request or end the stream. |
| 992 | * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len |
| 993 | * bytes of pending data + the headers if not already done. |
| 994 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 995 | int http_request_forward_body(struct stream *s, struct channel *req, int an_bit) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 996 | { |
| 997 | struct session *sess = s->sess; |
| 998 | struct http_txn *txn = s->txn; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 999 | struct http_msg *msg = &txn->req; |
| 1000 | struct htx *htx; |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1001 | short status = 0; |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 1002 | int ret; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1003 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1004 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1005 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 1006 | htx = htxbuf(&req->buf); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1007 | |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 1008 | if (htx->flags & HTX_FL_PARSING_ERROR) |
| 1009 | goto return_bad_req; |
| 1010 | if (htx->flags & HTX_FL_PROCESSING_ERROR) |
| 1011 | goto return_int_err; |
| 1012 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1013 | if ((req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) || |
| 1014 | ((req->flags & CF_SHUTW) && (req->to_forward || co_data(req)))) { |
| 1015 | /* Output closed while we were sending data. We must abort and |
| 1016 | * wake the other side up. |
Christopher Faulet | f506d96 | 2021-04-27 10:56:28 +0200 | [diff] [blame] | 1017 | * |
| 1018 | * If we have finished to send the request and the response is |
| 1019 | * still in progress, don't catch write error on the request |
| 1020 | * side if it is in fact a read error on the server side. |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1021 | */ |
Christopher Faulet | f506d96 | 2021-04-27 10:56:28 +0200 | [diff] [blame] | 1022 | if (msg->msg_state == HTTP_MSG_DONE && (s->res.flags & CF_READ_ERROR) && s->res.analysers) |
| 1023 | return 0; |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 1024 | |
Olivier Houchard | 29cac3c | 2019-07-12 15:48:58 +0200 | [diff] [blame] | 1025 | /* Don't abort yet if we had L7 retries activated and it |
| 1026 | * was a write error, we may recover. |
| 1027 | */ |
| 1028 | if (!(req->flags & (CF_READ_ERROR | CF_READ_TIMEOUT)) && |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1029 | (s->si[1].flags & SI_FL_L7_RETRY)) { |
| 1030 | DBG_TRACE_DEVEL("leaving on L7 retry", |
| 1031 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn); |
Olivier Houchard | 29cac3c | 2019-07-12 15:48:58 +0200 | [diff] [blame] | 1032 | return 0; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1033 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1034 | msg->msg_state = HTTP_MSG_ERROR; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1035 | http_end_request(s); |
| 1036 | http_end_response(s); |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1037 | DBG_TRACE_DEVEL("leaving on error", |
| 1038 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1039 | return 1; |
| 1040 | } |
| 1041 | |
| 1042 | /* Note that we don't have to send 100-continue back because we don't |
| 1043 | * need the data to complete our job, and it's up to the server to |
| 1044 | * decide whether to return 100, 417 or anything else in return of |
| 1045 | * an "Expect: 100-continue" header. |
| 1046 | */ |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1047 | if (msg->msg_state == HTTP_MSG_BODY) |
| 1048 | msg->msg_state = HTTP_MSG_DATA; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1049 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1050 | /* in most states, we should abort in case of early close */ |
| 1051 | channel_auto_close(req); |
| 1052 | |
| 1053 | if (req->to_forward) { |
Christopher Faulet | 66af0b2 | 2019-03-22 14:54:52 +0100 | [diff] [blame] | 1054 | if (req->to_forward == CHN_INFINITE_FORWARD) { |
Christopher Faulet | 1a3e027 | 2019-11-15 16:31:46 +0100 | [diff] [blame] | 1055 | if (req->flags & CF_EOI) |
| 1056 | msg->msg_state = HTTP_MSG_ENDING; |
Christopher Faulet | 66af0b2 | 2019-03-22 14:54:52 +0100 | [diff] [blame] | 1057 | } |
| 1058 | else { |
| 1059 | /* We can't process the buffer's contents yet */ |
| 1060 | req->flags |= CF_WAKE_WRITE; |
| 1061 | goto missing_data_or_waiting; |
| 1062 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1063 | } |
| 1064 | |
Christopher Faulet | 1a3e027 | 2019-11-15 16:31:46 +0100 | [diff] [blame] | 1065 | if (msg->msg_state >= HTTP_MSG_ENDING) |
| 1066 | goto ending; |
| 1067 | |
| 1068 | if (txn->meth == HTTP_METH_CONNECT) { |
| 1069 | msg->msg_state = HTTP_MSG_ENDING; |
| 1070 | goto ending; |
| 1071 | } |
| 1072 | |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 1073 | /* Forward input data. We get it by removing all outgoing data not |
| 1074 | * forwarded yet from HTX data size. If there are some data filters, we |
| 1075 | * let them decide the amount of data to forward. |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1076 | */ |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 1077 | if (HAS_REQ_DATA_FILTERS(s)) { |
| 1078 | ret = flt_http_payload(s, msg, htx->data); |
| 1079 | if (ret < 0) |
| 1080 | goto return_bad_req; |
Christopher Faulet | 421e769 | 2019-06-13 11:16:45 +0200 | [diff] [blame] | 1081 | c_adv(req, ret); |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 1082 | } |
| 1083 | else { |
Christopher Faulet | 421e769 | 2019-06-13 11:16:45 +0200 | [diff] [blame] | 1084 | c_adv(req, htx->data - co_data(req)); |
Christopher Faulet | 66af0b2 | 2019-03-22 14:54:52 +0100 | [diff] [blame] | 1085 | if (msg->flags & HTTP_MSGF_XFER_LEN) |
| 1086 | channel_htx_forward_forever(req, htx); |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 1087 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1088 | |
Christopher Faulet | 1a3e027 | 2019-11-15 16:31:46 +0100 | [diff] [blame] | 1089 | if (htx->data != co_data(req)) |
| 1090 | goto missing_data_or_waiting; |
Christopher Faulet | d20fdb0 | 2019-06-13 16:43:22 +0200 | [diff] [blame] | 1091 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1092 | /* Check if the end-of-message is reached and if so, switch the message |
Christopher Faulet | d20fdb0 | 2019-06-13 16:43:22 +0200 | [diff] [blame] | 1093 | * in HTTP_MSG_ENDING state. Then if all data was marked to be |
| 1094 | * forwarded, set the state to HTTP_MSG_DONE. |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1095 | */ |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1096 | if (!(htx->flags & HTX_FL_EOM)) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1097 | goto missing_data_or_waiting; |
| 1098 | |
Christopher Faulet | d20fdb0 | 2019-06-13 16:43:22 +0200 | [diff] [blame] | 1099 | msg->msg_state = HTTP_MSG_ENDING; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1100 | |
Christopher Faulet | 1a3e027 | 2019-11-15 16:31:46 +0100 | [diff] [blame] | 1101 | ending: |
Christopher Faulet | 2151cdd | 2020-07-22 16:34:59 +0200 | [diff] [blame] | 1102 | req->flags &= ~CF_EXPECT_MORE; /* no more data are expected */ |
| 1103 | |
Christopher Faulet | 1a3e027 | 2019-11-15 16:31:46 +0100 | [diff] [blame] | 1104 | /* other states, ENDING...TUNNEL */ |
| 1105 | if (msg->msg_state >= HTTP_MSG_DONE) |
| 1106 | goto done; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1107 | |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 1108 | if (HAS_REQ_DATA_FILTERS(s)) { |
| 1109 | ret = flt_http_end(s, msg); |
| 1110 | if (ret <= 0) { |
| 1111 | if (!ret) |
| 1112 | goto missing_data_or_waiting; |
| 1113 | goto return_bad_req; |
| 1114 | } |
| 1115 | } |
| 1116 | |
Christopher Faulet | 1a3e027 | 2019-11-15 16:31:46 +0100 | [diff] [blame] | 1117 | if (txn->meth == HTTP_METH_CONNECT) |
| 1118 | msg->msg_state = HTTP_MSG_TUNNEL; |
| 1119 | else { |
| 1120 | msg->msg_state = HTTP_MSG_DONE; |
| 1121 | req->to_forward = 0; |
Christopher Faulet | 5b82cc5 | 2020-10-12 15:18:50 +0200 | [diff] [blame] | 1122 | |
| 1123 | if ((s->be->retry_type &~ PR_RE_CONN_FAILED) && !(s->si[1].flags & SI_FL_D_L7_RETRY)) { |
| 1124 | struct stream_interface *si = &s->si[1]; |
| 1125 | |
| 1126 | /* If we want to be able to do L7 retries, copy the |
| 1127 | * request, so that we are able to resend them if |
| 1128 | * needed. |
| 1129 | * |
| 1130 | * Try to allocate a buffer if we had none. If it |
| 1131 | * fails, the next test will just disable the l7 |
| 1132 | * retries. |
| 1133 | */ |
| 1134 | DBG_TRACE_STATE("enable L7 retry, save the request", STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
| 1135 | si->flags |= SI_FL_L7_RETRY; |
Willy Tarreau | f499f50 | 2021-03-22 16:17:37 +0100 | [diff] [blame] | 1136 | if (b_alloc(&si->l7_buffer) == NULL) |
Christopher Faulet | 5b82cc5 | 2020-10-12 15:18:50 +0200 | [diff] [blame] | 1137 | si->flags &= ~SI_FL_L7_RETRY; |
| 1138 | else { |
| 1139 | memcpy(b_orig(&si->l7_buffer), b_orig(&req->buf), b_size(&req->buf)); |
| 1140 | b_add(&si->l7_buffer, co_data(req)); |
| 1141 | } |
| 1142 | } |
Christopher Faulet | 1a3e027 | 2019-11-15 16:31:46 +0100 | [diff] [blame] | 1143 | } |
| 1144 | |
| 1145 | done: |
| 1146 | /* we don't want to forward closes on DONE except in tunnel mode. */ |
| 1147 | if (!(txn->flags & TX_CON_WANT_TUN)) |
| 1148 | channel_dont_close(req); |
| 1149 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1150 | http_end_request(s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1151 | if (!(req->analysers & an_bit)) { |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1152 | http_end_response(s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1153 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) { |
| 1154 | if (req->flags & CF_SHUTW) { |
| 1155 | /* request errors are most likely due to the |
| 1156 | * server aborting the transfer. */ |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1157 | goto return_srv_abort; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1158 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1159 | goto return_bad_req; |
| 1160 | } |
Christopher Faulet | 5b82cc5 | 2020-10-12 15:18:50 +0200 | [diff] [blame] | 1161 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1162 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1163 | return 1; |
| 1164 | } |
| 1165 | |
| 1166 | /* If "option abortonclose" is set on the backend, we want to monitor |
| 1167 | * the client's connection and forward any shutdown notification to the |
| 1168 | * server, which will decide whether to close or to go on processing the |
| 1169 | * request. We only do that in tunnel mode, and not in other modes since |
| 1170 | * it can be abused to exhaust source ports. */ |
Christopher Faulet | 769d0e9 | 2019-03-22 14:23:18 +0100 | [diff] [blame] | 1171 | if (s->be->options & PR_O_ABRT_CLOSE) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1172 | channel_auto_read(req); |
Christopher Faulet | c41547b | 2019-07-16 14:32:23 +0200 | [diff] [blame] | 1173 | if ((req->flags & (CF_SHUTR|CF_READ_NULL)) && !(txn->flags & TX_CON_WANT_TUN)) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1174 | s->si[1].flags |= SI_FL_NOLINGER; |
| 1175 | channel_auto_close(req); |
| 1176 | } |
| 1177 | else if (s->txn->meth == HTTP_METH_POST) { |
| 1178 | /* POST requests may require to read extra CRLF sent by broken |
| 1179 | * browsers and which could cause an RST to be sent upon close |
| 1180 | * on some systems (eg: Linux). */ |
| 1181 | channel_auto_read(req); |
| 1182 | } |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1183 | DBG_TRACE_DEVEL("waiting for the end of the HTTP txn", |
| 1184 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1185 | return 0; |
| 1186 | |
| 1187 | missing_data_or_waiting: |
| 1188 | /* stop waiting for data if the input is closed before the end */ |
Christopher Faulet | d20fdb0 | 2019-06-13 16:43:22 +0200 | [diff] [blame] | 1189 | if (msg->msg_state < HTTP_MSG_ENDING && req->flags & CF_SHUTR) |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1190 | goto return_cli_abort; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1191 | |
| 1192 | waiting: |
| 1193 | /* waiting for the last bits to leave the buffer */ |
| 1194 | if (req->flags & CF_SHUTW) |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1195 | goto return_srv_abort; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1196 | |
| 1197 | /* When TE: chunked is used, we need to get there again to parse remaining |
| 1198 | * chunks even if the client has closed, so we don't want to set CF_DONTCLOSE. |
| 1199 | * And when content-length is used, we never want to let the possible |
| 1200 | * shutdown be forwarded to the other side, as the state machine will |
| 1201 | * take care of it once the client responds. It's also important to |
| 1202 | * prevent TIME_WAITs from accumulating on the backend side, and for |
| 1203 | * HTTP/2 where the last frame comes with a shutdown. |
| 1204 | */ |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1205 | if (msg->flags & HTTP_MSGF_XFER_LEN) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1206 | channel_dont_close(req); |
| 1207 | |
| 1208 | /* We know that more data are expected, but we couldn't send more that |
| 1209 | * what we did. So we always set the CF_EXPECT_MORE flag so that the |
| 1210 | * system knows it must not set a PUSH on this first part. Interactive |
| 1211 | * modes are already handled by the stream sock layer. We must not do |
| 1212 | * this in content-length mode because it could present the MSG_MORE |
| 1213 | * flag with the last block of forwarded data, which would cause an |
| 1214 | * additional delay to be observed by the receiver. |
| 1215 | */ |
Christopher Faulet | 2151cdd | 2020-07-22 16:34:59 +0200 | [diff] [blame] | 1216 | if (HAS_REQ_DATA_FILTERS(s)) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1217 | req->flags |= CF_EXPECT_MORE; |
| 1218 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1219 | DBG_TRACE_DEVEL("waiting for more data to forward", |
| 1220 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1221 | return 0; |
| 1222 | |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1223 | return_cli_abort: |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1224 | _HA_ATOMIC_INC(&sess->fe->fe_counters.cli_aborts); |
| 1225 | _HA_ATOMIC_INC(&s->be->be_counters.cli_aborts); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 1226 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1227 | _HA_ATOMIC_INC(&sess->listener->counters->cli_aborts); |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1228 | if (objt_server(s->target)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1229 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.cli_aborts); |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1230 | if (!(s->flags & SF_ERR_MASK)) |
| 1231 | s->flags |= SF_ERR_CLICL; |
| 1232 | status = 400; |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 1233 | goto return_prx_cond; |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1234 | |
| 1235 | return_srv_abort: |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1236 | _HA_ATOMIC_INC(&sess->fe->fe_counters.srv_aborts); |
| 1237 | _HA_ATOMIC_INC(&s->be->be_counters.srv_aborts); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 1238 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1239 | _HA_ATOMIC_INC(&sess->listener->counters->srv_aborts); |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1240 | if (objt_server(s->target)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1241 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.srv_aborts); |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1242 | if (!(s->flags & SF_ERR_MASK)) |
| 1243 | s->flags |= SF_ERR_SRVCL; |
| 1244 | status = 502; |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 1245 | goto return_prx_cond; |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1246 | |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 1247 | return_int_err: |
| 1248 | if (!(s->flags & SF_ERR_MASK)) |
| 1249 | s->flags |= SF_ERR_INTERNAL; |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1250 | _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors); |
| 1251 | _HA_ATOMIC_INC(&s->be->be_counters.internal_errors); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 1252 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1253 | _HA_ATOMIC_INC(&sess->listener->counters->internal_errors); |
Christopher Faulet | cff0f73 | 2019-12-16 16:13:44 +0100 | [diff] [blame] | 1254 | if (objt_server(s->target)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1255 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.internal_errors); |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 1256 | status = 500; |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 1257 | goto return_prx_cond; |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 1258 | |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1259 | return_bad_req: |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1260 | _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 1261 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1262 | _HA_ATOMIC_INC(&sess->listener->counters->failed_req); |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1263 | status = 400; |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 1264 | /* fall through */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1265 | |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 1266 | return_prx_cond: |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1267 | if (txn->status > 0) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1268 | /* Note: we don't send any error if some data were already sent */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1269 | http_reply_and_close(s, txn->status, NULL); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1270 | } else { |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1271 | txn->status = status; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1272 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1273 | } |
| 1274 | req->analysers &= AN_REQ_FLT_END; |
| 1275 | s->res.analysers &= AN_RES_FLT_END; /* we're in data phase, we want to abort both directions */ |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 1276 | if (!(s->flags & SF_ERR_MASK)) |
| 1277 | s->flags |= SF_ERR_PRXCOND; |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1278 | if (!(s->flags & SF_FINST_MASK)) |
| 1279 | s->flags |= ((txn->rsp.msg_state < HTTP_MSG_ERROR) ? SF_FINST_H : SF_FINST_D); |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1280 | DBG_TRACE_DEVEL("leaving on error ", |
| 1281 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1282 | return 0; |
| 1283 | } |
| 1284 | |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1285 | /* Reset the stream and the backend stream_interface to a situation suitable for attemption connection */ |
| 1286 | /* Returns 0 if we can attempt to retry, -1 otherwise */ |
| 1287 | static __inline int do_l7_retry(struct stream *s, struct stream_interface *si) |
| 1288 | { |
Christopher Faulet | 5b82cc5 | 2020-10-12 15:18:50 +0200 | [diff] [blame] | 1289 | struct channel *req = &s->req; |
| 1290 | struct channel *res = &s->res; |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1291 | |
| 1292 | si->conn_retries--; |
| 1293 | if (si->conn_retries < 0) |
Christopher Faulet | 5b82cc5 | 2020-10-12 15:18:50 +0200 | [diff] [blame] | 1294 | goto no_retry; |
| 1295 | |
| 1296 | if (b_is_null(&req->buf) && !channel_alloc_buffer(req, &s->buffer_wait)) |
| 1297 | goto no_retry; |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1298 | |
Christopher Faulet | e763c8c | 2021-05-05 18:23:59 +0200 | [diff] [blame] | 1299 | if (objt_server(s->target)) { |
| 1300 | if (s->flags & SF_CURR_SESS) { |
| 1301 | s->flags &= ~SF_CURR_SESS; |
| 1302 | _HA_ATOMIC_DEC(&__objt_server(s->target)->cur_sess); |
| 1303 | } |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1304 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.retries); |
Christopher Faulet | e763c8c | 2021-05-05 18:23:59 +0200 | [diff] [blame] | 1305 | } |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1306 | _HA_ATOMIC_INC(&s->be->be_counters.retries); |
Willy Tarreau | 223995e | 2019-05-04 10:38:31 +0200 | [diff] [blame] | 1307 | |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1308 | /* Remove any write error from the request, and read error from the response */ |
| 1309 | req->flags &= ~(CF_WRITE_ERROR | CF_WRITE_TIMEOUT | CF_SHUTW | CF_SHUTW_NOW); |
| 1310 | res->flags &= ~(CF_READ_ERROR | CF_READ_TIMEOUT | CF_SHUTR | CF_EOI | CF_READ_NULL | CF_SHUTR_NOW); |
| 1311 | res->analysers = 0; |
| 1312 | si->flags &= ~(SI_FL_ERR | SI_FL_EXP | SI_FL_RXBLK_SHUT); |
Christopher Faulet | 30aa0da | 2021-05-05 21:05:09 +0200 | [diff] [blame] | 1313 | si->err_type = SI_ET_NONE; |
| 1314 | s->flags &= ~(SF_ERR_MASK | SF_FINST_MASK); |
Olivier Houchard | 4bd5867 | 2019-07-12 16:16:59 +0200 | [diff] [blame] | 1315 | stream_choose_redispatch(s); |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1316 | si->exp = TICK_ETERNITY; |
| 1317 | res->rex = TICK_ETERNITY; |
| 1318 | res->to_forward = 0; |
| 1319 | res->analyse_exp = TICK_ETERNITY; |
| 1320 | res->total = 0; |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1321 | si_release_endpoint(&s->si[1]); |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1322 | |
Christopher Faulet | 5b82cc5 | 2020-10-12 15:18:50 +0200 | [diff] [blame] | 1323 | b_reset(&req->buf); |
| 1324 | memcpy(b_orig(&req->buf), b_orig(&si->l7_buffer), b_size(&si->l7_buffer)); |
| 1325 | b_set_data(&req->buf, b_size(&req->buf)); |
| 1326 | co_set_data(req, b_data(&si->l7_buffer)); |
| 1327 | |
Ilya Shipitsin | acf8459 | 2021-02-06 22:29:08 +0500 | [diff] [blame] | 1328 | DBG_TRACE_DEVEL("perform a L7 retry", STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, s->txn); |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1329 | b_reset(&res->buf); |
| 1330 | co_set_data(res, 0); |
| 1331 | return 0; |
Christopher Faulet | 5b82cc5 | 2020-10-12 15:18:50 +0200 | [diff] [blame] | 1332 | |
| 1333 | no_retry: |
| 1334 | b_free(&si->l7_buffer); |
| 1335 | return -1; |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1336 | } |
| 1337 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1338 | /* This stream analyser waits for a complete HTTP response. It returns 1 if the |
| 1339 | * processing can continue on next analysers, or zero if it either needs more |
| 1340 | * data or wants to immediately abort the response (eg: timeout, error, ...). It |
| 1341 | * is tied to AN_RES_WAIT_HTTP and may may remove itself from s->res.analysers |
| 1342 | * when it has nothing left to do, and may remove any analyser when it wants to |
| 1343 | * abort. |
| 1344 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1345 | int http_wait_for_response(struct stream *s, struct channel *rep, int an_bit) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1346 | { |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1347 | /* |
| 1348 | * We will analyze a complete HTTP response to check the its syntax. |
| 1349 | * |
| 1350 | * Once the start line and all headers are received, we may perform a |
| 1351 | * capture of the error (if any), and we will set a few fields. We also |
| 1352 | * logging and finally headers capture. |
| 1353 | */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1354 | struct session *sess = s->sess; |
| 1355 | struct http_txn *txn = s->txn; |
| 1356 | struct http_msg *msg = &txn->rsp; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1357 | struct htx *htx; |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1358 | struct stream_interface *si_b = &s->si[1]; |
Christopher Faulet | 6160832 | 2018-11-23 16:23:45 +0100 | [diff] [blame] | 1359 | struct connection *srv_conn; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 1360 | struct htx_sl *sl; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1361 | int n; |
| 1362 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1363 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1364 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 1365 | htx = htxbuf(&rep->buf); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1366 | |
Willy Tarreau | 4236f03 | 2019-03-05 10:43:32 +0100 | [diff] [blame] | 1367 | /* Parsing errors are caught here */ |
| 1368 | if (htx->flags & HTX_FL_PARSING_ERROR) |
| 1369 | goto return_bad_res; |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 1370 | if (htx->flags & HTX_FL_PROCESSING_ERROR) |
| 1371 | goto return_int_err; |
Willy Tarreau | 4236f03 | 2019-03-05 10:43:32 +0100 | [diff] [blame] | 1372 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1373 | /* |
| 1374 | * Now we quickly check if we have found a full valid response. |
| 1375 | * If not so, we check the FD and buffer states before leaving. |
| 1376 | * A full response is indicated by the fact that we have seen |
| 1377 | * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid |
| 1378 | * responses are checked first. |
| 1379 | * |
| 1380 | * Depending on whether the client is still there or not, we |
| 1381 | * may send an error response back or not. Note that normally |
| 1382 | * we should only check for HTTP status there, and check I/O |
| 1383 | * errors somewhere else. |
| 1384 | */ |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 1385 | next_one: |
Christopher Faulet | 29f1758 | 2019-05-23 11:03:26 +0200 | [diff] [blame] | 1386 | if (unlikely(htx_is_empty(htx) || htx->first == -1)) { |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1387 | /* 1: have we encountered a read error ? */ |
| 1388 | if (rep->flags & CF_READ_ERROR) { |
Olivier Houchard | 865d839 | 2019-05-03 22:46:27 +0200 | [diff] [blame] | 1389 | struct connection *conn = NULL; |
| 1390 | |
Olivier Houchard | 865d839 | 2019-05-03 22:46:27 +0200 | [diff] [blame] | 1391 | if (objt_cs(s->si[1].end)) |
| 1392 | conn = objt_cs(s->si[1].end)->conn; |
| 1393 | |
| 1394 | if (si_b->flags & SI_FL_L7_RETRY && |
| 1395 | (!conn || conn->err_code != CO_ER_SSL_EARLY_FAILED)) { |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1396 | /* If we arrive here, then CF_READ_ERROR was |
| 1397 | * set by si_cs_recv() because we matched a |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 1398 | * status, otherwise it would have removed |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1399 | * the SI_FL_L7_RETRY flag, so it's ok not |
| 1400 | * to check s->be->retry_type. |
| 1401 | */ |
Christopher Faulet | 5b82cc5 | 2020-10-12 15:18:50 +0200 | [diff] [blame] | 1402 | if (co_data(rep) || do_l7_retry(s, si_b) == 0) { |
| 1403 | DBG_TRACE_DEVEL("leaving on L7 retry", |
| 1404 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1405 | return 0; |
Christopher Faulet | 5b82cc5 | 2020-10-12 15:18:50 +0200 | [diff] [blame] | 1406 | } |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1407 | } |
| 1408 | |
Olivier Houchard | 6db1699 | 2019-05-17 15:40:49 +0200 | [diff] [blame] | 1409 | if (txn->flags & TX_NOT_FIRST) |
| 1410 | goto abort_keep_alive; |
| 1411 | |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1412 | _HA_ATOMIC_INC(&s->be->be_counters.failed_resp); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1413 | if (objt_server(s->target)) { |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1414 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_resp); |
Willy Tarreau | b54c40a | 2018-12-02 19:28:41 +0100 | [diff] [blame] | 1415 | health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_READ_ERROR); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1416 | } |
| 1417 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1418 | rep->analysers &= AN_RES_FLT_END; |
| 1419 | txn->status = 502; |
| 1420 | |
| 1421 | /* Check to see if the server refused the early data. |
| 1422 | * If so, just send a 425 |
| 1423 | */ |
Willy Tarreau | ee99aaf | 2020-06-23 05:58:20 +0200 | [diff] [blame] | 1424 | if (conn && conn->err_code == CO_ER_SSL_EARLY_FAILED) { |
Olivier Houchard | 865d839 | 2019-05-03 22:46:27 +0200 | [diff] [blame] | 1425 | if ((s->be->retry_type & PR_RE_EARLY_ERROR) && |
Olivier Houchard | ad26d8d | 2019-05-10 17:48:28 +0200 | [diff] [blame] | 1426 | (si_b->flags & SI_FL_L7_RETRY) && |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1427 | do_l7_retry(s, si_b) == 0) { |
| 1428 | DBG_TRACE_DEVEL("leaving on L7 retry", |
| 1429 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Olivier Houchard | 865d839 | 2019-05-03 22:46:27 +0200 | [diff] [blame] | 1430 | return 0; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1431 | } |
Olivier Houchard | 865d839 | 2019-05-03 22:46:27 +0200 | [diff] [blame] | 1432 | txn->status = 425; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1433 | } |
Willy Tarreau | 826f3ab | 2021-02-10 12:07:15 +0100 | [diff] [blame] | 1434 | else |
| 1435 | stream_inc_http_fail_ctr(s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1436 | |
| 1437 | s->si[1].flags |= SI_FL_NOLINGER; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1438 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1439 | |
| 1440 | if (!(s->flags & SF_ERR_MASK)) |
| 1441 | s->flags |= SF_ERR_SRVCL; |
| 1442 | if (!(s->flags & SF_FINST_MASK)) |
| 1443 | s->flags |= SF_FINST_H; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1444 | DBG_TRACE_DEVEL("leaving on error", |
| 1445 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1446 | return 0; |
| 1447 | } |
| 1448 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1449 | /* 2: read timeout : return a 504 to the client. */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1450 | else if (rep->flags & CF_READ_TIMEOUT) { |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1451 | if ((si_b->flags & SI_FL_L7_RETRY) && |
| 1452 | (s->be->retry_type & PR_RE_TIMEOUT)) { |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1453 | if (co_data(rep) || do_l7_retry(s, si_b) == 0) { |
| 1454 | DBG_TRACE_DEVEL("leaving on L7 retry", |
| 1455 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1456 | return 0; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1457 | } |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1458 | } |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1459 | _HA_ATOMIC_INC(&s->be->be_counters.failed_resp); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1460 | if (objt_server(s->target)) { |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1461 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_resp); |
Willy Tarreau | b54c40a | 2018-12-02 19:28:41 +0100 | [diff] [blame] | 1462 | health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_READ_TIMEOUT); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1463 | } |
| 1464 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1465 | rep->analysers &= AN_RES_FLT_END; |
| 1466 | txn->status = 504; |
Willy Tarreau | 826f3ab | 2021-02-10 12:07:15 +0100 | [diff] [blame] | 1467 | stream_inc_http_fail_ctr(s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1468 | s->si[1].flags |= SI_FL_NOLINGER; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1469 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1470 | |
| 1471 | if (!(s->flags & SF_ERR_MASK)) |
| 1472 | s->flags |= SF_ERR_SRVTO; |
| 1473 | if (!(s->flags & SF_FINST_MASK)) |
| 1474 | s->flags |= SF_FINST_H; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1475 | DBG_TRACE_DEVEL("leaving on error", |
| 1476 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1477 | return 0; |
| 1478 | } |
| 1479 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1480 | /* 3: client abort with an abortonclose */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1481 | else if ((rep->flags & CF_SHUTR) && ((s->req.flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))) { |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1482 | _HA_ATOMIC_INC(&sess->fe->fe_counters.cli_aborts); |
| 1483 | _HA_ATOMIC_INC(&s->be->be_counters.cli_aborts); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 1484 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1485 | _HA_ATOMIC_INC(&sess->listener->counters->cli_aborts); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1486 | if (objt_server(s->target)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1487 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.cli_aborts); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1488 | |
| 1489 | rep->analysers &= AN_RES_FLT_END; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1490 | txn->status = 400; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1491 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1492 | |
| 1493 | if (!(s->flags & SF_ERR_MASK)) |
| 1494 | s->flags |= SF_ERR_CLICL; |
| 1495 | if (!(s->flags & SF_FINST_MASK)) |
| 1496 | s->flags |= SF_FINST_H; |
| 1497 | |
| 1498 | /* process_stream() will take care of the error */ |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1499 | DBG_TRACE_DEVEL("leaving on error", |
| 1500 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1501 | return 0; |
| 1502 | } |
| 1503 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1504 | /* 4: close from server, capture the response if the server has started to respond */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1505 | else if (rep->flags & CF_SHUTR) { |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1506 | if ((si_b->flags & SI_FL_L7_RETRY) && |
| 1507 | (s->be->retry_type & PR_RE_DISCONNECTED)) { |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1508 | if (co_data(rep) || do_l7_retry(s, si_b) == 0) { |
| 1509 | DBG_TRACE_DEVEL("leaving on L7 retry", |
| 1510 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1511 | return 0; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1512 | } |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1513 | } |
| 1514 | |
Olivier Houchard | 6db1699 | 2019-05-17 15:40:49 +0200 | [diff] [blame] | 1515 | if (txn->flags & TX_NOT_FIRST) |
| 1516 | goto abort_keep_alive; |
| 1517 | |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1518 | _HA_ATOMIC_INC(&s->be->be_counters.failed_resp); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1519 | if (objt_server(s->target)) { |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1520 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_resp); |
Willy Tarreau | b54c40a | 2018-12-02 19:28:41 +0100 | [diff] [blame] | 1521 | health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_BROKEN_PIPE); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1522 | } |
| 1523 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1524 | rep->analysers &= AN_RES_FLT_END; |
| 1525 | txn->status = 502; |
Willy Tarreau | 826f3ab | 2021-02-10 12:07:15 +0100 | [diff] [blame] | 1526 | stream_inc_http_fail_ctr(s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1527 | s->si[1].flags |= SI_FL_NOLINGER; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1528 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1529 | |
| 1530 | if (!(s->flags & SF_ERR_MASK)) |
| 1531 | s->flags |= SF_ERR_SRVCL; |
| 1532 | if (!(s->flags & SF_FINST_MASK)) |
| 1533 | s->flags |= SF_FINST_H; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1534 | DBG_TRACE_DEVEL("leaving on error", |
| 1535 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1536 | return 0; |
| 1537 | } |
| 1538 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1539 | /* 5: write error to client (we don't send any message then) */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1540 | else if (rep->flags & CF_WRITE_ERROR) { |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1541 | if (txn->flags & TX_NOT_FIRST) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1542 | goto abort_keep_alive; |
| 1543 | |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1544 | _HA_ATOMIC_INC(&s->be->be_counters.failed_resp); |
Christopher Faulet | cff0f73 | 2019-12-16 16:13:44 +0100 | [diff] [blame] | 1545 | if (objt_server(s->target)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1546 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_resp); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1547 | rep->analysers &= AN_RES_FLT_END; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1548 | |
| 1549 | if (!(s->flags & SF_ERR_MASK)) |
| 1550 | s->flags |= SF_ERR_CLICL; |
| 1551 | if (!(s->flags & SF_FINST_MASK)) |
| 1552 | s->flags |= SF_FINST_H; |
| 1553 | |
| 1554 | /* process_stream() will take care of the error */ |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1555 | DBG_TRACE_DEVEL("leaving on error", |
| 1556 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1557 | return 0; |
| 1558 | } |
| 1559 | |
| 1560 | channel_dont_close(rep); |
| 1561 | rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */ |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1562 | DBG_TRACE_DEVEL("waiting for more data", |
| 1563 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1564 | return 0; |
| 1565 | } |
| 1566 | |
| 1567 | /* More interesting part now : we know that we have a complete |
| 1568 | * response which at least looks like HTTP. We have an indicator |
| 1569 | * of each header's length, so we can parse them quickly. |
| 1570 | */ |
Christopher Faulet | 29f1758 | 2019-05-23 11:03:26 +0200 | [diff] [blame] | 1571 | BUG_ON(htx_get_first_type(htx) != HTX_BLK_RES_SL); |
Christopher Faulet | 297fbb4 | 2019-05-13 14:41:27 +0200 | [diff] [blame] | 1572 | sl = http_get_stline(htx); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1573 | |
Christopher Faulet | 5b82cc5 | 2020-10-12 15:18:50 +0200 | [diff] [blame] | 1574 | if ((si_b->flags & SI_FL_L7_RETRY) && |
| 1575 | l7_status_match(s->be, sl->info.res.status) && |
| 1576 | do_l7_retry(s, si_b) == 0) { |
| 1577 | DBG_TRACE_DEVEL("leaving on L7 retry", STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
| 1578 | return 0; |
| 1579 | } |
| 1580 | b_free(&s->si[1].l7_buffer); |
| 1581 | |
| 1582 | msg->msg_state = HTTP_MSG_BODY; |
| 1583 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1584 | /* 0: we might have to print this header in debug mode */ |
| 1585 | if (unlikely((global.mode & MODE_DEBUG) && |
| 1586 | (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) { |
| 1587 | int32_t pos; |
| 1588 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1589 | http_debug_stline("srvrep", s, sl); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1590 | |
Christopher Faulet | a3f1550 | 2019-05-13 15:27:23 +0200 | [diff] [blame] | 1591 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1592 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 1593 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 1594 | |
| 1595 | if (type == HTX_BLK_EOH) |
| 1596 | break; |
| 1597 | if (type != HTX_BLK_HDR) |
| 1598 | continue; |
| 1599 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1600 | http_debug_hdr("srvhdr", s, |
| 1601 | htx_get_blk_name(htx, blk), |
| 1602 | htx_get_blk_value(htx, blk)); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1603 | } |
| 1604 | } |
| 1605 | |
Christopher Faulet | 0359911 | 2018-11-27 11:21:21 +0100 | [diff] [blame] | 1606 | /* 1: get the status code and the version. Also set HTTP flags */ |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 1607 | txn->status = sl->info.res.status; |
Christopher Faulet | 0359911 | 2018-11-27 11:21:21 +0100 | [diff] [blame] | 1608 | if (sl->flags & HTX_SL_F_VER_11) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1609 | msg->flags |= HTTP_MSGF_VER_11; |
Christopher Faulet | 0359911 | 2018-11-27 11:21:21 +0100 | [diff] [blame] | 1610 | if (sl->flags & HTX_SL_F_XFER_LEN) { |
| 1611 | msg->flags |= HTTP_MSGF_XFER_LEN; |
Christopher Faulet | 2a40854 | 2020-11-20 14:22:37 +0100 | [diff] [blame] | 1612 | if (sl->flags & HTX_SL_F_CLEN) |
| 1613 | msg->flags |= HTTP_MSGF_CNT_LEN; |
| 1614 | else if (sl->flags & HTX_SL_F_CHNK) |
| 1615 | msg->flags |= HTTP_MSGF_TE_CHNK; |
Christopher Faulet | 0359911 | 2018-11-27 11:21:21 +0100 | [diff] [blame] | 1616 | } |
Christopher Faulet | 2a40854 | 2020-11-20 14:22:37 +0100 | [diff] [blame] | 1617 | if (sl->flags & HTX_SL_F_BODYLESS) |
| 1618 | msg->flags |= HTTP_MSGF_BODYLESS; |
Christopher Faulet | 576c358 | 2021-01-08 15:53:01 +0100 | [diff] [blame] | 1619 | if (sl->flags & HTX_SL_F_CONN_UPG) |
| 1620 | msg->flags |= HTTP_MSGF_CONN_UPG; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1621 | |
| 1622 | n = txn->status / 100; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1623 | if (n < 1 || n > 5) |
| 1624 | n = 0; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1625 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1626 | /* when the client triggers a 4xx from the server, it's most often due |
| 1627 | * to a missing object or permission. These events should be tracked |
| 1628 | * because if they happen often, it may indicate a brute force or a |
| 1629 | * vulnerability scan. |
| 1630 | */ |
| 1631 | if (n == 4) |
| 1632 | stream_inc_http_err_ctr(s); |
| 1633 | |
Willy Tarreau | 826f3ab | 2021-02-10 12:07:15 +0100 | [diff] [blame] | 1634 | if (n == 5 && txn->status != 501 && txn->status != 505) |
| 1635 | stream_inc_http_fail_ctr(s); |
| 1636 | |
Marcin Deranek | 3c27dda | 2020-05-15 18:32:51 +0200 | [diff] [blame] | 1637 | if (objt_server(s->target)) { |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1638 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.p.http.rsp[n]); |
| 1639 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.p.http.cum_req); |
Marcin Deranek | 3c27dda | 2020-05-15 18:32:51 +0200 | [diff] [blame] | 1640 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1641 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1642 | /* Adjust server's health based on status code. Note: status codes 501 |
| 1643 | * and 505 are triggered on demand by client request, so we must not |
| 1644 | * count them as server failures. |
| 1645 | */ |
| 1646 | if (objt_server(s->target)) { |
| 1647 | if (txn->status >= 100 && (txn->status < 500 || txn->status == 501 || txn->status == 505)) |
Willy Tarreau | b54c40a | 2018-12-02 19:28:41 +0100 | [diff] [blame] | 1648 | health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_OK); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1649 | else |
Willy Tarreau | b54c40a | 2018-12-02 19:28:41 +0100 | [diff] [blame] | 1650 | health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_STS); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1651 | } |
| 1652 | |
| 1653 | /* |
| 1654 | * We may be facing a 100-continue response, or any other informational |
| 1655 | * 1xx response which is non-final, in which case this is not the right |
| 1656 | * response, and we're waiting for the next one. Let's allow this response |
| 1657 | * to go to the client and wait for the next one. There's an exception for |
| 1658 | * 101 which is used later in the code to switch protocols. |
| 1659 | */ |
| 1660 | if (txn->status < 200 && |
| 1661 | (txn->status == 100 || txn->status >= 102)) { |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 1662 | FLT_STRM_CB(s, flt_http_reset(s, msg)); |
Christopher Faulet | 421e769 | 2019-06-13 11:16:45 +0200 | [diff] [blame] | 1663 | htx->first = channel_htx_fwd_headers(rep, htx); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1664 | msg->msg_state = HTTP_MSG_RPBEFORE; |
Christopher Faulet | 3499f62 | 2019-09-03 15:23:54 +0200 | [diff] [blame] | 1665 | msg->flags = 0; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1666 | txn->status = 0; |
| 1667 | s->logs.t_data = -1; /* was not a response yet */ |
Christopher Faulet | 7d51845 | 2020-08-31 11:07:07 +0200 | [diff] [blame] | 1668 | rep->flags |= CF_SEND_DONTWAIT; /* Send ASAP informational messages */ |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 1669 | goto next_one; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1670 | } |
| 1671 | |
Christopher Faulet | 6e6c7b1 | 2021-01-08 16:02:05 +0100 | [diff] [blame] | 1672 | /* A 101-switching-protocols must contains a Connection header with the |
| 1673 | * "upgrade" option and the request too. It means both are agree to |
| 1674 | * upgrade. It is not so strict because there is no test on the Upgrade |
| 1675 | * header content. But it is probably stronger enough for now. |
| 1676 | */ |
| 1677 | if (txn->status == 101 && |
| 1678 | (!(txn->req.flags & HTTP_MSGF_CONN_UPG) || !(txn->rsp.flags & HTTP_MSGF_CONN_UPG))) |
| 1679 | goto return_bad_res; |
| 1680 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1681 | /* |
| 1682 | * 2: check for cacheability. |
| 1683 | */ |
| 1684 | |
| 1685 | switch (txn->status) { |
| 1686 | case 200: |
| 1687 | case 203: |
| 1688 | case 204: |
| 1689 | case 206: |
| 1690 | case 300: |
| 1691 | case 301: |
| 1692 | case 404: |
| 1693 | case 405: |
| 1694 | case 410: |
| 1695 | case 414: |
| 1696 | case 501: |
| 1697 | break; |
| 1698 | default: |
| 1699 | /* RFC7231#6.1: |
| 1700 | * Responses with status codes that are defined as |
| 1701 | * cacheable by default (e.g., 200, 203, 204, 206, |
| 1702 | * 300, 301, 404, 405, 410, 414, and 501 in this |
| 1703 | * specification) can be reused by a cache with |
| 1704 | * heuristic expiration unless otherwise indicated |
| 1705 | * by the method definition or explicit cache |
| 1706 | * controls [RFC7234]; all other status codes are |
| 1707 | * not cacheable by default. |
| 1708 | */ |
| 1709 | txn->flags &= ~(TX_CACHEABLE | TX_CACHE_COOK); |
| 1710 | break; |
| 1711 | } |
| 1712 | |
| 1713 | /* |
| 1714 | * 3: we may need to capture headers |
| 1715 | */ |
| 1716 | s->logs.logwait &= ~LW_RESP; |
| 1717 | if (unlikely((s->logs.logwait & LW_RSPHDR) && s->res_cap)) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1718 | http_capture_headers(htx, s->res_cap, sess->fe->rsp_cap); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1719 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1720 | /* Skip parsing if no content length is possible. */ |
Christopher Faulet | c75668e | 2020-12-07 18:10:32 +0100 | [diff] [blame] | 1721 | if (unlikely((txn->meth == HTTP_METH_CONNECT && txn->status >= 200 && txn->status < 300) || |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1722 | txn->status == 101)) { |
| 1723 | /* Either we've established an explicit tunnel, or we're |
| 1724 | * switching the protocol. In both cases, we're very unlikely |
| 1725 | * to understand the next protocols. We have to switch to tunnel |
| 1726 | * mode, so that we transfer the request and responses then let |
| 1727 | * this protocol pass unmodified. When we later implement specific |
| 1728 | * parsers for such protocols, we'll want to check the Upgrade |
| 1729 | * header which contains information about that protocol for |
| 1730 | * responses with status 101 (eg: see RFC2817 about TLS). |
| 1731 | */ |
Christopher Faulet | c41547b | 2019-07-16 14:32:23 +0200 | [diff] [blame] | 1732 | txn->flags |= TX_CON_WANT_TUN; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1733 | } |
| 1734 | |
Christopher Faulet | 6160832 | 2018-11-23 16:23:45 +0100 | [diff] [blame] | 1735 | /* check for NTML authentication headers in 401 (WWW-Authenticate) and |
| 1736 | * 407 (Proxy-Authenticate) responses and set the connection to private |
| 1737 | */ |
| 1738 | srv_conn = cs_conn(objt_cs(s->si[1].end)); |
| 1739 | if (srv_conn) { |
| 1740 | struct ist hdr; |
| 1741 | struct http_hdr_ctx ctx; |
| 1742 | |
| 1743 | if (txn->status == 401) |
| 1744 | hdr = ist("WWW-Authenticate"); |
| 1745 | else if (txn->status == 407) |
| 1746 | hdr = ist("Proxy-Authenticate"); |
| 1747 | else |
| 1748 | goto end; |
| 1749 | |
| 1750 | ctx.blk = NULL; |
| 1751 | while (http_find_header(htx, hdr, &ctx, 0)) { |
Willy Tarreau | f1dcced | 2020-05-07 19:27:02 +0200 | [diff] [blame] | 1752 | /* If www-authenticate contains "Negotiate", "Nego2", or "NTLM", |
| 1753 | * possibly followed by blanks and a base64 string, the connection |
| 1754 | * is private. Since it's a mess to deal with, we only check for |
| 1755 | * values starting with "NTLM" or "Nego". Note that often multiple |
| 1756 | * headers are sent by the server there. |
| 1757 | */ |
| 1758 | if ((ctx.value.len >= 4 && strncasecmp(ctx.value.ptr, "Nego", 4) == 0) || |
Willy Tarreau | 49a1d28 | 2020-05-07 19:10:15 +0200 | [diff] [blame] | 1759 | (ctx.value.len >= 4 && strncasecmp(ctx.value.ptr, "NTLM", 4) == 0)) { |
Olivier Houchard | 250031e | 2019-05-29 15:01:50 +0200 | [diff] [blame] | 1760 | sess->flags |= SESS_FL_PREFER_LAST; |
Christopher Faulet | 08016ab | 2020-07-01 16:10:06 +0200 | [diff] [blame] | 1761 | conn_set_owner(srv_conn, sess, NULL); |
Christopher Faulet | 21ddc74 | 2020-07-01 15:26:14 +0200 | [diff] [blame] | 1762 | conn_set_private(srv_conn); |
Ilya Shipitsin | 6b79f38 | 2020-07-23 00:32:55 +0500 | [diff] [blame] | 1763 | /* If it fail now, the same will be done in mux->detach() callback */ |
Christopher Faulet | 08016ab | 2020-07-01 16:10:06 +0200 | [diff] [blame] | 1764 | session_add_conn(srv_conn->owner, srv_conn, srv_conn->target); |
Willy Tarreau | f1dcced | 2020-05-07 19:27:02 +0200 | [diff] [blame] | 1765 | break; |
Olivier Houchard | 250031e | 2019-05-29 15:01:50 +0200 | [diff] [blame] | 1766 | } |
Christopher Faulet | 6160832 | 2018-11-23 16:23:45 +0100 | [diff] [blame] | 1767 | } |
| 1768 | } |
| 1769 | |
| 1770 | end: |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1771 | /* we want to have the response time before we start processing it */ |
| 1772 | s->logs.t_data = tv_ms_elapsed(&s->logs.tv_accept, &now); |
| 1773 | |
| 1774 | /* end of job, return OK */ |
| 1775 | rep->analysers &= ~an_bit; |
| 1776 | rep->analyse_exp = TICK_ETERNITY; |
| 1777 | channel_auto_close(rep); |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1778 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1779 | return 1; |
| 1780 | |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 1781 | return_int_err: |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1782 | _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors); |
| 1783 | _HA_ATOMIC_INC(&s->be->be_counters.internal_errors); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 1784 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1785 | _HA_ATOMIC_INC(&sess->listener->counters->internal_errors); |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 1786 | if (objt_server(s->target)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1787 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.internal_errors); |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 1788 | txn->status = 500; |
| 1789 | if (!(s->flags & SF_ERR_MASK)) |
| 1790 | s->flags |= SF_ERR_INTERNAL; |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 1791 | goto return_prx_cond; |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 1792 | |
| 1793 | return_bad_res: |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1794 | _HA_ATOMIC_INC(&s->be->be_counters.failed_resp); |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1795 | if (objt_server(s->target)) { |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1796 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_resp); |
Willy Tarreau | b54c40a | 2018-12-02 19:28:41 +0100 | [diff] [blame] | 1797 | health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_HDRRSP); |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1798 | } |
Olivier Houchard | e3249a9 | 2019-05-03 23:01:47 +0200 | [diff] [blame] | 1799 | if ((s->be->retry_type & PR_RE_JUNK_REQUEST) && |
Olivier Houchard | ad26d8d | 2019-05-10 17:48:28 +0200 | [diff] [blame] | 1800 | (si_b->flags & SI_FL_L7_RETRY) && |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1801 | do_l7_retry(s, si_b) == 0) { |
| 1802 | DBG_TRACE_DEVEL("leaving on L7 retry", |
| 1803 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Olivier Houchard | e3249a9 | 2019-05-03 23:01:47 +0200 | [diff] [blame] | 1804 | return 0; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1805 | } |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1806 | txn->status = 502; |
Willy Tarreau | 826f3ab | 2021-02-10 12:07:15 +0100 | [diff] [blame] | 1807 | stream_inc_http_fail_ctr(s); |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 1808 | /* fall through */ |
| 1809 | |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 1810 | return_prx_cond: |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1811 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1812 | |
| 1813 | if (!(s->flags & SF_ERR_MASK)) |
| 1814 | s->flags |= SF_ERR_PRXCOND; |
| 1815 | if (!(s->flags & SF_FINST_MASK)) |
| 1816 | s->flags |= SF_FINST_H; |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 1817 | |
| 1818 | s->si[1].flags |= SI_FL_NOLINGER; |
| 1819 | rep->analysers &= AN_RES_FLT_END; |
Christopher Faulet | e58c000 | 2020-03-02 16:21:01 +0100 | [diff] [blame] | 1820 | s->req.analysers &= AN_REQ_FLT_END; |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 1821 | rep->analyse_exp = TICK_ETERNITY; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1822 | DBG_TRACE_DEVEL("leaving on error", |
| 1823 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn); |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1824 | return 0; |
| 1825 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1826 | abort_keep_alive: |
| 1827 | /* A keep-alive request to the server failed on a network error. |
| 1828 | * The client is required to retry. We need to close without returning |
| 1829 | * any other information so that the client retries. |
| 1830 | */ |
| 1831 | txn->status = 0; |
| 1832 | rep->analysers &= AN_RES_FLT_END; |
| 1833 | s->req.analysers &= AN_REQ_FLT_END; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1834 | s->logs.logwait = 0; |
| 1835 | s->logs.level = 0; |
| 1836 | s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1837 | http_reply_and_close(s, txn->status, NULL); |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1838 | DBG_TRACE_DEVEL("leaving by closing K/A connection", |
| 1839 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1840 | return 0; |
| 1841 | } |
| 1842 | |
| 1843 | /* This function performs all the processing enabled for the current response. |
| 1844 | * It normally returns 1 unless it wants to break. It relies on buffers flags, |
| 1845 | * and updates s->res.analysers. It might make sense to explode it into several |
| 1846 | * other functions. It works like process_request (see indications above). |
| 1847 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1848 | int http_process_res_common(struct stream *s, struct channel *rep, int an_bit, struct proxy *px) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1849 | { |
| 1850 | struct session *sess = s->sess; |
| 1851 | struct http_txn *txn = s->txn; |
| 1852 | struct http_msg *msg = &txn->rsp; |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 1853 | struct htx *htx; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1854 | struct proxy *cur_proxy; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1855 | enum rule_result ret = HTTP_RULE_RES_CONT; |
| 1856 | |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 1857 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) /* we need more data */ |
| 1858 | return 0; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1859 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1860 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1861 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 1862 | htx = htxbuf(&rep->buf); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1863 | |
| 1864 | /* The stats applet needs to adjust the Connection header but we don't |
| 1865 | * apply any filter there. |
| 1866 | */ |
| 1867 | if (unlikely(objt_applet(s->target) == &http_stats_applet)) { |
| 1868 | rep->analysers &= ~an_bit; |
| 1869 | rep->analyse_exp = TICK_ETERNITY; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1870 | goto end; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1871 | } |
| 1872 | |
| 1873 | /* |
| 1874 | * We will have to evaluate the filters. |
| 1875 | * As opposed to version 1.2, now they will be evaluated in the |
| 1876 | * filters order and not in the header order. This means that |
| 1877 | * each filter has to be validated among all headers. |
| 1878 | * |
| 1879 | * Filters are tried with ->be first, then with ->fe if it is |
| 1880 | * different from ->be. |
| 1881 | * |
| 1882 | * Maybe we are in resume condiion. In this case I choose the |
| 1883 | * "struct proxy" which contains the rule list matching the resume |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 1884 | * pointer. If none of these "struct proxy" match, I initialise |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1885 | * the process with the first one. |
| 1886 | * |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 1887 | * In fact, I check only correspondence between the current list |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1888 | * pointer and the ->fe rule list. If it doesn't match, I initialize |
| 1889 | * the loop with the ->be. |
| 1890 | */ |
| 1891 | if (s->current_rule_list == &sess->fe->http_res_rules) |
| 1892 | cur_proxy = sess->fe; |
| 1893 | else |
| 1894 | cur_proxy = s->be; |
| 1895 | while (1) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1896 | /* evaluate http-response rules */ |
| 1897 | if (ret == HTTP_RULE_RES_CONT) { |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1898 | ret = http_res_get_intercept_rule(cur_proxy, &cur_proxy->http_res_rules, s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1899 | |
Christopher Faulet | 3a26bee | 2019-12-16 12:47:40 +0100 | [diff] [blame] | 1900 | switch (ret) { |
| 1901 | case HTTP_RULE_RES_YIELD: /* some data miss, call the function later. */ |
| 1902 | goto return_prx_yield; |
| 1903 | |
| 1904 | case HTTP_RULE_RES_CONT: |
| 1905 | case HTTP_RULE_RES_STOP: /* nothing to do */ |
| 1906 | break; |
| 1907 | |
| 1908 | case HTTP_RULE_RES_DENY: /* deny or tarpit */ |
| 1909 | goto deny; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1910 | |
Christopher Faulet | 3a26bee | 2019-12-16 12:47:40 +0100 | [diff] [blame] | 1911 | case HTTP_RULE_RES_ABRT: /* abort request, response already sent */ |
| 1912 | goto return_prx_cond; |
| 1913 | |
| 1914 | case HTTP_RULE_RES_DONE: /* OK, but terminate request processing (eg: redirect) */ |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 1915 | goto done; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1916 | |
Christopher Faulet | 3a26bee | 2019-12-16 12:47:40 +0100 | [diff] [blame] | 1917 | case HTTP_RULE_RES_BADREQ: /* failed with a bad request */ |
| 1918 | goto return_bad_res; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1919 | |
Christopher Faulet | 3a26bee | 2019-12-16 12:47:40 +0100 | [diff] [blame] | 1920 | case HTTP_RULE_RES_ERROR: /* failed with a bad request */ |
| 1921 | goto return_int_err; |
| 1922 | } |
| 1923 | |
| 1924 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1925 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1926 | /* check whether we're already working on the frontend */ |
| 1927 | if (cur_proxy == sess->fe) |
| 1928 | break; |
| 1929 | cur_proxy = sess->fe; |
| 1930 | } |
| 1931 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1932 | /* OK that's all we can do for 1xx responses */ |
| 1933 | if (unlikely(txn->status < 200 && txn->status != 101)) |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1934 | goto end; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1935 | |
| 1936 | /* |
| 1937 | * Now check for a server cookie. |
| 1938 | */ |
| 1939 | if (s->be->cookie_name || sess->fe->capture_name || (s->be->options & PR_O_CHK_CACHE)) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1940 | http_manage_server_side_cookies(s, rep); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1941 | |
| 1942 | /* |
| 1943 | * Check for cache-control or pragma headers if required. |
| 1944 | */ |
| 1945 | if ((s->be->options & PR_O_CHK_CACHE) || (s->be->ck_opts & PR_CK_NOC)) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1946 | http_check_response_for_cacheability(s, rep); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1947 | |
| 1948 | /* |
| 1949 | * Add server cookie in the response if needed |
| 1950 | */ |
| 1951 | if (objt_server(s->target) && (s->be->ck_opts & PR_CK_INS) && |
| 1952 | !((txn->flags & TX_SCK_FOUND) && (s->be->ck_opts & PR_CK_PSV)) && |
| 1953 | (!(s->flags & SF_DIRECT) || |
| 1954 | ((s->be->cookie_maxidle || txn->cookie_last_date) && |
| 1955 | (!txn->cookie_last_date || (txn->cookie_last_date - date.tv_sec) < 0)) || |
| 1956 | (s->be->cookie_maxlife && !txn->cookie_first_date) || // set the first_date |
| 1957 | (!s->be->cookie_maxlife && txn->cookie_first_date)) && // remove the first_date |
| 1958 | (!(s->be->ck_opts & PR_CK_POST) || (txn->meth == HTTP_METH_POST)) && |
| 1959 | !(s->flags & SF_IGNORE_PRST)) { |
| 1960 | /* the server is known, it's not the one the client requested, or the |
| 1961 | * cookie's last seen date needs to be refreshed. We have to |
| 1962 | * insert a set-cookie here, except if we want to insert only on POST |
| 1963 | * requests and this one isn't. Note that servers which don't have cookies |
| 1964 | * (eg: some backup servers) will return a full cookie removal request. |
| 1965 | */ |
| 1966 | if (!objt_server(s->target)->cookie) { |
| 1967 | chunk_printf(&trash, |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 1968 | "%s=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/", |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1969 | s->be->cookie_name); |
| 1970 | } |
| 1971 | else { |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 1972 | chunk_printf(&trash, "%s=%s", s->be->cookie_name, objt_server(s->target)->cookie); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1973 | |
| 1974 | if (s->be->cookie_maxidle || s->be->cookie_maxlife) { |
| 1975 | /* emit last_date, which is mandatory */ |
| 1976 | trash.area[trash.data++] = COOKIE_DELIM_DATE; |
| 1977 | s30tob64((date.tv_sec+3) >> 2, |
| 1978 | trash.area + trash.data); |
| 1979 | trash.data += 5; |
| 1980 | |
| 1981 | if (s->be->cookie_maxlife) { |
| 1982 | /* emit first_date, which is either the original one or |
| 1983 | * the current date. |
| 1984 | */ |
| 1985 | trash.area[trash.data++] = COOKIE_DELIM_DATE; |
| 1986 | s30tob64(txn->cookie_first_date ? |
| 1987 | txn->cookie_first_date >> 2 : |
| 1988 | (date.tv_sec+3) >> 2, |
| 1989 | trash.area + trash.data); |
| 1990 | trash.data += 5; |
| 1991 | } |
| 1992 | } |
| 1993 | chunk_appendf(&trash, "; path=/"); |
| 1994 | } |
| 1995 | |
| 1996 | if (s->be->cookie_domain) |
| 1997 | chunk_appendf(&trash, "; domain=%s", s->be->cookie_domain); |
| 1998 | |
| 1999 | if (s->be->ck_opts & PR_CK_HTTPONLY) |
| 2000 | chunk_appendf(&trash, "; HttpOnly"); |
| 2001 | |
| 2002 | if (s->be->ck_opts & PR_CK_SECURE) |
| 2003 | chunk_appendf(&trash, "; Secure"); |
| 2004 | |
Christopher Faulet | 2f53390 | 2020-01-21 11:06:48 +0100 | [diff] [blame] | 2005 | if (s->be->cookie_attrs) |
| 2006 | chunk_appendf(&trash, "; %s", s->be->cookie_attrs); |
| 2007 | |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 2008 | if (unlikely(!http_add_header(htx, ist("Set-Cookie"), ist2(trash.area, trash.data)))) |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 2009 | goto return_int_err; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2010 | |
| 2011 | txn->flags &= ~TX_SCK_MASK; |
| 2012 | if (__objt_server(s->target)->cookie && (s->flags & SF_DIRECT)) |
| 2013 | /* the server did not change, only the date was updated */ |
| 2014 | txn->flags |= TX_SCK_UPDATED; |
| 2015 | else |
| 2016 | txn->flags |= TX_SCK_INSERTED; |
| 2017 | |
| 2018 | /* Here, we will tell an eventual cache on the client side that we don't |
| 2019 | * want it to cache this reply because HTTP/1.0 caches also cache cookies ! |
| 2020 | * Some caches understand the correct form: 'no-cache="set-cookie"', but |
| 2021 | * others don't (eg: apache <= 1.3.26). So we use 'private' instead. |
| 2022 | */ |
| 2023 | if ((s->be->ck_opts & PR_CK_NOC) && (txn->flags & TX_CACHEABLE)) { |
| 2024 | |
| 2025 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
| 2026 | |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 2027 | if (unlikely(!http_add_header(htx, ist("Cache-control"), ist("private")))) |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 2028 | goto return_int_err; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2029 | } |
| 2030 | } |
| 2031 | |
| 2032 | /* |
| 2033 | * Check if result will be cacheable with a cookie. |
| 2034 | * We'll block the response if security checks have caught |
| 2035 | * nasty things such as a cacheable cookie. |
| 2036 | */ |
| 2037 | if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) == |
| 2038 | (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) && |
| 2039 | (s->be->options & PR_O_CHK_CACHE)) { |
| 2040 | /* we're in presence of a cacheable response containing |
| 2041 | * a set-cookie header. We'll block it as requested by |
| 2042 | * the 'checkcache' option, and send an alert. |
| 2043 | */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2044 | ha_alert("Blocking cacheable cookie in response from instance %s, server %s.\n", |
| 2045 | s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>"); |
| 2046 | send_log(s->be, LOG_ALERT, |
| 2047 | "Blocking cacheable cookie in response from instance %s, server %s.\n", |
| 2048 | s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>"); |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 2049 | goto deny; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2050 | } |
| 2051 | |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 2052 | end: |
Christopher Faulet | 6d0c3df | 2020-01-22 09:26:35 +0100 | [diff] [blame] | 2053 | /* |
| 2054 | * Evaluate after-response rules before forwarding the response. rules |
| 2055 | * from the backend are evaluated first, then one from the frontend if |
| 2056 | * it differs. |
| 2057 | */ |
| 2058 | if (!http_eval_after_res_rules(s)) |
| 2059 | goto return_int_err; |
| 2060 | |
Christopher Faulet | c2ac5e4 | 2021-03-08 18:20:09 +0100 | [diff] [blame] | 2061 | /* Filter the response headers if there are filters attached to the |
| 2062 | * stream. |
| 2063 | */ |
| 2064 | if (HAS_FILTERS(s)) |
| 2065 | rep->analysers |= AN_RES_FLT_HTTP_HDRS; |
| 2066 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2067 | /* Always enter in the body analyzer */ |
| 2068 | rep->analysers &= ~AN_RES_FLT_XFER_DATA; |
| 2069 | rep->analysers |= AN_RES_HTTP_XFER_BODY; |
| 2070 | |
| 2071 | /* if the user wants to log as soon as possible, without counting |
| 2072 | * bytes from the server, then this is the right moment. We have |
| 2073 | * to temporarily assign bytes_out to log what we currently have. |
| 2074 | */ |
| 2075 | if (!LIST_ISEMPTY(&sess->fe->logformat) && !(s->logs.logwait & LW_BYTES)) { |
| 2076 | s->logs.t_close = s->logs.t_data; /* to get a valid end date */ |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 2077 | s->logs.bytes_out = htx->data; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2078 | s->do_log(s); |
| 2079 | s->logs.bytes_out = 0; |
| 2080 | } |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 2081 | |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 2082 | done: |
Christopher Faulet | 6d0c3df | 2020-01-22 09:26:35 +0100 | [diff] [blame] | 2083 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 2084 | rep->analysers &= ~an_bit; |
| 2085 | rep->analyse_exp = TICK_ETERNITY; |
| 2086 | return 1; |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 2087 | |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 2088 | deny: |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2089 | _HA_ATOMIC_INC(&sess->fe->fe_counters.denied_resp); |
| 2090 | _HA_ATOMIC_INC(&s->be->be_counters.denied_resp); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 2091 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2092 | _HA_ATOMIC_INC(&sess->listener->counters->denied_resp); |
Christopher Faulet | a08546b | 2019-12-16 16:07:34 +0100 | [diff] [blame] | 2093 | if (objt_server(s->target)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2094 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.denied_resp); |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 2095 | goto return_prx_err; |
| 2096 | |
| 2097 | return_int_err: |
| 2098 | txn->status = 500; |
| 2099 | if (!(s->flags & SF_ERR_MASK)) |
| 2100 | s->flags |= SF_ERR_INTERNAL; |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2101 | _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors); |
| 2102 | _HA_ATOMIC_INC(&s->be->be_counters.internal_errors); |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 2103 | if (objt_server(s->target)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2104 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.internal_errors); |
Christopher Faulet | cff0f73 | 2019-12-16 16:13:44 +0100 | [diff] [blame] | 2105 | if (objt_server(s->target)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2106 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.internal_errors); |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 2107 | goto return_prx_err; |
| 2108 | |
| 2109 | return_bad_res: |
| 2110 | txn->status = 502; |
Willy Tarreau | 826f3ab | 2021-02-10 12:07:15 +0100 | [diff] [blame] | 2111 | stream_inc_http_fail_ctr(s); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2112 | _HA_ATOMIC_INC(&s->be->be_counters.failed_resp); |
Christopher Faulet | a20a653 | 2020-02-05 10:16:41 +0100 | [diff] [blame] | 2113 | if (objt_server(s->target)) { |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2114 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_resp); |
Christopher Faulet | a20a653 | 2020-02-05 10:16:41 +0100 | [diff] [blame] | 2115 | health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_RSP); |
| 2116 | } |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 2117 | /* fall through */ |
| 2118 | |
| 2119 | return_prx_err: |
| 2120 | http_reply_and_close(s, txn->status, http_error_message(s)); |
| 2121 | /* fall through */ |
| 2122 | |
| 2123 | return_prx_cond: |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 2124 | s->logs.t_data = -1; /* was not a valid response */ |
| 2125 | s->si[1].flags |= SI_FL_NOLINGER; |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 2126 | |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 2127 | if (!(s->flags & SF_ERR_MASK)) |
| 2128 | s->flags |= SF_ERR_PRXCOND; |
| 2129 | if (!(s->flags & SF_FINST_MASK)) |
| 2130 | s->flags |= SF_FINST_H; |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 2131 | |
Christopher Faulet | e58c000 | 2020-03-02 16:21:01 +0100 | [diff] [blame] | 2132 | rep->analysers &= AN_RES_FLT_END; |
| 2133 | s->req.analysers &= AN_REQ_FLT_END; |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 2134 | rep->analyse_exp = TICK_ETERNITY; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 2135 | DBG_TRACE_DEVEL("leaving on error", |
| 2136 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn); |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 2137 | return 0; |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 2138 | |
| 2139 | return_prx_yield: |
| 2140 | channel_dont_close(rep); |
| 2141 | DBG_TRACE_DEVEL("waiting for more data", |
| 2142 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
| 2143 | return 0; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2144 | } |
| 2145 | |
| 2146 | /* This function is an analyser which forwards response body (including chunk |
| 2147 | * sizes if any). It is called as soon as we must forward, even if we forward |
| 2148 | * zero byte. The only situation where it must not be called is when we're in |
| 2149 | * tunnel mode and we want to forward till the close. It's used both to forward |
| 2150 | * remaining data and to resync after end of body. It expects the msg_state to |
| 2151 | * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to |
| 2152 | * read more data, or 1 once we can go on with next request or end the stream. |
| 2153 | * |
| 2154 | * It is capable of compressing response data both in content-length mode and |
| 2155 | * in chunked mode. The state machines follows different flows depending on |
| 2156 | * whether content-length and chunked modes are used, since there are no |
| 2157 | * trailers in content-length : |
| 2158 | * |
| 2159 | * chk-mode cl-mode |
| 2160 | * ,----- BODY -----. |
| 2161 | * / \ |
| 2162 | * V size > 0 V chk-mode |
| 2163 | * .--> SIZE -------------> DATA -------------> CRLF |
| 2164 | * | | size == 0 | last byte | |
| 2165 | * | v final crlf v inspected | |
| 2166 | * | TRAILERS -----------> DONE | |
| 2167 | * | | |
| 2168 | * `----------------------------------------------' |
| 2169 | * |
| 2170 | * Compression only happens in the DATA state, and must be flushed in final |
| 2171 | * states (TRAILERS/DONE) or when leaving on missing data. Normal forwarding |
| 2172 | * is performed at once on final states for all bytes parsed, or when leaving |
| 2173 | * on missing data. |
| 2174 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2175 | int http_response_forward_body(struct stream *s, struct channel *res, int an_bit) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2176 | { |
| 2177 | struct session *sess = s->sess; |
| 2178 | struct http_txn *txn = s->txn; |
| 2179 | struct http_msg *msg = &s->txn->rsp; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2180 | struct htx *htx; |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 2181 | int ret; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2182 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 2183 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn, msg); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2184 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 2185 | htx = htxbuf(&res->buf); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2186 | |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 2187 | if (htx->flags & HTX_FL_PARSING_ERROR) |
| 2188 | goto return_bad_res; |
| 2189 | if (htx->flags & HTX_FL_PROCESSING_ERROR) |
| 2190 | goto return_int_err; |
| 2191 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2192 | if ((res->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) || |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2193 | ((res->flags & CF_SHUTW) && (res->to_forward || co_data(res)))) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2194 | /* Output closed while we were sending data. We must abort and |
| 2195 | * wake the other side up. |
| 2196 | */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2197 | msg->msg_state = HTTP_MSG_ERROR; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2198 | http_end_response(s); |
| 2199 | http_end_request(s); |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 2200 | DBG_TRACE_DEVEL("leaving on error", |
| 2201 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2202 | return 1; |
| 2203 | } |
| 2204 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2205 | if (msg->msg_state == HTTP_MSG_BODY) |
| 2206 | msg->msg_state = HTTP_MSG_DATA; |
| 2207 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2208 | /* in most states, we should abort in case of early close */ |
| 2209 | channel_auto_close(res); |
| 2210 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2211 | if (res->to_forward) { |
Christopher Faulet | 66af0b2 | 2019-03-22 14:54:52 +0100 | [diff] [blame] | 2212 | if (res->to_forward == CHN_INFINITE_FORWARD) { |
Christopher Faulet | 1a3e027 | 2019-11-15 16:31:46 +0100 | [diff] [blame] | 2213 | if (res->flags & CF_EOI) |
| 2214 | msg->msg_state = HTTP_MSG_ENDING; |
Christopher Faulet | 66af0b2 | 2019-03-22 14:54:52 +0100 | [diff] [blame] | 2215 | } |
| 2216 | else { |
| 2217 | /* We can't process the buffer's contents yet */ |
| 2218 | res->flags |= CF_WAKE_WRITE; |
| 2219 | goto missing_data_or_waiting; |
| 2220 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2221 | } |
| 2222 | |
Christopher Faulet | 1a3e027 | 2019-11-15 16:31:46 +0100 | [diff] [blame] | 2223 | if (msg->msg_state >= HTTP_MSG_ENDING) |
| 2224 | goto ending; |
| 2225 | |
Christopher Faulet | c75668e | 2020-12-07 18:10:32 +0100 | [diff] [blame] | 2226 | if ((txn->meth == HTTP_METH_CONNECT && txn->status >= 200 && txn->status < 300) || txn->status == 101 || |
Christopher Faulet | 1a3e027 | 2019-11-15 16:31:46 +0100 | [diff] [blame] | 2227 | (!(msg->flags & HTTP_MSGF_XFER_LEN) && !HAS_RSP_DATA_FILTERS(s))) { |
| 2228 | msg->msg_state = HTTP_MSG_ENDING; |
| 2229 | goto ending; |
| 2230 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2231 | |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 2232 | /* Forward input data. We get it by removing all outgoing data not |
| 2233 | * forwarded yet from HTX data size. If there are some data filters, we |
| 2234 | * let them decide the amount of data to forward. |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2235 | */ |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 2236 | if (HAS_RSP_DATA_FILTERS(s)) { |
| 2237 | ret = flt_http_payload(s, msg, htx->data); |
| 2238 | if (ret < 0) |
| 2239 | goto return_bad_res; |
Christopher Faulet | 421e769 | 2019-06-13 11:16:45 +0200 | [diff] [blame] | 2240 | c_adv(res, ret); |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 2241 | } |
| 2242 | else { |
Christopher Faulet | 421e769 | 2019-06-13 11:16:45 +0200 | [diff] [blame] | 2243 | c_adv(res, htx->data - co_data(res)); |
Christopher Faulet | 66af0b2 | 2019-03-22 14:54:52 +0100 | [diff] [blame] | 2244 | if (msg->flags & HTTP_MSGF_XFER_LEN) |
| 2245 | channel_htx_forward_forever(res, htx); |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 2246 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2247 | |
Christopher Faulet | 1a3e027 | 2019-11-15 16:31:46 +0100 | [diff] [blame] | 2248 | if (htx->data != co_data(res)) |
| 2249 | goto missing_data_or_waiting; |
| 2250 | |
| 2251 | if (!(msg->flags & HTTP_MSGF_XFER_LEN) && res->flags & CF_SHUTR) { |
| 2252 | msg->msg_state = HTTP_MSG_ENDING; |
| 2253 | goto ending; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2254 | } |
| 2255 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2256 | /* Check if the end-of-message is reached and if so, switch the message |
Christopher Faulet | d20fdb0 | 2019-06-13 16:43:22 +0200 | [diff] [blame] | 2257 | * in HTTP_MSG_ENDING state. Then if all data was marked to be |
| 2258 | * forwarded, set the state to HTTP_MSG_DONE. |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2259 | */ |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2260 | if (!(htx->flags & HTX_FL_EOM)) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2261 | goto missing_data_or_waiting; |
| 2262 | |
Christopher Faulet | d20fdb0 | 2019-06-13 16:43:22 +0200 | [diff] [blame] | 2263 | msg->msg_state = HTTP_MSG_ENDING; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2264 | |
Christopher Faulet | 1a3e027 | 2019-11-15 16:31:46 +0100 | [diff] [blame] | 2265 | ending: |
Christopher Faulet | 2151cdd | 2020-07-22 16:34:59 +0200 | [diff] [blame] | 2266 | res->flags &= ~CF_EXPECT_MORE; /* no more data are expected */ |
| 2267 | |
Christopher Faulet | 1a3e027 | 2019-11-15 16:31:46 +0100 | [diff] [blame] | 2268 | /* other states, ENDING...TUNNEL */ |
| 2269 | if (msg->msg_state >= HTTP_MSG_DONE) |
| 2270 | goto done; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2271 | |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 2272 | if (HAS_RSP_DATA_FILTERS(s)) { |
| 2273 | ret = flt_http_end(s, msg); |
| 2274 | if (ret <= 0) { |
| 2275 | if (!ret) |
| 2276 | goto missing_data_or_waiting; |
| 2277 | goto return_bad_res; |
| 2278 | } |
| 2279 | } |
| 2280 | |
Christopher Faulet | c75668e | 2020-12-07 18:10:32 +0100 | [diff] [blame] | 2281 | if ((txn->meth == HTTP_METH_CONNECT && txn->status >= 200 && txn->status < 300) || txn->status == 101 || |
Christopher Faulet | 1a3e027 | 2019-11-15 16:31:46 +0100 | [diff] [blame] | 2282 | !(msg->flags & HTTP_MSGF_XFER_LEN)) { |
| 2283 | msg->msg_state = HTTP_MSG_TUNNEL; |
| 2284 | goto ending; |
| 2285 | } |
| 2286 | else { |
| 2287 | msg->msg_state = HTTP_MSG_DONE; |
| 2288 | res->to_forward = 0; |
| 2289 | } |
| 2290 | |
| 2291 | done: |
| 2292 | |
| 2293 | channel_dont_close(res); |
| 2294 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2295 | http_end_response(s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2296 | if (!(res->analysers & an_bit)) { |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2297 | http_end_request(s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2298 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) { |
| 2299 | if (res->flags & CF_SHUTW) { |
| 2300 | /* response errors are most likely due to the |
| 2301 | * client aborting the transfer. */ |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2302 | goto return_cli_abort; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2303 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2304 | goto return_bad_res; |
| 2305 | } |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 2306 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2307 | return 1; |
| 2308 | } |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 2309 | DBG_TRACE_DEVEL("waiting for the end of the HTTP txn", |
| 2310 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2311 | return 0; |
| 2312 | |
| 2313 | missing_data_or_waiting: |
| 2314 | if (res->flags & CF_SHUTW) |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2315 | goto return_cli_abort; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2316 | |
| 2317 | /* stop waiting for data if the input is closed before the end. If the |
| 2318 | * client side was already closed, it means that the client has aborted, |
| 2319 | * so we don't want to count this as a server abort. Otherwise it's a |
| 2320 | * server abort. |
| 2321 | */ |
Christopher Faulet | d20fdb0 | 2019-06-13 16:43:22 +0200 | [diff] [blame] | 2322 | if (msg->msg_state < HTTP_MSG_ENDING && res->flags & CF_SHUTR) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2323 | if ((s->req.flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW)) |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2324 | goto return_cli_abort; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2325 | /* If we have some pending data, we continue the processing */ |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2326 | if (htx_is_empty(htx)) |
| 2327 | goto return_srv_abort; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2328 | } |
| 2329 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2330 | /* When TE: chunked is used, we need to get there again to parse |
| 2331 | * remaining chunks even if the server has closed, so we don't want to |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2332 | * set CF_DONTCLOSE. Similarly when there is a content-leng or if there |
| 2333 | * are filters registered on the stream, we don't want to forward a |
| 2334 | * close |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2335 | */ |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 2336 | if ((msg->flags & HTTP_MSGF_XFER_LEN) || HAS_RSP_DATA_FILTERS(s)) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2337 | channel_dont_close(res); |
| 2338 | |
| 2339 | /* We know that more data are expected, but we couldn't send more that |
| 2340 | * what we did. So we always set the CF_EXPECT_MORE flag so that the |
| 2341 | * system knows it must not set a PUSH on this first part. Interactive |
| 2342 | * modes are already handled by the stream sock layer. We must not do |
| 2343 | * this in content-length mode because it could present the MSG_MORE |
| 2344 | * flag with the last block of forwarded data, which would cause an |
| 2345 | * additional delay to be observed by the receiver. |
| 2346 | */ |
Christopher Faulet | 2151cdd | 2020-07-22 16:34:59 +0200 | [diff] [blame] | 2347 | if (HAS_RSP_DATA_FILTERS(s)) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2348 | res->flags |= CF_EXPECT_MORE; |
| 2349 | |
| 2350 | /* the stream handler will take care of timeouts and errors */ |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 2351 | DBG_TRACE_DEVEL("waiting for more data to forward", |
| 2352 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2353 | return 0; |
| 2354 | |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2355 | return_srv_abort: |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2356 | _HA_ATOMIC_INC(&sess->fe->fe_counters.srv_aborts); |
| 2357 | _HA_ATOMIC_INC(&s->be->be_counters.srv_aborts); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 2358 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2359 | _HA_ATOMIC_INC(&sess->listener->counters->srv_aborts); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2360 | if (objt_server(s->target)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2361 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.srv_aborts); |
Willy Tarreau | 826f3ab | 2021-02-10 12:07:15 +0100 | [diff] [blame] | 2362 | stream_inc_http_fail_ctr(s); |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2363 | if (!(s->flags & SF_ERR_MASK)) |
| 2364 | s->flags |= SF_ERR_SRVCL; |
| 2365 | goto return_error; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2366 | |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2367 | return_cli_abort: |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2368 | _HA_ATOMIC_INC(&sess->fe->fe_counters.cli_aborts); |
| 2369 | _HA_ATOMIC_INC(&s->be->be_counters.cli_aborts); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 2370 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2371 | _HA_ATOMIC_INC(&sess->listener->counters->cli_aborts); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2372 | if (objt_server(s->target)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2373 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.cli_aborts); |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2374 | if (!(s->flags & SF_ERR_MASK)) |
| 2375 | s->flags |= SF_ERR_CLICL; |
| 2376 | goto return_error; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2377 | |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 2378 | return_int_err: |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2379 | _HA_ATOMIC_INC(&sess->fe->fe_counters.internal_errors); |
| 2380 | _HA_ATOMIC_INC(&s->be->be_counters.internal_errors); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 2381 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2382 | _HA_ATOMIC_INC(&sess->listener->counters->internal_errors); |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 2383 | if (objt_server(s->target)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2384 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.internal_errors); |
Christopher Faulet | b9a92f3 | 2019-09-09 10:15:21 +0200 | [diff] [blame] | 2385 | if (!(s->flags & SF_ERR_MASK)) |
| 2386 | s->flags |= SF_ERR_INTERNAL; |
| 2387 | goto return_error; |
| 2388 | |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2389 | return_bad_res: |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2390 | _HA_ATOMIC_INC(&s->be->be_counters.failed_resp); |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2391 | if (objt_server(s->target)) { |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2392 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_resp); |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2393 | health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_RSP); |
| 2394 | } |
Willy Tarreau | 826f3ab | 2021-02-10 12:07:15 +0100 | [diff] [blame] | 2395 | stream_inc_http_fail_ctr(s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2396 | if (!(s->flags & SF_ERR_MASK)) |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2397 | s->flags |= SF_ERR_SRVCL; |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 2398 | /* fall through */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2399 | |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2400 | return_error: |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2401 | /* don't send any error message as we're in the body */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2402 | http_reply_and_close(s, txn->status, NULL); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2403 | res->analysers &= AN_RES_FLT_END; |
| 2404 | s->req.analysers &= AN_REQ_FLT_END; /* we're in data phase, we want to abort both directions */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2405 | if (!(s->flags & SF_FINST_MASK)) |
| 2406 | s->flags |= SF_FINST_D; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 2407 | DBG_TRACE_DEVEL("leaving on error", |
| 2408 | STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_HTTP_ERR, s, txn); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2409 | return 0; |
| 2410 | } |
| 2411 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2412 | /* Perform an HTTP redirect based on the information in <rule>. The function |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2413 | * returns zero on success, or zero in case of a, irrecoverable error such |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2414 | * as too large a request to build a valid response. |
| 2415 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2416 | int http_apply_redirect_rule(struct redirect_rule *rule, struct stream *s, struct http_txn *txn) |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2417 | { |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2418 | struct channel *req = &s->req; |
| 2419 | struct channel *res = &s->res; |
| 2420 | struct htx *htx; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 2421 | struct htx_sl *sl; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2422 | struct buffer *chunk; |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2423 | struct ist status, reason, location; |
| 2424 | unsigned int flags; |
Christopher Faulet | 08e6646 | 2019-05-23 16:44:59 +0200 | [diff] [blame] | 2425 | int close = 0; /* Try to keep the connection alive byt default */ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2426 | |
| 2427 | chunk = alloc_trash_chunk(); |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 2428 | if (!chunk) { |
| 2429 | if (!(s->flags & SF_ERR_MASK)) |
| 2430 | s->flags |= SF_ERR_RESOURCE; |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2431 | goto fail; |
Christopher Faulet | b8a5371 | 2019-12-16 11:29:38 +0100 | [diff] [blame] | 2432 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2433 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2434 | /* |
| 2435 | * Create the location |
| 2436 | */ |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 2437 | htx = htxbuf(&req->buf); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2438 | switch(rule->type) { |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2439 | case REDIRECT_TYPE_SCHEME: { |
| 2440 | struct http_hdr_ctx ctx; |
| 2441 | struct ist path, host; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2442 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2443 | host = ist(""); |
| 2444 | ctx.blk = NULL; |
| 2445 | if (http_find_header(htx, ist("Host"), &ctx, 0)) |
| 2446 | host = ctx.value; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2447 | |
Christopher Faulet | 297fbb4 | 2019-05-13 14:41:27 +0200 | [diff] [blame] | 2448 | sl = http_get_stline(htx); |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2449 | path = http_get_path(htx_sl_req_uri(sl)); |
| 2450 | /* build message using path */ |
Tim Duesterhus | ed52637 | 2020-03-05 17:56:33 +0100 | [diff] [blame] | 2451 | if (isttest(path)) { |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2452 | if (rule->flags & REDIRECT_FLAG_DROP_QS) { |
| 2453 | int qs = 0; |
| 2454 | while (qs < path.len) { |
| 2455 | if (*(path.ptr + qs) == '?') { |
| 2456 | path.len = qs; |
| 2457 | break; |
| 2458 | } |
| 2459 | qs++; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2460 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2461 | } |
| 2462 | } |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2463 | else |
| 2464 | path = ist("/"); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2465 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2466 | if (rule->rdr_str) { /* this is an old "redirect" rule */ |
| 2467 | /* add scheme */ |
| 2468 | if (!chunk_memcat(chunk, rule->rdr_str, rule->rdr_len)) |
| 2469 | goto fail; |
| 2470 | } |
| 2471 | else { |
| 2472 | /* add scheme with executing log format */ |
| 2473 | chunk->data += build_logline(s, chunk->area + chunk->data, |
| 2474 | chunk->size - chunk->data, |
| 2475 | &rule->rdr_fmt); |
| 2476 | } |
| 2477 | /* add "://" + host + path */ |
| 2478 | if (!chunk_memcat(chunk, "://", 3) || |
| 2479 | !chunk_memcat(chunk, host.ptr, host.len) || |
| 2480 | !chunk_memcat(chunk, path.ptr, path.len)) |
| 2481 | goto fail; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2482 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2483 | /* append a slash at the end of the location if needed and missing */ |
| 2484 | if (chunk->data && chunk->area[chunk->data - 1] != '/' && |
| 2485 | (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) { |
| 2486 | if (chunk->data + 1 >= chunk->size) |
| 2487 | goto fail; |
| 2488 | chunk->area[chunk->data++] = '/'; |
| 2489 | } |
| 2490 | break; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2491 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2492 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2493 | case REDIRECT_TYPE_PREFIX: { |
| 2494 | struct ist path; |
| 2495 | |
Christopher Faulet | 297fbb4 | 2019-05-13 14:41:27 +0200 | [diff] [blame] | 2496 | sl = http_get_stline(htx); |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2497 | path = http_get_path(htx_sl_req_uri(sl)); |
| 2498 | /* build message using path */ |
Tim Duesterhus | ed52637 | 2020-03-05 17:56:33 +0100 | [diff] [blame] | 2499 | if (isttest(path)) { |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2500 | if (rule->flags & REDIRECT_FLAG_DROP_QS) { |
| 2501 | int qs = 0; |
| 2502 | while (qs < path.len) { |
| 2503 | if (*(path.ptr + qs) == '?') { |
| 2504 | path.len = qs; |
| 2505 | break; |
| 2506 | } |
| 2507 | qs++; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2508 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2509 | } |
| 2510 | } |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2511 | else |
| 2512 | path = ist("/"); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2513 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2514 | if (rule->rdr_str) { /* this is an old "redirect" rule */ |
| 2515 | /* add prefix. Note that if prefix == "/", we don't want to |
| 2516 | * add anything, otherwise it makes it hard for the user to |
| 2517 | * configure a self-redirection. |
| 2518 | */ |
| 2519 | if (rule->rdr_len != 1 || *rule->rdr_str != '/') { |
| 2520 | if (!chunk_memcat(chunk, rule->rdr_str, rule->rdr_len)) |
| 2521 | goto fail; |
| 2522 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2523 | } |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2524 | else { |
| 2525 | /* add prefix with executing log format */ |
| 2526 | chunk->data += build_logline(s, chunk->area + chunk->data, |
| 2527 | chunk->size - chunk->data, |
| 2528 | &rule->rdr_fmt); |
| 2529 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2530 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2531 | /* add path */ |
| 2532 | if (!chunk_memcat(chunk, path.ptr, path.len)) |
| 2533 | goto fail; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2534 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2535 | /* append a slash at the end of the location if needed and missing */ |
| 2536 | if (chunk->data && chunk->area[chunk->data - 1] != '/' && |
| 2537 | (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) { |
| 2538 | if (chunk->data + 1 >= chunk->size) |
| 2539 | goto fail; |
| 2540 | chunk->area[chunk->data++] = '/'; |
| 2541 | } |
| 2542 | break; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2543 | } |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2544 | case REDIRECT_TYPE_LOCATION: |
| 2545 | default: |
| 2546 | if (rule->rdr_str) { /* this is an old "redirect" rule */ |
| 2547 | /* add location */ |
| 2548 | if (!chunk_memcat(chunk, rule->rdr_str, rule->rdr_len)) |
| 2549 | goto fail; |
| 2550 | } |
| 2551 | else { |
| 2552 | /* add location with executing log format */ |
| 2553 | chunk->data += build_logline(s, chunk->area + chunk->data, |
| 2554 | chunk->size - chunk->data, |
| 2555 | &rule->rdr_fmt); |
| 2556 | } |
| 2557 | break; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2558 | } |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2559 | location = ist2(chunk->area, chunk->data); |
| 2560 | |
| 2561 | /* |
| 2562 | * Create the 30x response |
| 2563 | */ |
| 2564 | switch (rule->code) { |
| 2565 | case 308: |
| 2566 | status = ist("308"); |
| 2567 | reason = ist("Permanent Redirect"); |
| 2568 | break; |
| 2569 | case 307: |
| 2570 | status = ist("307"); |
| 2571 | reason = ist("Temporary Redirect"); |
| 2572 | break; |
| 2573 | case 303: |
| 2574 | status = ist("303"); |
| 2575 | reason = ist("See Other"); |
| 2576 | break; |
| 2577 | case 301: |
| 2578 | status = ist("301"); |
| 2579 | reason = ist("Moved Permanently"); |
| 2580 | break; |
| 2581 | case 302: |
| 2582 | default: |
| 2583 | status = ist("302"); |
| 2584 | reason = ist("Found"); |
| 2585 | break; |
| 2586 | } |
| 2587 | |
Christopher Faulet | 08e6646 | 2019-05-23 16:44:59 +0200 | [diff] [blame] | 2588 | if (!(txn->req.flags & HTTP_MSGF_BODYLESS) && txn->req.msg_state != HTTP_MSG_DONE) |
| 2589 | close = 1; |
| 2590 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2591 | htx = htx_from_buf(&res->buf); |
Kevin Zhu | 96b3639 | 2020-01-07 09:42:55 +0100 | [diff] [blame] | 2592 | /* Trim any possible response */ |
| 2593 | channel_htx_truncate(&s->res, htx); |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2594 | flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN|HTX_SL_F_BODYLESS); |
| 2595 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), status, reason); |
| 2596 | if (!sl) |
| 2597 | goto fail; |
| 2598 | sl->info.res.status = rule->code; |
| 2599 | s->txn->status = rule->code; |
| 2600 | |
Christopher Faulet | 08e6646 | 2019-05-23 16:44:59 +0200 | [diff] [blame] | 2601 | if (close && !htx_add_header(htx, ist("Connection"), ist("close"))) |
| 2602 | goto fail; |
| 2603 | |
| 2604 | if (!htx_add_header(htx, ist("Content-length"), ist("0")) || |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2605 | !htx_add_header(htx, ist("Location"), location)) |
| 2606 | goto fail; |
| 2607 | |
| 2608 | if (rule->code == 302 || rule->code == 303 || rule->code == 307) { |
| 2609 | if (!htx_add_header(htx, ist("Cache-Control"), ist("no-cache"))) |
| 2610 | goto fail; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2611 | } |
| 2612 | |
| 2613 | if (rule->cookie_len) { |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2614 | if (!htx_add_header(htx, ist("Set-Cookie"), ist2(rule->cookie_str, rule->cookie_len))) |
| 2615 | goto fail; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2616 | } |
| 2617 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2618 | if (!htx_add_endof(htx, HTX_BLK_EOH)) |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2619 | goto fail; |
| 2620 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 2621 | htx->flags |= HTX_FL_EOM; |
Kevin Zhu | 96b3639 | 2020-01-07 09:42:55 +0100 | [diff] [blame] | 2622 | htx_to_buf(htx, &res->buf); |
Christopher Faulet | a72a7e4 | 2020-01-28 09:28:11 +0100 | [diff] [blame] | 2623 | if (!http_forward_proxy_resp(s, 1)) |
| 2624 | goto fail; |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2625 | |
Christopher Faulet | 60b33a5 | 2020-01-28 09:18:10 +0100 | [diff] [blame] | 2626 | if (rule->flags & REDIRECT_FLAG_FROM_REQ) { |
| 2627 | /* let's log the request time */ |
| 2628 | s->logs.tv_request = now; |
| 2629 | req->analysers &= AN_REQ_FLT_END; |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2630 | |
Christopher Faulet | 60b33a5 | 2020-01-28 09:18:10 +0100 | [diff] [blame] | 2631 | if (s->sess->fe == s->be) /* report it if the request was intercepted by the frontend */ |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2632 | _HA_ATOMIC_INC(&s->sess->fe->fe_counters.intercepted_req); |
Christopher Faulet | 60b33a5 | 2020-01-28 09:18:10 +0100 | [diff] [blame] | 2633 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2634 | |
| 2635 | if (!(s->flags & SF_ERR_MASK)) |
| 2636 | s->flags |= SF_ERR_LOCAL; |
| 2637 | if (!(s->flags & SF_FINST_MASK)) |
Christopher Faulet | 60b33a5 | 2020-01-28 09:18:10 +0100 | [diff] [blame] | 2638 | s->flags |= ((rule->flags & REDIRECT_FLAG_FROM_REQ) ? SF_FINST_R : SF_FINST_H); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2639 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2640 | free_trash_chunk(chunk); |
| 2641 | return 1; |
| 2642 | |
| 2643 | fail: |
| 2644 | /* If an error occurred, remove the incomplete HTTP response from the |
| 2645 | * buffer */ |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 2646 | channel_htx_truncate(res, htxbuf(&res->buf)); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2647 | free_trash_chunk(chunk); |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2648 | return 0; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2649 | } |
| 2650 | |
Christopher Faulet | 92d34fe | 2019-12-17 09:20:34 +0100 | [diff] [blame] | 2651 | /* Replace all headers matching the name <name>. The header value is replaced if |
| 2652 | * it matches the regex <re>. <str> is used for the replacement. If <full> is |
| 2653 | * set to 1, the full-line is matched and replaced. Otherwise, comma-separated |
| 2654 | * values are evaluated one by one. It returns 0 on success and -1 on error. |
| 2655 | */ |
| 2656 | int http_replace_hdrs(struct stream* s, struct htx *htx, struct ist name, |
| 2657 | const char *str, struct my_regex *re, int full) |
Christopher Faulet | 7233352 | 2018-10-24 11:25:02 +0200 | [diff] [blame] | 2658 | { |
| 2659 | struct http_hdr_ctx ctx; |
| 2660 | struct buffer *output = get_trash_chunk(); |
| 2661 | |
Christopher Faulet | 7233352 | 2018-10-24 11:25:02 +0200 | [diff] [blame] | 2662 | ctx.blk = NULL; |
Christopher Faulet | 92d34fe | 2019-12-17 09:20:34 +0100 | [diff] [blame] | 2663 | while (http_find_header(htx, name, &ctx, full)) { |
Christopher Faulet | 7233352 | 2018-10-24 11:25:02 +0200 | [diff] [blame] | 2664 | if (!regex_exec_match2(re, ctx.value.ptr, ctx.value.len, MAX_MATCH, pmatch, 0)) |
| 2665 | continue; |
| 2666 | |
| 2667 | output->data = exp_replace(output->area, output->size, ctx.value.ptr, str, pmatch); |
| 2668 | if (output->data == -1) |
| 2669 | return -1; |
| 2670 | if (!http_replace_header_value(htx, &ctx, ist2(output->area, output->data))) |
| 2671 | return -1; |
| 2672 | } |
| 2673 | return 0; |
| 2674 | } |
| 2675 | |
Christopher Faulet | 8d8ac19 | 2018-10-24 11:27:39 +0200 | [diff] [blame] | 2676 | /* This function executes one of the set-{method,path,query,uri} actions. It |
| 2677 | * takes the string from the variable 'replace' with length 'len', then modifies |
| 2678 | * the relevant part of the request line accordingly. Then it updates various |
| 2679 | * pointers to the next elements which were moved, and the total buffer length. |
| 2680 | * It finds the action to be performed in p[2], previously filled by function |
| 2681 | * parse_set_req_line(). It returns 0 in case of success, -1 in case of internal |
| 2682 | * error, though this can be revisited when this code is finally exploited. |
| 2683 | * |
| 2684 | * 'action' can be '0' to replace method, '1' to replace path, '2' to replace |
Christopher Faulet | 312294f | 2020-09-02 17:17:44 +0200 | [diff] [blame] | 2685 | * query string, 3 to replace uri or 4 to replace the path+query. |
Christopher Faulet | 8d8ac19 | 2018-10-24 11:27:39 +0200 | [diff] [blame] | 2686 | * |
| 2687 | * In query string case, the mark question '?' must be set at the start of the |
| 2688 | * string by the caller, event if the replacement query string is empty. |
| 2689 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2690 | int http_req_replace_stline(int action, const char *replace, int len, |
| 2691 | struct proxy *px, struct stream *s) |
Christopher Faulet | 8d8ac19 | 2018-10-24 11:27:39 +0200 | [diff] [blame] | 2692 | { |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 2693 | struct htx *htx = htxbuf(&s->req.buf); |
Christopher Faulet | 8d8ac19 | 2018-10-24 11:27:39 +0200 | [diff] [blame] | 2694 | |
| 2695 | switch (action) { |
| 2696 | case 0: // method |
| 2697 | if (!http_replace_req_meth(htx, ist2(replace, len))) |
| 2698 | return -1; |
| 2699 | break; |
| 2700 | |
| 2701 | case 1: // path |
Christopher Faulet | b8ce505 | 2020-08-31 16:11:57 +0200 | [diff] [blame] | 2702 | if (!http_replace_req_path(htx, ist2(replace, len), 0)) |
Christopher Faulet | 8d8ac19 | 2018-10-24 11:27:39 +0200 | [diff] [blame] | 2703 | return -1; |
| 2704 | break; |
| 2705 | |
| 2706 | case 2: // query |
| 2707 | if (!http_replace_req_query(htx, ist2(replace, len))) |
| 2708 | return -1; |
| 2709 | break; |
| 2710 | |
| 2711 | case 3: // uri |
| 2712 | if (!http_replace_req_uri(htx, ist2(replace, len))) |
| 2713 | return -1; |
| 2714 | break; |
| 2715 | |
Christopher Faulet | 312294f | 2020-09-02 17:17:44 +0200 | [diff] [blame] | 2716 | case 4: // path + query |
| 2717 | if (!http_replace_req_path(htx, ist2(replace, len), 1)) |
| 2718 | return -1; |
| 2719 | break; |
| 2720 | |
Christopher Faulet | 8d8ac19 | 2018-10-24 11:27:39 +0200 | [diff] [blame] | 2721 | default: |
| 2722 | return -1; |
| 2723 | } |
| 2724 | return 0; |
| 2725 | } |
| 2726 | |
| 2727 | /* This function replace the HTTP status code and the associated message. The |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 2728 | * variable <status> contains the new status code. This function never fails. It |
| 2729 | * returns 0 in case of success, -1 in case of internal error. |
Christopher Faulet | 8d8ac19 | 2018-10-24 11:27:39 +0200 | [diff] [blame] | 2730 | */ |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 2731 | int http_res_set_status(unsigned int status, struct ist reason, struct stream *s) |
Christopher Faulet | 8d8ac19 | 2018-10-24 11:27:39 +0200 | [diff] [blame] | 2732 | { |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 2733 | struct htx *htx = htxbuf(&s->res.buf); |
Christopher Faulet | 8d8ac19 | 2018-10-24 11:27:39 +0200 | [diff] [blame] | 2734 | char *res; |
| 2735 | |
| 2736 | chunk_reset(&trash); |
| 2737 | res = ultoa_o(status, trash.area, trash.size); |
| 2738 | trash.data = res - trash.area; |
| 2739 | |
| 2740 | /* Do we have a custom reason format string? */ |
Tim Duesterhus | e296d3e | 2020-03-05 17:56:31 +0100 | [diff] [blame] | 2741 | if (!isttest(reason)) { |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 2742 | const char *str = http_get_reason(status); |
Tim Duesterhus | dcf753a | 2021-03-04 17:31:47 +0100 | [diff] [blame] | 2743 | reason = ist(str); |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 2744 | } |
Christopher Faulet | 8d8ac19 | 2018-10-24 11:27:39 +0200 | [diff] [blame] | 2745 | |
Christopher Faulet | bde2c4c | 2020-08-31 16:43:34 +0200 | [diff] [blame] | 2746 | if (!http_replace_res_status(htx, ist2(trash.area, trash.data), reason)) |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 2747 | return -1; |
| 2748 | return 0; |
Christopher Faulet | 8d8ac19 | 2018-10-24 11:27:39 +0200 | [diff] [blame] | 2749 | } |
| 2750 | |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2751 | /* Executes the http-request rules <rules> for stream <s>, proxy <px> and |
| 2752 | * transaction <txn>. Returns the verdict of the first rule that prevents |
| 2753 | * further processing of the request (auth, deny, ...), and defaults to |
| 2754 | * HTTP_RULE_RES_STOP if it executed all rules or stopped on an allow, or |
| 2755 | * HTTP_RULE_RES_CONT if the last rule was reached. It may set the TX_CLTARPIT |
| 2756 | * on txn->flags if it encounters a tarpit rule. If <deny_status> is not NULL |
| 2757 | * and a deny/tarpit rule is matched, it will be filled with this rule's deny |
| 2758 | * status. |
| 2759 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2760 | static enum rule_result http_req_get_intercept_rule(struct proxy *px, struct list *rules, |
Christopher Faulet | b58f62b | 2020-01-13 16:40:13 +0100 | [diff] [blame] | 2761 | struct stream *s) |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2762 | { |
| 2763 | struct session *sess = strm_sess(s); |
| 2764 | struct http_txn *txn = s->txn; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2765 | struct act_rule *rule; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2766 | enum rule_result rule_ret = HTTP_RULE_RES_CONT; |
Christopher Faulet | 105ba6c | 2019-12-18 14:41:51 +0100 | [diff] [blame] | 2767 | int act_opts = 0; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2768 | |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2769 | /* If "the current_rule_list" match the executed rule list, we are in |
| 2770 | * resume condition. If a resume is needed it is always in the action |
| 2771 | * and never in the ACL or converters. In this case, we initialise the |
| 2772 | * current rule, and go to the action execution point. |
| 2773 | */ |
| 2774 | if (s->current_rule) { |
| 2775 | rule = s->current_rule; |
| 2776 | s->current_rule = NULL; |
| 2777 | if (s->current_rule_list == rules) |
| 2778 | goto resume_execution; |
| 2779 | } |
| 2780 | s->current_rule_list = rules; |
| 2781 | |
Christopher Faulet | 1aea50e | 2020-01-17 16:03:53 +0100 | [diff] [blame] | 2782 | /* start the ruleset evaluation in strict mode */ |
| 2783 | txn->req.flags &= ~HTTP_MSGF_SOFT_RW; |
Christopher Faulet | 46f9554 | 2019-12-20 10:07:22 +0100 | [diff] [blame] | 2784 | |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2785 | list_for_each_entry(rule, rules, list) { |
| 2786 | /* check optional condition */ |
| 2787 | if (rule->cond) { |
| 2788 | int ret; |
| 2789 | |
| 2790 | ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL); |
| 2791 | ret = acl_pass(ret); |
| 2792 | |
| 2793 | if (rule->cond->pol == ACL_COND_UNLESS) |
| 2794 | ret = !ret; |
| 2795 | |
| 2796 | if (!ret) /* condition not matched */ |
| 2797 | continue; |
| 2798 | } |
| 2799 | |
Christopher Faulet | 105ba6c | 2019-12-18 14:41:51 +0100 | [diff] [blame] | 2800 | act_opts |= ACT_OPT_FIRST; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2801 | resume_execution: |
Amaury Denoyelle | 0351773 | 2021-05-07 14:25:01 +0200 | [diff] [blame] | 2802 | if (rule->kw->flags & KWF_EXPERIMENTAL) |
| 2803 | mark_tainted(TAINTED_ACTION_EXP_EXECUTED); |
| 2804 | |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 2805 | /* Always call the action function if defined */ |
| 2806 | if (rule->action_ptr) { |
| 2807 | if ((s->req.flags & CF_READ_ERROR) || |
| 2808 | ((s->req.flags & (CF_SHUTR|CF_READ_NULL)) && |
| 2809 | (px->options & PR_O_ABRT_CLOSE))) |
Christopher Faulet | 105ba6c | 2019-12-18 14:41:51 +0100 | [diff] [blame] | 2810 | act_opts |= ACT_OPT_FINAL; |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 2811 | |
Christopher Faulet | 105ba6c | 2019-12-18 14:41:51 +0100 | [diff] [blame] | 2812 | switch (rule->action_ptr(rule, px, sess, s, act_opts)) { |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 2813 | case ACT_RET_CONT: |
| 2814 | break; |
| 2815 | case ACT_RET_STOP: |
| 2816 | rule_ret = HTTP_RULE_RES_STOP; |
| 2817 | goto end; |
| 2818 | case ACT_RET_YIELD: |
| 2819 | s->current_rule = rule; |
| 2820 | rule_ret = HTTP_RULE_RES_YIELD; |
| 2821 | goto end; |
| 2822 | case ACT_RET_ERR: |
| 2823 | rule_ret = HTTP_RULE_RES_ERROR; |
| 2824 | goto end; |
| 2825 | case ACT_RET_DONE: |
| 2826 | rule_ret = HTTP_RULE_RES_DONE; |
| 2827 | goto end; |
| 2828 | case ACT_RET_DENY: |
Christopher Faulet | b58f62b | 2020-01-13 16:40:13 +0100 | [diff] [blame] | 2829 | if (txn->status == -1) |
| 2830 | txn->status = 403; |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 2831 | rule_ret = HTTP_RULE_RES_DENY; |
| 2832 | goto end; |
| 2833 | case ACT_RET_ABRT: |
| 2834 | rule_ret = HTTP_RULE_RES_ABRT; |
| 2835 | goto end; |
| 2836 | case ACT_RET_INV: |
| 2837 | rule_ret = HTTP_RULE_RES_BADREQ; |
| 2838 | goto end; |
| 2839 | } |
| 2840 | continue; /* eval the next rule */ |
| 2841 | } |
| 2842 | |
| 2843 | /* If not action function defined, check for known actions */ |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2844 | switch (rule->action) { |
| 2845 | case ACT_ACTION_ALLOW: |
| 2846 | rule_ret = HTTP_RULE_RES_STOP; |
| 2847 | goto end; |
| 2848 | |
| 2849 | case ACT_ACTION_DENY: |
Christopher Faulet | 5cb513a | 2020-05-13 17:56:56 +0200 | [diff] [blame] | 2850 | txn->status = rule->arg.http_reply->status; |
| 2851 | txn->http_reply = rule->arg.http_reply; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2852 | rule_ret = HTTP_RULE_RES_DENY; |
| 2853 | goto end; |
| 2854 | |
| 2855 | case ACT_HTTP_REQ_TARPIT: |
| 2856 | txn->flags |= TX_CLTARPIT; |
Christopher Faulet | 5cb513a | 2020-05-13 17:56:56 +0200 | [diff] [blame] | 2857 | txn->status = rule->arg.http_reply->status; |
| 2858 | txn->http_reply = rule->arg.http_reply; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2859 | rule_ret = HTTP_RULE_RES_DENY; |
| 2860 | goto end; |
| 2861 | |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2862 | case ACT_HTTP_REDIR: |
Christopher Faulet | 90d22a8 | 2020-03-06 11:18:39 +0100 | [diff] [blame] | 2863 | rule_ret = HTTP_RULE_RES_ABRT; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2864 | if (!http_apply_redirect_rule(rule->arg.redir, s, txn)) |
Christopher Faulet | 3a26bee | 2019-12-16 12:47:40 +0100 | [diff] [blame] | 2865 | rule_ret = HTTP_RULE_RES_ERROR; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2866 | goto end; |
| 2867 | |
| 2868 | case ACT_HTTP_SET_NICE: |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 2869 | s->task->nice = rule->arg.http.i; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2870 | break; |
| 2871 | |
| 2872 | case ACT_HTTP_SET_TOS: |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 2873 | conn_set_tos(objt_conn(sess->origin), rule->arg.http.i); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2874 | break; |
| 2875 | |
| 2876 | case ACT_HTTP_SET_MARK: |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 2877 | conn_set_mark(objt_conn(sess->origin), rule->arg.http.i); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2878 | break; |
| 2879 | |
| 2880 | case ACT_HTTP_SET_LOGL: |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 2881 | s->logs.level = rule->arg.http.i; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2882 | break; |
| 2883 | |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 2884 | /* other flags exists, but normally, they never be matched. */ |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2885 | default: |
| 2886 | break; |
| 2887 | } |
| 2888 | } |
| 2889 | |
| 2890 | end: |
Christopher Faulet | 1aea50e | 2020-01-17 16:03:53 +0100 | [diff] [blame] | 2891 | /* if the ruleset evaluation is finished reset the strict mode */ |
Christopher Faulet | 46f9554 | 2019-12-20 10:07:22 +0100 | [diff] [blame] | 2892 | if (rule_ret != HTTP_RULE_RES_YIELD) |
Christopher Faulet | 1aea50e | 2020-01-17 16:03:53 +0100 | [diff] [blame] | 2893 | txn->req.flags &= ~HTTP_MSGF_SOFT_RW; |
Christopher Faulet | 46f9554 | 2019-12-20 10:07:22 +0100 | [diff] [blame] | 2894 | |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2895 | /* we reached the end of the rules, nothing to report */ |
| 2896 | return rule_ret; |
| 2897 | } |
| 2898 | |
| 2899 | /* Executes the http-response rules <rules> for stream <s> and proxy <px>. It |
| 2900 | * returns one of 5 possible statuses: HTTP_RULE_RES_CONT, HTTP_RULE_RES_STOP, |
| 2901 | * HTTP_RULE_RES_DONE, HTTP_RULE_RES_YIELD, or HTTP_RULE_RES_BADREQ. If *CONT |
| 2902 | * is returned, the process can continue the evaluation of next rule list. If |
| 2903 | * *STOP or *DONE is returned, the process must stop the evaluation. If *BADREQ |
| 2904 | * is returned, it means the operation could not be processed and a server error |
Christopher Faulet | a53abad | 2020-05-13 08:12:22 +0200 | [diff] [blame] | 2905 | * must be returned. If *YIELD is returned, the caller must call again the |
| 2906 | * function with the same context. |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2907 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2908 | static enum rule_result http_res_get_intercept_rule(struct proxy *px, struct list *rules, |
| 2909 | struct stream *s) |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2910 | { |
| 2911 | struct session *sess = strm_sess(s); |
| 2912 | struct http_txn *txn = s->txn; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2913 | struct act_rule *rule; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2914 | enum rule_result rule_ret = HTTP_RULE_RES_CONT; |
Christopher Faulet | 105ba6c | 2019-12-18 14:41:51 +0100 | [diff] [blame] | 2915 | int act_opts = 0; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2916 | |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2917 | /* If "the current_rule_list" match the executed rule list, we are in |
| 2918 | * resume condition. If a resume is needed it is always in the action |
| 2919 | * and never in the ACL or converters. In this case, we initialise the |
| 2920 | * current rule, and go to the action execution point. |
| 2921 | */ |
| 2922 | if (s->current_rule) { |
| 2923 | rule = s->current_rule; |
| 2924 | s->current_rule = NULL; |
| 2925 | if (s->current_rule_list == rules) |
| 2926 | goto resume_execution; |
| 2927 | } |
| 2928 | s->current_rule_list = rules; |
| 2929 | |
Christopher Faulet | 1aea50e | 2020-01-17 16:03:53 +0100 | [diff] [blame] | 2930 | /* start the ruleset evaluation in strict mode */ |
| 2931 | txn->rsp.flags &= ~HTTP_MSGF_SOFT_RW; |
Christopher Faulet | 46f9554 | 2019-12-20 10:07:22 +0100 | [diff] [blame] | 2932 | |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2933 | list_for_each_entry(rule, rules, list) { |
| 2934 | /* check optional condition */ |
| 2935 | if (rule->cond) { |
| 2936 | int ret; |
| 2937 | |
| 2938 | ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL); |
| 2939 | ret = acl_pass(ret); |
| 2940 | |
| 2941 | if (rule->cond->pol == ACL_COND_UNLESS) |
| 2942 | ret = !ret; |
| 2943 | |
| 2944 | if (!ret) /* condition not matched */ |
| 2945 | continue; |
| 2946 | } |
| 2947 | |
Christopher Faulet | 105ba6c | 2019-12-18 14:41:51 +0100 | [diff] [blame] | 2948 | act_opts |= ACT_OPT_FIRST; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2949 | resume_execution: |
Amaury Denoyelle | 0351773 | 2021-05-07 14:25:01 +0200 | [diff] [blame] | 2950 | if (rule->kw->flags & KWF_EXPERIMENTAL) |
| 2951 | mark_tainted(TAINTED_ACTION_EXP_EXECUTED); |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 2952 | |
| 2953 | /* Always call the action function if defined */ |
| 2954 | if (rule->action_ptr) { |
| 2955 | if ((s->req.flags & CF_READ_ERROR) || |
| 2956 | ((s->req.flags & (CF_SHUTR|CF_READ_NULL)) && |
| 2957 | (px->options & PR_O_ABRT_CLOSE))) |
Christopher Faulet | 105ba6c | 2019-12-18 14:41:51 +0100 | [diff] [blame] | 2958 | act_opts |= ACT_OPT_FINAL; |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 2959 | |
Christopher Faulet | 105ba6c | 2019-12-18 14:41:51 +0100 | [diff] [blame] | 2960 | switch (rule->action_ptr(rule, px, sess, s, act_opts)) { |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 2961 | case ACT_RET_CONT: |
| 2962 | break; |
| 2963 | case ACT_RET_STOP: |
| 2964 | rule_ret = HTTP_RULE_RES_STOP; |
| 2965 | goto end; |
| 2966 | case ACT_RET_YIELD: |
| 2967 | s->current_rule = rule; |
| 2968 | rule_ret = HTTP_RULE_RES_YIELD; |
| 2969 | goto end; |
| 2970 | case ACT_RET_ERR: |
| 2971 | rule_ret = HTTP_RULE_RES_ERROR; |
| 2972 | goto end; |
| 2973 | case ACT_RET_DONE: |
| 2974 | rule_ret = HTTP_RULE_RES_DONE; |
| 2975 | goto end; |
| 2976 | case ACT_RET_DENY: |
Christopher Faulet | b58f62b | 2020-01-13 16:40:13 +0100 | [diff] [blame] | 2977 | if (txn->status == -1) |
| 2978 | txn->status = 502; |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 2979 | rule_ret = HTTP_RULE_RES_DENY; |
| 2980 | goto end; |
| 2981 | case ACT_RET_ABRT: |
| 2982 | rule_ret = HTTP_RULE_RES_ABRT; |
| 2983 | goto end; |
| 2984 | case ACT_RET_INV: |
| 2985 | rule_ret = HTTP_RULE_RES_BADREQ; |
| 2986 | goto end; |
| 2987 | } |
| 2988 | continue; /* eval the next rule */ |
| 2989 | } |
| 2990 | |
| 2991 | /* If not action function defined, check for known actions */ |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2992 | switch (rule->action) { |
| 2993 | case ACT_ACTION_ALLOW: |
| 2994 | rule_ret = HTTP_RULE_RES_STOP; /* "allow" rules are OK */ |
| 2995 | goto end; |
| 2996 | |
| 2997 | case ACT_ACTION_DENY: |
Christopher Faulet | 5cb513a | 2020-05-13 17:56:56 +0200 | [diff] [blame] | 2998 | txn->status = rule->arg.http_reply->status; |
| 2999 | txn->http_reply = rule->arg.http_reply; |
Christopher Faulet | 3a26bee | 2019-12-16 12:47:40 +0100 | [diff] [blame] | 3000 | rule_ret = HTTP_RULE_RES_DENY; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3001 | goto end; |
| 3002 | |
| 3003 | case ACT_HTTP_SET_NICE: |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 3004 | s->task->nice = rule->arg.http.i; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3005 | break; |
| 3006 | |
| 3007 | case ACT_HTTP_SET_TOS: |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 3008 | conn_set_tos(objt_conn(sess->origin), rule->arg.http.i); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3009 | break; |
| 3010 | |
| 3011 | case ACT_HTTP_SET_MARK: |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 3012 | conn_set_mark(objt_conn(sess->origin), rule->arg.http.i); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3013 | break; |
| 3014 | |
| 3015 | case ACT_HTTP_SET_LOGL: |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 3016 | s->logs.level = rule->arg.http.i; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3017 | break; |
| 3018 | |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3019 | case ACT_HTTP_REDIR: |
Christopher Faulet | 49c2a70 | 2020-03-06 15:44:37 +0100 | [diff] [blame] | 3020 | rule_ret = HTTP_RULE_RES_ABRT; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 3021 | if (!http_apply_redirect_rule(rule->arg.redir, s, txn)) |
Christopher Faulet | 3a26bee | 2019-12-16 12:47:40 +0100 | [diff] [blame] | 3022 | rule_ret = HTTP_RULE_RES_ERROR; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3023 | goto end; |
| 3024 | |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 3025 | /* other flags exists, but normally, they never be matched. */ |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3026 | default: |
| 3027 | break; |
| 3028 | } |
| 3029 | } |
| 3030 | |
| 3031 | end: |
Christopher Faulet | 1aea50e | 2020-01-17 16:03:53 +0100 | [diff] [blame] | 3032 | /* if the ruleset evaluation is finished reset the strict mode */ |
Christopher Faulet | 46f9554 | 2019-12-20 10:07:22 +0100 | [diff] [blame] | 3033 | if (rule_ret != HTTP_RULE_RES_YIELD) |
Christopher Faulet | 1aea50e | 2020-01-17 16:03:53 +0100 | [diff] [blame] | 3034 | txn->rsp.flags &= ~HTTP_MSGF_SOFT_RW; |
Christopher Faulet | 46f9554 | 2019-12-20 10:07:22 +0100 | [diff] [blame] | 3035 | |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3036 | /* we reached the end of the rules, nothing to report */ |
| 3037 | return rule_ret; |
| 3038 | } |
| 3039 | |
Christopher Faulet | 6d0c3df | 2020-01-22 09:26:35 +0100 | [diff] [blame] | 3040 | /* Executes backend and frontend http-after-response rules for the stream <s>, |
| 3041 | * in that order. it return 1 on success and 0 on error. It is the caller |
| 3042 | * responsibility to catch error or ignore it. If it catches it, this function |
| 3043 | * may be called a second time, for the internal error. |
| 3044 | */ |
| 3045 | int http_eval_after_res_rules(struct stream *s) |
| 3046 | { |
| 3047 | struct session *sess = s->sess; |
| 3048 | enum rule_result ret = HTTP_RULE_RES_CONT; |
| 3049 | |
Christopher Faulet | 507479b | 2020-05-15 12:29:46 +0200 | [diff] [blame] | 3050 | /* Eval after-response ruleset only if the reply is not const */ |
| 3051 | if (s->txn->flags & TX_CONST_REPLY) |
| 3052 | goto end; |
| 3053 | |
Christopher Faulet | 6d0c3df | 2020-01-22 09:26:35 +0100 | [diff] [blame] | 3054 | /* prune the request variables if not already done and swap to the response variables. */ |
| 3055 | if (s->vars_reqres.scope != SCOPE_RES) { |
| 3056 | if (!LIST_ISEMPTY(&s->vars_reqres.head)) |
| 3057 | vars_prune(&s->vars_reqres, s->sess, s); |
| 3058 | vars_init(&s->vars_reqres, SCOPE_RES); |
| 3059 | } |
| 3060 | |
| 3061 | ret = http_res_get_intercept_rule(s->be, &s->be->http_after_res_rules, s); |
| 3062 | if ((ret == HTTP_RULE_RES_CONT || ret == HTTP_RULE_RES_STOP) && sess->fe != s->be) |
| 3063 | ret = http_res_get_intercept_rule(sess->fe, &sess->fe->http_after_res_rules, s); |
| 3064 | |
Christopher Faulet | 507479b | 2020-05-15 12:29:46 +0200 | [diff] [blame] | 3065 | end: |
Christopher Faulet | 6d0c3df | 2020-01-22 09:26:35 +0100 | [diff] [blame] | 3066 | /* All other codes than CONTINUE, STOP or DONE are forbidden */ |
| 3067 | return (ret == HTTP_RULE_RES_CONT || ret == HTTP_RULE_RES_STOP || ret == HTTP_RULE_RES_DONE); |
| 3068 | } |
| 3069 | |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3070 | /* |
| 3071 | * Manage client-side cookie. It can impact performance by about 2% so it is |
| 3072 | * desirable to call it only when needed. This code is quite complex because |
| 3073 | * of the multiple very crappy and ambiguous syntaxes we have to support. it |
| 3074 | * highly recommended not to touch this part without a good reason ! |
| 3075 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 3076 | static void http_manage_client_side_cookies(struct stream *s, struct channel *req) |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3077 | { |
| 3078 | struct session *sess = s->sess; |
| 3079 | struct http_txn *txn = s->txn; |
| 3080 | struct htx *htx; |
| 3081 | struct http_hdr_ctx ctx; |
| 3082 | char *hdr_beg, *hdr_end, *del_from; |
| 3083 | char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next; |
| 3084 | int preserve_hdr; |
| 3085 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 3086 | htx = htxbuf(&req->buf); |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3087 | ctx.blk = NULL; |
| 3088 | while (http_find_header(htx, ist("Cookie"), &ctx, 1)) { |
Olivier Houchard | f0f4238 | 2019-07-22 17:43:46 +0200 | [diff] [blame] | 3089 | int is_first = 1; |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3090 | del_from = NULL; /* nothing to be deleted */ |
| 3091 | preserve_hdr = 0; /* assume we may kill the whole header */ |
| 3092 | |
| 3093 | /* Now look for cookies. Conforming to RFC2109, we have to support |
| 3094 | * attributes whose name begin with a '$', and associate them with |
| 3095 | * the right cookie, if we want to delete this cookie. |
| 3096 | * So there are 3 cases for each cookie read : |
| 3097 | * 1) it's a special attribute, beginning with a '$' : ignore it. |
| 3098 | * 2) it's a server id cookie that we *MAY* want to delete : save |
| 3099 | * some pointers on it (last semi-colon, beginning of cookie...) |
| 3100 | * 3) it's an application cookie : we *MAY* have to delete a previous |
| 3101 | * "special" cookie. |
| 3102 | * At the end of loop, if a "special" cookie remains, we may have to |
| 3103 | * remove it. If no application cookie persists in the header, we |
| 3104 | * *MUST* delete it. |
| 3105 | * |
| 3106 | * Note: RFC2965 is unclear about the processing of spaces around |
| 3107 | * the equal sign in the ATTR=VALUE form. A careful inspection of |
| 3108 | * the RFC explicitly allows spaces before it, and not within the |
| 3109 | * tokens (attrs or values). An inspection of RFC2109 allows that |
| 3110 | * too but section 10.1.3 lets one think that spaces may be allowed |
| 3111 | * after the equal sign too, resulting in some (rare) buggy |
| 3112 | * implementations trying to do that. So let's do what servers do. |
| 3113 | * Latest ietf draft forbids spaces all around. Also, earlier RFCs |
| 3114 | * allowed quoted strings in values, with any possible character |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 3115 | * after a backslash, including control chars and delimiters, which |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3116 | * causes parsing to become ambiguous. Browsers also allow spaces |
| 3117 | * within values even without quotes. |
| 3118 | * |
| 3119 | * We have to keep multiple pointers in order to support cookie |
| 3120 | * removal at the beginning, middle or end of header without |
| 3121 | * corrupting the header. All of these headers are valid : |
| 3122 | * |
| 3123 | * hdr_beg hdr_end |
| 3124 | * | | |
| 3125 | * v | |
| 3126 | * NAME1=VALUE1;NAME2=VALUE2;NAME3=VALUE3 | |
| 3127 | * NAME1=VALUE1;NAME2_ONLY ;NAME3=VALUE3 v |
| 3128 | * NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3 |
| 3129 | * | | | | | | | |
| 3130 | * | | | | | | | |
| 3131 | * | | | | | | +--> next |
| 3132 | * | | | | | +----> val_end |
| 3133 | * | | | | +-----------> val_beg |
| 3134 | * | | | +--------------> equal |
| 3135 | * | | +----------------> att_end |
| 3136 | * | +---------------------> att_beg |
| 3137 | * +--------------------------> prev |
| 3138 | * |
| 3139 | */ |
| 3140 | hdr_beg = ctx.value.ptr; |
| 3141 | hdr_end = hdr_beg + ctx.value.len; |
| 3142 | for (prev = hdr_beg; prev < hdr_end; prev = next) { |
| 3143 | /* Iterate through all cookies on this line */ |
| 3144 | |
| 3145 | /* find att_beg */ |
| 3146 | att_beg = prev; |
Olivier Houchard | f0f4238 | 2019-07-22 17:43:46 +0200 | [diff] [blame] | 3147 | if (!is_first) |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3148 | att_beg++; |
Olivier Houchard | f0f4238 | 2019-07-22 17:43:46 +0200 | [diff] [blame] | 3149 | is_first = 0; |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3150 | |
| 3151 | while (att_beg < hdr_end && HTTP_IS_SPHT(*att_beg)) |
| 3152 | att_beg++; |
| 3153 | |
| 3154 | /* find att_end : this is the first character after the last non |
| 3155 | * space before the equal. It may be equal to hdr_end. |
| 3156 | */ |
| 3157 | equal = att_end = att_beg; |
| 3158 | while (equal < hdr_end) { |
| 3159 | if (*equal == '=' || *equal == ',' || *equal == ';') |
| 3160 | break; |
| 3161 | if (HTTP_IS_SPHT(*equal++)) |
| 3162 | continue; |
| 3163 | att_end = equal; |
| 3164 | } |
| 3165 | |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 3166 | /* here, <equal> points to '=', a delimiter or the end. <att_end> |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3167 | * is between <att_beg> and <equal>, both may be identical. |
| 3168 | */ |
| 3169 | /* look for end of cookie if there is an equal sign */ |
| 3170 | if (equal < hdr_end && *equal == '=') { |
| 3171 | /* look for the beginning of the value */ |
| 3172 | val_beg = equal + 1; |
| 3173 | while (val_beg < hdr_end && HTTP_IS_SPHT(*val_beg)) |
| 3174 | val_beg++; |
| 3175 | |
| 3176 | /* find the end of the value, respecting quotes */ |
| 3177 | next = http_find_cookie_value_end(val_beg, hdr_end); |
| 3178 | |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 3179 | /* make val_end point to the first white space or delimiter after the value */ |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3180 | val_end = next; |
| 3181 | while (val_end > val_beg && HTTP_IS_SPHT(*(val_end - 1))) |
| 3182 | val_end--; |
| 3183 | } |
| 3184 | else |
| 3185 | val_beg = val_end = next = equal; |
| 3186 | |
| 3187 | /* We have nothing to do with attributes beginning with |
| 3188 | * '$'. However, they will automatically be removed if a |
| 3189 | * header before them is removed, since they're supposed |
| 3190 | * to be linked together. |
| 3191 | */ |
| 3192 | if (*att_beg == '$') |
| 3193 | continue; |
| 3194 | |
| 3195 | /* Ignore cookies with no equal sign */ |
| 3196 | if (equal == next) { |
| 3197 | /* This is not our cookie, so we must preserve it. But if we already |
| 3198 | * scheduled another cookie for removal, we cannot remove the |
| 3199 | * complete header, but we can remove the previous block itself. |
| 3200 | */ |
| 3201 | preserve_hdr = 1; |
| 3202 | if (del_from != NULL) { |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 3203 | int delta = http_del_hdr_value(hdr_beg, hdr_end, &del_from, prev); |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3204 | val_end += delta; |
| 3205 | next += delta; |
| 3206 | hdr_end += delta; |
| 3207 | prev = del_from; |
| 3208 | del_from = NULL; |
| 3209 | } |
| 3210 | continue; |
| 3211 | } |
| 3212 | |
| 3213 | /* if there are spaces around the equal sign, we need to |
| 3214 | * strip them otherwise we'll get trouble for cookie captures, |
| 3215 | * or even for rewrites. Since this happens extremely rarely, |
| 3216 | * it does not hurt performance. |
| 3217 | */ |
| 3218 | if (unlikely(att_end != equal || val_beg > equal + 1)) { |
| 3219 | int stripped_before = 0; |
| 3220 | int stripped_after = 0; |
| 3221 | |
| 3222 | if (att_end != equal) { |
| 3223 | memmove(att_end, equal, hdr_end - equal); |
| 3224 | stripped_before = (att_end - equal); |
| 3225 | equal += stripped_before; |
| 3226 | val_beg += stripped_before; |
| 3227 | } |
| 3228 | |
| 3229 | if (val_beg > equal + 1) { |
| 3230 | memmove(equal + 1, val_beg, hdr_end + stripped_before - val_beg); |
| 3231 | stripped_after = (equal + 1) - val_beg; |
| 3232 | val_beg += stripped_after; |
| 3233 | stripped_before += stripped_after; |
| 3234 | } |
| 3235 | |
| 3236 | val_end += stripped_before; |
| 3237 | next += stripped_before; |
| 3238 | hdr_end += stripped_before; |
| 3239 | } |
| 3240 | /* now everything is as on the diagram above */ |
| 3241 | |
| 3242 | /* First, let's see if we want to capture this cookie. We check |
| 3243 | * that we don't already have a client side cookie, because we |
| 3244 | * can only capture one. Also as an optimisation, we ignore |
| 3245 | * cookies shorter than the declared name. |
| 3246 | */ |
| 3247 | if (sess->fe->capture_name != NULL && txn->cli_cookie == NULL && |
| 3248 | (val_end - att_beg >= sess->fe->capture_namelen) && |
| 3249 | memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) { |
| 3250 | int log_len = val_end - att_beg; |
| 3251 | |
| 3252 | if ((txn->cli_cookie = pool_alloc(pool_head_capture)) == NULL) { |
| 3253 | ha_alert("HTTP logging : out of memory.\n"); |
| 3254 | } else { |
| 3255 | if (log_len > sess->fe->capture_len) |
| 3256 | log_len = sess->fe->capture_len; |
| 3257 | memcpy(txn->cli_cookie, att_beg, log_len); |
| 3258 | txn->cli_cookie[log_len] = 0; |
| 3259 | } |
| 3260 | } |
| 3261 | |
| 3262 | /* Persistence cookies in passive, rewrite or insert mode have the |
| 3263 | * following form : |
| 3264 | * |
| 3265 | * Cookie: NAME=SRV[|<lastseen>[|<firstseen>]] |
| 3266 | * |
| 3267 | * For cookies in prefix mode, the form is : |
| 3268 | * |
| 3269 | * Cookie: NAME=SRV~VALUE |
| 3270 | */ |
| 3271 | if ((att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) && |
| 3272 | (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) { |
| 3273 | struct server *srv = s->be->srv; |
| 3274 | char *delim; |
| 3275 | |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 3276 | /* if we're in cookie prefix mode, we'll search the delimiter so that we |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3277 | * have the server ID between val_beg and delim, and the original cookie between |
| 3278 | * delim+1 and val_end. Otherwise, delim==val_end : |
| 3279 | * |
| 3280 | * hdr_beg |
| 3281 | * | |
| 3282 | * v |
| 3283 | * NAME=SRV; # in all but prefix modes |
| 3284 | * NAME=SRV~OPAQUE ; # in prefix mode |
| 3285 | * || || | |+-> next |
| 3286 | * || || | +--> val_end |
| 3287 | * || || +---------> delim |
| 3288 | * || |+------------> val_beg |
| 3289 | * || +-------------> att_end = equal |
| 3290 | * |+-----------------> att_beg |
| 3291 | * +------------------> prev |
| 3292 | * |
| 3293 | */ |
| 3294 | if (s->be->ck_opts & PR_CK_PFX) { |
| 3295 | for (delim = val_beg; delim < val_end; delim++) |
| 3296 | if (*delim == COOKIE_DELIM) |
| 3297 | break; |
| 3298 | } |
| 3299 | else { |
| 3300 | char *vbar1; |
| 3301 | delim = val_end; |
| 3302 | /* Now check if the cookie contains a date field, which would |
| 3303 | * appear after a vertical bar ('|') just after the server name |
| 3304 | * and before the delimiter. |
| 3305 | */ |
| 3306 | vbar1 = memchr(val_beg, COOKIE_DELIM_DATE, val_end - val_beg); |
| 3307 | if (vbar1) { |
| 3308 | /* OK, so left of the bar is the server's cookie and |
| 3309 | * right is the last seen date. It is a base64 encoded |
| 3310 | * 30-bit value representing the UNIX date since the |
| 3311 | * epoch in 4-second quantities. |
| 3312 | */ |
| 3313 | int val; |
| 3314 | delim = vbar1++; |
| 3315 | if (val_end - vbar1 >= 5) { |
| 3316 | val = b64tos30(vbar1); |
| 3317 | if (val > 0) |
| 3318 | txn->cookie_last_date = val << 2; |
| 3319 | } |
| 3320 | /* look for a second vertical bar */ |
| 3321 | vbar1 = memchr(vbar1, COOKIE_DELIM_DATE, val_end - vbar1); |
| 3322 | if (vbar1 && (val_end - vbar1 > 5)) { |
| 3323 | val = b64tos30(vbar1 + 1); |
| 3324 | if (val > 0) |
| 3325 | txn->cookie_first_date = val << 2; |
| 3326 | } |
| 3327 | } |
| 3328 | } |
| 3329 | |
| 3330 | /* if the cookie has an expiration date and the proxy wants to check |
| 3331 | * it, then we do that now. We first check if the cookie is too old, |
| 3332 | * then only if it has expired. We detect strict overflow because the |
| 3333 | * time resolution here is not great (4 seconds). Cookies with dates |
| 3334 | * in the future are ignored if their offset is beyond one day. This |
| 3335 | * allows an admin to fix timezone issues without expiring everyone |
| 3336 | * and at the same time avoids keeping unwanted side effects for too |
| 3337 | * long. |
| 3338 | */ |
| 3339 | if (txn->cookie_first_date && s->be->cookie_maxlife && |
| 3340 | (((signed)(date.tv_sec - txn->cookie_first_date) > (signed)s->be->cookie_maxlife) || |
| 3341 | ((signed)(txn->cookie_first_date - date.tv_sec) > 86400))) { |
| 3342 | txn->flags &= ~TX_CK_MASK; |
| 3343 | txn->flags |= TX_CK_OLD; |
| 3344 | delim = val_beg; // let's pretend we have not found the cookie |
| 3345 | txn->cookie_first_date = 0; |
| 3346 | txn->cookie_last_date = 0; |
| 3347 | } |
| 3348 | else if (txn->cookie_last_date && s->be->cookie_maxidle && |
| 3349 | (((signed)(date.tv_sec - txn->cookie_last_date) > (signed)s->be->cookie_maxidle) || |
| 3350 | ((signed)(txn->cookie_last_date - date.tv_sec) > 86400))) { |
| 3351 | txn->flags &= ~TX_CK_MASK; |
| 3352 | txn->flags |= TX_CK_EXPIRED; |
| 3353 | delim = val_beg; // let's pretend we have not found the cookie |
| 3354 | txn->cookie_first_date = 0; |
| 3355 | txn->cookie_last_date = 0; |
| 3356 | } |
| 3357 | |
| 3358 | /* Here, we'll look for the first running server which supports the cookie. |
| 3359 | * This allows to share a same cookie between several servers, for example |
| 3360 | * to dedicate backup servers to specific servers only. |
| 3361 | * However, to prevent clients from sticking to cookie-less backup server |
| 3362 | * when they have incidentely learned an empty cookie, we simply ignore |
| 3363 | * empty cookies and mark them as invalid. |
| 3364 | * The same behaviour is applied when persistence must be ignored. |
| 3365 | */ |
| 3366 | if ((delim == val_beg) || (s->flags & (SF_IGNORE_PRST | SF_ASSIGNED))) |
| 3367 | srv = NULL; |
| 3368 | |
| 3369 | while (srv) { |
| 3370 | if (srv->cookie && (srv->cklen == delim - val_beg) && |
| 3371 | !memcmp(val_beg, srv->cookie, delim - val_beg)) { |
| 3372 | if ((srv->cur_state != SRV_ST_STOPPED) || |
| 3373 | (s->be->options & PR_O_PERSIST) || |
| 3374 | (s->flags & SF_FORCE_PRST)) { |
| 3375 | /* we found the server and we can use it */ |
| 3376 | txn->flags &= ~TX_CK_MASK; |
| 3377 | txn->flags |= (srv->cur_state != SRV_ST_STOPPED) ? TX_CK_VALID : TX_CK_DOWN; |
| 3378 | s->flags |= SF_DIRECT | SF_ASSIGNED; |
| 3379 | s->target = &srv->obj_type; |
| 3380 | break; |
| 3381 | } else { |
| 3382 | /* we found a server, but it's down, |
| 3383 | * mark it as such and go on in case |
| 3384 | * another one is available. |
| 3385 | */ |
| 3386 | txn->flags &= ~TX_CK_MASK; |
| 3387 | txn->flags |= TX_CK_DOWN; |
| 3388 | } |
| 3389 | } |
| 3390 | srv = srv->next; |
| 3391 | } |
| 3392 | |
| 3393 | if (!srv && !(txn->flags & (TX_CK_DOWN|TX_CK_EXPIRED|TX_CK_OLD))) { |
| 3394 | /* no server matched this cookie or we deliberately skipped it */ |
| 3395 | txn->flags &= ~TX_CK_MASK; |
| 3396 | if ((s->flags & (SF_IGNORE_PRST | SF_ASSIGNED))) |
| 3397 | txn->flags |= TX_CK_UNUSED; |
| 3398 | else |
| 3399 | txn->flags |= TX_CK_INVALID; |
| 3400 | } |
| 3401 | |
| 3402 | /* depending on the cookie mode, we may have to either : |
| 3403 | * - delete the complete cookie if we're in insert+indirect mode, so that |
| 3404 | * the server never sees it ; |
| 3405 | * - remove the server id from the cookie value, and tag the cookie as an |
Joseph Herlant | e9d5c72 | 2018-11-25 11:00:25 -0800 | [diff] [blame] | 3406 | * application cookie so that it does not get accidentally removed later, |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3407 | * if we're in cookie prefix mode |
| 3408 | */ |
| 3409 | if ((s->be->ck_opts & PR_CK_PFX) && (delim != val_end)) { |
| 3410 | int delta; /* negative */ |
| 3411 | |
| 3412 | memmove(val_beg, delim + 1, hdr_end - (delim + 1)); |
| 3413 | delta = val_beg - (delim + 1); |
| 3414 | val_end += delta; |
| 3415 | next += delta; |
| 3416 | hdr_end += delta; |
| 3417 | del_from = NULL; |
| 3418 | preserve_hdr = 1; /* we want to keep this cookie */ |
| 3419 | } |
| 3420 | else if (del_from == NULL && |
| 3421 | (s->be->ck_opts & (PR_CK_INS | PR_CK_IND)) == (PR_CK_INS | PR_CK_IND)) { |
| 3422 | del_from = prev; |
| 3423 | } |
| 3424 | } |
| 3425 | else { |
| 3426 | /* This is not our cookie, so we must preserve it. But if we already |
| 3427 | * scheduled another cookie for removal, we cannot remove the |
| 3428 | * complete header, but we can remove the previous block itself. |
| 3429 | */ |
| 3430 | preserve_hdr = 1; |
| 3431 | |
| 3432 | if (del_from != NULL) { |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 3433 | int delta = http_del_hdr_value(hdr_beg, hdr_end, &del_from, prev); |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3434 | if (att_beg >= del_from) |
| 3435 | att_beg += delta; |
| 3436 | if (att_end >= del_from) |
| 3437 | att_end += delta; |
| 3438 | val_beg += delta; |
| 3439 | val_end += delta; |
| 3440 | next += delta; |
| 3441 | hdr_end += delta; |
| 3442 | prev = del_from; |
| 3443 | del_from = NULL; |
| 3444 | } |
| 3445 | } |
| 3446 | |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3447 | } /* for each cookie */ |
| 3448 | |
| 3449 | |
| 3450 | /* There are no more cookies on this line. |
| 3451 | * We may still have one (or several) marked for deletion at the |
| 3452 | * end of the line. We must do this now in two ways : |
| 3453 | * - if some cookies must be preserved, we only delete from the |
| 3454 | * mark to the end of line ; |
| 3455 | * - if nothing needs to be preserved, simply delete the whole header |
| 3456 | */ |
| 3457 | if (del_from) { |
| 3458 | hdr_end = (preserve_hdr ? del_from : hdr_beg); |
| 3459 | } |
| 3460 | if ((hdr_end - hdr_beg) != ctx.value.len) { |
Christopher Faulet | 3e2638e | 2019-06-18 09:49:16 +0200 | [diff] [blame] | 3461 | if (hdr_beg != hdr_end) |
| 3462 | htx_change_blk_value_len(htx, ctx.blk, hdr_end - hdr_beg); |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3463 | else |
| 3464 | http_remove_header(htx, &ctx); |
| 3465 | } |
| 3466 | } /* for each "Cookie header */ |
| 3467 | } |
| 3468 | |
| 3469 | /* |
| 3470 | * Manage server-side cookies. It can impact performance by about 2% so it is |
| 3471 | * desirable to call it only when needed. This function is also used when we |
| 3472 | * just need to know if there is a cookie (eg: for check-cache). |
| 3473 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 3474 | static void http_manage_server_side_cookies(struct stream *s, struct channel *res) |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3475 | { |
| 3476 | struct session *sess = s->sess; |
| 3477 | struct http_txn *txn = s->txn; |
| 3478 | struct htx *htx; |
| 3479 | struct http_hdr_ctx ctx; |
| 3480 | struct server *srv; |
| 3481 | char *hdr_beg, *hdr_end; |
| 3482 | char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next; |
Willy Tarreau | 6f7a02a | 2019-04-15 21:49:49 +0200 | [diff] [blame] | 3483 | int is_cookie2 = 0; |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3484 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 3485 | htx = htxbuf(&res->buf); |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3486 | |
| 3487 | ctx.blk = NULL; |
| 3488 | while (1) { |
Olivier Houchard | f0f4238 | 2019-07-22 17:43:46 +0200 | [diff] [blame] | 3489 | int is_first = 1; |
| 3490 | |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3491 | if (!http_find_header(htx, ist("Set-Cookie"), &ctx, 1)) { |
| 3492 | if (!http_find_header(htx, ist("Set-Cookie2"), &ctx, 1)) |
| 3493 | break; |
| 3494 | is_cookie2 = 1; |
| 3495 | } |
| 3496 | |
| 3497 | /* OK, right now we know we have a Set-Cookie* at hdr_beg, and |
| 3498 | * <prev> points to the colon. |
| 3499 | */ |
| 3500 | txn->flags |= TX_SCK_PRESENT; |
| 3501 | |
| 3502 | /* Maybe we only wanted to see if there was a Set-Cookie (eg: |
| 3503 | * check-cache is enabled) and we are not interested in checking |
| 3504 | * them. Warning, the cookie capture is declared in the frontend. |
| 3505 | */ |
| 3506 | if (s->be->cookie_name == NULL && sess->fe->capture_name == NULL) |
| 3507 | break; |
| 3508 | |
| 3509 | /* OK so now we know we have to process this response cookie. |
| 3510 | * The format of the Set-Cookie header is slightly different |
| 3511 | * from the format of the Cookie header in that it does not |
| 3512 | * support the comma as a cookie delimiter (thus the header |
| 3513 | * cannot be folded) because the Expires attribute described in |
| 3514 | * the original Netscape's spec may contain an unquoted date |
| 3515 | * with a comma inside. We have to live with this because |
| 3516 | * many browsers don't support Max-Age and some browsers don't |
| 3517 | * support quoted strings. However the Set-Cookie2 header is |
| 3518 | * clean. |
| 3519 | * |
| 3520 | * We have to keep multiple pointers in order to support cookie |
| 3521 | * removal at the beginning, middle or end of header without |
| 3522 | * corrupting the header (in case of set-cookie2). A special |
| 3523 | * pointer, <scav> points to the beginning of the set-cookie-av |
| 3524 | * fields after the first semi-colon. The <next> pointer points |
| 3525 | * either to the end of line (set-cookie) or next unquoted comma |
| 3526 | * (set-cookie2). All of these headers are valid : |
| 3527 | * |
| 3528 | * hdr_beg hdr_end |
| 3529 | * | | |
| 3530 | * v | |
| 3531 | * NAME1 = VALUE 1 ; Secure; Path="/" | |
| 3532 | * NAME=VALUE; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT v |
| 3533 | * NAME = VALUE ; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT |
| 3534 | * NAME1 = VALUE 1 ; Max-Age=0, NAME2=VALUE2; Discard |
| 3535 | * | | | | | | | | |
| 3536 | * | | | | | | | +-> next |
| 3537 | * | | | | | | +------------> scav |
| 3538 | * | | | | | +--------------> val_end |
| 3539 | * | | | | +--------------------> val_beg |
| 3540 | * | | | +----------------------> equal |
| 3541 | * | | +------------------------> att_end |
| 3542 | * | +----------------------------> att_beg |
| 3543 | * +------------------------------> prev |
| 3544 | * -------------------------------> hdr_beg |
| 3545 | */ |
| 3546 | hdr_beg = ctx.value.ptr; |
| 3547 | hdr_end = hdr_beg + ctx.value.len; |
| 3548 | for (prev = hdr_beg; prev < hdr_end; prev = next) { |
| 3549 | |
| 3550 | /* Iterate through all cookies on this line */ |
| 3551 | |
| 3552 | /* find att_beg */ |
| 3553 | att_beg = prev; |
Olivier Houchard | f0f4238 | 2019-07-22 17:43:46 +0200 | [diff] [blame] | 3554 | if (!is_first) |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3555 | att_beg++; |
Olivier Houchard | f0f4238 | 2019-07-22 17:43:46 +0200 | [diff] [blame] | 3556 | is_first = 0; |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3557 | |
| 3558 | while (att_beg < hdr_end && HTTP_IS_SPHT(*att_beg)) |
| 3559 | att_beg++; |
| 3560 | |
| 3561 | /* find att_end : this is the first character after the last non |
| 3562 | * space before the equal. It may be equal to hdr_end. |
| 3563 | */ |
| 3564 | equal = att_end = att_beg; |
| 3565 | |
| 3566 | while (equal < hdr_end) { |
| 3567 | if (*equal == '=' || *equal == ';' || (is_cookie2 && *equal == ',')) |
| 3568 | break; |
| 3569 | if (HTTP_IS_SPHT(*equal++)) |
| 3570 | continue; |
| 3571 | att_end = equal; |
| 3572 | } |
| 3573 | |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 3574 | /* here, <equal> points to '=', a delimiter or the end. <att_end> |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3575 | * is between <att_beg> and <equal>, both may be identical. |
| 3576 | */ |
| 3577 | |
| 3578 | /* look for end of cookie if there is an equal sign */ |
| 3579 | if (equal < hdr_end && *equal == '=') { |
| 3580 | /* look for the beginning of the value */ |
| 3581 | val_beg = equal + 1; |
| 3582 | while (val_beg < hdr_end && HTTP_IS_SPHT(*val_beg)) |
| 3583 | val_beg++; |
| 3584 | |
| 3585 | /* find the end of the value, respecting quotes */ |
| 3586 | next = http_find_cookie_value_end(val_beg, hdr_end); |
| 3587 | |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 3588 | /* make val_end point to the first white space or delimiter after the value */ |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3589 | val_end = next; |
| 3590 | while (val_end > val_beg && HTTP_IS_SPHT(*(val_end - 1))) |
| 3591 | val_end--; |
| 3592 | } |
| 3593 | else { |
| 3594 | /* <equal> points to next comma, semi-colon or EOL */ |
| 3595 | val_beg = val_end = next = equal; |
| 3596 | } |
| 3597 | |
| 3598 | if (next < hdr_end) { |
| 3599 | /* Set-Cookie2 supports multiple cookies, and <next> points to |
| 3600 | * a colon or semi-colon before the end. So skip all attr-value |
| 3601 | * pairs and look for the next comma. For Set-Cookie, since |
| 3602 | * commas are permitted in values, skip to the end. |
| 3603 | */ |
| 3604 | if (is_cookie2) |
| 3605 | next = http_find_hdr_value_end(next, hdr_end); |
| 3606 | else |
| 3607 | next = hdr_end; |
| 3608 | } |
| 3609 | |
| 3610 | /* Now everything is as on the diagram above */ |
| 3611 | |
| 3612 | /* Ignore cookies with no equal sign */ |
| 3613 | if (equal == val_end) |
| 3614 | continue; |
| 3615 | |
| 3616 | /* If there are spaces around the equal sign, we need to |
| 3617 | * strip them otherwise we'll get trouble for cookie captures, |
| 3618 | * or even for rewrites. Since this happens extremely rarely, |
| 3619 | * it does not hurt performance. |
| 3620 | */ |
| 3621 | if (unlikely(att_end != equal || val_beg > equal + 1)) { |
| 3622 | int stripped_before = 0; |
| 3623 | int stripped_after = 0; |
| 3624 | |
| 3625 | if (att_end != equal) { |
| 3626 | memmove(att_end, equal, hdr_end - equal); |
| 3627 | stripped_before = (att_end - equal); |
| 3628 | equal += stripped_before; |
| 3629 | val_beg += stripped_before; |
| 3630 | } |
| 3631 | |
| 3632 | if (val_beg > equal + 1) { |
| 3633 | memmove(equal + 1, val_beg, hdr_end + stripped_before - val_beg); |
| 3634 | stripped_after = (equal + 1) - val_beg; |
| 3635 | val_beg += stripped_after; |
| 3636 | stripped_before += stripped_after; |
| 3637 | } |
| 3638 | |
| 3639 | val_end += stripped_before; |
| 3640 | next += stripped_before; |
| 3641 | hdr_end += stripped_before; |
| 3642 | |
Christopher Faulet | 3e2638e | 2019-06-18 09:49:16 +0200 | [diff] [blame] | 3643 | htx_change_blk_value_len(htx, ctx.blk, hdr_end - hdr_beg); |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3644 | ctx.value.len = hdr_end - hdr_beg; |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3645 | } |
| 3646 | |
| 3647 | /* First, let's see if we want to capture this cookie. We check |
| 3648 | * that we don't already have a server side cookie, because we |
| 3649 | * can only capture one. Also as an optimisation, we ignore |
| 3650 | * cookies shorter than the declared name. |
| 3651 | */ |
| 3652 | if (sess->fe->capture_name != NULL && |
| 3653 | txn->srv_cookie == NULL && |
| 3654 | (val_end - att_beg >= sess->fe->capture_namelen) && |
| 3655 | memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) { |
| 3656 | int log_len = val_end - att_beg; |
| 3657 | if ((txn->srv_cookie = pool_alloc(pool_head_capture)) == NULL) { |
| 3658 | ha_alert("HTTP logging : out of memory.\n"); |
| 3659 | } |
| 3660 | else { |
| 3661 | if (log_len > sess->fe->capture_len) |
| 3662 | log_len = sess->fe->capture_len; |
| 3663 | memcpy(txn->srv_cookie, att_beg, log_len); |
| 3664 | txn->srv_cookie[log_len] = 0; |
| 3665 | } |
| 3666 | } |
| 3667 | |
| 3668 | srv = objt_server(s->target); |
| 3669 | /* now check if we need to process it for persistence */ |
| 3670 | if (!(s->flags & SF_IGNORE_PRST) && |
| 3671 | (att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) && |
| 3672 | (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) { |
| 3673 | /* assume passive cookie by default */ |
| 3674 | txn->flags &= ~TX_SCK_MASK; |
| 3675 | txn->flags |= TX_SCK_FOUND; |
| 3676 | |
| 3677 | /* If the cookie is in insert mode on a known server, we'll delete |
| 3678 | * this occurrence because we'll insert another one later. |
| 3679 | * We'll delete it too if the "indirect" option is set and we're in |
| 3680 | * a direct access. |
| 3681 | */ |
| 3682 | if (s->be->ck_opts & PR_CK_PSV) { |
| 3683 | /* The "preserve" flag was set, we don't want to touch the |
| 3684 | * server's cookie. |
| 3685 | */ |
| 3686 | } |
| 3687 | else if ((srv && (s->be->ck_opts & PR_CK_INS)) || |
| 3688 | ((s->flags & SF_DIRECT) && (s->be->ck_opts & PR_CK_IND))) { |
| 3689 | /* this cookie must be deleted */ |
| 3690 | if (prev == hdr_beg && next == hdr_end) { |
| 3691 | /* whole header */ |
| 3692 | http_remove_header(htx, &ctx); |
| 3693 | /* note: while both invalid now, <next> and <hdr_end> |
| 3694 | * are still equal, so the for() will stop as expected. |
| 3695 | */ |
| 3696 | } else { |
| 3697 | /* just remove the value */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 3698 | int delta = http_del_hdr_value(hdr_beg, hdr_end, &prev, next); |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3699 | next = prev; |
| 3700 | hdr_end += delta; |
| 3701 | } |
| 3702 | txn->flags &= ~TX_SCK_MASK; |
| 3703 | txn->flags |= TX_SCK_DELETED; |
| 3704 | /* and go on with next cookie */ |
| 3705 | } |
| 3706 | else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_RW)) { |
| 3707 | /* replace bytes val_beg->val_end with the cookie name associated |
| 3708 | * with this server since we know it. |
| 3709 | */ |
| 3710 | int sliding, delta; |
| 3711 | |
| 3712 | ctx.value = ist2(val_beg, val_end - val_beg); |
| 3713 | ctx.lws_before = ctx.lws_after = 0; |
| 3714 | http_replace_header_value(htx, &ctx, ist2(srv->cookie, srv->cklen)); |
| 3715 | delta = srv->cklen - (val_end - val_beg); |
| 3716 | sliding = (ctx.value.ptr - val_beg); |
| 3717 | hdr_beg += sliding; |
| 3718 | val_beg += sliding; |
| 3719 | next += sliding + delta; |
| 3720 | hdr_end += sliding + delta; |
| 3721 | |
| 3722 | txn->flags &= ~TX_SCK_MASK; |
| 3723 | txn->flags |= TX_SCK_REPLACED; |
| 3724 | } |
| 3725 | else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_PFX)) { |
| 3726 | /* insert the cookie name associated with this server |
| 3727 | * before existing cookie, and insert a delimiter between them.. |
| 3728 | */ |
| 3729 | int sliding, delta; |
| 3730 | ctx.value = ist2(val_beg, 0); |
| 3731 | ctx.lws_before = ctx.lws_after = 0; |
| 3732 | http_replace_header_value(htx, &ctx, ist2(srv->cookie, srv->cklen + 1)); |
| 3733 | delta = srv->cklen + 1; |
| 3734 | sliding = (ctx.value.ptr - val_beg); |
| 3735 | hdr_beg += sliding; |
| 3736 | val_beg += sliding; |
| 3737 | next += sliding + delta; |
| 3738 | hdr_end += sliding + delta; |
| 3739 | |
| 3740 | val_beg[srv->cklen] = COOKIE_DELIM; |
| 3741 | txn->flags &= ~TX_SCK_MASK; |
| 3742 | txn->flags |= TX_SCK_REPLACED; |
| 3743 | } |
| 3744 | } |
| 3745 | /* that's done for this cookie, check the next one on the same |
| 3746 | * line when next != hdr_end (only if is_cookie2). |
| 3747 | */ |
| 3748 | } |
| 3749 | } |
| 3750 | } |
| 3751 | |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3752 | /* |
| 3753 | * Parses the Cache-Control and Pragma request header fields to determine if |
| 3754 | * the request may be served from the cache and/or if it is cacheable. Updates |
| 3755 | * s->txn->flags. |
| 3756 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 3757 | void http_check_request_for_cacheability(struct stream *s, struct channel *req) |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3758 | { |
| 3759 | struct http_txn *txn = s->txn; |
| 3760 | struct htx *htx; |
Remi Tricot-Le Breton | 40ed97b | 2020-10-28 11:35:15 +0100 | [diff] [blame] | 3761 | struct http_hdr_ctx ctx = { .blk = NULL }; |
| 3762 | int pragma_found, cc_found; |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3763 | |
| 3764 | if ((txn->flags & (TX_CACHEABLE|TX_CACHE_IGNORE)) == TX_CACHE_IGNORE) |
| 3765 | return; /* nothing more to do here */ |
| 3766 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 3767 | htx = htxbuf(&req->buf); |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3768 | pragma_found = cc_found = 0; |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3769 | |
Remi Tricot-Le Breton | 40ed97b | 2020-10-28 11:35:15 +0100 | [diff] [blame] | 3770 | /* Check "pragma" header for HTTP/1.0 compatibility. */ |
| 3771 | if (http_find_header(htx, ist("pragma"), &ctx, 1)) { |
| 3772 | if (isteqi(ctx.value, ist("no-cache"))) { |
| 3773 | pragma_found = 1; |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3774 | } |
Remi Tricot-Le Breton | 40ed97b | 2020-10-28 11:35:15 +0100 | [diff] [blame] | 3775 | } |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3776 | |
Remi Tricot-Le Breton | 40ed97b | 2020-10-28 11:35:15 +0100 | [diff] [blame] | 3777 | ctx.blk = NULL; |
| 3778 | /* Don't use the cache and don't try to store if we found the |
| 3779 | * Authorization header */ |
| 3780 | if (http_find_header(htx, ist("authorization"), &ctx, 1)) { |
| 3781 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
| 3782 | txn->flags |= TX_CACHE_IGNORE; |
| 3783 | } |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3784 | |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3785 | |
Remi Tricot-Le Breton | 40ed97b | 2020-10-28 11:35:15 +0100 | [diff] [blame] | 3786 | /* Look for "cache-control" header and iterate over all the values |
| 3787 | * until we find one that specifies that caching is possible or not. */ |
| 3788 | ctx.blk = NULL; |
| 3789 | while (http_find_header(htx, ist("cache-control"), &ctx, 0)) { |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3790 | cc_found = 1; |
Remi Tricot-Le Breton | 40ed97b | 2020-10-28 11:35:15 +0100 | [diff] [blame] | 3791 | /* We don't check the values after max-age, max-stale nor min-fresh, |
| 3792 | * we simply don't use the cache when they're specified. */ |
| 3793 | if (istmatchi(ctx.value, ist("max-age")) || |
| 3794 | istmatchi(ctx.value, ist("no-cache")) || |
| 3795 | istmatchi(ctx.value, ist("max-stale")) || |
| 3796 | istmatchi(ctx.value, ist("min-fresh"))) { |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3797 | txn->flags |= TX_CACHE_IGNORE; |
| 3798 | continue; |
| 3799 | } |
Remi Tricot-Le Breton | 40ed97b | 2020-10-28 11:35:15 +0100 | [diff] [blame] | 3800 | if (istmatchi(ctx.value, ist("no-store"))) { |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3801 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
| 3802 | continue; |
| 3803 | } |
| 3804 | } |
| 3805 | |
| 3806 | /* RFC7234#5.4: |
| 3807 | * When the Cache-Control header field is also present and |
| 3808 | * understood in a request, Pragma is ignored. |
| 3809 | * When the Cache-Control header field is not present in a |
| 3810 | * request, caches MUST consider the no-cache request |
| 3811 | * pragma-directive as having the same effect as if |
| 3812 | * "Cache-Control: no-cache" were present. |
| 3813 | */ |
| 3814 | if (!cc_found && pragma_found) |
| 3815 | txn->flags |= TX_CACHE_IGNORE; |
| 3816 | } |
| 3817 | |
| 3818 | /* |
| 3819 | * Check if response is cacheable or not. Updates s->txn->flags. |
| 3820 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 3821 | void http_check_response_for_cacheability(struct stream *s, struct channel *res) |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3822 | { |
| 3823 | struct http_txn *txn = s->txn; |
Remi Tricot-Le Breton | 40ed97b | 2020-10-28 11:35:15 +0100 | [diff] [blame] | 3824 | struct http_hdr_ctx ctx = { .blk = NULL }; |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3825 | struct htx *htx; |
Remi Tricot-Le Breton | cc9bf2e | 2020-11-12 11:14:41 +0100 | [diff] [blame] | 3826 | int has_freshness_info = 0; |
| 3827 | int has_validator = 0; |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3828 | |
| 3829 | if (txn->status < 200) { |
| 3830 | /* do not try to cache interim responses! */ |
| 3831 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
| 3832 | return; |
| 3833 | } |
| 3834 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 3835 | htx = htxbuf(&res->buf); |
Remi Tricot-Le Breton | 40ed97b | 2020-10-28 11:35:15 +0100 | [diff] [blame] | 3836 | /* Check "pragma" header for HTTP/1.0 compatibility. */ |
| 3837 | if (http_find_header(htx, ist("pragma"), &ctx, 1)) { |
| 3838 | if (isteqi(ctx.value, ist("no-cache"))) { |
| 3839 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
| 3840 | return; |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3841 | } |
Remi Tricot-Le Breton | 40ed97b | 2020-10-28 11:35:15 +0100 | [diff] [blame] | 3842 | } |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3843 | |
Remi Tricot-Le Breton | 40ed97b | 2020-10-28 11:35:15 +0100 | [diff] [blame] | 3844 | /* Look for "cache-control" header and iterate over all the values |
| 3845 | * until we find one that specifies that caching is possible or not. */ |
| 3846 | ctx.blk = NULL; |
| 3847 | while (http_find_header(htx, ist("cache-control"), &ctx, 0)) { |
| 3848 | if (isteqi(ctx.value, ist("public"))) { |
| 3849 | txn->flags |= TX_CACHEABLE | TX_CACHE_COOK; |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3850 | continue; |
| 3851 | } |
Remi Tricot-Le Breton | 40ed97b | 2020-10-28 11:35:15 +0100 | [diff] [blame] | 3852 | if (isteqi(ctx.value, ist("private")) || |
| 3853 | isteqi(ctx.value, ist("no-cache")) || |
| 3854 | isteqi(ctx.value, ist("no-store")) || |
| 3855 | isteqi(ctx.value, ist("max-age=0")) || |
| 3856 | isteqi(ctx.value, ist("s-maxage=0"))) { |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3857 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
Remi Tricot-Le Breton | 40ed97b | 2020-10-28 11:35:15 +0100 | [diff] [blame] | 3858 | continue; |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3859 | } |
Remi Tricot-Le Breton | 40ed97b | 2020-10-28 11:35:15 +0100 | [diff] [blame] | 3860 | /* We might have a no-cache="set-cookie" form. */ |
| 3861 | if (istmatchi(ctx.value, ist("no-cache=\"set-cookie"))) { |
| 3862 | txn->flags &= ~TX_CACHE_COOK; |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3863 | continue; |
| 3864 | } |
Remi Tricot-Le Breton | cc9bf2e | 2020-11-12 11:14:41 +0100 | [diff] [blame] | 3865 | |
| 3866 | if (istmatchi(ctx.value, ist("s-maxage")) || |
| 3867 | istmatchi(ctx.value, ist("max-age"))) { |
| 3868 | has_freshness_info = 1; |
| 3869 | continue; |
| 3870 | } |
| 3871 | } |
| 3872 | |
| 3873 | /* If no freshness information could be found in Cache-Control values, |
| 3874 | * look for an Expires header. */ |
| 3875 | if (!has_freshness_info) { |
| 3876 | ctx.blk = NULL; |
| 3877 | has_freshness_info = http_find_header(htx, ist("expires"), &ctx, 0); |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3878 | } |
Remi Tricot-Le Breton | cc9bf2e | 2020-11-12 11:14:41 +0100 | [diff] [blame] | 3879 | |
| 3880 | /* If no freshness information could be found in Cache-Control or Expires |
| 3881 | * values, look for an explicit validator. */ |
| 3882 | if (!has_freshness_info) { |
| 3883 | ctx.blk = NULL; |
| 3884 | has_validator = 1; |
| 3885 | if (!http_find_header(htx, ist("etag"), &ctx, 0)) { |
| 3886 | ctx.blk = NULL; |
| 3887 | if (!http_find_header(htx, ist("last-modified"), &ctx, 0)) |
| 3888 | has_validator = 0; |
| 3889 | } |
| 3890 | } |
| 3891 | |
| 3892 | /* We won't store an entry that has neither a cache validator nor an |
| 3893 | * explicit expiration time, as suggested in RFC 7234#3. */ |
| 3894 | if (!has_freshness_info && !has_validator) |
| 3895 | txn->flags |= TX_CACHE_IGNORE; |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 3896 | } |
| 3897 | |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 3898 | /* |
| 3899 | * In a GET, HEAD or POST request, check if the requested URI matches the stats uri |
| 3900 | * for the current backend. |
| 3901 | * |
| 3902 | * It is assumed that the request is either a HEAD, GET, or POST and that the |
| 3903 | * uri_auth field is valid. |
| 3904 | * |
| 3905 | * Returns 1 if stats should be provided, otherwise 0. |
| 3906 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 3907 | static int http_stats_check_uri(struct stream *s, struct http_txn *txn, struct proxy *backend) |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 3908 | { |
| 3909 | struct uri_auth *uri_auth = backend->uri_auth; |
| 3910 | struct htx *htx; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 3911 | struct htx_sl *sl; |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 3912 | struct ist uri; |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 3913 | |
| 3914 | if (!uri_auth) |
| 3915 | return 0; |
| 3916 | |
| 3917 | if (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD && txn->meth != HTTP_METH_POST) |
| 3918 | return 0; |
| 3919 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 3920 | htx = htxbuf(&s->req.buf); |
Christopher Faulet | 297fbb4 | 2019-05-13 14:41:27 +0200 | [diff] [blame] | 3921 | sl = http_get_stline(htx); |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 3922 | uri = htx_sl_req_uri(sl); |
Willy Tarreau | 1eb3b48 | 2019-10-31 15:50:28 +0100 | [diff] [blame] | 3923 | if (*uri_auth->uri_prefix == '/') |
| 3924 | uri = http_get_path(uri); |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 3925 | |
| 3926 | /* check URI size */ |
| 3927 | if (uri_auth->uri_len > uri.len) |
| 3928 | return 0; |
| 3929 | |
| 3930 | if (memcmp(uri.ptr, uri_auth->uri_prefix, uri_auth->uri_len) != 0) |
| 3931 | return 0; |
| 3932 | |
| 3933 | return 1; |
| 3934 | } |
| 3935 | |
| 3936 | /* This function prepares an applet to handle the stats. It can deal with the |
| 3937 | * "100-continue" expectation, check that admin rules are met for POST requests, |
| 3938 | * and program a response message if something was unexpected. It cannot fail |
| 3939 | * and always relies on the stats applet to complete the job. It does not touch |
| 3940 | * analysers nor counters, which are left to the caller. It does not touch |
| 3941 | * s->target which is supposed to already point to the stats applet. The caller |
| 3942 | * is expected to have already assigned an appctx to the stream. |
| 3943 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 3944 | static int http_handle_stats(struct stream *s, struct channel *req) |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 3945 | { |
| 3946 | struct stats_admin_rule *stats_admin_rule; |
| 3947 | struct stream_interface *si = &s->si[1]; |
| 3948 | struct session *sess = s->sess; |
| 3949 | struct http_txn *txn = s->txn; |
| 3950 | struct http_msg *msg = &txn->req; |
| 3951 | struct uri_auth *uri_auth = s->be->uri_auth; |
| 3952 | const char *h, *lookup, *end; |
| 3953 | struct appctx *appctx; |
| 3954 | struct htx *htx; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 3955 | struct htx_sl *sl; |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 3956 | |
| 3957 | appctx = si_appctx(si); |
| 3958 | memset(&appctx->ctx.stats, 0, sizeof(appctx->ctx.stats)); |
| 3959 | appctx->st1 = appctx->st2 = 0; |
| 3960 | appctx->ctx.stats.st_code = STAT_STATUS_INIT; |
Willy Tarreau | 676c29e | 2019-10-09 10:50:01 +0200 | [diff] [blame] | 3961 | appctx->ctx.stats.flags |= uri_auth->flags; |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 3962 | appctx->ctx.stats.flags |= STAT_FMT_HTML; /* assume HTML mode by default */ |
| 3963 | if ((msg->flags & HTTP_MSGF_VER_11) && (txn->meth != HTTP_METH_HEAD)) |
| 3964 | appctx->ctx.stats.flags |= STAT_CHUNKED; |
| 3965 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 3966 | htx = htxbuf(&req->buf); |
Christopher Faulet | 297fbb4 | 2019-05-13 14:41:27 +0200 | [diff] [blame] | 3967 | sl = http_get_stline(htx); |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 3968 | lookup = HTX_SL_REQ_UPTR(sl) + uri_auth->uri_len; |
| 3969 | end = HTX_SL_REQ_UPTR(sl) + HTX_SL_REQ_ULEN(sl); |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 3970 | |
| 3971 | for (h = lookup; h <= end - 3; h++) { |
| 3972 | if (memcmp(h, ";up", 3) == 0) { |
| 3973 | appctx->ctx.stats.flags |= STAT_HIDE_DOWN; |
| 3974 | break; |
| 3975 | } |
Amaury Denoyelle | 91e55ea | 2021-02-25 14:46:08 +0100 | [diff] [blame] | 3976 | } |
| 3977 | |
| 3978 | for (h = lookup; h <= end - 9; h++) { |
| 3979 | if (memcmp(h, ";no-maint", 9) == 0) { |
Willy Tarreau | 3e32036 | 2020-10-23 17:28:57 +0200 | [diff] [blame] | 3980 | appctx->ctx.stats.flags |= STAT_HIDE_MAINT; |
| 3981 | break; |
| 3982 | } |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 3983 | } |
| 3984 | |
| 3985 | if (uri_auth->refresh) { |
| 3986 | for (h = lookup; h <= end - 10; h++) { |
| 3987 | if (memcmp(h, ";norefresh", 10) == 0) { |
| 3988 | appctx->ctx.stats.flags |= STAT_NO_REFRESH; |
| 3989 | break; |
| 3990 | } |
| 3991 | } |
| 3992 | } |
| 3993 | |
| 3994 | for (h = lookup; h <= end - 4; h++) { |
| 3995 | if (memcmp(h, ";csv", 4) == 0) { |
Christopher Faulet | 6338a08 | 2019-09-09 15:50:54 +0200 | [diff] [blame] | 3996 | appctx->ctx.stats.flags &= ~(STAT_FMT_MASK|STAT_JSON_SCHM); |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 3997 | break; |
| 3998 | } |
| 3999 | } |
| 4000 | |
| 4001 | for (h = lookup; h <= end - 6; h++) { |
| 4002 | if (memcmp(h, ";typed", 6) == 0) { |
Christopher Faulet | 6338a08 | 2019-09-09 15:50:54 +0200 | [diff] [blame] | 4003 | appctx->ctx.stats.flags &= ~(STAT_FMT_MASK|STAT_JSON_SCHM); |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 4004 | appctx->ctx.stats.flags |= STAT_FMT_TYPED; |
| 4005 | break; |
| 4006 | } |
| 4007 | } |
| 4008 | |
Christopher Faulet | 6338a08 | 2019-09-09 15:50:54 +0200 | [diff] [blame] | 4009 | for (h = lookup; h <= end - 5; h++) { |
| 4010 | if (memcmp(h, ";json", 5) == 0) { |
| 4011 | appctx->ctx.stats.flags &= ~(STAT_FMT_MASK|STAT_JSON_SCHM); |
| 4012 | appctx->ctx.stats.flags |= STAT_FMT_JSON; |
| 4013 | break; |
| 4014 | } |
| 4015 | } |
| 4016 | |
| 4017 | for (h = lookup; h <= end - 12; h++) { |
| 4018 | if (memcmp(h, ";json-schema", 12) == 0) { |
| 4019 | appctx->ctx.stats.flags &= ~STAT_FMT_MASK; |
| 4020 | appctx->ctx.stats.flags |= STAT_JSON_SCHM; |
| 4021 | break; |
| 4022 | } |
| 4023 | } |
| 4024 | |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 4025 | for (h = lookup; h <= end - 8; h++) { |
| 4026 | if (memcmp(h, ";st=", 4) == 0) { |
| 4027 | int i; |
| 4028 | h += 4; |
| 4029 | appctx->ctx.stats.st_code = STAT_STATUS_UNKN; |
| 4030 | for (i = STAT_STATUS_INIT + 1; i < STAT_STATUS_SIZE; i++) { |
| 4031 | if (strncmp(stat_status_codes[i], h, 4) == 0) { |
| 4032 | appctx->ctx.stats.st_code = i; |
| 4033 | break; |
| 4034 | } |
| 4035 | } |
| 4036 | break; |
| 4037 | } |
| 4038 | } |
| 4039 | |
| 4040 | appctx->ctx.stats.scope_str = 0; |
| 4041 | appctx->ctx.stats.scope_len = 0; |
| 4042 | for (h = lookup; h <= end - 8; h++) { |
| 4043 | if (memcmp(h, STAT_SCOPE_INPUT_NAME "=", strlen(STAT_SCOPE_INPUT_NAME) + 1) == 0) { |
| 4044 | int itx = 0; |
| 4045 | const char *h2; |
| 4046 | char scope_txt[STAT_SCOPE_TXT_MAXLEN + 1]; |
| 4047 | const char *err; |
| 4048 | |
| 4049 | h += strlen(STAT_SCOPE_INPUT_NAME) + 1; |
| 4050 | h2 = h; |
Christopher Faulet | ed7a066 | 2019-01-14 11:07:34 +0100 | [diff] [blame] | 4051 | appctx->ctx.stats.scope_str = h2 - HTX_SL_REQ_UPTR(sl); |
| 4052 | while (h < end) { |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 4053 | if (*h == ';' || *h == '&' || *h == ' ') |
| 4054 | break; |
| 4055 | itx++; |
| 4056 | h++; |
| 4057 | } |
| 4058 | |
| 4059 | if (itx > STAT_SCOPE_TXT_MAXLEN) |
| 4060 | itx = STAT_SCOPE_TXT_MAXLEN; |
| 4061 | appctx->ctx.stats.scope_len = itx; |
| 4062 | |
| 4063 | /* scope_txt = search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */ |
| 4064 | memcpy(scope_txt, h2, itx); |
| 4065 | scope_txt[itx] = '\0'; |
| 4066 | err = invalid_char(scope_txt); |
| 4067 | if (err) { |
| 4068 | /* bad char in search text => clear scope */ |
| 4069 | appctx->ctx.stats.scope_str = 0; |
| 4070 | appctx->ctx.stats.scope_len = 0; |
| 4071 | } |
| 4072 | break; |
| 4073 | } |
| 4074 | } |
| 4075 | |
| 4076 | /* now check whether we have some admin rules for this request */ |
| 4077 | list_for_each_entry(stats_admin_rule, &uri_auth->admin_rules, list) { |
| 4078 | int ret = 1; |
| 4079 | |
| 4080 | if (stats_admin_rule->cond) { |
| 4081 | ret = acl_exec_cond(stats_admin_rule->cond, s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL); |
| 4082 | ret = acl_pass(ret); |
| 4083 | if (stats_admin_rule->cond->pol == ACL_COND_UNLESS) |
| 4084 | ret = !ret; |
| 4085 | } |
| 4086 | |
| 4087 | if (ret) { |
| 4088 | /* no rule, or the rule matches */ |
| 4089 | appctx->ctx.stats.flags |= STAT_ADMIN; |
| 4090 | break; |
| 4091 | } |
| 4092 | } |
| 4093 | |
Christopher Faulet | 5d45e38 | 2019-02-27 15:15:23 +0100 | [diff] [blame] | 4094 | if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD) |
| 4095 | appctx->st0 = STAT_HTTP_HEAD; |
| 4096 | else if (txn->meth == HTTP_METH_POST) { |
Christopher Faulet | bd9e842 | 2019-08-15 22:26:48 +0200 | [diff] [blame] | 4097 | if (appctx->ctx.stats.flags & STAT_ADMIN) { |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 4098 | appctx->st0 = STAT_HTTP_POST; |
Christopher Faulet | bd9e842 | 2019-08-15 22:26:48 +0200 | [diff] [blame] | 4099 | if (msg->msg_state < HTTP_MSG_DATA) |
| 4100 | req->analysers |= AN_REQ_HTTP_BODY; |
| 4101 | } |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 4102 | else { |
Christopher Faulet | 5d45e38 | 2019-02-27 15:15:23 +0100 | [diff] [blame] | 4103 | /* POST without admin level */ |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 4104 | appctx->ctx.stats.flags &= ~STAT_CHUNKED; |
| 4105 | appctx->ctx.stats.st_code = STAT_STATUS_DENY; |
| 4106 | appctx->st0 = STAT_HTTP_LAST; |
| 4107 | } |
| 4108 | } |
| 4109 | else { |
Christopher Faulet | 5d45e38 | 2019-02-27 15:15:23 +0100 | [diff] [blame] | 4110 | /* Unsupported method */ |
| 4111 | appctx->ctx.stats.flags &= ~STAT_CHUNKED; |
| 4112 | appctx->ctx.stats.st_code = STAT_STATUS_IVAL; |
| 4113 | appctx->st0 = STAT_HTTP_LAST; |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 4114 | } |
| 4115 | |
| 4116 | s->task->nice = -32; /* small boost for HTTP statistics */ |
| 4117 | return 1; |
| 4118 | } |
| 4119 | |
Christopher Faulet | 021a8e4 | 2021-03-29 10:46:38 +0200 | [diff] [blame] | 4120 | /* This function waits for the message payload at most <time> milliseconds (may |
| 4121 | * be set to TICK_ETERNITY). It stops to wait if at least <bytes> bytes of the |
| 4122 | * payload are received (0 means no limit). It returns HTTP_RULE_* depending on |
| 4123 | * the result: |
| 4124 | * |
| 4125 | * - HTTP_RULE_RES_CONT when conditions are met to stop waiting |
| 4126 | * - HTTP_RULE_RES_YIELD to wait for more data |
Ilya Shipitsin | b2be9a1 | 2021-04-24 13:25:42 +0500 | [diff] [blame] | 4127 | * - HTTP_RULE_RES_ABRT when a timeout occurred. |
Christopher Faulet | 021a8e4 | 2021-03-29 10:46:38 +0200 | [diff] [blame] | 4128 | * - HTTP_RULE_RES_BADREQ if a parsing error is raised by lower level |
Ilya Shipitsin | b2be9a1 | 2021-04-24 13:25:42 +0500 | [diff] [blame] | 4129 | * - HTTP_RULE_RES_ERROR if an internal error occurred |
Christopher Faulet | 021a8e4 | 2021-03-29 10:46:38 +0200 | [diff] [blame] | 4130 | * |
Ilya Shipitsin | b2be9a1 | 2021-04-24 13:25:42 +0500 | [diff] [blame] | 4131 | * If a timeout occurred, this function is responsible to emit the right response |
Christopher Faulet | 021a8e4 | 2021-03-29 10:46:38 +0200 | [diff] [blame] | 4132 | * to the client, depending on the channel (408 on request side, 504 on response |
| 4133 | * side). All other errors must be handled by the caller. |
| 4134 | */ |
| 4135 | enum rule_result http_wait_for_msg_body(struct stream *s, struct channel *chn, |
| 4136 | unsigned int time, unsigned int bytes) |
| 4137 | { |
| 4138 | struct session *sess = s->sess; |
| 4139 | struct http_txn *txn = s->txn; |
| 4140 | struct http_msg *msg = ((chn->flags & CF_ISRESP) ? &txn->rsp : &txn->req); |
| 4141 | struct htx *htx; |
| 4142 | enum rule_result ret = HTTP_RULE_RES_CONT; |
| 4143 | |
| 4144 | htx = htxbuf(&chn->buf); |
| 4145 | |
| 4146 | if (htx->flags & HTX_FL_PARSING_ERROR) { |
| 4147 | ret = HTTP_RULE_RES_BADREQ; |
| 4148 | goto end; |
| 4149 | } |
| 4150 | if (htx->flags & HTX_FL_PROCESSING_ERROR) { |
| 4151 | ret = HTTP_RULE_RES_ERROR; |
| 4152 | goto end; |
| 4153 | } |
| 4154 | |
| 4155 | /* Do nothing for bodyless and CONNECT requests */ |
| 4156 | if (txn->meth == HTTP_METH_CONNECT || (msg->flags & HTTP_MSGF_BODYLESS)) |
| 4157 | goto end; |
| 4158 | |
| 4159 | if (!(chn->flags & CF_ISRESP) && msg->msg_state < HTTP_MSG_DATA) { |
| 4160 | if (http_handle_expect_hdr(s, htx, msg) == -1) { |
| 4161 | ret = HTTP_RULE_RES_ERROR; |
| 4162 | goto end; |
| 4163 | } |
| 4164 | } |
| 4165 | |
| 4166 | msg->msg_state = HTTP_MSG_DATA; |
| 4167 | |
| 4168 | /* Now we're in HTTP_MSG_DATA. We just need to know if all data have |
| 4169 | * been received or if the buffer is full. |
| 4170 | */ |
| 4171 | if ((htx->flags & HTX_FL_EOM) || htx_get_tail_type(htx) > HTX_BLK_DATA || |
| 4172 | channel_htx_full(chn, htx, global.tune.maxrewrite)) |
| 4173 | goto end; |
| 4174 | |
| 4175 | if (bytes) { |
| 4176 | struct htx_blk *blk; |
| 4177 | unsigned int len = 0; |
| 4178 | |
| 4179 | for (blk = htx_get_first_blk(htx); blk; blk = htx_get_next_blk(htx, blk)) { |
| 4180 | if (htx_get_blk_type(blk) != HTX_BLK_DATA) |
| 4181 | continue; |
| 4182 | len += htx_get_blksz(blk); |
| 4183 | if (len >= bytes) |
| 4184 | goto end; |
| 4185 | } |
| 4186 | } |
| 4187 | |
| 4188 | if ((chn->flags & CF_READ_TIMEOUT) || tick_is_expired(chn->analyse_exp, now_ms)) { |
| 4189 | if (!(chn->flags & CF_ISRESP)) |
| 4190 | goto abort_req; |
| 4191 | goto abort_res; |
| 4192 | } |
| 4193 | |
| 4194 | /* we get here if we need to wait for more data */ |
| 4195 | if (!(chn->flags & (CF_SHUTR | CF_READ_ERROR))) { |
| 4196 | if (!tick_isset(chn->analyse_exp)) |
| 4197 | chn->analyse_exp = tick_add_ifset(now_ms, time); |
| 4198 | ret = HTTP_RULE_RES_YIELD; |
| 4199 | } |
| 4200 | |
| 4201 | end: |
| 4202 | return ret; |
| 4203 | |
| 4204 | abort_req: |
| 4205 | txn->status = 408; |
| 4206 | if (!(s->flags & SF_ERR_MASK)) |
| 4207 | s->flags |= SF_ERR_CLITO; |
| 4208 | if (!(s->flags & SF_FINST_MASK)) |
| 4209 | s->flags |= SF_FINST_D; |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 4210 | _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_req); |
Christopher Faulet | 021a8e4 | 2021-03-29 10:46:38 +0200 | [diff] [blame] | 4211 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 4212 | _HA_ATOMIC_INC(&sess->listener->counters->failed_req); |
Christopher Faulet | 021a8e4 | 2021-03-29 10:46:38 +0200 | [diff] [blame] | 4213 | http_reply_and_close(s, txn->status, http_error_message(s)); |
| 4214 | ret = HTTP_RULE_RES_ABRT; |
| 4215 | goto end; |
| 4216 | |
| 4217 | abort_res: |
| 4218 | txn->status = 504; |
| 4219 | if (!(s->flags & SF_ERR_MASK)) |
| 4220 | s->flags |= SF_ERR_SRVTO; |
| 4221 | if (!(s->flags & SF_FINST_MASK)) |
| 4222 | s->flags |= SF_FINST_D; |
| 4223 | stream_inc_http_fail_ctr(s); |
| 4224 | http_reply_and_close(s, txn->status, http_error_message(s)); |
| 4225 | ret = HTTP_RULE_RES_ABRT; |
| 4226 | goto end; |
| 4227 | } |
| 4228 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4229 | void http_perform_server_redirect(struct stream *s, struct stream_interface *si) |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4230 | { |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4231 | struct channel *req = &s->req; |
| 4232 | struct channel *res = &s->res; |
| 4233 | struct server *srv; |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4234 | struct htx *htx; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 4235 | struct htx_sl *sl; |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4236 | struct ist path, location; |
| 4237 | unsigned int flags; |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4238 | |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4239 | /* |
| 4240 | * Create the location |
| 4241 | */ |
| 4242 | chunk_reset(&trash); |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4243 | |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4244 | /* 1: add the server's prefix */ |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4245 | /* special prefix "/" means don't change URL */ |
| 4246 | srv = __objt_server(s->target); |
| 4247 | if (srv->rdr_len != 1 || *srv->rdr_pfx != '/') { |
| 4248 | if (!chunk_memcat(&trash, srv->rdr_pfx, srv->rdr_len)) |
| 4249 | return; |
| 4250 | } |
| 4251 | |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4252 | /* 2: add the request Path */ |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 4253 | htx = htxbuf(&req->buf); |
Christopher Faulet | 297fbb4 | 2019-05-13 14:41:27 +0200 | [diff] [blame] | 4254 | sl = http_get_stline(htx); |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 4255 | path = http_get_path(htx_sl_req_uri(sl)); |
Tim Duesterhus | ed52637 | 2020-03-05 17:56:33 +0100 | [diff] [blame] | 4256 | if (!isttest(path)) |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4257 | return; |
| 4258 | |
| 4259 | if (!chunk_memcat(&trash, path.ptr, path.len)) |
| 4260 | return; |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4261 | location = ist2(trash.area, trash.data); |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4262 | |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4263 | /* |
| 4264 | * Create the 302 respone |
| 4265 | */ |
| 4266 | htx = htx_from_buf(&res->buf); |
| 4267 | flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN|HTX_SL_F_BODYLESS); |
| 4268 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, |
| 4269 | ist("HTTP/1.1"), ist("302"), ist("Found")); |
| 4270 | if (!sl) |
| 4271 | goto fail; |
| 4272 | sl->info.res.status = 302; |
| 4273 | s->txn->status = 302; |
| 4274 | |
| 4275 | if (!htx_add_header(htx, ist("Cache-Control"), ist("no-cache")) || |
| 4276 | !htx_add_header(htx, ist("Connection"), ist("close")) || |
| 4277 | !htx_add_header(htx, ist("Content-length"), ist("0")) || |
| 4278 | !htx_add_header(htx, ist("Location"), location)) |
| 4279 | goto fail; |
| 4280 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 4281 | if (!htx_add_endof(htx, HTX_BLK_EOH)) |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4282 | goto fail; |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4283 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 4284 | htx->flags |= HTX_FL_EOM; |
Christopher Faulet | c20afb8 | 2020-01-24 19:16:26 +0100 | [diff] [blame] | 4285 | htx_to_buf(htx, &res->buf); |
Christopher Faulet | a72a7e4 | 2020-01-28 09:28:11 +0100 | [diff] [blame] | 4286 | if (!http_forward_proxy_resp(s, 1)) |
| 4287 | goto fail; |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4288 | |
| 4289 | /* return without error. */ |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4290 | si_shutr(si); |
| 4291 | si_shutw(si); |
| 4292 | si->err_type = SI_ET_NONE; |
| 4293 | si->state = SI_ST_CLO; |
| 4294 | |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4295 | if (!(s->flags & SF_ERR_MASK)) |
| 4296 | s->flags |= SF_ERR_LOCAL; |
| 4297 | if (!(s->flags & SF_FINST_MASK)) |
| 4298 | s->flags |= SF_FINST_C; |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4299 | |
| 4300 | /* FIXME: we should increase a counter of redirects per server and per backend. */ |
| 4301 | srv_inc_sess_ctr(srv); |
| 4302 | srv_set_sess_last(srv); |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4303 | return; |
| 4304 | |
| 4305 | fail: |
| 4306 | /* If an error occurred, remove the incomplete HTTP response from the |
| 4307 | * buffer */ |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 4308 | channel_htx_truncate(res, htx); |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4309 | } |
| 4310 | |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 4311 | /* This function terminates the request because it was completely analyzed or |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4312 | * because an error was triggered during the body forwarding. |
| 4313 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4314 | static void http_end_request(struct stream *s) |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4315 | { |
| 4316 | struct channel *chn = &s->req; |
| 4317 | struct http_txn *txn = s->txn; |
| 4318 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 4319 | DBG_TRACE_ENTER(STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4320 | |
Christopher Faulet | b42a8b6 | 2018-11-19 21:59:00 +0100 | [diff] [blame] | 4321 | if (unlikely(txn->req.msg_state == HTTP_MSG_ERROR || |
| 4322 | txn->rsp.msg_state == HTTP_MSG_ERROR)) { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4323 | channel_abort(chn); |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 4324 | channel_htx_truncate(chn, htxbuf(&chn->buf)); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4325 | goto end; |
| 4326 | } |
| 4327 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 4328 | if (unlikely(txn->req.msg_state < HTTP_MSG_DONE)) { |
| 4329 | DBG_TRACE_DEVEL("waiting end of the request", STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4330 | return; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 4331 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4332 | |
| 4333 | if (txn->req.msg_state == HTTP_MSG_DONE) { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4334 | /* No need to read anymore, the request was completely parsed. |
| 4335 | * We can shut the read side unless we want to abort_on_close, |
| 4336 | * or we have a POST request. The issue with POST requests is |
| 4337 | * that some browsers still send a CRLF after the request, and |
| 4338 | * this CRLF must be read so that it does not remain in the kernel |
| 4339 | * buffers, otherwise a close could cause an RST on some systems |
| 4340 | * (eg: Linux). |
| 4341 | */ |
Christopher Faulet | 769d0e9 | 2019-03-22 14:23:18 +0100 | [diff] [blame] | 4342 | if (!(s->be->options & PR_O_ABRT_CLOSE) && txn->meth != HTTP_METH_POST) |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4343 | channel_dont_read(chn); |
| 4344 | |
| 4345 | /* if the server closes the connection, we want to immediately react |
| 4346 | * and close the socket to save packets and syscalls. |
| 4347 | */ |
| 4348 | s->si[1].flags |= SI_FL_NOHALF; |
| 4349 | |
| 4350 | /* In any case we've finished parsing the request so we must |
| 4351 | * disable Nagle when sending data because 1) we're not going |
| 4352 | * to shut this side, and 2) the server is waiting for us to |
| 4353 | * send pending data. |
| 4354 | */ |
| 4355 | chn->flags |= CF_NEVER_WAIT; |
| 4356 | |
Christopher Faulet | d01ce40 | 2019-01-02 17:44:13 +0100 | [diff] [blame] | 4357 | if (txn->rsp.msg_state < HTTP_MSG_DONE) { |
| 4358 | /* The server has not finished to respond, so we |
| 4359 | * don't want to move in order not to upset it. |
| 4360 | */ |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 4361 | DBG_TRACE_DEVEL("waiting end of the response", STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | d01ce40 | 2019-01-02 17:44:13 +0100 | [diff] [blame] | 4362 | return; |
| 4363 | } |
| 4364 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4365 | /* When we get here, it means that both the request and the |
| 4366 | * response have finished receiving. Depending on the connection |
| 4367 | * mode, we'll have to wait for the last bytes to leave in either |
| 4368 | * direction, and sometimes for a close to be effective. |
| 4369 | */ |
Christopher Faulet | c41547b | 2019-07-16 14:32:23 +0200 | [diff] [blame] | 4370 | if (txn->flags & TX_CON_WANT_TUN) { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4371 | /* Tunnel mode will not have any analyser so it needs to |
| 4372 | * poll for reads. |
| 4373 | */ |
| 4374 | channel_auto_read(chn); |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 4375 | if (b_data(&chn->buf)) { |
| 4376 | DBG_TRACE_DEVEL("waiting to flush the request", STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 4377 | return; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 4378 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4379 | txn->req.msg_state = HTTP_MSG_TUNNEL; |
| 4380 | } |
| 4381 | else { |
| 4382 | /* we're not expecting any new data to come for this |
| 4383 | * transaction, so we can close it. |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 4384 | * |
| 4385 | * However, there is an exception if the response |
| 4386 | * length is undefined. In this case, we need to wait |
| 4387 | * the close from the server. The response will be |
| 4388 | * switched in TUNNEL mode until the end. |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4389 | */ |
| 4390 | if (!(txn->rsp.flags & HTTP_MSGF_XFER_LEN) && |
| 4391 | txn->rsp.msg_state != HTTP_MSG_CLOSED) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 4392 | goto check_channel_flags; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4393 | |
| 4394 | if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) { |
| 4395 | channel_shutr_now(chn); |
| 4396 | channel_shutw_now(chn); |
| 4397 | } |
| 4398 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4399 | goto check_channel_flags; |
| 4400 | } |
| 4401 | |
| 4402 | if (txn->req.msg_state == HTTP_MSG_CLOSING) { |
| 4403 | http_msg_closing: |
| 4404 | /* nothing else to forward, just waiting for the output buffer |
| 4405 | * to be empty and for the shutw_now to take effect. |
| 4406 | */ |
| 4407 | if (channel_is_empty(chn)) { |
| 4408 | txn->req.msg_state = HTTP_MSG_CLOSED; |
| 4409 | goto http_msg_closed; |
| 4410 | } |
| 4411 | else if (chn->flags & CF_SHUTW) { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4412 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 4413 | goto end; |
| 4414 | } |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 4415 | DBG_TRACE_LEAVE(STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4416 | return; |
| 4417 | } |
| 4418 | |
| 4419 | if (txn->req.msg_state == HTTP_MSG_CLOSED) { |
| 4420 | http_msg_closed: |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4421 | /* if we don't know whether the server will close, we need to hard close */ |
| 4422 | if (txn->rsp.flags & HTTP_MSGF_XFER_LEN) |
| 4423 | s->si[1].flags |= SI_FL_NOLINGER; /* we want to close ASAP */ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4424 | /* see above in MSG_DONE why we only do this in these states */ |
Christopher Faulet | 769d0e9 | 2019-03-22 14:23:18 +0100 | [diff] [blame] | 4425 | if (!(s->be->options & PR_O_ABRT_CLOSE)) |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4426 | channel_dont_read(chn); |
| 4427 | goto end; |
| 4428 | } |
| 4429 | |
| 4430 | check_channel_flags: |
| 4431 | /* Here, we are in HTTP_MSG_DONE or HTTP_MSG_TUNNEL */ |
| 4432 | if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) { |
| 4433 | /* if we've just closed an output, let's switch */ |
| 4434 | txn->req.msg_state = HTTP_MSG_CLOSING; |
| 4435 | goto http_msg_closing; |
| 4436 | } |
| 4437 | |
| 4438 | end: |
| 4439 | chn->analysers &= AN_REQ_FLT_END; |
Christopher Faulet | 198ef8b | 2020-12-15 13:32:55 +0100 | [diff] [blame] | 4440 | if (txn->req.msg_state == HTTP_MSG_TUNNEL) { |
| 4441 | chn->flags |= CF_NEVER_WAIT; |
| 4442 | if (HAS_REQ_DATA_FILTERS(s)) |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4443 | chn->analysers |= AN_REQ_FLT_XFER_DATA; |
Christopher Faulet | 198ef8b | 2020-12-15 13:32:55 +0100 | [diff] [blame] | 4444 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4445 | channel_auto_close(chn); |
| 4446 | channel_auto_read(chn); |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 4447 | DBG_TRACE_LEAVE(STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4448 | } |
| 4449 | |
| 4450 | |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 4451 | /* This function terminates the response because it was completely analyzed or |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4452 | * because an error was triggered during the body forwarding. |
| 4453 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4454 | static void http_end_response(struct stream *s) |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4455 | { |
| 4456 | struct channel *chn = &s->res; |
| 4457 | struct http_txn *txn = s->txn; |
| 4458 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 4459 | DBG_TRACE_ENTER(STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4460 | |
Christopher Faulet | b42a8b6 | 2018-11-19 21:59:00 +0100 | [diff] [blame] | 4461 | if (unlikely(txn->req.msg_state == HTTP_MSG_ERROR || |
| 4462 | txn->rsp.msg_state == HTTP_MSG_ERROR)) { |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 4463 | channel_htx_truncate(&s->req, htxbuf(&s->req.buf)); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 4464 | channel_abort(&s->req); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4465 | goto end; |
| 4466 | } |
| 4467 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 4468 | if (unlikely(txn->rsp.msg_state < HTTP_MSG_DONE)) { |
| 4469 | DBG_TRACE_DEVEL("waiting end of the response", STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4470 | return; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 4471 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4472 | |
| 4473 | if (txn->rsp.msg_state == HTTP_MSG_DONE) { |
| 4474 | /* In theory, we don't need to read anymore, but we must |
| 4475 | * still monitor the server connection for a possible close |
| 4476 | * while the request is being uploaded, so we don't disable |
| 4477 | * reading. |
| 4478 | */ |
| 4479 | /* channel_dont_read(chn); */ |
| 4480 | |
| 4481 | if (txn->req.msg_state < HTTP_MSG_DONE) { |
| 4482 | /* The client seems to still be sending data, probably |
| 4483 | * because we got an error response during an upload. |
| 4484 | * We have the choice of either breaking the connection |
| 4485 | * or letting it pass through. Let's do the later. |
| 4486 | */ |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 4487 | DBG_TRACE_DEVEL("waiting end of the request", STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4488 | return; |
| 4489 | } |
| 4490 | |
| 4491 | /* When we get here, it means that both the request and the |
| 4492 | * response have finished receiving. Depending on the connection |
| 4493 | * mode, we'll have to wait for the last bytes to leave in either |
| 4494 | * direction, and sometimes for a close to be effective. |
| 4495 | */ |
Christopher Faulet | c41547b | 2019-07-16 14:32:23 +0200 | [diff] [blame] | 4496 | if (txn->flags & TX_CON_WANT_TUN) { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4497 | channel_auto_read(chn); |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 4498 | if (b_data(&chn->buf)) { |
| 4499 | DBG_TRACE_DEVEL("waiting to flush the respone", STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 4500 | return; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 4501 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4502 | txn->rsp.msg_state = HTTP_MSG_TUNNEL; |
| 4503 | } |
| 4504 | else { |
| 4505 | /* we're not expecting any new data to come for this |
| 4506 | * transaction, so we can close it. |
| 4507 | */ |
| 4508 | if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) { |
| 4509 | channel_shutr_now(chn); |
| 4510 | channel_shutw_now(chn); |
| 4511 | } |
| 4512 | } |
| 4513 | goto check_channel_flags; |
| 4514 | } |
| 4515 | |
| 4516 | if (txn->rsp.msg_state == HTTP_MSG_CLOSING) { |
| 4517 | http_msg_closing: |
| 4518 | /* nothing else to forward, just waiting for the output buffer |
| 4519 | * to be empty and for the shutw_now to take effect. |
| 4520 | */ |
| 4521 | if (channel_is_empty(chn)) { |
| 4522 | txn->rsp.msg_state = HTTP_MSG_CLOSED; |
| 4523 | goto http_msg_closed; |
| 4524 | } |
| 4525 | else if (chn->flags & CF_SHUTW) { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4526 | txn->rsp.msg_state = HTTP_MSG_ERROR; |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 4527 | _HA_ATOMIC_INC(&strm_sess(s)->fe->fe_counters.cli_aborts); |
| 4528 | _HA_ATOMIC_INC(&s->be->be_counters.cli_aborts); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 4529 | if (strm_sess(s)->listener && strm_sess(s)->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 4530 | _HA_ATOMIC_INC(&strm_sess(s)->listener->counters->cli_aborts); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4531 | if (objt_server(s->target)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 4532 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.cli_aborts); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4533 | goto end; |
| 4534 | } |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 4535 | DBG_TRACE_LEAVE(STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4536 | return; |
| 4537 | } |
| 4538 | |
| 4539 | if (txn->rsp.msg_state == HTTP_MSG_CLOSED) { |
| 4540 | http_msg_closed: |
| 4541 | /* drop any pending data */ |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 4542 | channel_htx_truncate(&s->req, htxbuf(&s->req.buf)); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 4543 | channel_abort(&s->req); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4544 | goto end; |
| 4545 | } |
| 4546 | |
| 4547 | check_channel_flags: |
| 4548 | /* Here, we are in HTTP_MSG_DONE or HTTP_MSG_TUNNEL */ |
| 4549 | if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) { |
| 4550 | /* if we've just closed an output, let's switch */ |
| 4551 | txn->rsp.msg_state = HTTP_MSG_CLOSING; |
| 4552 | goto http_msg_closing; |
| 4553 | } |
| 4554 | |
| 4555 | end: |
| 4556 | chn->analysers &= AN_RES_FLT_END; |
Christopher Faulet | 198ef8b | 2020-12-15 13:32:55 +0100 | [diff] [blame] | 4557 | if (txn->rsp.msg_state == HTTP_MSG_TUNNEL) { |
| 4558 | chn->flags |= CF_NEVER_WAIT; |
| 4559 | if (HAS_RSP_DATA_FILTERS(s)) |
| 4560 | chn->analysers |= AN_RES_FLT_XFER_DATA; |
| 4561 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4562 | channel_auto_close(chn); |
| 4563 | channel_auto_read(chn); |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 4564 | DBG_TRACE_LEAVE(STRM_EV_HTTP_ANA, s, txn); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4565 | } |
| 4566 | |
Christopher Faulet | ef70e25 | 2020-01-28 09:26:19 +0100 | [diff] [blame] | 4567 | /* Forward a response generated by HAProxy (error/redirect/return). This |
| 4568 | * function forwards all pending incoming data. If <final> is set to 0, nothing |
| 4569 | * more is performed. It is used for 1xx informational messages. Otherwise, the |
Christopher Faulet | 507479b | 2020-05-15 12:29:46 +0200 | [diff] [blame] | 4570 | * transaction is terminated and the request is emptied. On success 1 is |
Christopher Faulet | 40e6b55 | 2020-06-25 16:04:50 +0200 | [diff] [blame] | 4571 | * returned. If an error occurred, 0 is returned. If it fails, this function |
| 4572 | * only exits. It is the caller responsibility to do the cleanup. |
Christopher Faulet | ef70e25 | 2020-01-28 09:26:19 +0100 | [diff] [blame] | 4573 | */ |
| 4574 | int http_forward_proxy_resp(struct stream *s, int final) |
| 4575 | { |
| 4576 | struct channel *req = &s->req; |
| 4577 | struct channel *res = &s->res; |
| 4578 | struct htx *htx = htxbuf(&res->buf); |
| 4579 | size_t data; |
| 4580 | |
| 4581 | if (final) { |
| 4582 | htx->flags |= HTX_FL_PROXY_RESP; |
Christopher Faulet | 507479b | 2020-05-15 12:29:46 +0200 | [diff] [blame] | 4583 | |
Christopher Faulet | aab1b67 | 2020-11-18 16:44:02 +0100 | [diff] [blame] | 4584 | if (!htx_is_empty(htx) && !http_eval_after_res_rules(s)) |
Christopher Faulet | 6d0c3df | 2020-01-22 09:26:35 +0100 | [diff] [blame] | 4585 | return 0; |
Christopher Faulet | ef70e25 | 2020-01-28 09:26:19 +0100 | [diff] [blame] | 4586 | |
Christopher Faulet | d6c4836 | 2020-10-19 18:01:38 +0200 | [diff] [blame] | 4587 | if (s->txn->meth == HTTP_METH_HEAD) |
| 4588 | htx_skip_msg_payload(htx); |
| 4589 | |
Christopher Faulet | ef70e25 | 2020-01-28 09:26:19 +0100 | [diff] [blame] | 4590 | channel_auto_read(req); |
| 4591 | channel_abort(req); |
| 4592 | channel_auto_close(req); |
| 4593 | channel_htx_erase(req, htxbuf(&req->buf)); |
| 4594 | |
| 4595 | res->wex = tick_add_ifset(now_ms, res->wto); |
| 4596 | channel_auto_read(res); |
| 4597 | channel_auto_close(res); |
| 4598 | channel_shutr_now(res); |
Christopher Faulet | 1a9db7c | 2020-06-25 15:36:45 +0200 | [diff] [blame] | 4599 | res->flags |= CF_EOI; /* The response is terminated, add EOI */ |
Christopher Faulet | 42432f3 | 2020-11-20 17:43:16 +0100 | [diff] [blame] | 4600 | htxbuf(&res->buf)->flags |= HTX_FL_EOM; /* no more data are expected */ |
Christopher Faulet | ef70e25 | 2020-01-28 09:26:19 +0100 | [diff] [blame] | 4601 | } |
Christopher Faulet | cf6898c | 2020-06-25 15:55:11 +0200 | [diff] [blame] | 4602 | else { |
| 4603 | /* Send ASAP informational messages. Rely on CF_EOI for final |
| 4604 | * response. |
| 4605 | */ |
| 4606 | res->flags |= CF_SEND_DONTWAIT; |
| 4607 | } |
Christopher Faulet | ef70e25 | 2020-01-28 09:26:19 +0100 | [diff] [blame] | 4608 | |
| 4609 | data = htx->data - co_data(res); |
| 4610 | c_adv(res, data); |
| 4611 | htx->first = -1; |
| 4612 | res->total += data; |
| 4613 | return 1; |
| 4614 | } |
| 4615 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4616 | void http_server_error(struct stream *s, struct stream_interface *si, int err, |
Christopher Faulet | 8dfeccf | 2020-05-15 14:16:29 +0200 | [diff] [blame] | 4617 | int finst, struct http_reply *msg) |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 4618 | { |
Christopher Faulet | 72c7d8d | 2020-01-27 15:32:25 +0100 | [diff] [blame] | 4619 | http_reply_and_close(s, s->txn->status, msg); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 4620 | if (!(s->flags & SF_ERR_MASK)) |
| 4621 | s->flags |= err; |
| 4622 | if (!(s->flags & SF_FINST_MASK)) |
| 4623 | s->flags |= finst; |
| 4624 | } |
| 4625 | |
Christopher Faulet | 8dfeccf | 2020-05-15 14:16:29 +0200 | [diff] [blame] | 4626 | void http_reply_and_close(struct stream *s, short status, struct http_reply *msg) |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 4627 | { |
Christopher Faulet | 8dfeccf | 2020-05-15 14:16:29 +0200 | [diff] [blame] | 4628 | if (!msg) { |
| 4629 | channel_htx_truncate(&s->res, htxbuf(&s->res.buf)); |
| 4630 | goto end; |
| 4631 | } |
| 4632 | |
| 4633 | if (http_reply_message(s, msg) == -1) { |
| 4634 | /* On error, return a 500 error message, but don't rewrite it if |
Christopher Faulet | 40e6b55 | 2020-06-25 16:04:50 +0200 | [diff] [blame] | 4635 | * it is already an internal error. If it was already a "const" |
| 4636 | * 500 error, just fail. |
Christopher Faulet | 8dfeccf | 2020-05-15 14:16:29 +0200 | [diff] [blame] | 4637 | */ |
Christopher Faulet | 40e6b55 | 2020-06-25 16:04:50 +0200 | [diff] [blame] | 4638 | if (s->txn->status == 500) { |
| 4639 | if (s->txn->flags & TX_CONST_REPLY) |
| 4640 | goto end; |
Christopher Faulet | 8dfeccf | 2020-05-15 14:16:29 +0200 | [diff] [blame] | 4641 | s->txn->flags |= TX_CONST_REPLY; |
Christopher Faulet | 40e6b55 | 2020-06-25 16:04:50 +0200 | [diff] [blame] | 4642 | } |
Christopher Faulet | 8dfeccf | 2020-05-15 14:16:29 +0200 | [diff] [blame] | 4643 | s->txn->status = 500; |
| 4644 | s->txn->http_reply = NULL; |
| 4645 | return http_reply_and_close(s, s->txn->status, http_error_message(s)); |
| 4646 | } |
| 4647 | |
| 4648 | end: |
| 4649 | s->res.wex = tick_add_ifset(now_ms, s->res.wto); |
Christopher Faulet | 8dfeccf | 2020-05-15 14:16:29 +0200 | [diff] [blame] | 4650 | |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 4651 | channel_auto_read(&s->req); |
| 4652 | channel_abort(&s->req); |
| 4653 | channel_auto_close(&s->req); |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 4654 | channel_htx_erase(&s->req, htxbuf(&s->req.buf)); |
Christopher Faulet | 72c7d8d | 2020-01-27 15:32:25 +0100 | [diff] [blame] | 4655 | channel_auto_read(&s->res); |
| 4656 | channel_auto_close(&s->res); |
| 4657 | channel_shutr_now(&s->res); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 4658 | } |
| 4659 | |
Christopher Faulet | 8dfeccf | 2020-05-15 14:16:29 +0200 | [diff] [blame] | 4660 | struct http_reply *http_error_message(struct stream *s) |
Christopher Faulet | a7b677c | 2018-11-29 16:48:49 +0100 | [diff] [blame] | 4661 | { |
| 4662 | const int msgnum = http_get_status_idx(s->txn->status); |
| 4663 | |
Christopher Faulet | 8dfeccf | 2020-05-15 14:16:29 +0200 | [diff] [blame] | 4664 | if (s->txn->http_reply) |
| 4665 | return s->txn->http_reply; |
| 4666 | else if (s->be->replies[msgnum]) |
| 4667 | return s->be->replies[msgnum]; |
| 4668 | else if (strm_fe(s)->replies[msgnum]) |
| 4669 | return strm_fe(s)->replies[msgnum]; |
Christopher Faulet | a7b677c | 2018-11-29 16:48:49 +0100 | [diff] [blame] | 4670 | else |
Christopher Faulet | 8dfeccf | 2020-05-15 14:16:29 +0200 | [diff] [blame] | 4671 | return &http_err_replies[msgnum]; |
Christopher Faulet | a7b677c | 2018-11-29 16:48:49 +0100 | [diff] [blame] | 4672 | } |
| 4673 | |
Christopher Faulet | 40e6b55 | 2020-06-25 16:04:50 +0200 | [diff] [blame] | 4674 | /* Produces an HTX message from an http reply. Depending on the http reply type, |
| 4675 | * a, errorfile, an raw file or a log-format string is used. On success, it |
| 4676 | * returns 0. If an error occurs -1 is returned. If it fails, this function only |
| 4677 | * exits. It is the caller responsibility to do the cleanup. |
Christopher Faulet | 0e2ad61 | 2020-05-13 16:38:37 +0200 | [diff] [blame] | 4678 | */ |
Christopher Faulet | ae43b6c | 2020-05-27 15:24:22 +0200 | [diff] [blame] | 4679 | int http_reply_to_htx(struct stream *s, struct htx *htx, struct http_reply *reply) |
Christopher Faulet | 0e2ad61 | 2020-05-13 16:38:37 +0200 | [diff] [blame] | 4680 | { |
Christopher Faulet | 0e2ad61 | 2020-05-13 16:38:37 +0200 | [diff] [blame] | 4681 | struct buffer *errmsg; |
Christopher Faulet | 0e2ad61 | 2020-05-13 16:38:37 +0200 | [diff] [blame] | 4682 | struct htx_sl *sl; |
| 4683 | struct buffer *body = NULL; |
| 4684 | const char *status, *reason, *clen, *ctype; |
| 4685 | unsigned int slflags; |
| 4686 | int ret = 0; |
| 4687 | |
Christopher Faulet | e29a97e | 2020-05-14 14:49:25 +0200 | [diff] [blame] | 4688 | /* |
| 4689 | * - HTTP_REPLY_ERRFILES unexpected here. handled as no payload if so |
| 4690 | * |
| 4691 | * - HTTP_REPLY_INDIRECT: switch on another reply if defined or handled |
| 4692 | * as no payload if NULL. the TXN status code is set with the status |
| 4693 | * of the original reply. |
| 4694 | */ |
| 4695 | |
| 4696 | if (reply->type == HTTP_REPLY_INDIRECT) { |
| 4697 | if (reply->body.reply) |
| 4698 | reply = reply->body.reply; |
| 4699 | } |
Christopher Faulet | 8dfeccf | 2020-05-15 14:16:29 +0200 | [diff] [blame] | 4700 | if (reply->type == HTTP_REPLY_ERRMSG && !reply->body.errmsg) { |
| 4701 | /* get default error message */ |
| 4702 | if (reply == s->txn->http_reply) |
| 4703 | s->txn->http_reply = NULL; |
| 4704 | reply = http_error_message(s); |
| 4705 | if (reply->type == HTTP_REPLY_INDIRECT) { |
| 4706 | if (reply->body.reply) |
| 4707 | reply = reply->body.reply; |
| 4708 | } |
| 4709 | } |
Christopher Faulet | 0e2ad61 | 2020-05-13 16:38:37 +0200 | [diff] [blame] | 4710 | |
| 4711 | if (reply->type == HTTP_REPLY_ERRMSG) { |
| 4712 | /* implicit or explicit error message*/ |
| 4713 | errmsg = reply->body.errmsg; |
Christopher Faulet | 8dfeccf | 2020-05-15 14:16:29 +0200 | [diff] [blame] | 4714 | if (errmsg && !b_is_null(errmsg)) { |
Christopher Faulet | 2056736 | 2020-05-15 14:52:49 +0200 | [diff] [blame] | 4715 | if (!htx_copy_msg(htx, errmsg)) |
Christopher Faulet | 8dfeccf | 2020-05-15 14:16:29 +0200 | [diff] [blame] | 4716 | goto fail; |
Christopher Faulet | 0e2ad61 | 2020-05-13 16:38:37 +0200 | [diff] [blame] | 4717 | } |
Christopher Faulet | 0e2ad61 | 2020-05-13 16:38:37 +0200 | [diff] [blame] | 4718 | } |
| 4719 | else { |
| 4720 | /* no payload, file or log-format string */ |
| 4721 | if (reply->type == HTTP_REPLY_RAW) { |
| 4722 | /* file */ |
| 4723 | body = &reply->body.obj; |
| 4724 | } |
| 4725 | else if (reply->type == HTTP_REPLY_LOGFMT) { |
| 4726 | /* log-format string */ |
| 4727 | body = alloc_trash_chunk(); |
| 4728 | if (!body) |
| 4729 | goto fail_alloc; |
| 4730 | body->data = build_logline(s, body->area, body->size, &reply->body.fmt); |
| 4731 | } |
| 4732 | /* else no payload */ |
| 4733 | |
| 4734 | status = ultoa(reply->status); |
| 4735 | reason = http_get_reason(reply->status); |
| 4736 | slflags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN|HTX_SL_F_CLEN); |
| 4737 | if (!body || !b_data(body)) |
| 4738 | slflags |= HTX_SL_F_BODYLESS; |
| 4739 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, slflags, ist("HTTP/1.1"), ist(status), ist(reason)); |
| 4740 | if (!sl) |
| 4741 | goto fail; |
| 4742 | sl->info.res.status = reply->status; |
| 4743 | |
| 4744 | clen = (body ? ultoa(b_data(body)) : "0"); |
| 4745 | ctype = reply->ctype; |
| 4746 | |
| 4747 | if (!LIST_ISEMPTY(&reply->hdrs)) { |
| 4748 | struct http_reply_hdr *hdr; |
| 4749 | struct buffer *value = alloc_trash_chunk(); |
| 4750 | |
| 4751 | if (!value) |
| 4752 | goto fail; |
| 4753 | |
| 4754 | list_for_each_entry(hdr, &reply->hdrs, list) { |
| 4755 | chunk_reset(value); |
| 4756 | value->data = build_logline(s, value->area, value->size, &hdr->value); |
| 4757 | if (b_data(value) && !htx_add_header(htx, hdr->name, ist2(b_head(value), b_data(value)))) { |
| 4758 | free_trash_chunk(value); |
| 4759 | goto fail; |
| 4760 | } |
| 4761 | chunk_reset(value); |
| 4762 | } |
| 4763 | free_trash_chunk(value); |
| 4764 | } |
| 4765 | |
| 4766 | if (!htx_add_header(htx, ist("content-length"), ist(clen)) || |
| 4767 | (body && b_data(body) && ctype && !htx_add_header(htx, ist("content-type"), ist(ctype))) || |
| 4768 | !htx_add_endof(htx, HTX_BLK_EOH) || |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 4769 | (body && b_data(body) && !htx_add_data_atonce(htx, ist2(b_head(body), b_data(body))))) |
Christopher Faulet | 0e2ad61 | 2020-05-13 16:38:37 +0200 | [diff] [blame] | 4770 | goto fail; |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 4771 | |
| 4772 | htx->flags |= HTX_FL_EOM; |
Christopher Faulet | 0e2ad61 | 2020-05-13 16:38:37 +0200 | [diff] [blame] | 4773 | } |
| 4774 | |
Christopher Faulet | 0e2ad61 | 2020-05-13 16:38:37 +0200 | [diff] [blame] | 4775 | leave: |
| 4776 | if (reply->type == HTTP_REPLY_LOGFMT) |
| 4777 | free_trash_chunk(body); |
| 4778 | return ret; |
| 4779 | |
| 4780 | fail_alloc: |
| 4781 | if (!(s->flags & SF_ERR_MASK)) |
| 4782 | s->flags |= SF_ERR_RESOURCE; |
Christopher Faulet | 97e466c | 2020-05-15 15:12:47 +0200 | [diff] [blame] | 4783 | /* fall through */ |
| 4784 | fail: |
Christopher Faulet | 0e2ad61 | 2020-05-13 16:38:37 +0200 | [diff] [blame] | 4785 | ret = -1; |
| 4786 | goto leave; |
Christopher Faulet | 97e466c | 2020-05-15 15:12:47 +0200 | [diff] [blame] | 4787 | } |
| 4788 | |
| 4789 | /* Send an http reply to the client. On success, it returns 0. If an error |
Christopher Faulet | 40e6b55 | 2020-06-25 16:04:50 +0200 | [diff] [blame] | 4790 | * occurs -1 is returned and the response channel is truncated, removing this |
| 4791 | * way the faulty reply. This function may fail when the reply is formatted |
| 4792 | * (http_reply_to_htx) or when the reply is forwarded |
| 4793 | * (http_forward_proxy_resp). On the last case, it is because a |
| 4794 | * http-after-response rule fails. |
Christopher Faulet | 97e466c | 2020-05-15 15:12:47 +0200 | [diff] [blame] | 4795 | */ |
| 4796 | int http_reply_message(struct stream *s, struct http_reply *reply) |
| 4797 | { |
| 4798 | struct channel *res = &s->res; |
| 4799 | struct htx *htx = htx_from_buf(&res->buf); |
| 4800 | |
| 4801 | if (s->txn->status == -1) |
| 4802 | s->txn->status = reply->status; |
| 4803 | channel_htx_truncate(res, htx); |
| 4804 | |
| 4805 | if (http_reply_to_htx(s, htx, reply) == -1) |
| 4806 | goto fail; |
| 4807 | |
| 4808 | htx_to_buf(htx, &s->res.buf); |
| 4809 | if (!http_forward_proxy_resp(s, 1)) |
| 4810 | goto fail; |
| 4811 | return 0; |
Christopher Faulet | 0e2ad61 | 2020-05-13 16:38:37 +0200 | [diff] [blame] | 4812 | |
| 4813 | fail: |
Christopher Faulet | 0e2ad61 | 2020-05-13 16:38:37 +0200 | [diff] [blame] | 4814 | channel_htx_truncate(res, htx); |
Christopher Faulet | 0e2ad61 | 2020-05-13 16:38:37 +0200 | [diff] [blame] | 4815 | if (!(s->flags & SF_ERR_MASK)) |
| 4816 | s->flags |= SF_ERR_PRXCOND; |
Christopher Faulet | 97e466c | 2020-05-15 15:12:47 +0200 | [diff] [blame] | 4817 | return -1; |
Christopher Faulet | 0e2ad61 | 2020-05-13 16:38:37 +0200 | [diff] [blame] | 4818 | } |
| 4819 | |
Christopher Faulet | 304cc40 | 2019-07-15 15:46:28 +0200 | [diff] [blame] | 4820 | /* Return the error message corresponding to si->err_type. It is assumed |
| 4821 | * that the server side is closed. Note that err_type is actually a |
| 4822 | * bitmask, where almost only aborts may be cumulated with other |
| 4823 | * values. We consider that aborted operations are more important |
| 4824 | * than timeouts or errors due to the fact that nobody else in the |
| 4825 | * logs might explain incomplete retries. All others should avoid |
| 4826 | * being cumulated. It should normally not be possible to have multiple |
| 4827 | * aborts at once, but just in case, the first one in sequence is reported. |
| 4828 | * Note that connection errors appearing on the second request of a keep-alive |
| 4829 | * connection are not reported since this allows the client to retry. |
| 4830 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4831 | void http_return_srv_error(struct stream *s, struct stream_interface *si) |
Christopher Faulet | 304cc40 | 2019-07-15 15:46:28 +0200 | [diff] [blame] | 4832 | { |
| 4833 | int err_type = si->err_type; |
| 4834 | |
| 4835 | /* set s->txn->status for http_error_message(s) */ |
| 4836 | s->txn->status = 503; |
| 4837 | |
| 4838 | if (err_type & SI_ET_QUEUE_ABRT) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4839 | http_server_error(s, si, SF_ERR_CLICL, SF_FINST_Q, |
| 4840 | http_error_message(s)); |
Christopher Faulet | 304cc40 | 2019-07-15 15:46:28 +0200 | [diff] [blame] | 4841 | else if (err_type & SI_ET_CONN_ABRT) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4842 | http_server_error(s, si, SF_ERR_CLICL, SF_FINST_C, |
| 4843 | (s->txn->flags & TX_NOT_FIRST) ? NULL : |
| 4844 | http_error_message(s)); |
Christopher Faulet | 304cc40 | 2019-07-15 15:46:28 +0200 | [diff] [blame] | 4845 | else if (err_type & SI_ET_QUEUE_TO) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4846 | http_server_error(s, si, SF_ERR_SRVTO, SF_FINST_Q, |
| 4847 | http_error_message(s)); |
Christopher Faulet | 304cc40 | 2019-07-15 15:46:28 +0200 | [diff] [blame] | 4848 | else if (err_type & SI_ET_QUEUE_ERR) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4849 | http_server_error(s, si, SF_ERR_SRVCL, SF_FINST_Q, |
| 4850 | http_error_message(s)); |
Christopher Faulet | 304cc40 | 2019-07-15 15:46:28 +0200 | [diff] [blame] | 4851 | else if (err_type & SI_ET_CONN_TO) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4852 | http_server_error(s, si, SF_ERR_SRVTO, SF_FINST_C, |
| 4853 | (s->txn->flags & TX_NOT_FIRST) ? NULL : |
| 4854 | http_error_message(s)); |
Christopher Faulet | 304cc40 | 2019-07-15 15:46:28 +0200 | [diff] [blame] | 4855 | else if (err_type & SI_ET_CONN_ERR) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4856 | http_server_error(s, si, SF_ERR_SRVCL, SF_FINST_C, |
| 4857 | (s->flags & SF_SRV_REUSED) ? NULL : |
| 4858 | http_error_message(s)); |
Christopher Faulet | 304cc40 | 2019-07-15 15:46:28 +0200 | [diff] [blame] | 4859 | else if (err_type & SI_ET_CONN_RES) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4860 | http_server_error(s, si, SF_ERR_RESOURCE, SF_FINST_C, |
| 4861 | (s->txn->flags & TX_NOT_FIRST) ? NULL : |
| 4862 | http_error_message(s)); |
Christopher Faulet | 304cc40 | 2019-07-15 15:46:28 +0200 | [diff] [blame] | 4863 | else { /* SI_ET_CONN_OTHER and others */ |
| 4864 | s->txn->status = 500; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4865 | http_server_error(s, si, SF_ERR_INTERNAL, SF_FINST_C, |
| 4866 | http_error_message(s)); |
Christopher Faulet | 304cc40 | 2019-07-15 15:46:28 +0200 | [diff] [blame] | 4867 | } |
| 4868 | } |
| 4869 | |
Christopher Faulet | a7b677c | 2018-11-29 16:48:49 +0100 | [diff] [blame] | 4870 | |
Christopher Faulet | 4a28a53 | 2019-03-01 11:19:40 +0100 | [diff] [blame] | 4871 | /* Handle Expect: 100-continue for HTTP/1.1 messages if necessary. It returns 0 |
| 4872 | * on success and -1 on error. |
| 4873 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4874 | static int http_handle_expect_hdr(struct stream *s, struct htx *htx, struct http_msg *msg) |
Christopher Faulet | 4a28a53 | 2019-03-01 11:19:40 +0100 | [diff] [blame] | 4875 | { |
| 4876 | /* If we have HTTP/1.1 message with a body and Expect: 100-continue, |
| 4877 | * then we must send an HTTP/1.1 100 Continue intermediate response. |
| 4878 | */ |
| 4879 | if (msg->msg_state == HTTP_MSG_BODY && (msg->flags & HTTP_MSGF_VER_11) && |
| 4880 | (msg->flags & (HTTP_MSGF_CNT_LEN|HTTP_MSGF_TE_CHNK))) { |
| 4881 | struct ist hdr = { .ptr = "Expect", .len = 6 }; |
| 4882 | struct http_hdr_ctx ctx; |
| 4883 | |
| 4884 | ctx.blk = NULL; |
| 4885 | /* Expect is allowed in 1.1, look for it */ |
| 4886 | if (http_find_header(htx, hdr, &ctx, 0) && |
| 4887 | unlikely(isteqi(ctx.value, ist2("100-continue", 12)))) { |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4888 | if (http_reply_100_continue(s) == -1) |
Christopher Faulet | 4a28a53 | 2019-03-01 11:19:40 +0100 | [diff] [blame] | 4889 | return -1; |
| 4890 | http_remove_header(htx, &ctx); |
| 4891 | } |
| 4892 | } |
| 4893 | return 0; |
| 4894 | } |
| 4895 | |
Christopher Faulet | 23a3c79 | 2018-11-28 10:01:23 +0100 | [diff] [blame] | 4896 | /* Send a 100-Continue response to the client. It returns 0 on success and -1 |
| 4897 | * on error. The response channel is updated accordingly. |
| 4898 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4899 | static int http_reply_100_continue(struct stream *s) |
Christopher Faulet | 23a3c79 | 2018-11-28 10:01:23 +0100 | [diff] [blame] | 4900 | { |
| 4901 | struct channel *res = &s->res; |
| 4902 | struct htx *htx = htx_from_buf(&res->buf); |
| 4903 | struct htx_sl *sl; |
| 4904 | unsigned int flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11| |
| 4905 | HTX_SL_F_XFER_LEN|HTX_SL_F_BODYLESS); |
Christopher Faulet | 23a3c79 | 2018-11-28 10:01:23 +0100 | [diff] [blame] | 4906 | |
| 4907 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, |
| 4908 | ist("HTTP/1.1"), ist("100"), ist("Continue")); |
| 4909 | if (!sl) |
| 4910 | goto fail; |
| 4911 | sl->info.res.status = 100; |
| 4912 | |
Christopher Faulet | 1d5ec09 | 2019-06-26 14:23:54 +0200 | [diff] [blame] | 4913 | if (!htx_add_endof(htx, HTX_BLK_EOH)) |
Christopher Faulet | 23a3c79 | 2018-11-28 10:01:23 +0100 | [diff] [blame] | 4914 | goto fail; |
| 4915 | |
Christopher Faulet | a72a7e4 | 2020-01-28 09:28:11 +0100 | [diff] [blame] | 4916 | if (!http_forward_proxy_resp(s, 0)) |
| 4917 | goto fail; |
Christopher Faulet | 23a3c79 | 2018-11-28 10:01:23 +0100 | [diff] [blame] | 4918 | return 0; |
| 4919 | |
| 4920 | fail: |
| 4921 | /* If an error occurred, remove the incomplete HTTP response from the |
| 4922 | * buffer */ |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 4923 | channel_htx_truncate(res, htx); |
Christopher Faulet | 23a3c79 | 2018-11-28 10:01:23 +0100 | [diff] [blame] | 4924 | return -1; |
| 4925 | } |
| 4926 | |
Christopher Faulet | 12c51e2 | 2018-11-28 15:59:42 +0100 | [diff] [blame] | 4927 | |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 4928 | /* |
| 4929 | * Capture headers from message <htx> according to header list <cap_hdr>, and |
| 4930 | * fill the <cap> pointers appropriately. |
| 4931 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4932 | static void http_capture_headers(struct htx *htx, char **cap, struct cap_hdr *cap_hdr) |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 4933 | { |
| 4934 | struct cap_hdr *h; |
| 4935 | int32_t pos; |
| 4936 | |
Christopher Faulet | a3f1550 | 2019-05-13 15:27:23 +0200 | [diff] [blame] | 4937 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 4938 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 4939 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 4940 | struct ist n, v; |
| 4941 | |
| 4942 | if (type == HTX_BLK_EOH) |
| 4943 | break; |
| 4944 | if (type != HTX_BLK_HDR) |
| 4945 | continue; |
| 4946 | |
| 4947 | n = htx_get_blk_name(htx, blk); |
| 4948 | |
| 4949 | for (h = cap_hdr; h; h = h->next) { |
| 4950 | if (h->namelen && (h->namelen == n.len) && |
| 4951 | (strncasecmp(n.ptr, h->name, h->namelen) == 0)) { |
| 4952 | if (cap[h->index] == NULL) |
| 4953 | cap[h->index] = |
| 4954 | pool_alloc(h->pool); |
| 4955 | |
| 4956 | if (cap[h->index] == NULL) { |
| 4957 | ha_alert("HTTP capture : out of memory.\n"); |
| 4958 | break; |
| 4959 | } |
| 4960 | |
| 4961 | v = htx_get_blk_value(htx, blk); |
| 4962 | if (v.len > h->len) |
| 4963 | v.len = h->len; |
| 4964 | |
| 4965 | memcpy(cap[h->index], v.ptr, v.len); |
| 4966 | cap[h->index][v.len]=0; |
| 4967 | } |
| 4968 | } |
| 4969 | } |
| 4970 | } |
| 4971 | |
Christopher Faulet | 0b6bdc5 | 2018-10-24 11:05:36 +0200 | [diff] [blame] | 4972 | /* Delete a value in a header between delimiters <from> and <next>. The header |
| 4973 | * itself is delimited by <start> and <end> pointers. The number of characters |
| 4974 | * displaced is returned, and the pointer to the first delimiter is updated if |
| 4975 | * required. The function tries as much as possible to respect the following |
| 4976 | * principles : |
| 4977 | * - replace <from> delimiter by the <next> one unless <from> points to <start>, |
| 4978 | * in which case <next> is simply removed |
| 4979 | * - set exactly one space character after the new first delimiter, unless there |
| 4980 | * are not enough characters in the block being moved to do so. |
| 4981 | * - remove unneeded spaces before the previous delimiter and after the new |
| 4982 | * one. |
| 4983 | * |
| 4984 | * It is the caller's responsibility to ensure that : |
| 4985 | * - <from> points to a valid delimiter or <start> ; |
| 4986 | * - <next> points to a valid delimiter or <end> ; |
| 4987 | * - there are non-space chars before <from>. |
| 4988 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4989 | static int http_del_hdr_value(char *start, char *end, char **from, char *next) |
Christopher Faulet | 0b6bdc5 | 2018-10-24 11:05:36 +0200 | [diff] [blame] | 4990 | { |
| 4991 | char *prev = *from; |
| 4992 | |
| 4993 | if (prev == start) { |
| 4994 | /* We're removing the first value. eat the semicolon, if <next> |
| 4995 | * is lower than <end> */ |
| 4996 | if (next < end) |
| 4997 | next++; |
| 4998 | |
| 4999 | while (next < end && HTTP_IS_SPHT(*next)) |
| 5000 | next++; |
| 5001 | } |
| 5002 | else { |
| 5003 | /* Remove useless spaces before the old delimiter. */ |
| 5004 | while (HTTP_IS_SPHT(*(prev-1))) |
| 5005 | prev--; |
| 5006 | *from = prev; |
| 5007 | |
| 5008 | /* copy the delimiter and if possible a space if we're |
| 5009 | * not at the end of the line. |
| 5010 | */ |
| 5011 | if (next < end) { |
| 5012 | *prev++ = *next++; |
| 5013 | if (prev + 1 < next) |
| 5014 | *prev++ = ' '; |
| 5015 | while (next < end && HTTP_IS_SPHT(*next)) |
| 5016 | next++; |
| 5017 | } |
| 5018 | } |
| 5019 | memmove(prev, next, end - next); |
| 5020 | return (prev - next); |
| 5021 | } |
| 5022 | |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5023 | |
| 5024 | /* Formats the start line of the request (without CRLF) and puts it in <str> and |
Joseph Herlant | c42c0e9 | 2018-11-25 10:43:27 -0800 | [diff] [blame] | 5025 | * return the written length. The line can be truncated if it exceeds <len>. |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5026 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5027 | static size_t http_fmt_req_line(const struct htx_sl *sl, char *str, size_t len) |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5028 | { |
| 5029 | struct ist dst = ist2(str, 0); |
| 5030 | |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 5031 | if (istcat(&dst, htx_sl_req_meth(sl), len) == -1) |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5032 | goto end; |
| 5033 | if (dst.len + 1 > len) |
| 5034 | goto end; |
| 5035 | dst.ptr[dst.len++] = ' '; |
| 5036 | |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 5037 | if (istcat(&dst, htx_sl_req_uri(sl), len) == -1) |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5038 | goto end; |
| 5039 | if (dst.len + 1 > len) |
| 5040 | goto end; |
| 5041 | dst.ptr[dst.len++] = ' '; |
| 5042 | |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 5043 | istcat(&dst, htx_sl_req_vsn(sl), len); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5044 | end: |
| 5045 | return dst.len; |
| 5046 | } |
| 5047 | |
| 5048 | /* |
| 5049 | * Print a debug line with a start line. |
| 5050 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5051 | static void http_debug_stline(const char *dir, struct stream *s, const struct htx_sl *sl) |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5052 | { |
| 5053 | struct session *sess = strm_sess(s); |
| 5054 | int max; |
| 5055 | |
| 5056 | chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", s->uniq_id, s->be->id, |
| 5057 | dir, |
| 5058 | objt_conn(sess->origin) ? (unsigned short)objt_conn(sess->origin)->handle.fd : -1, |
| 5059 | objt_cs(s->si[1].end) ? (unsigned short)objt_cs(s->si[1].end)->conn->handle.fd : -1); |
| 5060 | |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 5061 | max = HTX_SL_P1_LEN(sl); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5062 | UBOUND(max, trash.size - trash.data - 3); |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 5063 | chunk_memcat(&trash, HTX_SL_P1_PTR(sl), max); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5064 | trash.area[trash.data++] = ' '; |
| 5065 | |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 5066 | max = HTX_SL_P2_LEN(sl); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5067 | UBOUND(max, trash.size - trash.data - 2); |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 5068 | chunk_memcat(&trash, HTX_SL_P2_PTR(sl), max); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5069 | trash.area[trash.data++] = ' '; |
| 5070 | |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 5071 | max = HTX_SL_P3_LEN(sl); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5072 | UBOUND(max, trash.size - trash.data - 1); |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 5073 | chunk_memcat(&trash, HTX_SL_P3_PTR(sl), max); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5074 | trash.area[trash.data++] = '\n'; |
| 5075 | |
Willy Tarreau | 2e8ab6b | 2020-03-14 11:03:20 +0100 | [diff] [blame] | 5076 | DISGUISE(write(1, trash.area, trash.data)); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5077 | } |
| 5078 | |
| 5079 | /* |
| 5080 | * Print a debug line with a header. |
| 5081 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5082 | static void http_debug_hdr(const char *dir, struct stream *s, const struct ist n, const struct ist v) |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5083 | { |
| 5084 | struct session *sess = strm_sess(s); |
| 5085 | int max; |
| 5086 | |
| 5087 | chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", s->uniq_id, s->be->id, |
| 5088 | dir, |
| 5089 | objt_conn(sess->origin) ? (unsigned short)objt_conn(sess->origin)->handle.fd : -1, |
| 5090 | objt_cs(s->si[1].end) ? (unsigned short)objt_cs(s->si[1].end)->conn->handle.fd : -1); |
| 5091 | |
| 5092 | max = n.len; |
| 5093 | UBOUND(max, trash.size - trash.data - 3); |
| 5094 | chunk_memcat(&trash, n.ptr, max); |
| 5095 | trash.area[trash.data++] = ':'; |
| 5096 | trash.area[trash.data++] = ' '; |
| 5097 | |
| 5098 | max = v.len; |
| 5099 | UBOUND(max, trash.size - trash.data - 1); |
| 5100 | chunk_memcat(&trash, v.ptr, max); |
| 5101 | trash.area[trash.data++] = '\n'; |
| 5102 | |
Willy Tarreau | 2e8ab6b | 2020-03-14 11:03:20 +0100 | [diff] [blame] | 5103 | DISGUISE(write(1, trash.area, trash.data)); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5104 | } |
| 5105 | |
Christopher Faulet | a8a46e2 | 2019-07-16 14:53:09 +0200 | [diff] [blame] | 5106 | /* Allocate a new HTTP transaction for stream <s> unless there is one already. |
| 5107 | * In case of allocation failure, everything allocated is freed and NULL is |
| 5108 | * returned. Otherwise the new transaction is assigned to the stream and |
| 5109 | * returned. |
| 5110 | */ |
| 5111 | struct http_txn *http_alloc_txn(struct stream *s) |
| 5112 | { |
| 5113 | struct http_txn *txn = s->txn; |
| 5114 | |
| 5115 | if (txn) |
| 5116 | return txn; |
| 5117 | |
| 5118 | txn = pool_alloc(pool_head_http_txn); |
| 5119 | if (!txn) |
| 5120 | return txn; |
| 5121 | |
| 5122 | s->txn = txn; |
| 5123 | return txn; |
| 5124 | } |
| 5125 | |
| 5126 | void http_txn_reset_req(struct http_txn *txn) |
| 5127 | { |
Christopher Faulet | 1aea50e | 2020-01-17 16:03:53 +0100 | [diff] [blame] | 5128 | txn->req.flags = 0; |
Christopher Faulet | a8a46e2 | 2019-07-16 14:53:09 +0200 | [diff] [blame] | 5129 | txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */ |
| 5130 | } |
| 5131 | |
| 5132 | void http_txn_reset_res(struct http_txn *txn) |
| 5133 | { |
Christopher Faulet | 1aea50e | 2020-01-17 16:03:53 +0100 | [diff] [blame] | 5134 | txn->rsp.flags = 0; |
Christopher Faulet | a8a46e2 | 2019-07-16 14:53:09 +0200 | [diff] [blame] | 5135 | txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */ |
| 5136 | } |
| 5137 | |
| 5138 | /* |
Christopher Faulet | 75f619a | 2021-03-08 19:12:58 +0100 | [diff] [blame] | 5139 | * Create and initialize a new HTTP transaction for stream <s>. This should be |
| 5140 | * used before processing any new request. It returns the transaction or NLULL |
| 5141 | * on error. |
Christopher Faulet | a8a46e2 | 2019-07-16 14:53:09 +0200 | [diff] [blame] | 5142 | */ |
Christopher Faulet | 75f619a | 2021-03-08 19:12:58 +0100 | [diff] [blame] | 5143 | struct http_txn *http_create_txn(struct stream *s) |
Christopher Faulet | a8a46e2 | 2019-07-16 14:53:09 +0200 | [diff] [blame] | 5144 | { |
Christopher Faulet | 75f619a | 2021-03-08 19:12:58 +0100 | [diff] [blame] | 5145 | struct http_txn *txn; |
Christopher Faulet | a8a46e2 | 2019-07-16 14:53:09 +0200 | [diff] [blame] | 5146 | struct conn_stream *cs = objt_cs(s->si[0].end); |
| 5147 | |
Christopher Faulet | 75f619a | 2021-03-08 19:12:58 +0100 | [diff] [blame] | 5148 | txn = pool_alloc(pool_head_http_txn); |
| 5149 | if (!txn) |
| 5150 | return NULL; |
| 5151 | s->txn = txn; |
| 5152 | |
Christopher Faulet | da831fa | 2020-10-06 17:58:43 +0200 | [diff] [blame] | 5153 | txn->flags = ((cs && cs->flags & CS_FL_NOT_FIRST) ? TX_NOT_FIRST : 0); |
Christopher Faulet | a8a46e2 | 2019-07-16 14:53:09 +0200 | [diff] [blame] | 5154 | txn->status = -1; |
Christopher Faulet | 5cb513a | 2020-05-13 17:56:56 +0200 | [diff] [blame] | 5155 | txn->http_reply = NULL; |
Willy Tarreau | 8b50758 | 2020-02-25 09:35:07 +0100 | [diff] [blame] | 5156 | write_u32(txn->cache_hash, 0); |
Christopher Faulet | a8a46e2 | 2019-07-16 14:53:09 +0200 | [diff] [blame] | 5157 | |
| 5158 | txn->cookie_first_date = 0; |
| 5159 | txn->cookie_last_date = 0; |
| 5160 | |
| 5161 | txn->srv_cookie = NULL; |
| 5162 | txn->cli_cookie = NULL; |
| 5163 | txn->uri = NULL; |
| 5164 | |
| 5165 | http_txn_reset_req(txn); |
| 5166 | http_txn_reset_res(txn); |
| 5167 | |
| 5168 | txn->req.chn = &s->req; |
| 5169 | txn->rsp.chn = &s->res; |
| 5170 | |
| 5171 | txn->auth.method = HTTP_AUTH_UNKNOWN; |
| 5172 | |
| 5173 | vars_init(&s->vars_txn, SCOPE_TXN); |
| 5174 | vars_init(&s->vars_reqres, SCOPE_REQ); |
Christopher Faulet | 75f619a | 2021-03-08 19:12:58 +0100 | [diff] [blame] | 5175 | |
| 5176 | return txn; |
Christopher Faulet | a8a46e2 | 2019-07-16 14:53:09 +0200 | [diff] [blame] | 5177 | } |
| 5178 | |
| 5179 | /* to be used at the end of a transaction */ |
Christopher Faulet | 75f619a | 2021-03-08 19:12:58 +0100 | [diff] [blame] | 5180 | void http_destroy_txn(struct stream *s) |
Christopher Faulet | a8a46e2 | 2019-07-16 14:53:09 +0200 | [diff] [blame] | 5181 | { |
| 5182 | struct http_txn *txn = s->txn; |
Christopher Faulet | a8a46e2 | 2019-07-16 14:53:09 +0200 | [diff] [blame] | 5183 | |
| 5184 | /* these ones will have been dynamically allocated */ |
| 5185 | pool_free(pool_head_requri, txn->uri); |
| 5186 | pool_free(pool_head_capture, txn->cli_cookie); |
| 5187 | pool_free(pool_head_capture, txn->srv_cookie); |
Tim Duesterhus | a17e662 | 2020-03-05 20:19:02 +0100 | [diff] [blame] | 5188 | pool_free(pool_head_uniqueid, s->unique_id.ptr); |
Christopher Faulet | a8a46e2 | 2019-07-16 14:53:09 +0200 | [diff] [blame] | 5189 | |
Tim Duesterhus | a17e662 | 2020-03-05 20:19:02 +0100 | [diff] [blame] | 5190 | s->unique_id = IST_NULL; |
Christopher Faulet | a8a46e2 | 2019-07-16 14:53:09 +0200 | [diff] [blame] | 5191 | txn->uri = NULL; |
| 5192 | txn->srv_cookie = NULL; |
| 5193 | txn->cli_cookie = NULL; |
| 5194 | |
Christopher Faulet | 5939925 | 2019-11-07 14:27:52 +0100 | [diff] [blame] | 5195 | if (!LIST_ISEMPTY(&s->vars_txn.head)) |
| 5196 | vars_prune(&s->vars_txn, s->sess, s); |
| 5197 | if (!LIST_ISEMPTY(&s->vars_reqres.head)) |
| 5198 | vars_prune(&s->vars_reqres, s->sess, s); |
Christopher Faulet | 75f619a | 2021-03-08 19:12:58 +0100 | [diff] [blame] | 5199 | |
| 5200 | pool_free(pool_head_http_txn, txn); |
| 5201 | s->txn = NULL; |
Christopher Faulet | 5939925 | 2019-11-07 14:27:52 +0100 | [diff] [blame] | 5202 | } |
| 5203 | |
Christopher Faulet | a8a46e2 | 2019-07-16 14:53:09 +0200 | [diff] [blame] | 5204 | |
| 5205 | DECLARE_POOL(pool_head_http_txn, "http_txn", sizeof(struct http_txn)); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5206 | |
Christopher Faulet | f4eb75d | 2018-10-11 15:55:07 +0200 | [diff] [blame] | 5207 | __attribute__((constructor)) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5208 | static void __http_protocol_init(void) |
Christopher Faulet | f4eb75d | 2018-10-11 15:55:07 +0200 | [diff] [blame] | 5209 | { |
| 5210 | } |
| 5211 | |
| 5212 | |
| 5213 | /* |
| 5214 | * Local variables: |
| 5215 | * c-indent-level: 8 |
| 5216 | * c-basic-offset: 8 |
| 5217 | * End: |
| 5218 | */ |