blob: 1644e0b77eb7133739bfae264e08fac88a09181f [file] [log] [blame]
Christopher Faulet78880fb2017-09-18 14:43:55 +02001/*
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 Denoyelle68fd7e42021-03-25 17:15:52 +010013#include <haproxy/acl.h>
Willy Tarreau122eba92020-06-04 10:15:32 +020014#include <haproxy/action.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020015#include <haproxy/api.h>
Christopher Faulet581db2b2021-03-26 10:02:46 +010016#include <haproxy/cfgparse.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020017#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020018#include <haproxy/list.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020019#include <haproxy/obj_type.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020020#include <haproxy/pool.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020021#include <haproxy/proxy.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020022#include <haproxy/stick_table.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020023#include <haproxy/task.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020024#include <haproxy/tools.h>
Christopher Faulet78880fb2017-09-18 14:43:55 +020025
Christopher Faulet78880fb2017-09-18 14:43:55 +020026
Christopher Faulet42c6cf92021-03-25 17:19:04 +010027/* Check an action ruleset validity. It returns the number of error encountered
Ilya Shipitsinb2be9a12021-04-24 13:25:42 +050028 * and err_code is updated if a warning is emitted.
Christopher Faulet42c6cf92021-03-25 17:19:04 +010029 */
30int 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 Faulet581db2b2021-03-26 10:02:46 +010041 *err_code |= warnif_tcp_http_cond(px, rule->cond);
Christopher Faulet42c6cf92021-03-25 17:19:04 +010042 free(errmsg);
43 errmsg = NULL;
44 }
45
46 return err;
47}
48
Christopher Fauletac98d812019-12-18 09:20:16 +010049/* Find and check the target table used by an action track-sc*. This
Christopher Faulet78880fb2017-09-18 14:43:55 +020050 * 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 */
55int check_trk_action(struct act_rule *rule, struct proxy *px, char **err)
56{
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +010057 struct stktable *target;
Christopher Faulet78880fb2017-09-18 14:43:55 +020058
59 if (rule->arg.trk_ctr.table.n)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +010060 target = stktable_find_by_name(rule->arg.trk_ctr.table.n);
Christopher Faulet78880fb2017-09-18 14:43:55 +020061 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +010062 target = px->table;
Christopher Faulet78880fb2017-09-18 14:43:55 +020063
64 if (!target) {
65 memprintf(err, "unable to find table '%s' referenced by track-sc%d",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +010066 rule->arg.trk_ctr.table.n ? rule->arg.trk_ctr.table.n : px->id,
Christopher Fauletac98d812019-12-18 09:20:16 +010067 rule->action);
Christopher Faulet78880fb2017-09-18 14:43:55 +020068 return 0;
69 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +010070
71 if (!stktable_compatible_sample(rule->arg.trk_ctr.expr, target->type)) {
Christopher Faulet78880fb2017-09-18 14:43:55 +020072 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 Fauletac98d812019-12-18 09:20:16 +010074 rule->action);
Christopher Faulet78880fb2017-09-18 14:43:55 +020075 return 0;
76 }
Christopher Faulet78880fb2017-09-18 14:43:55 +020077 else {
Frédéric Lécaillebe367932019-08-07 09:28:39 +020078 if (!in_proxies_list(target->proxies_list, px)) {
Frédéric Lécaille015e4d72019-03-19 14:55:01 +010079 px->next_stkt_ref = target->proxies_list;
80 target->proxies_list = px;
81 }
Christopher Faulet78880fb2017-09-18 14:43:55 +020082 free(rule->arg.trk_ctr.table.n);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +010083 rule->arg.trk_ctr.table.t = target;
Christopher Faulet78880fb2017-09-18 14:43:55 +020084 /* Note: if we decide to enhance the track-sc syntax, we may be
85 * able to pass a list of counters to track and allocate them
86 * right here using stktable_alloc_data_type().
87 */
88 }
Christopher Fauletac98d812019-12-18 09:20:16 +010089
Christopher Faulet2079a4a2020-10-02 11:48:57 +020090 if (rule->from == ACT_F_TCP_REQ_CNT && (px->cap & PR_CAP_FE)) {
91 if (!px->tcp_req.inspect_delay && !(rule->arg.trk_ctr.expr->fetch->val & SMP_VAL_FE_SES_ACC)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +020092 ha_warning("%s '%s' : a 'tcp-request content track-sc*' rule explicitly depending on request"
Christopher Faulet2079a4a2020-10-02 11:48:57 +020093 " contents without any 'tcp-request inspect-delay' setting."
94 " This means that this rule will randomly find its contents. This can be fixed by"
95 " setting the tcp-request inspect-delay.\n",
96 proxy_type_str(px), px->id);
97 }
98
99 /* The following warning is emitted because HTTP multiplexers are able to catch errors
100 * or timeouts at the session level, before instantiating any stream.
101 * Thus the tcp-request content ruleset will not be evaluated in such case. It means,
102 * http_req and http_err counters will not be incremented as expected, even if the tracked
103 * counter does not use the request content. To track invalid requests it should be
104 * performed at the session level using a tcp-request session rule.
105 */
106 if (px->mode == PR_MODE_HTTP &&
107 !(rule->arg.trk_ctr.expr->fetch->use & (SMP_USE_L6REQ|SMP_USE_HRQHV|SMP_USE_HRQHP|SMP_USE_HRQBO)) &&
108 (!rule->cond || !(rule->cond->use & (SMP_USE_L6REQ|SMP_USE_HRQHV|SMP_USE_HRQHP|SMP_USE_HRQBO)))) {
Amaury Denoyelle11124302021-06-04 18:22:08 +0200109 ha_warning("%s '%s' : a 'tcp-request content track-sc*' rule not depending on request"
Christopher Faulet2079a4a2020-10-02 11:48:57 +0200110 " contents for an HTTP frontend should be executed at the session level, using a"
111 " 'tcp-request session' rule (mandatory to track invalid HTTP requests).\n",
112 proxy_type_str(px), px->id);
113 }
Christopher Fauletac98d812019-12-18 09:20:16 +0100114 }
115
Christopher Faulet78880fb2017-09-18 14:43:55 +0200116 return 1;
117}
118
Christopher Fauletd73b96d2019-12-19 17:27:03 +0100119/* check a capture rule. This function should be called during the configuration
120 * validity check.
121 *
122 * The function returns 1 in success case, otherwise, it returns 0 and err is
123 * filled.
124 */
125int check_capture(struct act_rule *rule, struct proxy *px, char **err)
126{
127 if (rule->from == ACT_F_TCP_REQ_CNT && (px->cap & PR_CAP_FE) && !px->tcp_req.inspect_delay &&
128 !(rule->arg.trk_ctr.expr->fetch->val & SMP_VAL_FE_SES_ACC)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +0200129 ha_warning("%s '%s' : a 'tcp-request capture' rule explicitly depending on request"
Christopher Fauletd73b96d2019-12-19 17:27:03 +0100130 " contents without any 'tcp-request inspect-delay' setting."
131 " This means that this rule will randomly find its contents. This can be fixed by"
132 " setting the tcp-request inspect-delay.\n",
133 proxy_type_str(px), px->id);
134 }
135
136 return 1;
137}
138
Emeric Brun08622d32020-12-23 17:41:43 +0100139int act_resolution_cb(struct resolv_requester *requester, struct dns_counters *counters)
Baptiste Assmann333939c2019-01-21 08:34:50 +0100140{
141 struct stream *stream;
142
143 if (requester->resolution == NULL)
144 return 0;
145
146 stream = objt_stream(requester->owner);
147 if (stream == NULL)
148 return 0;
149
150 task_wakeup(stream->task, TASK_WOKEN_MSG);
151
152 return 0;
153}
154
Emeric Brun12ca6582021-06-10 15:25:25 +0200155/*
156 * Do resolve error management callback
157 * returns:
158 * 0 if we can trash answser items.
159 * 1 when safely ignored and we must kept answer items
160 */
Emeric Brun08622d32020-12-23 17:41:43 +0100161int act_resolution_error_cb(struct resolv_requester *requester, int error_code)
Baptiste Assmann333939c2019-01-21 08:34:50 +0100162{
163 struct stream *stream;
164
165 if (requester->resolution == NULL)
166 return 0;
167
168 stream = objt_stream(requester->owner);
169 if (stream == NULL)
170 return 0;
171
172 task_wakeup(stream->task, TASK_WOKEN_MSG);
173
174 return 0;
175}
176
Amaury Denoyelle8d228232020-12-10 13:43:54 +0100177/* Parse a set-timeout rule statement. It first checks if the timeout name is
178 * valid and returns it in <name>. Then the timeout is parsed as a plain value
179 * and * returned in <out_timeout>. If there is a parsing error, the value is
180 * reparsed as an expression and returned in <expr>.
181 *
182 * Returns -1 if the name is invalid or neither a time or an expression can be
183 * parsed, or if the timeout value is 0.
184 */
185int cfg_parse_rule_set_timeout(const char **args, int idx, int *out_timeout,
186 enum act_timeout_name *name,
187 struct sample_expr **expr, char **err,
188 const char *file, int line, struct arg_list *al)
189{
190 const char *res;
191 const char *timeout_name = args[idx++];
192
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100193 if (strcmp(timeout_name, "server") == 0) {
Amaury Denoyelle8d228232020-12-10 13:43:54 +0100194 *name = ACT_TIMEOUT_SERVER;
195 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100196 else if (strcmp(timeout_name, "tunnel") == 0) {
Amaury Denoyelle8d228232020-12-10 13:43:54 +0100197 *name = ACT_TIMEOUT_TUNNEL;
198 }
199 else {
200 memprintf(err,
201 "'set-timeout' rule supports 'server'/'tunnel' (got '%s')",
202 timeout_name);
203 return -1;
204 }
205
206 res = parse_time_err(args[idx], (unsigned int *)out_timeout, TIME_UNIT_MS);
207 if (res == PARSE_TIME_OVER) {
208 memprintf(err, "timer overflow in argument '%s' to rule 'set-timeout %s' (maximum value is 2147483647 ms or ~24.8 days)",
209 args[idx], timeout_name);
210 return -1;
211 }
212 else if (res == PARSE_TIME_UNDER) {
213 memprintf(err, "timer underflow in argument '%s' to rule 'set-timeout %s' (minimum value is 1 ms)",
214 args[idx], timeout_name);
215 return -1;
216 }
217 /* res not NULL, parsing error */
218 else if (res) {
219 *expr = sample_parse_expr((char **)args, &idx, file, line, err, al, NULL);
220 if (!*expr) {
221 memprintf(err, "unexpected character '%c' in rule 'set-timeout %s'", *res, timeout_name);
222 return -1;
223 }
224 }
225 /* res NULL, parsing ok but value is 0 */
226 else if (!(*out_timeout)) {
227 memprintf(err, "null value is not valid for a 'set-timeout %s' rule",
228 timeout_name);
229 return -1;
230 }
231
232 return 0;
233}
Willy Tarreau99eb2cc2021-03-12 11:59:24 +0100234
235/* tries to find in list <keywords> a similar looking action as the one in
236 * <word>, and returns it otherwise NULL. <word> may be NULL or empty. An
237 * optional array of extra words to compare may be passed in <extra>, but it
238 * must then be terminated by a NULL entry. If unused it may be NULL.
239 */
240const char *action_suggest(const char *word, const struct list *keywords, const char **extra)
241{
242 uint8_t word_sig[1024];
243 uint8_t list_sig[1024];
244 const struct action_kw_list *kwl;
245 const struct action_kw *best_kw = NULL;
246 const char *best_ptr = NULL;
247 int dist, best_dist = INT_MAX;
248 int index;
249
250 if (!word || !*word)
251 return NULL;
252
253 make_word_fingerprint(word_sig, word);
254 list_for_each_entry(kwl, keywords, list) {
255 for (index = 0; kwl->kw[index].kw != NULL; index++) {
256 make_word_fingerprint(list_sig, kwl->kw[index].kw);
257 dist = word_fingerprint_distance(word_sig, list_sig);
258 if (dist < best_dist) {
259 best_dist = dist;
260 best_kw = &kwl->kw[index];
261 best_ptr = best_kw->kw;
262 }
263 }
264 }
265
266 while (extra && *extra) {
267 make_word_fingerprint(list_sig, *extra);
268 dist = word_fingerprint_distance(word_sig, list_sig);
269 if (dist < best_dist) {
270 best_dist = dist;
271 best_kw = NULL;
272 best_ptr = *extra;
273 }
274 extra++;
275 }
276
277 /* eliminate too different ones, with more tolerance for prefixes
278 * when they're known to exist (not from extra list).
279 */
280 if (best_ptr &&
Amaury Denoyellee4a617c2021-05-06 15:33:09 +0200281 (best_dist > (2 + (best_kw && (best_kw->flags & KWF_MATCH_PREFIX))) * strlen(word) ||
282 best_dist > (2 + (best_kw && (best_kw->flags & KWF_MATCH_PREFIX))) * strlen(best_ptr)))
Willy Tarreau99eb2cc2021-03-12 11:59:24 +0100283 best_ptr = NULL;
284
285 return best_ptr;
286}
Amaury Denoyelle68fd7e42021-03-25 17:15:52 +0100287
288void free_act_rules(struct list *rules)
289{
290 struct act_rule *rule, *ruleb;
291
292 list_for_each_entry_safe(rule, ruleb, rules, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200293 LIST_DELETE(&rule->list);
Amaury Denoyelle68fd7e42021-03-25 17:15:52 +0100294 free_acl_cond(rule->cond);
295 if (rule->release_ptr)
296 rule->release_ptr(rule);
297 free(rule);
298 }
299}