blob: 6c4aa62a82535f24a03d1453e18cb8dcba1fde83 [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
Willy Tarreau122eba92020-06-04 10:15:32 +020013#include <haproxy/action.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020014#include <haproxy/api.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020015#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020016#include <haproxy/list.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020017#include <haproxy/obj_type.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020018#include <haproxy/pool.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020019#include <haproxy/proxy.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020020#include <haproxy/stick_table.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020021#include <haproxy/task.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020022#include <haproxy/tools.h>
Christopher Faulet78880fb2017-09-18 14:43:55 +020023
Christopher Faulet78880fb2017-09-18 14:43:55 +020024
Christopher Fauletac98d812019-12-18 09:20:16 +010025/* Find and check the target table used by an action track-sc*. This
Christopher Faulet78880fb2017-09-18 14:43:55 +020026 * function should be called during the configuration validity check.
27 *
28 * The function returns 1 in success case, otherwise, it returns 0 and err is
29 * filled.
30 */
31int check_trk_action(struct act_rule *rule, struct proxy *px, char **err)
32{
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +010033 struct stktable *target;
Christopher Faulet78880fb2017-09-18 14:43:55 +020034
35 if (rule->arg.trk_ctr.table.n)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +010036 target = stktable_find_by_name(rule->arg.trk_ctr.table.n);
Christopher Faulet78880fb2017-09-18 14:43:55 +020037 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +010038 target = px->table;
Christopher Faulet78880fb2017-09-18 14:43:55 +020039
40 if (!target) {
41 memprintf(err, "unable to find table '%s' referenced by track-sc%d",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +010042 rule->arg.trk_ctr.table.n ? rule->arg.trk_ctr.table.n : px->id,
Christopher Fauletac98d812019-12-18 09:20:16 +010043 rule->action);
Christopher Faulet78880fb2017-09-18 14:43:55 +020044 return 0;
45 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +010046
47 if (!stktable_compatible_sample(rule->arg.trk_ctr.expr, target->type)) {
Christopher Faulet78880fb2017-09-18 14:43:55 +020048 memprintf(err, "stick-table '%s' uses a type incompatible with the 'track-sc%d' rule",
49 rule->arg.trk_ctr.table.n ? rule->arg.trk_ctr.table.n : px->id,
Christopher Fauletac98d812019-12-18 09:20:16 +010050 rule->action);
Christopher Faulet78880fb2017-09-18 14:43:55 +020051 return 0;
52 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +010053 else if (target->proxy && (px->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +010054 memprintf(err, "stick-table '%s' referenced by 'track-sc%d' rule not present on all processes covered by proxy '%s'",
Christopher Fauletac98d812019-12-18 09:20:16 +010055 target->id, rule->action, px->id);
Willy Tarreau151e1ca2019-02-05 11:38:38 +010056 return 0;
57 }
Christopher Faulet78880fb2017-09-18 14:43:55 +020058 else {
Frédéric Lécaillebe367932019-08-07 09:28:39 +020059 if (!in_proxies_list(target->proxies_list, px)) {
Frédéric Lécaille015e4d72019-03-19 14:55:01 +010060 px->next_stkt_ref = target->proxies_list;
61 target->proxies_list = px;
62 }
Christopher Faulet78880fb2017-09-18 14:43:55 +020063 free(rule->arg.trk_ctr.table.n);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +010064 rule->arg.trk_ctr.table.t = target;
Christopher Faulet78880fb2017-09-18 14:43:55 +020065 /* Note: if we decide to enhance the track-sc syntax, we may be
66 * able to pass a list of counters to track and allocate them
67 * right here using stktable_alloc_data_type().
68 */
69 }
Christopher Fauletac98d812019-12-18 09:20:16 +010070
71 if (rule->from == ACT_F_TCP_REQ_CNT && (px->cap & PR_CAP_FE) && !px->tcp_req.inspect_delay &&
72 !(rule->arg.trk_ctr.expr->fetch->val & SMP_VAL_FE_SES_ACC)) {
73 ha_warning("config : %s '%s' : a 'tcp-request content track-sc*' rule explicitly depending on request"
74 " contents without any 'tcp-request inspect-delay' setting."
75 " This means that this rule will randomly find its contents. This can be fixed by"
76 " setting the tcp-request inspect-delay.\n",
77 proxy_type_str(px), px->id);
78 }
79
Christopher Faulet78880fb2017-09-18 14:43:55 +020080 return 1;
81}
82
Christopher Fauletd73b96d2019-12-19 17:27:03 +010083/* check a capture rule. This function should be called during the configuration
84 * validity check.
85 *
86 * The function returns 1 in success case, otherwise, it returns 0 and err is
87 * filled.
88 */
89int check_capture(struct act_rule *rule, struct proxy *px, char **err)
90{
91 if (rule->from == ACT_F_TCP_REQ_CNT && (px->cap & PR_CAP_FE) && !px->tcp_req.inspect_delay &&
92 !(rule->arg.trk_ctr.expr->fetch->val & SMP_VAL_FE_SES_ACC)) {
93 ha_warning("config : %s '%s' : a 'tcp-request capture' rule explicitly depending on request"
94 " contents without any 'tcp-request inspect-delay' setting."
95 " This means that this rule will randomly find its contents. This can be fixed by"
96 " setting the tcp-request inspect-delay.\n",
97 proxy_type_str(px), px->id);
98 }
99
100 return 1;
101}
102
Baptiste Assmann333939c2019-01-21 08:34:50 +0100103int act_resolution_cb(struct dns_requester *requester, struct dns_nameserver *nameserver)
104{
105 struct stream *stream;
106
107 if (requester->resolution == NULL)
108 return 0;
109
110 stream = objt_stream(requester->owner);
111 if (stream == NULL)
112 return 0;
113
114 task_wakeup(stream->task, TASK_WOKEN_MSG);
115
116 return 0;
117}
118
119int act_resolution_error_cb(struct dns_requester *requester, int error_code)
120{
121 struct stream *stream;
122
123 if (requester->resolution == NULL)
124 return 0;
125
126 stream = objt_stream(requester->owner);
127 if (stream == NULL)
128 return 0;
129
130 task_wakeup(stream->task, TASK_WOKEN_MSG);
131
132 return 0;
133}
134