Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1 | /* |
| 2 | * HTTP actions |
| 3 | * |
| 4 | * Copyright 2000-2018 Willy Tarreau <w@1wt.eu> |
| 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 | |
| 13 | #include <sys/types.h> |
| 14 | |
| 15 | #include <ctype.h> |
| 16 | #include <string.h> |
| 17 | #include <time.h> |
| 18 | |
Willy Tarreau | dcc048a | 2020-06-04 19:11:43 +0200 | [diff] [blame] | 19 | #include <haproxy/acl.h> |
Willy Tarreau | 122eba9 | 2020-06-04 10:15:32 +0200 | [diff] [blame] | 20 | #include <haproxy/action.h> |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 21 | #include <haproxy/api.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 22 | #include <haproxy/arg.h> |
| 23 | #include <haproxy/capture-t.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 24 | #include <haproxy/cfgparse.h> |
Willy Tarreau | c13ed53 | 2020-06-02 10:22:45 +0200 | [diff] [blame] | 25 | #include <haproxy/chunk.h> |
Willy Tarreau | f268ee8 | 2020-06-04 17:05:57 +0200 | [diff] [blame] | 26 | #include <haproxy/global.h> |
Willy Tarreau | cd72d8c | 2020-06-02 19:11:26 +0200 | [diff] [blame] | 27 | #include <haproxy/http.h> |
Willy Tarreau | c2b1ff0 | 2020-06-04 21:21:03 +0200 | [diff] [blame] | 28 | #include <haproxy/http_ana.h> |
Willy Tarreau | 8773533 | 2020-06-04 09:08:41 +0200 | [diff] [blame] | 29 | #include <haproxy/http_htx.h> |
Willy Tarreau | c761f84 | 2020-06-04 11:40:28 +0200 | [diff] [blame] | 30 | #include <haproxy/http_rules.h> |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 31 | #include <haproxy/log.h> |
Willy Tarreau | 225a90a | 2020-06-04 15:06:28 +0200 | [diff] [blame] | 32 | #include <haproxy/pattern.h> |
Willy Tarreau | d0ef439 | 2020-06-02 09:38:52 +0200 | [diff] [blame] | 33 | #include <haproxy/pool.h> |
Willy Tarreau | 7cd8b6e | 2020-06-02 17:32:26 +0200 | [diff] [blame] | 34 | #include <haproxy/regex.h> |
Willy Tarreau | e6ce10b | 2020-06-04 15:33:47 +0200 | [diff] [blame] | 35 | #include <haproxy/sample.h> |
Willy Tarreau | 5edca2f | 2022-05-27 09:25:10 +0200 | [diff] [blame] | 36 | #include <haproxy/sc_strm.h> |
Willy Tarreau | cb086c6 | 2022-05-27 09:47:12 +0200 | [diff] [blame] | 37 | #include <haproxy/stconn.h> |
Willy Tarreau | 48fbcae | 2020-06-03 18:09:46 +0200 | [diff] [blame] | 38 | #include <haproxy/tools.h> |
Willy Tarreau | 8c42b8a | 2020-06-04 19:27:34 +0200 | [diff] [blame] | 39 | #include <haproxy/uri_auth-t.h> |
Tim Duesterhus | d2bedcc | 2021-04-15 21:45:57 +0200 | [diff] [blame] | 40 | #include <haproxy/uri_normalizer.h> |
Willy Tarreau | d678805 | 2020-05-27 15:59:00 +0200 | [diff] [blame] | 41 | #include <haproxy/version.h> |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 42 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 43 | |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 44 | /* Release memory allocated by most of HTTP actions. Concretly, it releases |
| 45 | * <arg.http>. |
| 46 | */ |
| 47 | static void release_http_action(struct act_rule *rule) |
| 48 | { |
| 49 | struct logformat_node *lf, *lfb; |
| 50 | |
Tim Duesterhus | ed52637 | 2020-03-05 17:56:33 +0100 | [diff] [blame] | 51 | istfree(&rule->arg.http.str); |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 52 | if (rule->arg.http.re) |
| 53 | regex_free(rule->arg.http.re); |
| 54 | list_for_each_entry_safe(lf, lfb, &rule->arg.http.fmt, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 55 | LIST_DELETE(&lf->list); |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 56 | release_sample_expr(lf->expr); |
| 57 | free(lf->arg); |
| 58 | free(lf); |
| 59 | } |
| 60 | } |
| 61 | |
Christopher Faulet | 5cb513a | 2020-05-13 17:56:56 +0200 | [diff] [blame] | 62 | /* Release memory allocated by HTTP actions relying on an http reply. Concretly, |
| 63 | * it releases <.arg.http_reply> |
| 64 | */ |
| 65 | static void release_act_http_reply(struct act_rule *rule) |
| 66 | { |
| 67 | release_http_reply(rule->arg.http_reply); |
| 68 | rule->arg.http_reply = NULL; |
| 69 | } |
| 70 | |
| 71 | |
| 72 | /* Check function for HTTP actions relying on an http reply. The function |
| 73 | * returns 1 in success case, otherwise, it returns 0 and err is filled. |
| 74 | */ |
| 75 | static int check_act_http_reply(struct act_rule *rule, struct proxy *px, char **err) |
| 76 | { |
| 77 | struct http_reply *reply = rule->arg.http_reply; |
| 78 | |
| 79 | if (!http_check_http_reply(reply, px, err)) { |
| 80 | release_act_http_reply(rule); |
| 81 | return 0; |
| 82 | } |
| 83 | return 1; |
| 84 | } |
| 85 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 86 | |
| 87 | /* This function executes one of the set-{method,path,query,uri} actions. It |
| 88 | * builds a string in the trash from the specified format string. It finds |
Christopher Faulet | 2c22a69 | 2019-12-18 15:39:56 +0100 | [diff] [blame] | 89 | * the action to be performed in <.action>, previously filled by function |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 90 | * parse_set_req_line(). The replacement action is executed by the function |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 91 | * http_action_set_req_line(). On success, it returns ACT_RET_CONT. If an error |
| 92 | * occurs while soft rewrites are enabled, the action is canceled, but the rule |
| 93 | * processing continue. Otherwsize ACT_RET_ERR is returned. |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 94 | */ |
| 95 | static enum act_return http_action_set_req_line(struct act_rule *rule, struct proxy *px, |
| 96 | struct session *sess, struct stream *s, int flags) |
| 97 | { |
| 98 | struct buffer *replace; |
Christopher Faulet | 1340376 | 2019-12-13 09:01:57 +0100 | [diff] [blame] | 99 | enum act_return ret = ACT_RET_CONT; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 100 | |
| 101 | replace = alloc_trash_chunk(); |
| 102 | if (!replace) |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 103 | goto fail_alloc; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 104 | |
| 105 | /* If we have to create a query string, prepare a '?'. */ |
Christopher Faulet | 2c22a69 | 2019-12-18 15:39:56 +0100 | [diff] [blame] | 106 | if (rule->action == 2) // set-query |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 107 | replace->area[replace->data++] = '?'; |
| 108 | replace->data += build_logline(s, replace->area + replace->data, |
| 109 | replace->size - replace->data, |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 110 | &rule->arg.http.fmt); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 111 | |
Christopher Faulet | 2c22a69 | 2019-12-18 15:39:56 +0100 | [diff] [blame] | 112 | if (http_req_replace_stline(rule->action, replace->area, replace->data, px, s) == -1) |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 113 | goto fail_rewrite; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 114 | |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 115 | leave: |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 116 | free_trash_chunk(replace); |
| 117 | return ret; |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 118 | |
| 119 | fail_alloc: |
| 120 | if (!(s->flags & SF_ERR_MASK)) |
| 121 | s->flags |= SF_ERR_RESOURCE; |
| 122 | ret = ACT_RET_ERR; |
| 123 | goto leave; |
| 124 | |
| 125 | fail_rewrite: |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 126 | _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_rewrites); |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 127 | if (s->flags & SF_BE_ASSIGNED) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 128 | _HA_ATOMIC_INC(&s->be->be_counters.failed_rewrites); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 129 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 130 | _HA_ATOMIC_INC(&sess->listener->counters->failed_rewrites); |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 131 | if (objt_server(s->target)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 132 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_rewrites); |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 133 | |
Christopher Faulet | 333bf8c | 2020-01-22 14:38:05 +0100 | [diff] [blame] | 134 | if (!(s->txn->req.flags & HTTP_MSGF_SOFT_RW)) { |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 135 | ret = ACT_RET_ERR; |
Christopher Faulet | 333bf8c | 2020-01-22 14:38:05 +0100 | [diff] [blame] | 136 | if (!(s->flags & SF_ERR_MASK)) |
| 137 | s->flags |= SF_ERR_PRXCOND; |
| 138 | } |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 139 | goto leave; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | /* parse an http-request action among : |
| 143 | * set-method |
| 144 | * set-path |
Christopher Faulet | 312294f | 2020-09-02 17:17:44 +0200 | [diff] [blame] | 145 | * set-pathq |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 146 | * set-query |
| 147 | * set-uri |
| 148 | * |
| 149 | * All of them accept a single argument of type string representing a log-format. |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 150 | * The resulting rule makes use of <http.fmt> to store the log-format list head, |
Christopher Faulet | 2c22a69 | 2019-12-18 15:39:56 +0100 | [diff] [blame] | 151 | * and <.action> to store the action type as an int (0=method, 1=path, 2=query, |
| 152 | * 3=uri). It returns ACT_RET_PRS_OK on success, ACT_RET_PRS_ERR on error. |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 153 | */ |
| 154 | static enum act_parse_ret parse_set_req_line(const char **args, int *orig_arg, struct proxy *px, |
| 155 | struct act_rule *rule, char **err) |
| 156 | { |
| 157 | int cur_arg = *orig_arg; |
Christopher Faulet | 7a06ffb | 2021-10-13 17:22:17 +0200 | [diff] [blame] | 158 | int cap = 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 159 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 160 | switch (args[0][4]) { |
| 161 | case 'm' : |
Christopher Faulet | 2c22a69 | 2019-12-18 15:39:56 +0100 | [diff] [blame] | 162 | rule->action = 0; // set-method |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 163 | break; |
| 164 | case 'p' : |
Christopher Faulet | 312294f | 2020-09-02 17:17:44 +0200 | [diff] [blame] | 165 | if (args[0][8] == 'q') |
| 166 | rule->action = 4; // set-pathq |
| 167 | else |
| 168 | rule->action = 1; // set-path |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 169 | break; |
| 170 | case 'q' : |
Christopher Faulet | 2c22a69 | 2019-12-18 15:39:56 +0100 | [diff] [blame] | 171 | rule->action = 2; // set-query |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 172 | break; |
| 173 | case 'u' : |
Christopher Faulet | 2c22a69 | 2019-12-18 15:39:56 +0100 | [diff] [blame] | 174 | rule->action = 3; // set-uri |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 175 | break; |
| 176 | default: |
| 177 | memprintf(err, "internal error: unhandled action '%s'", args[0]); |
| 178 | return ACT_RET_PRS_ERR; |
| 179 | } |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 180 | rule->action_ptr = http_action_set_req_line; |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 181 | rule->release_ptr = release_http_action; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 182 | |
| 183 | if (!*args[cur_arg] || |
| 184 | (*args[cur_arg + 1] && strcmp(args[cur_arg + 1], "if") != 0 && strcmp(args[cur_arg + 1], "unless") != 0)) { |
| 185 | memprintf(err, "expects exactly 1 argument <format>"); |
| 186 | return ACT_RET_PRS_ERR; |
| 187 | } |
| 188 | |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 189 | LIST_INIT(&rule->arg.http.fmt); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 190 | px->conf.args.ctx = ARGC_HRQ; |
Christopher Faulet | 7a06ffb | 2021-10-13 17:22:17 +0200 | [diff] [blame] | 191 | if (px->cap & PR_CAP_FE) |
| 192 | cap |= SMP_VAL_FE_HRQ_HDR; |
| 193 | if (px->cap & PR_CAP_BE) |
| 194 | cap |= SMP_VAL_BE_HRQ_HDR; |
| 195 | if (!parse_logformat_string(args[cur_arg], px, &rule->arg.http.fmt, LOG_OPT_HTTP, cap, err)) { |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 196 | return ACT_RET_PRS_ERR; |
| 197 | } |
| 198 | |
| 199 | (*orig_arg)++; |
| 200 | return ACT_RET_PRS_OK; |
| 201 | } |
| 202 | |
Tim Duesterhus | d2bedcc | 2021-04-15 21:45:57 +0200 | [diff] [blame] | 203 | /* This function executes the http-request normalize-uri action. |
| 204 | * `rule->action` is expected to be a value from `enum act_normalize_uri`. |
| 205 | * |
| 206 | * On success, it returns ACT_RET_CONT. If an error |
| 207 | * occurs while soft rewrites are enabled, the action is canceled, but the rule |
| 208 | * processing continue. Otherwsize ACT_RET_ERR is returned. |
| 209 | */ |
| 210 | static enum act_return http_action_normalize_uri(struct act_rule *rule, struct proxy *px, |
| 211 | struct session *sess, struct stream *s, int flags) |
| 212 | { |
| 213 | enum act_return ret = ACT_RET_CONT; |
| 214 | struct htx *htx = htxbuf(&s->req.buf); |
| 215 | const struct ist uri = htx_sl_req_uri(http_get_stline(htx)); |
| 216 | struct buffer *replace = alloc_trash_chunk(); |
| 217 | enum uri_normalizer_err err = URI_NORMALIZER_ERR_INTERNAL_ERROR; |
| 218 | |
| 219 | if (!replace) |
| 220 | goto fail_alloc; |
| 221 | |
| 222 | switch ((enum act_normalize_uri) rule->action) { |
Tim Duesterhus | 5be6ab2 | 2021-04-17 11:21:10 +0200 | [diff] [blame] | 223 | case ACT_NORMALIZE_URI_PATH_MERGE_SLASHES: { |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 224 | struct http_uri_parser parser = http_uri_parser_init(uri); |
| 225 | const struct ist path = http_parse_path(&parser); |
Tim Duesterhus | d371e99 | 2021-04-15 21:45:58 +0200 | [diff] [blame] | 226 | struct ist newpath = ist2(replace->area, replace->size); |
| 227 | |
| 228 | if (!isttest(path)) |
| 229 | goto leave; |
| 230 | |
| 231 | err = uri_normalizer_path_merge_slashes(iststop(path, '?'), &newpath); |
| 232 | |
| 233 | if (err != URI_NORMALIZER_ERR_NONE) |
| 234 | break; |
| 235 | |
| 236 | if (!http_replace_req_path(htx, newpath, 0)) |
| 237 | goto fail_rewrite; |
| 238 | |
| 239 | break; |
| 240 | } |
Maximilian Mader | ff3bb8b | 2021-04-21 00:22:50 +0200 | [diff] [blame] | 241 | case ACT_NORMALIZE_URI_PATH_STRIP_DOT: { |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 242 | struct http_uri_parser parser = http_uri_parser_init(uri); |
| 243 | const struct ist path = http_parse_path(&parser); |
Maximilian Mader | ff3bb8b | 2021-04-21 00:22:50 +0200 | [diff] [blame] | 244 | struct ist newpath = ist2(replace->area, replace->size); |
| 245 | |
| 246 | if (!isttest(path)) |
| 247 | goto leave; |
| 248 | |
| 249 | err = uri_normalizer_path_dot(iststop(path, '?'), &newpath); |
| 250 | |
| 251 | if (err != URI_NORMALIZER_ERR_NONE) |
| 252 | break; |
| 253 | |
| 254 | if (!http_replace_req_path(htx, newpath, 0)) |
| 255 | goto fail_rewrite; |
| 256 | |
| 257 | break; |
| 258 | } |
Tim Duesterhus | 5be6ab2 | 2021-04-17 11:21:10 +0200 | [diff] [blame] | 259 | case ACT_NORMALIZE_URI_PATH_STRIP_DOTDOT: |
| 260 | case ACT_NORMALIZE_URI_PATH_STRIP_DOTDOT_FULL: { |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 261 | struct http_uri_parser parser = http_uri_parser_init(uri); |
| 262 | const struct ist path = http_parse_path(&parser); |
Tim Duesterhus | 9982fc2 | 2021-04-15 21:45:59 +0200 | [diff] [blame] | 263 | struct ist newpath = ist2(replace->area, replace->size); |
| 264 | |
| 265 | if (!isttest(path)) |
| 266 | goto leave; |
| 267 | |
Tim Duesterhus | 5be6ab2 | 2021-04-17 11:21:10 +0200 | [diff] [blame] | 268 | err = uri_normalizer_path_dotdot(iststop(path, '?'), rule->action == ACT_NORMALIZE_URI_PATH_STRIP_DOTDOT_FULL, &newpath); |
Tim Duesterhus | 9982fc2 | 2021-04-15 21:45:59 +0200 | [diff] [blame] | 269 | |
| 270 | if (err != URI_NORMALIZER_ERR_NONE) |
| 271 | break; |
| 272 | |
| 273 | if (!http_replace_req_path(htx, newpath, 0)) |
| 274 | goto fail_rewrite; |
| 275 | |
| 276 | break; |
| 277 | } |
Tim Duesterhus | 5be6ab2 | 2021-04-17 11:21:10 +0200 | [diff] [blame] | 278 | case ACT_NORMALIZE_URI_QUERY_SORT_BY_NAME: { |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 279 | struct http_uri_parser parser = http_uri_parser_init(uri); |
| 280 | const struct ist path = http_parse_path(&parser); |
Tim Duesterhus | d7b89be | 2021-04-15 21:46:01 +0200 | [diff] [blame] | 281 | struct ist newquery = ist2(replace->area, replace->size); |
| 282 | |
| 283 | if (!isttest(path)) |
| 284 | goto leave; |
| 285 | |
| 286 | err = uri_normalizer_query_sort(istfind(path, '?'), '&', &newquery); |
| 287 | |
| 288 | if (err != URI_NORMALIZER_ERR_NONE) |
| 289 | break; |
| 290 | |
| 291 | if (!http_replace_req_query(htx, newquery)) |
| 292 | goto fail_rewrite; |
| 293 | |
| 294 | break; |
| 295 | } |
Tim Duesterhus | 5be6ab2 | 2021-04-17 11:21:10 +0200 | [diff] [blame] | 296 | case ACT_NORMALIZE_URI_PERCENT_TO_UPPERCASE: |
| 297 | case ACT_NORMALIZE_URI_PERCENT_TO_UPPERCASE_STRICT: { |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 298 | struct http_uri_parser parser = http_uri_parser_init(uri); |
| 299 | const struct ist path = http_parse_path(&parser); |
Tim Duesterhus | a407193 | 2021-04-15 21:46:02 +0200 | [diff] [blame] | 300 | struct ist newpath = ist2(replace->area, replace->size); |
| 301 | |
| 302 | if (!isttest(path)) |
| 303 | goto leave; |
| 304 | |
Tim Duesterhus | 5be6ab2 | 2021-04-17 11:21:10 +0200 | [diff] [blame] | 305 | err = uri_normalizer_percent_upper(path, rule->action == ACT_NORMALIZE_URI_PERCENT_TO_UPPERCASE_STRICT, &newpath); |
Tim Duesterhus | a407193 | 2021-04-15 21:46:02 +0200 | [diff] [blame] | 306 | |
| 307 | if (err != URI_NORMALIZER_ERR_NONE) |
| 308 | break; |
| 309 | |
| 310 | if (!http_replace_req_path(htx, newpath, 1)) |
| 311 | goto fail_rewrite; |
| 312 | |
| 313 | break; |
| 314 | } |
Tim Duesterhus | 2e4a18e | 2021-04-21 21:20:36 +0200 | [diff] [blame] | 315 | case ACT_NORMALIZE_URI_PERCENT_DECODE_UNRESERVED: |
| 316 | case ACT_NORMALIZE_URI_PERCENT_DECODE_UNRESERVED_STRICT: { |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 317 | struct http_uri_parser parser = http_uri_parser_init(uri); |
| 318 | const struct ist path = http_parse_path(&parser); |
Tim Duesterhus | 2e4a18e | 2021-04-21 21:20:36 +0200 | [diff] [blame] | 319 | struct ist newpath = ist2(replace->area, replace->size); |
| 320 | |
| 321 | if (!isttest(path)) |
| 322 | goto leave; |
| 323 | |
| 324 | err = uri_normalizer_percent_decode_unreserved(path, rule->action == ACT_NORMALIZE_URI_PERCENT_DECODE_UNRESERVED_STRICT, &newpath); |
| 325 | |
| 326 | if (err != URI_NORMALIZER_ERR_NONE) |
| 327 | break; |
| 328 | |
| 329 | if (!http_replace_req_path(htx, newpath, 1)) |
| 330 | goto fail_rewrite; |
| 331 | |
| 332 | break; |
| 333 | } |
Tim Duesterhus | c9e05ab | 2021-05-10 17:28:25 +0200 | [diff] [blame] | 334 | case ACT_NORMALIZE_URI_FRAGMENT_STRIP: { |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 335 | struct http_uri_parser parser = http_uri_parser_init(uri); |
| 336 | const struct ist path = http_parse_path(&parser); |
Tim Duesterhus | c9e05ab | 2021-05-10 17:28:25 +0200 | [diff] [blame] | 337 | struct ist newpath = ist2(replace->area, replace->size); |
| 338 | |
| 339 | if (!isttest(path)) |
| 340 | goto leave; |
| 341 | |
| 342 | err = uri_normalizer_fragment_strip(path, &newpath); |
| 343 | |
| 344 | if (err != URI_NORMALIZER_ERR_NONE) |
| 345 | break; |
| 346 | |
| 347 | if (!http_replace_req_path(htx, newpath, 1)) |
| 348 | goto fail_rewrite; |
| 349 | |
| 350 | break; |
| 351 | } |
Tim Duesterhus | dec1c36 | 2021-05-10 17:28:26 +0200 | [diff] [blame] | 352 | case ACT_NORMALIZE_URI_FRAGMENT_ENCODE: { |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 353 | struct http_uri_parser parser = http_uri_parser_init(uri); |
| 354 | const struct ist path = http_parse_path(&parser); |
Tim Duesterhus | dec1c36 | 2021-05-10 17:28:26 +0200 | [diff] [blame] | 355 | struct ist newpath = ist2(replace->area, replace->size); |
| 356 | |
| 357 | if (!isttest(path)) |
| 358 | goto leave; |
| 359 | |
| 360 | err = uri_normalizer_fragment_encode(path, &newpath); |
| 361 | |
| 362 | if (err != URI_NORMALIZER_ERR_NONE) |
| 363 | break; |
| 364 | |
| 365 | if (!http_replace_req_path(htx, newpath, 1)) |
| 366 | goto fail_rewrite; |
| 367 | |
| 368 | break; |
| 369 | } |
Tim Duesterhus | d2bedcc | 2021-04-15 21:45:57 +0200 | [diff] [blame] | 370 | } |
| 371 | |
| 372 | switch (err) { |
| 373 | case URI_NORMALIZER_ERR_NONE: |
| 374 | break; |
| 375 | case URI_NORMALIZER_ERR_INTERNAL_ERROR: |
| 376 | ret = ACT_RET_ERR; |
| 377 | break; |
| 378 | case URI_NORMALIZER_ERR_INVALID_INPUT: |
| 379 | ret = ACT_RET_INV; |
| 380 | break; |
| 381 | case URI_NORMALIZER_ERR_ALLOC: |
| 382 | goto fail_alloc; |
| 383 | } |
| 384 | |
| 385 | leave: |
| 386 | free_trash_chunk(replace); |
| 387 | return ret; |
| 388 | |
| 389 | fail_alloc: |
| 390 | if (!(s->flags & SF_ERR_MASK)) |
| 391 | s->flags |= SF_ERR_RESOURCE; |
| 392 | ret = ACT_RET_ERR; |
| 393 | goto leave; |
| 394 | |
| 395 | fail_rewrite: |
| 396 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_rewrites, 1); |
| 397 | if (s->flags & SF_BE_ASSIGNED) |
| 398 | _HA_ATOMIC_ADD(&s->be->be_counters.failed_rewrites, 1); |
| 399 | if (sess->listener && sess->listener->counters) |
| 400 | _HA_ATOMIC_ADD(&sess->listener->counters->failed_rewrites, 1); |
| 401 | if (objt_server(s->target)) |
| 402 | _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_rewrites, 1); |
| 403 | |
| 404 | if (!(s->txn->req.flags & HTTP_MSGF_SOFT_RW)) { |
| 405 | ret = ACT_RET_ERR; |
| 406 | if (!(s->flags & SF_ERR_MASK)) |
| 407 | s->flags |= SF_ERR_PRXCOND; |
| 408 | } |
| 409 | goto leave; |
| 410 | } |
| 411 | |
| 412 | /* Parses the http-request normalize-uri action. It expects a single <normalizer> |
| 413 | * argument, corresponding too a value in `enum act_normalize_uri`. |
| 414 | * |
| 415 | * It returns ACT_RET_PRS_OK on success, ACT_RET_PRS_ERR on error. |
| 416 | */ |
| 417 | static enum act_parse_ret parse_http_normalize_uri(const char **args, int *orig_arg, struct proxy *px, |
| 418 | struct act_rule *rule, char **err) |
| 419 | { |
| 420 | int cur_arg = *orig_arg; |
| 421 | |
| 422 | rule->action_ptr = http_action_normalize_uri; |
| 423 | rule->release_ptr = NULL; |
| 424 | |
| 425 | if (!*args[cur_arg]) { |
| 426 | memprintf(err, "missing argument <normalizer>"); |
| 427 | return ACT_RET_PRS_ERR; |
| 428 | } |
| 429 | |
Tim Duesterhus | 5be6ab2 | 2021-04-17 11:21:10 +0200 | [diff] [blame] | 430 | if (strcmp(args[cur_arg], "path-merge-slashes") == 0) { |
Tim Duesterhus | d371e99 | 2021-04-15 21:45:58 +0200 | [diff] [blame] | 431 | cur_arg++; |
Tim Duesterhus | d2bedcc | 2021-04-15 21:45:57 +0200 | [diff] [blame] | 432 | |
Tim Duesterhus | 5be6ab2 | 2021-04-17 11:21:10 +0200 | [diff] [blame] | 433 | rule->action = ACT_NORMALIZE_URI_PATH_MERGE_SLASHES; |
Tim Duesterhus | d2bedcc | 2021-04-15 21:45:57 +0200 | [diff] [blame] | 434 | } |
Maximilian Mader | ff3bb8b | 2021-04-21 00:22:50 +0200 | [diff] [blame] | 435 | else if (strcmp(args[cur_arg], "path-strip-dot") == 0) { |
| 436 | cur_arg++; |
| 437 | |
| 438 | rule->action = ACT_NORMALIZE_URI_PATH_STRIP_DOT; |
| 439 | } |
Tim Duesterhus | 5be6ab2 | 2021-04-17 11:21:10 +0200 | [diff] [blame] | 440 | else if (strcmp(args[cur_arg], "path-strip-dotdot") == 0) { |
Tim Duesterhus | 9982fc2 | 2021-04-15 21:45:59 +0200 | [diff] [blame] | 441 | cur_arg++; |
| 442 | |
Tim Duesterhus | 560e1a6 | 2021-04-15 21:46:00 +0200 | [diff] [blame] | 443 | if (strcmp(args[cur_arg], "full") == 0) { |
| 444 | cur_arg++; |
Tim Duesterhus | 5be6ab2 | 2021-04-17 11:21:10 +0200 | [diff] [blame] | 445 | rule->action = ACT_NORMALIZE_URI_PATH_STRIP_DOTDOT_FULL; |
Tim Duesterhus | 560e1a6 | 2021-04-15 21:46:00 +0200 | [diff] [blame] | 446 | } |
| 447 | else if (!*args[cur_arg]) { |
Tim Duesterhus | 5be6ab2 | 2021-04-17 11:21:10 +0200 | [diff] [blame] | 448 | rule->action = ACT_NORMALIZE_URI_PATH_STRIP_DOTDOT; |
Tim Duesterhus | 560e1a6 | 2021-04-15 21:46:00 +0200 | [diff] [blame] | 449 | } |
| 450 | else if (strcmp(args[cur_arg], "if") != 0 && strcmp(args[cur_arg], "unless") != 0) { |
Tim Duesterhus | 2f41313 | 2021-05-10 23:21:20 +0200 | [diff] [blame] | 451 | memprintf(err, "unknown argument '%s' for 'path-strip-dotdot' normalizer", args[cur_arg]); |
Tim Duesterhus | 560e1a6 | 2021-04-15 21:46:00 +0200 | [diff] [blame] | 452 | return ACT_RET_PRS_ERR; |
| 453 | } |
Tim Duesterhus | 9982fc2 | 2021-04-15 21:45:59 +0200 | [diff] [blame] | 454 | } |
Tim Duesterhus | 5be6ab2 | 2021-04-17 11:21:10 +0200 | [diff] [blame] | 455 | else if (strcmp(args[cur_arg], "query-sort-by-name") == 0) { |
Tim Duesterhus | d7b89be | 2021-04-15 21:46:01 +0200 | [diff] [blame] | 456 | cur_arg++; |
| 457 | |
Tim Duesterhus | 5be6ab2 | 2021-04-17 11:21:10 +0200 | [diff] [blame] | 458 | rule->action = ACT_NORMALIZE_URI_QUERY_SORT_BY_NAME; |
Tim Duesterhus | d7b89be | 2021-04-15 21:46:01 +0200 | [diff] [blame] | 459 | } |
Tim Duesterhus | 5be6ab2 | 2021-04-17 11:21:10 +0200 | [diff] [blame] | 460 | else if (strcmp(args[cur_arg], "percent-to-uppercase") == 0) { |
Tim Duesterhus | a407193 | 2021-04-15 21:46:02 +0200 | [diff] [blame] | 461 | cur_arg++; |
| 462 | |
| 463 | if (strcmp(args[cur_arg], "strict") == 0) { |
| 464 | cur_arg++; |
Tim Duesterhus | 5be6ab2 | 2021-04-17 11:21:10 +0200 | [diff] [blame] | 465 | rule->action = ACT_NORMALIZE_URI_PERCENT_TO_UPPERCASE_STRICT; |
Tim Duesterhus | a407193 | 2021-04-15 21:46:02 +0200 | [diff] [blame] | 466 | } |
| 467 | else if (!*args[cur_arg]) { |
Tim Duesterhus | 5be6ab2 | 2021-04-17 11:21:10 +0200 | [diff] [blame] | 468 | rule->action = ACT_NORMALIZE_URI_PERCENT_TO_UPPERCASE; |
Tim Duesterhus | a407193 | 2021-04-15 21:46:02 +0200 | [diff] [blame] | 469 | } |
| 470 | else if (strcmp(args[cur_arg], "if") != 0 && strcmp(args[cur_arg], "unless") != 0) { |
Tim Duesterhus | 2f41313 | 2021-05-10 23:21:20 +0200 | [diff] [blame] | 471 | memprintf(err, "unknown argument '%s' for 'percent-to-uppercase' normalizer", args[cur_arg]); |
Tim Duesterhus | a407193 | 2021-04-15 21:46:02 +0200 | [diff] [blame] | 472 | return ACT_RET_PRS_ERR; |
| 473 | } |
| 474 | } |
Tim Duesterhus | 2e4a18e | 2021-04-21 21:20:36 +0200 | [diff] [blame] | 475 | else if (strcmp(args[cur_arg], "percent-decode-unreserved") == 0) { |
| 476 | cur_arg++; |
| 477 | |
| 478 | if (strcmp(args[cur_arg], "strict") == 0) { |
| 479 | cur_arg++; |
| 480 | rule->action = ACT_NORMALIZE_URI_PERCENT_DECODE_UNRESERVED_STRICT; |
| 481 | } |
| 482 | else if (!*args[cur_arg]) { |
| 483 | rule->action = ACT_NORMALIZE_URI_PERCENT_DECODE_UNRESERVED; |
| 484 | } |
| 485 | else if (strcmp(args[cur_arg], "if") != 0 && strcmp(args[cur_arg], "unless") != 0) { |
| 486 | memprintf(err, "unknown argument '%s' for 'percent-decode-unreserved' normalizer", args[cur_arg]); |
| 487 | return ACT_RET_PRS_ERR; |
| 488 | } |
| 489 | } |
Tim Duesterhus | c9e05ab | 2021-05-10 17:28:25 +0200 | [diff] [blame] | 490 | else if (strcmp(args[cur_arg], "fragment-strip") == 0) { |
| 491 | cur_arg++; |
| 492 | |
| 493 | rule->action = ACT_NORMALIZE_URI_FRAGMENT_STRIP; |
| 494 | } |
Tim Duesterhus | dec1c36 | 2021-05-10 17:28:26 +0200 | [diff] [blame] | 495 | else if (strcmp(args[cur_arg], "fragment-encode") == 0) { |
| 496 | cur_arg++; |
| 497 | |
| 498 | rule->action = ACT_NORMALIZE_URI_FRAGMENT_ENCODE; |
| 499 | } |
Tim Duesterhus | d2bedcc | 2021-04-15 21:45:57 +0200 | [diff] [blame] | 500 | else { |
| 501 | memprintf(err, "unknown normalizer '%s'", args[cur_arg]); |
| 502 | return ACT_RET_PRS_ERR; |
| 503 | } |
| 504 | |
| 505 | *orig_arg = cur_arg; |
| 506 | return ACT_RET_PRS_OK; |
| 507 | } |
| 508 | |
Willy Tarreau | 3381022 | 2019-06-12 17:44:02 +0200 | [diff] [blame] | 509 | /* This function executes a replace-uri action. It finds its arguments in |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 510 | * <rule>.arg.http. It builds a string in the trash from the format string |
Willy Tarreau | 3381022 | 2019-06-12 17:44:02 +0200 | [diff] [blame] | 511 | * previously filled by function parse_replace_uri() and will execute the regex |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 512 | * in <http.re> to replace the URI. It uses the format string present in |
Christopher Faulet | 2c22a69 | 2019-12-18 15:39:56 +0100 | [diff] [blame] | 513 | * <http.fmt>. The component to act on (path/uri) is taken from <.action> which |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 514 | * contains 1 for the path or 3 for the URI (values used by |
| 515 | * http_req_replace_stline()). On success, it returns ACT_RET_CONT. If an error |
| 516 | * occurs while soft rewrites are enabled, the action is canceled, but the rule |
| 517 | * processing continue. Otherwsize ACT_RET_ERR is returned. |
Willy Tarreau | 3381022 | 2019-06-12 17:44:02 +0200 | [diff] [blame] | 518 | */ |
| 519 | static enum act_return http_action_replace_uri(struct act_rule *rule, struct proxy *px, |
| 520 | struct session *sess, struct stream *s, int flags) |
| 521 | { |
Christopher Faulet | 1340376 | 2019-12-13 09:01:57 +0100 | [diff] [blame] | 522 | enum act_return ret = ACT_RET_CONT; |
Willy Tarreau | 3381022 | 2019-06-12 17:44:02 +0200 | [diff] [blame] | 523 | struct buffer *replace, *output; |
| 524 | struct ist uri; |
| 525 | int len; |
| 526 | |
| 527 | replace = alloc_trash_chunk(); |
| 528 | output = alloc_trash_chunk(); |
| 529 | if (!replace || !output) |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 530 | goto fail_alloc; |
Christopher Faulet | 12c28b6 | 2019-07-15 16:30:24 +0200 | [diff] [blame] | 531 | uri = htx_sl_req_uri(http_get_stline(htxbuf(&s->req.buf))); |
Willy Tarreau | 262c3f1 | 2019-12-17 06:52:51 +0100 | [diff] [blame] | 532 | |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 533 | if (rule->action == 1) { // replace-path |
| 534 | struct http_uri_parser parser = http_uri_parser_init(uri); |
| 535 | uri = iststop(http_parse_path(&parser), '?'); |
| 536 | } |
| 537 | else if (rule->action == 4) { // replace-pathq |
| 538 | struct http_uri_parser parser = http_uri_parser_init(uri); |
| 539 | uri = http_parse_path(&parser); |
| 540 | } |
Willy Tarreau | 262c3f1 | 2019-12-17 06:52:51 +0100 | [diff] [blame] | 541 | |
Christopher Faulet | 114e759 | 2022-04-08 10:44:21 +0200 | [diff] [blame] | 542 | if (!istlen(uri)) |
| 543 | goto leave; |
| 544 | |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 545 | if (!regex_exec_match2(rule->arg.http.re, uri.ptr, uri.len, MAX_MATCH, pmatch, 0)) |
Willy Tarreau | 3381022 | 2019-06-12 17:44:02 +0200 | [diff] [blame] | 546 | goto leave; |
| 547 | |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 548 | replace->data = build_logline(s, replace->area, replace->size, &rule->arg.http.fmt); |
Willy Tarreau | 3381022 | 2019-06-12 17:44:02 +0200 | [diff] [blame] | 549 | |
| 550 | /* note: uri.ptr doesn't need to be zero-terminated because it will |
| 551 | * only be used to pick pmatch references. |
| 552 | */ |
| 553 | len = exp_replace(output->area, output->size, uri.ptr, replace->area, pmatch); |
| 554 | if (len == -1) |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 555 | goto fail_rewrite; |
Willy Tarreau | 3381022 | 2019-06-12 17:44:02 +0200 | [diff] [blame] | 556 | |
Christopher Faulet | 2c22a69 | 2019-12-18 15:39:56 +0100 | [diff] [blame] | 557 | if (http_req_replace_stline(rule->action, output->area, len, px, s) == -1) |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 558 | goto fail_rewrite; |
Willy Tarreau | 3381022 | 2019-06-12 17:44:02 +0200 | [diff] [blame] | 559 | |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 560 | leave: |
Willy Tarreau | 3381022 | 2019-06-12 17:44:02 +0200 | [diff] [blame] | 561 | free_trash_chunk(output); |
| 562 | free_trash_chunk(replace); |
| 563 | return ret; |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 564 | |
| 565 | fail_alloc: |
| 566 | if (!(s->flags & SF_ERR_MASK)) |
| 567 | s->flags |= SF_ERR_RESOURCE; |
| 568 | ret = ACT_RET_ERR; |
| 569 | goto leave; |
| 570 | |
| 571 | fail_rewrite: |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 572 | _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_rewrites); |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 573 | if (s->flags & SF_BE_ASSIGNED) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 574 | _HA_ATOMIC_INC(&s->be->be_counters.failed_rewrites); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 575 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 576 | _HA_ATOMIC_INC(&sess->listener->counters->failed_rewrites); |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 577 | if (objt_server(s->target)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 578 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_rewrites); |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 579 | |
Christopher Faulet | 333bf8c | 2020-01-22 14:38:05 +0100 | [diff] [blame] | 580 | if (!(s->txn->req.flags & HTTP_MSGF_SOFT_RW)) { |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 581 | ret = ACT_RET_ERR; |
Christopher Faulet | 333bf8c | 2020-01-22 14:38:05 +0100 | [diff] [blame] | 582 | if (!(s->flags & SF_ERR_MASK)) |
| 583 | s->flags |= SF_ERR_PRXCOND; |
| 584 | } |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 585 | goto leave; |
Willy Tarreau | 3381022 | 2019-06-12 17:44:02 +0200 | [diff] [blame] | 586 | } |
| 587 | |
Christopher Faulet | 312294f | 2020-09-02 17:17:44 +0200 | [diff] [blame] | 588 | /* parse a "replace-uri", "replace-path" or "replace-pathq" |
| 589 | * http-request action. |
Willy Tarreau | 3381022 | 2019-06-12 17:44:02 +0200 | [diff] [blame] | 590 | * This action takes 2 arguments (a regex and a replacement format string). |
Christopher Faulet | 2c22a69 | 2019-12-18 15:39:56 +0100 | [diff] [blame] | 591 | * The resulting rule makes use of <.action> to store the action (1/3 for now), |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 592 | * <http.re> to store the compiled regex, and <http.fmt> to store the log-format |
Willy Tarreau | 3381022 | 2019-06-12 17:44:02 +0200 | [diff] [blame] | 593 | * list head. It returns ACT_RET_PRS_OK on success, ACT_RET_PRS_ERR on error. |
| 594 | */ |
| 595 | static enum act_parse_ret parse_replace_uri(const char **args, int *orig_arg, struct proxy *px, |
| 596 | struct act_rule *rule, char **err) |
| 597 | { |
| 598 | int cur_arg = *orig_arg; |
Christopher Faulet | 7a06ffb | 2021-10-13 17:22:17 +0200 | [diff] [blame] | 599 | int cap = 0; |
Willy Tarreau | 3381022 | 2019-06-12 17:44:02 +0200 | [diff] [blame] | 600 | char *error = NULL; |
| 601 | |
Christopher Faulet | 312294f | 2020-09-02 17:17:44 +0200 | [diff] [blame] | 602 | switch (args[0][8]) { |
| 603 | case 'p': |
| 604 | if (args[0][12] == 'q') |
| 605 | rule->action = 4; // replace-pathq, same as set-pathq |
| 606 | else |
| 607 | rule->action = 1; // replace-path, same as set-path |
| 608 | break; |
| 609 | case 'u': |
Christopher Faulet | 2c22a69 | 2019-12-18 15:39:56 +0100 | [diff] [blame] | 610 | rule->action = 3; // replace-uri, same as set-uri |
Christopher Faulet | 312294f | 2020-09-02 17:17:44 +0200 | [diff] [blame] | 611 | break; |
| 612 | default: |
| 613 | memprintf(err, "internal error: unhandled action '%s'", args[0]); |
| 614 | return ACT_RET_PRS_ERR; |
| 615 | } |
Willy Tarreau | 262c3f1 | 2019-12-17 06:52:51 +0100 | [diff] [blame] | 616 | |
Willy Tarreau | 3381022 | 2019-06-12 17:44:02 +0200 | [diff] [blame] | 617 | rule->action_ptr = http_action_replace_uri; |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 618 | rule->release_ptr = release_http_action; |
Willy Tarreau | 3381022 | 2019-06-12 17:44:02 +0200 | [diff] [blame] | 619 | |
| 620 | if (!*args[cur_arg] || !*args[cur_arg+1] || |
| 621 | (*args[cur_arg+2] && strcmp(args[cur_arg+2], "if") != 0 && strcmp(args[cur_arg+2], "unless") != 0)) { |
| 622 | memprintf(err, "expects exactly 2 arguments <match-regex> and <replace-format>"); |
| 623 | return ACT_RET_PRS_ERR; |
| 624 | } |
| 625 | |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 626 | if (!(rule->arg.http.re = regex_comp(args[cur_arg], 1, 1, &error))) { |
Willy Tarreau | 3381022 | 2019-06-12 17:44:02 +0200 | [diff] [blame] | 627 | memprintf(err, "failed to parse the regex : %s", error); |
| 628 | free(error); |
| 629 | return ACT_RET_PRS_ERR; |
| 630 | } |
| 631 | |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 632 | LIST_INIT(&rule->arg.http.fmt); |
Willy Tarreau | 3381022 | 2019-06-12 17:44:02 +0200 | [diff] [blame] | 633 | px->conf.args.ctx = ARGC_HRQ; |
Christopher Faulet | 7a06ffb | 2021-10-13 17:22:17 +0200 | [diff] [blame] | 634 | if (px->cap & PR_CAP_FE) |
| 635 | cap |= SMP_VAL_FE_HRQ_HDR; |
| 636 | if (px->cap & PR_CAP_BE) |
| 637 | cap |= SMP_VAL_BE_HRQ_HDR; |
| 638 | if (!parse_logformat_string(args[cur_arg + 1], px, &rule->arg.http.fmt, LOG_OPT_HTTP, cap, err)) { |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 639 | regex_free(rule->arg.http.re); |
Willy Tarreau | 3381022 | 2019-06-12 17:44:02 +0200 | [diff] [blame] | 640 | return ACT_RET_PRS_ERR; |
| 641 | } |
| 642 | |
| 643 | (*orig_arg) += 2; |
| 644 | return ACT_RET_PRS_OK; |
| 645 | } |
| 646 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 647 | /* This function is just a compliant action wrapper for "set-status". */ |
| 648 | static enum act_return action_http_set_status(struct act_rule *rule, struct proxy *px, |
| 649 | struct session *sess, struct stream *s, int flags) |
| 650 | { |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 651 | if (http_res_set_status(rule->arg.http.i, rule->arg.http.str, s) == -1) { |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 652 | _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_rewrites); |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 653 | if (s->flags & SF_BE_ASSIGNED) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 654 | _HA_ATOMIC_INC(&s->be->be_counters.failed_rewrites); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 655 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 656 | _HA_ATOMIC_INC(&sess->listener->counters->failed_rewrites); |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 657 | if (objt_server(s->target)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 658 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_rewrites); |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 659 | |
Christopher Faulet | 333bf8c | 2020-01-22 14:38:05 +0100 | [diff] [blame] | 660 | if (!(s->txn->req.flags & HTTP_MSGF_SOFT_RW)) { |
Christopher Faulet | 333bf8c | 2020-01-22 14:38:05 +0100 | [diff] [blame] | 661 | if (!(s->flags & SF_ERR_MASK)) |
| 662 | s->flags |= SF_ERR_PRXCOND; |
Christopher Faulet | 692a6c2 | 2020-02-07 10:22:31 +0100 | [diff] [blame] | 663 | return ACT_RET_ERR; |
Christopher Faulet | 333bf8c | 2020-01-22 14:38:05 +0100 | [diff] [blame] | 664 | } |
Christopher Faulet | e00d06c | 2019-12-16 17:18:42 +0100 | [diff] [blame] | 665 | } |
| 666 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 667 | return ACT_RET_CONT; |
| 668 | } |
| 669 | |
| 670 | /* parse set-status action: |
| 671 | * This action accepts a single argument of type int representing |
| 672 | * an http status code. It returns ACT_RET_PRS_OK on success, |
| 673 | * ACT_RET_PRS_ERR on error. |
| 674 | */ |
| 675 | static enum act_parse_ret parse_http_set_status(const char **args, int *orig_arg, struct proxy *px, |
| 676 | struct act_rule *rule, char **err) |
| 677 | { |
| 678 | char *error; |
| 679 | |
| 680 | rule->action = ACT_CUSTOM; |
| 681 | rule->action_ptr = action_http_set_status; |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 682 | rule->release_ptr = release_http_action; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 683 | |
| 684 | /* Check if an argument is available */ |
| 685 | if (!*args[*orig_arg]) { |
| 686 | memprintf(err, "expects 1 argument: <status>; or 3 arguments: <status> reason <fmt>"); |
| 687 | return ACT_RET_PRS_ERR; |
| 688 | } |
| 689 | |
| 690 | /* convert status code as integer */ |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 691 | rule->arg.http.i = strtol(args[*orig_arg], &error, 10); |
| 692 | if (*error != '\0' || rule->arg.http.i < 100 || rule->arg.http.i > 999) { |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 693 | memprintf(err, "expects an integer status code between 100 and 999"); |
| 694 | return ACT_RET_PRS_ERR; |
| 695 | } |
| 696 | |
| 697 | (*orig_arg)++; |
| 698 | |
| 699 | /* set custom reason string */ |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 700 | rule->arg.http.str = ist(NULL); // If null, we use the default reason for the status code. |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 701 | if (*args[*orig_arg] && strcmp(args[*orig_arg], "reason") == 0 && |
| 702 | (*args[*orig_arg + 1] && strcmp(args[*orig_arg + 1], "if") != 0 && strcmp(args[*orig_arg + 1], "unless") != 0)) { |
| 703 | (*orig_arg)++; |
Tim Duesterhus | f4f6c0f | 2022-03-15 13:11:08 +0100 | [diff] [blame] | 704 | rule->arg.http.str = ist(strdup(args[*orig_arg])); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 705 | (*orig_arg)++; |
| 706 | } |
| 707 | |
Christopher Faulet | c20b371 | 2020-01-27 15:51:56 +0100 | [diff] [blame] | 708 | LIST_INIT(&rule->arg.http.fmt); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 709 | return ACT_RET_PRS_OK; |
| 710 | } |
| 711 | |
| 712 | /* This function executes the "reject" HTTP action. It clears the request and |
| 713 | * response buffer without sending any response. It can be useful as an HTTP |
| 714 | * alternative to the silent-drop action to defend against DoS attacks, and may |
| 715 | * also be used with HTTP/2 to close a connection instead of just a stream. |
| 716 | * The txn status is unchanged, indicating no response was sent. The termination |
Christopher Faulet | 90d22a8 | 2020-03-06 11:18:39 +0100 | [diff] [blame] | 717 | * flags will indicate "PR". It always returns ACT_RET_ABRT. |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 718 | */ |
| 719 | static enum act_return http_action_reject(struct act_rule *rule, struct proxy *px, |
| 720 | struct session *sess, struct stream *s, int flags) |
| 721 | { |
Willy Tarreau | f61dd19 | 2022-05-27 09:00:19 +0200 | [diff] [blame] | 722 | sc_must_kill_conn(chn_prod(&s->req)); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 723 | channel_abort(&s->req); |
| 724 | channel_abort(&s->res); |
Christopher Faulet | d4a824e | 2020-03-06 15:07:09 +0100 | [diff] [blame] | 725 | s->req.analysers &= AN_REQ_FLT_END; |
| 726 | s->res.analysers &= AN_RES_FLT_END; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 727 | |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 728 | _HA_ATOMIC_INC(&s->be->be_counters.denied_req); |
| 729 | _HA_ATOMIC_INC(&sess->fe->fe_counters.denied_req); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 730 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 731 | _HA_ATOMIC_INC(&sess->listener->counters->denied_req); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 732 | |
| 733 | if (!(s->flags & SF_ERR_MASK)) |
| 734 | s->flags |= SF_ERR_PRXCOND; |
| 735 | if (!(s->flags & SF_FINST_MASK)) |
| 736 | s->flags |= SF_FINST_R; |
| 737 | |
Christopher Faulet | 90d22a8 | 2020-03-06 11:18:39 +0100 | [diff] [blame] | 738 | return ACT_RET_ABRT; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 739 | } |
| 740 | |
| 741 | /* parse the "reject" action: |
| 742 | * This action takes no argument and returns ACT_RET_PRS_OK on success, |
| 743 | * ACT_RET_PRS_ERR on error. |
| 744 | */ |
| 745 | static enum act_parse_ret parse_http_action_reject(const char **args, int *orig_arg, struct proxy *px, |
| 746 | struct act_rule *rule, char **err) |
| 747 | { |
| 748 | rule->action = ACT_CUSTOM; |
| 749 | rule->action_ptr = http_action_reject; |
| 750 | return ACT_RET_PRS_OK; |
| 751 | } |
| 752 | |
Olivier Houchard | 602bf7d | 2019-05-10 13:59:15 +0200 | [diff] [blame] | 753 | /* This function executes the "disable-l7-retry" HTTP action. |
| 754 | * It disables L7 retries (all retry except for a connection failure). This |
| 755 | * can be useful for example to avoid retrying on POST requests. |
Christopher Faulet | e05bf9e | 2022-03-29 15:23:40 +0200 | [diff] [blame] | 756 | * It just removes the L7 retry flag on the HTTP transaction, and always |
Olivier Houchard | 602bf7d | 2019-05-10 13:59:15 +0200 | [diff] [blame] | 757 | * return ACT_RET_CONT; |
| 758 | */ |
| 759 | static enum act_return http_req_disable_l7_retry(struct act_rule *rule, struct proxy *px, |
| 760 | struct session *sess, struct stream *s, int flags) |
| 761 | { |
Christopher Faulet | e05bf9e | 2022-03-29 15:23:40 +0200 | [diff] [blame] | 762 | /* In theory, the TX_L7_RETRY flags isn't set at this point, but |
Olivier Houchard | 602bf7d | 2019-05-10 13:59:15 +0200 | [diff] [blame] | 763 | * let's be future-proof and remove it anyway. |
| 764 | */ |
Christopher Faulet | e05bf9e | 2022-03-29 15:23:40 +0200 | [diff] [blame] | 765 | s->txn->flags &= ~TX_L7_RETRY; |
| 766 | s->txn->flags |= TX_D_L7_RETRY; |
Olivier Houchard | 602bf7d | 2019-05-10 13:59:15 +0200 | [diff] [blame] | 767 | return ACT_RET_CONT; |
| 768 | } |
| 769 | |
| 770 | /* parse the "disable-l7-retry" action: |
| 771 | * This action takes no argument and returns ACT_RET_PRS_OK on success, |
| 772 | * ACT_RET_PRS_ERR on error. |
| 773 | */ |
| 774 | static enum act_parse_ret parse_http_req_disable_l7_retry(const char **args, |
| 775 | int *orig_args, struct proxy *px, |
| 776 | struct act_rule *rule, char **err) |
| 777 | { |
| 778 | rule->action = ACT_CUSTOM; |
| 779 | rule->action_ptr = http_req_disable_l7_retry; |
| 780 | return ACT_RET_PRS_OK; |
| 781 | } |
| 782 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 783 | /* This function executes the "capture" action. It executes a fetch expression, |
| 784 | * turns the result into a string and puts it in a capture slot. It always |
| 785 | * returns 1. If an error occurs the action is cancelled, but the rule |
| 786 | * processing continues. |
| 787 | */ |
| 788 | static enum act_return http_action_req_capture(struct act_rule *rule, struct proxy *px, |
| 789 | struct session *sess, struct stream *s, int flags) |
| 790 | { |
| 791 | struct sample *key; |
| 792 | struct cap_hdr *h = rule->arg.cap.hdr; |
| 793 | char **cap = s->req_cap; |
| 794 | int len; |
| 795 | |
| 796 | key = sample_fetch_as_type(s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.cap.expr, SMP_T_STR); |
| 797 | if (!key) |
| 798 | return ACT_RET_CONT; |
| 799 | |
| 800 | if (cap[h->index] == NULL) |
| 801 | cap[h->index] = pool_alloc(h->pool); |
| 802 | |
| 803 | if (cap[h->index] == NULL) /* no more capture memory */ |
| 804 | return ACT_RET_CONT; |
| 805 | |
| 806 | len = key->data.u.str.data; |
| 807 | if (len > h->len) |
| 808 | len = h->len; |
| 809 | |
| 810 | memcpy(cap[h->index], key->data.u.str.area, len); |
| 811 | cap[h->index][len] = 0; |
| 812 | return ACT_RET_CONT; |
| 813 | } |
| 814 | |
| 815 | /* This function executes the "capture" action and store the result in a |
| 816 | * capture slot if exists. It executes a fetch expression, turns the result |
| 817 | * into a string and puts it in a capture slot. It always returns 1. If an |
| 818 | * error occurs the action is cancelled, but the rule processing continues. |
| 819 | */ |
| 820 | static enum act_return http_action_req_capture_by_id(struct act_rule *rule, struct proxy *px, |
| 821 | struct session *sess, struct stream *s, int flags) |
| 822 | { |
| 823 | struct sample *key; |
| 824 | struct cap_hdr *h; |
| 825 | char **cap = s->req_cap; |
| 826 | struct proxy *fe = strm_fe(s); |
| 827 | int len; |
| 828 | int i; |
| 829 | |
| 830 | /* Look for the original configuration. */ |
| 831 | for (h = fe->req_cap, i = fe->nb_req_cap - 1; |
| 832 | h != NULL && i != rule->arg.capid.idx ; |
| 833 | i--, h = h->next); |
| 834 | if (!h) |
| 835 | return ACT_RET_CONT; |
| 836 | |
| 837 | key = sample_fetch_as_type(s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.capid.expr, SMP_T_STR); |
| 838 | if (!key) |
| 839 | return ACT_RET_CONT; |
| 840 | |
| 841 | if (cap[h->index] == NULL) |
| 842 | cap[h->index] = pool_alloc(h->pool); |
| 843 | |
| 844 | if (cap[h->index] == NULL) /* no more capture memory */ |
| 845 | return ACT_RET_CONT; |
| 846 | |
| 847 | len = key->data.u.str.data; |
| 848 | if (len > h->len) |
| 849 | len = h->len; |
| 850 | |
| 851 | memcpy(cap[h->index], key->data.u.str.area, len); |
| 852 | cap[h->index][len] = 0; |
| 853 | return ACT_RET_CONT; |
| 854 | } |
| 855 | |
| 856 | /* Check an "http-request capture" action. |
| 857 | * |
| 858 | * The function returns 1 in success case, otherwise, it returns 0 and err is |
| 859 | * filled. |
| 860 | */ |
| 861 | static int check_http_req_capture(struct act_rule *rule, struct proxy *px, char **err) |
| 862 | { |
| 863 | if (rule->action_ptr != http_action_req_capture_by_id) |
| 864 | return 1; |
| 865 | |
Baptiste Assmann | 19a69b3 | 2020-01-16 14:34:22 +0100 | [diff] [blame] | 866 | /* capture slots can only be declared in frontends, so we can't check their |
| 867 | * existence in backends at configuration parsing step |
| 868 | */ |
| 869 | if (px->cap & PR_CAP_FE && rule->arg.capid.idx >= px->nb_req_cap) { |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 870 | memprintf(err, "unable to find capture id '%d' referenced by http-request capture rule", |
| 871 | rule->arg.capid.idx); |
| 872 | return 0; |
| 873 | } |
| 874 | |
| 875 | return 1; |
| 876 | } |
| 877 | |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 878 | /* Release memory allocate by an http capture action */ |
| 879 | static void release_http_capture(struct act_rule *rule) |
| 880 | { |
| 881 | if (rule->action_ptr == http_action_req_capture) |
| 882 | release_sample_expr(rule->arg.cap.expr); |
| 883 | else |
| 884 | release_sample_expr(rule->arg.capid.expr); |
| 885 | } |
| 886 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 887 | /* parse an "http-request capture" action. It takes a single argument which is |
| 888 | * a sample fetch expression. It stores the expression into arg->act.p[0] and |
| 889 | * the allocated hdr_cap struct or the preallocated "id" into arg->act.p[1]. |
| 890 | * It returns ACT_RET_PRS_OK on success, ACT_RET_PRS_ERR on error. |
| 891 | */ |
| 892 | static enum act_parse_ret parse_http_req_capture(const char **args, int *orig_arg, struct proxy *px, |
| 893 | struct act_rule *rule, char **err) |
| 894 | { |
| 895 | struct sample_expr *expr; |
| 896 | struct cap_hdr *hdr; |
| 897 | int cur_arg; |
| 898 | int len = 0; |
| 899 | |
| 900 | for (cur_arg = *orig_arg; cur_arg < *orig_arg + 3 && *args[cur_arg]; cur_arg++) |
| 901 | if (strcmp(args[cur_arg], "if") == 0 || |
| 902 | strcmp(args[cur_arg], "unless") == 0) |
| 903 | break; |
| 904 | |
| 905 | if (cur_arg < *orig_arg + 3) { |
| 906 | memprintf(err, "expects <expression> [ 'len' <length> | id <idx> ]"); |
| 907 | return ACT_RET_PRS_ERR; |
| 908 | } |
| 909 | |
| 910 | cur_arg = *orig_arg; |
Willy Tarreau | e3b57bf | 2020-02-14 16:50:14 +0100 | [diff] [blame] | 911 | expr = sample_parse_expr((char **)args, &cur_arg, px->conf.args.file, px->conf.args.line, err, &px->conf.args, NULL); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 912 | if (!expr) |
| 913 | return ACT_RET_PRS_ERR; |
| 914 | |
| 915 | if (!(expr->fetch->val & SMP_VAL_FE_HRQ_HDR)) { |
| 916 | memprintf(err, |
| 917 | "fetch method '%s' extracts information from '%s', none of which is available here", |
| 918 | args[cur_arg-1], sample_src_names(expr->fetch->use)); |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 919 | release_sample_expr(expr); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 920 | return ACT_RET_PRS_ERR; |
| 921 | } |
| 922 | |
| 923 | if (!args[cur_arg] || !*args[cur_arg]) { |
| 924 | memprintf(err, "expects 'len or 'id'"); |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 925 | release_sample_expr(expr); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 926 | return ACT_RET_PRS_ERR; |
| 927 | } |
| 928 | |
| 929 | if (strcmp(args[cur_arg], "len") == 0) { |
| 930 | cur_arg++; |
| 931 | |
| 932 | if (!(px->cap & PR_CAP_FE)) { |
| 933 | memprintf(err, "proxy '%s' has no frontend capability", px->id); |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 934 | release_sample_expr(expr); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 935 | return ACT_RET_PRS_ERR; |
| 936 | } |
| 937 | |
| 938 | px->conf.args.ctx = ARGC_CAP; |
| 939 | |
| 940 | if (!args[cur_arg]) { |
| 941 | memprintf(err, "missing length value"); |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 942 | release_sample_expr(expr); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 943 | return ACT_RET_PRS_ERR; |
| 944 | } |
| 945 | /* we copy the table name for now, it will be resolved later */ |
| 946 | len = atoi(args[cur_arg]); |
| 947 | if (len <= 0) { |
| 948 | memprintf(err, "length must be > 0"); |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 949 | release_sample_expr(expr); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 950 | return ACT_RET_PRS_ERR; |
| 951 | } |
| 952 | cur_arg++; |
| 953 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 954 | hdr = calloc(1, sizeof(*hdr)); |
Remi Tricot-Le Breton | a4bf8a0 | 2021-05-12 17:54:17 +0200 | [diff] [blame] | 955 | if (!hdr) { |
| 956 | memprintf(err, "out of memory"); |
| 957 | release_sample_expr(expr); |
| 958 | return ACT_RET_PRS_ERR; |
| 959 | } |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 960 | hdr->next = px->req_cap; |
| 961 | hdr->name = NULL; /* not a header capture */ |
| 962 | hdr->namelen = 0; |
| 963 | hdr->len = len; |
| 964 | hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED); |
| 965 | hdr->index = px->nb_req_cap++; |
| 966 | |
| 967 | px->req_cap = hdr; |
| 968 | px->to_log |= LW_REQHDR; |
| 969 | |
| 970 | rule->action = ACT_CUSTOM; |
| 971 | rule->action_ptr = http_action_req_capture; |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 972 | rule->release_ptr = release_http_capture; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 973 | rule->arg.cap.expr = expr; |
| 974 | rule->arg.cap.hdr = hdr; |
| 975 | } |
| 976 | |
| 977 | else if (strcmp(args[cur_arg], "id") == 0) { |
| 978 | int id; |
| 979 | char *error; |
| 980 | |
| 981 | cur_arg++; |
| 982 | |
| 983 | if (!args[cur_arg]) { |
| 984 | memprintf(err, "missing id value"); |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 985 | release_sample_expr(expr); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 986 | return ACT_RET_PRS_ERR; |
| 987 | } |
| 988 | |
| 989 | id = strtol(args[cur_arg], &error, 10); |
| 990 | if (*error != '\0') { |
| 991 | memprintf(err, "cannot parse id '%s'", args[cur_arg]); |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 992 | release_sample_expr(expr); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 993 | return ACT_RET_PRS_ERR; |
| 994 | } |
| 995 | cur_arg++; |
| 996 | |
| 997 | px->conf.args.ctx = ARGC_CAP; |
| 998 | |
| 999 | rule->action = ACT_CUSTOM; |
| 1000 | rule->action_ptr = http_action_req_capture_by_id; |
| 1001 | rule->check_ptr = check_http_req_capture; |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 1002 | rule->release_ptr = release_http_capture; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1003 | rule->arg.capid.expr = expr; |
| 1004 | rule->arg.capid.idx = id; |
| 1005 | } |
| 1006 | |
| 1007 | else { |
| 1008 | memprintf(err, "expects 'len' or 'id', found '%s'", args[cur_arg]); |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 1009 | release_sample_expr(expr); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1010 | return ACT_RET_PRS_ERR; |
| 1011 | } |
| 1012 | |
| 1013 | *orig_arg = cur_arg; |
| 1014 | return ACT_RET_PRS_OK; |
| 1015 | } |
| 1016 | |
| 1017 | /* This function executes the "capture" action and store the result in a |
| 1018 | * capture slot if exists. It executes a fetch expression, turns the result |
| 1019 | * into a string and puts it in a capture slot. It always returns 1. If an |
| 1020 | * error occurs the action is cancelled, but the rule processing continues. |
| 1021 | */ |
| 1022 | static enum act_return http_action_res_capture_by_id(struct act_rule *rule, struct proxy *px, |
| 1023 | struct session *sess, struct stream *s, int flags) |
| 1024 | { |
| 1025 | struct sample *key; |
| 1026 | struct cap_hdr *h; |
| 1027 | char **cap = s->res_cap; |
| 1028 | struct proxy *fe = strm_fe(s); |
| 1029 | int len; |
| 1030 | int i; |
| 1031 | |
| 1032 | /* Look for the original configuration. */ |
| 1033 | for (h = fe->rsp_cap, i = fe->nb_rsp_cap - 1; |
| 1034 | h != NULL && i != rule->arg.capid.idx ; |
| 1035 | i--, h = h->next); |
| 1036 | if (!h) |
| 1037 | return ACT_RET_CONT; |
| 1038 | |
| 1039 | key = sample_fetch_as_type(s->be, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL, rule->arg.capid.expr, SMP_T_STR); |
| 1040 | if (!key) |
| 1041 | return ACT_RET_CONT; |
| 1042 | |
| 1043 | if (cap[h->index] == NULL) |
| 1044 | cap[h->index] = pool_alloc(h->pool); |
| 1045 | |
| 1046 | if (cap[h->index] == NULL) /* no more capture memory */ |
| 1047 | return ACT_RET_CONT; |
| 1048 | |
| 1049 | len = key->data.u.str.data; |
| 1050 | if (len > h->len) |
| 1051 | len = h->len; |
| 1052 | |
| 1053 | memcpy(cap[h->index], key->data.u.str.area, len); |
| 1054 | cap[h->index][len] = 0; |
| 1055 | return ACT_RET_CONT; |
| 1056 | } |
| 1057 | |
| 1058 | /* Check an "http-response capture" action. |
| 1059 | * |
| 1060 | * The function returns 1 in success case, otherwise, it returns 0 and err is |
| 1061 | * filled. |
| 1062 | */ |
| 1063 | static int check_http_res_capture(struct act_rule *rule, struct proxy *px, char **err) |
| 1064 | { |
| 1065 | if (rule->action_ptr != http_action_res_capture_by_id) |
| 1066 | return 1; |
| 1067 | |
Tim Duesterhus | f3f4aa0 | 2020-07-03 13:43:42 +0200 | [diff] [blame] | 1068 | /* capture slots can only be declared in frontends, so we can't check their |
| 1069 | * existence in backends at configuration parsing step |
| 1070 | */ |
| 1071 | if (px->cap & PR_CAP_FE && rule->arg.capid.idx >= px->nb_rsp_cap) { |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1072 | memprintf(err, "unable to find capture id '%d' referenced by http-response capture rule", |
| 1073 | rule->arg.capid.idx); |
| 1074 | return 0; |
| 1075 | } |
| 1076 | |
| 1077 | return 1; |
| 1078 | } |
| 1079 | |
| 1080 | /* parse an "http-response capture" action. It takes a single argument which is |
| 1081 | * a sample fetch expression. It stores the expression into arg->act.p[0] and |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 1082 | * the allocated hdr_cap struct of the preallocated id into arg->act.p[1]. |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1083 | * It returns ACT_RET_PRS_OK on success, ACT_RET_PRS_ERR on error. |
| 1084 | */ |
| 1085 | static enum act_parse_ret parse_http_res_capture(const char **args, int *orig_arg, struct proxy *px, |
| 1086 | struct act_rule *rule, char **err) |
| 1087 | { |
| 1088 | struct sample_expr *expr; |
| 1089 | int cur_arg; |
| 1090 | int id; |
| 1091 | char *error; |
| 1092 | |
| 1093 | for (cur_arg = *orig_arg; cur_arg < *orig_arg + 3 && *args[cur_arg]; cur_arg++) |
| 1094 | if (strcmp(args[cur_arg], "if") == 0 || |
| 1095 | strcmp(args[cur_arg], "unless") == 0) |
| 1096 | break; |
| 1097 | |
| 1098 | if (cur_arg < *orig_arg + 3) { |
| 1099 | memprintf(err, "expects <expression> id <idx>"); |
| 1100 | return ACT_RET_PRS_ERR; |
| 1101 | } |
| 1102 | |
| 1103 | cur_arg = *orig_arg; |
Willy Tarreau | e3b57bf | 2020-02-14 16:50:14 +0100 | [diff] [blame] | 1104 | expr = sample_parse_expr((char **)args, &cur_arg, px->conf.args.file, px->conf.args.line, err, &px->conf.args, NULL); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1105 | if (!expr) |
| 1106 | return ACT_RET_PRS_ERR; |
| 1107 | |
| 1108 | if (!(expr->fetch->val & SMP_VAL_FE_HRS_HDR)) { |
| 1109 | memprintf(err, |
| 1110 | "fetch method '%s' extracts information from '%s', none of which is available here", |
| 1111 | args[cur_arg-1], sample_src_names(expr->fetch->use)); |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 1112 | release_sample_expr(expr); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1113 | return ACT_RET_PRS_ERR; |
| 1114 | } |
| 1115 | |
| 1116 | if (!args[cur_arg] || !*args[cur_arg]) { |
| 1117 | memprintf(err, "expects 'id'"); |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 1118 | release_sample_expr(expr); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1119 | return ACT_RET_PRS_ERR; |
| 1120 | } |
| 1121 | |
| 1122 | if (strcmp(args[cur_arg], "id") != 0) { |
| 1123 | memprintf(err, "expects 'id', found '%s'", args[cur_arg]); |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 1124 | release_sample_expr(expr); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1125 | return ACT_RET_PRS_ERR; |
| 1126 | } |
| 1127 | |
| 1128 | cur_arg++; |
| 1129 | |
| 1130 | if (!args[cur_arg]) { |
| 1131 | memprintf(err, "missing id value"); |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 1132 | release_sample_expr(expr); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1133 | return ACT_RET_PRS_ERR; |
| 1134 | } |
| 1135 | |
| 1136 | id = strtol(args[cur_arg], &error, 10); |
| 1137 | if (*error != '\0') { |
| 1138 | memprintf(err, "cannot parse id '%s'", args[cur_arg]); |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 1139 | release_sample_expr(expr); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1140 | return ACT_RET_PRS_ERR; |
| 1141 | } |
| 1142 | cur_arg++; |
| 1143 | |
| 1144 | px->conf.args.ctx = ARGC_CAP; |
| 1145 | |
| 1146 | rule->action = ACT_CUSTOM; |
| 1147 | rule->action_ptr = http_action_res_capture_by_id; |
| 1148 | rule->check_ptr = check_http_res_capture; |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 1149 | rule->release_ptr = release_http_capture; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1150 | rule->arg.capid.expr = expr; |
| 1151 | rule->arg.capid.idx = id; |
| 1152 | |
| 1153 | *orig_arg = cur_arg; |
| 1154 | return ACT_RET_PRS_OK; |
| 1155 | } |
| 1156 | |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1157 | /* Parse a "allow" action for a request or a response rule. It takes no argument. It |
| 1158 | * returns ACT_RET_PRS_OK on success, ACT_RET_PRS_ERR on error. |
| 1159 | */ |
| 1160 | static enum act_parse_ret parse_http_allow(const char **args, int *orig_arg, struct proxy *px, |
| 1161 | struct act_rule *rule, char **err) |
| 1162 | { |
| 1163 | rule->action = ACT_ACTION_ALLOW; |
Christopher Faulet | 245cf79 | 2019-12-18 14:58:12 +0100 | [diff] [blame] | 1164 | rule->flags |= ACT_FLAG_FINAL; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1165 | return ACT_RET_PRS_OK; |
| 1166 | } |
| 1167 | |
Christopher Faulet | e0fca29 | 2020-01-13 21:49:03 +0100 | [diff] [blame] | 1168 | /* Parse "deny" or "tarpit" actions for a request rule or "deny" action for a |
Christopher Faulet | 5cb513a | 2020-05-13 17:56:56 +0200 | [diff] [blame] | 1169 | * response rule. It returns ACT_RET_PRS_OK on success, ACT_RET_PRS_ERR on |
| 1170 | * error. It relies on http_parse_http_reply() to set |
| 1171 | * <.arg.http_reply>. |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1172 | */ |
Christopher Faulet | e0fca29 | 2020-01-13 21:49:03 +0100 | [diff] [blame] | 1173 | static enum act_parse_ret parse_http_deny(const char **args, int *orig_arg, struct proxy *px, |
| 1174 | struct act_rule *rule, char **err) |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1175 | { |
Christopher Faulet | 5cb513a | 2020-05-13 17:56:56 +0200 | [diff] [blame] | 1176 | int default_status; |
| 1177 | int cur_arg, arg = 0; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1178 | |
| 1179 | cur_arg = *orig_arg; |
Christopher Faulet | e0fca29 | 2020-01-13 21:49:03 +0100 | [diff] [blame] | 1180 | if (rule->from == ACT_F_HTTP_REQ) { |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1181 | if (strcmp(args[cur_arg - 1], "tarpit") == 0) { |
Christopher Faulet | e0fca29 | 2020-01-13 21:49:03 +0100 | [diff] [blame] | 1182 | rule->action = ACT_HTTP_REQ_TARPIT; |
Christopher Faulet | 5cb513a | 2020-05-13 17:56:56 +0200 | [diff] [blame] | 1183 | default_status = 500; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1184 | } |
Christopher Faulet | e0fca29 | 2020-01-13 21:49:03 +0100 | [diff] [blame] | 1185 | else { |
| 1186 | rule->action = ACT_ACTION_DENY; |
Christopher Faulet | 5cb513a | 2020-05-13 17:56:56 +0200 | [diff] [blame] | 1187 | default_status = 403; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1188 | } |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1189 | } |
Christopher Faulet | e0fca29 | 2020-01-13 21:49:03 +0100 | [diff] [blame] | 1190 | else { |
Christopher Faulet | 554c0eb | 2020-01-14 12:00:28 +0100 | [diff] [blame] | 1191 | rule->action = ACT_ACTION_DENY; |
Christopher Faulet | 5cb513a | 2020-05-13 17:56:56 +0200 | [diff] [blame] | 1192 | default_status = 502; |
Christopher Faulet | e0fca29 | 2020-01-13 21:49:03 +0100 | [diff] [blame] | 1193 | } |
Christopher Faulet | 040c8cd | 2020-01-13 16:43:45 +0100 | [diff] [blame] | 1194 | |
Christopher Faulet | 5cb513a | 2020-05-13 17:56:56 +0200 | [diff] [blame] | 1195 | /* If no args or only a deny_status specified, fallback on the legacy |
| 1196 | * mode and use default error files despite the fact that |
| 1197 | * default-errorfiles is not used. Otherwise, parse an http reply. |
| 1198 | */ |
Christopher Faulet | 040c8cd | 2020-01-13 16:43:45 +0100 | [diff] [blame] | 1199 | |
Christopher Faulet | 5cb513a | 2020-05-13 17:56:56 +0200 | [diff] [blame] | 1200 | /* Prepare parsing of log-format strings */ |
| 1201 | px->conf.args.ctx = ((rule->from == ACT_F_HTTP_REQ) ? ARGC_HRQ : ARGC_HRS); |
Christopher Faulet | 554c0eb | 2020-01-14 12:00:28 +0100 | [diff] [blame] | 1202 | |
Christopher Faulet | 9467f18 | 2020-06-30 09:32:01 +0200 | [diff] [blame] | 1203 | if (!*(args[cur_arg]) || strcmp(args[cur_arg], "if") == 0 || strcmp(args[cur_arg], "unless") == 0) { |
Christopher Faulet | 5cb513a | 2020-05-13 17:56:56 +0200 | [diff] [blame] | 1204 | rule->arg.http_reply = http_parse_http_reply((const char *[]){"default-errorfiles", ""}, &arg, px, default_status, err); |
| 1205 | goto end; |
Christopher Faulet | 554c0eb | 2020-01-14 12:00:28 +0100 | [diff] [blame] | 1206 | } |
Christopher Faulet | 5cb513a | 2020-05-13 17:56:56 +0200 | [diff] [blame] | 1207 | |
| 1208 | if (strcmp(args[cur_arg], "deny_status") == 0) { |
Christopher Faulet | 9467f18 | 2020-06-30 09:32:01 +0200 | [diff] [blame] | 1209 | if (!*(args[cur_arg+2]) || strcmp(args[cur_arg+2], "if") == 0 || strcmp(args[cur_arg+2], "unless") == 0) { |
Christopher Faulet | 5cb513a | 2020-05-13 17:56:56 +0200 | [diff] [blame] | 1210 | rule->arg.http_reply = http_parse_http_reply((const char *[]){"status", args[cur_arg+1], "default-errorfiles", ""}, |
| 1211 | &arg, px, default_status, err); |
| 1212 | *orig_arg += 2; |
| 1213 | goto end; |
Christopher Faulet | 554c0eb | 2020-01-14 12:00:28 +0100 | [diff] [blame] | 1214 | } |
Christopher Faulet | 5cb513a | 2020-05-13 17:56:56 +0200 | [diff] [blame] | 1215 | args[cur_arg] += 5; /* skip "deny_" for the parsing */ |
Christopher Faulet | 554c0eb | 2020-01-14 12:00:28 +0100 | [diff] [blame] | 1216 | } |
| 1217 | |
Christopher Faulet | 5cb513a | 2020-05-13 17:56:56 +0200 | [diff] [blame] | 1218 | rule->arg.http_reply = http_parse_http_reply(args, orig_arg, px, default_status, err); |
Christopher Faulet | 554c0eb | 2020-01-14 12:00:28 +0100 | [diff] [blame] | 1219 | |
Christopher Faulet | 5cb513a | 2020-05-13 17:56:56 +0200 | [diff] [blame] | 1220 | end: |
| 1221 | if (!rule->arg.http_reply) |
| 1222 | return ACT_RET_PRS_ERR; |
| 1223 | |
| 1224 | rule->flags |= ACT_FLAG_FINAL; |
| 1225 | rule->check_ptr = check_act_http_reply; |
| 1226 | rule->release_ptr = release_act_http_reply; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1227 | return ACT_RET_PRS_OK; |
| 1228 | } |
| 1229 | |
Christopher Faulet | b304883 | 2020-05-27 15:26:43 +0200 | [diff] [blame] | 1230 | |
| 1231 | /* This function executes a auth action. It builds an 401/407 HTX message using |
| 1232 | * the corresponding proxy's error message. On success, it returns |
| 1233 | * ACT_RET_ABRT. If an error occurs ACT_RET_ERR is returned. |
| 1234 | */ |
| 1235 | static enum act_return http_action_auth(struct act_rule *rule, struct proxy *px, |
| 1236 | struct session *sess, struct stream *s, int flags) |
| 1237 | { |
| 1238 | struct channel *req = &s->req; |
| 1239 | struct channel *res = &s->res; |
| 1240 | struct htx *htx = htx_from_buf(&res->buf); |
| 1241 | struct http_reply *reply; |
| 1242 | const char *auth_realm; |
| 1243 | struct http_hdr_ctx ctx; |
| 1244 | struct ist hdr; |
| 1245 | |
| 1246 | /* Auth might be performed on regular http-req rules as well as on stats */ |
| 1247 | auth_realm = rule->arg.http.str.ptr; |
| 1248 | if (!auth_realm) { |
| 1249 | if (px->uri_auth && s->current_rule_list == &px->uri_auth->http_req_rules) |
| 1250 | auth_realm = STATS_DEFAULT_REALM; |
| 1251 | else |
| 1252 | auth_realm = px->id; |
| 1253 | } |
| 1254 | |
| 1255 | if (!(s->txn->flags & TX_USE_PX_CONN)) { |
| 1256 | s->txn->status = 401; |
| 1257 | hdr = ist("WWW-Authenticate"); |
| 1258 | } |
| 1259 | else { |
| 1260 | s->txn->status = 407; |
| 1261 | hdr = ist("Proxy-Authenticate"); |
| 1262 | } |
| 1263 | reply = http_error_message(s); |
| 1264 | channel_htx_truncate(res, htx); |
| 1265 | |
| 1266 | if (chunk_printf(&trash, "Basic realm=\"%s\"", auth_realm) == -1) |
| 1267 | goto fail; |
| 1268 | |
| 1269 | /* Write the generic 40x message */ |
| 1270 | if (http_reply_to_htx(s, htx, reply) == -1) |
| 1271 | goto fail; |
| 1272 | |
| 1273 | /* Remove all existing occurrences of the XXX-Authenticate header */ |
| 1274 | ctx.blk = NULL; |
| 1275 | while (http_find_header(htx, hdr, &ctx, 1)) |
| 1276 | http_remove_header(htx, &ctx); |
| 1277 | |
| 1278 | /* Now a the right XXX-Authenticate header */ |
| 1279 | if (!http_add_header(htx, hdr, ist2(b_orig(&trash), b_data(&trash)))) |
| 1280 | goto fail; |
| 1281 | |
| 1282 | /* Finally forward the reply */ |
| 1283 | htx_to_buf(htx, &res->buf); |
| 1284 | if (!http_forward_proxy_resp(s, 1)) |
| 1285 | goto fail; |
| 1286 | |
| 1287 | /* Note: Only eval on the request */ |
| 1288 | s->logs.tv_request = now; |
| 1289 | req->analysers &= AN_REQ_FLT_END; |
| 1290 | |
| 1291 | if (s->sess->fe == s->be) /* report it if the request was intercepted by the frontend */ |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1292 | _HA_ATOMIC_INC(&s->sess->fe->fe_counters.intercepted_req); |
Christopher Faulet | b304883 | 2020-05-27 15:26:43 +0200 | [diff] [blame] | 1293 | |
| 1294 | if (!(s->flags & SF_ERR_MASK)) |
| 1295 | s->flags |= SF_ERR_LOCAL; |
| 1296 | if (!(s->flags & SF_FINST_MASK)) |
| 1297 | s->flags |= SF_FINST_R; |
| 1298 | |
| 1299 | stream_inc_http_err_ctr(s); |
| 1300 | return ACT_RET_ABRT; |
| 1301 | |
| 1302 | fail: |
| 1303 | /* If an error occurred, remove the incomplete HTTP response from the |
| 1304 | * buffer */ |
| 1305 | channel_htx_truncate(res, htx); |
| 1306 | return ACT_RET_ERR; |
| 1307 | } |
| 1308 | |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1309 | /* Parse a "auth" action. It may take 2 optional arguments to define a "realm" |
| 1310 | * parameter. It returns ACT_RET_PRS_OK on success, ACT_RET_PRS_ERR on error. |
| 1311 | */ |
| 1312 | static enum act_parse_ret parse_http_auth(const char **args, int *orig_arg, struct proxy *px, |
| 1313 | struct act_rule *rule, char **err) |
| 1314 | { |
| 1315 | int cur_arg; |
| 1316 | |
Christopher Faulet | b304883 | 2020-05-27 15:26:43 +0200 | [diff] [blame] | 1317 | rule->action = ACT_CUSTOM; |
Christopher Faulet | 245cf79 | 2019-12-18 14:58:12 +0100 | [diff] [blame] | 1318 | rule->flags |= ACT_FLAG_FINAL; |
Christopher Faulet | b304883 | 2020-05-27 15:26:43 +0200 | [diff] [blame] | 1319 | rule->action_ptr = http_action_auth; |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 1320 | rule->release_ptr = release_http_action; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1321 | |
| 1322 | cur_arg = *orig_arg; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1323 | if (strcmp(args[cur_arg], "realm") == 0) { |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1324 | cur_arg++; |
| 1325 | if (!*args[cur_arg]) { |
| 1326 | memprintf(err, "missing realm value.\n"); |
| 1327 | return ACT_RET_PRS_ERR; |
| 1328 | } |
Tim Duesterhus | f4f6c0f | 2022-03-15 13:11:08 +0100 | [diff] [blame] | 1329 | rule->arg.http.str = ist(strdup(args[cur_arg])); |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1330 | cur_arg++; |
| 1331 | } |
| 1332 | |
Christopher Faulet | c20b371 | 2020-01-27 15:51:56 +0100 | [diff] [blame] | 1333 | LIST_INIT(&rule->arg.http.fmt); |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1334 | *orig_arg = cur_arg; |
| 1335 | return ACT_RET_PRS_OK; |
| 1336 | } |
| 1337 | |
Christopher Faulet | 91b3ec1 | 2020-01-17 22:30:06 +0100 | [diff] [blame] | 1338 | /* This function executes a early-hint action. It adds an HTTP Early Hint HTTP |
| 1339 | * 103 response header with <.arg.http.str> name and with a value built |
| 1340 | * according to <.arg.http.fmt> log line format. If it is the first early-hint |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 1341 | * rule of series, the 103 response start-line is added first. At the end, if |
Christopher Faulet | 91b3ec1 | 2020-01-17 22:30:06 +0100 | [diff] [blame] | 1342 | * the next rule is not an early-hint rule or if it is the last rule, the EOH |
| 1343 | * block is added to terminate the response. On success, it returns |
| 1344 | * ACT_RET_CONT. If an error occurs while soft rewrites are enabled, the action |
| 1345 | * is canceled, but the rule processing continue. Otherwsize ACT_RET_ERR is |
| 1346 | * returned. |
| 1347 | */ |
| 1348 | static enum act_return http_action_early_hint(struct act_rule *rule, struct proxy *px, |
| 1349 | struct session *sess, struct stream *s, int flags) |
| 1350 | { |
Christopher Faulet | 4c3d3d2 | 2022-07-05 16:24:15 +0200 | [diff] [blame^] | 1351 | struct act_rule *next_rule; |
Christopher Faulet | 91b3ec1 | 2020-01-17 22:30:06 +0100 | [diff] [blame] | 1352 | struct channel *res = &s->res; |
| 1353 | struct htx *htx = htx_from_buf(&res->buf); |
| 1354 | struct buffer *value = alloc_trash_chunk(); |
| 1355 | enum act_return ret = ACT_RET_CONT; |
| 1356 | |
| 1357 | if (!(s->txn->req.flags & HTTP_MSGF_VER_11)) |
| 1358 | goto leave; |
| 1359 | |
| 1360 | if (!value) { |
| 1361 | if (!(s->flags & SF_ERR_MASK)) |
| 1362 | s->flags |= SF_ERR_RESOURCE; |
| 1363 | goto error; |
| 1364 | } |
| 1365 | |
Christopher Faulet | 4c3d3d2 | 2022-07-05 16:24:15 +0200 | [diff] [blame^] | 1366 | /* if there is no pending 103 response, start a new response. Otherwise, |
| 1367 | * continue to add link to a previously started response |
| 1368 | */ |
| 1369 | if (s->txn->status != 103) { |
Christopher Faulet | 91b3ec1 | 2020-01-17 22:30:06 +0100 | [diff] [blame] | 1370 | struct htx_sl *sl; |
| 1371 | unsigned int flags = (HTX_SL_F_IS_RESP|HTX_SL_F_VER_11| |
| 1372 | HTX_SL_F_XFER_LEN|HTX_SL_F_BODYLESS); |
| 1373 | |
| 1374 | sl = htx_add_stline(htx, HTX_BLK_RES_SL, flags, |
| 1375 | ist("HTTP/1.1"), ist("103"), ist("Early Hints")); |
| 1376 | if (!sl) |
| 1377 | goto error; |
| 1378 | sl->info.res.status = 103; |
Christopher Faulet | 4c3d3d2 | 2022-07-05 16:24:15 +0200 | [diff] [blame^] | 1379 | s->txn->status = 103; |
Christopher Faulet | 91b3ec1 | 2020-01-17 22:30:06 +0100 | [diff] [blame] | 1380 | } |
| 1381 | |
| 1382 | /* Add the HTTP Early Hint HTTP 103 response heade */ |
| 1383 | value->data = build_logline(s, b_tail(value), b_room(value), &rule->arg.http.fmt); |
| 1384 | if (!htx_add_header(htx, rule->arg.http.str, ist2(b_head(value), b_data(value)))) |
| 1385 | goto error; |
| 1386 | |
Christopher Faulet | 4c3d3d2 | 2022-07-05 16:24:15 +0200 | [diff] [blame^] | 1387 | /* if it is the last rule or the next one is not an early-hint or an |
| 1388 | * conditional early-hint, terminate the current response. |
| 1389 | */ |
| 1390 | next_rule = LIST_NEXT(&rule->list, typeof(rule), list); |
| 1391 | if (&next_rule->list == s->current_rule_list || next_rule->action_ptr != http_action_early_hint || next_rule->cond) { |
| 1392 | if (!htx_add_endof(htx, HTX_BLK_EOH)) |
Christopher Faulet | 91b3ec1 | 2020-01-17 22:30:06 +0100 | [diff] [blame] | 1393 | goto error; |
Christopher Faulet | a72a7e4 | 2020-01-28 09:28:11 +0100 | [diff] [blame] | 1394 | if (!http_forward_proxy_resp(s, 0)) |
| 1395 | goto error; |
Christopher Faulet | 4c3d3d2 | 2022-07-05 16:24:15 +0200 | [diff] [blame^] | 1396 | s->txn->status = 0; |
Christopher Faulet | 91b3ec1 | 2020-01-17 22:30:06 +0100 | [diff] [blame] | 1397 | } |
| 1398 | |
| 1399 | leave: |
| 1400 | free_trash_chunk(value); |
| 1401 | return ret; |
| 1402 | |
| 1403 | error: |
| 1404 | /* If an error occurred during an Early-hint rule, remove the incomplete |
| 1405 | * HTTP 103 response from the buffer */ |
| 1406 | channel_htx_truncate(res, htx); |
| 1407 | ret = ACT_RET_ERR; |
Christopher Faulet | 4c3d3d2 | 2022-07-05 16:24:15 +0200 | [diff] [blame^] | 1408 | s->txn->status = 0; |
Christopher Faulet | 91b3ec1 | 2020-01-17 22:30:06 +0100 | [diff] [blame] | 1409 | goto leave; |
| 1410 | } |
| 1411 | |
Christopher Faulet | d1f27e3 | 2019-12-17 09:33:38 +0100 | [diff] [blame] | 1412 | /* This function executes a set-header or add-header actions. It builds a string |
| 1413 | * in the trash from the specified format string. It finds the action to be |
| 1414 | * performed in <.action>, previously filled by function parse_set_header(). The |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 1415 | * replacement action is executed by the function http_action_set_header(). On |
Christopher Faulet | d1f27e3 | 2019-12-17 09:33:38 +0100 | [diff] [blame] | 1416 | * success, it returns ACT_RET_CONT. If an error occurs while soft rewrites are |
| 1417 | * enabled, the action is canceled, but the rule processing continue. Otherwsize |
| 1418 | * ACT_RET_ERR is returned. |
| 1419 | */ |
| 1420 | static enum act_return http_action_set_header(struct act_rule *rule, struct proxy *px, |
| 1421 | struct session *sess, struct stream *s, int flags) |
| 1422 | { |
Christopher Faulet | 91e31d8 | 2020-01-24 15:37:13 +0100 | [diff] [blame] | 1423 | struct http_msg *msg = ((rule->from == ACT_F_HTTP_REQ) ? &s->txn->req : &s->txn->rsp); |
| 1424 | struct htx *htx = htxbuf(&msg->chn->buf); |
Christopher Faulet | d1f27e3 | 2019-12-17 09:33:38 +0100 | [diff] [blame] | 1425 | enum act_return ret = ACT_RET_CONT; |
| 1426 | struct buffer *replace; |
| 1427 | struct http_hdr_ctx ctx; |
| 1428 | struct ist n, v; |
| 1429 | |
| 1430 | replace = alloc_trash_chunk(); |
| 1431 | if (!replace) |
| 1432 | goto fail_alloc; |
| 1433 | |
| 1434 | replace->data = build_logline(s, replace->area, replace->size, &rule->arg.http.fmt); |
| 1435 | n = rule->arg.http.str; |
| 1436 | v = ist2(replace->area, replace->data); |
| 1437 | |
| 1438 | if (rule->action == 0) { // set-header |
| 1439 | /* remove all occurrences of the header */ |
| 1440 | ctx.blk = NULL; |
| 1441 | while (http_find_header(htx, n, &ctx, 1)) |
| 1442 | http_remove_header(htx, &ctx); |
| 1443 | } |
| 1444 | |
| 1445 | /* Now add header */ |
| 1446 | if (!http_add_header(htx, n, v)) |
| 1447 | goto fail_rewrite; |
| 1448 | |
| 1449 | leave: |
| 1450 | free_trash_chunk(replace); |
| 1451 | return ret; |
| 1452 | |
| 1453 | fail_alloc: |
| 1454 | if (!(s->flags & SF_ERR_MASK)) |
| 1455 | s->flags |= SF_ERR_RESOURCE; |
| 1456 | ret = ACT_RET_ERR; |
| 1457 | goto leave; |
| 1458 | |
| 1459 | fail_rewrite: |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1460 | _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_rewrites); |
Christopher Faulet | d1f27e3 | 2019-12-17 09:33:38 +0100 | [diff] [blame] | 1461 | if (s->flags & SF_BE_ASSIGNED) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1462 | _HA_ATOMIC_INC(&s->be->be_counters.failed_rewrites); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 1463 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1464 | _HA_ATOMIC_INC(&sess->listener->counters->failed_rewrites); |
Christopher Faulet | d1f27e3 | 2019-12-17 09:33:38 +0100 | [diff] [blame] | 1465 | if (objt_server(s->target)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1466 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_rewrites); |
Christopher Faulet | d1f27e3 | 2019-12-17 09:33:38 +0100 | [diff] [blame] | 1467 | |
Christopher Faulet | 333bf8c | 2020-01-22 14:38:05 +0100 | [diff] [blame] | 1468 | if (!(msg->flags & HTTP_MSGF_SOFT_RW)) { |
Christopher Faulet | d1f27e3 | 2019-12-17 09:33:38 +0100 | [diff] [blame] | 1469 | ret = ACT_RET_ERR; |
Christopher Faulet | 333bf8c | 2020-01-22 14:38:05 +0100 | [diff] [blame] | 1470 | if (!(s->flags & SF_ERR_MASK)) |
| 1471 | s->flags |= SF_ERR_PRXCOND; |
| 1472 | } |
Christopher Faulet | d1f27e3 | 2019-12-17 09:33:38 +0100 | [diff] [blame] | 1473 | goto leave; |
| 1474 | } |
| 1475 | |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1476 | /* Parse a "set-header", "add-header" or "early-hint" actions. It takes an |
| 1477 | * header name and a log-format string as arguments. It returns ACT_RET_PRS_OK |
| 1478 | * on success, ACT_RET_PRS_ERR on error. |
| 1479 | * |
| 1480 | * Note: same function is used for the request and the response. However |
| 1481 | * "early-hint" rules are only supported for request rules. |
| 1482 | */ |
| 1483 | static enum act_parse_ret parse_http_set_header(const char **args, int *orig_arg, struct proxy *px, |
| 1484 | struct act_rule *rule, char **err) |
| 1485 | { |
Christopher Faulet | 7a06ffb | 2021-10-13 17:22:17 +0200 | [diff] [blame] | 1486 | int cap = 0, cur_arg; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1487 | |
Christopher Faulet | 91b3ec1 | 2020-01-17 22:30:06 +0100 | [diff] [blame] | 1488 | if (args[*orig_arg-1][0] == 'e') { |
| 1489 | rule->action = ACT_CUSTOM; |
| 1490 | rule->action_ptr = http_action_early_hint; |
| 1491 | } |
Christopher Faulet | d1f27e3 | 2019-12-17 09:33:38 +0100 | [diff] [blame] | 1492 | else { |
| 1493 | if (args[*orig_arg-1][0] == 's') |
| 1494 | rule->action = 0; // set-header |
| 1495 | else |
| 1496 | rule->action = 1; // add-header |
| 1497 | rule->action_ptr = http_action_set_header; |
| 1498 | } |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 1499 | rule->release_ptr = release_http_action; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1500 | |
| 1501 | cur_arg = *orig_arg; |
| 1502 | if (!*args[cur_arg] || !*args[cur_arg+1]) { |
| 1503 | memprintf(err, "expects exactly 2 arguments"); |
| 1504 | return ACT_RET_PRS_ERR; |
| 1505 | } |
| 1506 | |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1507 | |
Tim Duesterhus | f4f6c0f | 2022-03-15 13:11:08 +0100 | [diff] [blame] | 1508 | rule->arg.http.str = ist(strdup(args[cur_arg])); |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 1509 | LIST_INIT(&rule->arg.http.fmt); |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1510 | |
| 1511 | if (rule->from == ACT_F_HTTP_REQ) { |
| 1512 | px->conf.args.ctx = ARGC_HRQ; |
Christopher Faulet | 7a06ffb | 2021-10-13 17:22:17 +0200 | [diff] [blame] | 1513 | if (px->cap & PR_CAP_FE) |
| 1514 | cap |= SMP_VAL_FE_HRQ_HDR; |
| 1515 | if (px->cap & PR_CAP_BE) |
| 1516 | cap |= SMP_VAL_BE_HRQ_HDR; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1517 | } |
| 1518 | else{ |
| 1519 | px->conf.args.ctx = ARGC_HRS; |
Christopher Faulet | 7a06ffb | 2021-10-13 17:22:17 +0200 | [diff] [blame] | 1520 | if (px->cap & PR_CAP_FE) |
| 1521 | cap |= SMP_VAL_FE_HRS_HDR; |
| 1522 | if (px->cap & PR_CAP_BE) |
| 1523 | cap |= SMP_VAL_BE_HRS_HDR; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1524 | } |
| 1525 | |
| 1526 | cur_arg++; |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 1527 | if (!parse_logformat_string(args[cur_arg], px, &rule->arg.http.fmt, LOG_OPT_HTTP, cap, err)) { |
Tim Duesterhus | ed52637 | 2020-03-05 17:56:33 +0100 | [diff] [blame] | 1528 | istfree(&rule->arg.http.str); |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1529 | return ACT_RET_PRS_ERR; |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 1530 | } |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1531 | |
| 1532 | free(px->conf.lfs_file); |
| 1533 | px->conf.lfs_file = strdup(px->conf.args.file); |
| 1534 | px->conf.lfs_line = px->conf.args.line; |
| 1535 | |
| 1536 | *orig_arg = cur_arg + 1; |
| 1537 | return ACT_RET_PRS_OK; |
| 1538 | } |
| 1539 | |
Christopher Faulet | 92d34fe | 2019-12-17 09:20:34 +0100 | [diff] [blame] | 1540 | /* This function executes a replace-header or replace-value actions. It |
| 1541 | * builds a string in the trash from the specified format string. It finds |
| 1542 | * the action to be performed in <.action>, previously filled by function |
Ilya Shipitsin | c02a23f | 2020-05-06 00:53:22 +0500 | [diff] [blame] | 1543 | * parse_replace_header(). The replacement action is executed by the function |
Christopher Faulet | 92d34fe | 2019-12-17 09:20:34 +0100 | [diff] [blame] | 1544 | * http_action_replace_header(). On success, it returns ACT_RET_CONT. If an error |
| 1545 | * occurs while soft rewrites are enabled, the action is canceled, but the rule |
| 1546 | * processing continue. Otherwsize ACT_RET_ERR is returned. |
| 1547 | */ |
| 1548 | static enum act_return http_action_replace_header(struct act_rule *rule, struct proxy *px, |
| 1549 | struct session *sess, struct stream *s, int flags) |
| 1550 | { |
Christopher Faulet | 91e31d8 | 2020-01-24 15:37:13 +0100 | [diff] [blame] | 1551 | struct http_msg *msg = ((rule->from == ACT_F_HTTP_REQ) ? &s->txn->req : &s->txn->rsp); |
| 1552 | struct htx *htx = htxbuf(&msg->chn->buf); |
Christopher Faulet | 92d34fe | 2019-12-17 09:20:34 +0100 | [diff] [blame] | 1553 | enum act_return ret = ACT_RET_CONT; |
| 1554 | struct buffer *replace; |
| 1555 | int r; |
| 1556 | |
| 1557 | replace = alloc_trash_chunk(); |
| 1558 | if (!replace) |
| 1559 | goto fail_alloc; |
| 1560 | |
| 1561 | replace->data = build_logline(s, replace->area, replace->size, &rule->arg.http.fmt); |
| 1562 | |
| 1563 | r = http_replace_hdrs(s, htx, rule->arg.http.str, replace->area, rule->arg.http.re, (rule->action == 0)); |
| 1564 | if (r == -1) |
| 1565 | goto fail_rewrite; |
| 1566 | |
| 1567 | leave: |
| 1568 | free_trash_chunk(replace); |
| 1569 | return ret; |
| 1570 | |
| 1571 | fail_alloc: |
| 1572 | if (!(s->flags & SF_ERR_MASK)) |
| 1573 | s->flags |= SF_ERR_RESOURCE; |
| 1574 | ret = ACT_RET_ERR; |
| 1575 | goto leave; |
| 1576 | |
| 1577 | fail_rewrite: |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1578 | _HA_ATOMIC_INC(&sess->fe->fe_counters.failed_rewrites); |
Christopher Faulet | 92d34fe | 2019-12-17 09:20:34 +0100 | [diff] [blame] | 1579 | if (s->flags & SF_BE_ASSIGNED) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1580 | _HA_ATOMIC_INC(&s->be->be_counters.failed_rewrites); |
William Lallemand | 36119de | 2021-03-08 15:26:48 +0100 | [diff] [blame] | 1581 | if (sess->listener && sess->listener->counters) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1582 | _HA_ATOMIC_INC(&sess->listener->counters->failed_rewrites); |
Christopher Faulet | 92d34fe | 2019-12-17 09:20:34 +0100 | [diff] [blame] | 1583 | if (objt_server(s->target)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1584 | _HA_ATOMIC_INC(&__objt_server(s->target)->counters.failed_rewrites); |
Christopher Faulet | 92d34fe | 2019-12-17 09:20:34 +0100 | [diff] [blame] | 1585 | |
Christopher Faulet | 333bf8c | 2020-01-22 14:38:05 +0100 | [diff] [blame] | 1586 | if (!(msg->flags & HTTP_MSGF_SOFT_RW)) { |
Christopher Faulet | 92d34fe | 2019-12-17 09:20:34 +0100 | [diff] [blame] | 1587 | ret = ACT_RET_ERR; |
Christopher Faulet | 333bf8c | 2020-01-22 14:38:05 +0100 | [diff] [blame] | 1588 | if (!(s->flags & SF_ERR_MASK)) |
| 1589 | s->flags |= SF_ERR_PRXCOND; |
| 1590 | } |
Christopher Faulet | 92d34fe | 2019-12-17 09:20:34 +0100 | [diff] [blame] | 1591 | goto leave; |
| 1592 | } |
| 1593 | |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1594 | /* Parse a "replace-header" or "replace-value" actions. It takes an header name, |
| 1595 | * a regex and replacement string as arguments. It returns ACT_RET_PRS_OK on |
| 1596 | * success, ACT_RET_PRS_ERR on error. |
| 1597 | */ |
| 1598 | static enum act_parse_ret parse_http_replace_header(const char **args, int *orig_arg, struct proxy *px, |
| 1599 | struct act_rule *rule, char **err) |
| 1600 | { |
Christopher Faulet | 7a06ffb | 2021-10-13 17:22:17 +0200 | [diff] [blame] | 1601 | int cap = 0, cur_arg; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1602 | |
Christopher Faulet | 92d34fe | 2019-12-17 09:20:34 +0100 | [diff] [blame] | 1603 | if (args[*orig_arg-1][8] == 'h') |
| 1604 | rule->action = 0; // replace-header |
| 1605 | else |
| 1606 | rule->action = 1; // replace-value |
| 1607 | rule->action_ptr = http_action_replace_header; |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 1608 | rule->release_ptr = release_http_action; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1609 | |
| 1610 | cur_arg = *orig_arg; |
| 1611 | if (!*args[cur_arg] || !*args[cur_arg+1] || !*args[cur_arg+2]) { |
| 1612 | memprintf(err, "expects exactly 3 arguments"); |
| 1613 | return ACT_RET_PRS_ERR; |
| 1614 | } |
| 1615 | |
Tim Duesterhus | f4f6c0f | 2022-03-15 13:11:08 +0100 | [diff] [blame] | 1616 | rule->arg.http.str = ist(strdup(args[cur_arg])); |
Christopher Faulet | 96bff76 | 2019-12-17 13:46:18 +0100 | [diff] [blame] | 1617 | LIST_INIT(&rule->arg.http.fmt); |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1618 | |
| 1619 | cur_arg++; |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 1620 | if (!(rule->arg.http.re = regex_comp(args[cur_arg], 1, 1, err))) { |
Tim Duesterhus | ed52637 | 2020-03-05 17:56:33 +0100 | [diff] [blame] | 1621 | istfree(&rule->arg.http.str); |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1622 | return ACT_RET_PRS_ERR; |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 1623 | } |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1624 | |
| 1625 | if (rule->from == ACT_F_HTTP_REQ) { |
| 1626 | px->conf.args.ctx = ARGC_HRQ; |
Christopher Faulet | 7a06ffb | 2021-10-13 17:22:17 +0200 | [diff] [blame] | 1627 | if (px->cap & PR_CAP_FE) |
| 1628 | cap |= SMP_VAL_FE_HRQ_HDR; |
| 1629 | if (px->cap & PR_CAP_BE) |
| 1630 | cap |= SMP_VAL_BE_HRQ_HDR; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1631 | } |
| 1632 | else{ |
| 1633 | px->conf.args.ctx = ARGC_HRS; |
Christopher Faulet | 7a06ffb | 2021-10-13 17:22:17 +0200 | [diff] [blame] | 1634 | if (px->cap & PR_CAP_FE) |
| 1635 | cap |= SMP_VAL_FE_HRS_HDR; |
| 1636 | if (px->cap & PR_CAP_BE) |
| 1637 | cap |= SMP_VAL_BE_HRS_HDR; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1638 | } |
| 1639 | |
| 1640 | cur_arg++; |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 1641 | if (!parse_logformat_string(args[cur_arg], px, &rule->arg.http.fmt, LOG_OPT_HTTP, cap, err)) { |
Tim Duesterhus | ed52637 | 2020-03-05 17:56:33 +0100 | [diff] [blame] | 1642 | istfree(&rule->arg.http.str); |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 1643 | regex_free(rule->arg.http.re); |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1644 | return ACT_RET_PRS_ERR; |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 1645 | } |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1646 | |
| 1647 | free(px->conf.lfs_file); |
| 1648 | px->conf.lfs_file = strdup(px->conf.args.file); |
| 1649 | px->conf.lfs_line = px->conf.args.line; |
| 1650 | |
| 1651 | *orig_arg = cur_arg + 1; |
| 1652 | return ACT_RET_PRS_OK; |
| 1653 | } |
| 1654 | |
Maciej Zdeb | ebdd4c5 | 2020-11-20 13:58:48 +0000 | [diff] [blame] | 1655 | /* This function executes a del-header action with selected matching mode for |
| 1656 | * header name. It finds the matching method to be performed in <.action>, previously |
| 1657 | * filled by function parse_http_del_header(). On success, it returns ACT_RET_CONT. |
| 1658 | * Otherwise ACT_RET_ERR is returned. |
| 1659 | */ |
| 1660 | static enum act_return http_action_del_header(struct act_rule *rule, struct proxy *px, |
| 1661 | struct session *sess, struct stream *s, int flags) |
| 1662 | { |
| 1663 | struct http_hdr_ctx ctx; |
| 1664 | struct http_msg *msg = ((rule->from == ACT_F_HTTP_REQ) ? &s->txn->req : &s->txn->rsp); |
| 1665 | struct htx *htx = htxbuf(&msg->chn->buf); |
| 1666 | enum act_return ret = ACT_RET_CONT; |
| 1667 | |
| 1668 | /* remove all occurrences of the header */ |
| 1669 | ctx.blk = NULL; |
| 1670 | switch (rule->action) { |
| 1671 | case PAT_MATCH_STR: |
| 1672 | while (http_find_header(htx, rule->arg.http.str, &ctx, 1)) |
| 1673 | http_remove_header(htx, &ctx); |
| 1674 | break; |
| 1675 | case PAT_MATCH_BEG: |
| 1676 | while (http_find_pfx_header(htx, rule->arg.http.str, &ctx, 1)) |
| 1677 | http_remove_header(htx, &ctx); |
| 1678 | break; |
| 1679 | case PAT_MATCH_END: |
| 1680 | while (http_find_sfx_header(htx, rule->arg.http.str, &ctx, 1)) |
| 1681 | http_remove_header(htx, &ctx); |
| 1682 | break; |
| 1683 | case PAT_MATCH_SUB: |
| 1684 | while (http_find_sub_header(htx, rule->arg.http.str, &ctx, 1)) |
| 1685 | http_remove_header(htx, &ctx); |
| 1686 | break; |
| 1687 | case PAT_MATCH_REG: |
| 1688 | while (http_match_header(htx, rule->arg.http.re, &ctx, 1)) |
| 1689 | http_remove_header(htx, &ctx); |
| 1690 | break; |
| 1691 | default: |
| 1692 | return ACT_RET_ERR; |
| 1693 | } |
| 1694 | return ret; |
| 1695 | } |
| 1696 | |
| 1697 | /* Parse a "del-header" action. It takes string as a required argument, |
| 1698 | * optional flag (currently only -m) and optional matching method of input string |
| 1699 | * with header name to be deleted. Default matching method is exact match (-m str). |
| 1700 | * It returns ACT_RET_PRS_OK on success, ACT_RET_PRS_ERR on error. |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1701 | */ |
| 1702 | static enum act_parse_ret parse_http_del_header(const char **args, int *orig_arg, struct proxy *px, |
| 1703 | struct act_rule *rule, char **err) |
| 1704 | { |
| 1705 | int cur_arg; |
Maciej Zdeb | ebdd4c5 | 2020-11-20 13:58:48 +0000 | [diff] [blame] | 1706 | int pat_idx; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1707 | |
Maciej Zdeb | ebdd4c5 | 2020-11-20 13:58:48 +0000 | [diff] [blame] | 1708 | /* set exact matching (-m str) as default */ |
| 1709 | rule->action = PAT_MATCH_STR; |
| 1710 | rule->action_ptr = http_action_del_header; |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 1711 | rule->release_ptr = release_http_action; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1712 | |
| 1713 | cur_arg = *orig_arg; |
| 1714 | if (!*args[cur_arg]) { |
Maciej Zdeb | ebdd4c5 | 2020-11-20 13:58:48 +0000 | [diff] [blame] | 1715 | memprintf(err, "expects at least 1 argument"); |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1716 | return ACT_RET_PRS_ERR; |
| 1717 | } |
| 1718 | |
Tim Duesterhus | f4f6c0f | 2022-03-15 13:11:08 +0100 | [diff] [blame] | 1719 | rule->arg.http.str = ist(strdup(args[cur_arg])); |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1720 | px->conf.args.ctx = (rule->from == ACT_F_HTTP_REQ ? ARGC_HRQ : ARGC_HRS); |
| 1721 | |
Maciej Zdeb | 6dee996 | 2020-11-23 16:03:09 +0000 | [diff] [blame] | 1722 | LIST_INIT(&rule->arg.http.fmt); |
Maciej Zdeb | ebdd4c5 | 2020-11-20 13:58:48 +0000 | [diff] [blame] | 1723 | if (strcmp(args[cur_arg+1], "-m") == 0) { |
| 1724 | cur_arg++; |
| 1725 | if (!*args[cur_arg+1]) { |
| 1726 | memprintf(err, "-m flag expects exactly 1 argument"); |
| 1727 | return ACT_RET_PRS_ERR; |
| 1728 | } |
| 1729 | |
| 1730 | cur_arg++; |
| 1731 | pat_idx = pat_find_match_name(args[cur_arg]); |
| 1732 | switch (pat_idx) { |
| 1733 | case PAT_MATCH_REG: |
| 1734 | if (!(rule->arg.http.re = regex_comp(rule->arg.http.str.ptr, 1, 1, err))) |
| 1735 | return ACT_RET_PRS_ERR; |
| 1736 | /* fall through */ |
| 1737 | case PAT_MATCH_STR: |
| 1738 | case PAT_MATCH_BEG: |
| 1739 | case PAT_MATCH_END: |
| 1740 | case PAT_MATCH_SUB: |
| 1741 | rule->action = pat_idx; |
| 1742 | break; |
| 1743 | default: |
| 1744 | memprintf(err, "-m with unsupported matching method '%s'", args[cur_arg]); |
| 1745 | return ACT_RET_PRS_ERR; |
| 1746 | } |
| 1747 | } |
| 1748 | |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1749 | *orig_arg = cur_arg + 1; |
| 1750 | return ACT_RET_PRS_OK; |
| 1751 | } |
| 1752 | |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 1753 | /* Release memory allocated by an http redirect action. */ |
| 1754 | static void release_http_redir(struct act_rule *rule) |
| 1755 | { |
| 1756 | struct logformat_node *lf, *lfb; |
| 1757 | struct redirect_rule *redir; |
| 1758 | |
| 1759 | redir = rule->arg.redir; |
Willy Tarreau | 16daaf3 | 2022-04-25 10:25:15 +0200 | [diff] [blame] | 1760 | if (!redir) |
| 1761 | return; |
| 1762 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1763 | LIST_DELETE(&redir->list); |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 1764 | if (redir->cond) { |
| 1765 | prune_acl_cond(redir->cond); |
| 1766 | free(redir->cond); |
| 1767 | } |
| 1768 | free(redir->rdr_str); |
| 1769 | free(redir->cookie_str); |
| 1770 | list_for_each_entry_safe(lf, lfb, &redir->rdr_fmt, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1771 | LIST_DELETE(&lf->list); |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 1772 | free(lf); |
| 1773 | } |
| 1774 | free(redir); |
| 1775 | } |
| 1776 | |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1777 | /* Parse a "redirect" action. It returns ACT_RET_PRS_OK on success, |
| 1778 | * ACT_RET_PRS_ERR on error. |
| 1779 | */ |
| 1780 | static enum act_parse_ret parse_http_redirect(const char **args, int *orig_arg, struct proxy *px, |
| 1781 | struct act_rule *rule, char **err) |
| 1782 | { |
| 1783 | struct redirect_rule *redir; |
| 1784 | int dir, cur_arg; |
| 1785 | |
| 1786 | rule->action = ACT_HTTP_REDIR; |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 1787 | rule->release_ptr = release_http_redir; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1788 | |
| 1789 | cur_arg = *orig_arg; |
| 1790 | |
| 1791 | dir = (rule->from == ACT_F_HTTP_REQ ? 0 : 1); |
| 1792 | if ((redir = http_parse_redirect_rule(px->conf.args.file, px->conf.args.line, px, &args[cur_arg], err, 1, dir)) == NULL) |
| 1793 | return ACT_RET_PRS_ERR; |
| 1794 | |
Willy Tarreau | bc1223b | 2021-09-02 16:54:33 +0200 | [diff] [blame] | 1795 | if (!(redir->flags & REDIRECT_FLAG_IGNORE_EMPTY)) |
| 1796 | rule->flags |= ACT_FLAG_FINAL; |
| 1797 | |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1798 | rule->arg.redir = redir; |
| 1799 | rule->cond = redir->cond; |
| 1800 | redir->cond = NULL; |
| 1801 | |
| 1802 | /* skip all arguments */ |
| 1803 | while (*args[cur_arg]) |
| 1804 | cur_arg++; |
| 1805 | |
| 1806 | *orig_arg = cur_arg; |
| 1807 | return ACT_RET_PRS_OK; |
| 1808 | } |
| 1809 | |
Christopher Faulet | 046cf44 | 2019-12-17 15:45:23 +0100 | [diff] [blame] | 1810 | /* This function executes a add-acl, del-acl, set-map or del-map actions. On |
| 1811 | * success, it returns ACT_RET_CONT. Otherwsize ACT_RET_ERR is returned. |
| 1812 | */ |
| 1813 | static enum act_return http_action_set_map(struct act_rule *rule, struct proxy *px, |
| 1814 | struct session *sess, struct stream *s, int flags) |
| 1815 | { |
| 1816 | struct pat_ref *ref; |
| 1817 | struct buffer *key = NULL, *value = NULL; |
| 1818 | enum act_return ret = ACT_RET_CONT; |
| 1819 | |
| 1820 | /* collect reference */ |
| 1821 | ref = pat_ref_lookup(rule->arg.map.ref); |
| 1822 | if (!ref) |
| 1823 | goto leave; |
| 1824 | |
| 1825 | /* allocate key */ |
| 1826 | key = alloc_trash_chunk(); |
| 1827 | if (!key) |
| 1828 | goto fail_alloc; |
| 1829 | |
| 1830 | /* collect key */ |
| 1831 | key->data = build_logline(s, key->area, key->size, &rule->arg.map.key); |
| 1832 | key->area[key->data] = '\0'; |
| 1833 | |
| 1834 | switch (rule->action) { |
| 1835 | case 0: // add-acl |
| 1836 | /* add entry only if it does not already exist */ |
| 1837 | HA_SPIN_LOCK(PATREF_LOCK, &ref->lock); |
| 1838 | if (pat_ref_find_elt(ref, key->area) == NULL) |
| 1839 | pat_ref_add(ref, key->area, NULL, NULL); |
| 1840 | HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock); |
| 1841 | break; |
| 1842 | |
| 1843 | case 1: // set-map |
| 1844 | /* allocate value */ |
| 1845 | value = alloc_trash_chunk(); |
| 1846 | if (!value) |
| 1847 | goto fail_alloc; |
| 1848 | |
| 1849 | /* collect value */ |
| 1850 | value->data = build_logline(s, value->area, value->size, &rule->arg.map.value); |
| 1851 | value->area[value->data] = '\0'; |
| 1852 | |
| 1853 | HA_SPIN_LOCK(PATREF_LOCK, &ref->lock); |
| 1854 | if (pat_ref_find_elt(ref, key->area) != NULL) { |
| 1855 | /* update entry if it exists */ |
| 1856 | pat_ref_set(ref, key->area, value->area, NULL); |
| 1857 | } |
| 1858 | else { |
| 1859 | /* insert a new entry */ |
| 1860 | pat_ref_add(ref, key->area, value->area, NULL); |
| 1861 | } |
| 1862 | HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock); |
| 1863 | break; |
| 1864 | |
| 1865 | case 2: // del-acl |
| 1866 | case 3: // del-map |
| 1867 | /* returned code: 1=ok, 0=ko */ |
| 1868 | HA_SPIN_LOCK(PATREF_LOCK, &ref->lock); |
| 1869 | pat_ref_delete(ref, key->area); |
| 1870 | HA_SPIN_UNLOCK(PATREF_LOCK, &ref->lock); |
| 1871 | break; |
| 1872 | |
| 1873 | default: |
| 1874 | ret = ACT_RET_ERR; |
| 1875 | } |
| 1876 | |
| 1877 | |
| 1878 | leave: |
| 1879 | free_trash_chunk(key); |
| 1880 | free_trash_chunk(value); |
| 1881 | return ret; |
| 1882 | |
| 1883 | fail_alloc: |
| 1884 | if (!(s->flags & SF_ERR_MASK)) |
| 1885 | s->flags |= SF_ERR_RESOURCE; |
| 1886 | ret = ACT_RET_ERR; |
| 1887 | goto leave; |
| 1888 | } |
| 1889 | |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 1890 | /* Release memory allocated by an http map/acl action. */ |
| 1891 | static void release_http_map(struct act_rule *rule) |
| 1892 | { |
| 1893 | struct logformat_node *lf, *lfb; |
| 1894 | |
| 1895 | free(rule->arg.map.ref); |
| 1896 | list_for_each_entry_safe(lf, lfb, &rule->arg.map.key, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1897 | LIST_DELETE(&lf->list); |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 1898 | release_sample_expr(lf->expr); |
| 1899 | free(lf->arg); |
| 1900 | free(lf); |
| 1901 | } |
| 1902 | if (rule->action == 1) { |
| 1903 | list_for_each_entry_safe(lf, lfb, &rule->arg.map.value, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1904 | LIST_DELETE(&lf->list); |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 1905 | release_sample_expr(lf->expr); |
| 1906 | free(lf->arg); |
| 1907 | free(lf); |
| 1908 | } |
| 1909 | } |
| 1910 | } |
| 1911 | |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1912 | /* Parse a "add-acl", "del-acl", "set-map" or "del-map" actions. It takes one or |
Christopher Faulet | 046cf44 | 2019-12-17 15:45:23 +0100 | [diff] [blame] | 1913 | * two log-format string as argument depending on the action. The action is |
| 1914 | * stored in <.action> as an int (0=add-acl, 1=set-map, 2=del-acl, |
| 1915 | * 3=del-map). It returns ACT_RET_PRS_OK on success, ACT_RET_PRS_ERR on error. |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1916 | */ |
| 1917 | static enum act_parse_ret parse_http_set_map(const char **args, int *orig_arg, struct proxy *px, |
| 1918 | struct act_rule *rule, char **err) |
| 1919 | { |
Christopher Faulet | 7a06ffb | 2021-10-13 17:22:17 +0200 | [diff] [blame] | 1920 | int cap = 0, cur_arg; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1921 | |
Christopher Faulet | 046cf44 | 2019-12-17 15:45:23 +0100 | [diff] [blame] | 1922 | if (args[*orig_arg-1][0] == 'a') // add-acl |
| 1923 | rule->action = 0; |
| 1924 | else if (args[*orig_arg-1][0] == 's') // set-map |
| 1925 | rule->action = 1; |
| 1926 | else if (args[*orig_arg-1][4] == 'a') // del-acl |
| 1927 | rule->action = 2; |
| 1928 | else if (args[*orig_arg-1][4] == 'm') // del-map |
| 1929 | rule->action = 3; |
| 1930 | else { |
| 1931 | memprintf(err, "internal error: unhandled action '%s'", args[0]); |
| 1932 | return ACT_RET_PRS_ERR; |
| 1933 | } |
| 1934 | rule->action_ptr = http_action_set_map; |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 1935 | rule->release_ptr = release_http_map; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1936 | |
| 1937 | cur_arg = *orig_arg; |
Christopher Faulet | 046cf44 | 2019-12-17 15:45:23 +0100 | [diff] [blame] | 1938 | if (rule->action == 1 && (!*args[cur_arg] || !*args[cur_arg+1])) { |
| 1939 | /* 2 args for set-map */ |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1940 | memprintf(err, "expects exactly 2 arguments"); |
| 1941 | return ACT_RET_PRS_ERR; |
| 1942 | } |
| 1943 | else if (!*args[cur_arg]) { |
Christopher Faulet | 046cf44 | 2019-12-17 15:45:23 +0100 | [diff] [blame] | 1944 | /* only one arg for other actions */ |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1945 | memprintf(err, "expects exactly 1 arguments"); |
| 1946 | return ACT_RET_PRS_ERR; |
| 1947 | } |
| 1948 | |
| 1949 | /* |
| 1950 | * '+ 8' for 'set-map(' (same for del-map) |
| 1951 | * '- 9' for 'set-map(' + trailing ')' (same for del-map) |
| 1952 | */ |
| 1953 | rule->arg.map.ref = my_strndup(args[cur_arg-1] + 8, strlen(args[cur_arg-1]) - 9); |
| 1954 | |
| 1955 | if (rule->from == ACT_F_HTTP_REQ) { |
| 1956 | px->conf.args.ctx = ARGC_HRQ; |
Christopher Faulet | 7a06ffb | 2021-10-13 17:22:17 +0200 | [diff] [blame] | 1957 | if (px->cap & PR_CAP_FE) |
| 1958 | cap |= SMP_VAL_FE_HRQ_HDR; |
| 1959 | if (px->cap & PR_CAP_BE) |
| 1960 | cap |= SMP_VAL_BE_HRQ_HDR; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1961 | } |
| 1962 | else{ |
| 1963 | px->conf.args.ctx = ARGC_HRS; |
Christopher Faulet | 7a06ffb | 2021-10-13 17:22:17 +0200 | [diff] [blame] | 1964 | if (px->cap & PR_CAP_FE) |
| 1965 | cap |= SMP_VAL_FE_HRS_HDR; |
| 1966 | if (px->cap & PR_CAP_BE) |
| 1967 | cap |= SMP_VAL_BE_HRS_HDR; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1968 | } |
| 1969 | |
| 1970 | /* key pattern */ |
| 1971 | LIST_INIT(&rule->arg.map.key); |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 1972 | if (!parse_logformat_string(args[cur_arg], px, &rule->arg.map.key, LOG_OPT_HTTP, cap, err)) { |
| 1973 | free(rule->arg.map.ref); |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1974 | return ACT_RET_PRS_ERR; |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 1975 | } |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1976 | |
Christopher Faulet | 046cf44 | 2019-12-17 15:45:23 +0100 | [diff] [blame] | 1977 | if (rule->action == 1) { |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1978 | /* value pattern for set-map only */ |
| 1979 | cur_arg++; |
| 1980 | LIST_INIT(&rule->arg.map.value); |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 1981 | if (!parse_logformat_string(args[cur_arg], px, &rule->arg.map.value, LOG_OPT_HTTP, cap, err)) { |
| 1982 | free(rule->arg.map.ref); |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1983 | return ACT_RET_PRS_ERR; |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 1984 | } |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 1985 | } |
| 1986 | |
| 1987 | free(px->conf.lfs_file); |
| 1988 | px->conf.lfs_file = strdup(px->conf.args.file); |
| 1989 | px->conf.lfs_line = px->conf.args.line; |
| 1990 | |
| 1991 | *orig_arg = cur_arg + 1; |
| 1992 | return ACT_RET_PRS_OK; |
| 1993 | } |
| 1994 | |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 1995 | /* This function executes a track-sc* actions. On success, it returns |
| 1996 | * ACT_RET_CONT. Otherwsize ACT_RET_ERR is returned. |
| 1997 | */ |
| 1998 | static enum act_return http_action_track_sc(struct act_rule *rule, struct proxy *px, |
| 1999 | struct session *sess, struct stream *s, int flags) |
| 2000 | { |
| 2001 | struct stktable *t; |
| 2002 | struct stksess *ts; |
| 2003 | struct stktable_key *key; |
Willy Tarreau | 826f3ab | 2021-02-10 12:07:15 +0100 | [diff] [blame] | 2004 | void *ptr1, *ptr2, *ptr3, *ptr4, *ptr5, *ptr6; |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 2005 | int opt; |
| 2006 | |
Willy Tarreau | 826f3ab | 2021-02-10 12:07:15 +0100 | [diff] [blame] | 2007 | ptr1 = ptr2 = ptr3 = ptr4 = ptr5 = ptr6 = NULL; |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 2008 | opt = ((rule->from == ACT_F_HTTP_REQ) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES) | SMP_OPT_FINAL; |
| 2009 | |
| 2010 | t = rule->arg.trk_ctr.table.t; |
Emeric Brun | 362d25e | 2021-03-10 16:58:03 +0100 | [diff] [blame] | 2011 | |
| 2012 | if (stkctr_entry(&s->stkctr[rule->action])) |
| 2013 | goto end; |
| 2014 | |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 2015 | key = stktable_fetch_key(t, s->be, sess, s, opt, rule->arg.trk_ctr.expr, NULL); |
| 2016 | |
| 2017 | if (!key) |
| 2018 | goto end; |
| 2019 | ts = stktable_get_entry(t, key); |
| 2020 | if (!ts) |
| 2021 | goto end; |
| 2022 | |
| 2023 | stream_track_stkctr(&s->stkctr[rule->action], t, ts); |
| 2024 | |
| 2025 | /* let's count a new HTTP request as it's the first time we do it */ |
| 2026 | ptr1 = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_CNT); |
| 2027 | ptr2 = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_REQ_RATE); |
| 2028 | |
| 2029 | /* When the client triggers a 4xx from the server, it's most often due |
| 2030 | * to a missing object or permission. These events should be tracked |
| 2031 | * because if they happen often, it may indicate a brute force or a |
| 2032 | * vulnerability scan. Normally this is done when receiving the response |
| 2033 | * but here we're tracking after this ought to have been done so we have |
| 2034 | * to do it on purpose. |
| 2035 | */ |
| 2036 | if (rule->from == ACT_F_HTTP_RES && (unsigned)(s->txn->status - 400) < 100) { |
| 2037 | ptr3 = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_ERR_CNT); |
| 2038 | ptr4 = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_ERR_RATE); |
| 2039 | } |
| 2040 | |
Willy Tarreau | 826f3ab | 2021-02-10 12:07:15 +0100 | [diff] [blame] | 2041 | if (rule->from == ACT_F_HTTP_RES && (unsigned)(s->txn->status - 500) < 100 && |
| 2042 | s->txn->status != 501 && s->txn->status != 505) { |
| 2043 | ptr5 = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_FAIL_CNT); |
| 2044 | ptr6 = stktable_data_ptr(t, ts, STKTABLE_DT_HTTP_FAIL_RATE); |
| 2045 | } |
| 2046 | |
| 2047 | if (ptr1 || ptr2 || ptr3 || ptr4 || ptr5 || ptr6) { |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 2048 | HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock); |
| 2049 | |
| 2050 | if (ptr1) |
Emeric Brun | 0e3457b | 2021-06-30 17:18:28 +0200 | [diff] [blame] | 2051 | stktable_data_cast(ptr1, std_t_uint)++; |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 2052 | if (ptr2) |
Emeric Brun | 0e3457b | 2021-06-30 17:18:28 +0200 | [diff] [blame] | 2053 | update_freq_ctr_period(&stktable_data_cast(ptr2, std_t_frqp), |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 2054 | t->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u, 1); |
| 2055 | if (ptr3) |
Emeric Brun | 0e3457b | 2021-06-30 17:18:28 +0200 | [diff] [blame] | 2056 | stktable_data_cast(ptr3, std_t_uint)++; |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 2057 | if (ptr4) |
Emeric Brun | 0e3457b | 2021-06-30 17:18:28 +0200 | [diff] [blame] | 2058 | update_freq_ctr_period(&stktable_data_cast(ptr4, std_t_frqp), |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 2059 | t->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u, 1); |
Willy Tarreau | 826f3ab | 2021-02-10 12:07:15 +0100 | [diff] [blame] | 2060 | if (ptr5) |
Emeric Brun | 0e3457b | 2021-06-30 17:18:28 +0200 | [diff] [blame] | 2061 | stktable_data_cast(ptr5, std_t_uint)++; |
Willy Tarreau | 826f3ab | 2021-02-10 12:07:15 +0100 | [diff] [blame] | 2062 | if (ptr6) |
Emeric Brun | 0e3457b | 2021-06-30 17:18:28 +0200 | [diff] [blame] | 2063 | update_freq_ctr_period(&stktable_data_cast(ptr6, std_t_frqp), |
Willy Tarreau | 826f3ab | 2021-02-10 12:07:15 +0100 | [diff] [blame] | 2064 | t->data_arg[STKTABLE_DT_HTTP_FAIL_RATE].u, 1); |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 2065 | |
| 2066 | HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock); |
| 2067 | |
| 2068 | /* If data was modified, we need to touch to re-schedule sync */ |
| 2069 | stktable_touch_local(t, ts, 0); |
| 2070 | } |
| 2071 | |
| 2072 | stkctr_set_flags(&s->stkctr[rule->action], STKCTR_TRACK_CONTENT); |
| 2073 | if (sess->fe != s->be) |
| 2074 | stkctr_set_flags(&s->stkctr[rule->action], STKCTR_TRACK_BACKEND); |
| 2075 | |
| 2076 | end: |
| 2077 | return ACT_RET_CONT; |
| 2078 | } |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2079 | |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 2080 | static void release_http_track_sc(struct act_rule *rule) |
| 2081 | { |
| 2082 | release_sample_expr(rule->arg.trk_ctr.expr); |
| 2083 | } |
| 2084 | |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2085 | /* Parse a "track-sc*" actions. It returns ACT_RET_PRS_OK on success, |
| 2086 | * ACT_RET_PRS_ERR on error. |
| 2087 | */ |
| 2088 | static enum act_parse_ret parse_http_track_sc(const char **args, int *orig_arg, struct proxy *px, |
| 2089 | struct act_rule *rule, char **err) |
| 2090 | { |
| 2091 | struct sample_expr *expr; |
| 2092 | unsigned int where; |
| 2093 | unsigned int tsc_num; |
| 2094 | const char *tsc_num_str; |
| 2095 | int cur_arg; |
| 2096 | |
| 2097 | tsc_num_str = &args[*orig_arg-1][8]; |
| 2098 | if (cfg_parse_track_sc_num(&tsc_num, tsc_num_str, tsc_num_str + strlen(tsc_num_str), err) == -1) |
| 2099 | return ACT_RET_PRS_ERR; |
| 2100 | |
| 2101 | cur_arg = *orig_arg; |
| 2102 | expr = sample_parse_expr((char **)args, &cur_arg, px->conf.args.file, px->conf.args.line, |
Willy Tarreau | e3b57bf | 2020-02-14 16:50:14 +0100 | [diff] [blame] | 2103 | err, &px->conf.args, NULL); |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2104 | if (!expr) |
| 2105 | return ACT_RET_PRS_ERR; |
| 2106 | |
| 2107 | where = 0; |
| 2108 | if (px->cap & PR_CAP_FE) |
| 2109 | where |= (rule->from == ACT_F_HTTP_REQ ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_FE_HRS_HDR); |
| 2110 | if (px->cap & PR_CAP_BE) |
| 2111 | where |= (rule->from == ACT_F_HTTP_REQ ? SMP_VAL_BE_HRQ_HDR : SMP_VAL_BE_HRS_HDR); |
| 2112 | |
| 2113 | if (!(expr->fetch->val & where)) { |
| 2114 | memprintf(err, "fetch method '%s' extracts information from '%s', none of which is available here", |
| 2115 | args[cur_arg-1], sample_src_names(expr->fetch->use)); |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 2116 | release_sample_expr(expr); |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2117 | return ACT_RET_PRS_ERR; |
| 2118 | } |
| 2119 | |
| 2120 | if (strcmp(args[cur_arg], "table") == 0) { |
| 2121 | cur_arg++; |
| 2122 | if (!*args[cur_arg]) { |
| 2123 | memprintf(err, "missing table name"); |
Christopher Faulet | 1337b32 | 2020-01-14 14:50:55 +0100 | [diff] [blame] | 2124 | release_sample_expr(expr); |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2125 | return ACT_RET_PRS_ERR; |
| 2126 | } |
| 2127 | |
| 2128 | /* we copy the table name for now, it will be resolved later */ |
| 2129 | rule->arg.trk_ctr.table.n = strdup(args[cur_arg]); |
| 2130 | cur_arg++; |
| 2131 | } |
| 2132 | |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 2133 | rule->action = tsc_num; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2134 | rule->arg.trk_ctr.expr = expr; |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 2135 | rule->action_ptr = http_action_track_sc; |
Christopher Faulet | 2eb5396 | 2020-01-14 14:47:34 +0100 | [diff] [blame] | 2136 | rule->release_ptr = release_http_track_sc; |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2137 | rule->check_ptr = check_trk_action; |
| 2138 | |
| 2139 | *orig_arg = cur_arg; |
| 2140 | return ACT_RET_PRS_OK; |
| 2141 | } |
| 2142 | |
Amaury Denoyelle | 8d22823 | 2020-12-10 13:43:54 +0100 | [diff] [blame] | 2143 | static enum act_return action_timeout_set_stream_timeout(struct act_rule *rule, |
| 2144 | struct proxy *px, |
| 2145 | struct session *sess, |
| 2146 | struct stream *s, |
| 2147 | int flags) |
| 2148 | { |
| 2149 | struct sample *key; |
| 2150 | |
| 2151 | if (rule->arg.timeout.expr) { |
| 2152 | key = sample_fetch_as_type(px, sess, s, SMP_OPT_FINAL, rule->arg.timeout.expr, SMP_T_SINT); |
| 2153 | if (!key) |
| 2154 | return ACT_RET_CONT; |
| 2155 | |
| 2156 | stream_set_timeout(s, rule->arg.timeout.type, MS_TO_TICKS(key->data.u.sint)); |
| 2157 | } |
| 2158 | else { |
| 2159 | stream_set_timeout(s, rule->arg.timeout.type, MS_TO_TICKS(rule->arg.timeout.value)); |
| 2160 | } |
| 2161 | |
| 2162 | return ACT_RET_CONT; |
| 2163 | } |
| 2164 | |
| 2165 | /* Parse a "set-timeout" action. Returns ACT_RET_PRS_ERR if parsing error. |
| 2166 | */ |
| 2167 | static enum act_parse_ret parse_http_set_timeout(const char **args, |
| 2168 | int *orig_arg, |
| 2169 | struct proxy *px, |
| 2170 | struct act_rule *rule, char **err) |
| 2171 | { |
| 2172 | int cur_arg; |
| 2173 | |
| 2174 | rule->action = ACT_CUSTOM; |
| 2175 | rule->action_ptr = action_timeout_set_stream_timeout; |
| 2176 | rule->release_ptr = release_timeout_action; |
| 2177 | |
| 2178 | cur_arg = *orig_arg; |
| 2179 | if (!*args[cur_arg] || !*args[cur_arg + 1]) { |
| 2180 | memprintf(err, "expects exactly 2 arguments"); |
| 2181 | return ACT_RET_PRS_ERR; |
| 2182 | } |
| 2183 | |
| 2184 | if (!(px->cap & PR_CAP_BE)) { |
| 2185 | memprintf(err, "proxy '%s' has no backend capability", px->id); |
| 2186 | return ACT_RET_PRS_ERR; |
| 2187 | } |
| 2188 | |
| 2189 | if (cfg_parse_rule_set_timeout(args, cur_arg, |
| 2190 | &rule->arg.timeout.value, |
| 2191 | &rule->arg.timeout.type, |
| 2192 | &rule->arg.timeout.expr, |
| 2193 | err, |
| 2194 | px->conf.args.file, |
| 2195 | px->conf.args.line, &px->conf.args) == -1) { |
| 2196 | return ACT_RET_PRS_ERR; |
| 2197 | } |
| 2198 | |
| 2199 | *orig_arg = cur_arg + 2; |
| 2200 | |
| 2201 | return ACT_RET_PRS_OK; |
| 2202 | } |
| 2203 | |
Christopher Faulet | 46f9554 | 2019-12-20 10:07:22 +0100 | [diff] [blame] | 2204 | /* This function executes a strict-mode actions. On success, it always returns |
| 2205 | * ACT_RET_CONT |
| 2206 | */ |
| 2207 | static enum act_return http_action_strict_mode(struct act_rule *rule, struct proxy *px, |
| 2208 | struct session *sess, struct stream *s, int flags) |
| 2209 | { |
| 2210 | struct http_msg *msg = ((rule->from == ACT_F_HTTP_REQ) ? &s->txn->req : &s->txn->rsp); |
| 2211 | |
| 2212 | if (rule->action == 0) // strict-mode on |
| 2213 | msg->flags &= ~HTTP_MSGF_SOFT_RW; |
| 2214 | else // strict-mode off |
| 2215 | msg->flags |= HTTP_MSGF_SOFT_RW; |
| 2216 | return ACT_RET_CONT; |
| 2217 | } |
| 2218 | |
| 2219 | /* Parse a "strict-mode" action. It returns ACT_RET_PRS_OK on success, |
| 2220 | * ACT_RET_PRS_ERR on error. |
| 2221 | */ |
| 2222 | static enum act_parse_ret parse_http_strict_mode(const char **args, int *orig_arg, struct proxy *px, |
| 2223 | struct act_rule *rule, char **err) |
| 2224 | { |
| 2225 | int cur_arg; |
| 2226 | |
Christopher Faulet | 46f9554 | 2019-12-20 10:07:22 +0100 | [diff] [blame] | 2227 | cur_arg = *orig_arg; |
| 2228 | if (!*args[cur_arg]) { |
| 2229 | memprintf(err, "expects exactly 1 arguments"); |
| 2230 | return ACT_RET_PRS_ERR; |
| 2231 | } |
| 2232 | |
| 2233 | if (strcasecmp(args[cur_arg], "on") == 0) |
| 2234 | rule->action = 0; // strict-mode on |
| 2235 | else if (strcasecmp(args[cur_arg], "off") == 0) |
| 2236 | rule->action = 1; // strict-mode off |
| 2237 | else { |
| 2238 | memprintf(err, "Unexpected value '%s'. Only 'on' and 'off' are supported", args[cur_arg]); |
| 2239 | return ACT_RET_PRS_ERR; |
| 2240 | } |
| 2241 | rule->action_ptr = http_action_strict_mode; |
| 2242 | |
| 2243 | *orig_arg = cur_arg + 1; |
| 2244 | return ACT_RET_PRS_OK; |
| 2245 | } |
| 2246 | |
Christopher Faulet | 24231ab | 2020-01-24 17:44:23 +0100 | [diff] [blame] | 2247 | /* This function executes a return action. It builds an HTX message from an |
| 2248 | * errorfile, an raw file or a log-format string, depending on <.action> |
| 2249 | * value. On success, it returns ACT_RET_ABRT. If an error occurs ACT_RET_ERR is |
| 2250 | * returned. |
| 2251 | */ |
| 2252 | static enum act_return http_action_return(struct act_rule *rule, struct proxy *px, |
| 2253 | struct session *sess, struct stream *s, int flags) |
| 2254 | { |
| 2255 | struct channel *req = &s->req; |
Christopher Faulet | 24231ab | 2020-01-24 17:44:23 +0100 | [diff] [blame] | 2256 | |
Christopher Faulet | 2d36df2 | 2021-02-19 11:41:01 +0100 | [diff] [blame] | 2257 | s->txn->status = rule->arg.http_reply->status; |
Christopher Faulet | 0e2ad61 | 2020-05-13 16:38:37 +0200 | [diff] [blame] | 2258 | if (http_reply_message(s, rule->arg.http_reply) == -1) |
| 2259 | return ACT_RET_ERR; |
Christopher Faulet | 24231ab | 2020-01-24 17:44:23 +0100 | [diff] [blame] | 2260 | |
Christopher Faulet | 24231ab | 2020-01-24 17:44:23 +0100 | [diff] [blame] | 2261 | if (rule->from == ACT_F_HTTP_REQ) { |
| 2262 | /* let's log the request time */ |
| 2263 | s->logs.tv_request = now; |
| 2264 | req->analysers &= AN_REQ_FLT_END; |
| 2265 | |
| 2266 | if (s->sess->fe == s->be) /* report it if the request was intercepted by the frontend */ |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2267 | _HA_ATOMIC_INC(&s->sess->fe->fe_counters.intercepted_req); |
Christopher Faulet | 24231ab | 2020-01-24 17:44:23 +0100 | [diff] [blame] | 2268 | } |
| 2269 | |
| 2270 | if (!(s->flags & SF_ERR_MASK)) |
| 2271 | s->flags |= SF_ERR_LOCAL; |
| 2272 | if (!(s->flags & SF_FINST_MASK)) |
| 2273 | s->flags |= ((rule->from == ACT_F_HTTP_REQ) ? SF_FINST_R : SF_FINST_H); |
| 2274 | |
Christopher Faulet | 0e2ad61 | 2020-05-13 16:38:37 +0200 | [diff] [blame] | 2275 | return ACT_RET_ABRT; |
Christopher Faulet | 24231ab | 2020-01-24 17:44:23 +0100 | [diff] [blame] | 2276 | } |
| 2277 | |
Christopher Faulet | 24231ab | 2020-01-24 17:44:23 +0100 | [diff] [blame] | 2278 | /* Parse a "return" action. It returns ACT_RET_PRS_OK on success, |
Christopher Faulet | 47e791e | 2020-05-13 14:36:55 +0200 | [diff] [blame] | 2279 | * ACT_RET_PRS_ERR on error. It relies on http_parse_http_reply() to set |
| 2280 | * <.arg.http_reply>. |
Christopher Faulet | 24231ab | 2020-01-24 17:44:23 +0100 | [diff] [blame] | 2281 | */ |
| 2282 | static enum act_parse_ret parse_http_return(const char **args, int *orig_arg, struct proxy *px, |
| 2283 | struct act_rule *rule, char **err) |
| 2284 | { |
Christopher Faulet | 47e791e | 2020-05-13 14:36:55 +0200 | [diff] [blame] | 2285 | /* Prepare parsing of log-format strings */ |
| 2286 | px->conf.args.ctx = ((rule->from == ACT_F_HTTP_REQ) ? ARGC_HRQ : ARGC_HRS); |
| 2287 | rule->arg.http_reply = http_parse_http_reply(args, orig_arg, px, 200, err); |
| 2288 | if (!rule->arg.http_reply) |
| 2289 | return ACT_RET_PRS_ERR; |
Christopher Faulet | 24231ab | 2020-01-24 17:44:23 +0100 | [diff] [blame] | 2290 | |
Christopher Faulet | ba946bf | 2020-05-13 08:50:07 +0200 | [diff] [blame] | 2291 | rule->flags |= ACT_FLAG_FINAL; |
Christopher Faulet | 5ff0c64 | 2020-05-12 18:33:37 +0200 | [diff] [blame] | 2292 | rule->action = ACT_CUSTOM; |
Christopher Faulet | 5cb513a | 2020-05-13 17:56:56 +0200 | [diff] [blame] | 2293 | rule->check_ptr = check_act_http_reply; |
Christopher Faulet | 24231ab | 2020-01-24 17:44:23 +0100 | [diff] [blame] | 2294 | rule->action_ptr = http_action_return; |
Christopher Faulet | 5cb513a | 2020-05-13 17:56:56 +0200 | [diff] [blame] | 2295 | rule->release_ptr = release_act_http_reply; |
Christopher Faulet | 24231ab | 2020-01-24 17:44:23 +0100 | [diff] [blame] | 2296 | return ACT_RET_PRS_OK; |
Christopher Faulet | 24231ab | 2020-01-24 17:44:23 +0100 | [diff] [blame] | 2297 | } |
| 2298 | |
Christopher Faulet | 021a8e4 | 2021-03-29 10:46:38 +0200 | [diff] [blame] | 2299 | |
| 2300 | |
| 2301 | /* This function executes a wait-for-body action. It waits for the message |
| 2302 | * payload for a max configured time (.arg.p[0]) and eventually for only first |
| 2303 | * <arg.p[1]> bytes (0 means no limit). It relies on http_wait_for_msg_body() |
| 2304 | * function. it returns ACT_RET_CONT when conditions are met to stop to wait. |
| 2305 | * Otherwise ACT_RET_YIELD is returned to wait for more data. ACT_RET_INV is |
| 2306 | * returned if a parsing error is raised by lower level and ACT_RET_ERR if an |
Ilya Shipitsin | b2be9a1 | 2021-04-24 13:25:42 +0500 | [diff] [blame] | 2307 | * internal error occurred. Finally ACT_RET_ABRT is returned when a timeout |
| 2308 | * occurred. |
Christopher Faulet | 021a8e4 | 2021-03-29 10:46:38 +0200 | [diff] [blame] | 2309 | */ |
| 2310 | static enum act_return http_action_wait_for_body(struct act_rule *rule, struct proxy *px, |
| 2311 | struct session *sess, struct stream *s, int flags) |
| 2312 | { |
| 2313 | struct channel *chn = ((rule->from == ACT_F_HTTP_REQ) ? &s->req : &s->res); |
| 2314 | unsigned int time = (uintptr_t)rule->arg.act.p[0]; |
| 2315 | unsigned int bytes = (uintptr_t)rule->arg.act.p[1]; |
| 2316 | |
| 2317 | switch (http_wait_for_msg_body(s, chn, time, bytes)) { |
| 2318 | case HTTP_RULE_RES_CONT: |
| 2319 | return ACT_RET_CONT; |
| 2320 | case HTTP_RULE_RES_YIELD: |
| 2321 | return ACT_RET_YIELD; |
| 2322 | case HTTP_RULE_RES_BADREQ: |
| 2323 | return ACT_RET_INV; |
| 2324 | case HTTP_RULE_RES_ERROR: |
| 2325 | return ACT_RET_ERR; |
| 2326 | case HTTP_RULE_RES_ABRT: |
| 2327 | return ACT_RET_ABRT; |
| 2328 | default: |
| 2329 | return ACT_RET_ERR; |
| 2330 | } |
| 2331 | } |
| 2332 | |
| 2333 | /* Parse a "wait-for-body" action. It returns ACT_RET_PRS_OK on success, |
| 2334 | * ACT_RET_PRS_ERR on error. |
| 2335 | */ |
| 2336 | static enum act_parse_ret parse_http_wait_for_body(const char **args, int *orig_arg, struct proxy *px, |
| 2337 | struct act_rule *rule, char **err) |
| 2338 | { |
| 2339 | int cur_arg; |
| 2340 | unsigned int time, bytes; |
| 2341 | const char *res; |
| 2342 | |
| 2343 | cur_arg = *orig_arg; |
| 2344 | if (!*args[cur_arg]) { |
| 2345 | memprintf(err, "expects time <time> [ at-least <bytes> ]"); |
| 2346 | return ACT_RET_PRS_ERR; |
| 2347 | } |
| 2348 | |
| 2349 | time = UINT_MAX; /* To be sure it is set */ |
| 2350 | bytes = 0; /* Default value, wait all the body */ |
| 2351 | while (*(args[cur_arg])) { |
| 2352 | if (strcmp(args[cur_arg], "time") == 0) { |
| 2353 | if (!*args[cur_arg + 1]) { |
| 2354 | memprintf(err, "missing argument for '%s'", args[cur_arg]); |
| 2355 | return ACT_RET_PRS_ERR; |
| 2356 | } |
| 2357 | res = parse_time_err(args[cur_arg+1], &time, TIME_UNIT_MS); |
| 2358 | if (res == PARSE_TIME_OVER) { |
| 2359 | memprintf(err, "time overflow (maximum value is 2147483647 ms or ~24.8 days)"); |
| 2360 | return ACT_RET_PRS_ERR; |
| 2361 | } |
| 2362 | if (res == PARSE_TIME_UNDER) { |
| 2363 | memprintf(err, "time underflow (minimum non-null value is 1 ms)"); |
| 2364 | return ACT_RET_PRS_ERR; |
| 2365 | } |
| 2366 | if (res) { |
| 2367 | memprintf(err, "unexpected character '%c'", *res); |
| 2368 | return ACT_RET_PRS_ERR; |
| 2369 | } |
| 2370 | cur_arg++; |
| 2371 | } |
| 2372 | else if (strcmp(args[cur_arg], "at-least") == 0) { |
| 2373 | if (!*args[cur_arg + 1]) { |
| 2374 | memprintf(err, "missing argument for '%s'", args[cur_arg]); |
| 2375 | return ACT_RET_PRS_ERR; |
| 2376 | } |
| 2377 | res = parse_size_err(args[cur_arg+1], &bytes); |
| 2378 | if (res) { |
| 2379 | memprintf(err, "unexpected character '%c'", *res); |
| 2380 | return ACT_RET_PRS_ERR; |
| 2381 | } |
| 2382 | cur_arg++; |
| 2383 | } |
| 2384 | else |
| 2385 | break; |
| 2386 | cur_arg++; |
| 2387 | } |
| 2388 | |
| 2389 | if (time == UINT_MAX) { |
| 2390 | memprintf(err, "expects time <time> [ at-least <bytes> ]"); |
| 2391 | return ACT_RET_PRS_ERR; |
| 2392 | } |
| 2393 | |
| 2394 | rule->arg.act.p[0] = (void *)(uintptr_t)time; |
| 2395 | rule->arg.act.p[1] = (void *)(uintptr_t)bytes; |
| 2396 | |
| 2397 | *orig_arg = cur_arg; |
| 2398 | |
| 2399 | rule->action = ACT_CUSTOM; |
| 2400 | rule->action_ptr = http_action_wait_for_body; |
| 2401 | return ACT_RET_PRS_OK; |
| 2402 | } |
| 2403 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2404 | /************************************************************************/ |
| 2405 | /* All supported http-request action keywords must be declared here. */ |
| 2406 | /************************************************************************/ |
| 2407 | |
| 2408 | static struct action_kw_list http_req_actions = { |
| 2409 | .kw = { |
Amaury Denoyelle | e4a617c | 2021-05-06 15:33:09 +0200 | [diff] [blame] | 2410 | { "add-acl", parse_http_set_map, KWF_MATCH_PREFIX }, |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2411 | { "add-header", parse_http_set_header, 0 }, |
| 2412 | { "allow", parse_http_allow, 0 }, |
| 2413 | { "auth", parse_http_auth, 0 }, |
| 2414 | { "capture", parse_http_req_capture, 0 }, |
Amaury Denoyelle | e4a617c | 2021-05-06 15:33:09 +0200 | [diff] [blame] | 2415 | { "del-acl", parse_http_set_map, KWF_MATCH_PREFIX }, |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2416 | { "del-header", parse_http_del_header, 0 }, |
Amaury Denoyelle | e4a617c | 2021-05-06 15:33:09 +0200 | [diff] [blame] | 2417 | { "del-map", parse_http_set_map, KWF_MATCH_PREFIX }, |
Christopher Faulet | e0fca29 | 2020-01-13 21:49:03 +0100 | [diff] [blame] | 2418 | { "deny", parse_http_deny, 0 }, |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2419 | { "disable-l7-retry", parse_http_req_disable_l7_retry, 0 }, |
| 2420 | { "early-hint", parse_http_set_header, 0 }, |
Amaury Denoyelle | a9e639a | 2021-05-06 15:50:12 +0200 | [diff] [blame] | 2421 | { "normalize-uri", parse_http_normalize_uri, KWF_EXPERIMENTAL }, |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2422 | { "redirect", parse_http_redirect, 0 }, |
| 2423 | { "reject", parse_http_action_reject, 0 }, |
| 2424 | { "replace-header", parse_http_replace_header, 0 }, |
| 2425 | { "replace-path", parse_replace_uri, 0 }, |
Christopher Faulet | 312294f | 2020-09-02 17:17:44 +0200 | [diff] [blame] | 2426 | { "replace-pathq", parse_replace_uri, 0 }, |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2427 | { "replace-uri", parse_replace_uri, 0 }, |
| 2428 | { "replace-value", parse_http_replace_header, 0 }, |
Christopher Faulet | 24231ab | 2020-01-24 17:44:23 +0100 | [diff] [blame] | 2429 | { "return", parse_http_return, 0 }, |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2430 | { "set-header", parse_http_set_header, 0 }, |
Amaury Denoyelle | e4a617c | 2021-05-06 15:33:09 +0200 | [diff] [blame] | 2431 | { "set-map", parse_http_set_map, KWF_MATCH_PREFIX }, |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2432 | { "set-method", parse_set_req_line, 0 }, |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2433 | { "set-path", parse_set_req_line, 0 }, |
Christopher Faulet | 312294f | 2020-09-02 17:17:44 +0200 | [diff] [blame] | 2434 | { "set-pathq", parse_set_req_line, 0 }, |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2435 | { "set-query", parse_set_req_line, 0 }, |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2436 | { "set-uri", parse_set_req_line, 0 }, |
Christopher Faulet | 46f9554 | 2019-12-20 10:07:22 +0100 | [diff] [blame] | 2437 | { "strict-mode", parse_http_strict_mode, 0 }, |
Christopher Faulet | e0fca29 | 2020-01-13 21:49:03 +0100 | [diff] [blame] | 2438 | { "tarpit", parse_http_deny, 0 }, |
Amaury Denoyelle | e4a617c | 2021-05-06 15:33:09 +0200 | [diff] [blame] | 2439 | { "track-sc", parse_http_track_sc, KWF_MATCH_PREFIX }, |
Amaury Denoyelle | 8d22823 | 2020-12-10 13:43:54 +0100 | [diff] [blame] | 2440 | { "set-timeout", parse_http_set_timeout, 0 }, |
Christopher Faulet | 021a8e4 | 2021-03-29 10:46:38 +0200 | [diff] [blame] | 2441 | { "wait-for-body", parse_http_wait_for_body, 0 }, |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2442 | { NULL, NULL } |
| 2443 | } |
| 2444 | }; |
| 2445 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 2446 | INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions); |
| 2447 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2448 | static struct action_kw_list http_res_actions = { |
| 2449 | .kw = { |
Amaury Denoyelle | e4a617c | 2021-05-06 15:33:09 +0200 | [diff] [blame] | 2450 | { "add-acl", parse_http_set_map, KWF_MATCH_PREFIX }, |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2451 | { "add-header", parse_http_set_header, 0 }, |
| 2452 | { "allow", parse_http_allow, 0 }, |
| 2453 | { "capture", parse_http_res_capture, 0 }, |
Amaury Denoyelle | e4a617c | 2021-05-06 15:33:09 +0200 | [diff] [blame] | 2454 | { "del-acl", parse_http_set_map, KWF_MATCH_PREFIX }, |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2455 | { "del-header", parse_http_del_header, 0 }, |
Amaury Denoyelle | e4a617c | 2021-05-06 15:33:09 +0200 | [diff] [blame] | 2456 | { "del-map", parse_http_set_map, KWF_MATCH_PREFIX }, |
Christopher Faulet | e0fca29 | 2020-01-13 21:49:03 +0100 | [diff] [blame] | 2457 | { "deny", parse_http_deny, 0 }, |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2458 | { "redirect", parse_http_redirect, 0 }, |
| 2459 | { "replace-header", parse_http_replace_header, 0 }, |
| 2460 | { "replace-value", parse_http_replace_header, 0 }, |
Christopher Faulet | 24231ab | 2020-01-24 17:44:23 +0100 | [diff] [blame] | 2461 | { "return", parse_http_return, 0 }, |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2462 | { "set-header", parse_http_set_header, 0 }, |
Amaury Denoyelle | e4a617c | 2021-05-06 15:33:09 +0200 | [diff] [blame] | 2463 | { "set-map", parse_http_set_map, KWF_MATCH_PREFIX }, |
Christopher Faulet | 81e2017 | 2019-12-12 16:40:30 +0100 | [diff] [blame] | 2464 | { "set-status", parse_http_set_status, 0 }, |
Christopher Faulet | 46f9554 | 2019-12-20 10:07:22 +0100 | [diff] [blame] | 2465 | { "strict-mode", parse_http_strict_mode, 0 }, |
Amaury Denoyelle | e4a617c | 2021-05-06 15:33:09 +0200 | [diff] [blame] | 2466 | { "track-sc", parse_http_track_sc, KWF_MATCH_PREFIX }, |
Christopher Faulet | 021a8e4 | 2021-03-29 10:46:38 +0200 | [diff] [blame] | 2467 | { "wait-for-body", parse_http_wait_for_body, 0 }, |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2468 | { NULL, NULL } |
| 2469 | } |
| 2470 | }; |
| 2471 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 2472 | INITCALL1(STG_REGISTER, http_res_keywords_register, &http_res_actions); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2473 | |
Christopher Faulet | 6d0c3df | 2020-01-22 09:26:35 +0100 | [diff] [blame] | 2474 | static struct action_kw_list http_after_res_actions = { |
| 2475 | .kw = { |
| 2476 | { "add-header", parse_http_set_header, 0 }, |
| 2477 | { "allow", parse_http_allow, 0 }, |
Christopher Faulet | ba8f063 | 2021-12-06 08:43:22 +0100 | [diff] [blame] | 2478 | { "capture", parse_http_res_capture, 0 }, |
Christopher Faulet | 6d0c3df | 2020-01-22 09:26:35 +0100 | [diff] [blame] | 2479 | { "del-header", parse_http_del_header, 0 }, |
| 2480 | { "replace-header", parse_http_replace_header, 0 }, |
| 2481 | { "replace-value", parse_http_replace_header, 0 }, |
| 2482 | { "set-header", parse_http_set_header, 0 }, |
| 2483 | { "set-status", parse_http_set_status, 0 }, |
| 2484 | { "strict-mode", parse_http_strict_mode, 0 }, |
| 2485 | { NULL, NULL } |
| 2486 | } |
| 2487 | }; |
| 2488 | |
| 2489 | INITCALL1(STG_REGISTER, http_after_res_keywords_register, &http_after_res_actions); |
| 2490 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2491 | /* |
| 2492 | * Local variables: |
| 2493 | * c-indent-level: 8 |
| 2494 | * c-basic-offset: 8 |
| 2495 | * End: |
| 2496 | */ |