Christopher Faulet | 78880fb | 2017-09-18 14:43:55 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Action management functions. |
| 3 | * |
| 4 | * Copyright 2017 HAProxy Technologies, Christopher Faulet <cfaulet@haproxy.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
Amaury Denoyelle | 68fd7e4 | 2021-03-25 17:15:52 +0100 | [diff] [blame] | 13 | #include <haproxy/acl.h> |
Willy Tarreau | 122eba9 | 2020-06-04 10:15:32 +0200 | [diff] [blame] | 14 | #include <haproxy/action.h> |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 15 | #include <haproxy/api.h> |
Christopher Faulet | 581db2b | 2021-03-26 10:02:46 +0100 | [diff] [blame] | 16 | #include <haproxy/cfgparse.h> |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 17 | #include <haproxy/errors.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 18 | #include <haproxy/list.h> |
Willy Tarreau | 8efbdfb | 2020-06-04 11:29:21 +0200 | [diff] [blame] | 19 | #include <haproxy/obj_type.h> |
Willy Tarreau | d0ef439 | 2020-06-02 09:38:52 +0200 | [diff] [blame] | 20 | #include <haproxy/pool.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 21 | #include <haproxy/proxy.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 22 | #include <haproxy/stick_table.h> |
Willy Tarreau | cea0e1b | 2020-06-04 17:25:40 +0200 | [diff] [blame] | 23 | #include <haproxy/task.h> |
Willy Tarreau | 48fbcae | 2020-06-03 18:09:46 +0200 | [diff] [blame] | 24 | #include <haproxy/tools.h> |
Christopher Faulet | 78880fb | 2017-09-18 14:43:55 +0200 | [diff] [blame] | 25 | |
Christopher Faulet | 78880fb | 2017-09-18 14:43:55 +0200 | [diff] [blame] | 26 | |
Christopher Faulet | 42c6cf9 | 2021-03-25 17:19:04 +0100 | [diff] [blame] | 27 | /* Check an action ruleset validity. It returns the number of error encountered |
Ilya Shipitsin | b2be9a1 | 2021-04-24 13:25:42 +0500 | [diff] [blame] | 28 | * and err_code is updated if a warning is emitted. |
Christopher Faulet | 42c6cf9 | 2021-03-25 17:19:04 +0100 | [diff] [blame] | 29 | */ |
| 30 | int check_action_rules(struct list *rules, struct proxy *px, int *err_code) |
| 31 | { |
| 32 | struct act_rule *rule; |
| 33 | char *errmsg = NULL; |
| 34 | int err = 0; |
| 35 | |
| 36 | list_for_each_entry(rule, rules, list) { |
| 37 | if (rule->check_ptr && !rule->check_ptr(rule, px, &errmsg)) { |
| 38 | ha_alert("Proxy '%s': %s.\n", px->id, errmsg); |
| 39 | err++; |
| 40 | } |
Christopher Faulet | 581db2b | 2021-03-26 10:02:46 +0100 | [diff] [blame] | 41 | *err_code |= warnif_tcp_http_cond(px, rule->cond); |
Christopher Faulet | 42c6cf9 | 2021-03-25 17:19:04 +0100 | [diff] [blame] | 42 | free(errmsg); |
| 43 | errmsg = NULL; |
| 44 | } |
| 45 | |
| 46 | return err; |
| 47 | } |
| 48 | |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 49 | /* Find and check the target table used by an action track-sc*. This |
Christopher Faulet | 78880fb | 2017-09-18 14:43:55 +0200 | [diff] [blame] | 50 | * function should be called during the configuration validity check. |
| 51 | * |
| 52 | * The function returns 1 in success case, otherwise, it returns 0 and err is |
| 53 | * filled. |
| 54 | */ |
| 55 | int check_trk_action(struct act_rule *rule, struct proxy *px, char **err) |
| 56 | { |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 57 | struct stktable *target; |
Christopher Faulet | 78880fb | 2017-09-18 14:43:55 +0200 | [diff] [blame] | 58 | |
| 59 | if (rule->arg.trk_ctr.table.n) |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 60 | target = stktable_find_by_name(rule->arg.trk_ctr.table.n); |
Christopher Faulet | 78880fb | 2017-09-18 14:43:55 +0200 | [diff] [blame] | 61 | else |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 62 | target = px->table; |
Christopher Faulet | 78880fb | 2017-09-18 14:43:55 +0200 | [diff] [blame] | 63 | |
| 64 | if (!target) { |
| 65 | memprintf(err, "unable to find table '%s' referenced by track-sc%d", |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 66 | rule->arg.trk_ctr.table.n ? rule->arg.trk_ctr.table.n : px->id, |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 67 | rule->action); |
Christopher Faulet | 78880fb | 2017-09-18 14:43:55 +0200 | [diff] [blame] | 68 | return 0; |
| 69 | } |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 70 | |
| 71 | if (!stktable_compatible_sample(rule->arg.trk_ctr.expr, target->type)) { |
Christopher Faulet | 78880fb | 2017-09-18 14:43:55 +0200 | [diff] [blame] | 72 | memprintf(err, "stick-table '%s' uses a type incompatible with the 'track-sc%d' rule", |
| 73 | rule->arg.trk_ctr.table.n ? rule->arg.trk_ctr.table.n : px->id, |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 74 | rule->action); |
Christopher Faulet | 78880fb | 2017-09-18 14:43:55 +0200 | [diff] [blame] | 75 | return 0; |
| 76 | } |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 77 | else if (target->proxy && (px->bind_proc & ~target->proxy->bind_proc)) { |
Willy Tarreau | 151e1ca | 2019-02-05 11:38:38 +0100 | [diff] [blame] | 78 | memprintf(err, "stick-table '%s' referenced by 'track-sc%d' rule not present on all processes covered by proxy '%s'", |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 79 | target->id, rule->action, px->id); |
Willy Tarreau | 151e1ca | 2019-02-05 11:38:38 +0100 | [diff] [blame] | 80 | return 0; |
| 81 | } |
Christopher Faulet | 78880fb | 2017-09-18 14:43:55 +0200 | [diff] [blame] | 82 | else { |
Frédéric Lécaille | be36793 | 2019-08-07 09:28:39 +0200 | [diff] [blame] | 83 | if (!in_proxies_list(target->proxies_list, px)) { |
Frédéric Lécaille | 015e4d7 | 2019-03-19 14:55:01 +0100 | [diff] [blame] | 84 | px->next_stkt_ref = target->proxies_list; |
| 85 | target->proxies_list = px; |
| 86 | } |
Christopher Faulet | 78880fb | 2017-09-18 14:43:55 +0200 | [diff] [blame] | 87 | free(rule->arg.trk_ctr.table.n); |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 88 | rule->arg.trk_ctr.table.t = target; |
Christopher Faulet | 78880fb | 2017-09-18 14:43:55 +0200 | [diff] [blame] | 89 | /* Note: if we decide to enhance the track-sc syntax, we may be |
| 90 | * able to pass a list of counters to track and allocate them |
| 91 | * right here using stktable_alloc_data_type(). |
| 92 | */ |
| 93 | } |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 94 | |
Christopher Faulet | 2079a4a | 2020-10-02 11:48:57 +0200 | [diff] [blame] | 95 | if (rule->from == ACT_F_TCP_REQ_CNT && (px->cap & PR_CAP_FE)) { |
| 96 | if (!px->tcp_req.inspect_delay && !(rule->arg.trk_ctr.expr->fetch->val & SMP_VAL_FE_SES_ACC)) { |
| 97 | ha_warning("config : %s '%s' : a 'tcp-request content track-sc*' rule explicitly depending on request" |
| 98 | " contents without any 'tcp-request inspect-delay' setting." |
| 99 | " This means that this rule will randomly find its contents. This can be fixed by" |
| 100 | " setting the tcp-request inspect-delay.\n", |
| 101 | proxy_type_str(px), px->id); |
| 102 | } |
| 103 | |
| 104 | /* The following warning is emitted because HTTP multiplexers are able to catch errors |
| 105 | * or timeouts at the session level, before instantiating any stream. |
| 106 | * Thus the tcp-request content ruleset will not be evaluated in such case. It means, |
| 107 | * http_req and http_err counters will not be incremented as expected, even if the tracked |
| 108 | * counter does not use the request content. To track invalid requests it should be |
| 109 | * performed at the session level using a tcp-request session rule. |
| 110 | */ |
| 111 | if (px->mode == PR_MODE_HTTP && |
| 112 | !(rule->arg.trk_ctr.expr->fetch->use & (SMP_USE_L6REQ|SMP_USE_HRQHV|SMP_USE_HRQHP|SMP_USE_HRQBO)) && |
| 113 | (!rule->cond || !(rule->cond->use & (SMP_USE_L6REQ|SMP_USE_HRQHV|SMP_USE_HRQHP|SMP_USE_HRQBO)))) { |
| 114 | ha_warning("config : %s '%s' : a 'tcp-request content track-sc*' rule not depending on request" |
| 115 | " contents for an HTTP frontend should be executed at the session level, using a" |
| 116 | " 'tcp-request session' rule (mandatory to track invalid HTTP requests).\n", |
| 117 | proxy_type_str(px), px->id); |
| 118 | } |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 119 | } |
| 120 | |
Christopher Faulet | 78880fb | 2017-09-18 14:43:55 +0200 | [diff] [blame] | 121 | return 1; |
| 122 | } |
| 123 | |
Christopher Faulet | d73b96d | 2019-12-19 17:27:03 +0100 | [diff] [blame] | 124 | /* check a capture rule. This function should be called during the configuration |
| 125 | * validity check. |
| 126 | * |
| 127 | * The function returns 1 in success case, otherwise, it returns 0 and err is |
| 128 | * filled. |
| 129 | */ |
| 130 | int check_capture(struct act_rule *rule, struct proxy *px, char **err) |
| 131 | { |
| 132 | if (rule->from == ACT_F_TCP_REQ_CNT && (px->cap & PR_CAP_FE) && !px->tcp_req.inspect_delay && |
Christopher Faulet | 70e80e0 | 2022-04-25 14:57:58 +0200 | [diff] [blame] | 133 | !(rule->arg.cap.expr->fetch->val & SMP_VAL_FE_SES_ACC)) { |
Christopher Faulet | d73b96d | 2019-12-19 17:27:03 +0100 | [diff] [blame] | 134 | ha_warning("config : %s '%s' : a 'tcp-request capture' rule explicitly depending on request" |
| 135 | " contents without any 'tcp-request inspect-delay' setting." |
| 136 | " This means that this rule will randomly find its contents. This can be fixed by" |
| 137 | " setting the tcp-request inspect-delay.\n", |
| 138 | proxy_type_str(px), px->id); |
| 139 | } |
| 140 | |
| 141 | return 1; |
| 142 | } |
| 143 | |
Emeric Brun | 08622d3 | 2020-12-23 17:41:43 +0100 | [diff] [blame] | 144 | int act_resolution_cb(struct resolv_requester *requester, struct dns_counters *counters) |
Baptiste Assmann | 333939c | 2019-01-21 08:34:50 +0100 | [diff] [blame] | 145 | { |
| 146 | struct stream *stream; |
| 147 | |
| 148 | if (requester->resolution == NULL) |
| 149 | return 0; |
| 150 | |
| 151 | stream = objt_stream(requester->owner); |
| 152 | if (stream == NULL) |
| 153 | return 0; |
| 154 | |
| 155 | task_wakeup(stream->task, TASK_WOKEN_MSG); |
| 156 | |
| 157 | return 0; |
| 158 | } |
| 159 | |
Emeric Brun | 43839d0 | 2021-06-10 15:25:25 +0200 | [diff] [blame] | 160 | /* |
| 161 | * Do resolve error management callback |
| 162 | * returns: |
| 163 | * 0 if we can trash answser items. |
| 164 | * 1 when safely ignored and we must kept answer items |
| 165 | */ |
Emeric Brun | 08622d3 | 2020-12-23 17:41:43 +0100 | [diff] [blame] | 166 | int act_resolution_error_cb(struct resolv_requester *requester, int error_code) |
Baptiste Assmann | 333939c | 2019-01-21 08:34:50 +0100 | [diff] [blame] | 167 | { |
| 168 | struct stream *stream; |
| 169 | |
| 170 | if (requester->resolution == NULL) |
| 171 | return 0; |
| 172 | |
| 173 | stream = objt_stream(requester->owner); |
| 174 | if (stream == NULL) |
| 175 | return 0; |
| 176 | |
| 177 | task_wakeup(stream->task, TASK_WOKEN_MSG); |
| 178 | |
| 179 | return 0; |
| 180 | } |
| 181 | |
Amaury Denoyelle | 8d22823 | 2020-12-10 13:43:54 +0100 | [diff] [blame] | 182 | /* Parse a set-timeout rule statement. It first checks if the timeout name is |
| 183 | * valid and returns it in <name>. Then the timeout is parsed as a plain value |
| 184 | * and * returned in <out_timeout>. If there is a parsing error, the value is |
| 185 | * reparsed as an expression and returned in <expr>. |
| 186 | * |
| 187 | * Returns -1 if the name is invalid or neither a time or an expression can be |
| 188 | * parsed, or if the timeout value is 0. |
| 189 | */ |
| 190 | int cfg_parse_rule_set_timeout(const char **args, int idx, int *out_timeout, |
| 191 | enum act_timeout_name *name, |
| 192 | struct sample_expr **expr, char **err, |
| 193 | const char *file, int line, struct arg_list *al) |
| 194 | { |
| 195 | const char *res; |
| 196 | const char *timeout_name = args[idx++]; |
| 197 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 198 | if (strcmp(timeout_name, "server") == 0) { |
Amaury Denoyelle | 8d22823 | 2020-12-10 13:43:54 +0100 | [diff] [blame] | 199 | *name = ACT_TIMEOUT_SERVER; |
| 200 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 201 | else if (strcmp(timeout_name, "tunnel") == 0) { |
Amaury Denoyelle | 8d22823 | 2020-12-10 13:43:54 +0100 | [diff] [blame] | 202 | *name = ACT_TIMEOUT_TUNNEL; |
| 203 | } |
| 204 | else { |
| 205 | memprintf(err, |
| 206 | "'set-timeout' rule supports 'server'/'tunnel' (got '%s')", |
| 207 | timeout_name); |
| 208 | return -1; |
| 209 | } |
| 210 | |
| 211 | res = parse_time_err(args[idx], (unsigned int *)out_timeout, TIME_UNIT_MS); |
| 212 | if (res == PARSE_TIME_OVER) { |
| 213 | memprintf(err, "timer overflow in argument '%s' to rule 'set-timeout %s' (maximum value is 2147483647 ms or ~24.8 days)", |
| 214 | args[idx], timeout_name); |
| 215 | return -1; |
| 216 | } |
| 217 | else if (res == PARSE_TIME_UNDER) { |
| 218 | memprintf(err, "timer underflow in argument '%s' to rule 'set-timeout %s' (minimum value is 1 ms)", |
| 219 | args[idx], timeout_name); |
| 220 | return -1; |
| 221 | } |
| 222 | /* res not NULL, parsing error */ |
| 223 | else if (res) { |
| 224 | *expr = sample_parse_expr((char **)args, &idx, file, line, err, al, NULL); |
| 225 | if (!*expr) { |
| 226 | memprintf(err, "unexpected character '%c' in rule 'set-timeout %s'", *res, timeout_name); |
| 227 | return -1; |
| 228 | } |
| 229 | } |
| 230 | /* res NULL, parsing ok but value is 0 */ |
| 231 | else if (!(*out_timeout)) { |
| 232 | memprintf(err, "null value is not valid for a 'set-timeout %s' rule", |
| 233 | timeout_name); |
| 234 | return -1; |
| 235 | } |
| 236 | |
| 237 | return 0; |
| 238 | } |
Willy Tarreau | 99eb2cc | 2021-03-12 11:59:24 +0100 | [diff] [blame] | 239 | |
| 240 | /* tries to find in list <keywords> a similar looking action as the one in |
| 241 | * <word>, and returns it otherwise NULL. <word> may be NULL or empty. An |
| 242 | * optional array of extra words to compare may be passed in <extra>, but it |
| 243 | * must then be terminated by a NULL entry. If unused it may be NULL. |
| 244 | */ |
| 245 | const char *action_suggest(const char *word, const struct list *keywords, const char **extra) |
| 246 | { |
| 247 | uint8_t word_sig[1024]; |
| 248 | uint8_t list_sig[1024]; |
| 249 | const struct action_kw_list *kwl; |
| 250 | const struct action_kw *best_kw = NULL; |
| 251 | const char *best_ptr = NULL; |
| 252 | int dist, best_dist = INT_MAX; |
| 253 | int index; |
| 254 | |
| 255 | if (!word || !*word) |
| 256 | return NULL; |
| 257 | |
| 258 | make_word_fingerprint(word_sig, word); |
| 259 | list_for_each_entry(kwl, keywords, list) { |
| 260 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 261 | make_word_fingerprint(list_sig, kwl->kw[index].kw); |
| 262 | dist = word_fingerprint_distance(word_sig, list_sig); |
| 263 | if (dist < best_dist) { |
| 264 | best_dist = dist; |
| 265 | best_kw = &kwl->kw[index]; |
| 266 | best_ptr = best_kw->kw; |
| 267 | } |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | while (extra && *extra) { |
| 272 | make_word_fingerprint(list_sig, *extra); |
| 273 | dist = word_fingerprint_distance(word_sig, list_sig); |
| 274 | if (dist < best_dist) { |
| 275 | best_dist = dist; |
| 276 | best_kw = NULL; |
| 277 | best_ptr = *extra; |
| 278 | } |
| 279 | extra++; |
| 280 | } |
| 281 | |
| 282 | /* eliminate too different ones, with more tolerance for prefixes |
| 283 | * when they're known to exist (not from extra list). |
| 284 | */ |
| 285 | if (best_ptr && |
Amaury Denoyelle | e4a617c | 2021-05-06 15:33:09 +0200 | [diff] [blame] | 286 | (best_dist > (2 + (best_kw && (best_kw->flags & KWF_MATCH_PREFIX))) * strlen(word) || |
| 287 | best_dist > (2 + (best_kw && (best_kw->flags & KWF_MATCH_PREFIX))) * strlen(best_ptr))) |
Willy Tarreau | 99eb2cc | 2021-03-12 11:59:24 +0100 | [diff] [blame] | 288 | best_ptr = NULL; |
| 289 | |
| 290 | return best_ptr; |
| 291 | } |
Amaury Denoyelle | 68fd7e4 | 2021-03-25 17:15:52 +0100 | [diff] [blame] | 292 | |
| 293 | void free_act_rules(struct list *rules) |
| 294 | { |
| 295 | struct act_rule *rule, *ruleb; |
| 296 | |
| 297 | list_for_each_entry_safe(rule, ruleb, rules, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 298 | LIST_DELETE(&rule->list); |
Amaury Denoyelle | 68fd7e4 | 2021-03-25 17:15:52 +0100 | [diff] [blame] | 299 | free_acl_cond(rule->cond); |
| 300 | if (rule->release_ptr) |
| 301 | rule->release_ptr(rule); |
| 302 | free(rule); |
| 303 | } |
| 304 | } |