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 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 13 | #include <common/base64.h> |
| 14 | #include <common/config.h> |
| 15 | #include <common/debug.h> |
Willy Tarreau | b96b77e | 2018-12-11 10:22:41 +0100 | [diff] [blame] | 16 | #include <common/htx.h> |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 17 | #include <common/uri_auth.h> |
| 18 | |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 19 | #include <types/capture.h> |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 20 | |
| 21 | #include <proto/acl.h> |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 22 | #include <proto/action.h> |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 23 | #include <proto/channel.h> |
| 24 | #include <proto/checks.h> |
| 25 | #include <proto/connection.h> |
| 26 | #include <proto/filters.h> |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 27 | #include <proto/http_htx.h> |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 28 | #include <proto/log.h> |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 29 | #include <proto/pattern.h> |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 30 | #include <proto/http_ana.h> |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 31 | #include <proto/proxy.h> |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 32 | #include <proto/server.h> |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 33 | #include <proto/stream.h> |
| 34 | #include <proto/stream_interface.h> |
| 35 | #include <proto/stats.h> |
Christopher Faulet | a8a46e2 | 2019-07-16 14:53:09 +0200 | [diff] [blame] | 36 | #include <proto/vars.h> |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 37 | |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 38 | extern const char *stat_status_codes[]; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 39 | |
Christopher Faulet | a8a46e2 | 2019-07-16 14:53:09 +0200 | [diff] [blame] | 40 | struct pool_head *pool_head_requri = NULL; |
| 41 | struct pool_head *pool_head_capture = NULL; |
| 42 | |
| 43 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 44 | static void http_end_request(struct stream *s); |
| 45 | static void http_end_response(struct stream *s); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 46 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 47 | static void http_capture_headers(struct htx *htx, char **cap, struct cap_hdr *cap_hdr); |
| 48 | static int http_del_hdr_value(char *start, char *end, char **from, char *next); |
| 49 | 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] | 50 | static void http_debug_stline(const char *dir, struct stream *s, const struct htx_sl *sl); |
| 51 | 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] | 52 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 53 | static enum rule_result http_req_get_intercept_rule(struct proxy *px, struct list *rules, struct stream *s, int *deny_status); |
| 54 | 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] | 55 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 56 | static void http_manage_client_side_cookies(struct stream *s, struct channel *req); |
| 57 | 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] | 58 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 59 | static int http_stats_check_uri(struct stream *s, struct http_txn *txn, struct proxy *backend); |
| 60 | static int http_handle_stats(struct stream *s, struct channel *req); |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 61 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 62 | static int http_handle_expect_hdr(struct stream *s, struct htx *htx, struct http_msg *msg); |
| 63 | static int http_reply_100_continue(struct stream *s); |
| 64 | static int http_reply_40x_unauthorized(struct stream *s, const char *auth_realm); |
Christopher Faulet | 23a3c79 | 2018-11-28 10:01:23 +0100 | [diff] [blame] | 65 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 66 | /* This stream analyser waits for a complete HTTP request. It returns 1 if the |
| 67 | * processing can continue on next analysers, or zero if it either needs more |
| 68 | * data or wants to immediately abort the request (eg: timeout, error, ...). It |
| 69 | * is tied to AN_REQ_WAIT_HTTP and may may remove itself from s->req.analysers |
| 70 | * when it has nothing left to do, and may remove any analyser when it wants to |
| 71 | * abort. |
| 72 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 73 | 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] | 74 | { |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 75 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 76 | /* |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 77 | * We will analyze a complete HTTP request to check the its syntax. |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 78 | * |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 79 | * Once the start line and all headers are received, we may perform a |
| 80 | * capture of the error (if any), and we will set a few fields. We also |
| 81 | * check for monitor-uri, logging and finally headers capture. |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 82 | */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 83 | struct session *sess = s->sess; |
| 84 | struct http_txn *txn = s->txn; |
| 85 | struct http_msg *msg = &txn->req; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 86 | struct htx *htx; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 87 | struct htx_sl *sl; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 88 | |
| 89 | DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n", |
| 90 | now_ms, __FUNCTION__, |
| 91 | s, |
| 92 | req, |
| 93 | req->rex, req->wex, |
| 94 | req->flags, |
| 95 | ci_data(req), |
| 96 | req->analysers); |
| 97 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 98 | htx = htxbuf(&req->buf); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 99 | |
Willy Tarreau | 4236f03 | 2019-03-05 10:43:32 +0100 | [diff] [blame] | 100 | /* Parsing errors are caught here */ |
| 101 | if (htx->flags & HTX_FL_PARSING_ERROR) { |
| 102 | stream_inc_http_req_ctr(s); |
| 103 | stream_inc_http_err_ctr(s); |
| 104 | proxy_inc_fe_req_ctr(sess->fe); |
| 105 | goto return_bad_req; |
| 106 | } |
| 107 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 108 | /* 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] | 109 | s->srv_error = http_return_srv_error; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 110 | |
| 111 | /* If there is data available for analysis, log the end of the idle time. */ |
Christopher Faulet | 870aad9 | 2018-11-29 15:23:46 +0100 | [diff] [blame] | 112 | if (c_data(req) && s->logs.t_idle == -1) { |
| 113 | const struct cs_info *csinfo = si_get_cs_info(objt_cs(s->si[0].end)); |
| 114 | |
| 115 | s->logs.t_idle = ((csinfo) |
| 116 | ? csinfo->t_idle |
| 117 | : tv_ms_elapsed(&s->logs.tv_accept, &now) - s->logs.t_handshake); |
| 118 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 119 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 120 | /* |
| 121 | * Now we quickly check if we have found a full valid request. |
| 122 | * If not so, we check the FD and buffer states before leaving. |
| 123 | * A full request is indicated by the fact that we have seen |
| 124 | * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid |
| 125 | * requests are checked first. When waiting for a second request |
| 126 | * on a keep-alive stream, if we encounter and error, close, t/o, |
| 127 | * we note the error in the stream flags but don't set any state. |
| 128 | * Since the error will be noted there, it will not be counted by |
| 129 | * process_stream() as a frontend error. |
| 130 | * Last, we may increase some tracked counters' http request errors on |
| 131 | * the cases that are deliberately the client's fault. For instance, |
| 132 | * a timeout or connection reset is not counted as an error. However |
| 133 | * a bad request is. |
| 134 | */ |
Christopher Faulet | 29f1758 | 2019-05-23 11:03:26 +0200 | [diff] [blame] | 135 | if (unlikely(htx_is_empty(htx) || htx->first == -1)) { |
Christopher Faulet | 0ef372a | 2019-04-08 10:57:20 +0200 | [diff] [blame] | 136 | if (htx->flags & HTX_FL_UPGRADE) |
| 137 | goto failed_keep_alive; |
| 138 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 139 | /* 1: have we encountered a read error ? */ |
| 140 | if (req->flags & CF_READ_ERROR) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 141 | if (!(s->flags & SF_ERR_MASK)) |
| 142 | s->flags |= SF_ERR_CLICL; |
| 143 | |
| 144 | if (txn->flags & TX_WAIT_NEXT_RQ) |
| 145 | goto failed_keep_alive; |
| 146 | |
| 147 | if (sess->fe->options & PR_O_IGNORE_PRB) |
| 148 | goto failed_keep_alive; |
| 149 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 150 | stream_inc_http_err_ctr(s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 151 | stream_inc_http_req_ctr(s); |
| 152 | proxy_inc_fe_req_ctr(sess->fe); |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 153 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 154 | if (sess->listener->counters) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 155 | _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 156 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 157 | txn->status = 400; |
| 158 | msg->err_state = msg->msg_state; |
| 159 | msg->msg_state = HTTP_MSG_ERROR; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 160 | http_reply_and_close(s, txn->status, NULL); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 161 | req->analysers &= AN_REQ_FLT_END; |
| 162 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 163 | if (!(s->flags & SF_FINST_MASK)) |
| 164 | s->flags |= SF_FINST_R; |
| 165 | return 0; |
| 166 | } |
| 167 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 168 | /* 2: has the read timeout expired ? */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 169 | else if (req->flags & CF_READ_TIMEOUT || tick_is_expired(req->analyse_exp, now_ms)) { |
| 170 | if (!(s->flags & SF_ERR_MASK)) |
| 171 | s->flags |= SF_ERR_CLITO; |
| 172 | |
| 173 | if (txn->flags & TX_WAIT_NEXT_RQ) |
| 174 | goto failed_keep_alive; |
| 175 | |
| 176 | if (sess->fe->options & PR_O_IGNORE_PRB) |
| 177 | goto failed_keep_alive; |
| 178 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 179 | stream_inc_http_err_ctr(s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 180 | stream_inc_http_req_ctr(s); |
| 181 | proxy_inc_fe_req_ctr(sess->fe); |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 182 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 183 | if (sess->listener->counters) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 184 | _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 185 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 186 | txn->status = 408; |
| 187 | msg->err_state = msg->msg_state; |
| 188 | msg->msg_state = HTTP_MSG_ERROR; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 189 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 190 | req->analysers &= AN_REQ_FLT_END; |
| 191 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 192 | if (!(s->flags & SF_FINST_MASK)) |
| 193 | s->flags |= SF_FINST_R; |
| 194 | return 0; |
| 195 | } |
| 196 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 197 | /* 3: have we encountered a close ? */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 198 | else if (req->flags & CF_SHUTR) { |
| 199 | if (!(s->flags & SF_ERR_MASK)) |
| 200 | s->flags |= SF_ERR_CLICL; |
| 201 | |
| 202 | if (txn->flags & TX_WAIT_NEXT_RQ) |
| 203 | goto failed_keep_alive; |
| 204 | |
| 205 | if (sess->fe->options & PR_O_IGNORE_PRB) |
| 206 | goto failed_keep_alive; |
| 207 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 208 | stream_inc_http_err_ctr(s); |
| 209 | stream_inc_http_req_ctr(s); |
| 210 | proxy_inc_fe_req_ctr(sess->fe); |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 211 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 212 | if (sess->listener->counters) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 213 | _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 214 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 215 | txn->status = 400; |
| 216 | msg->err_state = msg->msg_state; |
| 217 | msg->msg_state = HTTP_MSG_ERROR; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 218 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 219 | req->analysers &= AN_REQ_FLT_END; |
| 220 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 221 | if (!(s->flags & SF_FINST_MASK)) |
| 222 | s->flags |= SF_FINST_R; |
| 223 | return 0; |
| 224 | } |
| 225 | |
| 226 | channel_dont_connect(req); |
| 227 | req->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */ |
| 228 | s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */ |
Willy Tarreau | 1a18b54 | 2018-12-11 16:37:42 +0100 | [diff] [blame] | 229 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 230 | if (sess->listener->options & LI_O_NOQUICKACK && htx_is_not_empty(htx) && |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 231 | objt_conn(sess->origin) && conn_ctrl_ready(__objt_conn(sess->origin))) { |
| 232 | /* We need more data, we have to re-enable quick-ack in case we |
| 233 | * previously disabled it, otherwise we might cause the client |
| 234 | * to delay next data. |
| 235 | */ |
Willy Tarreau | 1a18b54 | 2018-12-11 16:37:42 +0100 | [diff] [blame] | 236 | conn_set_quickack(objt_conn(sess->origin), 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 237 | } |
Willy Tarreau | 1a18b54 | 2018-12-11 16:37:42 +0100 | [diff] [blame] | 238 | |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 239 | if ((req->flags & CF_READ_PARTIAL) && (txn->flags & TX_WAIT_NEXT_RQ)) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 240 | /* If the client starts to talk, let's fall back to |
| 241 | * request timeout processing. |
| 242 | */ |
| 243 | txn->flags &= ~TX_WAIT_NEXT_RQ; |
| 244 | req->analyse_exp = TICK_ETERNITY; |
| 245 | } |
| 246 | |
| 247 | /* just set the request timeout once at the beginning of the request */ |
| 248 | if (!tick_isset(req->analyse_exp)) { |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 249 | if ((txn->flags & TX_WAIT_NEXT_RQ) && tick_isset(s->be->timeout.httpka)) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 250 | req->analyse_exp = tick_add(now_ms, s->be->timeout.httpka); |
| 251 | else |
| 252 | req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq); |
| 253 | } |
| 254 | |
| 255 | /* we're not ready yet */ |
| 256 | return 0; |
| 257 | |
| 258 | failed_keep_alive: |
| 259 | /* Here we process low-level errors for keep-alive requests. In |
| 260 | * short, if the request is not the first one and it experiences |
| 261 | * a timeout, read error or shutdown, we just silently close so |
| 262 | * that the client can try again. |
| 263 | */ |
| 264 | txn->status = 0; |
| 265 | msg->msg_state = HTTP_MSG_RQBEFORE; |
| 266 | req->analysers &= AN_REQ_FLT_END; |
| 267 | s->logs.logwait = 0; |
| 268 | s->logs.level = 0; |
| 269 | s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 270 | http_reply_and_close(s, txn->status, NULL); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 271 | return 0; |
| 272 | } |
| 273 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 274 | msg->msg_state = HTTP_MSG_BODY; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 275 | stream_inc_http_req_ctr(s); |
| 276 | proxy_inc_fe_req_ctr(sess->fe); /* one more valid request for this FE */ |
| 277 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 278 | /* kill the pending keep-alive timeout */ |
| 279 | txn->flags &= ~TX_WAIT_NEXT_RQ; |
| 280 | req->analyse_exp = TICK_ETERNITY; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 281 | |
Christopher Faulet | 29f1758 | 2019-05-23 11:03:26 +0200 | [diff] [blame] | 282 | BUG_ON(htx_get_first_type(htx) != HTX_BLK_REQ_SL); |
Christopher Faulet | 297fbb4 | 2019-05-13 14:41:27 +0200 | [diff] [blame] | 283 | sl = http_get_stline(htx); |
Christopher Faulet | 0359911 | 2018-11-27 11:21:21 +0100 | [diff] [blame] | 284 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 285 | /* 0: we might have to print this header in debug mode */ |
| 286 | if (unlikely((global.mode & MODE_DEBUG) && |
| 287 | (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) { |
| 288 | int32_t pos; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 289 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 290 | http_debug_stline("clireq", s, sl); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 291 | |
Christopher Faulet | a3f1550 | 2019-05-13 15:27:23 +0200 | [diff] [blame] | 292 | 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] | 293 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 294 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 295 | |
| 296 | if (type == HTX_BLK_EOH) |
| 297 | break; |
| 298 | if (type != HTX_BLK_HDR) |
| 299 | continue; |
| 300 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 301 | http_debug_hdr("clihdr", s, |
| 302 | htx_get_blk_name(htx, blk), |
| 303 | htx_get_blk_value(htx, blk)); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 304 | } |
| 305 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 306 | |
| 307 | /* |
Christopher Faulet | 0359911 | 2018-11-27 11:21:21 +0100 | [diff] [blame] | 308 | * 1: identify the method and the version. Also set HTTP flags |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 309 | */ |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 310 | txn->meth = sl->info.req.meth; |
Christopher Faulet | 0359911 | 2018-11-27 11:21:21 +0100 | [diff] [blame] | 311 | if (sl->flags & HTX_SL_F_VER_11) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 312 | msg->flags |= HTTP_MSGF_VER_11; |
Christopher Faulet | 0359911 | 2018-11-27 11:21:21 +0100 | [diff] [blame] | 313 | msg->flags |= HTTP_MSGF_XFER_LEN; |
Christopher Faulet | 834eee7 | 2019-02-18 11:35:02 +0100 | [diff] [blame] | 314 | msg->flags |= ((sl->flags & HTX_SL_F_CLEN) ? HTTP_MSGF_CNT_LEN : HTTP_MSGF_TE_CHNK); |
Christopher Faulet | b2db4fa | 2018-11-27 16:51:09 +0100 | [diff] [blame] | 315 | if (sl->flags & HTX_SL_F_BODYLESS) |
| 316 | msg->flags |= HTTP_MSGF_BODYLESS; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 317 | |
| 318 | /* we can make use of server redirect on GET and HEAD */ |
| 319 | if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD) |
| 320 | s->flags |= SF_REDIRECTABLE; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 321 | 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] | 322 | /* PRI is reserved for the HTTP/2 preface */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 323 | goto return_bad_req; |
| 324 | } |
| 325 | |
| 326 | /* |
| 327 | * 2: check if the URI matches the monitor_uri. |
| 328 | * We have to do this for every request which gets in, because |
| 329 | * the monitor-uri is defined by the frontend. |
| 330 | */ |
| 331 | if (unlikely((sess->fe->monitor_uri_len != 0) && |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 332 | isteqi(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] | 333 | /* |
| 334 | * We have found the monitor URI |
| 335 | */ |
| 336 | struct acl_cond *cond; |
| 337 | |
| 338 | s->flags |= SF_MONITOR; |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 339 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.intercepted_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 340 | |
| 341 | /* Check if we want to fail this monitor request or not */ |
| 342 | list_for_each_entry(cond, &sess->fe->mon_fail_cond, list) { |
| 343 | int ret = acl_exec_cond(cond, sess->fe, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL); |
| 344 | |
| 345 | ret = acl_pass(ret); |
| 346 | if (cond->pol == ACL_COND_UNLESS) |
| 347 | ret = !ret; |
| 348 | |
| 349 | if (ret) { |
| 350 | /* we fail this request, let's return 503 service unavail */ |
| 351 | txn->status = 503; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 352 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 353 | if (!(s->flags & SF_ERR_MASK)) |
| 354 | s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */ |
| 355 | goto return_prx_cond; |
| 356 | } |
| 357 | } |
| 358 | |
Joseph Herlant | c42c0e9 | 2018-11-25 10:43:27 -0800 | [diff] [blame] | 359 | /* nothing to fail, let's reply normally */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 360 | txn->status = 200; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 361 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 362 | if (!(s->flags & SF_ERR_MASK)) |
| 363 | s->flags |= SF_ERR_LOCAL; /* we don't want a real error here */ |
| 364 | goto return_prx_cond; |
| 365 | } |
| 366 | |
| 367 | /* |
| 368 | * 3: Maybe we have to copy the original REQURI for the logs ? |
| 369 | * Note: we cannot log anymore if the request has been |
| 370 | * classified as invalid. |
| 371 | */ |
| 372 | if (unlikely(s->logs.logwait & LW_REQ)) { |
| 373 | /* we have a complete HTTP request that we must log */ |
| 374 | if ((txn->uri = pool_alloc(pool_head_requri)) != NULL) { |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 375 | size_t len; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 376 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 377 | 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] | 378 | txn->uri[len] = 0; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 379 | |
| 380 | if (!(s->logs.logwait &= ~(LW_REQ|LW_INIT))) |
| 381 | s->do_log(s); |
| 382 | } else { |
| 383 | ha_alert("HTTP logging : out of memory.\n"); |
| 384 | } |
| 385 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 386 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 387 | /* if the frontend has "option http-use-proxy-header", we'll check if |
| 388 | * we have what looks like a proxied connection instead of a connection, |
| 389 | * and in this case set the TX_USE_PX_CONN flag to use Proxy-connection. |
| 390 | * Note that this is *not* RFC-compliant, however browsers and proxies |
| 391 | * happen to do that despite being non-standard :-( |
| 392 | * We consider that a request not beginning with either '/' or '*' is |
| 393 | * a proxied connection, which covers both "scheme://location" and |
| 394 | * CONNECT ip:port. |
| 395 | */ |
| 396 | if ((sess->fe->options2 & PR_O2_USE_PXHDR) && |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 397 | *HTX_SL_REQ_UPTR(sl) != '/' && *HTX_SL_REQ_UPTR(sl) != '*') |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 398 | txn->flags |= TX_USE_PX_CONN; |
| 399 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 400 | /* 5: we may need to capture headers */ |
| 401 | if (unlikely((s->logs.logwait & LW_REQHDR) && s->req_cap)) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 402 | http_capture_headers(htx, s->req_cap, sess->fe->req_cap); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 403 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 404 | /* we may have to wait for the request's body */ |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 405 | if (s->be->options & PR_O_WREQ_BODY) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 406 | req->analysers |= AN_REQ_HTTP_BODY; |
| 407 | |
| 408 | /* |
| 409 | * RFC7234#4: |
| 410 | * A cache MUST write through requests with methods |
| 411 | * that are unsafe (Section 4.2.1 of [RFC7231]) to |
| 412 | * the origin server; i.e., a cache is not allowed |
| 413 | * to generate a reply to such a request before |
| 414 | * having forwarded the request and having received |
| 415 | * a corresponding response. |
| 416 | * |
| 417 | * RFC7231#4.2.1: |
| 418 | * Of the request methods defined by this |
| 419 | * specification, the GET, HEAD, OPTIONS, and TRACE |
| 420 | * methods are defined to be safe. |
| 421 | */ |
| 422 | if (likely(txn->meth == HTTP_METH_GET || |
| 423 | txn->meth == HTTP_METH_HEAD || |
| 424 | txn->meth == HTTP_METH_OPTIONS || |
| 425 | txn->meth == HTTP_METH_TRACE)) |
| 426 | txn->flags |= TX_CACHEABLE | TX_CACHE_COOK; |
| 427 | |
| 428 | /* end of job, return OK */ |
| 429 | req->analysers &= ~an_bit; |
| 430 | req->analyse_exp = TICK_ETERNITY; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 431 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 432 | return 1; |
| 433 | |
| 434 | return_bad_req: |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 435 | txn->status = 400; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 436 | txn->req.err_state = txn->req.msg_state; |
| 437 | txn->req.msg_state = HTTP_MSG_ERROR; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 438 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 439 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 440 | if (sess->listener->counters) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 441 | _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 442 | |
| 443 | return_prx_cond: |
| 444 | if (!(s->flags & SF_ERR_MASK)) |
| 445 | s->flags |= SF_ERR_PRXCOND; |
| 446 | if (!(s->flags & SF_FINST_MASK)) |
| 447 | s->flags |= SF_FINST_R; |
| 448 | |
| 449 | req->analysers &= AN_REQ_FLT_END; |
| 450 | req->analyse_exp = TICK_ETERNITY; |
| 451 | return 0; |
| 452 | } |
| 453 | |
| 454 | |
| 455 | /* This stream analyser runs all HTTP request processing which is common to |
| 456 | * frontends and backends, which means blocking ACLs, filters, connection-close, |
| 457 | * reqadd, stats and redirects. This is performed for the designated proxy. |
| 458 | * It returns 1 if the processing can continue on next analysers, or zero if it |
| 459 | * either needs more data or wants to immediately abort the request (eg: deny, |
| 460 | * error, ...). |
| 461 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 462 | 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] | 463 | { |
| 464 | struct session *sess = s->sess; |
| 465 | struct http_txn *txn = s->txn; |
| 466 | struct http_msg *msg = &txn->req; |
Christopher Faulet | ff2759f | 2018-10-24 11:13:16 +0200 | [diff] [blame] | 467 | struct htx *htx; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 468 | struct redirect_rule *rule; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 469 | enum rule_result verdict; |
| 470 | int deny_status = HTTP_ERR_403; |
| 471 | struct connection *conn = objt_conn(sess->origin); |
| 472 | |
| 473 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) { |
| 474 | /* we need more data */ |
| 475 | goto return_prx_yield; |
| 476 | } |
| 477 | |
| 478 | DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n", |
| 479 | now_ms, __FUNCTION__, |
| 480 | s, |
| 481 | req, |
| 482 | req->rex, req->wex, |
| 483 | req->flags, |
| 484 | ci_data(req), |
| 485 | req->analysers); |
| 486 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 487 | htx = htxbuf(&req->buf); |
Christopher Faulet | ff2759f | 2018-10-24 11:13:16 +0200 | [diff] [blame] | 488 | |
Christopher Faulet | 1907ccc | 2019-04-29 13:12:02 +0200 | [diff] [blame] | 489 | /* just in case we have some per-backend tracking. Only called the first |
| 490 | * execution of the analyser. */ |
| 491 | if (!s->current_rule || s->current_rule_list != &px->http_req_rules) |
| 492 | stream_inc_be_http_req_ctr(s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 493 | |
| 494 | /* evaluate http-request rules */ |
| 495 | if (!LIST_ISEMPTY(&px->http_req_rules)) { |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 496 | verdict = http_req_get_intercept_rule(px, &px->http_req_rules, s, &deny_status); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 497 | |
| 498 | switch (verdict) { |
| 499 | case HTTP_RULE_RES_YIELD: /* some data miss, call the function later. */ |
| 500 | goto return_prx_yield; |
| 501 | |
| 502 | case HTTP_RULE_RES_CONT: |
| 503 | case HTTP_RULE_RES_STOP: /* nothing to do */ |
| 504 | break; |
| 505 | |
| 506 | case HTTP_RULE_RES_DENY: /* deny or tarpit */ |
| 507 | if (txn->flags & TX_CLTARPIT) |
| 508 | goto tarpit; |
| 509 | goto deny; |
| 510 | |
| 511 | case HTTP_RULE_RES_ABRT: /* abort request, response already sent. Eg: auth */ |
| 512 | goto return_prx_cond; |
| 513 | |
| 514 | case HTTP_RULE_RES_DONE: /* OK, but terminate request processing (eg: redirect) */ |
| 515 | goto done; |
| 516 | |
| 517 | case HTTP_RULE_RES_BADREQ: /* failed with a bad request */ |
| 518 | goto return_bad_req; |
| 519 | } |
| 520 | } |
| 521 | |
| 522 | if (conn && (conn->flags & CO_FL_EARLY_DATA) && |
| 523 | (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_HANDSHAKE))) { |
Christopher Faulet | ff2759f | 2018-10-24 11:13:16 +0200 | [diff] [blame] | 524 | struct http_hdr_ctx ctx; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 525 | |
Christopher Faulet | ff2759f | 2018-10-24 11:13:16 +0200 | [diff] [blame] | 526 | ctx.blk = NULL; |
| 527 | if (!http_find_header(htx, ist("Early-Data"), &ctx, 0)) { |
| 528 | if (unlikely(!http_add_header(htx, ist("Early-Data"), ist("1")))) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 529 | goto return_bad_req; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 530 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | /* OK at this stage, we know that the request was accepted according to |
| 534 | * the http-request rules, we can check for the stats. Note that the |
| 535 | * URI is detected *before* the req* rules in order not to be affected |
| 536 | * by a possible reqrep, while they are processed *after* so that a |
| 537 | * reqdeny can still block them. This clearly needs to change in 1.6! |
| 538 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 539 | if (!s->target && http_stats_check_uri(s, txn, px)) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 540 | s->target = &http_stats_applet.obj_type; |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 541 | if (unlikely(!si_register_handler(&s->si[1], objt_applet(s->target)))) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 542 | txn->status = 500; |
| 543 | s->logs.tv_request = now; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 544 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 545 | |
| 546 | if (!(s->flags & SF_ERR_MASK)) |
| 547 | s->flags |= SF_ERR_RESOURCE; |
| 548 | goto return_prx_cond; |
| 549 | } |
| 550 | |
| 551 | /* parse the whole stats request and extract the relevant information */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 552 | http_handle_stats(s, req); |
| 553 | verdict = http_req_get_intercept_rule(px, &px->uri_auth->http_req_rules, s, &deny_status); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 554 | /* not all actions implemented: deny, allow, auth */ |
| 555 | |
| 556 | if (verdict == HTTP_RULE_RES_DENY) /* stats http-request deny */ |
| 557 | goto deny; |
| 558 | |
| 559 | if (verdict == HTTP_RULE_RES_ABRT) /* stats auth / stats http-request auth */ |
| 560 | goto return_prx_cond; |
| 561 | } |
| 562 | |
Christopher Faulet | 2571bc6 | 2019-03-01 11:44:26 +0100 | [diff] [blame] | 563 | /* Proceed with the applets now. */ |
| 564 | if (unlikely(objt_applet(s->target))) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 565 | if (sess->fe == s->be) /* report it if the request was intercepted by the frontend */ |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 566 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.intercepted_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 567 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 568 | if (http_handle_expect_hdr(s, htx, msg) == -1) |
Christopher Faulet | bcf242a | 2019-03-01 11:36:26 +0100 | [diff] [blame] | 569 | goto return_bad_req; |
| 570 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 571 | if (!(s->flags & SF_ERR_MASK)) // this is not really an error but it is |
| 572 | s->flags |= SF_ERR_LOCAL; // to mark that it comes from the proxy |
| 573 | if (!(s->flags & SF_FINST_MASK)) |
| 574 | s->flags |= SF_FINST_R; |
| 575 | |
| 576 | /* enable the minimally required analyzers to handle keep-alive and compression on the HTTP response */ |
| 577 | req->analysers &= (AN_REQ_HTTP_BODY | AN_REQ_FLT_HTTP_HDRS | AN_REQ_FLT_END); |
| 578 | req->analysers &= ~AN_REQ_FLT_XFER_DATA; |
| 579 | req->analysers |= AN_REQ_HTTP_XFER_BODY; |
Christopher Faulet | bcf242a | 2019-03-01 11:36:26 +0100 | [diff] [blame] | 580 | |
| 581 | req->flags |= CF_SEND_DONTWAIT; |
| 582 | s->flags |= SF_ASSIGNED; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 583 | goto done; |
| 584 | } |
| 585 | |
| 586 | /* check whether we have some ACLs set to redirect this request */ |
| 587 | list_for_each_entry(rule, &px->redirect_rules, list) { |
| 588 | if (rule->cond) { |
| 589 | int ret; |
| 590 | |
| 591 | ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL); |
| 592 | ret = acl_pass(ret); |
| 593 | if (rule->cond->pol == ACL_COND_UNLESS) |
| 594 | ret = !ret; |
| 595 | if (!ret) |
| 596 | continue; |
| 597 | } |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 598 | if (!http_apply_redirect_rule(rule, s, txn)) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 599 | goto return_bad_req; |
| 600 | goto done; |
| 601 | } |
| 602 | |
| 603 | /* POST requests may be accompanied with an "Expect: 100-Continue" header. |
| 604 | * If this happens, then the data will not come immediately, so we must |
| 605 | * send all what we have without waiting. Note that due to the small gain |
| 606 | * in waiting for the body of the request, it's easier to simply put the |
| 607 | * CF_SEND_DONTWAIT flag any time. It's a one-shot flag so it will remove |
| 608 | * itself once used. |
| 609 | */ |
| 610 | req->flags |= CF_SEND_DONTWAIT; |
| 611 | |
| 612 | done: /* done with this analyser, continue with next ones that the calling |
| 613 | * points will have set, if any. |
| 614 | */ |
| 615 | req->analyse_exp = TICK_ETERNITY; |
| 616 | done_without_exp: /* done with this analyser, but dont reset the analyse_exp. */ |
| 617 | req->analysers &= ~an_bit; |
| 618 | return 1; |
| 619 | |
| 620 | tarpit: |
| 621 | /* Allow cookie logging |
| 622 | */ |
| 623 | if (s->be->cookie_name || sess->fe->capture_name) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 624 | http_manage_client_side_cookies(s, req); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 625 | |
| 626 | /* When a connection is tarpitted, we use the tarpit timeout, |
| 627 | * which may be the same as the connect timeout if unspecified. |
| 628 | * If unset, then set it to zero because we really want it to |
| 629 | * eventually expire. We build the tarpit as an analyser. |
| 630 | */ |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 631 | channel_htx_erase(&s->req, htx); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 632 | |
| 633 | /* wipe the request out so that we can drop the connection early |
| 634 | * if the client closes first. |
| 635 | */ |
| 636 | channel_dont_connect(req); |
| 637 | |
| 638 | txn->status = http_err_codes[deny_status]; |
| 639 | |
| 640 | req->analysers &= AN_REQ_FLT_END; /* remove switching rules etc... */ |
| 641 | req->analysers |= AN_REQ_HTTP_TARPIT; |
| 642 | req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.tarpit); |
| 643 | if (!req->analyse_exp) |
| 644 | req->analyse_exp = tick_add(now_ms, 0); |
| 645 | stream_inc_http_err_ctr(s); |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 646 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 647 | if (sess->fe != s->be) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 648 | _HA_ATOMIC_ADD(&s->be->be_counters.denied_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 649 | if (sess->listener->counters) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 650 | _HA_ATOMIC_ADD(&sess->listener->counters->denied_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 651 | goto done_without_exp; |
| 652 | |
| 653 | deny: /* this request was blocked (denied) */ |
| 654 | |
| 655 | /* Allow cookie logging |
| 656 | */ |
| 657 | if (s->be->cookie_name || sess->fe->capture_name) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 658 | http_manage_client_side_cookies(s, req); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 659 | |
| 660 | txn->flags |= TX_CLDENY; |
| 661 | txn->status = http_err_codes[deny_status]; |
| 662 | s->logs.tv_request = now; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 663 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 664 | stream_inc_http_err_ctr(s); |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 665 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 666 | if (sess->fe != s->be) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 667 | _HA_ATOMIC_ADD(&s->be->be_counters.denied_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 668 | if (sess->listener->counters) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 669 | _HA_ATOMIC_ADD(&sess->listener->counters->denied_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 670 | goto return_prx_cond; |
| 671 | |
| 672 | return_bad_req: |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 673 | txn->req.err_state = txn->req.msg_state; |
| 674 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 675 | txn->status = 400; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 676 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 677 | |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 678 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 679 | if (sess->listener->counters) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 680 | _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 681 | |
| 682 | return_prx_cond: |
| 683 | if (!(s->flags & SF_ERR_MASK)) |
| 684 | s->flags |= SF_ERR_PRXCOND; |
| 685 | if (!(s->flags & SF_FINST_MASK)) |
| 686 | s->flags |= SF_FINST_R; |
| 687 | |
| 688 | req->analysers &= AN_REQ_FLT_END; |
| 689 | req->analyse_exp = TICK_ETERNITY; |
| 690 | return 0; |
| 691 | |
| 692 | return_prx_yield: |
| 693 | channel_dont_connect(req); |
| 694 | return 0; |
| 695 | } |
| 696 | |
| 697 | /* This function performs all the processing enabled for the current request. |
| 698 | * It returns 1 if the processing can continue on next analysers, or zero if it |
| 699 | * needs more data, encounters an error, or wants to immediately abort the |
| 700 | * request. It relies on buffers flags, and updates s->req.analysers. |
| 701 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 702 | 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] | 703 | { |
| 704 | struct session *sess = s->sess; |
| 705 | struct http_txn *txn = s->txn; |
| 706 | struct http_msg *msg = &txn->req; |
Christopher Faulet | d7bdfb1 | 2018-10-24 11:14:34 +0200 | [diff] [blame] | 707 | struct htx *htx; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 708 | struct connection *cli_conn = objt_conn(strm_sess(s)->origin); |
| 709 | |
| 710 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) { |
| 711 | /* we need more data */ |
| 712 | channel_dont_connect(req); |
| 713 | return 0; |
| 714 | } |
| 715 | |
| 716 | DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n", |
| 717 | now_ms, __FUNCTION__, |
| 718 | s, |
| 719 | req, |
| 720 | req->rex, req->wex, |
| 721 | req->flags, |
| 722 | ci_data(req), |
| 723 | req->analysers); |
| 724 | |
| 725 | /* |
| 726 | * Right now, we know that we have processed the entire headers |
| 727 | * and that unwanted requests have been filtered out. We can do |
| 728 | * whatever we want with the remaining request. Also, now we |
| 729 | * may have separate values for ->fe, ->be. |
| 730 | */ |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 731 | htx = htxbuf(&req->buf); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 732 | |
| 733 | /* |
| 734 | * If HTTP PROXY is set we simply get remote server address parsing |
| 735 | * incoming request. Note that this requires that a connection is |
| 736 | * allocated on the server side. |
| 737 | */ |
| 738 | if ((s->be->options & PR_O_HTTP_PROXY) && !(s->flags & SF_ADDR_SET)) { |
| 739 | struct connection *conn; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 740 | struct htx_sl *sl; |
| 741 | struct ist uri, path; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 742 | |
| 743 | /* Note that for now we don't reuse existing proxy connections */ |
| 744 | if (unlikely((conn = cs_conn(si_alloc_cs(&s->si[1], NULL))) == NULL)) { |
| 745 | txn->req.err_state = txn->req.msg_state; |
| 746 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 747 | txn->status = 500; |
| 748 | req->analysers &= AN_REQ_FLT_END; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 749 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 750 | |
| 751 | if (!(s->flags & SF_ERR_MASK)) |
| 752 | s->flags |= SF_ERR_RESOURCE; |
| 753 | if (!(s->flags & SF_FINST_MASK)) |
| 754 | s->flags |= SF_FINST_R; |
| 755 | |
| 756 | return 0; |
| 757 | } |
Christopher Faulet | 297fbb4 | 2019-05-13 14:41:27 +0200 | [diff] [blame] | 758 | sl = http_get_stline(htx); |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 759 | uri = htx_sl_req_uri(sl); |
| 760 | path = http_get_path(uri); |
Willy Tarreau | a48f4b3 | 2019-07-17 15:11:59 +0200 | [diff] [blame] | 761 | |
| 762 | /* FIXME WTA: below we'll need to dynamically allocate the dst address */ |
| 763 | if (url2sa(uri.ptr, uri.len - path.len, conn->dst, NULL) == -1) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 764 | goto return_bad_req; |
| 765 | |
| 766 | /* if the path was found, we have to remove everything between |
Christopher Faulet | d7bdfb1 | 2018-10-24 11:14:34 +0200 | [diff] [blame] | 767 | * uri.ptr and path.ptr (excluded). If it was not found, we need |
| 768 | * to replace from all the uri by a single "/". |
| 769 | * |
| 770 | * Instead of rewritting the whole start line, we just update |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 771 | * 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] | 772 | * insignificant. |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 773 | */ |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 774 | istcpy(&uri, (path.len ? path : ist("/")), uri.len); |
Willy Tarreau | 69564b1 | 2019-07-18 16:17:15 +0200 | [diff] [blame] | 775 | conn->target = &s->be->obj_type; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 776 | } |
| 777 | |
| 778 | /* |
| 779 | * 7: Now we can work with the cookies. |
| 780 | * Note that doing so might move headers in the request, but |
| 781 | * the fields will stay coherent and the URI will not move. |
| 782 | * This should only be performed in the backend. |
| 783 | */ |
| 784 | if (s->be->cookie_name || sess->fe->capture_name) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 785 | http_manage_client_side_cookies(s, req); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 786 | |
| 787 | /* add unique-id if "header-unique-id" is specified */ |
| 788 | |
| 789 | if (!LIST_ISEMPTY(&sess->fe->format_unique_id) && !s->unique_id) { |
| 790 | if ((s->unique_id = pool_alloc(pool_head_uniqueid)) == NULL) |
| 791 | goto return_bad_req; |
| 792 | s->unique_id[0] = '\0'; |
| 793 | build_logline(s, s->unique_id, UNIQUEID_LEN, &sess->fe->format_unique_id); |
| 794 | } |
| 795 | |
| 796 | if (sess->fe->header_unique_id && s->unique_id) { |
Christopher Faulet | d7bdfb1 | 2018-10-24 11:14:34 +0200 | [diff] [blame] | 797 | struct ist n = ist2(sess->fe->header_unique_id, strlen(sess->fe->header_unique_id)); |
| 798 | struct ist v = ist2(s->unique_id, strlen(s->unique_id)); |
| 799 | |
| 800 | if (unlikely(!http_add_header(htx, n, v))) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 801 | goto return_bad_req; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 802 | } |
| 803 | |
| 804 | /* |
| 805 | * 9: add X-Forwarded-For if either the frontend or the backend |
| 806 | * asks for it. |
| 807 | */ |
| 808 | if ((sess->fe->options | s->be->options) & PR_O_FWDFOR) { |
Christopher Faulet | d7bdfb1 | 2018-10-24 11:14:34 +0200 | [diff] [blame] | 809 | struct http_hdr_ctx ctx = { .blk = NULL }; |
| 810 | struct ist hdr = ist2(s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_name : sess->fe->fwdfor_hdr_name, |
| 811 | s->be->fwdfor_hdr_len ? s->be->fwdfor_hdr_len : sess->fe->fwdfor_hdr_len); |
| 812 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 813 | if (!((sess->fe->options | s->be->options) & PR_O_FF_ALWAYS) && |
Christopher Faulet | d7bdfb1 | 2018-10-24 11:14:34 +0200 | [diff] [blame] | 814 | http_find_header(htx, hdr, &ctx, 0)) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 815 | /* The header is set to be added only if none is present |
| 816 | * and we found it, so don't do anything. |
| 817 | */ |
| 818 | } |
Willy Tarreau | a48f4b3 | 2019-07-17 15:11:59 +0200 | [diff] [blame] | 819 | 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] | 820 | /* Add an X-Forwarded-For header unless the source IP is |
| 821 | * in the 'except' network range. |
| 822 | */ |
| 823 | if ((!sess->fe->except_mask.s_addr || |
Willy Tarreau | a48f4b3 | 2019-07-17 15:11:59 +0200 | [diff] [blame] | 824 | (((struct sockaddr_in *)cli_conn->src)->sin_addr.s_addr & sess->fe->except_mask.s_addr) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 825 | != sess->fe->except_net.s_addr) && |
| 826 | (!s->be->except_mask.s_addr || |
Willy Tarreau | a48f4b3 | 2019-07-17 15:11:59 +0200 | [diff] [blame] | 827 | (((struct sockaddr_in *)cli_conn->src)->sin_addr.s_addr & s->be->except_mask.s_addr) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 828 | != s->be->except_net.s_addr)) { |
Willy Tarreau | a48f4b3 | 2019-07-17 15:11:59 +0200 | [diff] [blame] | 829 | 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] | 830 | |
| 831 | /* Note: we rely on the backend to get the header name to be used for |
| 832 | * x-forwarded-for, because the header is really meant for the backends. |
| 833 | * However, if the backend did not specify any option, we have to rely |
| 834 | * on the frontend's header name. |
| 835 | */ |
Christopher Faulet | d7bdfb1 | 2018-10-24 11:14:34 +0200 | [diff] [blame] | 836 | chunk_printf(&trash, "%d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]); |
| 837 | if (unlikely(!http_add_header(htx, hdr, ist2(trash.area, trash.data)))) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 838 | goto return_bad_req; |
| 839 | } |
| 840 | } |
Willy Tarreau | a48f4b3 | 2019-07-17 15:11:59 +0200 | [diff] [blame] | 841 | else if (cli_conn && conn_get_src(cli_conn) && cli_conn->src->ss_family == AF_INET6) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 842 | /* FIXME: for the sake of completeness, we should also support |
| 843 | * 'except' here, although it is mostly useless in this case. |
| 844 | */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 845 | char pn[INET6_ADDRSTRLEN]; |
Christopher Faulet | d7bdfb1 | 2018-10-24 11:14:34 +0200 | [diff] [blame] | 846 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 847 | inet_ntop(AF_INET6, |
Willy Tarreau | a48f4b3 | 2019-07-17 15:11:59 +0200 | [diff] [blame] | 848 | (const void *)&((struct sockaddr_in6 *)(cli_conn->src))->sin6_addr, |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 849 | pn, sizeof(pn)); |
| 850 | |
| 851 | /* Note: we rely on the backend to get the header name to be used for |
| 852 | * x-forwarded-for, because the header is really meant for the backends. |
| 853 | * However, if the backend did not specify any option, we have to rely |
| 854 | * on the frontend's header name. |
| 855 | */ |
Christopher Faulet | d7bdfb1 | 2018-10-24 11:14:34 +0200 | [diff] [blame] | 856 | chunk_printf(&trash, "%s", pn); |
| 857 | if (unlikely(!http_add_header(htx, hdr, ist2(trash.area, trash.data)))) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 858 | goto return_bad_req; |
| 859 | } |
| 860 | } |
| 861 | |
| 862 | /* |
| 863 | * 10: add X-Original-To if either the frontend or the backend |
| 864 | * asks for it. |
| 865 | */ |
| 866 | if ((sess->fe->options | s->be->options) & PR_O_ORGTO) { |
| 867 | |
| 868 | /* FIXME: don't know if IPv6 can handle that case too. */ |
Willy Tarreau | a48f4b3 | 2019-07-17 15:11:59 +0200 | [diff] [blame] | 869 | if (cli_conn && conn_get_src(cli_conn) && cli_conn->src->ss_family == AF_INET && conn_get_dst(cli_conn)) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 870 | /* Add an X-Original-To header unless the destination IP is |
| 871 | * in the 'except' network range. |
| 872 | */ |
Willy Tarreau | a48f4b3 | 2019-07-17 15:11:59 +0200 | [diff] [blame] | 873 | if (cli_conn->dst->ss_family == AF_INET && |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 874 | ((!sess->fe->except_mask_to.s_addr || |
Willy Tarreau | a48f4b3 | 2019-07-17 15:11:59 +0200 | [diff] [blame] | 875 | (((struct sockaddr_in *)cli_conn->dst)->sin_addr.s_addr & sess->fe->except_mask_to.s_addr) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 876 | != sess->fe->except_to.s_addr) && |
| 877 | (!s->be->except_mask_to.s_addr || |
Willy Tarreau | a48f4b3 | 2019-07-17 15:11:59 +0200 | [diff] [blame] | 878 | (((struct sockaddr_in *)cli_conn->dst)->sin_addr.s_addr & s->be->except_mask_to.s_addr) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 879 | != s->be->except_to.s_addr))) { |
Christopher Faulet | d7bdfb1 | 2018-10-24 11:14:34 +0200 | [diff] [blame] | 880 | struct ist hdr; |
Willy Tarreau | a48f4b3 | 2019-07-17 15:11:59 +0200 | [diff] [blame] | 881 | 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] | 882 | |
| 883 | /* Note: we rely on the backend to get the header name to be used for |
| 884 | * x-original-to, because the header is really meant for the backends. |
| 885 | * However, if the backend did not specify any option, we have to rely |
| 886 | * on the frontend's header name. |
| 887 | */ |
Christopher Faulet | d7bdfb1 | 2018-10-24 11:14:34 +0200 | [diff] [blame] | 888 | if (s->be->orgto_hdr_len) |
| 889 | hdr = ist2(s->be->orgto_hdr_name, s->be->orgto_hdr_len); |
| 890 | else |
| 891 | hdr = ist2(sess->fe->orgto_hdr_name, sess->fe->orgto_hdr_len); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 892 | |
Christopher Faulet | d7bdfb1 | 2018-10-24 11:14:34 +0200 | [diff] [blame] | 893 | chunk_printf(&trash, "%d.%d.%d.%d", pn[0], pn[1], pn[2], pn[3]); |
| 894 | if (unlikely(!http_add_header(htx, hdr, ist2(trash.area, trash.data)))) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 895 | goto return_bad_req; |
| 896 | } |
| 897 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 898 | } |
| 899 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 900 | /* If we have no server assigned yet and we're balancing on url_param |
| 901 | * with a POST request, we may be interested in checking the body for |
| 902 | * that parameter. This will be done in another analyser. |
| 903 | */ |
| 904 | if (!(s->flags & (SF_ASSIGNED|SF_DIRECT)) && |
Willy Tarreau | 089eaa0 | 2019-01-14 15:17:46 +0100 | [diff] [blame] | 905 | s->txn->meth == HTTP_METH_POST && |
| 906 | (s->be->lbprm.algo & BE_LB_ALGO) == BE_LB_ALGO_PH) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 907 | channel_dont_connect(req); |
| 908 | req->analysers |= AN_REQ_HTTP_BODY; |
| 909 | } |
| 910 | |
| 911 | req->analysers &= ~AN_REQ_FLT_XFER_DATA; |
| 912 | req->analysers |= AN_REQ_HTTP_XFER_BODY; |
Willy Tarreau | 1a18b54 | 2018-12-11 16:37:42 +0100 | [diff] [blame] | 913 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 914 | /* We expect some data from the client. Unless we know for sure |
| 915 | * we already have a full request, we have to re-enable quick-ack |
| 916 | * in case we previously disabled it, otherwise we might cause |
| 917 | * the client to delay further data. |
| 918 | */ |
| 919 | if ((sess->listener->options & LI_O_NOQUICKACK) && |
Christopher Faulet | d7bdfb1 | 2018-10-24 11:14:34 +0200 | [diff] [blame] | 920 | (htx_get_tail_type(htx) != HTX_BLK_EOM)) |
Willy Tarreau | 1a18b54 | 2018-12-11 16:37:42 +0100 | [diff] [blame] | 921 | conn_set_quickack(cli_conn, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 922 | |
| 923 | /************************************************************* |
| 924 | * OK, that's finished for the headers. We have done what we * |
| 925 | * could. Let's switch to the DATA state. * |
| 926 | ************************************************************/ |
| 927 | req->analyse_exp = TICK_ETERNITY; |
| 928 | req->analysers &= ~an_bit; |
| 929 | |
| 930 | s->logs.tv_request = now; |
| 931 | /* OK let's go on with the BODY now */ |
| 932 | return 1; |
| 933 | |
| 934 | return_bad_req: /* let's centralize all bad requests */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 935 | txn->req.err_state = txn->req.msg_state; |
| 936 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 937 | txn->status = 400; |
| 938 | req->analysers &= AN_REQ_FLT_END; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 939 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 940 | |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 941 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 942 | if (sess->listener->counters) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 943 | _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 944 | |
| 945 | if (!(s->flags & SF_ERR_MASK)) |
| 946 | s->flags |= SF_ERR_PRXCOND; |
| 947 | if (!(s->flags & SF_FINST_MASK)) |
| 948 | s->flags |= SF_FINST_R; |
| 949 | return 0; |
| 950 | } |
| 951 | |
| 952 | /* This function is an analyser which processes the HTTP tarpit. It always |
| 953 | * returns zero, at the beginning because it prevents any other processing |
| 954 | * from occurring, and at the end because it terminates the request. |
| 955 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 956 | 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] | 957 | { |
| 958 | struct http_txn *txn = s->txn; |
| 959 | |
| 960 | /* This connection is being tarpitted. The CLIENT side has |
| 961 | * already set the connect expiration date to the right |
| 962 | * timeout. We just have to check that the client is still |
| 963 | * there and that the timeout has not expired. |
| 964 | */ |
| 965 | channel_dont_connect(req); |
| 966 | if ((req->flags & (CF_SHUTR|CF_READ_ERROR)) == 0 && |
| 967 | !tick_is_expired(req->analyse_exp, now_ms)) |
| 968 | return 0; |
| 969 | |
| 970 | /* We will set the queue timer to the time spent, just for |
| 971 | * logging purposes. We fake a 500 server error, so that the |
| 972 | * attacker will not suspect his connection has been tarpitted. |
| 973 | * It will not cause trouble to the logs because we can exclude |
| 974 | * the tarpitted connections by filtering on the 'PT' status flags. |
| 975 | */ |
| 976 | s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now); |
| 977 | |
| 978 | if (!(req->flags & CF_READ_ERROR)) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 979 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 980 | |
| 981 | req->analysers &= AN_REQ_FLT_END; |
| 982 | req->analyse_exp = TICK_ETERNITY; |
| 983 | |
| 984 | if (!(s->flags & SF_ERR_MASK)) |
| 985 | s->flags |= SF_ERR_PRXCOND; |
| 986 | if (!(s->flags & SF_FINST_MASK)) |
| 987 | s->flags |= SF_FINST_T; |
| 988 | return 0; |
| 989 | } |
| 990 | |
| 991 | /* This function is an analyser which waits for the HTTP request body. It waits |
| 992 | * for either the buffer to be full, or the full advertised contents to have |
| 993 | * reached the buffer. It must only be called after the standard HTTP request |
| 994 | * processing has occurred, because it expects the request to be parsed and will |
| 995 | * look for the Expect header. It may send a 100-Continue interim response. It |
| 996 | * takes in input any state starting from HTTP_MSG_BODY and leaves with one of |
| 997 | * HTTP_MSG_CHK_SIZE, HTTP_MSG_DATA or HTTP_MSG_TRAILERS. It returns zero if it |
| 998 | * needs to read more data, or 1 once it has completed its analysis. |
| 999 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1000 | 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] | 1001 | { |
| 1002 | struct session *sess = s->sess; |
| 1003 | struct http_txn *txn = s->txn; |
| 1004 | struct http_msg *msg = &s->txn->req; |
Christopher Faulet | f76ebe8 | 2018-10-24 11:16:22 +0200 | [diff] [blame] | 1005 | struct htx *htx; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1006 | |
Christopher Faulet | f76ebe8 | 2018-10-24 11:16:22 +0200 | [diff] [blame] | 1007 | |
| 1008 | DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n", |
| 1009 | now_ms, __FUNCTION__, |
| 1010 | s, |
| 1011 | req, |
| 1012 | req->rex, req->wex, |
| 1013 | req->flags, |
| 1014 | ci_data(req), |
| 1015 | req->analysers); |
| 1016 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 1017 | htx = htxbuf(&req->buf); |
Christopher Faulet | f76ebe8 | 2018-10-24 11:16:22 +0200 | [diff] [blame] | 1018 | |
Willy Tarreau | 4236f03 | 2019-03-05 10:43:32 +0100 | [diff] [blame] | 1019 | if (htx->flags & HTX_FL_PARSING_ERROR) |
| 1020 | goto return_bad_req; |
| 1021 | |
Christopher Faulet | f76ebe8 | 2018-10-24 11:16:22 +0200 | [diff] [blame] | 1022 | if (msg->msg_state < HTTP_MSG_BODY) |
| 1023 | goto missing_data; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1024 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1025 | /* We have to parse the HTTP request body to find any required data. |
| 1026 | * "balance url_param check_post" should have been the only way to get |
| 1027 | * into this. We were brought here after HTTP header analysis, so all |
| 1028 | * related structures are ready. |
| 1029 | */ |
| 1030 | |
Christopher Faulet | f76ebe8 | 2018-10-24 11:16:22 +0200 | [diff] [blame] | 1031 | if (msg->msg_state < HTTP_MSG_DATA) { |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1032 | if (http_handle_expect_hdr(s, htx, msg) == -1) |
Christopher Faulet | 4a28a53 | 2019-03-01 11:19:40 +0100 | [diff] [blame] | 1033 | goto return_bad_req; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1034 | } |
| 1035 | |
Christopher Faulet | f76ebe8 | 2018-10-24 11:16:22 +0200 | [diff] [blame] | 1036 | msg->msg_state = HTTP_MSG_DATA; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1037 | |
Christopher Faulet | f76ebe8 | 2018-10-24 11:16:22 +0200 | [diff] [blame] | 1038 | /* Now we're in HTTP_MSG_DATA. We just need to know if all data have |
| 1039 | * been received or if the buffer is full. |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1040 | */ |
Christopher Faulet | 54b5e21 | 2019-06-04 10:08:28 +0200 | [diff] [blame] | 1041 | if (htx_get_tail_type(htx) > HTX_BLK_DATA || |
Christopher Faulet | dcd8c5e | 2019-01-21 11:24:38 +0100 | [diff] [blame] | 1042 | channel_htx_full(req, htx, global.tune.maxrewrite)) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1043 | goto http_end; |
| 1044 | |
Christopher Faulet | f76ebe8 | 2018-10-24 11:16:22 +0200 | [diff] [blame] | 1045 | missing_data: |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1046 | if ((req->flags & CF_READ_TIMEOUT) || tick_is_expired(req->analyse_exp, now_ms)) { |
| 1047 | txn->status = 408; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1048 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1049 | |
| 1050 | if (!(s->flags & SF_ERR_MASK)) |
| 1051 | s->flags |= SF_ERR_CLITO; |
| 1052 | if (!(s->flags & SF_FINST_MASK)) |
| 1053 | s->flags |= SF_FINST_D; |
| 1054 | goto return_err_msg; |
| 1055 | } |
| 1056 | |
| 1057 | /* we get here if we need to wait for more data */ |
| 1058 | if (!(req->flags & (CF_SHUTR | CF_READ_ERROR))) { |
| 1059 | /* Not enough data. We'll re-use the http-request |
| 1060 | * timeout here. Ideally, we should set the timeout |
| 1061 | * relative to the accept() date. We just set the |
| 1062 | * request timeout once at the beginning of the |
| 1063 | * request. |
| 1064 | */ |
| 1065 | channel_dont_connect(req); |
| 1066 | if (!tick_isset(req->analyse_exp)) |
| 1067 | req->analyse_exp = tick_add_ifset(now_ms, s->be->timeout.httpreq); |
| 1068 | return 0; |
| 1069 | } |
| 1070 | |
| 1071 | http_end: |
| 1072 | /* The situation will not evolve, so let's give up on the analysis. */ |
| 1073 | s->logs.tv_request = now; /* update the request timer to reflect full request */ |
| 1074 | req->analysers &= ~an_bit; |
| 1075 | req->analyse_exp = TICK_ETERNITY; |
| 1076 | return 1; |
| 1077 | |
| 1078 | return_bad_req: /* let's centralize all bad requests */ |
| 1079 | txn->req.err_state = txn->req.msg_state; |
| 1080 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 1081 | txn->status = 400; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1082 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1083 | |
| 1084 | if (!(s->flags & SF_ERR_MASK)) |
| 1085 | s->flags |= SF_ERR_PRXCOND; |
| 1086 | if (!(s->flags & SF_FINST_MASK)) |
| 1087 | s->flags |= SF_FINST_R; |
| 1088 | |
| 1089 | return_err_msg: |
| 1090 | req->analysers &= AN_REQ_FLT_END; |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 1091 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1092 | if (sess->listener->counters) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 1093 | _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1094 | return 0; |
| 1095 | } |
| 1096 | |
| 1097 | /* This function is an analyser which forwards request body (including chunk |
| 1098 | * sizes if any). It is called as soon as we must forward, even if we forward |
| 1099 | * zero byte. The only situation where it must not be called is when we're in |
| 1100 | * tunnel mode and we want to forward till the close. It's used both to forward |
| 1101 | * remaining data and to resync after end of body. It expects the msg_state to |
| 1102 | * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to |
| 1103 | * read more data, or 1 once we can go on with next request or end the stream. |
| 1104 | * When in MSG_DATA or MSG_TRAILERS, it will automatically forward chunk_len |
| 1105 | * bytes of pending data + the headers if not already done. |
| 1106 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1107 | 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] | 1108 | { |
| 1109 | struct session *sess = s->sess; |
| 1110 | struct http_txn *txn = s->txn; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1111 | struct http_msg *msg = &txn->req; |
| 1112 | struct htx *htx; |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1113 | short status = 0; |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 1114 | int ret; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1115 | |
| 1116 | DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n", |
| 1117 | now_ms, __FUNCTION__, |
| 1118 | s, |
| 1119 | req, |
| 1120 | req->rex, req->wex, |
| 1121 | req->flags, |
| 1122 | ci_data(req), |
| 1123 | req->analysers); |
| 1124 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 1125 | htx = htxbuf(&req->buf); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1126 | |
| 1127 | if ((req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) || |
| 1128 | ((req->flags & CF_SHUTW) && (req->to_forward || co_data(req)))) { |
| 1129 | /* Output closed while we were sending data. We must abort and |
| 1130 | * wake the other side up. |
| 1131 | */ |
Olivier Houchard | 29cac3c | 2019-07-12 15:48:58 +0200 | [diff] [blame] | 1132 | /* Don't abort yet if we had L7 retries activated and it |
| 1133 | * was a write error, we may recover. |
| 1134 | */ |
| 1135 | if (!(req->flags & (CF_READ_ERROR | CF_READ_TIMEOUT)) && |
| 1136 | (s->si[1].flags & SI_FL_L7_RETRY)) |
| 1137 | return 0; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1138 | msg->err_state = msg->msg_state; |
| 1139 | msg->msg_state = HTTP_MSG_ERROR; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1140 | http_end_request(s); |
| 1141 | http_end_response(s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1142 | return 1; |
| 1143 | } |
| 1144 | |
| 1145 | /* Note that we don't have to send 100-continue back because we don't |
| 1146 | * need the data to complete our job, and it's up to the server to |
| 1147 | * decide whether to return 100, 417 or anything else in return of |
| 1148 | * an "Expect: 100-continue" header. |
| 1149 | */ |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1150 | if (msg->msg_state == HTTP_MSG_BODY) |
| 1151 | msg->msg_state = HTTP_MSG_DATA; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1152 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1153 | /* in most states, we should abort in case of early close */ |
| 1154 | channel_auto_close(req); |
| 1155 | |
| 1156 | if (req->to_forward) { |
Christopher Faulet | 66af0b2 | 2019-03-22 14:54:52 +0100 | [diff] [blame] | 1157 | if (req->to_forward == CHN_INFINITE_FORWARD) { |
| 1158 | if (req->flags & (CF_SHUTR|CF_EOI)) { |
| 1159 | msg->msg_state = HTTP_MSG_DONE; |
| 1160 | req->to_forward = 0; |
| 1161 | goto done; |
| 1162 | } |
| 1163 | } |
| 1164 | else { |
| 1165 | /* We can't process the buffer's contents yet */ |
| 1166 | req->flags |= CF_WAKE_WRITE; |
| 1167 | goto missing_data_or_waiting; |
| 1168 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1169 | } |
| 1170 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1171 | if (msg->msg_state >= HTTP_MSG_DONE) |
| 1172 | goto done; |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 1173 | /* Forward input data. We get it by removing all outgoing data not |
| 1174 | * forwarded yet from HTX data size. If there are some data filters, we |
| 1175 | * let them decide the amount of data to forward. |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1176 | */ |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 1177 | if (HAS_REQ_DATA_FILTERS(s)) { |
| 1178 | ret = flt_http_payload(s, msg, htx->data); |
| 1179 | if (ret < 0) |
| 1180 | goto return_bad_req; |
Christopher Faulet | 421e769 | 2019-06-13 11:16:45 +0200 | [diff] [blame] | 1181 | c_adv(req, ret); |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 1182 | } |
| 1183 | else { |
Christopher Faulet | 421e769 | 2019-06-13 11:16:45 +0200 | [diff] [blame] | 1184 | c_adv(req, htx->data - co_data(req)); |
Christopher Faulet | 66af0b2 | 2019-03-22 14:54:52 +0100 | [diff] [blame] | 1185 | if (msg->flags & HTTP_MSGF_XFER_LEN) |
| 1186 | channel_htx_forward_forever(req, htx); |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 1187 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1188 | |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 1189 | if (txn->meth == HTTP_METH_CONNECT) { |
| 1190 | msg->msg_state = HTTP_MSG_TUNNEL; |
| 1191 | goto done; |
| 1192 | } |
| 1193 | |
Christopher Faulet | d20fdb0 | 2019-06-13 16:43:22 +0200 | [diff] [blame] | 1194 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1195 | /* 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] | 1196 | * in HTTP_MSG_ENDING state. Then if all data was marked to be |
| 1197 | * forwarded, set the state to HTTP_MSG_DONE. |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1198 | */ |
| 1199 | if (htx_get_tail_type(htx) != HTX_BLK_EOM) |
| 1200 | goto missing_data_or_waiting; |
| 1201 | |
Christopher Faulet | d20fdb0 | 2019-06-13 16:43:22 +0200 | [diff] [blame] | 1202 | msg->msg_state = HTTP_MSG_ENDING; |
| 1203 | if (htx->data != co_data(req)) |
| 1204 | goto missing_data_or_waiting; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1205 | msg->msg_state = HTTP_MSG_DONE; |
Christopher Faulet | aed68d4 | 2019-03-28 18:12:46 +0100 | [diff] [blame] | 1206 | req->to_forward = 0; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1207 | |
| 1208 | done: |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1209 | /* other states, DONE...TUNNEL */ |
| 1210 | /* we don't want to forward closes on DONE except in tunnel mode. */ |
Christopher Faulet | c41547b | 2019-07-16 14:32:23 +0200 | [diff] [blame] | 1211 | if (!(txn->flags & TX_CON_WANT_TUN)) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1212 | channel_dont_close(req); |
| 1213 | |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 1214 | if (HAS_REQ_DATA_FILTERS(s)) { |
| 1215 | ret = flt_http_end(s, msg); |
| 1216 | if (ret <= 0) { |
| 1217 | if (!ret) |
| 1218 | goto missing_data_or_waiting; |
| 1219 | goto return_bad_req; |
| 1220 | } |
| 1221 | } |
| 1222 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1223 | http_end_request(s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1224 | if (!(req->analysers & an_bit)) { |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1225 | http_end_response(s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1226 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) { |
| 1227 | if (req->flags & CF_SHUTW) { |
| 1228 | /* request errors are most likely due to the |
| 1229 | * server aborting the transfer. */ |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1230 | goto return_srv_abort; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1231 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1232 | goto return_bad_req; |
| 1233 | } |
| 1234 | return 1; |
| 1235 | } |
| 1236 | |
| 1237 | /* If "option abortonclose" is set on the backend, we want to monitor |
| 1238 | * the client's connection and forward any shutdown notification to the |
| 1239 | * server, which will decide whether to close or to go on processing the |
| 1240 | * request. We only do that in tunnel mode, and not in other modes since |
| 1241 | * it can be abused to exhaust source ports. */ |
Christopher Faulet | 769d0e9 | 2019-03-22 14:23:18 +0100 | [diff] [blame] | 1242 | if (s->be->options & PR_O_ABRT_CLOSE) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1243 | channel_auto_read(req); |
Christopher Faulet | c41547b | 2019-07-16 14:32:23 +0200 | [diff] [blame] | 1244 | 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] | 1245 | s->si[1].flags |= SI_FL_NOLINGER; |
| 1246 | channel_auto_close(req); |
| 1247 | } |
| 1248 | else if (s->txn->meth == HTTP_METH_POST) { |
| 1249 | /* POST requests may require to read extra CRLF sent by broken |
| 1250 | * browsers and which could cause an RST to be sent upon close |
| 1251 | * on some systems (eg: Linux). */ |
| 1252 | channel_auto_read(req); |
| 1253 | } |
| 1254 | return 0; |
| 1255 | |
| 1256 | missing_data_or_waiting: |
| 1257 | /* stop waiting for data if the input is closed before the end */ |
Christopher Faulet | d20fdb0 | 2019-06-13 16:43:22 +0200 | [diff] [blame] | 1258 | if (msg->msg_state < HTTP_MSG_ENDING && req->flags & CF_SHUTR) |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1259 | goto return_cli_abort; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1260 | |
| 1261 | waiting: |
| 1262 | /* waiting for the last bits to leave the buffer */ |
| 1263 | if (req->flags & CF_SHUTW) |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1264 | goto return_srv_abort; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1265 | |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1266 | if (htx->flags & HTX_FL_PARSING_ERROR) |
| 1267 | goto return_bad_req; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1268 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1269 | /* When TE: chunked is used, we need to get there again to parse remaining |
| 1270 | * chunks even if the client has closed, so we don't want to set CF_DONTCLOSE. |
| 1271 | * And when content-length is used, we never want to let the possible |
| 1272 | * shutdown be forwarded to the other side, as the state machine will |
| 1273 | * take care of it once the client responds. It's also important to |
| 1274 | * prevent TIME_WAITs from accumulating on the backend side, and for |
| 1275 | * HTTP/2 where the last frame comes with a shutdown. |
| 1276 | */ |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1277 | if (msg->flags & HTTP_MSGF_XFER_LEN) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1278 | channel_dont_close(req); |
| 1279 | |
| 1280 | /* We know that more data are expected, but we couldn't send more that |
| 1281 | * what we did. So we always set the CF_EXPECT_MORE flag so that the |
| 1282 | * system knows it must not set a PUSH on this first part. Interactive |
| 1283 | * modes are already handled by the stream sock layer. We must not do |
| 1284 | * this in content-length mode because it could present the MSG_MORE |
| 1285 | * flag with the last block of forwarded data, which would cause an |
| 1286 | * additional delay to be observed by the receiver. |
| 1287 | */ |
| 1288 | if (msg->flags & HTTP_MSGF_TE_CHNK) |
| 1289 | req->flags |= CF_EXPECT_MORE; |
| 1290 | |
| 1291 | return 0; |
| 1292 | |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1293 | return_cli_abort: |
| 1294 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1); |
| 1295 | _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1); |
| 1296 | if (objt_server(s->target)) |
| 1297 | _HA_ATOMIC_ADD(&objt_server(s->target)->counters.cli_aborts, 1); |
| 1298 | if (!(s->flags & SF_ERR_MASK)) |
| 1299 | s->flags |= SF_ERR_CLICL; |
| 1300 | status = 400; |
| 1301 | goto return_error; |
| 1302 | |
| 1303 | return_srv_abort: |
| 1304 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1); |
| 1305 | _HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1); |
| 1306 | if (objt_server(s->target)) |
| 1307 | _HA_ATOMIC_ADD(&objt_server(s->target)->counters.srv_aborts, 1); |
| 1308 | if (!(s->flags & SF_ERR_MASK)) |
| 1309 | s->flags |= SF_ERR_SRVCL; |
| 1310 | status = 502; |
| 1311 | goto return_error; |
| 1312 | |
| 1313 | return_bad_req: |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 1314 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1315 | if (sess->listener->counters) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 1316 | _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1317 | if (!(s->flags & SF_ERR_MASK)) |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1318 | s->flags |= SF_ERR_CLICL; |
| 1319 | status = 400; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1320 | |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1321 | return_error: |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1322 | txn->req.err_state = txn->req.msg_state; |
| 1323 | txn->req.msg_state = HTTP_MSG_ERROR; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1324 | if (txn->status > 0) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1325 | /* 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] | 1326 | http_reply_and_close(s, txn->status, NULL); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1327 | } else { |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1328 | txn->status = status; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1329 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1330 | } |
| 1331 | req->analysers &= AN_REQ_FLT_END; |
| 1332 | s->res.analysers &= AN_RES_FLT_END; /* we're in data phase, we want to abort both directions */ |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 1333 | if (!(s->flags & SF_FINST_MASK)) |
| 1334 | s->flags |= ((txn->rsp.msg_state < HTTP_MSG_ERROR) ? SF_FINST_H : SF_FINST_D); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1335 | return 0; |
| 1336 | } |
| 1337 | |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1338 | /* Reset the stream and the backend stream_interface to a situation suitable for attemption connection */ |
| 1339 | /* Returns 0 if we can attempt to retry, -1 otherwise */ |
| 1340 | static __inline int do_l7_retry(struct stream *s, struct stream_interface *si) |
| 1341 | { |
| 1342 | struct channel *req, *res; |
| 1343 | int co_data; |
| 1344 | |
| 1345 | si->conn_retries--; |
| 1346 | if (si->conn_retries < 0) |
| 1347 | return -1; |
| 1348 | |
Willy Tarreau | 223995e | 2019-05-04 10:38:31 +0200 | [diff] [blame] | 1349 | if (objt_server(s->target)) |
| 1350 | _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.retries, 1); |
| 1351 | _HA_ATOMIC_ADD(&s->be->be_counters.retries, 1); |
| 1352 | |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1353 | req = &s->req; |
| 1354 | res = &s->res; |
| 1355 | /* Remove any write error from the request, and read error from the response */ |
| 1356 | req->flags &= ~(CF_WRITE_ERROR | CF_WRITE_TIMEOUT | CF_SHUTW | CF_SHUTW_NOW); |
| 1357 | res->flags &= ~(CF_READ_ERROR | CF_READ_TIMEOUT | CF_SHUTR | CF_EOI | CF_READ_NULL | CF_SHUTR_NOW); |
| 1358 | res->analysers = 0; |
| 1359 | si->flags &= ~(SI_FL_ERR | SI_FL_EXP | SI_FL_RXBLK_SHUT); |
Olivier Houchard | 4bd5867 | 2019-07-12 16:16:59 +0200 | [diff] [blame] | 1360 | stream_choose_redispatch(s); |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1361 | si->exp = TICK_ETERNITY; |
| 1362 | res->rex = TICK_ETERNITY; |
| 1363 | res->to_forward = 0; |
| 1364 | res->analyse_exp = TICK_ETERNITY; |
| 1365 | res->total = 0; |
Olivier Houchard | 4bd5867 | 2019-07-12 16:16:59 +0200 | [diff] [blame] | 1366 | s->flags &= ~(SF_ERR_SRVTO | SF_ERR_SRVCL); |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1367 | si_release_endpoint(&s->si[1]); |
| 1368 | b_free(&req->buf); |
| 1369 | /* Swap the L7 buffer with the channel buffer */ |
| 1370 | /* We know we stored the co_data as b_data, so get it there */ |
| 1371 | co_data = b_data(&si->l7_buffer); |
| 1372 | b_set_data(&si->l7_buffer, b_size(&si->l7_buffer)); |
| 1373 | b_xfer(&req->buf, &si->l7_buffer, b_data(&si->l7_buffer)); |
| 1374 | |
| 1375 | co_set_data(req, co_data); |
| 1376 | b_reset(&res->buf); |
| 1377 | co_set_data(res, 0); |
| 1378 | return 0; |
| 1379 | } |
| 1380 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1381 | /* This stream analyser waits for a complete HTTP response. It returns 1 if the |
| 1382 | * processing can continue on next analysers, or zero if it either needs more |
| 1383 | * data or wants to immediately abort the response (eg: timeout, error, ...). It |
| 1384 | * is tied to AN_RES_WAIT_HTTP and may may remove itself from s->res.analysers |
| 1385 | * when it has nothing left to do, and may remove any analyser when it wants to |
| 1386 | * abort. |
| 1387 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1388 | 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] | 1389 | { |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1390 | /* |
| 1391 | * We will analyze a complete HTTP response to check the its syntax. |
| 1392 | * |
| 1393 | * Once the start line and all headers are received, we may perform a |
| 1394 | * capture of the error (if any), and we will set a few fields. We also |
| 1395 | * logging and finally headers capture. |
| 1396 | */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1397 | struct session *sess = s->sess; |
| 1398 | struct http_txn *txn = s->txn; |
| 1399 | struct http_msg *msg = &txn->rsp; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1400 | struct htx *htx; |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1401 | struct stream_interface *si_b = &s->si[1]; |
Christopher Faulet | 6160832 | 2018-11-23 16:23:45 +0100 | [diff] [blame] | 1402 | struct connection *srv_conn; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 1403 | struct htx_sl *sl; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1404 | int n; |
| 1405 | |
| 1406 | DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n", |
| 1407 | now_ms, __FUNCTION__, |
| 1408 | s, |
| 1409 | rep, |
| 1410 | rep->rex, rep->wex, |
| 1411 | rep->flags, |
| 1412 | ci_data(rep), |
| 1413 | rep->analysers); |
| 1414 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 1415 | htx = htxbuf(&rep->buf); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1416 | |
Willy Tarreau | 4236f03 | 2019-03-05 10:43:32 +0100 | [diff] [blame] | 1417 | /* Parsing errors are caught here */ |
| 1418 | if (htx->flags & HTX_FL_PARSING_ERROR) |
| 1419 | goto return_bad_res; |
| 1420 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1421 | /* |
| 1422 | * Now we quickly check if we have found a full valid response. |
| 1423 | * If not so, we check the FD and buffer states before leaving. |
| 1424 | * A full response is indicated by the fact that we have seen |
| 1425 | * the double LF/CRLF, so the state is >= HTTP_MSG_BODY. Invalid |
| 1426 | * responses are checked first. |
| 1427 | * |
| 1428 | * Depending on whether the client is still there or not, we |
| 1429 | * may send an error response back or not. Note that normally |
| 1430 | * we should only check for HTTP status there, and check I/O |
| 1431 | * errors somewhere else. |
| 1432 | */ |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 1433 | next_one: |
Christopher Faulet | 29f1758 | 2019-05-23 11:03:26 +0200 | [diff] [blame] | 1434 | if (unlikely(htx_is_empty(htx) || htx->first == -1)) { |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1435 | /* 1: have we encountered a read error ? */ |
| 1436 | if (rep->flags & CF_READ_ERROR) { |
Olivier Houchard | 865d839 | 2019-05-03 22:46:27 +0200 | [diff] [blame] | 1437 | struct connection *conn = NULL; |
| 1438 | |
Olivier Houchard | 865d839 | 2019-05-03 22:46:27 +0200 | [diff] [blame] | 1439 | if (objt_cs(s->si[1].end)) |
| 1440 | conn = objt_cs(s->si[1].end)->conn; |
| 1441 | |
| 1442 | if (si_b->flags & SI_FL_L7_RETRY && |
| 1443 | (!conn || conn->err_code != CO_ER_SSL_EARLY_FAILED)) { |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1444 | /* If we arrive here, then CF_READ_ERROR was |
| 1445 | * set by si_cs_recv() because we matched a |
| 1446 | * status, overwise it would have removed |
| 1447 | * the SI_FL_L7_RETRY flag, so it's ok not |
| 1448 | * to check s->be->retry_type. |
| 1449 | */ |
| 1450 | if (co_data(rep) || do_l7_retry(s, si_b) == 0) |
| 1451 | return 0; |
| 1452 | } |
| 1453 | |
Olivier Houchard | 6db1699 | 2019-05-17 15:40:49 +0200 | [diff] [blame] | 1454 | if (txn->flags & TX_NOT_FIRST) |
| 1455 | goto abort_keep_alive; |
| 1456 | |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 1457 | _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1458 | if (objt_server(s->target)) { |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 1459 | _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1); |
Willy Tarreau | b54c40a | 2018-12-02 19:28:41 +0100 | [diff] [blame] | 1460 | health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_READ_ERROR); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1461 | } |
| 1462 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1463 | rep->analysers &= AN_RES_FLT_END; |
| 1464 | txn->status = 502; |
| 1465 | |
| 1466 | /* Check to see if the server refused the early data. |
| 1467 | * If so, just send a 425 |
| 1468 | */ |
Olivier Houchard | 865d839 | 2019-05-03 22:46:27 +0200 | [diff] [blame] | 1469 | if (conn->err_code == CO_ER_SSL_EARLY_FAILED) { |
| 1470 | if ((s->be->retry_type & PR_RE_EARLY_ERROR) && |
Olivier Houchard | ad26d8d | 2019-05-10 17:48:28 +0200 | [diff] [blame] | 1471 | (si_b->flags & SI_FL_L7_RETRY) && |
Olivier Houchard | 865d839 | 2019-05-03 22:46:27 +0200 | [diff] [blame] | 1472 | do_l7_retry(s, si_b) == 0) |
| 1473 | return 0; |
| 1474 | txn->status = 425; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1475 | } |
| 1476 | |
| 1477 | s->si[1].flags |= SI_FL_NOLINGER; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1478 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1479 | |
| 1480 | if (!(s->flags & SF_ERR_MASK)) |
| 1481 | s->flags |= SF_ERR_SRVCL; |
| 1482 | if (!(s->flags & SF_FINST_MASK)) |
| 1483 | s->flags |= SF_FINST_H; |
| 1484 | return 0; |
| 1485 | } |
| 1486 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1487 | /* 2: read timeout : return a 504 to the client. */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1488 | else if (rep->flags & CF_READ_TIMEOUT) { |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1489 | if ((si_b->flags & SI_FL_L7_RETRY) && |
| 1490 | (s->be->retry_type & PR_RE_TIMEOUT)) { |
| 1491 | if (co_data(rep) || do_l7_retry(s, si_b) == 0) |
| 1492 | return 0; |
| 1493 | } |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 1494 | _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1495 | if (objt_server(s->target)) { |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 1496 | _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1); |
Willy Tarreau | b54c40a | 2018-12-02 19:28:41 +0100 | [diff] [blame] | 1497 | health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_READ_TIMEOUT); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1498 | } |
| 1499 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1500 | rep->analysers &= AN_RES_FLT_END; |
| 1501 | txn->status = 504; |
| 1502 | s->si[1].flags |= SI_FL_NOLINGER; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1503 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1504 | |
| 1505 | if (!(s->flags & SF_ERR_MASK)) |
| 1506 | s->flags |= SF_ERR_SRVTO; |
| 1507 | if (!(s->flags & SF_FINST_MASK)) |
| 1508 | s->flags |= SF_FINST_H; |
| 1509 | return 0; |
| 1510 | } |
| 1511 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1512 | /* 3: client abort with an abortonclose */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1513 | else if ((rep->flags & CF_SHUTR) && ((s->req.flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW))) { |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 1514 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1); |
| 1515 | _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1516 | if (objt_server(s->target)) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 1517 | _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.cli_aborts, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1518 | |
| 1519 | rep->analysers &= AN_RES_FLT_END; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1520 | txn->status = 400; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1521 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1522 | |
| 1523 | if (!(s->flags & SF_ERR_MASK)) |
| 1524 | s->flags |= SF_ERR_CLICL; |
| 1525 | if (!(s->flags & SF_FINST_MASK)) |
| 1526 | s->flags |= SF_FINST_H; |
| 1527 | |
| 1528 | /* process_stream() will take care of the error */ |
| 1529 | return 0; |
| 1530 | } |
| 1531 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1532 | /* 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] | 1533 | else if (rep->flags & CF_SHUTR) { |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1534 | if ((si_b->flags & SI_FL_L7_RETRY) && |
| 1535 | (s->be->retry_type & PR_RE_DISCONNECTED)) { |
| 1536 | if (co_data(rep) || do_l7_retry(s, si_b) == 0) |
| 1537 | return 0; |
| 1538 | } |
| 1539 | |
Olivier Houchard | 6db1699 | 2019-05-17 15:40:49 +0200 | [diff] [blame] | 1540 | if (txn->flags & TX_NOT_FIRST) |
| 1541 | goto abort_keep_alive; |
| 1542 | |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 1543 | _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1544 | if (objt_server(s->target)) { |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 1545 | _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1); |
Willy Tarreau | b54c40a | 2018-12-02 19:28:41 +0100 | [diff] [blame] | 1546 | health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_BROKEN_PIPE); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1547 | } |
| 1548 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1549 | rep->analysers &= AN_RES_FLT_END; |
| 1550 | txn->status = 502; |
| 1551 | s->si[1].flags |= SI_FL_NOLINGER; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1552 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1553 | |
| 1554 | if (!(s->flags & SF_ERR_MASK)) |
| 1555 | s->flags |= SF_ERR_SRVCL; |
| 1556 | if (!(s->flags & SF_FINST_MASK)) |
| 1557 | s->flags |= SF_FINST_H; |
| 1558 | return 0; |
| 1559 | } |
| 1560 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1561 | /* 5: write error to client (we don't send any message then) */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1562 | else if (rep->flags & CF_WRITE_ERROR) { |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1563 | if (txn->flags & TX_NOT_FIRST) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1564 | goto abort_keep_alive; |
| 1565 | |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 1566 | _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1567 | rep->analysers &= AN_RES_FLT_END; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1568 | |
| 1569 | if (!(s->flags & SF_ERR_MASK)) |
| 1570 | s->flags |= SF_ERR_CLICL; |
| 1571 | if (!(s->flags & SF_FINST_MASK)) |
| 1572 | s->flags |= SF_FINST_H; |
| 1573 | |
| 1574 | /* process_stream() will take care of the error */ |
| 1575 | return 0; |
| 1576 | } |
| 1577 | |
| 1578 | channel_dont_close(rep); |
| 1579 | rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */ |
| 1580 | return 0; |
| 1581 | } |
| 1582 | |
| 1583 | /* More interesting part now : we know that we have a complete |
| 1584 | * response which at least looks like HTTP. We have an indicator |
| 1585 | * of each header's length, so we can parse them quickly. |
| 1586 | */ |
| 1587 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1588 | msg->msg_state = HTTP_MSG_BODY; |
Christopher Faulet | 29f1758 | 2019-05-23 11:03:26 +0200 | [diff] [blame] | 1589 | BUG_ON(htx_get_first_type(htx) != HTX_BLK_RES_SL); |
Christopher Faulet | 297fbb4 | 2019-05-13 14:41:27 +0200 | [diff] [blame] | 1590 | sl = http_get_stline(htx); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1591 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1592 | /* 0: we might have to print this header in debug mode */ |
| 1593 | if (unlikely((global.mode & MODE_DEBUG) && |
| 1594 | (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) { |
| 1595 | int32_t pos; |
| 1596 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1597 | http_debug_stline("srvrep", s, sl); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1598 | |
Christopher Faulet | a3f1550 | 2019-05-13 15:27:23 +0200 | [diff] [blame] | 1599 | 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] | 1600 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 1601 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 1602 | |
| 1603 | if (type == HTX_BLK_EOH) |
| 1604 | break; |
| 1605 | if (type != HTX_BLK_HDR) |
| 1606 | continue; |
| 1607 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1608 | http_debug_hdr("srvhdr", s, |
| 1609 | htx_get_blk_name(htx, blk), |
| 1610 | htx_get_blk_value(htx, blk)); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1611 | } |
| 1612 | } |
| 1613 | |
Christopher Faulet | 0359911 | 2018-11-27 11:21:21 +0100 | [diff] [blame] | 1614 | /* 1: get the status code and the version. Also set HTTP flags */ |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 1615 | txn->status = sl->info.res.status; |
Christopher Faulet | 0359911 | 2018-11-27 11:21:21 +0100 | [diff] [blame] | 1616 | if (sl->flags & HTX_SL_F_VER_11) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1617 | msg->flags |= HTTP_MSGF_VER_11; |
Christopher Faulet | 0359911 | 2018-11-27 11:21:21 +0100 | [diff] [blame] | 1618 | if (sl->flags & HTX_SL_F_XFER_LEN) { |
| 1619 | msg->flags |= HTTP_MSGF_XFER_LEN; |
Christopher Faulet | 834eee7 | 2019-02-18 11:35:02 +0100 | [diff] [blame] | 1620 | msg->flags |= ((sl->flags & HTX_SL_F_CLEN) ? HTTP_MSGF_CNT_LEN : HTTP_MSGF_TE_CHNK); |
Christopher Faulet | b2db4fa | 2018-11-27 16:51:09 +0100 | [diff] [blame] | 1621 | if (sl->flags & HTX_SL_F_BODYLESS) |
| 1622 | msg->flags |= HTTP_MSGF_BODYLESS; |
Christopher Faulet | 0359911 | 2018-11-27 11:21:21 +0100 | [diff] [blame] | 1623 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1624 | |
| 1625 | n = txn->status / 100; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1626 | if (n < 1 || n > 5) |
| 1627 | n = 0; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1628 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1629 | /* when the client triggers a 4xx from the server, it's most often due |
| 1630 | * to a missing object or permission. These events should be tracked |
| 1631 | * because if they happen often, it may indicate a brute force or a |
| 1632 | * vulnerability scan. |
| 1633 | */ |
| 1634 | if (n == 4) |
| 1635 | stream_inc_http_err_ctr(s); |
| 1636 | |
| 1637 | if (objt_server(s->target)) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 1638 | _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.p.http.rsp[n], 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1639 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1640 | /* Adjust server's health based on status code. Note: status codes 501 |
| 1641 | * and 505 are triggered on demand by client request, so we must not |
| 1642 | * count them as server failures. |
| 1643 | */ |
| 1644 | if (objt_server(s->target)) { |
| 1645 | 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] | 1646 | health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_OK); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1647 | else |
Willy Tarreau | b54c40a | 2018-12-02 19:28:41 +0100 | [diff] [blame] | 1648 | health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_STS); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1649 | } |
| 1650 | |
| 1651 | /* |
| 1652 | * We may be facing a 100-continue response, or any other informational |
| 1653 | * 1xx response which is non-final, in which case this is not the right |
| 1654 | * response, and we're waiting for the next one. Let's allow this response |
| 1655 | * to go to the client and wait for the next one. There's an exception for |
| 1656 | * 101 which is used later in the code to switch protocols. |
| 1657 | */ |
| 1658 | if (txn->status < 200 && |
| 1659 | (txn->status == 100 || txn->status >= 102)) { |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 1660 | FLT_STRM_CB(s, flt_http_reset(s, msg)); |
Christopher Faulet | 421e769 | 2019-06-13 11:16:45 +0200 | [diff] [blame] | 1661 | htx->first = channel_htx_fwd_headers(rep, htx); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1662 | msg->msg_state = HTTP_MSG_RPBEFORE; |
| 1663 | txn->status = 0; |
| 1664 | s->logs.t_data = -1; /* was not a response yet */ |
Christopher Faulet | b75b5ea | 2019-05-17 08:37:28 +0200 | [diff] [blame] | 1665 | goto next_one; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1666 | } |
| 1667 | |
| 1668 | /* |
| 1669 | * 2: check for cacheability. |
| 1670 | */ |
| 1671 | |
| 1672 | switch (txn->status) { |
| 1673 | case 200: |
| 1674 | case 203: |
| 1675 | case 204: |
| 1676 | case 206: |
| 1677 | case 300: |
| 1678 | case 301: |
| 1679 | case 404: |
| 1680 | case 405: |
| 1681 | case 410: |
| 1682 | case 414: |
| 1683 | case 501: |
| 1684 | break; |
| 1685 | default: |
| 1686 | /* RFC7231#6.1: |
| 1687 | * Responses with status codes that are defined as |
| 1688 | * cacheable by default (e.g., 200, 203, 204, 206, |
| 1689 | * 300, 301, 404, 405, 410, 414, and 501 in this |
| 1690 | * specification) can be reused by a cache with |
| 1691 | * heuristic expiration unless otherwise indicated |
| 1692 | * by the method definition or explicit cache |
| 1693 | * controls [RFC7234]; all other status codes are |
| 1694 | * not cacheable by default. |
| 1695 | */ |
| 1696 | txn->flags &= ~(TX_CACHEABLE | TX_CACHE_COOK); |
| 1697 | break; |
| 1698 | } |
| 1699 | |
| 1700 | /* |
| 1701 | * 3: we may need to capture headers |
| 1702 | */ |
| 1703 | s->logs.logwait &= ~LW_RESP; |
| 1704 | if (unlikely((s->logs.logwait & LW_RSPHDR) && s->res_cap)) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1705 | http_capture_headers(htx, s->res_cap, sess->fe->rsp_cap); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1706 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1707 | /* Skip parsing if no content length is possible. */ |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1708 | if (unlikely((txn->meth == HTTP_METH_CONNECT && txn->status == 200) || |
| 1709 | txn->status == 101)) { |
| 1710 | /* Either we've established an explicit tunnel, or we're |
| 1711 | * switching the protocol. In both cases, we're very unlikely |
| 1712 | * to understand the next protocols. We have to switch to tunnel |
| 1713 | * mode, so that we transfer the request and responses then let |
| 1714 | * this protocol pass unmodified. When we later implement specific |
| 1715 | * parsers for such protocols, we'll want to check the Upgrade |
| 1716 | * header which contains information about that protocol for |
| 1717 | * responses with status 101 (eg: see RFC2817 about TLS). |
| 1718 | */ |
Christopher Faulet | c41547b | 2019-07-16 14:32:23 +0200 | [diff] [blame] | 1719 | txn->flags |= TX_CON_WANT_TUN; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1720 | } |
| 1721 | |
Christopher Faulet | 6160832 | 2018-11-23 16:23:45 +0100 | [diff] [blame] | 1722 | /* check for NTML authentication headers in 401 (WWW-Authenticate) and |
| 1723 | * 407 (Proxy-Authenticate) responses and set the connection to private |
| 1724 | */ |
| 1725 | srv_conn = cs_conn(objt_cs(s->si[1].end)); |
| 1726 | if (srv_conn) { |
| 1727 | struct ist hdr; |
| 1728 | struct http_hdr_ctx ctx; |
| 1729 | |
| 1730 | if (txn->status == 401) |
| 1731 | hdr = ist("WWW-Authenticate"); |
| 1732 | else if (txn->status == 407) |
| 1733 | hdr = ist("Proxy-Authenticate"); |
| 1734 | else |
| 1735 | goto end; |
| 1736 | |
| 1737 | ctx.blk = NULL; |
| 1738 | while (http_find_header(htx, hdr, &ctx, 0)) { |
| 1739 | if ((ctx.value.len >= 9 && word_match(ctx.value.ptr, ctx.value.len, "Negotiate", 9)) || |
Olivier Houchard | 250031e | 2019-05-29 15:01:50 +0200 | [diff] [blame] | 1740 | (ctx.value.len >= 4 && word_match(ctx.value.ptr, ctx.value.len, "NTLM", 4))) { |
| 1741 | sess->flags |= SESS_FL_PREFER_LAST; |
Christopher Faulet | 6160832 | 2018-11-23 16:23:45 +0100 | [diff] [blame] | 1742 | srv_conn->flags |= CO_FL_PRIVATE; |
Olivier Houchard | 250031e | 2019-05-29 15:01:50 +0200 | [diff] [blame] | 1743 | } |
Christopher Faulet | 6160832 | 2018-11-23 16:23:45 +0100 | [diff] [blame] | 1744 | } |
| 1745 | } |
| 1746 | |
| 1747 | end: |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1748 | /* we want to have the response time before we start processing it */ |
| 1749 | s->logs.t_data = tv_ms_elapsed(&s->logs.tv_accept, &now); |
| 1750 | |
| 1751 | /* end of job, return OK */ |
| 1752 | rep->analysers &= ~an_bit; |
| 1753 | rep->analyse_exp = TICK_ETERNITY; |
| 1754 | channel_auto_close(rep); |
| 1755 | return 1; |
| 1756 | |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1757 | return_bad_res: |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 1758 | _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1); |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1759 | if (objt_server(s->target)) { |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 1760 | _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1); |
Willy Tarreau | b54c40a | 2018-12-02 19:28:41 +0100 | [diff] [blame] | 1761 | health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_HDRRSP); |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1762 | } |
Olivier Houchard | e3249a9 | 2019-05-03 23:01:47 +0200 | [diff] [blame] | 1763 | if ((s->be->retry_type & PR_RE_JUNK_REQUEST) && |
Olivier Houchard | ad26d8d | 2019-05-10 17:48:28 +0200 | [diff] [blame] | 1764 | (si_b->flags & SI_FL_L7_RETRY) && |
Olivier Houchard | e3249a9 | 2019-05-03 23:01:47 +0200 | [diff] [blame] | 1765 | do_l7_retry(s, si_b) == 0) |
| 1766 | return 0; |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1767 | txn->status = 502; |
| 1768 | s->si[1].flags |= SI_FL_NOLINGER; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1769 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 1770 | rep->analysers &= AN_RES_FLT_END; |
| 1771 | |
| 1772 | if (!(s->flags & SF_ERR_MASK)) |
| 1773 | s->flags |= SF_ERR_PRXCOND; |
| 1774 | if (!(s->flags & SF_FINST_MASK)) |
| 1775 | s->flags |= SF_FINST_H; |
| 1776 | return 0; |
| 1777 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1778 | abort_keep_alive: |
| 1779 | /* A keep-alive request to the server failed on a network error. |
| 1780 | * The client is required to retry. We need to close without returning |
| 1781 | * any other information so that the client retries. |
| 1782 | */ |
| 1783 | txn->status = 0; |
| 1784 | rep->analysers &= AN_RES_FLT_END; |
| 1785 | s->req.analysers &= AN_REQ_FLT_END; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1786 | s->logs.logwait = 0; |
| 1787 | s->logs.level = 0; |
| 1788 | s->res.flags &= ~CF_EXPECT_MORE; /* speed up sending a previous response */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1789 | http_reply_and_close(s, txn->status, NULL); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1790 | return 0; |
| 1791 | } |
| 1792 | |
| 1793 | /* This function performs all the processing enabled for the current response. |
| 1794 | * It normally returns 1 unless it wants to break. It relies on buffers flags, |
| 1795 | * and updates s->res.analysers. It might make sense to explode it into several |
| 1796 | * other functions. It works like process_request (see indications above). |
| 1797 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1798 | 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] | 1799 | { |
| 1800 | struct session *sess = s->sess; |
| 1801 | struct http_txn *txn = s->txn; |
| 1802 | struct http_msg *msg = &txn->rsp; |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 1803 | struct htx *htx; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1804 | struct proxy *cur_proxy; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1805 | enum rule_result ret = HTTP_RULE_RES_CONT; |
| 1806 | |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 1807 | if (unlikely(msg->msg_state < HTTP_MSG_BODY)) /* we need more data */ |
| 1808 | return 0; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 1809 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1810 | DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n", |
| 1811 | now_ms, __FUNCTION__, |
| 1812 | s, |
| 1813 | rep, |
| 1814 | rep->rex, rep->wex, |
| 1815 | rep->flags, |
| 1816 | ci_data(rep), |
| 1817 | rep->analysers); |
| 1818 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 1819 | htx = htxbuf(&rep->buf); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1820 | |
| 1821 | /* The stats applet needs to adjust the Connection header but we don't |
| 1822 | * apply any filter there. |
| 1823 | */ |
| 1824 | if (unlikely(objt_applet(s->target) == &http_stats_applet)) { |
| 1825 | rep->analysers &= ~an_bit; |
| 1826 | rep->analyse_exp = TICK_ETERNITY; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1827 | goto end; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1828 | } |
| 1829 | |
| 1830 | /* |
| 1831 | * We will have to evaluate the filters. |
| 1832 | * As opposed to version 1.2, now they will be evaluated in the |
| 1833 | * filters order and not in the header order. This means that |
| 1834 | * each filter has to be validated among all headers. |
| 1835 | * |
| 1836 | * Filters are tried with ->be first, then with ->fe if it is |
| 1837 | * different from ->be. |
| 1838 | * |
| 1839 | * Maybe we are in resume condiion. In this case I choose the |
| 1840 | * "struct proxy" which contains the rule list matching the resume |
| 1841 | * pointer. If none of theses "struct proxy" match, I initialise |
| 1842 | * the process with the first one. |
| 1843 | * |
| 1844 | * In fact, I check only correspondance betwwen the current list |
| 1845 | * pointer and the ->fe rule list. If it doesn't match, I initialize |
| 1846 | * the loop with the ->be. |
| 1847 | */ |
| 1848 | if (s->current_rule_list == &sess->fe->http_res_rules) |
| 1849 | cur_proxy = sess->fe; |
| 1850 | else |
| 1851 | cur_proxy = s->be; |
| 1852 | while (1) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1853 | /* evaluate http-response rules */ |
| 1854 | if (ret == HTTP_RULE_RES_CONT) { |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1855 | 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] | 1856 | |
| 1857 | if (ret == HTTP_RULE_RES_BADREQ) |
| 1858 | goto return_srv_prx_502; |
| 1859 | |
| 1860 | if (ret == HTTP_RULE_RES_DONE) { |
| 1861 | rep->analysers &= ~an_bit; |
| 1862 | rep->analyse_exp = TICK_ETERNITY; |
| 1863 | return 1; |
| 1864 | } |
| 1865 | } |
| 1866 | |
| 1867 | /* we need to be called again. */ |
| 1868 | if (ret == HTTP_RULE_RES_YIELD) { |
| 1869 | channel_dont_close(rep); |
| 1870 | return 0; |
| 1871 | } |
| 1872 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1873 | /* has the response been denied ? */ |
| 1874 | if (txn->flags & TX_SVDENY) { |
| 1875 | if (objt_server(s->target)) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 1876 | _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_secu, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1877 | |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 1878 | _HA_ATOMIC_ADD(&s->be->be_counters.denied_resp, 1); |
| 1879 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_resp, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1880 | if (sess->listener->counters) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 1881 | _HA_ATOMIC_ADD(&sess->listener->counters->denied_resp, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1882 | goto return_srv_prx_502; |
| 1883 | } |
| 1884 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1885 | /* check whether we're already working on the frontend */ |
| 1886 | if (cur_proxy == sess->fe) |
| 1887 | break; |
| 1888 | cur_proxy = sess->fe; |
| 1889 | } |
| 1890 | |
| 1891 | /* After this point, this anayzer can't return yield, so we can |
| 1892 | * remove the bit corresponding to this analyzer from the list. |
| 1893 | * |
| 1894 | * Note that the intermediate returns and goto found previously |
| 1895 | * reset the analyzers. |
| 1896 | */ |
| 1897 | rep->analysers &= ~an_bit; |
| 1898 | rep->analyse_exp = TICK_ETERNITY; |
| 1899 | |
| 1900 | /* OK that's all we can do for 1xx responses */ |
| 1901 | if (unlikely(txn->status < 200 && txn->status != 101)) |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 1902 | goto end; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1903 | |
| 1904 | /* |
| 1905 | * Now check for a server cookie. |
| 1906 | */ |
| 1907 | 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] | 1908 | http_manage_server_side_cookies(s, rep); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1909 | |
| 1910 | /* |
| 1911 | * Check for cache-control or pragma headers if required. |
| 1912 | */ |
| 1913 | 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] | 1914 | http_check_response_for_cacheability(s, rep); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1915 | |
| 1916 | /* |
| 1917 | * Add server cookie in the response if needed |
| 1918 | */ |
| 1919 | if (objt_server(s->target) && (s->be->ck_opts & PR_CK_INS) && |
| 1920 | !((txn->flags & TX_SCK_FOUND) && (s->be->ck_opts & PR_CK_PSV)) && |
| 1921 | (!(s->flags & SF_DIRECT) || |
| 1922 | ((s->be->cookie_maxidle || txn->cookie_last_date) && |
| 1923 | (!txn->cookie_last_date || (txn->cookie_last_date - date.tv_sec) < 0)) || |
| 1924 | (s->be->cookie_maxlife && !txn->cookie_first_date) || // set the first_date |
| 1925 | (!s->be->cookie_maxlife && txn->cookie_first_date)) && // remove the first_date |
| 1926 | (!(s->be->ck_opts & PR_CK_POST) || (txn->meth == HTTP_METH_POST)) && |
| 1927 | !(s->flags & SF_IGNORE_PRST)) { |
| 1928 | /* the server is known, it's not the one the client requested, or the |
| 1929 | * cookie's last seen date needs to be refreshed. We have to |
| 1930 | * insert a set-cookie here, except if we want to insert only on POST |
| 1931 | * requests and this one isn't. Note that servers which don't have cookies |
| 1932 | * (eg: some backup servers) will return a full cookie removal request. |
| 1933 | */ |
| 1934 | if (!objt_server(s->target)->cookie) { |
| 1935 | chunk_printf(&trash, |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 1936 | "%s=; Expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/", |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1937 | s->be->cookie_name); |
| 1938 | } |
| 1939 | else { |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 1940 | 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] | 1941 | |
| 1942 | if (s->be->cookie_maxidle || s->be->cookie_maxlife) { |
| 1943 | /* emit last_date, which is mandatory */ |
| 1944 | trash.area[trash.data++] = COOKIE_DELIM_DATE; |
| 1945 | s30tob64((date.tv_sec+3) >> 2, |
| 1946 | trash.area + trash.data); |
| 1947 | trash.data += 5; |
| 1948 | |
| 1949 | if (s->be->cookie_maxlife) { |
| 1950 | /* emit first_date, which is either the original one or |
| 1951 | * the current date. |
| 1952 | */ |
| 1953 | trash.area[trash.data++] = COOKIE_DELIM_DATE; |
| 1954 | s30tob64(txn->cookie_first_date ? |
| 1955 | txn->cookie_first_date >> 2 : |
| 1956 | (date.tv_sec+3) >> 2, |
| 1957 | trash.area + trash.data); |
| 1958 | trash.data += 5; |
| 1959 | } |
| 1960 | } |
| 1961 | chunk_appendf(&trash, "; path=/"); |
| 1962 | } |
| 1963 | |
| 1964 | if (s->be->cookie_domain) |
| 1965 | chunk_appendf(&trash, "; domain=%s", s->be->cookie_domain); |
| 1966 | |
| 1967 | if (s->be->ck_opts & PR_CK_HTTPONLY) |
| 1968 | chunk_appendf(&trash, "; HttpOnly"); |
| 1969 | |
| 1970 | if (s->be->ck_opts & PR_CK_SECURE) |
| 1971 | chunk_appendf(&trash, "; Secure"); |
| 1972 | |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 1973 | if (unlikely(!http_add_header(htx, ist("Set-Cookie"), ist2(trash.area, trash.data)))) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1974 | goto return_bad_resp; |
| 1975 | |
| 1976 | txn->flags &= ~TX_SCK_MASK; |
| 1977 | if (__objt_server(s->target)->cookie && (s->flags & SF_DIRECT)) |
| 1978 | /* the server did not change, only the date was updated */ |
| 1979 | txn->flags |= TX_SCK_UPDATED; |
| 1980 | else |
| 1981 | txn->flags |= TX_SCK_INSERTED; |
| 1982 | |
| 1983 | /* Here, we will tell an eventual cache on the client side that we don't |
| 1984 | * want it to cache this reply because HTTP/1.0 caches also cache cookies ! |
| 1985 | * Some caches understand the correct form: 'no-cache="set-cookie"', but |
| 1986 | * others don't (eg: apache <= 1.3.26). So we use 'private' instead. |
| 1987 | */ |
| 1988 | if ((s->be->ck_opts & PR_CK_NOC) && (txn->flags & TX_CACHEABLE)) { |
| 1989 | |
| 1990 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
| 1991 | |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 1992 | if (unlikely(!http_add_header(htx, ist("Cache-control"), ist("private")))) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 1993 | goto return_bad_resp; |
| 1994 | } |
| 1995 | } |
| 1996 | |
| 1997 | /* |
| 1998 | * Check if result will be cacheable with a cookie. |
| 1999 | * We'll block the response if security checks have caught |
| 2000 | * nasty things such as a cacheable cookie. |
| 2001 | */ |
| 2002 | if (((txn->flags & (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) == |
| 2003 | (TX_CACHEABLE | TX_CACHE_COOK | TX_SCK_PRESENT)) && |
| 2004 | (s->be->options & PR_O_CHK_CACHE)) { |
| 2005 | /* we're in presence of a cacheable response containing |
| 2006 | * a set-cookie header. We'll block it as requested by |
| 2007 | * the 'checkcache' option, and send an alert. |
| 2008 | */ |
| 2009 | if (objt_server(s->target)) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 2010 | _HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_secu, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2011 | |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 2012 | _HA_ATOMIC_ADD(&s->be->be_counters.denied_resp, 1); |
| 2013 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_resp, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2014 | if (sess->listener->counters) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 2015 | _HA_ATOMIC_ADD(&sess->listener->counters->denied_resp, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2016 | |
| 2017 | ha_alert("Blocking cacheable cookie in response from instance %s, server %s.\n", |
| 2018 | s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>"); |
| 2019 | send_log(s->be, LOG_ALERT, |
| 2020 | "Blocking cacheable cookie in response from instance %s, server %s.\n", |
| 2021 | s->be->id, objt_server(s->target) ? objt_server(s->target)->id : "<dispatch>"); |
| 2022 | goto return_srv_prx_502; |
| 2023 | } |
| 2024 | |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 2025 | end: |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2026 | /* Always enter in the body analyzer */ |
| 2027 | rep->analysers &= ~AN_RES_FLT_XFER_DATA; |
| 2028 | rep->analysers |= AN_RES_HTTP_XFER_BODY; |
| 2029 | |
| 2030 | /* if the user wants to log as soon as possible, without counting |
| 2031 | * bytes from the server, then this is the right moment. We have |
| 2032 | * to temporarily assign bytes_out to log what we currently have. |
| 2033 | */ |
| 2034 | if (!LIST_ISEMPTY(&sess->fe->logformat) && !(s->logs.logwait & LW_BYTES)) { |
| 2035 | 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] | 2036 | s->logs.bytes_out = htx->data; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2037 | s->do_log(s); |
| 2038 | s->logs.bytes_out = 0; |
| 2039 | } |
| 2040 | return 1; |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 2041 | |
| 2042 | return_bad_resp: |
| 2043 | if (objt_server(s->target)) { |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 2044 | _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1); |
Willy Tarreau | b54c40a | 2018-12-02 19:28:41 +0100 | [diff] [blame] | 2045 | health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_RSP); |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 2046 | } |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 2047 | _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1); |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 2048 | |
| 2049 | return_srv_prx_502: |
| 2050 | rep->analysers &= AN_RES_FLT_END; |
| 2051 | txn->status = 502; |
| 2052 | s->logs.t_data = -1; /* was not a valid response */ |
| 2053 | s->si[1].flags |= SI_FL_NOLINGER; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2054 | http_reply_and_close(s, txn->status, http_error_message(s)); |
Christopher Faulet | fec7bd1 | 2018-10-24 11:17:50 +0200 | [diff] [blame] | 2055 | if (!(s->flags & SF_ERR_MASK)) |
| 2056 | s->flags |= SF_ERR_PRXCOND; |
| 2057 | if (!(s->flags & SF_FINST_MASK)) |
| 2058 | s->flags |= SF_FINST_H; |
| 2059 | return 0; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2060 | } |
| 2061 | |
| 2062 | /* This function is an analyser which forwards response body (including chunk |
| 2063 | * sizes if any). It is called as soon as we must forward, even if we forward |
| 2064 | * zero byte. The only situation where it must not be called is when we're in |
| 2065 | * tunnel mode and we want to forward till the close. It's used both to forward |
| 2066 | * remaining data and to resync after end of body. It expects the msg_state to |
| 2067 | * be between MSG_BODY and MSG_DONE (inclusive). It returns zero if it needs to |
| 2068 | * read more data, or 1 once we can go on with next request or end the stream. |
| 2069 | * |
| 2070 | * It is capable of compressing response data both in content-length mode and |
| 2071 | * in chunked mode. The state machines follows different flows depending on |
| 2072 | * whether content-length and chunked modes are used, since there are no |
| 2073 | * trailers in content-length : |
| 2074 | * |
| 2075 | * chk-mode cl-mode |
| 2076 | * ,----- BODY -----. |
| 2077 | * / \ |
| 2078 | * V size > 0 V chk-mode |
| 2079 | * .--> SIZE -------------> DATA -------------> CRLF |
| 2080 | * | | size == 0 | last byte | |
| 2081 | * | v final crlf v inspected | |
| 2082 | * | TRAILERS -----------> DONE | |
| 2083 | * | | |
| 2084 | * `----------------------------------------------' |
| 2085 | * |
| 2086 | * Compression only happens in the DATA state, and must be flushed in final |
| 2087 | * states (TRAILERS/DONE) or when leaving on missing data. Normal forwarding |
| 2088 | * is performed at once on final states for all bytes parsed, or when leaving |
| 2089 | * on missing data. |
| 2090 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2091 | 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] | 2092 | { |
| 2093 | struct session *sess = s->sess; |
| 2094 | struct http_txn *txn = s->txn; |
| 2095 | struct http_msg *msg = &s->txn->rsp; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2096 | struct htx *htx; |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 2097 | int ret; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2098 | |
| 2099 | DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n", |
| 2100 | now_ms, __FUNCTION__, |
| 2101 | s, |
| 2102 | res, |
| 2103 | res->rex, res->wex, |
| 2104 | res->flags, |
| 2105 | ci_data(res), |
| 2106 | res->analysers); |
| 2107 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 2108 | htx = htxbuf(&res->buf); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2109 | |
| 2110 | 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] | 2111 | ((res->flags & CF_SHUTW) && (res->to_forward || co_data(res)))) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2112 | /* Output closed while we were sending data. We must abort and |
| 2113 | * wake the other side up. |
| 2114 | */ |
| 2115 | msg->err_state = msg->msg_state; |
| 2116 | msg->msg_state = HTTP_MSG_ERROR; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2117 | http_end_response(s); |
| 2118 | http_end_request(s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2119 | return 1; |
| 2120 | } |
| 2121 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2122 | if (msg->msg_state == HTTP_MSG_BODY) |
| 2123 | msg->msg_state = HTTP_MSG_DATA; |
| 2124 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2125 | /* in most states, we should abort in case of early close */ |
| 2126 | channel_auto_close(res); |
| 2127 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2128 | if (res->to_forward) { |
Christopher Faulet | 66af0b2 | 2019-03-22 14:54:52 +0100 | [diff] [blame] | 2129 | if (res->to_forward == CHN_INFINITE_FORWARD) { |
| 2130 | if (res->flags & (CF_SHUTR|CF_EOI)) { |
| 2131 | msg->msg_state = HTTP_MSG_DONE; |
| 2132 | res->to_forward = 0; |
| 2133 | goto done; |
| 2134 | } |
| 2135 | } |
| 2136 | else { |
| 2137 | /* We can't process the buffer's contents yet */ |
| 2138 | res->flags |= CF_WAKE_WRITE; |
| 2139 | goto missing_data_or_waiting; |
| 2140 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2141 | } |
| 2142 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2143 | if (msg->msg_state >= HTTP_MSG_DONE) |
| 2144 | goto done; |
| 2145 | |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 2146 | /* Forward input data. We get it by removing all outgoing data not |
| 2147 | * forwarded yet from HTX data size. If there are some data filters, we |
| 2148 | * let them decide the amount of data to forward. |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2149 | */ |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 2150 | if (HAS_RSP_DATA_FILTERS(s)) { |
| 2151 | ret = flt_http_payload(s, msg, htx->data); |
| 2152 | if (ret < 0) |
| 2153 | goto return_bad_res; |
Christopher Faulet | 421e769 | 2019-06-13 11:16:45 +0200 | [diff] [blame] | 2154 | c_adv(res, ret); |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 2155 | } |
| 2156 | else { |
Christopher Faulet | 421e769 | 2019-06-13 11:16:45 +0200 | [diff] [blame] | 2157 | c_adv(res, htx->data - co_data(res)); |
Christopher Faulet | 66af0b2 | 2019-03-22 14:54:52 +0100 | [diff] [blame] | 2158 | if (msg->flags & HTTP_MSGF_XFER_LEN) |
| 2159 | channel_htx_forward_forever(res, htx); |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 2160 | } |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2161 | |
Christopher Faulet | c62c2b9 | 2019-03-28 11:41:39 +0100 | [diff] [blame] | 2162 | if ((txn->meth == HTTP_METH_CONNECT && txn->status == 200) || txn->status == 101 || |
| 2163 | (!(msg->flags & HTTP_MSGF_XFER_LEN) && (res->flags & CF_SHUTR || !HAS_RSP_DATA_FILTERS(s)))) { |
| 2164 | msg->msg_state = HTTP_MSG_TUNNEL; |
| 2165 | goto done; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2166 | } |
| 2167 | |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2168 | /* 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] | 2169 | * in HTTP_MSG_ENDING state. Then if all data was marked to be |
| 2170 | * forwarded, set the state to HTTP_MSG_DONE. |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2171 | */ |
| 2172 | if (htx_get_tail_type(htx) != HTX_BLK_EOM) |
| 2173 | goto missing_data_or_waiting; |
| 2174 | |
Christopher Faulet | d20fdb0 | 2019-06-13 16:43:22 +0200 | [diff] [blame] | 2175 | msg->msg_state = HTTP_MSG_ENDING; |
| 2176 | if (htx->data != co_data(res)) |
| 2177 | goto missing_data_or_waiting; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2178 | msg->msg_state = HTTP_MSG_DONE; |
Christopher Faulet | aed68d4 | 2019-03-28 18:12:46 +0100 | [diff] [blame] | 2179 | res->to_forward = 0; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2180 | |
| 2181 | done: |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2182 | /* other states, DONE...TUNNEL */ |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 2183 | channel_dont_close(res); |
| 2184 | |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 2185 | if (HAS_RSP_DATA_FILTERS(s)) { |
| 2186 | ret = flt_http_end(s, msg); |
| 2187 | if (ret <= 0) { |
| 2188 | if (!ret) |
| 2189 | goto missing_data_or_waiting; |
| 2190 | goto return_bad_res; |
| 2191 | } |
| 2192 | } |
| 2193 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2194 | http_end_response(s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2195 | if (!(res->analysers & an_bit)) { |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2196 | http_end_request(s); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2197 | if (unlikely(msg->msg_state == HTTP_MSG_ERROR)) { |
| 2198 | if (res->flags & CF_SHUTW) { |
| 2199 | /* response errors are most likely due to the |
| 2200 | * client aborting the transfer. */ |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2201 | goto return_cli_abort; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2202 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2203 | goto return_bad_res; |
| 2204 | } |
| 2205 | return 1; |
| 2206 | } |
| 2207 | return 0; |
| 2208 | |
| 2209 | missing_data_or_waiting: |
| 2210 | if (res->flags & CF_SHUTW) |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2211 | goto return_cli_abort; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2212 | |
Christopher Faulet | 4736527 | 2018-10-31 17:40:50 +0100 | [diff] [blame] | 2213 | if (htx->flags & HTX_FL_PARSING_ERROR) |
| 2214 | goto return_bad_res; |
| 2215 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2216 | /* stop waiting for data if the input is closed before the end. If the |
| 2217 | * client side was already closed, it means that the client has aborted, |
| 2218 | * so we don't want to count this as a server abort. Otherwise it's a |
| 2219 | * server abort. |
| 2220 | */ |
Christopher Faulet | d20fdb0 | 2019-06-13 16:43:22 +0200 | [diff] [blame] | 2221 | if (msg->msg_state < HTTP_MSG_ENDING && res->flags & CF_SHUTR) { |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2222 | if ((s->req.flags & (CF_SHUTR|CF_SHUTW)) == (CF_SHUTR|CF_SHUTW)) |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2223 | goto return_cli_abort; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2224 | /* If we have some pending data, we continue the processing */ |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2225 | if (htx_is_empty(htx)) |
| 2226 | goto return_srv_abort; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2227 | } |
| 2228 | |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2229 | /* When TE: chunked is used, we need to get there again to parse |
| 2230 | * 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] | 2231 | * set CF_DONTCLOSE. Similarly when there is a content-leng or if there |
| 2232 | * are filters registered on the stream, we don't want to forward a |
| 2233 | * close |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2234 | */ |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 2235 | if ((msg->flags & HTTP_MSGF_XFER_LEN) || HAS_RSP_DATA_FILTERS(s)) |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2236 | channel_dont_close(res); |
| 2237 | |
| 2238 | /* We know that more data are expected, but we couldn't send more that |
| 2239 | * what we did. So we always set the CF_EXPECT_MORE flag so that the |
| 2240 | * system knows it must not set a PUSH on this first part. Interactive |
| 2241 | * modes are already handled by the stream sock layer. We must not do |
| 2242 | * this in content-length mode because it could present the MSG_MORE |
| 2243 | * flag with the last block of forwarded data, which would cause an |
| 2244 | * additional delay to be observed by the receiver. |
| 2245 | */ |
| 2246 | if ((msg->flags & HTTP_MSGF_TE_CHNK) || (msg->flags & HTTP_MSGF_COMPRESSING)) |
| 2247 | res->flags |= CF_EXPECT_MORE; |
| 2248 | |
| 2249 | /* the stream handler will take care of timeouts and errors */ |
| 2250 | return 0; |
| 2251 | |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2252 | return_srv_abort: |
| 2253 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1); |
| 2254 | _HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2255 | if (objt_server(s->target)) |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2256 | _HA_ATOMIC_ADD(&objt_server(s->target)->counters.srv_aborts, 1); |
| 2257 | if (!(s->flags & SF_ERR_MASK)) |
| 2258 | s->flags |= SF_ERR_SRVCL; |
| 2259 | goto return_error; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2260 | |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2261 | return_cli_abort: |
| 2262 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1); |
| 2263 | _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2264 | if (objt_server(s->target)) |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2265 | _HA_ATOMIC_ADD(&objt_server(s->target)->counters.cli_aborts, 1); |
| 2266 | if (!(s->flags & SF_ERR_MASK)) |
| 2267 | s->flags |= SF_ERR_CLICL; |
| 2268 | goto return_error; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2269 | |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2270 | return_bad_res: |
| 2271 | _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1); |
| 2272 | if (objt_server(s->target)) { |
| 2273 | _HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_resp, 1); |
| 2274 | health_adjust(__objt_server(s->target), HANA_STATUS_HTTP_RSP); |
| 2275 | } |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2276 | if (!(s->flags & SF_ERR_MASK)) |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2277 | s->flags |= SF_ERR_SRVCL; |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2278 | |
Christopher Faulet | 93e02d8 | 2019-03-08 14:18:50 +0100 | [diff] [blame] | 2279 | return_error: |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2280 | txn->rsp.err_state = txn->rsp.msg_state; |
| 2281 | txn->rsp.msg_state = HTTP_MSG_ERROR; |
| 2282 | /* don't send any error message as we're in the body */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2283 | http_reply_and_close(s, txn->status, NULL); |
Christopher Faulet | e0768eb | 2018-10-03 16:38:02 +0200 | [diff] [blame] | 2284 | res->analysers &= AN_RES_FLT_END; |
| 2285 | 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] | 2286 | if (!(s->flags & SF_FINST_MASK)) |
| 2287 | s->flags |= SF_FINST_D; |
| 2288 | return 0; |
| 2289 | } |
| 2290 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2291 | /* Perform an HTTP redirect based on the information in <rule>. The function |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2292 | * 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] | 2293 | * as too large a request to build a valid response. |
| 2294 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2295 | 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] | 2296 | { |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2297 | struct channel *req = &s->req; |
| 2298 | struct channel *res = &s->res; |
| 2299 | struct htx *htx; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 2300 | struct htx_sl *sl; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2301 | struct buffer *chunk; |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2302 | struct ist status, reason, location; |
| 2303 | unsigned int flags; |
| 2304 | size_t data; |
Christopher Faulet | 08e6646 | 2019-05-23 16:44:59 +0200 | [diff] [blame] | 2305 | int close = 0; /* Try to keep the connection alive byt default */ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2306 | |
| 2307 | chunk = alloc_trash_chunk(); |
| 2308 | if (!chunk) |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2309 | goto fail; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2310 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2311 | /* |
| 2312 | * Create the location |
| 2313 | */ |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 2314 | htx = htxbuf(&req->buf); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2315 | switch(rule->type) { |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2316 | case REDIRECT_TYPE_SCHEME: { |
| 2317 | struct http_hdr_ctx ctx; |
| 2318 | struct ist path, host; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2319 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2320 | host = ist(""); |
| 2321 | ctx.blk = NULL; |
| 2322 | if (http_find_header(htx, ist("Host"), &ctx, 0)) |
| 2323 | host = ctx.value; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2324 | |
Christopher Faulet | 297fbb4 | 2019-05-13 14:41:27 +0200 | [diff] [blame] | 2325 | sl = http_get_stline(htx); |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2326 | path = http_get_path(htx_sl_req_uri(sl)); |
| 2327 | /* build message using path */ |
| 2328 | if (path.ptr) { |
| 2329 | if (rule->flags & REDIRECT_FLAG_DROP_QS) { |
| 2330 | int qs = 0; |
| 2331 | while (qs < path.len) { |
| 2332 | if (*(path.ptr + qs) == '?') { |
| 2333 | path.len = qs; |
| 2334 | break; |
| 2335 | } |
| 2336 | qs++; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2337 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2338 | } |
| 2339 | } |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2340 | else |
| 2341 | path = ist("/"); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2342 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2343 | if (rule->rdr_str) { /* this is an old "redirect" rule */ |
| 2344 | /* add scheme */ |
| 2345 | if (!chunk_memcat(chunk, rule->rdr_str, rule->rdr_len)) |
| 2346 | goto fail; |
| 2347 | } |
| 2348 | else { |
| 2349 | /* add scheme with executing log format */ |
| 2350 | chunk->data += build_logline(s, chunk->area + chunk->data, |
| 2351 | chunk->size - chunk->data, |
| 2352 | &rule->rdr_fmt); |
| 2353 | } |
| 2354 | /* add "://" + host + path */ |
| 2355 | if (!chunk_memcat(chunk, "://", 3) || |
| 2356 | !chunk_memcat(chunk, host.ptr, host.len) || |
| 2357 | !chunk_memcat(chunk, path.ptr, path.len)) |
| 2358 | goto fail; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2359 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2360 | /* append a slash at the end of the location if needed and missing */ |
| 2361 | if (chunk->data && chunk->area[chunk->data - 1] != '/' && |
| 2362 | (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) { |
| 2363 | if (chunk->data + 1 >= chunk->size) |
| 2364 | goto fail; |
| 2365 | chunk->area[chunk->data++] = '/'; |
| 2366 | } |
| 2367 | break; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2368 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2369 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2370 | case REDIRECT_TYPE_PREFIX: { |
| 2371 | struct ist path; |
| 2372 | |
Christopher Faulet | 297fbb4 | 2019-05-13 14:41:27 +0200 | [diff] [blame] | 2373 | sl = http_get_stline(htx); |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2374 | path = http_get_path(htx_sl_req_uri(sl)); |
| 2375 | /* build message using path */ |
| 2376 | if (path.ptr) { |
| 2377 | if (rule->flags & REDIRECT_FLAG_DROP_QS) { |
| 2378 | int qs = 0; |
| 2379 | while (qs < path.len) { |
| 2380 | if (*(path.ptr + qs) == '?') { |
| 2381 | path.len = qs; |
| 2382 | break; |
| 2383 | } |
| 2384 | qs++; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2385 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2386 | } |
| 2387 | } |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2388 | else |
| 2389 | path = ist("/"); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2390 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2391 | if (rule->rdr_str) { /* this is an old "redirect" rule */ |
| 2392 | /* add prefix. Note that if prefix == "/", we don't want to |
| 2393 | * add anything, otherwise it makes it hard for the user to |
| 2394 | * configure a self-redirection. |
| 2395 | */ |
| 2396 | if (rule->rdr_len != 1 || *rule->rdr_str != '/') { |
| 2397 | if (!chunk_memcat(chunk, rule->rdr_str, rule->rdr_len)) |
| 2398 | goto fail; |
| 2399 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2400 | } |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2401 | else { |
| 2402 | /* add prefix with executing log format */ |
| 2403 | chunk->data += build_logline(s, chunk->area + chunk->data, |
| 2404 | chunk->size - chunk->data, |
| 2405 | &rule->rdr_fmt); |
| 2406 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2407 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2408 | /* add path */ |
| 2409 | if (!chunk_memcat(chunk, path.ptr, path.len)) |
| 2410 | goto fail; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2411 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2412 | /* append a slash at the end of the location if needed and missing */ |
| 2413 | if (chunk->data && chunk->area[chunk->data - 1] != '/' && |
| 2414 | (rule->flags & REDIRECT_FLAG_APPEND_SLASH)) { |
| 2415 | if (chunk->data + 1 >= chunk->size) |
| 2416 | goto fail; |
| 2417 | chunk->area[chunk->data++] = '/'; |
| 2418 | } |
| 2419 | break; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2420 | } |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2421 | case REDIRECT_TYPE_LOCATION: |
| 2422 | default: |
| 2423 | if (rule->rdr_str) { /* this is an old "redirect" rule */ |
| 2424 | /* add location */ |
| 2425 | if (!chunk_memcat(chunk, rule->rdr_str, rule->rdr_len)) |
| 2426 | goto fail; |
| 2427 | } |
| 2428 | else { |
| 2429 | /* add location with executing log format */ |
| 2430 | chunk->data += build_logline(s, chunk->area + chunk->data, |
| 2431 | chunk->size - chunk->data, |
| 2432 | &rule->rdr_fmt); |
| 2433 | } |
| 2434 | break; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2435 | } |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2436 | location = ist2(chunk->area, chunk->data); |
| 2437 | |
| 2438 | /* |
| 2439 | * Create the 30x response |
| 2440 | */ |
| 2441 | switch (rule->code) { |
| 2442 | case 308: |
| 2443 | status = ist("308"); |
| 2444 | reason = ist("Permanent Redirect"); |
| 2445 | break; |
| 2446 | case 307: |
| 2447 | status = ist("307"); |
| 2448 | reason = ist("Temporary Redirect"); |
| 2449 | break; |
| 2450 | case 303: |
| 2451 | status = ist("303"); |
| 2452 | reason = ist("See Other"); |
| 2453 | break; |
| 2454 | case 301: |
| 2455 | status = ist("301"); |
| 2456 | reason = ist("Moved Permanently"); |
| 2457 | break; |
| 2458 | case 302: |
| 2459 | default: |
| 2460 | status = ist("302"); |
| 2461 | reason = ist("Found"); |
| 2462 | break; |
| 2463 | } |
| 2464 | |
Christopher Faulet | 08e6646 | 2019-05-23 16:44:59 +0200 | [diff] [blame] | 2465 | if (!(txn->req.flags & HTTP_MSGF_BODYLESS) && txn->req.msg_state != HTTP_MSG_DONE) |
| 2466 | close = 1; |
| 2467 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2468 | htx = htx_from_buf(&res->buf); |
| 2469 | flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN|HTX_SL_F_BODYLESS); |
| 2470 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, ist("HTTP/1.1"), status, reason); |
| 2471 | if (!sl) |
| 2472 | goto fail; |
| 2473 | sl->info.res.status = rule->code; |
| 2474 | s->txn->status = rule->code; |
| 2475 | |
Christopher Faulet | 08e6646 | 2019-05-23 16:44:59 +0200 | [diff] [blame] | 2476 | if (close && !htx_add_header(htx, ist("Connection"), ist("close"))) |
| 2477 | goto fail; |
| 2478 | |
| 2479 | if (!htx_add_header(htx, ist("Content-length"), ist("0")) || |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2480 | !htx_add_header(htx, ist("Location"), location)) |
| 2481 | goto fail; |
| 2482 | |
| 2483 | if (rule->code == 302 || rule->code == 303 || rule->code == 307) { |
| 2484 | if (!htx_add_header(htx, ist("Cache-Control"), ist("no-cache"))) |
| 2485 | goto fail; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2486 | } |
| 2487 | |
| 2488 | if (rule->cookie_len) { |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2489 | if (!htx_add_header(htx, ist("Set-Cookie"), ist2(rule->cookie_str, rule->cookie_len))) |
| 2490 | goto fail; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2491 | } |
| 2492 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2493 | if (!htx_add_endof(htx, HTX_BLK_EOH) || !htx_add_endof(htx, HTX_BLK_EOM)) |
| 2494 | goto fail; |
| 2495 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2496 | /* let's log the request time */ |
| 2497 | s->logs.tv_request = now; |
| 2498 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2499 | data = htx->data - co_data(res); |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2500 | c_adv(res, data); |
| 2501 | res->total += data; |
| 2502 | |
| 2503 | channel_auto_read(req); |
| 2504 | channel_abort(req); |
| 2505 | channel_auto_close(req); |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 2506 | channel_htx_erase(req, htxbuf(&req->buf)); |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2507 | |
| 2508 | res->wex = tick_add_ifset(now_ms, res->wto); |
| 2509 | channel_auto_read(res); |
| 2510 | channel_auto_close(res); |
| 2511 | channel_shutr_now(res); |
| 2512 | |
| 2513 | req->analysers &= AN_REQ_FLT_END; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2514 | |
| 2515 | if (!(s->flags & SF_ERR_MASK)) |
| 2516 | s->flags |= SF_ERR_LOCAL; |
| 2517 | if (!(s->flags & SF_FINST_MASK)) |
| 2518 | s->flags |= SF_FINST_R; |
| 2519 | |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2520 | free_trash_chunk(chunk); |
| 2521 | return 1; |
| 2522 | |
| 2523 | fail: |
| 2524 | /* If an error occurred, remove the incomplete HTTP response from the |
| 2525 | * buffer */ |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 2526 | channel_htx_truncate(res, htxbuf(&res->buf)); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2527 | free_trash_chunk(chunk); |
Christopher Faulet | 99daf28 | 2018-11-28 22:58:13 +0100 | [diff] [blame] | 2528 | return 0; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 2529 | } |
| 2530 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2531 | int http_transform_header_str(struct stream* s, struct channel *chn, struct htx *htx, |
| 2532 | struct ist name, const char *str, struct my_regex *re, int action) |
Christopher Faulet | 7233352 | 2018-10-24 11:25:02 +0200 | [diff] [blame] | 2533 | { |
| 2534 | struct http_hdr_ctx ctx; |
| 2535 | struct buffer *output = get_trash_chunk(); |
| 2536 | |
| 2537 | /* find full header is action is ACT_HTTP_REPLACE_HDR */ |
| 2538 | ctx.blk = NULL; |
| 2539 | while (http_find_header(htx, name, &ctx, (action == ACT_HTTP_REPLACE_HDR))) { |
| 2540 | if (!regex_exec_match2(re, ctx.value.ptr, ctx.value.len, MAX_MATCH, pmatch, 0)) |
| 2541 | continue; |
| 2542 | |
| 2543 | output->data = exp_replace(output->area, output->size, ctx.value.ptr, str, pmatch); |
| 2544 | if (output->data == -1) |
| 2545 | return -1; |
| 2546 | if (!http_replace_header_value(htx, &ctx, ist2(output->area, output->data))) |
| 2547 | return -1; |
| 2548 | } |
| 2549 | return 0; |
| 2550 | } |
| 2551 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2552 | static int http_transform_header(struct stream* s, struct channel *chn, struct htx *htx, |
| 2553 | const struct ist name, struct list *fmt, struct my_regex *re, int action) |
Christopher Faulet | 7233352 | 2018-10-24 11:25:02 +0200 | [diff] [blame] | 2554 | { |
| 2555 | struct buffer *replace; |
| 2556 | int ret = -1; |
| 2557 | |
| 2558 | replace = alloc_trash_chunk(); |
| 2559 | if (!replace) |
| 2560 | goto leave; |
| 2561 | |
| 2562 | replace->data = build_logline(s, replace->area, replace->size, fmt); |
| 2563 | if (replace->data >= replace->size - 1) |
| 2564 | goto leave; |
| 2565 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2566 | ret = http_transform_header_str(s, chn, htx, name, replace->area, re, action); |
Christopher Faulet | 7233352 | 2018-10-24 11:25:02 +0200 | [diff] [blame] | 2567 | |
| 2568 | leave: |
| 2569 | free_trash_chunk(replace); |
| 2570 | return ret; |
| 2571 | } |
| 2572 | |
Christopher Faulet | ee9b5bf | 2018-11-28 13:55:14 +0100 | [diff] [blame] | 2573 | |
| 2574 | /* Terminate a 103-Erly-hints response and send it to the client. It returns 0 |
| 2575 | * on success and -1 on error. The response channel is updated accordingly. |
| 2576 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2577 | static int http_reply_103_early_hints(struct channel *res) |
Christopher Faulet | ee9b5bf | 2018-11-28 13:55:14 +0100 | [diff] [blame] | 2578 | { |
| 2579 | struct htx *htx = htx_from_buf(&res->buf); |
| 2580 | size_t data; |
| 2581 | |
Christopher Faulet | 1d5ec09 | 2019-06-26 14:23:54 +0200 | [diff] [blame] | 2582 | if (!htx_add_endof(htx, HTX_BLK_EOH)) { |
Christopher Faulet | ee9b5bf | 2018-11-28 13:55:14 +0100 | [diff] [blame] | 2583 | /* If an error occurred during an Early-hint rule, |
| 2584 | * remove the incomplete HTTP 103 response from the |
| 2585 | * buffer */ |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 2586 | channel_htx_truncate(res, htx); |
Christopher Faulet | ee9b5bf | 2018-11-28 13:55:14 +0100 | [diff] [blame] | 2587 | return -1; |
| 2588 | } |
| 2589 | |
| 2590 | data = htx->data - co_data(res); |
Christopher Faulet | ee9b5bf | 2018-11-28 13:55:14 +0100 | [diff] [blame] | 2591 | c_adv(res, data); |
| 2592 | res->total += data; |
| 2593 | return 0; |
| 2594 | } |
| 2595 | |
Christopher Faulet | 6eb9289 | 2018-11-15 16:39:29 +0100 | [diff] [blame] | 2596 | /* |
| 2597 | * Build an HTTP Early Hint HTTP 103 response header with <name> as name and with a value |
| 2598 | * built according to <fmt> log line format. |
Christopher Faulet | ee9b5bf | 2018-11-28 13:55:14 +0100 | [diff] [blame] | 2599 | * If <early_hints> is 0, it is starts a new response by adding the start |
| 2600 | * line. If an error occurred -1 is returned. On success 0 is returned. The |
| 2601 | * channel is not updated here. It must be done calling the function |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2602 | * http_reply_103_early_hints(). |
Christopher Faulet | 6eb9289 | 2018-11-15 16:39:29 +0100 | [diff] [blame] | 2603 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2604 | static int http_add_early_hint_header(struct stream *s, int early_hints, const struct ist name, struct list *fmt) |
Christopher Faulet | 6eb9289 | 2018-11-15 16:39:29 +0100 | [diff] [blame] | 2605 | { |
Christopher Faulet | ee9b5bf | 2018-11-28 13:55:14 +0100 | [diff] [blame] | 2606 | struct channel *res = &s->res; |
| 2607 | struct htx *htx = htx_from_buf(&res->buf); |
| 2608 | struct buffer *value = alloc_trash_chunk(); |
| 2609 | |
Christopher Faulet | 6eb9289 | 2018-11-15 16:39:29 +0100 | [diff] [blame] | 2610 | if (!early_hints) { |
Christopher Faulet | ee9b5bf | 2018-11-28 13:55:14 +0100 | [diff] [blame] | 2611 | struct htx_sl *sl; |
| 2612 | unsigned int flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11| |
| 2613 | HTX_SL_F_XFER_LEN|HTX_SL_F_BODYLESS); |
| 2614 | |
| 2615 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, |
| 2616 | ist("HTTP/1.1"), ist("103"), ist("Early Hints")); |
| 2617 | if (!sl) |
Christopher Faulet | 6eb9289 | 2018-11-15 16:39:29 +0100 | [diff] [blame] | 2618 | goto fail; |
Christopher Faulet | ee9b5bf | 2018-11-28 13:55:14 +0100 | [diff] [blame] | 2619 | sl->info.res.status = 103; |
Christopher Faulet | 6eb9289 | 2018-11-15 16:39:29 +0100 | [diff] [blame] | 2620 | } |
| 2621 | |
Christopher Faulet | ee9b5bf | 2018-11-28 13:55:14 +0100 | [diff] [blame] | 2622 | value->data = build_logline(s, b_tail(value), b_room(value), fmt); |
| 2623 | if (!htx_add_header(htx, name, ist2(b_head(value), b_data(value)))) |
Christopher Faulet | 6eb9289 | 2018-11-15 16:39:29 +0100 | [diff] [blame] | 2624 | goto fail; |
| 2625 | |
Christopher Faulet | ee9b5bf | 2018-11-28 13:55:14 +0100 | [diff] [blame] | 2626 | free_trash_chunk(value); |
Christopher Faulet | ee9b5bf | 2018-11-28 13:55:14 +0100 | [diff] [blame] | 2627 | return 1; |
Christopher Faulet | 6eb9289 | 2018-11-15 16:39:29 +0100 | [diff] [blame] | 2628 | |
| 2629 | fail: |
Christopher Faulet | ee9b5bf | 2018-11-28 13:55:14 +0100 | [diff] [blame] | 2630 | /* If an error occurred during an Early-hint rule, remove the incomplete |
| 2631 | * HTTP 103 response from the buffer */ |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 2632 | channel_htx_truncate(res, htx); |
Christopher Faulet | ee9b5bf | 2018-11-28 13:55:14 +0100 | [diff] [blame] | 2633 | free_trash_chunk(value); |
| 2634 | return -1; |
Christopher Faulet | 6eb9289 | 2018-11-15 16:39:29 +0100 | [diff] [blame] | 2635 | } |
| 2636 | |
Christopher Faulet | 8d8ac19 | 2018-10-24 11:27:39 +0200 | [diff] [blame] | 2637 | /* This function executes one of the set-{method,path,query,uri} actions. It |
| 2638 | * takes the string from the variable 'replace' with length 'len', then modifies |
| 2639 | * the relevant part of the request line accordingly. Then it updates various |
| 2640 | * pointers to the next elements which were moved, and the total buffer length. |
| 2641 | * It finds the action to be performed in p[2], previously filled by function |
| 2642 | * parse_set_req_line(). It returns 0 in case of success, -1 in case of internal |
| 2643 | * error, though this can be revisited when this code is finally exploited. |
| 2644 | * |
| 2645 | * 'action' can be '0' to replace method, '1' to replace path, '2' to replace |
| 2646 | * query string and 3 to replace uri. |
| 2647 | * |
| 2648 | * In query string case, the mark question '?' must be set at the start of the |
| 2649 | * string by the caller, event if the replacement query string is empty. |
| 2650 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2651 | int http_req_replace_stline(int action, const char *replace, int len, |
| 2652 | struct proxy *px, struct stream *s) |
Christopher Faulet | 8d8ac19 | 2018-10-24 11:27:39 +0200 | [diff] [blame] | 2653 | { |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 2654 | struct htx *htx = htxbuf(&s->req.buf); |
Christopher Faulet | 8d8ac19 | 2018-10-24 11:27:39 +0200 | [diff] [blame] | 2655 | |
| 2656 | switch (action) { |
| 2657 | case 0: // method |
| 2658 | if (!http_replace_req_meth(htx, ist2(replace, len))) |
| 2659 | return -1; |
| 2660 | break; |
| 2661 | |
| 2662 | case 1: // path |
| 2663 | if (!http_replace_req_path(htx, ist2(replace, len))) |
| 2664 | return -1; |
| 2665 | break; |
| 2666 | |
| 2667 | case 2: // query |
| 2668 | if (!http_replace_req_query(htx, ist2(replace, len))) |
| 2669 | return -1; |
| 2670 | break; |
| 2671 | |
| 2672 | case 3: // uri |
| 2673 | if (!http_replace_req_uri(htx, ist2(replace, len))) |
| 2674 | return -1; |
| 2675 | break; |
| 2676 | |
| 2677 | default: |
| 2678 | return -1; |
| 2679 | } |
| 2680 | return 0; |
| 2681 | } |
| 2682 | |
| 2683 | /* This function replace the HTTP status code and the associated message. The |
| 2684 | * variable <status> contains the new status code. This function never fails. |
| 2685 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2686 | void http_res_set_status(unsigned int status, const char *reason, struct stream *s) |
Christopher Faulet | 8d8ac19 | 2018-10-24 11:27:39 +0200 | [diff] [blame] | 2687 | { |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 2688 | struct htx *htx = htxbuf(&s->res.buf); |
Christopher Faulet | 8d8ac19 | 2018-10-24 11:27:39 +0200 | [diff] [blame] | 2689 | char *res; |
| 2690 | |
| 2691 | chunk_reset(&trash); |
| 2692 | res = ultoa_o(status, trash.area, trash.size); |
| 2693 | trash.data = res - trash.area; |
| 2694 | |
| 2695 | /* Do we have a custom reason format string? */ |
| 2696 | if (reason == NULL) |
| 2697 | reason = http_get_reason(status); |
| 2698 | |
Christopher Faulet | 87a2c0d | 2018-12-13 21:58:18 +0100 | [diff] [blame] | 2699 | if (http_replace_res_status(htx, ist2(trash.area, trash.data))) |
Christopher Faulet | 8d8ac19 | 2018-10-24 11:27:39 +0200 | [diff] [blame] | 2700 | http_replace_res_reason(htx, ist2(reason, strlen(reason))); |
| 2701 | } |
| 2702 | |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2703 | /* Executes the http-request rules <rules> for stream <s>, proxy <px> and |
| 2704 | * transaction <txn>. Returns the verdict of the first rule that prevents |
| 2705 | * further processing of the request (auth, deny, ...), and defaults to |
| 2706 | * HTTP_RULE_RES_STOP if it executed all rules or stopped on an allow, or |
| 2707 | * HTTP_RULE_RES_CONT if the last rule was reached. It may set the TX_CLTARPIT |
| 2708 | * on txn->flags if it encounters a tarpit rule. If <deny_status> is not NULL |
| 2709 | * and a deny/tarpit rule is matched, it will be filled with this rule's deny |
| 2710 | * status. |
| 2711 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2712 | static enum rule_result http_req_get_intercept_rule(struct proxy *px, struct list *rules, |
| 2713 | struct stream *s, int *deny_status) |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2714 | { |
| 2715 | struct session *sess = strm_sess(s); |
| 2716 | struct http_txn *txn = s->txn; |
| 2717 | struct htx *htx; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2718 | struct act_rule *rule; |
| 2719 | struct http_hdr_ctx ctx; |
| 2720 | const char *auth_realm; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2721 | enum rule_result rule_ret = HTTP_RULE_RES_CONT; |
| 2722 | int act_flags = 0; |
Christopher Faulet | ee9b5bf | 2018-11-28 13:55:14 +0100 | [diff] [blame] | 2723 | int early_hints = 0; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2724 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 2725 | htx = htxbuf(&s->req.buf); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2726 | |
| 2727 | /* If "the current_rule_list" match the executed rule list, we are in |
| 2728 | * resume condition. If a resume is needed it is always in the action |
| 2729 | * and never in the ACL or converters. In this case, we initialise the |
| 2730 | * current rule, and go to the action execution point. |
| 2731 | */ |
| 2732 | if (s->current_rule) { |
| 2733 | rule = s->current_rule; |
| 2734 | s->current_rule = NULL; |
| 2735 | if (s->current_rule_list == rules) |
| 2736 | goto resume_execution; |
| 2737 | } |
| 2738 | s->current_rule_list = rules; |
| 2739 | |
| 2740 | list_for_each_entry(rule, rules, list) { |
| 2741 | /* check optional condition */ |
| 2742 | if (rule->cond) { |
| 2743 | int ret; |
| 2744 | |
| 2745 | ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL); |
| 2746 | ret = acl_pass(ret); |
| 2747 | |
| 2748 | if (rule->cond->pol == ACL_COND_UNLESS) |
| 2749 | ret = !ret; |
| 2750 | |
| 2751 | if (!ret) /* condition not matched */ |
| 2752 | continue; |
| 2753 | } |
| 2754 | |
| 2755 | act_flags |= ACT_FLAG_FIRST; |
| 2756 | resume_execution: |
Christopher Faulet | ee9b5bf | 2018-11-28 13:55:14 +0100 | [diff] [blame] | 2757 | if (early_hints && rule->action != ACT_HTTP_EARLY_HINT) { |
| 2758 | early_hints = 0; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2759 | if (http_reply_103_early_hints(&s->res) == -1) { |
Christopher Faulet | ee9b5bf | 2018-11-28 13:55:14 +0100 | [diff] [blame] | 2760 | rule_ret = HTTP_RULE_RES_BADREQ; |
| 2761 | goto end; |
| 2762 | } |
| 2763 | } |
| 2764 | |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2765 | switch (rule->action) { |
| 2766 | case ACT_ACTION_ALLOW: |
| 2767 | rule_ret = HTTP_RULE_RES_STOP; |
| 2768 | goto end; |
| 2769 | |
| 2770 | case ACT_ACTION_DENY: |
| 2771 | if (deny_status) |
| 2772 | *deny_status = rule->deny_status; |
| 2773 | rule_ret = HTTP_RULE_RES_DENY; |
| 2774 | goto end; |
| 2775 | |
| 2776 | case ACT_HTTP_REQ_TARPIT: |
| 2777 | txn->flags |= TX_CLTARPIT; |
| 2778 | if (deny_status) |
| 2779 | *deny_status = rule->deny_status; |
| 2780 | rule_ret = HTTP_RULE_RES_DENY; |
| 2781 | goto end; |
| 2782 | |
| 2783 | case ACT_HTTP_REQ_AUTH: |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2784 | /* Auth might be performed on regular http-req rules as well as on stats */ |
| 2785 | auth_realm = rule->arg.auth.realm; |
| 2786 | if (!auth_realm) { |
| 2787 | if (px->uri_auth && rules == &px->uri_auth->http_req_rules) |
| 2788 | auth_realm = STATS_DEFAULT_REALM; |
| 2789 | else |
| 2790 | auth_realm = px->id; |
| 2791 | } |
| 2792 | /* send 401/407 depending on whether we use a proxy or not. We still |
| 2793 | * count one error, because normal browsing won't significantly |
| 2794 | * increase the counter but brute force attempts will. |
| 2795 | */ |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2796 | rule_ret = HTTP_RULE_RES_ABRT; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2797 | if (http_reply_40x_unauthorized(s, auth_realm) == -1) |
Christopher Faulet | 12c51e2 | 2018-11-28 15:59:42 +0100 | [diff] [blame] | 2798 | rule_ret = HTTP_RULE_RES_BADREQ; |
| 2799 | stream_inc_http_err_ctr(s); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2800 | goto end; |
| 2801 | |
| 2802 | case ACT_HTTP_REDIR: |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2803 | rule_ret = HTTP_RULE_RES_DONE; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2804 | if (!http_apply_redirect_rule(rule->arg.redir, s, txn)) |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2805 | rule_ret = HTTP_RULE_RES_BADREQ; |
| 2806 | goto end; |
| 2807 | |
| 2808 | case ACT_HTTP_SET_NICE: |
| 2809 | s->task->nice = rule->arg.nice; |
| 2810 | break; |
| 2811 | |
| 2812 | case ACT_HTTP_SET_TOS: |
Willy Tarreau | 1a18b54 | 2018-12-11 16:37:42 +0100 | [diff] [blame] | 2813 | conn_set_tos(objt_conn(sess->origin), rule->arg.tos); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2814 | break; |
| 2815 | |
| 2816 | case ACT_HTTP_SET_MARK: |
Willy Tarreau | 1a18b54 | 2018-12-11 16:37:42 +0100 | [diff] [blame] | 2817 | conn_set_mark(objt_conn(sess->origin), rule->arg.mark); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2818 | break; |
| 2819 | |
| 2820 | case ACT_HTTP_SET_LOGL: |
| 2821 | s->logs.level = rule->arg.loglevel; |
| 2822 | break; |
| 2823 | |
| 2824 | case ACT_HTTP_REPLACE_HDR: |
| 2825 | case ACT_HTTP_REPLACE_VAL: |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2826 | if (http_transform_header(s, &s->req, htx, |
| 2827 | ist2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len), |
| 2828 | &rule->arg.hdr_add.fmt, |
| 2829 | rule->arg.hdr_add.re, rule->action)) { |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2830 | rule_ret = HTTP_RULE_RES_BADREQ; |
| 2831 | goto end; |
| 2832 | } |
| 2833 | break; |
| 2834 | |
| 2835 | case ACT_HTTP_DEL_HDR: |
| 2836 | /* remove all occurrences of the header */ |
| 2837 | ctx.blk = NULL; |
| 2838 | while (http_find_header(htx, ist2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len), &ctx, 1)) |
| 2839 | http_remove_header(htx, &ctx); |
| 2840 | break; |
| 2841 | |
| 2842 | case ACT_HTTP_SET_HDR: |
| 2843 | case ACT_HTTP_ADD_HDR: { |
| 2844 | /* The scope of the trash buffer must be limited to this function. The |
| 2845 | * build_logline() function can execute a lot of other function which |
| 2846 | * can use the trash buffer. So for limiting the scope of this global |
| 2847 | * buffer, we build first the header value using build_logline, and |
| 2848 | * after we store the header name. |
| 2849 | */ |
| 2850 | struct buffer *replace; |
| 2851 | struct ist n, v; |
| 2852 | |
| 2853 | replace = alloc_trash_chunk(); |
| 2854 | if (!replace) { |
| 2855 | rule_ret = HTTP_RULE_RES_BADREQ; |
| 2856 | goto end; |
| 2857 | } |
| 2858 | |
| 2859 | replace->data = build_logline(s, replace->area, replace->size, &rule->arg.hdr_add.fmt); |
| 2860 | n = ist2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len); |
| 2861 | v = ist2(replace->area, replace->data); |
| 2862 | |
| 2863 | if (rule->action == ACT_HTTP_SET_HDR) { |
| 2864 | /* remove all occurrences of the header */ |
| 2865 | ctx.blk = NULL; |
| 2866 | while (http_find_header(htx, ist2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len), &ctx, 1)) |
| 2867 | http_remove_header(htx, &ctx); |
| 2868 | } |
| 2869 | |
| 2870 | if (!http_add_header(htx, n, v)) { |
| 2871 | static unsigned char rate_limit = 0; |
| 2872 | |
| 2873 | if ((rate_limit++ & 255) == 0) { |
| 2874 | send_log(px, LOG_WARNING, "Proxy %s failed to add or set the request header '%.*s' for request #%u. You might need to increase tune.maxrewrite.", px->id, (int)n.len, n.ptr, s->uniq_id); |
| 2875 | } |
| 2876 | |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 2877 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_rewrites, 1); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2878 | if (sess->fe != s->be) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 2879 | _HA_ATOMIC_ADD(&s->be->be_counters.failed_rewrites, 1); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2880 | if (sess->listener->counters) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 2881 | _HA_ATOMIC_ADD(&sess->listener->counters->failed_rewrites, 1); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2882 | } |
| 2883 | free_trash_chunk(replace); |
| 2884 | break; |
| 2885 | } |
| 2886 | |
| 2887 | case ACT_HTTP_DEL_ACL: |
| 2888 | case ACT_HTTP_DEL_MAP: { |
| 2889 | struct pat_ref *ref; |
| 2890 | struct buffer *key; |
| 2891 | |
| 2892 | /* collect reference */ |
| 2893 | ref = pat_ref_lookup(rule->arg.map.ref); |
| 2894 | if (!ref) |
| 2895 | continue; |
| 2896 | |
| 2897 | /* allocate key */ |
| 2898 | key = alloc_trash_chunk(); |
| 2899 | if (!key) { |
| 2900 | rule_ret = HTTP_RULE_RES_BADREQ; |
| 2901 | goto end; |
| 2902 | } |
| 2903 | |
| 2904 | /* collect key */ |
| 2905 | key->data = build_logline(s, key->area, key->size, &rule->arg.map.key); |
| 2906 | key->area[key->data] = '\0'; |
| 2907 | |
| 2908 | /* perform update */ |
| 2909 | /* returned code: 1=ok, 0=ko */ |
| 2910 | HA_SPIN_LOCK(PATREF_LOCK, &ref->lock); |
| 2911 | pat_ref_delete(ref, key->area); |
| 2912 | HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock); |
| 2913 | |
| 2914 | free_trash_chunk(key); |
| 2915 | break; |
| 2916 | } |
| 2917 | |
| 2918 | case ACT_HTTP_ADD_ACL: { |
| 2919 | struct pat_ref *ref; |
| 2920 | struct buffer *key; |
| 2921 | |
| 2922 | /* collect reference */ |
| 2923 | ref = pat_ref_lookup(rule->arg.map.ref); |
| 2924 | if (!ref) |
| 2925 | continue; |
| 2926 | |
| 2927 | /* allocate key */ |
| 2928 | key = alloc_trash_chunk(); |
| 2929 | if (!key) { |
| 2930 | rule_ret = HTTP_RULE_RES_BADREQ; |
| 2931 | goto end; |
| 2932 | } |
| 2933 | |
| 2934 | /* collect key */ |
| 2935 | key->data = build_logline(s, key->area, key->size, &rule->arg.map.key); |
| 2936 | key->area[key->data] = '\0'; |
| 2937 | |
| 2938 | /* perform update */ |
| 2939 | /* add entry only if it does not already exist */ |
| 2940 | HA_SPIN_LOCK(PATREF_LOCK, &ref->lock); |
| 2941 | if (pat_ref_find_elt(ref, key->area) == NULL) |
| 2942 | pat_ref_add(ref, key->area, NULL, NULL); |
| 2943 | HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock); |
| 2944 | |
| 2945 | free_trash_chunk(key); |
| 2946 | break; |
| 2947 | } |
| 2948 | |
| 2949 | case ACT_HTTP_SET_MAP: { |
| 2950 | struct pat_ref *ref; |
| 2951 | struct buffer *key, *value; |
| 2952 | |
| 2953 | /* collect reference */ |
| 2954 | ref = pat_ref_lookup(rule->arg.map.ref); |
| 2955 | if (!ref) |
| 2956 | continue; |
| 2957 | |
| 2958 | /* allocate key */ |
| 2959 | key = alloc_trash_chunk(); |
| 2960 | if (!key) { |
| 2961 | rule_ret = HTTP_RULE_RES_BADREQ; |
| 2962 | goto end; |
| 2963 | } |
| 2964 | |
| 2965 | /* allocate value */ |
| 2966 | value = alloc_trash_chunk(); |
| 2967 | if (!value) { |
| 2968 | free_trash_chunk(key); |
| 2969 | rule_ret = HTTP_RULE_RES_BADREQ; |
| 2970 | goto end; |
| 2971 | } |
| 2972 | |
| 2973 | /* collect key */ |
| 2974 | key->data = build_logline(s, key->area, key->size, &rule->arg.map.key); |
| 2975 | key->area[key->data] = '\0'; |
| 2976 | |
| 2977 | /* collect value */ |
| 2978 | value->data = build_logline(s, value->area, value->size, &rule->arg.map.value); |
| 2979 | value->area[value->data] = '\0'; |
| 2980 | |
| 2981 | /* perform update */ |
Christopher Faulet | e84289e | 2019-04-19 14:50:55 +0200 | [diff] [blame] | 2982 | HA_SPIN_LOCK(PATREF_LOCK, &ref->lock); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2983 | if (pat_ref_find_elt(ref, key->area) != NULL) |
| 2984 | /* update entry if it exists */ |
| 2985 | pat_ref_set(ref, key->area, value->area, NULL); |
| 2986 | else |
| 2987 | /* insert a new entry */ |
| 2988 | pat_ref_add(ref, key->area, value->area, NULL); |
Christopher Faulet | e84289e | 2019-04-19 14:50:55 +0200 | [diff] [blame] | 2989 | HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 2990 | free_trash_chunk(key); |
| 2991 | free_trash_chunk(value); |
| 2992 | break; |
| 2993 | } |
| 2994 | |
| 2995 | case ACT_HTTP_EARLY_HINT: |
| 2996 | if (!(txn->req.flags & HTTP_MSGF_VER_11)) |
| 2997 | break; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 2998 | early_hints = http_add_early_hint_header(s, early_hints, |
| 2999 | ist2(rule->arg.early_hint.name, rule->arg.early_hint.name_len), |
| 3000 | &rule->arg.early_hint.fmt); |
Christopher Faulet | ee9b5bf | 2018-11-28 13:55:14 +0100 | [diff] [blame] | 3001 | if (early_hints == -1) { |
| 3002 | rule_ret = HTTP_RULE_RES_BADREQ; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3003 | goto end; |
| 3004 | } |
| 3005 | break; |
| 3006 | |
| 3007 | case ACT_CUSTOM: |
| 3008 | if ((s->req.flags & CF_READ_ERROR) || |
| 3009 | ((s->req.flags & (CF_SHUTR|CF_READ_NULL)) && |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3010 | (px->options & PR_O_ABRT_CLOSE))) |
| 3011 | act_flags |= ACT_FLAG_FINAL; |
| 3012 | |
| 3013 | switch (rule->action_ptr(rule, px, s->sess, s, act_flags)) { |
| 3014 | case ACT_RET_ERR: |
| 3015 | case ACT_RET_CONT: |
| 3016 | break; |
| 3017 | case ACT_RET_STOP: |
Christopher Faulet | 8f1aa77 | 2019-07-04 11:27:15 +0200 | [diff] [blame] | 3018 | rule_ret = HTTP_RULE_RES_STOP; |
| 3019 | goto end; |
| 3020 | case ACT_RET_DONE: |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3021 | rule_ret = HTTP_RULE_RES_DONE; |
| 3022 | goto end; |
| 3023 | case ACT_RET_YIELD: |
| 3024 | s->current_rule = rule; |
| 3025 | rule_ret = HTTP_RULE_RES_YIELD; |
| 3026 | goto end; |
| 3027 | } |
| 3028 | break; |
| 3029 | |
| 3030 | case ACT_ACTION_TRK_SC0 ... ACT_ACTION_TRK_SCMAX: |
| 3031 | /* Note: only the first valid tracking parameter of each |
| 3032 | * applies. |
| 3033 | */ |
| 3034 | |
| 3035 | if (stkctr_entry(&s->stkctr[trk_idx(rule->action)]) == NULL) { |
| 3036 | struct stktable *t; |
| 3037 | struct stksess *ts; |
| 3038 | struct stktable_key *key; |
| 3039 | void *ptr1, *ptr2; |
| 3040 | |
| 3041 | t = rule->arg.trk_ctr.table.t; |
| 3042 | key = stktable_fetch_key(t, s->be, sess, s, SMP_OPT_DIR_REQ | SMP_OPT_FINAL, |
| 3043 | rule->arg.trk_ctr.expr, NULL); |
| 3044 | |
| 3045 | if (key && (ts = stktable_get_entry(t, key))) { |
| 3046 | stream_track_stkctr(&s->stkctr[trk_idx(rule->action)], t, ts); |
| 3047 | |
| 3048 | /* let's count a new HTTP request as it's the first time we do it */ |
| 3049 | ptr1 = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_CNT); |
| 3050 | ptr2 = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_RATE); |
| 3051 | if (ptr1 || ptr2) { |
| 3052 | HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock); |
| 3053 | |
| 3054 | if (ptr1) |
| 3055 | stktable_data_cast(ptr1, http_req_cnt)++; |
| 3056 | |
| 3057 | if (ptr2) |
| 3058 | update_freq_ctr_period(&stktable_data_cast(ptr2, http_req_rate), |
| 3059 | t->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u, 1); |
| 3060 | |
| 3061 | HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock); |
| 3062 | |
| 3063 | /* If data was modified, we need to touch to re-schedule sync */ |
| 3064 | stktable_touch_local(t, ts, 0); |
| 3065 | } |
| 3066 | |
| 3067 | stkctr_set_flags(&s->stkctr[trk_idx(rule->action)], STKCTR_TRACK_CONTENT); |
| 3068 | if (sess->fe != s->be) |
| 3069 | stkctr_set_flags(&s->stkctr[trk_idx(rule->action)], STKCTR_TRACK_BACKEND); |
| 3070 | } |
| 3071 | } |
| 3072 | break; |
| 3073 | |
Joseph Herlant | c42c0e9 | 2018-11-25 10:43:27 -0800 | [diff] [blame] | 3074 | /* other flags exists, but normally, they never be matched. */ |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3075 | default: |
| 3076 | break; |
| 3077 | } |
| 3078 | } |
| 3079 | |
| 3080 | end: |
| 3081 | if (early_hints) { |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 3082 | if (http_reply_103_early_hints(&s->res) == -1) |
Christopher Faulet | ee9b5bf | 2018-11-28 13:55:14 +0100 | [diff] [blame] | 3083 | rule_ret = HTTP_RULE_RES_BADREQ; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3084 | } |
| 3085 | |
| 3086 | /* we reached the end of the rules, nothing to report */ |
| 3087 | return rule_ret; |
| 3088 | } |
| 3089 | |
| 3090 | /* Executes the http-response rules <rules> for stream <s> and proxy <px>. It |
| 3091 | * returns one of 5 possible statuses: HTTP_RULE_RES_CONT, HTTP_RULE_RES_STOP, |
| 3092 | * HTTP_RULE_RES_DONE, HTTP_RULE_RES_YIELD, or HTTP_RULE_RES_BADREQ. If *CONT |
| 3093 | * is returned, the process can continue the evaluation of next rule list. If |
| 3094 | * *STOP or *DONE is returned, the process must stop the evaluation. If *BADREQ |
| 3095 | * is returned, it means the operation could not be processed and a server error |
| 3096 | * must be returned. It may set the TX_SVDENY on txn->flags if it encounters a |
| 3097 | * deny rule. If *YIELD is returned, the caller must call again the function |
| 3098 | * with the same context. |
| 3099 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 3100 | static enum rule_result http_res_get_intercept_rule(struct proxy *px, struct list *rules, |
| 3101 | struct stream *s) |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3102 | { |
| 3103 | struct session *sess = strm_sess(s); |
| 3104 | struct http_txn *txn = s->txn; |
| 3105 | struct htx *htx; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3106 | struct act_rule *rule; |
| 3107 | struct http_hdr_ctx ctx; |
| 3108 | enum rule_result rule_ret = HTTP_RULE_RES_CONT; |
| 3109 | int act_flags = 0; |
| 3110 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 3111 | htx = htxbuf(&s->res.buf); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3112 | |
| 3113 | /* If "the current_rule_list" match the executed rule list, we are in |
| 3114 | * resume condition. If a resume is needed it is always in the action |
| 3115 | * and never in the ACL or converters. In this case, we initialise the |
| 3116 | * current rule, and go to the action execution point. |
| 3117 | */ |
| 3118 | if (s->current_rule) { |
| 3119 | rule = s->current_rule; |
| 3120 | s->current_rule = NULL; |
| 3121 | if (s->current_rule_list == rules) |
| 3122 | goto resume_execution; |
| 3123 | } |
| 3124 | s->current_rule_list = rules; |
| 3125 | |
| 3126 | list_for_each_entry(rule, rules, list) { |
| 3127 | /* check optional condition */ |
| 3128 | if (rule->cond) { |
| 3129 | int ret; |
| 3130 | |
| 3131 | ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL); |
| 3132 | ret = acl_pass(ret); |
| 3133 | |
| 3134 | if (rule->cond->pol == ACL_COND_UNLESS) |
| 3135 | ret = !ret; |
| 3136 | |
| 3137 | if (!ret) /* condition not matched */ |
| 3138 | continue; |
| 3139 | } |
| 3140 | |
| 3141 | act_flags |= ACT_FLAG_FIRST; |
| 3142 | resume_execution: |
| 3143 | switch (rule->action) { |
| 3144 | case ACT_ACTION_ALLOW: |
| 3145 | rule_ret = HTTP_RULE_RES_STOP; /* "allow" rules are OK */ |
| 3146 | goto end; |
| 3147 | |
| 3148 | case ACT_ACTION_DENY: |
| 3149 | txn->flags |= TX_SVDENY; |
| 3150 | rule_ret = HTTP_RULE_RES_STOP; |
| 3151 | goto end; |
| 3152 | |
| 3153 | case ACT_HTTP_SET_NICE: |
| 3154 | s->task->nice = rule->arg.nice; |
| 3155 | break; |
| 3156 | |
| 3157 | case ACT_HTTP_SET_TOS: |
Willy Tarreau | 1a18b54 | 2018-12-11 16:37:42 +0100 | [diff] [blame] | 3158 | conn_set_tos(objt_conn(sess->origin), rule->arg.tos); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3159 | break; |
| 3160 | |
| 3161 | case ACT_HTTP_SET_MARK: |
Willy Tarreau | 1a18b54 | 2018-12-11 16:37:42 +0100 | [diff] [blame] | 3162 | conn_set_mark(objt_conn(sess->origin), rule->arg.mark); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3163 | break; |
| 3164 | |
| 3165 | case ACT_HTTP_SET_LOGL: |
| 3166 | s->logs.level = rule->arg.loglevel; |
| 3167 | break; |
| 3168 | |
| 3169 | case ACT_HTTP_REPLACE_HDR: |
| 3170 | case ACT_HTTP_REPLACE_VAL: |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 3171 | if (http_transform_header(s, &s->res, htx, |
| 3172 | ist2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len), |
| 3173 | &rule->arg.hdr_add.fmt, |
| 3174 | rule->arg.hdr_add.re, rule->action)) { |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3175 | rule_ret = HTTP_RULE_RES_BADREQ; |
| 3176 | goto end; |
| 3177 | } |
| 3178 | break; |
| 3179 | |
| 3180 | case ACT_HTTP_DEL_HDR: |
| 3181 | /* remove all occurrences of the header */ |
| 3182 | ctx.blk = NULL; |
| 3183 | while (http_find_header(htx, ist2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len), &ctx, 1)) |
| 3184 | http_remove_header(htx, &ctx); |
| 3185 | break; |
| 3186 | |
| 3187 | case ACT_HTTP_SET_HDR: |
| 3188 | case ACT_HTTP_ADD_HDR: { |
| 3189 | struct buffer *replace; |
| 3190 | struct ist n, v; |
| 3191 | |
| 3192 | replace = alloc_trash_chunk(); |
| 3193 | if (!replace) { |
| 3194 | rule_ret = HTTP_RULE_RES_BADREQ; |
| 3195 | goto end; |
| 3196 | } |
| 3197 | |
| 3198 | replace->data = build_logline(s, replace->area, replace->size, &rule->arg.hdr_add.fmt); |
| 3199 | n = ist2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len); |
| 3200 | v = ist2(replace->area, replace->data); |
| 3201 | |
| 3202 | if (rule->action == ACT_HTTP_SET_HDR) { |
| 3203 | /* remove all occurrences of the header */ |
| 3204 | ctx.blk = NULL; |
| 3205 | while (http_find_header(htx, ist2(rule->arg.hdr_add.name, rule->arg.hdr_add.name_len), &ctx, 1)) |
| 3206 | http_remove_header(htx, &ctx); |
| 3207 | } |
| 3208 | |
| 3209 | if (!http_add_header(htx, n, v)) { |
| 3210 | static unsigned char rate_limit = 0; |
| 3211 | |
| 3212 | if ((rate_limit++ & 255) == 0) { |
| 3213 | send_log(px, LOG_WARNING, "Proxy %s failed to add or set the response header '%.*s' for request #%u. You might need to increase tune.maxrewrite.", px->id, (int)n.len, n.ptr, s->uniq_id); |
| 3214 | } |
| 3215 | |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 3216 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_rewrites, 1); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3217 | if (sess->fe != s->be) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 3218 | _HA_ATOMIC_ADD(&s->be->be_counters.failed_rewrites, 1); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3219 | if (sess->listener->counters) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 3220 | _HA_ATOMIC_ADD(&sess->listener->counters->failed_rewrites, 1); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3221 | if (objt_server(s->target)) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 3222 | _HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_rewrites, 1); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3223 | } |
| 3224 | free_trash_chunk(replace); |
| 3225 | break; |
| 3226 | } |
| 3227 | |
| 3228 | case ACT_HTTP_DEL_ACL: |
| 3229 | case ACT_HTTP_DEL_MAP: { |
| 3230 | struct pat_ref *ref; |
| 3231 | struct buffer *key; |
| 3232 | |
| 3233 | /* collect reference */ |
| 3234 | ref = pat_ref_lookup(rule->arg.map.ref); |
| 3235 | if (!ref) |
| 3236 | continue; |
| 3237 | |
| 3238 | /* allocate key */ |
| 3239 | key = alloc_trash_chunk(); |
| 3240 | if (!key) { |
| 3241 | rule_ret = HTTP_RULE_RES_BADREQ; |
| 3242 | goto end; |
| 3243 | } |
| 3244 | |
| 3245 | /* collect key */ |
| 3246 | key->data = build_logline(s, key->area, key->size, &rule->arg.map.key); |
| 3247 | key->area[key->data] = '\0'; |
| 3248 | |
| 3249 | /* perform update */ |
| 3250 | /* returned code: 1=ok, 0=ko */ |
| 3251 | HA_SPIN_LOCK(PATREF_LOCK, &ref->lock); |
| 3252 | pat_ref_delete(ref, key->area); |
| 3253 | HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock); |
| 3254 | |
| 3255 | free_trash_chunk(key); |
| 3256 | break; |
| 3257 | } |
| 3258 | |
| 3259 | case ACT_HTTP_ADD_ACL: { |
| 3260 | struct pat_ref *ref; |
| 3261 | struct buffer *key; |
| 3262 | |
| 3263 | /* collect reference */ |
| 3264 | ref = pat_ref_lookup(rule->arg.map.ref); |
| 3265 | if (!ref) |
| 3266 | continue; |
| 3267 | |
| 3268 | /* allocate key */ |
| 3269 | key = alloc_trash_chunk(); |
| 3270 | if (!key) { |
| 3271 | rule_ret = HTTP_RULE_RES_BADREQ; |
| 3272 | goto end; |
| 3273 | } |
| 3274 | |
| 3275 | /* collect key */ |
| 3276 | key->data = build_logline(s, key->area, key->size, &rule->arg.map.key); |
| 3277 | key->area[key->data] = '\0'; |
| 3278 | |
| 3279 | /* perform update */ |
| 3280 | /* check if the entry already exists */ |
Christopher Faulet | e84289e | 2019-04-19 14:50:55 +0200 | [diff] [blame] | 3281 | HA_SPIN_LOCK(PATREF_LOCK, &ref->lock); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3282 | if (pat_ref_find_elt(ref, key->area) == NULL) |
| 3283 | pat_ref_add(ref, key->area, NULL, NULL); |
Christopher Faulet | e84289e | 2019-04-19 14:50:55 +0200 | [diff] [blame] | 3284 | HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock); |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3285 | free_trash_chunk(key); |
| 3286 | break; |
| 3287 | } |
| 3288 | |
| 3289 | case ACT_HTTP_SET_MAP: { |
| 3290 | struct pat_ref *ref; |
| 3291 | struct buffer *key, *value; |
| 3292 | |
| 3293 | /* collect reference */ |
| 3294 | ref = pat_ref_lookup(rule->arg.map.ref); |
| 3295 | if (!ref) |
| 3296 | continue; |
| 3297 | |
| 3298 | /* allocate key */ |
| 3299 | key = alloc_trash_chunk(); |
| 3300 | if (!key) { |
| 3301 | rule_ret = HTTP_RULE_RES_BADREQ; |
| 3302 | goto end; |
| 3303 | } |
| 3304 | |
| 3305 | /* allocate value */ |
| 3306 | value = alloc_trash_chunk(); |
| 3307 | if (!value) { |
| 3308 | free_trash_chunk(key); |
| 3309 | rule_ret = HTTP_RULE_RES_BADREQ; |
| 3310 | goto end; |
| 3311 | } |
| 3312 | |
| 3313 | /* collect key */ |
| 3314 | key->data = build_logline(s, key->area, key->size, &rule->arg.map.key); |
| 3315 | key->area[key->data] = '\0'; |
| 3316 | |
| 3317 | /* collect value */ |
| 3318 | value->data = build_logline(s, value->area, value->size, &rule->arg.map.value); |
| 3319 | value->area[value->data] = '\0'; |
| 3320 | |
| 3321 | /* perform update */ |
| 3322 | HA_SPIN_LOCK(PATREF_LOCK, &ref->lock); |
| 3323 | if (pat_ref_find_elt(ref, key->area) != NULL) |
| 3324 | /* update entry if it exists */ |
| 3325 | pat_ref_set(ref, key->area, value->area, NULL); |
| 3326 | else |
| 3327 | /* insert a new entry */ |
| 3328 | pat_ref_add(ref, key->area, value->area, NULL); |
| 3329 | HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock); |
| 3330 | free_trash_chunk(key); |
| 3331 | free_trash_chunk(value); |
| 3332 | break; |
| 3333 | } |
| 3334 | |
| 3335 | case ACT_HTTP_REDIR: |
| 3336 | rule_ret = HTTP_RULE_RES_DONE; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 3337 | if (!http_apply_redirect_rule(rule->arg.redir, s, txn)) |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3338 | rule_ret = HTTP_RULE_RES_BADREQ; |
| 3339 | goto end; |
| 3340 | |
| 3341 | case ACT_ACTION_TRK_SC0 ... ACT_ACTION_TRK_SCMAX: |
| 3342 | /* Note: only the first valid tracking parameter of each |
| 3343 | * applies. |
| 3344 | */ |
| 3345 | if (stkctr_entry(&s->stkctr[trk_idx(rule->action)]) == NULL) { |
| 3346 | struct stktable *t; |
| 3347 | struct stksess *ts; |
| 3348 | struct stktable_key *key; |
| 3349 | void *ptr; |
| 3350 | |
| 3351 | t = rule->arg.trk_ctr.table.t; |
| 3352 | key = stktable_fetch_key(t, s->be, sess, s, SMP_OPT_DIR_RES | SMP_OPT_FINAL, |
| 3353 | rule->arg.trk_ctr.expr, NULL); |
| 3354 | |
| 3355 | if (key && (ts = stktable_get_entry(t, key))) { |
| 3356 | stream_track_stkctr(&s->stkctr[trk_idx(rule->action)], t, ts); |
| 3357 | |
| 3358 | HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock); |
| 3359 | |
| 3360 | /* let's count a new HTTP request as it's the first time we do it */ |
| 3361 | ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_CNT); |
| 3362 | if (ptr) |
| 3363 | stktable_data_cast(ptr, http_req_cnt)++; |
| 3364 | |
| 3365 | ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_RATE); |
| 3366 | if (ptr) |
| 3367 | update_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate), |
| 3368 | t->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u, 1); |
| 3369 | |
| 3370 | /* When the client triggers a 4xx from the server, it's most often due |
| 3371 | * to a missing object or permission. These events should be tracked |
| 3372 | * because if they happen often, it may indicate a brute force or a |
| 3373 | * vulnerability scan. Normally this is done when receiving the response |
| 3374 | * but here we're tracking after this ought to have been done so we have |
| 3375 | * to do it on purpose. |
| 3376 | */ |
| 3377 | if ((unsigned)(txn->status - 400) < 100) { |
| 3378 | ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_ERR_CNT); |
| 3379 | if (ptr) |
| 3380 | stktable_data_cast(ptr, http_err_cnt)++; |
| 3381 | |
| 3382 | ptr = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_ERR_RATE); |
| 3383 | if (ptr) |
| 3384 | update_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate), |
| 3385 | t->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u, 1); |
| 3386 | } |
| 3387 | |
| 3388 | HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock); |
| 3389 | |
| 3390 | /* If data was modified, we need to touch to re-schedule sync */ |
| 3391 | stktable_touch_local(t, ts, 0); |
| 3392 | |
| 3393 | stkctr_set_flags(&s->stkctr[trk_idx(rule->action)], STKCTR_TRACK_CONTENT); |
| 3394 | if (sess->fe != s->be) |
| 3395 | stkctr_set_flags(&s->stkctr[trk_idx(rule->action)], STKCTR_TRACK_BACKEND); |
| 3396 | } |
| 3397 | } |
| 3398 | break; |
| 3399 | |
| 3400 | case ACT_CUSTOM: |
| 3401 | if ((s->req.flags & CF_READ_ERROR) || |
| 3402 | ((s->req.flags & (CF_SHUTR|CF_READ_NULL)) && |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3403 | (px->options & PR_O_ABRT_CLOSE))) |
| 3404 | act_flags |= ACT_FLAG_FINAL; |
| 3405 | |
| 3406 | switch (rule->action_ptr(rule, px, s->sess, s, act_flags)) { |
| 3407 | case ACT_RET_ERR: |
| 3408 | case ACT_RET_CONT: |
| 3409 | break; |
| 3410 | case ACT_RET_STOP: |
| 3411 | rule_ret = HTTP_RULE_RES_STOP; |
| 3412 | goto end; |
Christopher Faulet | 8f1aa77 | 2019-07-04 11:27:15 +0200 | [diff] [blame] | 3413 | case ACT_RET_DONE: |
| 3414 | rule_ret = HTTP_RULE_RES_DONE; |
| 3415 | goto end; |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3416 | case ACT_RET_YIELD: |
| 3417 | s->current_rule = rule; |
| 3418 | rule_ret = HTTP_RULE_RES_YIELD; |
| 3419 | goto end; |
| 3420 | } |
| 3421 | break; |
| 3422 | |
Joseph Herlant | c42c0e9 | 2018-11-25 10:43:27 -0800 | [diff] [blame] | 3423 | /* other flags exists, but normally, they never be matched. */ |
Christopher Faulet | 3e96419 | 2018-10-24 11:39:23 +0200 | [diff] [blame] | 3424 | default: |
| 3425 | break; |
| 3426 | } |
| 3427 | } |
| 3428 | |
| 3429 | end: |
| 3430 | /* we reached the end of the rules, nothing to report */ |
| 3431 | return rule_ret; |
| 3432 | } |
| 3433 | |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3434 | /* |
| 3435 | * Manage client-side cookie. It can impact performance by about 2% so it is |
| 3436 | * desirable to call it only when needed. This code is quite complex because |
| 3437 | * of the multiple very crappy and ambiguous syntaxes we have to support. it |
| 3438 | * highly recommended not to touch this part without a good reason ! |
| 3439 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 3440 | 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] | 3441 | { |
| 3442 | struct session *sess = s->sess; |
| 3443 | struct http_txn *txn = s->txn; |
| 3444 | struct htx *htx; |
| 3445 | struct http_hdr_ctx ctx; |
| 3446 | char *hdr_beg, *hdr_end, *del_from; |
| 3447 | char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next; |
| 3448 | int preserve_hdr; |
| 3449 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 3450 | htx = htxbuf(&req->buf); |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3451 | ctx.blk = NULL; |
| 3452 | while (http_find_header(htx, ist("Cookie"), &ctx, 1)) { |
| 3453 | del_from = NULL; /* nothing to be deleted */ |
| 3454 | preserve_hdr = 0; /* assume we may kill the whole header */ |
| 3455 | |
| 3456 | /* Now look for cookies. Conforming to RFC2109, we have to support |
| 3457 | * attributes whose name begin with a '$', and associate them with |
| 3458 | * the right cookie, if we want to delete this cookie. |
| 3459 | * So there are 3 cases for each cookie read : |
| 3460 | * 1) it's a special attribute, beginning with a '$' : ignore it. |
| 3461 | * 2) it's a server id cookie that we *MAY* want to delete : save |
| 3462 | * some pointers on it (last semi-colon, beginning of cookie...) |
| 3463 | * 3) it's an application cookie : we *MAY* have to delete a previous |
| 3464 | * "special" cookie. |
| 3465 | * At the end of loop, if a "special" cookie remains, we may have to |
| 3466 | * remove it. If no application cookie persists in the header, we |
| 3467 | * *MUST* delete it. |
| 3468 | * |
| 3469 | * Note: RFC2965 is unclear about the processing of spaces around |
| 3470 | * the equal sign in the ATTR=VALUE form. A careful inspection of |
| 3471 | * the RFC explicitly allows spaces before it, and not within the |
| 3472 | * tokens (attrs or values). An inspection of RFC2109 allows that |
| 3473 | * too but section 10.1.3 lets one think that spaces may be allowed |
| 3474 | * after the equal sign too, resulting in some (rare) buggy |
| 3475 | * implementations trying to do that. So let's do what servers do. |
| 3476 | * Latest ietf draft forbids spaces all around. Also, earlier RFCs |
| 3477 | * allowed quoted strings in values, with any possible character |
| 3478 | * after a backslash, including control chars and delimitors, which |
| 3479 | * causes parsing to become ambiguous. Browsers also allow spaces |
| 3480 | * within values even without quotes. |
| 3481 | * |
| 3482 | * We have to keep multiple pointers in order to support cookie |
| 3483 | * removal at the beginning, middle or end of header without |
| 3484 | * corrupting the header. All of these headers are valid : |
| 3485 | * |
| 3486 | * hdr_beg hdr_end |
| 3487 | * | | |
| 3488 | * v | |
| 3489 | * NAME1=VALUE1;NAME2=VALUE2;NAME3=VALUE3 | |
| 3490 | * NAME1=VALUE1;NAME2_ONLY ;NAME3=VALUE3 v |
| 3491 | * NAME1 = VALUE 1 ; NAME2 = VALUE2 ; NAME3 = VALUE3 |
| 3492 | * | | | | | | | |
| 3493 | * | | | | | | | |
| 3494 | * | | | | | | +--> next |
| 3495 | * | | | | | +----> val_end |
| 3496 | * | | | | +-----------> val_beg |
| 3497 | * | | | +--------------> equal |
| 3498 | * | | +----------------> att_end |
| 3499 | * | +---------------------> att_beg |
| 3500 | * +--------------------------> prev |
| 3501 | * |
| 3502 | */ |
| 3503 | hdr_beg = ctx.value.ptr; |
| 3504 | hdr_end = hdr_beg + ctx.value.len; |
| 3505 | for (prev = hdr_beg; prev < hdr_end; prev = next) { |
| 3506 | /* Iterate through all cookies on this line */ |
| 3507 | |
| 3508 | /* find att_beg */ |
| 3509 | att_beg = prev; |
| 3510 | if (prev > hdr_beg) |
| 3511 | att_beg++; |
| 3512 | |
| 3513 | while (att_beg < hdr_end && HTTP_IS_SPHT(*att_beg)) |
| 3514 | att_beg++; |
| 3515 | |
| 3516 | /* find att_end : this is the first character after the last non |
| 3517 | * space before the equal. It may be equal to hdr_end. |
| 3518 | */ |
| 3519 | equal = att_end = att_beg; |
| 3520 | while (equal < hdr_end) { |
| 3521 | if (*equal == '=' || *equal == ',' || *equal == ';') |
| 3522 | break; |
| 3523 | if (HTTP_IS_SPHT(*equal++)) |
| 3524 | continue; |
| 3525 | att_end = equal; |
| 3526 | } |
| 3527 | |
| 3528 | /* here, <equal> points to '=', a delimitor or the end. <att_end> |
| 3529 | * is between <att_beg> and <equal>, both may be identical. |
| 3530 | */ |
| 3531 | /* look for end of cookie if there is an equal sign */ |
| 3532 | if (equal < hdr_end && *equal == '=') { |
| 3533 | /* look for the beginning of the value */ |
| 3534 | val_beg = equal + 1; |
| 3535 | while (val_beg < hdr_end && HTTP_IS_SPHT(*val_beg)) |
| 3536 | val_beg++; |
| 3537 | |
| 3538 | /* find the end of the value, respecting quotes */ |
| 3539 | next = http_find_cookie_value_end(val_beg, hdr_end); |
| 3540 | |
| 3541 | /* make val_end point to the first white space or delimitor after the value */ |
| 3542 | val_end = next; |
| 3543 | while (val_end > val_beg && HTTP_IS_SPHT(*(val_end - 1))) |
| 3544 | val_end--; |
| 3545 | } |
| 3546 | else |
| 3547 | val_beg = val_end = next = equal; |
| 3548 | |
| 3549 | /* We have nothing to do with attributes beginning with |
| 3550 | * '$'. However, they will automatically be removed if a |
| 3551 | * header before them is removed, since they're supposed |
| 3552 | * to be linked together. |
| 3553 | */ |
| 3554 | if (*att_beg == '$') |
| 3555 | continue; |
| 3556 | |
| 3557 | /* Ignore cookies with no equal sign */ |
| 3558 | if (equal == next) { |
| 3559 | /* This is not our cookie, so we must preserve it. But if we already |
| 3560 | * scheduled another cookie for removal, we cannot remove the |
| 3561 | * complete header, but we can remove the previous block itself. |
| 3562 | */ |
| 3563 | preserve_hdr = 1; |
| 3564 | if (del_from != NULL) { |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 3565 | 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] | 3566 | val_end += delta; |
| 3567 | next += delta; |
| 3568 | hdr_end += delta; |
| 3569 | prev = del_from; |
| 3570 | del_from = NULL; |
| 3571 | } |
| 3572 | continue; |
| 3573 | } |
| 3574 | |
| 3575 | /* if there are spaces around the equal sign, we need to |
| 3576 | * strip them otherwise we'll get trouble for cookie captures, |
| 3577 | * or even for rewrites. Since this happens extremely rarely, |
| 3578 | * it does not hurt performance. |
| 3579 | */ |
| 3580 | if (unlikely(att_end != equal || val_beg > equal + 1)) { |
| 3581 | int stripped_before = 0; |
| 3582 | int stripped_after = 0; |
| 3583 | |
| 3584 | if (att_end != equal) { |
| 3585 | memmove(att_end, equal, hdr_end - equal); |
| 3586 | stripped_before = (att_end - equal); |
| 3587 | equal += stripped_before; |
| 3588 | val_beg += stripped_before; |
| 3589 | } |
| 3590 | |
| 3591 | if (val_beg > equal + 1) { |
| 3592 | memmove(equal + 1, val_beg, hdr_end + stripped_before - val_beg); |
| 3593 | stripped_after = (equal + 1) - val_beg; |
| 3594 | val_beg += stripped_after; |
| 3595 | stripped_before += stripped_after; |
| 3596 | } |
| 3597 | |
| 3598 | val_end += stripped_before; |
| 3599 | next += stripped_before; |
| 3600 | hdr_end += stripped_before; |
| 3601 | } |
| 3602 | /* now everything is as on the diagram above */ |
| 3603 | |
| 3604 | /* First, let's see if we want to capture this cookie. We check |
| 3605 | * that we don't already have a client side cookie, because we |
| 3606 | * can only capture one. Also as an optimisation, we ignore |
| 3607 | * cookies shorter than the declared name. |
| 3608 | */ |
| 3609 | if (sess->fe->capture_name != NULL && txn->cli_cookie == NULL && |
| 3610 | (val_end - att_beg >= sess->fe->capture_namelen) && |
| 3611 | memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) { |
| 3612 | int log_len = val_end - att_beg; |
| 3613 | |
| 3614 | if ((txn->cli_cookie = pool_alloc(pool_head_capture)) == NULL) { |
| 3615 | ha_alert("HTTP logging : out of memory.\n"); |
| 3616 | } else { |
| 3617 | if (log_len > sess->fe->capture_len) |
| 3618 | log_len = sess->fe->capture_len; |
| 3619 | memcpy(txn->cli_cookie, att_beg, log_len); |
| 3620 | txn->cli_cookie[log_len] = 0; |
| 3621 | } |
| 3622 | } |
| 3623 | |
| 3624 | /* Persistence cookies in passive, rewrite or insert mode have the |
| 3625 | * following form : |
| 3626 | * |
| 3627 | * Cookie: NAME=SRV[|<lastseen>[|<firstseen>]] |
| 3628 | * |
| 3629 | * For cookies in prefix mode, the form is : |
| 3630 | * |
| 3631 | * Cookie: NAME=SRV~VALUE |
| 3632 | */ |
| 3633 | if ((att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) && |
| 3634 | (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) { |
| 3635 | struct server *srv = s->be->srv; |
| 3636 | char *delim; |
| 3637 | |
| 3638 | /* if we're in cookie prefix mode, we'll search the delimitor so that we |
| 3639 | * have the server ID between val_beg and delim, and the original cookie between |
| 3640 | * delim+1 and val_end. Otherwise, delim==val_end : |
| 3641 | * |
| 3642 | * hdr_beg |
| 3643 | * | |
| 3644 | * v |
| 3645 | * NAME=SRV; # in all but prefix modes |
| 3646 | * NAME=SRV~OPAQUE ; # in prefix mode |
| 3647 | * || || | |+-> next |
| 3648 | * || || | +--> val_end |
| 3649 | * || || +---------> delim |
| 3650 | * || |+------------> val_beg |
| 3651 | * || +-------------> att_end = equal |
| 3652 | * |+-----------------> att_beg |
| 3653 | * +------------------> prev |
| 3654 | * |
| 3655 | */ |
| 3656 | if (s->be->ck_opts & PR_CK_PFX) { |
| 3657 | for (delim = val_beg; delim < val_end; delim++) |
| 3658 | if (*delim == COOKIE_DELIM) |
| 3659 | break; |
| 3660 | } |
| 3661 | else { |
| 3662 | char *vbar1; |
| 3663 | delim = val_end; |
| 3664 | /* Now check if the cookie contains a date field, which would |
| 3665 | * appear after a vertical bar ('|') just after the server name |
| 3666 | * and before the delimiter. |
| 3667 | */ |
| 3668 | vbar1 = memchr(val_beg, COOKIE_DELIM_DATE, val_end - val_beg); |
| 3669 | if (vbar1) { |
| 3670 | /* OK, so left of the bar is the server's cookie and |
| 3671 | * right is the last seen date. It is a base64 encoded |
| 3672 | * 30-bit value representing the UNIX date since the |
| 3673 | * epoch in 4-second quantities. |
| 3674 | */ |
| 3675 | int val; |
| 3676 | delim = vbar1++; |
| 3677 | if (val_end - vbar1 >= 5) { |
| 3678 | val = b64tos30(vbar1); |
| 3679 | if (val > 0) |
| 3680 | txn->cookie_last_date = val << 2; |
| 3681 | } |
| 3682 | /* look for a second vertical bar */ |
| 3683 | vbar1 = memchr(vbar1, COOKIE_DELIM_DATE, val_end - vbar1); |
| 3684 | if (vbar1 && (val_end - vbar1 > 5)) { |
| 3685 | val = b64tos30(vbar1 + 1); |
| 3686 | if (val > 0) |
| 3687 | txn->cookie_first_date = val << 2; |
| 3688 | } |
| 3689 | } |
| 3690 | } |
| 3691 | |
| 3692 | /* if the cookie has an expiration date and the proxy wants to check |
| 3693 | * it, then we do that now. We first check if the cookie is too old, |
| 3694 | * then only if it has expired. We detect strict overflow because the |
| 3695 | * time resolution here is not great (4 seconds). Cookies with dates |
| 3696 | * in the future are ignored if their offset is beyond one day. This |
| 3697 | * allows an admin to fix timezone issues without expiring everyone |
| 3698 | * and at the same time avoids keeping unwanted side effects for too |
| 3699 | * long. |
| 3700 | */ |
| 3701 | if (txn->cookie_first_date && s->be->cookie_maxlife && |
| 3702 | (((signed)(date.tv_sec - txn->cookie_first_date) > (signed)s->be->cookie_maxlife) || |
| 3703 | ((signed)(txn->cookie_first_date - date.tv_sec) > 86400))) { |
| 3704 | txn->flags &= ~TX_CK_MASK; |
| 3705 | txn->flags |= TX_CK_OLD; |
| 3706 | delim = val_beg; // let's pretend we have not found the cookie |
| 3707 | txn->cookie_first_date = 0; |
| 3708 | txn->cookie_last_date = 0; |
| 3709 | } |
| 3710 | else if (txn->cookie_last_date && s->be->cookie_maxidle && |
| 3711 | (((signed)(date.tv_sec - txn->cookie_last_date) > (signed)s->be->cookie_maxidle) || |
| 3712 | ((signed)(txn->cookie_last_date - date.tv_sec) > 86400))) { |
| 3713 | txn->flags &= ~TX_CK_MASK; |
| 3714 | txn->flags |= TX_CK_EXPIRED; |
| 3715 | delim = val_beg; // let's pretend we have not found the cookie |
| 3716 | txn->cookie_first_date = 0; |
| 3717 | txn->cookie_last_date = 0; |
| 3718 | } |
| 3719 | |
| 3720 | /* Here, we'll look for the first running server which supports the cookie. |
| 3721 | * This allows to share a same cookie between several servers, for example |
| 3722 | * to dedicate backup servers to specific servers only. |
| 3723 | * However, to prevent clients from sticking to cookie-less backup server |
| 3724 | * when they have incidentely learned an empty cookie, we simply ignore |
| 3725 | * empty cookies and mark them as invalid. |
| 3726 | * The same behaviour is applied when persistence must be ignored. |
| 3727 | */ |
| 3728 | if ((delim == val_beg) || (s->flags & (SF_IGNORE_PRST | SF_ASSIGNED))) |
| 3729 | srv = NULL; |
| 3730 | |
| 3731 | while (srv) { |
| 3732 | if (srv->cookie && (srv->cklen == delim - val_beg) && |
| 3733 | !memcmp(val_beg, srv->cookie, delim - val_beg)) { |
| 3734 | if ((srv->cur_state != SRV_ST_STOPPED) || |
| 3735 | (s->be->options & PR_O_PERSIST) || |
| 3736 | (s->flags & SF_FORCE_PRST)) { |
| 3737 | /* we found the server and we can use it */ |
| 3738 | txn->flags &= ~TX_CK_MASK; |
| 3739 | txn->flags |= (srv->cur_state != SRV_ST_STOPPED) ? TX_CK_VALID : TX_CK_DOWN; |
| 3740 | s->flags |= SF_DIRECT | SF_ASSIGNED; |
| 3741 | s->target = &srv->obj_type; |
| 3742 | break; |
| 3743 | } else { |
| 3744 | /* we found a server, but it's down, |
| 3745 | * mark it as such and go on in case |
| 3746 | * another one is available. |
| 3747 | */ |
| 3748 | txn->flags &= ~TX_CK_MASK; |
| 3749 | txn->flags |= TX_CK_DOWN; |
| 3750 | } |
| 3751 | } |
| 3752 | srv = srv->next; |
| 3753 | } |
| 3754 | |
| 3755 | if (!srv && !(txn->flags & (TX_CK_DOWN|TX_CK_EXPIRED|TX_CK_OLD))) { |
| 3756 | /* no server matched this cookie or we deliberately skipped it */ |
| 3757 | txn->flags &= ~TX_CK_MASK; |
| 3758 | if ((s->flags & (SF_IGNORE_PRST | SF_ASSIGNED))) |
| 3759 | txn->flags |= TX_CK_UNUSED; |
| 3760 | else |
| 3761 | txn->flags |= TX_CK_INVALID; |
| 3762 | } |
| 3763 | |
| 3764 | /* depending on the cookie mode, we may have to either : |
| 3765 | * - delete the complete cookie if we're in insert+indirect mode, so that |
| 3766 | * the server never sees it ; |
| 3767 | * - 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] | 3768 | * application cookie so that it does not get accidentally removed later, |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3769 | * if we're in cookie prefix mode |
| 3770 | */ |
| 3771 | if ((s->be->ck_opts & PR_CK_PFX) && (delim != val_end)) { |
| 3772 | int delta; /* negative */ |
| 3773 | |
| 3774 | memmove(val_beg, delim + 1, hdr_end - (delim + 1)); |
| 3775 | delta = val_beg - (delim + 1); |
| 3776 | val_end += delta; |
| 3777 | next += delta; |
| 3778 | hdr_end += delta; |
| 3779 | del_from = NULL; |
| 3780 | preserve_hdr = 1; /* we want to keep this cookie */ |
| 3781 | } |
| 3782 | else if (del_from == NULL && |
| 3783 | (s->be->ck_opts & (PR_CK_INS | PR_CK_IND)) == (PR_CK_INS | PR_CK_IND)) { |
| 3784 | del_from = prev; |
| 3785 | } |
| 3786 | } |
| 3787 | else { |
| 3788 | /* This is not our cookie, so we must preserve it. But if we already |
| 3789 | * scheduled another cookie for removal, we cannot remove the |
| 3790 | * complete header, but we can remove the previous block itself. |
| 3791 | */ |
| 3792 | preserve_hdr = 1; |
| 3793 | |
| 3794 | if (del_from != NULL) { |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 3795 | 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] | 3796 | if (att_beg >= del_from) |
| 3797 | att_beg += delta; |
| 3798 | if (att_end >= del_from) |
| 3799 | att_end += delta; |
| 3800 | val_beg += delta; |
| 3801 | val_end += delta; |
| 3802 | next += delta; |
| 3803 | hdr_end += delta; |
| 3804 | prev = del_from; |
| 3805 | del_from = NULL; |
| 3806 | } |
| 3807 | } |
| 3808 | |
| 3809 | /* continue with next cookie on this header line */ |
| 3810 | att_beg = next; |
| 3811 | } /* for each cookie */ |
| 3812 | |
| 3813 | |
| 3814 | /* There are no more cookies on this line. |
| 3815 | * We may still have one (or several) marked for deletion at the |
| 3816 | * end of the line. We must do this now in two ways : |
| 3817 | * - if some cookies must be preserved, we only delete from the |
| 3818 | * mark to the end of line ; |
| 3819 | * - if nothing needs to be preserved, simply delete the whole header |
| 3820 | */ |
| 3821 | if (del_from) { |
| 3822 | hdr_end = (preserve_hdr ? del_from : hdr_beg); |
| 3823 | } |
| 3824 | if ((hdr_end - hdr_beg) != ctx.value.len) { |
Christopher Faulet | 3e2638e | 2019-06-18 09:49:16 +0200 | [diff] [blame] | 3825 | if (hdr_beg != hdr_end) |
| 3826 | htx_change_blk_value_len(htx, ctx.blk, hdr_end - hdr_beg); |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3827 | else |
| 3828 | http_remove_header(htx, &ctx); |
| 3829 | } |
| 3830 | } /* for each "Cookie header */ |
| 3831 | } |
| 3832 | |
| 3833 | /* |
| 3834 | * Manage server-side cookies. It can impact performance by about 2% so it is |
| 3835 | * desirable to call it only when needed. This function is also used when we |
| 3836 | * just need to know if there is a cookie (eg: for check-cache). |
| 3837 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 3838 | 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] | 3839 | { |
| 3840 | struct session *sess = s->sess; |
| 3841 | struct http_txn *txn = s->txn; |
| 3842 | struct htx *htx; |
| 3843 | struct http_hdr_ctx ctx; |
| 3844 | struct server *srv; |
| 3845 | char *hdr_beg, *hdr_end; |
| 3846 | char *prev, *att_beg, *att_end, *equal, *val_beg, *val_end, *next; |
Willy Tarreau | 6f7a02a | 2019-04-15 21:49:49 +0200 | [diff] [blame] | 3847 | int is_cookie2 = 0; |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3848 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 3849 | htx = htxbuf(&res->buf); |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 3850 | |
| 3851 | ctx.blk = NULL; |
| 3852 | while (1) { |
| 3853 | if (!http_find_header(htx, ist("Set-Cookie"), &ctx, 1)) { |
| 3854 | if (!http_find_header(htx, ist("Set-Cookie2"), &ctx, 1)) |
| 3855 | break; |
| 3856 | is_cookie2 = 1; |
| 3857 | } |
| 3858 | |
| 3859 | /* OK, right now we know we have a Set-Cookie* at hdr_beg, and |
| 3860 | * <prev> points to the colon. |
| 3861 | */ |
| 3862 | txn->flags |= TX_SCK_PRESENT; |
| 3863 | |
| 3864 | /* Maybe we only wanted to see if there was a Set-Cookie (eg: |
| 3865 | * check-cache is enabled) and we are not interested in checking |
| 3866 | * them. Warning, the cookie capture is declared in the frontend. |
| 3867 | */ |
| 3868 | if (s->be->cookie_name == NULL && sess->fe->capture_name == NULL) |
| 3869 | break; |
| 3870 | |
| 3871 | /* OK so now we know we have to process this response cookie. |
| 3872 | * The format of the Set-Cookie header is slightly different |
| 3873 | * from the format of the Cookie header in that it does not |
| 3874 | * support the comma as a cookie delimiter (thus the header |
| 3875 | * cannot be folded) because the Expires attribute described in |
| 3876 | * the original Netscape's spec may contain an unquoted date |
| 3877 | * with a comma inside. We have to live with this because |
| 3878 | * many browsers don't support Max-Age and some browsers don't |
| 3879 | * support quoted strings. However the Set-Cookie2 header is |
| 3880 | * clean. |
| 3881 | * |
| 3882 | * We have to keep multiple pointers in order to support cookie |
| 3883 | * removal at the beginning, middle or end of header without |
| 3884 | * corrupting the header (in case of set-cookie2). A special |
| 3885 | * pointer, <scav> points to the beginning of the set-cookie-av |
| 3886 | * fields after the first semi-colon. The <next> pointer points |
| 3887 | * either to the end of line (set-cookie) or next unquoted comma |
| 3888 | * (set-cookie2). All of these headers are valid : |
| 3889 | * |
| 3890 | * hdr_beg hdr_end |
| 3891 | * | | |
| 3892 | * v | |
| 3893 | * NAME1 = VALUE 1 ; Secure; Path="/" | |
| 3894 | * NAME=VALUE; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT v |
| 3895 | * NAME = VALUE ; Secure; Expires=Thu, 01-Jan-1970 00:00:01 GMT |
| 3896 | * NAME1 = VALUE 1 ; Max-Age=0, NAME2=VALUE2; Discard |
| 3897 | * | | | | | | | | |
| 3898 | * | | | | | | | +-> next |
| 3899 | * | | | | | | +------------> scav |
| 3900 | * | | | | | +--------------> val_end |
| 3901 | * | | | | +--------------------> val_beg |
| 3902 | * | | | +----------------------> equal |
| 3903 | * | | +------------------------> att_end |
| 3904 | * | +----------------------------> att_beg |
| 3905 | * +------------------------------> prev |
| 3906 | * -------------------------------> hdr_beg |
| 3907 | */ |
| 3908 | hdr_beg = ctx.value.ptr; |
| 3909 | hdr_end = hdr_beg + ctx.value.len; |
| 3910 | for (prev = hdr_beg; prev < hdr_end; prev = next) { |
| 3911 | |
| 3912 | /* Iterate through all cookies on this line */ |
| 3913 | |
| 3914 | /* find att_beg */ |
| 3915 | att_beg = prev; |
| 3916 | if (prev > hdr_beg) |
| 3917 | att_beg++; |
| 3918 | |
| 3919 | while (att_beg < hdr_end && HTTP_IS_SPHT(*att_beg)) |
| 3920 | att_beg++; |
| 3921 | |
| 3922 | /* find att_end : this is the first character after the last non |
| 3923 | * space before the equal. It may be equal to hdr_end. |
| 3924 | */ |
| 3925 | equal = att_end = att_beg; |
| 3926 | |
| 3927 | while (equal < hdr_end) { |
| 3928 | if (*equal == '=' || *equal == ';' || (is_cookie2 && *equal == ',')) |
| 3929 | break; |
| 3930 | if (HTTP_IS_SPHT(*equal++)) |
| 3931 | continue; |
| 3932 | att_end = equal; |
| 3933 | } |
| 3934 | |
| 3935 | /* here, <equal> points to '=', a delimitor or the end. <att_end> |
| 3936 | * is between <att_beg> and <equal>, both may be identical. |
| 3937 | */ |
| 3938 | |
| 3939 | /* look for end of cookie if there is an equal sign */ |
| 3940 | if (equal < hdr_end && *equal == '=') { |
| 3941 | /* look for the beginning of the value */ |
| 3942 | val_beg = equal + 1; |
| 3943 | while (val_beg < hdr_end && HTTP_IS_SPHT(*val_beg)) |
| 3944 | val_beg++; |
| 3945 | |
| 3946 | /* find the end of the value, respecting quotes */ |
| 3947 | next = http_find_cookie_value_end(val_beg, hdr_end); |
| 3948 | |
| 3949 | /* make val_end point to the first white space or delimitor after the value */ |
| 3950 | val_end = next; |
| 3951 | while (val_end > val_beg && HTTP_IS_SPHT(*(val_end - 1))) |
| 3952 | val_end--; |
| 3953 | } |
| 3954 | else { |
| 3955 | /* <equal> points to next comma, semi-colon or EOL */ |
| 3956 | val_beg = val_end = next = equal; |
| 3957 | } |
| 3958 | |
| 3959 | if (next < hdr_end) { |
| 3960 | /* Set-Cookie2 supports multiple cookies, and <next> points to |
| 3961 | * a colon or semi-colon before the end. So skip all attr-value |
| 3962 | * pairs and look for the next comma. For Set-Cookie, since |
| 3963 | * commas are permitted in values, skip to the end. |
| 3964 | */ |
| 3965 | if (is_cookie2) |
| 3966 | next = http_find_hdr_value_end(next, hdr_end); |
| 3967 | else |
| 3968 | next = hdr_end; |
| 3969 | } |
| 3970 | |
| 3971 | /* Now everything is as on the diagram above */ |
| 3972 | |
| 3973 | /* Ignore cookies with no equal sign */ |
| 3974 | if (equal == val_end) |
| 3975 | continue; |
| 3976 | |
| 3977 | /* If there are spaces around the equal sign, we need to |
| 3978 | * strip them otherwise we'll get trouble for cookie captures, |
| 3979 | * or even for rewrites. Since this happens extremely rarely, |
| 3980 | * it does not hurt performance. |
| 3981 | */ |
| 3982 | if (unlikely(att_end != equal || val_beg > equal + 1)) { |
| 3983 | int stripped_before = 0; |
| 3984 | int stripped_after = 0; |
| 3985 | |
| 3986 | if (att_end != equal) { |
| 3987 | memmove(att_end, equal, hdr_end - equal); |
| 3988 | stripped_before = (att_end - equal); |
| 3989 | equal += stripped_before; |
| 3990 | val_beg += stripped_before; |
| 3991 | } |
| 3992 | |
| 3993 | if (val_beg > equal + 1) { |
| 3994 | memmove(equal + 1, val_beg, hdr_end + stripped_before - val_beg); |
| 3995 | stripped_after = (equal + 1) - val_beg; |
| 3996 | val_beg += stripped_after; |
| 3997 | stripped_before += stripped_after; |
| 3998 | } |
| 3999 | |
| 4000 | val_end += stripped_before; |
| 4001 | next += stripped_before; |
| 4002 | hdr_end += stripped_before; |
| 4003 | |
Christopher Faulet | 3e2638e | 2019-06-18 09:49:16 +0200 | [diff] [blame] | 4004 | htx_change_blk_value_len(htx, ctx.blk, hdr_end - hdr_beg); |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 4005 | ctx.value.len = hdr_end - hdr_beg; |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 4006 | } |
| 4007 | |
| 4008 | /* First, let's see if we want to capture this cookie. We check |
| 4009 | * that we don't already have a server side cookie, because we |
| 4010 | * can only capture one. Also as an optimisation, we ignore |
| 4011 | * cookies shorter than the declared name. |
| 4012 | */ |
| 4013 | if (sess->fe->capture_name != NULL && |
| 4014 | txn->srv_cookie == NULL && |
| 4015 | (val_end - att_beg >= sess->fe->capture_namelen) && |
| 4016 | memcmp(att_beg, sess->fe->capture_name, sess->fe->capture_namelen) == 0) { |
| 4017 | int log_len = val_end - att_beg; |
| 4018 | if ((txn->srv_cookie = pool_alloc(pool_head_capture)) == NULL) { |
| 4019 | ha_alert("HTTP logging : out of memory.\n"); |
| 4020 | } |
| 4021 | else { |
| 4022 | if (log_len > sess->fe->capture_len) |
| 4023 | log_len = sess->fe->capture_len; |
| 4024 | memcpy(txn->srv_cookie, att_beg, log_len); |
| 4025 | txn->srv_cookie[log_len] = 0; |
| 4026 | } |
| 4027 | } |
| 4028 | |
| 4029 | srv = objt_server(s->target); |
| 4030 | /* now check if we need to process it for persistence */ |
| 4031 | if (!(s->flags & SF_IGNORE_PRST) && |
| 4032 | (att_end - att_beg == s->be->cookie_len) && (s->be->cookie_name != NULL) && |
| 4033 | (memcmp(att_beg, s->be->cookie_name, att_end - att_beg) == 0)) { |
| 4034 | /* assume passive cookie by default */ |
| 4035 | txn->flags &= ~TX_SCK_MASK; |
| 4036 | txn->flags |= TX_SCK_FOUND; |
| 4037 | |
| 4038 | /* If the cookie is in insert mode on a known server, we'll delete |
| 4039 | * this occurrence because we'll insert another one later. |
| 4040 | * We'll delete it too if the "indirect" option is set and we're in |
| 4041 | * a direct access. |
| 4042 | */ |
| 4043 | if (s->be->ck_opts & PR_CK_PSV) { |
| 4044 | /* The "preserve" flag was set, we don't want to touch the |
| 4045 | * server's cookie. |
| 4046 | */ |
| 4047 | } |
| 4048 | else if ((srv && (s->be->ck_opts & PR_CK_INS)) || |
| 4049 | ((s->flags & SF_DIRECT) && (s->be->ck_opts & PR_CK_IND))) { |
| 4050 | /* this cookie must be deleted */ |
| 4051 | if (prev == hdr_beg && next == hdr_end) { |
| 4052 | /* whole header */ |
| 4053 | http_remove_header(htx, &ctx); |
| 4054 | /* note: while both invalid now, <next> and <hdr_end> |
| 4055 | * are still equal, so the for() will stop as expected. |
| 4056 | */ |
| 4057 | } else { |
| 4058 | /* just remove the value */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4059 | int delta = http_del_hdr_value(hdr_beg, hdr_end, &prev, next); |
Christopher Faulet | fcda7c6 | 2018-10-24 11:56:22 +0200 | [diff] [blame] | 4060 | next = prev; |
| 4061 | hdr_end += delta; |
| 4062 | } |
| 4063 | txn->flags &= ~TX_SCK_MASK; |
| 4064 | txn->flags |= TX_SCK_DELETED; |
| 4065 | /* and go on with next cookie */ |
| 4066 | } |
| 4067 | else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_RW)) { |
| 4068 | /* replace bytes val_beg->val_end with the cookie name associated |
| 4069 | * with this server since we know it. |
| 4070 | */ |
| 4071 | int sliding, delta; |
| 4072 | |
| 4073 | ctx.value = ist2(val_beg, val_end - val_beg); |
| 4074 | ctx.lws_before = ctx.lws_after = 0; |
| 4075 | http_replace_header_value(htx, &ctx, ist2(srv->cookie, srv->cklen)); |
| 4076 | delta = srv->cklen - (val_end - val_beg); |
| 4077 | sliding = (ctx.value.ptr - val_beg); |
| 4078 | hdr_beg += sliding; |
| 4079 | val_beg += sliding; |
| 4080 | next += sliding + delta; |
| 4081 | hdr_end += sliding + delta; |
| 4082 | |
| 4083 | txn->flags &= ~TX_SCK_MASK; |
| 4084 | txn->flags |= TX_SCK_REPLACED; |
| 4085 | } |
| 4086 | else if (srv && srv->cookie && (s->be->ck_opts & PR_CK_PFX)) { |
| 4087 | /* insert the cookie name associated with this server |
| 4088 | * before existing cookie, and insert a delimiter between them.. |
| 4089 | */ |
| 4090 | int sliding, delta; |
| 4091 | ctx.value = ist2(val_beg, 0); |
| 4092 | ctx.lws_before = ctx.lws_after = 0; |
| 4093 | http_replace_header_value(htx, &ctx, ist2(srv->cookie, srv->cklen + 1)); |
| 4094 | delta = srv->cklen + 1; |
| 4095 | sliding = (ctx.value.ptr - val_beg); |
| 4096 | hdr_beg += sliding; |
| 4097 | val_beg += sliding; |
| 4098 | next += sliding + delta; |
| 4099 | hdr_end += sliding + delta; |
| 4100 | |
| 4101 | val_beg[srv->cklen] = COOKIE_DELIM; |
| 4102 | txn->flags &= ~TX_SCK_MASK; |
| 4103 | txn->flags |= TX_SCK_REPLACED; |
| 4104 | } |
| 4105 | } |
| 4106 | /* that's done for this cookie, check the next one on the same |
| 4107 | * line when next != hdr_end (only if is_cookie2). |
| 4108 | */ |
| 4109 | } |
| 4110 | } |
| 4111 | } |
| 4112 | |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 4113 | /* |
| 4114 | * Parses the Cache-Control and Pragma request header fields to determine if |
| 4115 | * the request may be served from the cache and/or if it is cacheable. Updates |
| 4116 | * s->txn->flags. |
| 4117 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4118 | void http_check_request_for_cacheability(struct stream *s, struct channel *req) |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 4119 | { |
| 4120 | struct http_txn *txn = s->txn; |
| 4121 | struct htx *htx; |
| 4122 | int32_t pos; |
| 4123 | int pragma_found, cc_found, i; |
| 4124 | |
| 4125 | if ((txn->flags & (TX_CACHEABLE|TX_CACHE_IGNORE)) == TX_CACHE_IGNORE) |
| 4126 | return; /* nothing more to do here */ |
| 4127 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 4128 | htx = htxbuf(&req->buf); |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 4129 | pragma_found = cc_found = 0; |
Christopher Faulet | a3f1550 | 2019-05-13 15:27:23 +0200 | [diff] [blame] | 4130 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 4131 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 4132 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 4133 | struct ist n, v; |
| 4134 | |
| 4135 | if (type == HTX_BLK_EOH) |
| 4136 | break; |
| 4137 | if (type != HTX_BLK_HDR) |
| 4138 | continue; |
| 4139 | |
| 4140 | n = htx_get_blk_name(htx, blk); |
| 4141 | v = htx_get_blk_value(htx, blk); |
| 4142 | |
Willy Tarreau | 2e754bf | 2018-12-07 11:38:03 +0100 | [diff] [blame] | 4143 | if (isteq(n, ist("pragma"))) { |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 4144 | if (v.len >= 8 && strncasecmp(v.ptr, "no-cache", 8) == 0) { |
| 4145 | pragma_found = 1; |
| 4146 | continue; |
| 4147 | } |
| 4148 | } |
| 4149 | |
| 4150 | /* Don't use the cache and don't try to store if we found the |
| 4151 | * Authorization header */ |
Willy Tarreau | 2e754bf | 2018-12-07 11:38:03 +0100 | [diff] [blame] | 4152 | if (isteq(n, ist("authorization"))) { |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 4153 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
| 4154 | txn->flags |= TX_CACHE_IGNORE; |
| 4155 | continue; |
| 4156 | } |
| 4157 | |
Willy Tarreau | 2e754bf | 2018-12-07 11:38:03 +0100 | [diff] [blame] | 4158 | if (!isteq(n, ist("cache-control"))) |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 4159 | continue; |
| 4160 | |
| 4161 | /* OK, right now we know we have a cache-control header */ |
| 4162 | cc_found = 1; |
| 4163 | if (!v.len) /* no info */ |
| 4164 | continue; |
| 4165 | |
| 4166 | i = 0; |
| 4167 | while (i < v.len && *(v.ptr+i) != '=' && *(v.ptr+i) != ',' && |
| 4168 | !isspace((unsigned char)*(v.ptr+i))) |
| 4169 | i++; |
| 4170 | |
| 4171 | /* we have a complete value between v.ptr and (v.ptr+i). We don't check the |
| 4172 | * values after max-age, max-stale nor min-fresh, we simply don't |
| 4173 | * use the cache when they're specified. |
| 4174 | */ |
| 4175 | if (((i == 7) && strncasecmp(v.ptr, "max-age", 7) == 0) || |
| 4176 | ((i == 8) && strncasecmp(v.ptr, "no-cache", 8) == 0) || |
| 4177 | ((i == 9) && strncasecmp(v.ptr, "max-stale", 9) == 0) || |
| 4178 | ((i == 9) && strncasecmp(v.ptr, "min-fresh", 9) == 0)) { |
| 4179 | txn->flags |= TX_CACHE_IGNORE; |
| 4180 | continue; |
| 4181 | } |
| 4182 | |
| 4183 | if ((i == 8) && strncasecmp(v.ptr, "no-store", 8) == 0) { |
| 4184 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
| 4185 | continue; |
| 4186 | } |
| 4187 | } |
| 4188 | |
| 4189 | /* RFC7234#5.4: |
| 4190 | * When the Cache-Control header field is also present and |
| 4191 | * understood in a request, Pragma is ignored. |
| 4192 | * When the Cache-Control header field is not present in a |
| 4193 | * request, caches MUST consider the no-cache request |
| 4194 | * pragma-directive as having the same effect as if |
| 4195 | * "Cache-Control: no-cache" were present. |
| 4196 | */ |
| 4197 | if (!cc_found && pragma_found) |
| 4198 | txn->flags |= TX_CACHE_IGNORE; |
| 4199 | } |
| 4200 | |
| 4201 | /* |
| 4202 | * Check if response is cacheable or not. Updates s->txn->flags. |
| 4203 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4204 | void http_check_response_for_cacheability(struct stream *s, struct channel *res) |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 4205 | { |
| 4206 | struct http_txn *txn = s->txn; |
| 4207 | struct htx *htx; |
| 4208 | int32_t pos; |
| 4209 | int i; |
| 4210 | |
| 4211 | if (txn->status < 200) { |
| 4212 | /* do not try to cache interim responses! */ |
| 4213 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
| 4214 | return; |
| 4215 | } |
| 4216 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 4217 | htx = htxbuf(&res->buf); |
Christopher Faulet | a3f1550 | 2019-05-13 15:27:23 +0200 | [diff] [blame] | 4218 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 4219 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 4220 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 4221 | struct ist n, v; |
| 4222 | |
| 4223 | if (type == HTX_BLK_EOH) |
| 4224 | break; |
| 4225 | if (type != HTX_BLK_HDR) |
| 4226 | continue; |
| 4227 | |
| 4228 | n = htx_get_blk_name(htx, blk); |
| 4229 | v = htx_get_blk_value(htx, blk); |
| 4230 | |
Willy Tarreau | 2e754bf | 2018-12-07 11:38:03 +0100 | [diff] [blame] | 4231 | if (isteq(n, ist("pragma"))) { |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 4232 | if ((v.len >= 8) && strncasecmp(v.ptr, "no-cache", 8) == 0) { |
| 4233 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
| 4234 | return; |
| 4235 | } |
| 4236 | } |
| 4237 | |
Willy Tarreau | 2e754bf | 2018-12-07 11:38:03 +0100 | [diff] [blame] | 4238 | if (!isteq(n, ist("cache-control"))) |
Christopher Faulet | 25a02f6 | 2018-10-24 12:00:25 +0200 | [diff] [blame] | 4239 | continue; |
| 4240 | |
| 4241 | /* OK, right now we know we have a cache-control header */ |
| 4242 | if (!v.len) /* no info */ |
| 4243 | continue; |
| 4244 | |
| 4245 | i = 0; |
| 4246 | while (i < v.len && *(v.ptr+i) != '=' && *(v.ptr+i) != ',' && |
| 4247 | !isspace((unsigned char)*(v.ptr+i))) |
| 4248 | i++; |
| 4249 | |
| 4250 | /* we have a complete value between v.ptr and (v.ptr+i) */ |
| 4251 | if (i < v.len && *(v.ptr + i) == '=') { |
| 4252 | if (((v.len - i) > 1 && (i == 7) && strncasecmp(v.ptr, "max-age=0", 9) == 0) || |
| 4253 | ((v.len - i) > 1 && (i == 8) && strncasecmp(v.ptr, "s-maxage=0", 10) == 0)) { |
| 4254 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
| 4255 | continue; |
| 4256 | } |
| 4257 | |
| 4258 | /* we have something of the form no-cache="set-cookie" */ |
| 4259 | if ((v.len >= 21) && |
| 4260 | strncasecmp(v.ptr, "no-cache=\"set-cookie", 20) == 0 |
| 4261 | && (*(v.ptr + 20) == '"' || *(v.ptr + 20 ) == ',')) |
| 4262 | txn->flags &= ~TX_CACHE_COOK; |
| 4263 | continue; |
| 4264 | } |
| 4265 | |
| 4266 | /* OK, so we know that either p2 points to the end of string or to a comma */ |
| 4267 | if (((i == 7) && strncasecmp(v.ptr, "private", 7) == 0) || |
| 4268 | ((i == 8) && strncasecmp(v.ptr, "no-cache", 8) == 0) || |
| 4269 | ((i == 8) && strncasecmp(v.ptr, "no-store", 8) == 0)) { |
| 4270 | txn->flags &= ~TX_CACHEABLE & ~TX_CACHE_COOK; |
| 4271 | return; |
| 4272 | } |
| 4273 | |
| 4274 | if ((i == 6) && strncasecmp(v.ptr, "public", 6) == 0) { |
| 4275 | txn->flags |= TX_CACHEABLE | TX_CACHE_COOK; |
| 4276 | continue; |
| 4277 | } |
| 4278 | } |
| 4279 | } |
| 4280 | |
Christopher Faulet | 64159df | 2018-10-24 21:15:35 +0200 | [diff] [blame] | 4281 | /* send a server's name with an outgoing request over an established connection. |
| 4282 | * Note: this function is designed to be called once the request has been |
| 4283 | * scheduled for being forwarded. This is the reason why the number of forwarded |
| 4284 | * bytes have to be adjusted. |
| 4285 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4286 | int http_send_name_header(struct stream *s, struct proxy *be, const char *srv_name) |
Christopher Faulet | 64159df | 2018-10-24 21:15:35 +0200 | [diff] [blame] | 4287 | { |
| 4288 | struct htx *htx; |
| 4289 | struct http_hdr_ctx ctx; |
| 4290 | struct ist hdr; |
| 4291 | uint32_t data; |
| 4292 | |
| 4293 | hdr = ist2(be->server_id_hdr_name, be->server_id_hdr_len); |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 4294 | htx = htxbuf(&s->req.buf); |
Christopher Faulet | 64159df | 2018-10-24 21:15:35 +0200 | [diff] [blame] | 4295 | data = htx->data; |
| 4296 | |
| 4297 | ctx.blk = NULL; |
| 4298 | while (http_find_header(htx, hdr, &ctx, 1)) |
| 4299 | http_remove_header(htx, &ctx); |
| 4300 | http_add_header(htx, hdr, ist2(srv_name, strlen(srv_name))); |
| 4301 | |
| 4302 | if (co_data(&s->req)) { |
| 4303 | if (data >= htx->data) |
| 4304 | c_rew(&s->req, data - htx->data); |
| 4305 | else |
| 4306 | c_adv(&s->req, htx->data - data); |
| 4307 | } |
| 4308 | return 0; |
| 4309 | } |
| 4310 | |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 4311 | /* |
| 4312 | * In a GET, HEAD or POST request, check if the requested URI matches the stats uri |
| 4313 | * for the current backend. |
| 4314 | * |
| 4315 | * It is assumed that the request is either a HEAD, GET, or POST and that the |
| 4316 | * uri_auth field is valid. |
| 4317 | * |
| 4318 | * Returns 1 if stats should be provided, otherwise 0. |
| 4319 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4320 | 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] | 4321 | { |
| 4322 | struct uri_auth *uri_auth = backend->uri_auth; |
| 4323 | struct htx *htx; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 4324 | struct htx_sl *sl; |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 4325 | struct ist uri; |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 4326 | |
| 4327 | if (!uri_auth) |
| 4328 | return 0; |
| 4329 | |
| 4330 | if (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD && txn->meth != HTTP_METH_POST) |
| 4331 | return 0; |
| 4332 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 4333 | htx = htxbuf(&s->req.buf); |
Christopher Faulet | 297fbb4 | 2019-05-13 14:41:27 +0200 | [diff] [blame] | 4334 | sl = http_get_stline(htx); |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 4335 | uri = htx_sl_req_uri(sl); |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 4336 | |
| 4337 | /* check URI size */ |
| 4338 | if (uri_auth->uri_len > uri.len) |
| 4339 | return 0; |
| 4340 | |
| 4341 | if (memcmp(uri.ptr, uri_auth->uri_prefix, uri_auth->uri_len) != 0) |
| 4342 | return 0; |
| 4343 | |
| 4344 | return 1; |
| 4345 | } |
| 4346 | |
| 4347 | /* This function prepares an applet to handle the stats. It can deal with the |
| 4348 | * "100-continue" expectation, check that admin rules are met for POST requests, |
| 4349 | * and program a response message if something was unexpected. It cannot fail |
| 4350 | * and always relies on the stats applet to complete the job. It does not touch |
| 4351 | * analysers nor counters, which are left to the caller. It does not touch |
| 4352 | * s->target which is supposed to already point to the stats applet. The caller |
| 4353 | * is expected to have already assigned an appctx to the stream. |
| 4354 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4355 | static int http_handle_stats(struct stream *s, struct channel *req) |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 4356 | { |
| 4357 | struct stats_admin_rule *stats_admin_rule; |
| 4358 | struct stream_interface *si = &s->si[1]; |
| 4359 | struct session *sess = s->sess; |
| 4360 | struct http_txn *txn = s->txn; |
| 4361 | struct http_msg *msg = &txn->req; |
| 4362 | struct uri_auth *uri_auth = s->be->uri_auth; |
| 4363 | const char *h, *lookup, *end; |
| 4364 | struct appctx *appctx; |
| 4365 | struct htx *htx; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 4366 | struct htx_sl *sl; |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 4367 | |
| 4368 | appctx = si_appctx(si); |
| 4369 | memset(&appctx->ctx.stats, 0, sizeof(appctx->ctx.stats)); |
| 4370 | appctx->st1 = appctx->st2 = 0; |
| 4371 | appctx->ctx.stats.st_code = STAT_STATUS_INIT; |
| 4372 | appctx->ctx.stats.flags |= STAT_FMT_HTML; /* assume HTML mode by default */ |
| 4373 | if ((msg->flags & HTTP_MSGF_VER_11) && (txn->meth != HTTP_METH_HEAD)) |
| 4374 | appctx->ctx.stats.flags |= STAT_CHUNKED; |
| 4375 | |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 4376 | htx = htxbuf(&req->buf); |
Christopher Faulet | 297fbb4 | 2019-05-13 14:41:27 +0200 | [diff] [blame] | 4377 | sl = http_get_stline(htx); |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 4378 | lookup = HTX_SL_REQ_UPTR(sl) + uri_auth->uri_len; |
| 4379 | end = HTX_SL_REQ_UPTR(sl) + HTX_SL_REQ_ULEN(sl); |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 4380 | |
| 4381 | for (h = lookup; h <= end - 3; h++) { |
| 4382 | if (memcmp(h, ";up", 3) == 0) { |
| 4383 | appctx->ctx.stats.flags |= STAT_HIDE_DOWN; |
| 4384 | break; |
| 4385 | } |
| 4386 | } |
| 4387 | |
| 4388 | if (uri_auth->refresh) { |
| 4389 | for (h = lookup; h <= end - 10; h++) { |
| 4390 | if (memcmp(h, ";norefresh", 10) == 0) { |
| 4391 | appctx->ctx.stats.flags |= STAT_NO_REFRESH; |
| 4392 | break; |
| 4393 | } |
| 4394 | } |
| 4395 | } |
| 4396 | |
| 4397 | for (h = lookup; h <= end - 4; h++) { |
| 4398 | if (memcmp(h, ";csv", 4) == 0) { |
| 4399 | appctx->ctx.stats.flags &= ~STAT_FMT_HTML; |
| 4400 | break; |
| 4401 | } |
| 4402 | } |
| 4403 | |
| 4404 | for (h = lookup; h <= end - 6; h++) { |
| 4405 | if (memcmp(h, ";typed", 6) == 0) { |
| 4406 | appctx->ctx.stats.flags &= ~STAT_FMT_HTML; |
| 4407 | appctx->ctx.stats.flags |= STAT_FMT_TYPED; |
| 4408 | break; |
| 4409 | } |
| 4410 | } |
| 4411 | |
| 4412 | for (h = lookup; h <= end - 8; h++) { |
| 4413 | if (memcmp(h, ";st=", 4) == 0) { |
| 4414 | int i; |
| 4415 | h += 4; |
| 4416 | appctx->ctx.stats.st_code = STAT_STATUS_UNKN; |
| 4417 | for (i = STAT_STATUS_INIT + 1; i < STAT_STATUS_SIZE; i++) { |
| 4418 | if (strncmp(stat_status_codes[i], h, 4) == 0) { |
| 4419 | appctx->ctx.stats.st_code = i; |
| 4420 | break; |
| 4421 | } |
| 4422 | } |
| 4423 | break; |
| 4424 | } |
| 4425 | } |
| 4426 | |
| 4427 | appctx->ctx.stats.scope_str = 0; |
| 4428 | appctx->ctx.stats.scope_len = 0; |
| 4429 | for (h = lookup; h <= end - 8; h++) { |
| 4430 | if (memcmp(h, STAT_SCOPE_INPUT_NAME "=", strlen(STAT_SCOPE_INPUT_NAME) + 1) == 0) { |
| 4431 | int itx = 0; |
| 4432 | const char *h2; |
| 4433 | char scope_txt[STAT_SCOPE_TXT_MAXLEN + 1]; |
| 4434 | const char *err; |
| 4435 | |
| 4436 | h += strlen(STAT_SCOPE_INPUT_NAME) + 1; |
| 4437 | h2 = h; |
Christopher Faulet | ed7a066 | 2019-01-14 11:07:34 +0100 | [diff] [blame] | 4438 | appctx->ctx.stats.scope_str = h2 - HTX_SL_REQ_UPTR(sl); |
| 4439 | while (h < end) { |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 4440 | if (*h == ';' || *h == '&' || *h == ' ') |
| 4441 | break; |
| 4442 | itx++; |
| 4443 | h++; |
| 4444 | } |
| 4445 | |
| 4446 | if (itx > STAT_SCOPE_TXT_MAXLEN) |
| 4447 | itx = STAT_SCOPE_TXT_MAXLEN; |
| 4448 | appctx->ctx.stats.scope_len = itx; |
| 4449 | |
| 4450 | /* scope_txt = search query, appctx->ctx.stats.scope_len is always <= STAT_SCOPE_TXT_MAXLEN */ |
| 4451 | memcpy(scope_txt, h2, itx); |
| 4452 | scope_txt[itx] = '\0'; |
| 4453 | err = invalid_char(scope_txt); |
| 4454 | if (err) { |
| 4455 | /* bad char in search text => clear scope */ |
| 4456 | appctx->ctx.stats.scope_str = 0; |
| 4457 | appctx->ctx.stats.scope_len = 0; |
| 4458 | } |
| 4459 | break; |
| 4460 | } |
| 4461 | } |
| 4462 | |
| 4463 | /* now check whether we have some admin rules for this request */ |
| 4464 | list_for_each_entry(stats_admin_rule, &uri_auth->admin_rules, list) { |
| 4465 | int ret = 1; |
| 4466 | |
| 4467 | if (stats_admin_rule->cond) { |
| 4468 | ret = acl_exec_cond(stats_admin_rule->cond, s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL); |
| 4469 | ret = acl_pass(ret); |
| 4470 | if (stats_admin_rule->cond->pol == ACL_COND_UNLESS) |
| 4471 | ret = !ret; |
| 4472 | } |
| 4473 | |
| 4474 | if (ret) { |
| 4475 | /* no rule, or the rule matches */ |
| 4476 | appctx->ctx.stats.flags |= STAT_ADMIN; |
| 4477 | break; |
| 4478 | } |
| 4479 | } |
| 4480 | |
Christopher Faulet | 5d45e38 | 2019-02-27 15:15:23 +0100 | [diff] [blame] | 4481 | if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD) |
| 4482 | appctx->st0 = STAT_HTTP_HEAD; |
| 4483 | else if (txn->meth == HTTP_METH_POST) { |
Christopher Faulet | bcf242a | 2019-03-01 11:36:26 +0100 | [diff] [blame] | 4484 | if (appctx->ctx.stats.flags & STAT_ADMIN) |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 4485 | appctx->st0 = STAT_HTTP_POST; |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 4486 | else { |
Christopher Faulet | 5d45e38 | 2019-02-27 15:15:23 +0100 | [diff] [blame] | 4487 | /* POST without admin level */ |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 4488 | appctx->ctx.stats.flags &= ~STAT_CHUNKED; |
| 4489 | appctx->ctx.stats.st_code = STAT_STATUS_DENY; |
| 4490 | appctx->st0 = STAT_HTTP_LAST; |
| 4491 | } |
| 4492 | } |
| 4493 | else { |
Christopher Faulet | 5d45e38 | 2019-02-27 15:15:23 +0100 | [diff] [blame] | 4494 | /* Unsupported method */ |
| 4495 | appctx->ctx.stats.flags &= ~STAT_CHUNKED; |
| 4496 | appctx->ctx.stats.st_code = STAT_STATUS_IVAL; |
| 4497 | appctx->st0 = STAT_HTTP_LAST; |
Christopher Faulet | 377c5a5 | 2018-10-24 21:21:30 +0200 | [diff] [blame] | 4498 | } |
| 4499 | |
| 4500 | s->task->nice = -32; /* small boost for HTTP statistics */ |
| 4501 | return 1; |
| 4502 | } |
| 4503 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4504 | void http_perform_server_redirect(struct stream *s, struct stream_interface *si) |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4505 | { |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4506 | struct channel *req = &s->req; |
| 4507 | struct channel *res = &s->res; |
| 4508 | struct server *srv; |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4509 | struct htx *htx; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 4510 | struct htx_sl *sl; |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4511 | struct ist path, location; |
| 4512 | unsigned int flags; |
| 4513 | size_t data; |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4514 | |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4515 | /* |
| 4516 | * Create the location |
| 4517 | */ |
| 4518 | chunk_reset(&trash); |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4519 | |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4520 | /* 1: add the server's prefix */ |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4521 | /* special prefix "/" means don't change URL */ |
| 4522 | srv = __objt_server(s->target); |
| 4523 | if (srv->rdr_len != 1 || *srv->rdr_pfx != '/') { |
| 4524 | if (!chunk_memcat(&trash, srv->rdr_pfx, srv->rdr_len)) |
| 4525 | return; |
| 4526 | } |
| 4527 | |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4528 | /* 2: add the request Path */ |
Christopher Faulet | 27ba2dc | 2018-12-05 11:53:24 +0100 | [diff] [blame] | 4529 | htx = htxbuf(&req->buf); |
Christopher Faulet | 297fbb4 | 2019-05-13 14:41:27 +0200 | [diff] [blame] | 4530 | sl = http_get_stline(htx); |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 4531 | path = http_get_path(htx_sl_req_uri(sl)); |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4532 | if (!path.ptr) |
| 4533 | return; |
| 4534 | |
| 4535 | if (!chunk_memcat(&trash, path.ptr, path.len)) |
| 4536 | return; |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4537 | location = ist2(trash.area, trash.data); |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4538 | |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4539 | /* |
| 4540 | * Create the 302 respone |
| 4541 | */ |
| 4542 | htx = htx_from_buf(&res->buf); |
| 4543 | flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11|HTX_SL_F_XFER_LEN|HTX_SL_F_BODYLESS); |
| 4544 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, |
| 4545 | ist("HTTP/1.1"), ist("302"), ist("Found")); |
| 4546 | if (!sl) |
| 4547 | goto fail; |
| 4548 | sl->info.res.status = 302; |
| 4549 | s->txn->status = 302; |
| 4550 | |
| 4551 | if (!htx_add_header(htx, ist("Cache-Control"), ist("no-cache")) || |
| 4552 | !htx_add_header(htx, ist("Connection"), ist("close")) || |
| 4553 | !htx_add_header(htx, ist("Content-length"), ist("0")) || |
| 4554 | !htx_add_header(htx, ist("Location"), location)) |
| 4555 | goto fail; |
| 4556 | |
| 4557 | if (!htx_add_endof(htx, HTX_BLK_EOH) || !htx_add_endof(htx, HTX_BLK_EOM)) |
| 4558 | goto fail; |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4559 | |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4560 | /* |
| 4561 | * Send the message |
| 4562 | */ |
| 4563 | data = htx->data - co_data(res); |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4564 | c_adv(res, data); |
| 4565 | res->total += data; |
| 4566 | |
| 4567 | /* return without error. */ |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4568 | si_shutr(si); |
| 4569 | si_shutw(si); |
| 4570 | si->err_type = SI_ET_NONE; |
| 4571 | si->state = SI_ST_CLO; |
| 4572 | |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4573 | channel_auto_read(req); |
| 4574 | channel_abort(req); |
| 4575 | channel_auto_close(req); |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 4576 | channel_htx_erase(req, htxbuf(&req->buf)); |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4577 | channel_auto_read(res); |
| 4578 | channel_auto_close(res); |
| 4579 | |
| 4580 | if (!(s->flags & SF_ERR_MASK)) |
| 4581 | s->flags |= SF_ERR_LOCAL; |
| 4582 | if (!(s->flags & SF_FINST_MASK)) |
| 4583 | s->flags |= SF_FINST_C; |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4584 | |
| 4585 | /* FIXME: we should increase a counter of redirects per server and per backend. */ |
| 4586 | srv_inc_sess_ctr(srv); |
| 4587 | srv_set_sess_last(srv); |
Christopher Faulet | 0eaed6b | 2018-11-28 17:46:40 +0100 | [diff] [blame] | 4588 | return; |
| 4589 | |
| 4590 | fail: |
| 4591 | /* If an error occurred, remove the incomplete HTTP response from the |
| 4592 | * buffer */ |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 4593 | channel_htx_truncate(res, htx); |
Christopher Faulet | fefc73d | 2018-10-24 21:18:04 +0200 | [diff] [blame] | 4594 | } |
| 4595 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4596 | /* This function terminates the request because it was completly analyzed or |
| 4597 | * because an error was triggered during the body forwarding. |
| 4598 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4599 | static void http_end_request(struct stream *s) |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4600 | { |
| 4601 | struct channel *chn = &s->req; |
| 4602 | struct http_txn *txn = s->txn; |
| 4603 | |
| 4604 | DPRINTF(stderr,"[%u] %s: stream=%p states=%s,%s req->analysers=0x%08x res->analysers=0x%08x\n", |
| 4605 | now_ms, __FUNCTION__, s, |
| 4606 | h1_msg_state_str(txn->req.msg_state), h1_msg_state_str(txn->rsp.msg_state), |
| 4607 | s->req.analysers, s->res.analysers); |
| 4608 | |
Christopher Faulet | b42a8b6 | 2018-11-19 21:59:00 +0100 | [diff] [blame] | 4609 | if (unlikely(txn->req.msg_state == HTTP_MSG_ERROR || |
| 4610 | txn->rsp.msg_state == HTTP_MSG_ERROR)) { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4611 | channel_abort(chn); |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 4612 | channel_htx_truncate(chn, htxbuf(&chn->buf)); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4613 | goto end; |
| 4614 | } |
| 4615 | |
| 4616 | if (unlikely(txn->req.msg_state < HTTP_MSG_DONE)) |
| 4617 | return; |
| 4618 | |
| 4619 | if (txn->req.msg_state == HTTP_MSG_DONE) { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4620 | /* No need to read anymore, the request was completely parsed. |
| 4621 | * We can shut the read side unless we want to abort_on_close, |
| 4622 | * or we have a POST request. The issue with POST requests is |
| 4623 | * that some browsers still send a CRLF after the request, and |
| 4624 | * this CRLF must be read so that it does not remain in the kernel |
| 4625 | * buffers, otherwise a close could cause an RST on some systems |
| 4626 | * (eg: Linux). |
| 4627 | */ |
Christopher Faulet | 769d0e9 | 2019-03-22 14:23:18 +0100 | [diff] [blame] | 4628 | 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] | 4629 | channel_dont_read(chn); |
| 4630 | |
| 4631 | /* if the server closes the connection, we want to immediately react |
| 4632 | * and close the socket to save packets and syscalls. |
| 4633 | */ |
| 4634 | s->si[1].flags |= SI_FL_NOHALF; |
| 4635 | |
| 4636 | /* In any case we've finished parsing the request so we must |
| 4637 | * disable Nagle when sending data because 1) we're not going |
| 4638 | * to shut this side, and 2) the server is waiting for us to |
| 4639 | * send pending data. |
| 4640 | */ |
| 4641 | chn->flags |= CF_NEVER_WAIT; |
| 4642 | |
Christopher Faulet | d01ce40 | 2019-01-02 17:44:13 +0100 | [diff] [blame] | 4643 | if (txn->rsp.msg_state < HTTP_MSG_DONE) { |
| 4644 | /* The server has not finished to respond, so we |
| 4645 | * don't want to move in order not to upset it. |
| 4646 | */ |
| 4647 | return; |
| 4648 | } |
| 4649 | |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4650 | /* When we get here, it means that both the request and the |
| 4651 | * response have finished receiving. Depending on the connection |
| 4652 | * mode, we'll have to wait for the last bytes to leave in either |
| 4653 | * direction, and sometimes for a close to be effective. |
| 4654 | */ |
Christopher Faulet | c41547b | 2019-07-16 14:32:23 +0200 | [diff] [blame] | 4655 | if (txn->flags & TX_CON_WANT_TUN) { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4656 | /* Tunnel mode will not have any analyser so it needs to |
| 4657 | * poll for reads. |
| 4658 | */ |
| 4659 | channel_auto_read(chn); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 4660 | if (b_data(&chn->buf)) |
| 4661 | return; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4662 | txn->req.msg_state = HTTP_MSG_TUNNEL; |
| 4663 | } |
| 4664 | else { |
| 4665 | /* we're not expecting any new data to come for this |
| 4666 | * transaction, so we can close it. |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 4667 | * |
| 4668 | * However, there is an exception if the response |
| 4669 | * length is undefined. In this case, we need to wait |
| 4670 | * the close from the server. The response will be |
| 4671 | * switched in TUNNEL mode until the end. |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4672 | */ |
| 4673 | if (!(txn->rsp.flags & HTTP_MSGF_XFER_LEN) && |
| 4674 | txn->rsp.msg_state != HTTP_MSG_CLOSED) |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 4675 | goto check_channel_flags; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4676 | |
| 4677 | if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) { |
| 4678 | channel_shutr_now(chn); |
| 4679 | channel_shutw_now(chn); |
| 4680 | } |
| 4681 | } |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4682 | goto check_channel_flags; |
| 4683 | } |
| 4684 | |
| 4685 | if (txn->req.msg_state == HTTP_MSG_CLOSING) { |
| 4686 | http_msg_closing: |
| 4687 | /* nothing else to forward, just waiting for the output buffer |
| 4688 | * to be empty and for the shutw_now to take effect. |
| 4689 | */ |
| 4690 | if (channel_is_empty(chn)) { |
| 4691 | txn->req.msg_state = HTTP_MSG_CLOSED; |
| 4692 | goto http_msg_closed; |
| 4693 | } |
| 4694 | else if (chn->flags & CF_SHUTW) { |
| 4695 | txn->req.err_state = txn->req.msg_state; |
| 4696 | txn->req.msg_state = HTTP_MSG_ERROR; |
| 4697 | goto end; |
| 4698 | } |
| 4699 | return; |
| 4700 | } |
| 4701 | |
| 4702 | if (txn->req.msg_state == HTTP_MSG_CLOSED) { |
| 4703 | http_msg_closed: |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4704 | /* if we don't know whether the server will close, we need to hard close */ |
| 4705 | if (txn->rsp.flags & HTTP_MSGF_XFER_LEN) |
| 4706 | s->si[1].flags |= SI_FL_NOLINGER; /* we want to close ASAP */ |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4707 | /* 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] | 4708 | if (!(s->be->options & PR_O_ABRT_CLOSE)) |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4709 | channel_dont_read(chn); |
| 4710 | goto end; |
| 4711 | } |
| 4712 | |
| 4713 | check_channel_flags: |
| 4714 | /* Here, we are in HTTP_MSG_DONE or HTTP_MSG_TUNNEL */ |
| 4715 | if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) { |
| 4716 | /* if we've just closed an output, let's switch */ |
| 4717 | txn->req.msg_state = HTTP_MSG_CLOSING; |
| 4718 | goto http_msg_closing; |
| 4719 | } |
| 4720 | |
| 4721 | end: |
| 4722 | chn->analysers &= AN_REQ_FLT_END; |
| 4723 | if (txn->req.msg_state == HTTP_MSG_TUNNEL && HAS_REQ_DATA_FILTERS(s)) |
| 4724 | chn->analysers |= AN_REQ_FLT_XFER_DATA; |
| 4725 | channel_auto_close(chn); |
| 4726 | channel_auto_read(chn); |
| 4727 | } |
| 4728 | |
| 4729 | |
| 4730 | /* This function terminates the response because it was completly analyzed or |
| 4731 | * because an error was triggered during the body forwarding. |
| 4732 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4733 | static void http_end_response(struct stream *s) |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4734 | { |
| 4735 | struct channel *chn = &s->res; |
| 4736 | struct http_txn *txn = s->txn; |
| 4737 | |
| 4738 | DPRINTF(stderr,"[%u] %s: stream=%p states=%s,%s req->analysers=0x%08x res->analysers=0x%08x\n", |
| 4739 | now_ms, __FUNCTION__, s, |
| 4740 | h1_msg_state_str(txn->req.msg_state), h1_msg_state_str(txn->rsp.msg_state), |
| 4741 | s->req.analysers, s->res.analysers); |
| 4742 | |
Christopher Faulet | b42a8b6 | 2018-11-19 21:59:00 +0100 | [diff] [blame] | 4743 | if (unlikely(txn->req.msg_state == HTTP_MSG_ERROR || |
| 4744 | txn->rsp.msg_state == HTTP_MSG_ERROR)) { |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 4745 | channel_htx_truncate(&s->req, htxbuf(&s->req.buf)); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 4746 | channel_abort(&s->req); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4747 | goto end; |
| 4748 | } |
| 4749 | |
| 4750 | if (unlikely(txn->rsp.msg_state < HTTP_MSG_DONE)) |
| 4751 | return; |
| 4752 | |
| 4753 | if (txn->rsp.msg_state == HTTP_MSG_DONE) { |
| 4754 | /* In theory, we don't need to read anymore, but we must |
| 4755 | * still monitor the server connection for a possible close |
| 4756 | * while the request is being uploaded, so we don't disable |
| 4757 | * reading. |
| 4758 | */ |
| 4759 | /* channel_dont_read(chn); */ |
| 4760 | |
| 4761 | if (txn->req.msg_state < HTTP_MSG_DONE) { |
| 4762 | /* The client seems to still be sending data, probably |
| 4763 | * because we got an error response during an upload. |
| 4764 | * We have the choice of either breaking the connection |
| 4765 | * or letting it pass through. Let's do the later. |
| 4766 | */ |
| 4767 | return; |
| 4768 | } |
| 4769 | |
| 4770 | /* When we get here, it means that both the request and the |
| 4771 | * response have finished receiving. Depending on the connection |
| 4772 | * mode, we'll have to wait for the last bytes to leave in either |
| 4773 | * direction, and sometimes for a close to be effective. |
| 4774 | */ |
Christopher Faulet | c41547b | 2019-07-16 14:32:23 +0200 | [diff] [blame] | 4775 | if (txn->flags & TX_CON_WANT_TUN) { |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4776 | channel_auto_read(chn); |
| 4777 | chn->flags |= CF_NEVER_WAIT; |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 4778 | if (b_data(&chn->buf)) |
| 4779 | return; |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4780 | txn->rsp.msg_state = HTTP_MSG_TUNNEL; |
| 4781 | } |
| 4782 | else { |
| 4783 | /* we're not expecting any new data to come for this |
| 4784 | * transaction, so we can close it. |
| 4785 | */ |
| 4786 | if (!(chn->flags & (CF_SHUTW|CF_SHUTW_NOW))) { |
| 4787 | channel_shutr_now(chn); |
| 4788 | channel_shutw_now(chn); |
| 4789 | } |
| 4790 | } |
| 4791 | goto check_channel_flags; |
| 4792 | } |
| 4793 | |
| 4794 | if (txn->rsp.msg_state == HTTP_MSG_CLOSING) { |
| 4795 | http_msg_closing: |
| 4796 | /* nothing else to forward, just waiting for the output buffer |
| 4797 | * to be empty and for the shutw_now to take effect. |
| 4798 | */ |
| 4799 | if (channel_is_empty(chn)) { |
| 4800 | txn->rsp.msg_state = HTTP_MSG_CLOSED; |
| 4801 | goto http_msg_closed; |
| 4802 | } |
| 4803 | else if (chn->flags & CF_SHUTW) { |
| 4804 | txn->rsp.err_state = txn->rsp.msg_state; |
| 4805 | txn->rsp.msg_state = HTTP_MSG_ERROR; |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 4806 | _HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4807 | if (objt_server(s->target)) |
Olivier Houchard | a798bf5 | 2019-03-08 18:52:00 +0100 | [diff] [blame] | 4808 | _HA_ATOMIC_ADD(&objt_server(s->target)->counters.cli_aborts, 1); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4809 | goto end; |
| 4810 | } |
| 4811 | return; |
| 4812 | } |
| 4813 | |
| 4814 | if (txn->rsp.msg_state == HTTP_MSG_CLOSED) { |
| 4815 | http_msg_closed: |
| 4816 | /* drop any pending data */ |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 4817 | channel_htx_truncate(&s->req, htxbuf(&s->req.buf)); |
Christopher Faulet | 9768c26 | 2018-10-22 09:34:31 +0200 | [diff] [blame] | 4818 | channel_abort(&s->req); |
Christopher Faulet | f2824e6 | 2018-10-01 12:12:37 +0200 | [diff] [blame] | 4819 | goto end; |
| 4820 | } |
| 4821 | |
| 4822 | check_channel_flags: |
| 4823 | /* Here, we are in HTTP_MSG_DONE or HTTP_MSG_TUNNEL */ |
| 4824 | if (chn->flags & (CF_SHUTW|CF_SHUTW_NOW)) { |
| 4825 | /* if we've just closed an output, let's switch */ |
| 4826 | txn->rsp.msg_state = HTTP_MSG_CLOSING; |
| 4827 | goto http_msg_closing; |
| 4828 | } |
| 4829 | |
| 4830 | end: |
| 4831 | chn->analysers &= AN_RES_FLT_END; |
| 4832 | if (txn->rsp.msg_state == HTTP_MSG_TUNNEL && HAS_RSP_DATA_FILTERS(s)) |
| 4833 | chn->analysers |= AN_RES_FLT_XFER_DATA; |
| 4834 | channel_auto_close(chn); |
| 4835 | channel_auto_read(chn); |
| 4836 | } |
| 4837 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4838 | void http_server_error(struct stream *s, struct stream_interface *si, int err, |
| 4839 | int finst, const struct buffer *msg) |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 4840 | { |
| 4841 | channel_auto_read(si_oc(si)); |
| 4842 | channel_abort(si_oc(si)); |
| 4843 | channel_auto_close(si_oc(si)); |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 4844 | channel_htx_erase(si_oc(si), htxbuf(&(si_oc(si))->buf)); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 4845 | channel_auto_close(si_ic(si)); |
| 4846 | channel_auto_read(si_ic(si)); |
Christopher Faulet | a7b677c | 2018-11-29 16:48:49 +0100 | [diff] [blame] | 4847 | |
| 4848 | /* <msg> is an HTX structure. So we copy it in the response's |
| 4849 | * channel */ |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 4850 | if (msg) { |
| 4851 | struct channel *chn = si_ic(si); |
| 4852 | struct htx *htx; |
| 4853 | |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 4854 | FLT_STRM_CB(s, flt_http_reply(s, s->txn->status, msg)); |
Christopher Faulet | a7b677c | 2018-11-29 16:48:49 +0100 | [diff] [blame] | 4855 | chn->buf.data = msg->data; |
| 4856 | memcpy(chn->buf.area, msg->area, msg->data); |
| 4857 | htx = htx_from_buf(&chn->buf); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 4858 | c_adv(chn, htx->data); |
| 4859 | chn->total += htx->data; |
| 4860 | } |
| 4861 | if (!(s->flags & SF_ERR_MASK)) |
| 4862 | s->flags |= err; |
| 4863 | if (!(s->flags & SF_FINST_MASK)) |
| 4864 | s->flags |= finst; |
| 4865 | } |
| 4866 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4867 | void http_reply_and_close(struct stream *s, short status, struct buffer *msg) |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 4868 | { |
| 4869 | channel_auto_read(&s->req); |
| 4870 | channel_abort(&s->req); |
| 4871 | channel_auto_close(&s->req); |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 4872 | channel_htx_erase(&s->req, htxbuf(&s->req.buf)); |
| 4873 | channel_htx_truncate(&s->res, htxbuf(&s->res.buf)); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 4874 | |
| 4875 | s->txn->flags &= ~TX_WAIT_NEXT_RQ; |
Christopher Faulet | a7b677c | 2018-11-29 16:48:49 +0100 | [diff] [blame] | 4876 | |
| 4877 | /* <msg> is an HTX structure. So we copy it in the response's |
| 4878 | * channel */ |
| 4879 | /* FIXME: It is a problem for now if there is some outgoing data */ |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 4880 | if (msg) { |
| 4881 | struct channel *chn = &s->res; |
| 4882 | struct htx *htx; |
| 4883 | |
Christopher Faulet | aed82cf | 2018-11-30 22:22:32 +0100 | [diff] [blame] | 4884 | FLT_STRM_CB(s, flt_http_reply(s, s->txn->status, msg)); |
Christopher Faulet | a7b677c | 2018-11-29 16:48:49 +0100 | [diff] [blame] | 4885 | chn->buf.data = msg->data; |
| 4886 | memcpy(chn->buf.area, msg->area, msg->data); |
| 4887 | htx = htx_from_buf(&chn->buf); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 4888 | c_adv(chn, htx->data); |
| 4889 | chn->total += htx->data; |
| 4890 | } |
| 4891 | |
| 4892 | s->res.wex = tick_add_ifset(now_ms, s->res.wto); |
| 4893 | channel_auto_read(&s->res); |
| 4894 | channel_auto_close(&s->res); |
| 4895 | channel_shutr_now(&s->res); |
| 4896 | } |
| 4897 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4898 | struct buffer *http_error_message(struct stream *s) |
Christopher Faulet | a7b677c | 2018-11-29 16:48:49 +0100 | [diff] [blame] | 4899 | { |
| 4900 | const int msgnum = http_get_status_idx(s->txn->status); |
| 4901 | |
| 4902 | if (s->be->errmsg[msgnum].area) |
| 4903 | return &s->be->errmsg[msgnum]; |
| 4904 | else if (strm_fe(s)->errmsg[msgnum].area) |
| 4905 | return &strm_fe(s)->errmsg[msgnum]; |
| 4906 | else |
Christopher Faulet | f734638 | 2019-07-17 22:02:08 +0200 | [diff] [blame] | 4907 | return &http_err_chunks[msgnum]; |
Christopher Faulet | a7b677c | 2018-11-29 16:48:49 +0100 | [diff] [blame] | 4908 | } |
| 4909 | |
Christopher Faulet | 304cc40 | 2019-07-15 15:46:28 +0200 | [diff] [blame] | 4910 | /* Return the error message corresponding to si->err_type. It is assumed |
| 4911 | * that the server side is closed. Note that err_type is actually a |
| 4912 | * bitmask, where almost only aborts may be cumulated with other |
| 4913 | * values. We consider that aborted operations are more important |
| 4914 | * than timeouts or errors due to the fact that nobody else in the |
| 4915 | * logs might explain incomplete retries. All others should avoid |
| 4916 | * being cumulated. It should normally not be possible to have multiple |
| 4917 | * aborts at once, but just in case, the first one in sequence is reported. |
| 4918 | * Note that connection errors appearing on the second request of a keep-alive |
| 4919 | * connection are not reported since this allows the client to retry. |
| 4920 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4921 | void http_return_srv_error(struct stream *s, struct stream_interface *si) |
Christopher Faulet | 304cc40 | 2019-07-15 15:46:28 +0200 | [diff] [blame] | 4922 | { |
| 4923 | int err_type = si->err_type; |
| 4924 | |
| 4925 | /* set s->txn->status for http_error_message(s) */ |
| 4926 | s->txn->status = 503; |
| 4927 | |
| 4928 | if (err_type & SI_ET_QUEUE_ABRT) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4929 | http_server_error(s, si, SF_ERR_CLICL, SF_FINST_Q, |
| 4930 | http_error_message(s)); |
Christopher Faulet | 304cc40 | 2019-07-15 15:46:28 +0200 | [diff] [blame] | 4931 | else if (err_type & SI_ET_CONN_ABRT) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4932 | http_server_error(s, si, SF_ERR_CLICL, SF_FINST_C, |
| 4933 | (s->txn->flags & TX_NOT_FIRST) ? NULL : |
| 4934 | http_error_message(s)); |
Christopher Faulet | 304cc40 | 2019-07-15 15:46:28 +0200 | [diff] [blame] | 4935 | else if (err_type & SI_ET_QUEUE_TO) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4936 | http_server_error(s, si, SF_ERR_SRVTO, SF_FINST_Q, |
| 4937 | http_error_message(s)); |
Christopher Faulet | 304cc40 | 2019-07-15 15:46:28 +0200 | [diff] [blame] | 4938 | else if (err_type & SI_ET_QUEUE_ERR) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4939 | http_server_error(s, si, SF_ERR_SRVCL, SF_FINST_Q, |
| 4940 | http_error_message(s)); |
Christopher Faulet | 304cc40 | 2019-07-15 15:46:28 +0200 | [diff] [blame] | 4941 | else if (err_type & SI_ET_CONN_TO) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4942 | http_server_error(s, si, SF_ERR_SRVTO, SF_FINST_C, |
| 4943 | (s->txn->flags & TX_NOT_FIRST) ? NULL : |
| 4944 | http_error_message(s)); |
Christopher Faulet | 304cc40 | 2019-07-15 15:46:28 +0200 | [diff] [blame] | 4945 | else if (err_type & SI_ET_CONN_ERR) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4946 | http_server_error(s, si, SF_ERR_SRVCL, SF_FINST_C, |
| 4947 | (s->flags & SF_SRV_REUSED) ? NULL : |
| 4948 | http_error_message(s)); |
Christopher Faulet | 304cc40 | 2019-07-15 15:46:28 +0200 | [diff] [blame] | 4949 | else if (err_type & SI_ET_CONN_RES) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4950 | http_server_error(s, si, SF_ERR_RESOURCE, SF_FINST_C, |
| 4951 | (s->txn->flags & TX_NOT_FIRST) ? NULL : |
| 4952 | http_error_message(s)); |
Christopher Faulet | 304cc40 | 2019-07-15 15:46:28 +0200 | [diff] [blame] | 4953 | else { /* SI_ET_CONN_OTHER and others */ |
| 4954 | s->txn->status = 500; |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4955 | http_server_error(s, si, SF_ERR_INTERNAL, SF_FINST_C, |
| 4956 | http_error_message(s)); |
Christopher Faulet | 304cc40 | 2019-07-15 15:46:28 +0200 | [diff] [blame] | 4957 | } |
| 4958 | } |
| 4959 | |
Christopher Faulet | a7b677c | 2018-11-29 16:48:49 +0100 | [diff] [blame] | 4960 | |
Christopher Faulet | 4a28a53 | 2019-03-01 11:19:40 +0100 | [diff] [blame] | 4961 | /* Handle Expect: 100-continue for HTTP/1.1 messages if necessary. It returns 0 |
| 4962 | * on success and -1 on error. |
| 4963 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4964 | 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] | 4965 | { |
| 4966 | /* If we have HTTP/1.1 message with a body and Expect: 100-continue, |
| 4967 | * then we must send an HTTP/1.1 100 Continue intermediate response. |
| 4968 | */ |
| 4969 | if (msg->msg_state == HTTP_MSG_BODY && (msg->flags & HTTP_MSGF_VER_11) && |
| 4970 | (msg->flags & (HTTP_MSGF_CNT_LEN|HTTP_MSGF_TE_CHNK))) { |
| 4971 | struct ist hdr = { .ptr = "Expect", .len = 6 }; |
| 4972 | struct http_hdr_ctx ctx; |
| 4973 | |
| 4974 | ctx.blk = NULL; |
| 4975 | /* Expect is allowed in 1.1, look for it */ |
| 4976 | if (http_find_header(htx, hdr, &ctx, 0) && |
| 4977 | unlikely(isteqi(ctx.value, ist2("100-continue", 12)))) { |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4978 | if (http_reply_100_continue(s) == -1) |
Christopher Faulet | 4a28a53 | 2019-03-01 11:19:40 +0100 | [diff] [blame] | 4979 | return -1; |
| 4980 | http_remove_header(htx, &ctx); |
| 4981 | } |
| 4982 | } |
| 4983 | return 0; |
| 4984 | } |
| 4985 | |
Christopher Faulet | 23a3c79 | 2018-11-28 10:01:23 +0100 | [diff] [blame] | 4986 | /* Send a 100-Continue response to the client. It returns 0 on success and -1 |
| 4987 | * on error. The response channel is updated accordingly. |
| 4988 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 4989 | static int http_reply_100_continue(struct stream *s) |
Christopher Faulet | 23a3c79 | 2018-11-28 10:01:23 +0100 | [diff] [blame] | 4990 | { |
| 4991 | struct channel *res = &s->res; |
| 4992 | struct htx *htx = htx_from_buf(&res->buf); |
| 4993 | struct htx_sl *sl; |
| 4994 | unsigned int flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11| |
| 4995 | HTX_SL_F_XFER_LEN|HTX_SL_F_BODYLESS); |
| 4996 | size_t data; |
| 4997 | |
| 4998 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, |
| 4999 | ist("HTTP/1.1"), ist("100"), ist("Continue")); |
| 5000 | if (!sl) |
| 5001 | goto fail; |
| 5002 | sl->info.res.status = 100; |
| 5003 | |
Christopher Faulet | 1d5ec09 | 2019-06-26 14:23:54 +0200 | [diff] [blame] | 5004 | if (!htx_add_endof(htx, HTX_BLK_EOH)) |
Christopher Faulet | 23a3c79 | 2018-11-28 10:01:23 +0100 | [diff] [blame] | 5005 | goto fail; |
| 5006 | |
| 5007 | data = htx->data - co_data(res); |
Christopher Faulet | 23a3c79 | 2018-11-28 10:01:23 +0100 | [diff] [blame] | 5008 | c_adv(res, data); |
| 5009 | res->total += data; |
| 5010 | return 0; |
| 5011 | |
| 5012 | fail: |
| 5013 | /* If an error occurred, remove the incomplete HTTP response from the |
| 5014 | * buffer */ |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 5015 | channel_htx_truncate(res, htx); |
Christopher Faulet | 23a3c79 | 2018-11-28 10:01:23 +0100 | [diff] [blame] | 5016 | return -1; |
| 5017 | } |
| 5018 | |
Christopher Faulet | 12c51e2 | 2018-11-28 15:59:42 +0100 | [diff] [blame] | 5019 | |
| 5020 | /* Send a 401-Unauthorized or 407-Unauthorized response to the client, depending |
| 5021 | * ont whether we use a proxy or not. It returns 0 on success and -1 on |
| 5022 | * error. The response channel is updated accordingly. |
| 5023 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5024 | static int http_reply_40x_unauthorized(struct stream *s, const char *auth_realm) |
Christopher Faulet | 12c51e2 | 2018-11-28 15:59:42 +0100 | [diff] [blame] | 5025 | { |
| 5026 | struct channel *res = &s->res; |
| 5027 | struct htx *htx = htx_from_buf(&res->buf); |
| 5028 | struct htx_sl *sl; |
| 5029 | struct ist code, body; |
| 5030 | int status; |
| 5031 | unsigned int flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11); |
| 5032 | size_t data; |
| 5033 | |
| 5034 | if (!(s->txn->flags & TX_USE_PX_CONN)) { |
| 5035 | status = 401; |
| 5036 | code = ist("401"); |
| 5037 | body = ist("<html><body><h1>401 Unauthorized</h1>\n" |
| 5038 | "You need a valid user and password to access this content.\n" |
| 5039 | "</body></html>\n"); |
| 5040 | } |
| 5041 | else { |
| 5042 | status = 407; |
| 5043 | code = ist("407"); |
| 5044 | body = ist("<html><body><h1>407 Unauthorized</h1>\n" |
| 5045 | "You need a valid user and password to access this content.\n" |
| 5046 | "</body></html>\n"); |
| 5047 | } |
| 5048 | |
| 5049 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, |
| 5050 | ist("HTTP/1.1"), code, ist("Unauthorized")); |
| 5051 | if (!sl) |
| 5052 | goto fail; |
| 5053 | sl->info.res.status = status; |
| 5054 | s->txn->status = status; |
| 5055 | |
| 5056 | if (chunk_printf(&trash, "Basic realm=\"%s\"", auth_realm) == -1) |
| 5057 | goto fail; |
| 5058 | |
Willy Tarreau | b5ba2b0 | 2019-06-11 16:08:25 +0200 | [diff] [blame] | 5059 | if (!htx_add_header(htx, ist("Content-length"), ist("112")) || |
| 5060 | !htx_add_header(htx, ist("Cache-Control"), ist("no-cache")) || |
Christopher Faulet | 12c51e2 | 2018-11-28 15:59:42 +0100 | [diff] [blame] | 5061 | !htx_add_header(htx, ist("Connection"), ist("close")) || |
Jérôme Magnin | 86cef23 | 2018-12-28 14:49:08 +0100 | [diff] [blame] | 5062 | !htx_add_header(htx, ist("Content-Type"), ist("text/html"))) |
| 5063 | goto fail; |
| 5064 | if (status == 401 && !htx_add_header(htx, ist("WWW-Authenticate"), ist2(trash.area, trash.data))) |
| 5065 | goto fail; |
| 5066 | if (status == 407 && !htx_add_header(htx, ist("Proxy-Authenticate"), ist2(trash.area, trash.data))) |
Christopher Faulet | 12c51e2 | 2018-11-28 15:59:42 +0100 | [diff] [blame] | 5067 | goto fail; |
Willy Tarreau | 0a7ef02 | 2019-05-28 10:30:11 +0200 | [diff] [blame] | 5068 | if (!htx_add_endof(htx, HTX_BLK_EOH)) |
| 5069 | goto fail; |
| 5070 | |
| 5071 | while (body.len) { |
| 5072 | size_t sent = htx_add_data(htx, body); |
| 5073 | if (!sent) |
| 5074 | goto fail; |
| 5075 | body.ptr += sent; |
| 5076 | body.len -= sent; |
| 5077 | } |
| 5078 | |
| 5079 | if (!htx_add_endof(htx, HTX_BLK_EOM)) |
Christopher Faulet | 12c51e2 | 2018-11-28 15:59:42 +0100 | [diff] [blame] | 5080 | goto fail; |
| 5081 | |
| 5082 | data = htx->data - co_data(res); |
Christopher Faulet | 12c51e2 | 2018-11-28 15:59:42 +0100 | [diff] [blame] | 5083 | c_adv(res, data); |
| 5084 | res->total += data; |
| 5085 | |
| 5086 | channel_auto_read(&s->req); |
| 5087 | channel_abort(&s->req); |
| 5088 | channel_auto_close(&s->req); |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 5089 | channel_htx_erase(&s->req, htxbuf(&s->req.buf)); |
Christopher Faulet | 12c51e2 | 2018-11-28 15:59:42 +0100 | [diff] [blame] | 5090 | |
| 5091 | res->wex = tick_add_ifset(now_ms, res->wto); |
| 5092 | channel_auto_read(res); |
| 5093 | channel_auto_close(res); |
| 5094 | channel_shutr_now(res); |
| 5095 | return 0; |
| 5096 | |
| 5097 | fail: |
| 5098 | /* If an error occurred, remove the incomplete HTTP response from the |
| 5099 | * buffer */ |
Christopher Faulet | 202c6ce | 2019-01-07 14:57:35 +0100 | [diff] [blame] | 5100 | channel_htx_truncate(res, htx); |
Christopher Faulet | 12c51e2 | 2018-11-28 15:59:42 +0100 | [diff] [blame] | 5101 | return -1; |
| 5102 | } |
| 5103 | |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5104 | /* |
| 5105 | * Capture headers from message <htx> according to header list <cap_hdr>, and |
| 5106 | * fill the <cap> pointers appropriately. |
| 5107 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5108 | 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] | 5109 | { |
| 5110 | struct cap_hdr *h; |
| 5111 | int32_t pos; |
| 5112 | |
Christopher Faulet | a3f1550 | 2019-05-13 15:27:23 +0200 | [diff] [blame] | 5113 | 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] | 5114 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 5115 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 5116 | struct ist n, v; |
| 5117 | |
| 5118 | if (type == HTX_BLK_EOH) |
| 5119 | break; |
| 5120 | if (type != HTX_BLK_HDR) |
| 5121 | continue; |
| 5122 | |
| 5123 | n = htx_get_blk_name(htx, blk); |
| 5124 | |
| 5125 | for (h = cap_hdr; h; h = h->next) { |
| 5126 | if (h->namelen && (h->namelen == n.len) && |
| 5127 | (strncasecmp(n.ptr, h->name, h->namelen) == 0)) { |
| 5128 | if (cap[h->index] == NULL) |
| 5129 | cap[h->index] = |
| 5130 | pool_alloc(h->pool); |
| 5131 | |
| 5132 | if (cap[h->index] == NULL) { |
| 5133 | ha_alert("HTTP capture : out of memory.\n"); |
| 5134 | break; |
| 5135 | } |
| 5136 | |
| 5137 | v = htx_get_blk_value(htx, blk); |
| 5138 | if (v.len > h->len) |
| 5139 | v.len = h->len; |
| 5140 | |
| 5141 | memcpy(cap[h->index], v.ptr, v.len); |
| 5142 | cap[h->index][v.len]=0; |
| 5143 | } |
| 5144 | } |
| 5145 | } |
| 5146 | } |
| 5147 | |
Christopher Faulet | 0b6bdc5 | 2018-10-24 11:05:36 +0200 | [diff] [blame] | 5148 | /* Delete a value in a header between delimiters <from> and <next>. The header |
| 5149 | * itself is delimited by <start> and <end> pointers. The number of characters |
| 5150 | * displaced is returned, and the pointer to the first delimiter is updated if |
| 5151 | * required. The function tries as much as possible to respect the following |
| 5152 | * principles : |
| 5153 | * - replace <from> delimiter by the <next> one unless <from> points to <start>, |
| 5154 | * in which case <next> is simply removed |
| 5155 | * - set exactly one space character after the new first delimiter, unless there |
| 5156 | * are not enough characters in the block being moved to do so. |
| 5157 | * - remove unneeded spaces before the previous delimiter and after the new |
| 5158 | * one. |
| 5159 | * |
| 5160 | * It is the caller's responsibility to ensure that : |
| 5161 | * - <from> points to a valid delimiter or <start> ; |
| 5162 | * - <next> points to a valid delimiter or <end> ; |
| 5163 | * - there are non-space chars before <from>. |
| 5164 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5165 | 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] | 5166 | { |
| 5167 | char *prev = *from; |
| 5168 | |
| 5169 | if (prev == start) { |
| 5170 | /* We're removing the first value. eat the semicolon, if <next> |
| 5171 | * is lower than <end> */ |
| 5172 | if (next < end) |
| 5173 | next++; |
| 5174 | |
| 5175 | while (next < end && HTTP_IS_SPHT(*next)) |
| 5176 | next++; |
| 5177 | } |
| 5178 | else { |
| 5179 | /* Remove useless spaces before the old delimiter. */ |
| 5180 | while (HTTP_IS_SPHT(*(prev-1))) |
| 5181 | prev--; |
| 5182 | *from = prev; |
| 5183 | |
| 5184 | /* copy the delimiter and if possible a space if we're |
| 5185 | * not at the end of the line. |
| 5186 | */ |
| 5187 | if (next < end) { |
| 5188 | *prev++ = *next++; |
| 5189 | if (prev + 1 < next) |
| 5190 | *prev++ = ' '; |
| 5191 | while (next < end && HTTP_IS_SPHT(*next)) |
| 5192 | next++; |
| 5193 | } |
| 5194 | } |
| 5195 | memmove(prev, next, end - next); |
| 5196 | return (prev - next); |
| 5197 | } |
| 5198 | |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5199 | |
| 5200 | /* 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] | 5201 | * 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] | 5202 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5203 | 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] | 5204 | { |
| 5205 | struct ist dst = ist2(str, 0); |
| 5206 | |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 5207 | if (istcat(&dst, htx_sl_req_meth(sl), len) == -1) |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5208 | goto end; |
| 5209 | if (dst.len + 1 > len) |
| 5210 | goto end; |
| 5211 | dst.ptr[dst.len++] = ' '; |
| 5212 | |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 5213 | if (istcat(&dst, htx_sl_req_uri(sl), len) == -1) |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5214 | goto end; |
| 5215 | if (dst.len + 1 > len) |
| 5216 | goto end; |
| 5217 | dst.ptr[dst.len++] = ' '; |
| 5218 | |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 5219 | istcat(&dst, htx_sl_req_vsn(sl), len); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5220 | end: |
| 5221 | return dst.len; |
| 5222 | } |
| 5223 | |
| 5224 | /* |
| 5225 | * Print a debug line with a start line. |
| 5226 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5227 | 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] | 5228 | { |
| 5229 | struct session *sess = strm_sess(s); |
| 5230 | int max; |
| 5231 | |
| 5232 | chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", s->uniq_id, s->be->id, |
| 5233 | dir, |
| 5234 | objt_conn(sess->origin) ? (unsigned short)objt_conn(sess->origin)->handle.fd : -1, |
| 5235 | objt_cs(s->si[1].end) ? (unsigned short)objt_cs(s->si[1].end)->conn->handle.fd : -1); |
| 5236 | |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 5237 | max = HTX_SL_P1_LEN(sl); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5238 | UBOUND(max, trash.size - trash.data - 3); |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 5239 | chunk_memcat(&trash, HTX_SL_P1_PTR(sl), max); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5240 | trash.area[trash.data++] = ' '; |
| 5241 | |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 5242 | max = HTX_SL_P2_LEN(sl); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5243 | UBOUND(max, trash.size - trash.data - 2); |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 5244 | chunk_memcat(&trash, HTX_SL_P2_PTR(sl), max); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5245 | trash.area[trash.data++] = ' '; |
| 5246 | |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 5247 | max = HTX_SL_P3_LEN(sl); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5248 | UBOUND(max, trash.size - trash.data - 1); |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 5249 | chunk_memcat(&trash, HTX_SL_P3_PTR(sl), max); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5250 | trash.area[trash.data++] = '\n'; |
| 5251 | |
| 5252 | shut_your_big_mouth_gcc(write(1, trash.area, trash.data)); |
| 5253 | } |
| 5254 | |
| 5255 | /* |
| 5256 | * Print a debug line with a header. |
| 5257 | */ |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5258 | 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] | 5259 | { |
| 5260 | struct session *sess = strm_sess(s); |
| 5261 | int max; |
| 5262 | |
| 5263 | chunk_printf(&trash, "%08x:%s.%s[%04x:%04x]: ", s->uniq_id, s->be->id, |
| 5264 | dir, |
| 5265 | objt_conn(sess->origin) ? (unsigned short)objt_conn(sess->origin)->handle.fd : -1, |
| 5266 | objt_cs(s->si[1].end) ? (unsigned short)objt_cs(s->si[1].end)->conn->handle.fd : -1); |
| 5267 | |
| 5268 | max = n.len; |
| 5269 | UBOUND(max, trash.size - trash.data - 3); |
| 5270 | chunk_memcat(&trash, n.ptr, max); |
| 5271 | trash.area[trash.data++] = ':'; |
| 5272 | trash.area[trash.data++] = ' '; |
| 5273 | |
| 5274 | max = v.len; |
| 5275 | UBOUND(max, trash.size - trash.data - 1); |
| 5276 | chunk_memcat(&trash, v.ptr, max); |
| 5277 | trash.area[trash.data++] = '\n'; |
| 5278 | |
| 5279 | shut_your_big_mouth_gcc(write(1, trash.area, trash.data)); |
| 5280 | } |
| 5281 | |
Christopher Faulet | a8a46e2 | 2019-07-16 14:53:09 +0200 | [diff] [blame] | 5282 | /* Allocate a new HTTP transaction for stream <s> unless there is one already. |
| 5283 | * In case of allocation failure, everything allocated is freed and NULL is |
| 5284 | * returned. Otherwise the new transaction is assigned to the stream and |
| 5285 | * returned. |
| 5286 | */ |
| 5287 | struct http_txn *http_alloc_txn(struct stream *s) |
| 5288 | { |
| 5289 | struct http_txn *txn = s->txn; |
| 5290 | |
| 5291 | if (txn) |
| 5292 | return txn; |
| 5293 | |
| 5294 | txn = pool_alloc(pool_head_http_txn); |
| 5295 | if (!txn) |
| 5296 | return txn; |
| 5297 | |
| 5298 | s->txn = txn; |
| 5299 | return txn; |
| 5300 | } |
| 5301 | |
| 5302 | void http_txn_reset_req(struct http_txn *txn) |
| 5303 | { |
| 5304 | txn->req.flags = 0; |
| 5305 | txn->req.msg_state = HTTP_MSG_RQBEFORE; /* at the very beginning of the request */ |
| 5306 | } |
| 5307 | |
| 5308 | void http_txn_reset_res(struct http_txn *txn) |
| 5309 | { |
| 5310 | txn->rsp.flags = 0; |
| 5311 | txn->rsp.msg_state = HTTP_MSG_RPBEFORE; /* at the very beginning of the response */ |
| 5312 | } |
| 5313 | |
| 5314 | /* |
| 5315 | * Initialize a new HTTP transaction for stream <s>. It is assumed that all |
| 5316 | * the required fields are properly allocated and that we only need to (re)init |
| 5317 | * them. This should be used before processing any new request. |
| 5318 | */ |
| 5319 | void http_init_txn(struct stream *s) |
| 5320 | { |
| 5321 | struct http_txn *txn = s->txn; |
| 5322 | struct conn_stream *cs = objt_cs(s->si[0].end); |
| 5323 | |
| 5324 | txn->flags = ((cs && cs->flags & CS_FL_NOT_FIRST) |
| 5325 | ? (TX_NOT_FIRST|TX_WAIT_NEXT_RQ) |
| 5326 | : 0); |
| 5327 | txn->status = -1; |
| 5328 | *(unsigned int *)txn->cache_hash = 0; |
| 5329 | |
| 5330 | txn->cookie_first_date = 0; |
| 5331 | txn->cookie_last_date = 0; |
| 5332 | |
| 5333 | txn->srv_cookie = NULL; |
| 5334 | txn->cli_cookie = NULL; |
| 5335 | txn->uri = NULL; |
| 5336 | |
| 5337 | http_txn_reset_req(txn); |
| 5338 | http_txn_reset_res(txn); |
| 5339 | |
| 5340 | txn->req.chn = &s->req; |
| 5341 | txn->rsp.chn = &s->res; |
| 5342 | |
| 5343 | txn->auth.method = HTTP_AUTH_UNKNOWN; |
| 5344 | |
| 5345 | vars_init(&s->vars_txn, SCOPE_TXN); |
| 5346 | vars_init(&s->vars_reqres, SCOPE_REQ); |
| 5347 | } |
| 5348 | |
| 5349 | /* to be used at the end of a transaction */ |
| 5350 | void http_end_txn(struct stream *s) |
| 5351 | { |
| 5352 | struct http_txn *txn = s->txn; |
| 5353 | struct proxy *fe = strm_fe(s); |
| 5354 | |
| 5355 | /* these ones will have been dynamically allocated */ |
| 5356 | pool_free(pool_head_requri, txn->uri); |
| 5357 | pool_free(pool_head_capture, txn->cli_cookie); |
| 5358 | pool_free(pool_head_capture, txn->srv_cookie); |
| 5359 | pool_free(pool_head_uniqueid, s->unique_id); |
| 5360 | |
| 5361 | s->unique_id = NULL; |
| 5362 | txn->uri = NULL; |
| 5363 | txn->srv_cookie = NULL; |
| 5364 | txn->cli_cookie = NULL; |
| 5365 | |
| 5366 | if (s->req_cap) { |
| 5367 | struct cap_hdr *h; |
| 5368 | for (h = fe->req_cap; h; h = h->next) |
| 5369 | pool_free(h->pool, s->req_cap[h->index]); |
| 5370 | memset(s->req_cap, 0, fe->nb_req_cap * sizeof(void *)); |
| 5371 | } |
| 5372 | |
| 5373 | if (s->res_cap) { |
| 5374 | struct cap_hdr *h; |
| 5375 | for (h = fe->rsp_cap; h; h = h->next) |
| 5376 | pool_free(h->pool, s->res_cap[h->index]); |
| 5377 | memset(s->res_cap, 0, fe->nb_rsp_cap * sizeof(void *)); |
| 5378 | } |
| 5379 | |
| 5380 | if (!LIST_ISEMPTY(&s->vars_txn.head)) |
| 5381 | vars_prune(&s->vars_txn, s->sess, s); |
| 5382 | if (!LIST_ISEMPTY(&s->vars_reqres.head)) |
| 5383 | vars_prune(&s->vars_reqres, s->sess, s); |
| 5384 | } |
| 5385 | |
| 5386 | /* to be used at the end of a transaction to prepare a new one */ |
| 5387 | void http_reset_txn(struct stream *s) |
| 5388 | { |
| 5389 | http_end_txn(s); |
| 5390 | http_init_txn(s); |
| 5391 | |
| 5392 | /* reinitialise the current rule list pointer to NULL. We are sure that |
| 5393 | * any rulelist match the NULL pointer. |
| 5394 | */ |
| 5395 | s->current_rule_list = NULL; |
| 5396 | |
| 5397 | s->be = strm_fe(s); |
| 5398 | s->logs.logwait = strm_fe(s)->to_log; |
| 5399 | s->logs.level = 0; |
| 5400 | stream_del_srv_conn(s); |
| 5401 | s->target = NULL; |
| 5402 | /* re-init store persistence */ |
| 5403 | s->store_count = 0; |
| 5404 | s->uniq_id = _HA_ATOMIC_XADD(&global.req_count, 1); |
| 5405 | |
| 5406 | s->req.flags |= CF_READ_DONTWAIT; /* one read is usually enough */ |
| 5407 | |
| 5408 | /* We must trim any excess data from the response buffer, because we |
| 5409 | * may have blocked an invalid response from a server that we don't |
| 5410 | * want to accidently forward once we disable the analysers, nor do |
| 5411 | * we want those data to come along with next response. A typical |
| 5412 | * example of such data would be from a buggy server responding to |
| 5413 | * a HEAD with some data, or sending more than the advertised |
| 5414 | * content-length. |
| 5415 | */ |
| 5416 | if (unlikely(ci_data(&s->res))) |
| 5417 | b_set_data(&s->res.buf, co_data(&s->res)); |
| 5418 | |
| 5419 | /* Now we can realign the response buffer */ |
| 5420 | c_realign_if_empty(&s->res); |
| 5421 | |
| 5422 | s->req.rto = strm_fe(s)->timeout.client; |
| 5423 | s->req.wto = TICK_ETERNITY; |
| 5424 | |
| 5425 | s->res.rto = TICK_ETERNITY; |
| 5426 | s->res.wto = strm_fe(s)->timeout.client; |
| 5427 | |
| 5428 | s->req.rex = TICK_ETERNITY; |
| 5429 | s->req.wex = TICK_ETERNITY; |
| 5430 | s->req.analyse_exp = TICK_ETERNITY; |
| 5431 | s->res.rex = TICK_ETERNITY; |
| 5432 | s->res.wex = TICK_ETERNITY; |
| 5433 | s->res.analyse_exp = TICK_ETERNITY; |
| 5434 | s->si[1].hcto = TICK_ETERNITY; |
| 5435 | } |
| 5436 | |
| 5437 | |
| 5438 | DECLARE_POOL(pool_head_http_txn, "http_txn", sizeof(struct http_txn)); |
| 5439 | DECLARE_POOL(pool_head_uniqueid, "uniqueid", UNIQUEID_LEN); |
Christopher Faulet | 0f22695 | 2018-10-22 09:29:56 +0200 | [diff] [blame] | 5440 | |
Christopher Faulet | f4eb75d | 2018-10-11 15:55:07 +0200 | [diff] [blame] | 5441 | __attribute__((constructor)) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 5442 | static void __http_protocol_init(void) |
Christopher Faulet | f4eb75d | 2018-10-11 15:55:07 +0200 | [diff] [blame] | 5443 | { |
| 5444 | } |
| 5445 | |
| 5446 | |
| 5447 | /* |
| 5448 | * Local variables: |
| 5449 | * c-indent-level: 8 |
| 5450 | * c-basic-offset: 8 |
| 5451 | * End: |
| 5452 | */ |