blob: 21a7c0fd86fc6910f0a38649e3e97fd2c9d8c7b7 [file] [log] [blame]
Willy Tarreau39713102016-11-25 15:49:32 +01001/*
2 * "tcp" rules processing
3 *
4 * Copyright 2000-2016 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 */
Willy Tarreaudcc048a2020-06-04 19:11:43 +020012#include <haproxy/acl.h>
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 Tarreaub2551052020-06-09 09:07:15 +020015#include <haproxy/arg-t.h>
Willy Tarreau278161c2020-06-04 11:18:28 +020016#include <haproxy/capture-t.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020017#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020018#include <haproxy/channel.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020019#include <haproxy/connection.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020020#include <haproxy/global.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020021#include <haproxy/list.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020022#include <haproxy/log.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020023#include <haproxy/proxy.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020024#include <haproxy/sample.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020025#include <haproxy/stick_table.h>
26#include <haproxy/stream-t.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020027#include <haproxy/stream_interface.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020028#include <haproxy/tcp_rules.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020029#include <haproxy/ticks.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020030#include <haproxy/time.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020031#include <haproxy/tools.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020032#include <haproxy/trace.h>
Willy Tarreau39713102016-11-25 15:49:32 +010033
Willy Tarreau39713102016-11-25 15:49:32 +010034
Christopher Fauleteea8fc72019-11-05 16:18:10 +010035#define TRACE_SOURCE &trace_strm
36
Willy Tarreau39713102016-11-25 15:49:32 +010037/* List head of all known action keywords for "tcp-request connection" */
38struct list tcp_req_conn_keywords = LIST_HEAD_INIT(tcp_req_conn_keywords);
39struct list tcp_req_sess_keywords = LIST_HEAD_INIT(tcp_req_sess_keywords);
40struct list tcp_req_cont_keywords = LIST_HEAD_INIT(tcp_req_cont_keywords);
41struct list tcp_res_cont_keywords = LIST_HEAD_INIT(tcp_res_cont_keywords);
42
43/*
44 * Register keywords.
45 */
46void tcp_req_conn_keywords_register(struct action_kw_list *kw_list)
47{
48 LIST_ADDQ(&tcp_req_conn_keywords, &kw_list->list);
49}
50
51void tcp_req_sess_keywords_register(struct action_kw_list *kw_list)
52{
53 LIST_ADDQ(&tcp_req_sess_keywords, &kw_list->list);
54}
55
56void tcp_req_cont_keywords_register(struct action_kw_list *kw_list)
57{
58 LIST_ADDQ(&tcp_req_cont_keywords, &kw_list->list);
59}
60
61void tcp_res_cont_keywords_register(struct action_kw_list *kw_list)
62{
63 LIST_ADDQ(&tcp_res_cont_keywords, &kw_list->list);
64}
65
66/*
67 * Return the struct tcp_req_action_kw associated to a keyword.
68 */
Thierry Fournier7a71a6d2020-11-28 17:40:24 +010069struct action_kw *tcp_req_conn_action(const char *kw)
Willy Tarreau39713102016-11-25 15:49:32 +010070{
71 return action_lookup(&tcp_req_conn_keywords, kw);
72}
73
Thierry Fournier7a71a6d2020-11-28 17:40:24 +010074struct action_kw *tcp_req_sess_action(const char *kw)
Willy Tarreau39713102016-11-25 15:49:32 +010075{
76 return action_lookup(&tcp_req_sess_keywords, kw);
77}
78
Thierry Fournier7a71a6d2020-11-28 17:40:24 +010079struct action_kw *tcp_req_cont_action(const char *kw)
Willy Tarreau39713102016-11-25 15:49:32 +010080{
81 return action_lookup(&tcp_req_cont_keywords, kw);
82}
83
Thierry Fournier7a71a6d2020-11-28 17:40:24 +010084struct action_kw *tcp_res_cont_action(const char *kw)
Willy Tarreau39713102016-11-25 15:49:32 +010085{
86 return action_lookup(&tcp_res_cont_keywords, kw);
87}
88
89/* This function performs the TCP request analysis on the current request. It
90 * returns 1 if the processing can continue on next analysers, or zero if it
91 * needs more data, encounters an error, or wants to immediately abort the
92 * request. It relies on buffers flags, and updates s->req->analysers. The
93 * function may be called for frontend rules and backend rules. It only relies
94 * on the backend pointer so this works for both cases.
95 */
96int tcp_inspect_request(struct stream *s, struct channel *req, int an_bit)
97{
98 struct session *sess = s->sess;
99 struct act_rule *rule;
Willy Tarreau39713102016-11-25 15:49:32 +0100100 int partial;
Christopher Faulet105ba6c2019-12-18 14:41:51 +0100101 int act_opts = 0;
Willy Tarreau39713102016-11-25 15:49:32 +0100102
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100103 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau39713102016-11-25 15:49:32 +0100104
105 /* We don't know whether we have enough data, so must proceed
106 * this way :
107 * - iterate through all rules in their declaration order
108 * - if one rule returns MISS, it means the inspect delay is
109 * not over yet, then return immediately, otherwise consider
110 * it as a non-match.
111 * - if one rule returns OK, then return OK
112 * - if one rule returns KO, then return KO
113 */
114
Willy Tarreau23752332018-06-15 14:54:53 +0200115 if ((req->flags & CF_SHUTR) || channel_full(req, global.tune.maxrewrite) ||
Christopher Faulet2747fbb2020-07-28 11:56:13 +0200116 !s->be->tcp_req.inspect_delay || tick_is_expired(s->rules_exp, now_ms))
Willy Tarreau39713102016-11-25 15:49:32 +0100117 partial = SMP_OPT_FINAL;
118 else
119 partial = 0;
120
121 /* If "the current_rule_list" match the executed rule list, we are in
122 * resume condition. If a resume is needed it is always in the action
123 * and never in the ACL or converters. In this case, we initialise the
124 * current rule, and go to the action execution point.
125 */
126 if (s->current_rule) {
127 rule = s->current_rule;
128 s->current_rule = NULL;
129 if (s->current_rule_list == &s->be->tcp_req.inspect_rules)
130 goto resume_execution;
131 }
132 s->current_rule_list = &s->be->tcp_req.inspect_rules;
133
134 list_for_each_entry(rule, &s->be->tcp_req.inspect_rules, list) {
135 enum acl_test_res ret = ACL_TEST_PASS;
136
137 if (rule->cond) {
138 ret = acl_exec_cond(rule->cond, s->be, sess, s, SMP_OPT_DIR_REQ | partial);
139 if (ret == ACL_TEST_MISS)
140 goto missing_data;
141
142 ret = acl_pass(ret);
143 if (rule->cond->pol == ACL_COND_UNLESS)
144 ret = !ret;
145 }
146
147 if (ret) {
Christopher Faulet105ba6c2019-12-18 14:41:51 +0100148 act_opts |= ACT_OPT_FIRST;
Willy Tarreau39713102016-11-25 15:49:32 +0100149resume_execution:
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100150
151 /* Always call the action function if defined */
152 if (rule->action_ptr) {
153 if (partial & SMP_OPT_FINAL)
Christopher Faulet105ba6c2019-12-18 14:41:51 +0100154 act_opts |= ACT_OPT_FINAL;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100155
Christopher Faulet105ba6c2019-12-18 14:41:51 +0100156 switch (rule->action_ptr(rule, s->be, s->sess, s, act_opts)) {
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100157 case ACT_RET_CONT:
158 break;
159 case ACT_RET_STOP:
160 case ACT_RET_DONE:
161 goto end;
162 case ACT_RET_YIELD:
163 s->current_rule = rule;
Christopher Faulet99aaca92020-07-28 11:30:19 +0200164 if (partial & SMP_OPT_FINAL) {
165 send_log(s->be, LOG_WARNING,
166 "Internal error: yield not allowed if the inspect-delay expired "
167 "for the tcp-request content actions.");
168 goto internal;
169 }
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100170 goto missing_data;
171 case ACT_RET_DENY:
172 goto deny;
173 case ACT_RET_ABRT:
174 goto abort;
175 case ACT_RET_ERR:
176 goto internal;
177 case ACT_RET_INV:
178 goto invalid;
179 }
180 continue; /* eval the next rule */
181 }
182
183 /* If not action function defined, check for known actions */
Willy Tarreau39713102016-11-25 15:49:32 +0100184 if (rule->action == ACT_ACTION_ALLOW) {
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100185 goto end;
Willy Tarreau39713102016-11-25 15:49:32 +0100186 }
187 else if (rule->action == ACT_ACTION_DENY) {
Christopher Faulet282992e2019-12-16 12:34:31 +0100188 goto deny;
Willy Tarreau39713102016-11-25 15:49:32 +0100189 }
Willy Tarreau39713102016-11-25 15:49:32 +0100190 }
191 }
192
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100193 end:
Willy Tarreau39713102016-11-25 15:49:32 +0100194 /* if we get there, it means we have no rule which matches, or
195 * we have an explicit accept, so we apply the default accept.
196 */
197 req->analysers &= ~an_bit;
Christopher Faulet2747fbb2020-07-28 11:56:13 +0200198 req->analyse_exp = s->rules_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100199 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau39713102016-11-25 15:49:32 +0100200 return 1;
201
202 missing_data:
203 channel_dont_connect(req);
204 /* just set the request timeout once at the beginning of the request */
Christopher Faulet2747fbb2020-07-28 11:56:13 +0200205 if (!tick_isset(s->rules_exp) && s->be->tcp_req.inspect_delay)
206 s->rules_exp = tick_add(now_ms, s->be->tcp_req.inspect_delay);
207 req->analyse_exp = tick_first((tick_is_expired(req->analyse_exp, now_ms) ? 0 : req->analyse_exp), s->rules_exp);
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100208 DBG_TRACE_DEVEL("waiting for more data", STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau39713102016-11-25 15:49:32 +0100209 return 0;
210
Christopher Faulet282992e2019-12-16 12:34:31 +0100211 deny:
212 _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_req, 1);
213 if (sess->listener && sess->listener->counters)
214 _HA_ATOMIC_ADD(&sess->listener->counters->denied_req, 1);
215 goto reject;
216
217 internal:
218 _HA_ATOMIC_ADD(&sess->fe->fe_counters.internal_errors, 1);
219 if (sess->listener && sess->listener->counters)
220 _HA_ATOMIC_ADD(&sess->listener->counters->internal_errors, 1);
221 if (!(s->flags & SF_ERR_MASK))
222 s->flags |= SF_ERR_INTERNAL;
223 goto reject;
224
225 invalid:
226 _HA_ATOMIC_ADD(&sess->fe->fe_counters.failed_req, 1);
227 if (sess->listener && sess->listener->counters)
228 _HA_ATOMIC_ADD(&sess->listener->counters->failed_req, 1);
229
230 reject:
231 si_must_kill_conn(chn_prod(req));
232 channel_abort(req);
233 channel_abort(&s->res);
234
235 abort:
236 req->analysers &= AN_REQ_FLT_END;
237
238 if (!(s->flags & SF_ERR_MASK))
239 s->flags |= SF_ERR_PRXCOND;
240 if (!(s->flags & SF_FINST_MASK))
241 s->flags |= SF_FINST_R;
242 DBG_TRACE_DEVEL("leaving on error|deny|abort", STRM_EV_STRM_ANA|STRM_EV_TCP_ANA|STRM_EV_TCP_ERR, s);
243 return 0;
Willy Tarreau39713102016-11-25 15:49:32 +0100244}
245
246/* This function performs the TCP response analysis on the current response. It
247 * returns 1 if the processing can continue on next analysers, or zero if it
248 * needs more data, encounters an error, or wants to immediately abort the
249 * response. It relies on buffers flags, and updates s->rep->analysers. The
250 * function may be called for backend rules.
251 */
252int tcp_inspect_response(struct stream *s, struct channel *rep, int an_bit)
253{
254 struct session *sess = s->sess;
255 struct act_rule *rule;
256 int partial;
Christopher Faulet105ba6c2019-12-18 14:41:51 +0100257 int act_opts = 0;
Willy Tarreau39713102016-11-25 15:49:32 +0100258
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100259 DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau39713102016-11-25 15:49:32 +0100260
261 /* We don't know whether we have enough data, so must proceed
262 * this way :
263 * - iterate through all rules in their declaration order
264 * - if one rule returns MISS, it means the inspect delay is
265 * not over yet, then return immediately, otherwise consider
266 * it as a non-match.
267 * - if one rule returns OK, then return OK
268 * - if one rule returns KO, then return KO
269 */
Willy Tarreau55ae1ab2020-06-15 18:08:07 +0200270 if ((rep->flags & CF_SHUTR) || channel_full(rep, global.tune.maxrewrite) ||
Christopher Faulet2747fbb2020-07-28 11:56:13 +0200271 !s->be->tcp_rep.inspect_delay || tick_is_expired(s->rules_exp, now_ms))
Willy Tarreau39713102016-11-25 15:49:32 +0100272 partial = SMP_OPT_FINAL;
273 else
274 partial = 0;
275
276 /* If "the current_rule_list" match the executed rule list, we are in
277 * resume condition. If a resume is needed it is always in the action
278 * and never in the ACL or converters. In this case, we initialise the
279 * current rule, and go to the action execution point.
280 */
281 if (s->current_rule) {
282 rule = s->current_rule;
283 s->current_rule = NULL;
284 if (s->current_rule_list == &s->be->tcp_rep.inspect_rules)
285 goto resume_execution;
286 }
287 s->current_rule_list = &s->be->tcp_rep.inspect_rules;
Christopher Faulet2747fbb2020-07-28 11:56:13 +0200288 s->rules_exp = TICK_ETERNITY;
Willy Tarreau39713102016-11-25 15:49:32 +0100289
290 list_for_each_entry(rule, &s->be->tcp_rep.inspect_rules, list) {
291 enum acl_test_res ret = ACL_TEST_PASS;
292
293 if (rule->cond) {
294 ret = acl_exec_cond(rule->cond, s->be, sess, s, SMP_OPT_DIR_RES | partial);
Christopher Faulet2747fbb2020-07-28 11:56:13 +0200295 if (ret == ACL_TEST_MISS)
296 goto missing_data;
Willy Tarreau39713102016-11-25 15:49:32 +0100297
298 ret = acl_pass(ret);
299 if (rule->cond->pol == ACL_COND_UNLESS)
300 ret = !ret;
301 }
302
303 if (ret) {
Christopher Faulet105ba6c2019-12-18 14:41:51 +0100304 act_opts |= ACT_OPT_FIRST;
Willy Tarreau39713102016-11-25 15:49:32 +0100305resume_execution:
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100306 /* Always call the action function if defined */
307 if (rule->action_ptr) {
308 if (partial & SMP_OPT_FINAL)
Christopher Faulet105ba6c2019-12-18 14:41:51 +0100309 act_opts |= ACT_OPT_FINAL;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100310
Christopher Faulet105ba6c2019-12-18 14:41:51 +0100311 switch (rule->action_ptr(rule, s->be, s->sess, s, act_opts)) {
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100312 case ACT_RET_CONT:
313 break;
314 case ACT_RET_STOP:
315 case ACT_RET_DONE:
316 goto end;
317 case ACT_RET_YIELD:
318 s->current_rule = rule;
Christopher Faulet99aaca92020-07-28 11:30:19 +0200319 if (partial & SMP_OPT_FINAL) {
320 send_log(s->be, LOG_WARNING,
321 "Internal error: yield not allowed if the inspect-delay expired "
322 "for the tcp-response content actions.");
323 goto internal;
324 }
Christopher Faulet2747fbb2020-07-28 11:56:13 +0200325 channel_dont_close(rep);
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100326 goto missing_data;
327 case ACT_RET_DENY:
328 goto deny;
329 case ACT_RET_ABRT:
330 goto abort;
331 case ACT_RET_ERR:
332 goto internal;
333 case ACT_RET_INV:
334 goto invalid;
335 }
336 continue; /* eval the next rule */
337 }
338
339 /* If not action function defined, check for known actions */
Willy Tarreau39713102016-11-25 15:49:32 +0100340 if (rule->action == ACT_ACTION_ALLOW) {
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100341 goto end;
Willy Tarreau39713102016-11-25 15:49:32 +0100342 }
343 else if (rule->action == ACT_ACTION_DENY) {
Christopher Faulet282992e2019-12-16 12:34:31 +0100344 goto deny;
Willy Tarreau39713102016-11-25 15:49:32 +0100345 }
346 else if (rule->action == ACT_TCP_CLOSE) {
347 chn_prod(rep)->flags |= SI_FL_NOLINGER | SI_FL_NOHALF;
Willy Tarreau0f9cd7b2019-01-31 19:02:43 +0100348 si_must_kill_conn(chn_prod(rep));
Willy Tarreau39713102016-11-25 15:49:32 +0100349 si_shutr(chn_prod(rep));
350 si_shutw(chn_prod(rep));
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100351 goto end;
Willy Tarreau39713102016-11-25 15:49:32 +0100352 }
353 }
354 }
355
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100356 end:
Willy Tarreau39713102016-11-25 15:49:32 +0100357 /* if we get there, it means we have no rule which matches, or
358 * we have an explicit accept, so we apply the default accept.
359 */
360 rep->analysers &= ~an_bit;
Christopher Faulet2747fbb2020-07-28 11:56:13 +0200361 rep->analyse_exp = s->rules_exp = TICK_ETERNITY;
Christopher Fauleteea8fc72019-11-05 16:18:10 +0100362 DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
Willy Tarreau39713102016-11-25 15:49:32 +0100363 return 1;
Christopher Faulet282992e2019-12-16 12:34:31 +0100364
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100365 missing_data:
Christopher Faulet54f3e182020-07-29 12:00:23 +0200366 /* just set the analyser timeout once at the beginning of the response */
Christopher Faulet2747fbb2020-07-28 11:56:13 +0200367 if (!tick_isset(s->rules_exp) && s->be->tcp_rep.inspect_delay)
368 s->rules_exp = tick_add(now_ms, s->be->tcp_rep.inspect_delay);
369 rep->analyse_exp = tick_first((tick_is_expired(rep->analyse_exp, now_ms) ? 0 : rep->analyse_exp), s->rules_exp);
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100370 DBG_TRACE_DEVEL("waiting for more data", STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s);
371 return 0;
372
Christopher Faulet282992e2019-12-16 12:34:31 +0100373 deny:
Christopher Fauletcff0f732019-12-16 16:13:44 +0100374 _HA_ATOMIC_ADD(&s->sess->fe->fe_counters.denied_resp, 1);
Christopher Faulet282992e2019-12-16 12:34:31 +0100375 _HA_ATOMIC_ADD(&s->be->be_counters.denied_resp, 1);
William Lallemand36119de2021-03-08 15:26:48 +0100376 if (s->sess->listener && s->sess->listener->counters)
Christopher Fauletcff0f732019-12-16 16:13:44 +0100377 _HA_ATOMIC_ADD(&s->sess->listener->counters->denied_resp, 1);
Christopher Faulet282992e2019-12-16 12:34:31 +0100378 if (objt_server(s->target))
379 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.denied_resp, 1);
380 goto reject;
381
382 internal:
Christopher Fauletcff0f732019-12-16 16:13:44 +0100383 _HA_ATOMIC_ADD(&s->sess->fe->fe_counters.internal_errors, 1);
Christopher Faulet282992e2019-12-16 12:34:31 +0100384 _HA_ATOMIC_ADD(&s->be->be_counters.internal_errors, 1);
William Lallemand36119de2021-03-08 15:26:48 +0100385 if (s->sess->listener && s->sess->listener->counters)
Christopher Fauletcff0f732019-12-16 16:13:44 +0100386 _HA_ATOMIC_ADD(&s->sess->listener->counters->internal_errors, 1);
Christopher Faulet282992e2019-12-16 12:34:31 +0100387 if (objt_server(s->target))
388 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.internal_errors, 1);
389 if (!(s->flags & SF_ERR_MASK))
390 s->flags |= SF_ERR_INTERNAL;
391 goto reject;
392
393 invalid:
394 _HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
395 if (objt_server(s->target))
396 _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.failed_resp, 1);
397
398 reject:
399 si_must_kill_conn(chn_prod(rep));
400 channel_abort(rep);
401 channel_abort(&s->req);
402
403 abort:
Christopher Faulet19dbf2d2020-07-28 11:40:07 +0200404 rep->analysers &= AN_RES_FLT_END;
Christopher Faulet282992e2019-12-16 12:34:31 +0100405
406 if (!(s->flags & SF_ERR_MASK))
407 s->flags |= SF_ERR_PRXCOND;
408 if (!(s->flags & SF_FINST_MASK))
409 s->flags |= SF_FINST_D;
410 DBG_TRACE_DEVEL("leaving on error", STRM_EV_STRM_ANA|STRM_EV_TCP_ANA|STRM_EV_TCP_ERR, s);
411 return 0;
Willy Tarreau39713102016-11-25 15:49:32 +0100412}
413
414
415/* This function performs the TCP layer4 analysis on the current request. It
416 * returns 0 if a reject rule matches, otherwise 1 if either an accept rule
417 * matches or if no more rule matches. It can only use rules which don't need
418 * any data. This only works on connection-based client-facing stream interfaces.
419 */
420int tcp_exec_l4_rules(struct session *sess)
421{
422 struct act_rule *rule;
Willy Tarreau39713102016-11-25 15:49:32 +0100423 struct connection *conn = objt_conn(sess->origin);
424 int result = 1;
425 enum acl_test_res ret;
426
427 if (!conn)
428 return result;
429
430 list_for_each_entry(rule, &sess->fe->tcp_req.l4_rules, list) {
431 ret = ACL_TEST_PASS;
432
433 if (rule->cond) {
434 ret = acl_exec_cond(rule->cond, sess->fe, sess, NULL, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
435 ret = acl_pass(ret);
436 if (rule->cond->pol == ACL_COND_UNLESS)
437 ret = !ret;
438 }
439
440 if (ret) {
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100441 /* Always call the action function if defined */
442 if (rule->action_ptr) {
Christopher Faulet105ba6c2019-12-18 14:41:51 +0100443 switch (rule->action_ptr(rule, sess->fe, sess, NULL, ACT_OPT_FINAL | ACT_OPT_FIRST)) {
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100444 case ACT_RET_YIELD:
445 /* yield is not allowed at this point. If this return code is
446 * used it is a bug, so I prefer to abort the process.
447 */
448 send_log(sess->fe, LOG_WARNING,
449 "Internal error: yield not allowed with tcp-request connection actions.");
450 /* fall through */
451 case ACT_RET_STOP:
452 case ACT_RET_DONE:
453 goto end;
454 case ACT_RET_CONT:
455 break;
456 case ACT_RET_DENY:
457 case ACT_RET_ABRT:
458 case ACT_RET_ERR:
459 case ACT_RET_INV:
460 result = 0;
461 goto end;
462 }
463 continue; /* eval the next rule */
464 }
465
466 /* If not action function defined, check for known actions */
Willy Tarreau39713102016-11-25 15:49:32 +0100467 if (rule->action == ACT_ACTION_ALLOW) {
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100468 goto end;
Willy Tarreau39713102016-11-25 15:49:32 +0100469 }
470 else if (rule->action == ACT_ACTION_DENY) {
Olivier Houchard64dbb2d2019-03-08 18:55:10 +0100471 _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_conn, 1);
Willy Tarreaua12dde02016-12-22 18:14:41 +0100472 if (sess->listener && sess->listener->counters)
Olivier Houchard64dbb2d2019-03-08 18:55:10 +0100473 _HA_ATOMIC_ADD(&sess->listener->counters->denied_conn, 1);
Willy Tarreau39713102016-11-25 15:49:32 +0100474
475 result = 0;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100476 goto end;
Willy Tarreau39713102016-11-25 15:49:32 +0100477 }
Willy Tarreau39713102016-11-25 15:49:32 +0100478 else if (rule->action == ACT_TCP_EXPECT_PX) {
Willy Tarreau4450b582020-01-23 15:23:13 +0100479 if (!(conn->flags & CO_FL_HANDSHAKE)) {
Olivier Houchardfe50bfb2019-05-27 12:09:19 +0200480 if (xprt_add_hs(conn) < 0) {
481 result = 0;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100482 goto end;
Olivier Houchardfe50bfb2019-05-27 12:09:19 +0200483 }
484 }
Willy Tarreau39713102016-11-25 15:49:32 +0100485 conn->flags |= CO_FL_ACCEPT_PROXY;
Willy Tarreau39713102016-11-25 15:49:32 +0100486 }
487 else if (rule->action == ACT_TCP_EXPECT_CIP) {
Willy Tarreau4450b582020-01-23 15:23:13 +0100488 if (!(conn->flags & CO_FL_HANDSHAKE)) {
Olivier Houchardfe50bfb2019-05-27 12:09:19 +0200489 if (xprt_add_hs(conn) < 0) {
490 result = 0;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100491 goto end;
Olivier Houchardfe50bfb2019-05-27 12:09:19 +0200492 }
493 }
Willy Tarreau39713102016-11-25 15:49:32 +0100494 conn->flags |= CO_FL_ACCEPT_CIP;
Willy Tarreau39713102016-11-25 15:49:32 +0100495 }
Willy Tarreau39713102016-11-25 15:49:32 +0100496 }
497 }
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100498 end:
Willy Tarreau39713102016-11-25 15:49:32 +0100499 return result;
500}
501
502/* This function performs the TCP layer5 analysis on the current request. It
503 * returns 0 if a reject rule matches, otherwise 1 if either an accept rule
504 * matches or if no more rule matches. It can only use rules which don't need
505 * any data. This only works on session-based client-facing stream interfaces.
506 * An example of valid use case is to track a stick-counter on the source
507 * address extracted from the proxy protocol.
508 */
509int tcp_exec_l5_rules(struct session *sess)
510{
511 struct act_rule *rule;
Willy Tarreau39713102016-11-25 15:49:32 +0100512 int result = 1;
513 enum acl_test_res ret;
514
515 list_for_each_entry(rule, &sess->fe->tcp_req.l5_rules, list) {
516 ret = ACL_TEST_PASS;
517
518 if (rule->cond) {
519 ret = acl_exec_cond(rule->cond, sess->fe, sess, NULL, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
520 ret = acl_pass(ret);
521 if (rule->cond->pol == ACL_COND_UNLESS)
522 ret = !ret;
523 }
524
525 if (ret) {
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100526 /* Always call the action function if defined */
527 if (rule->action_ptr) {
Christopher Faulet105ba6c2019-12-18 14:41:51 +0100528 switch (rule->action_ptr(rule, sess->fe, sess, NULL, ACT_OPT_FINAL | ACT_OPT_FIRST)) {
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100529 case ACT_RET_YIELD:
530 /* yield is not allowed at this point. If this return code is
531 * used it is a bug, so I prefer to abort the process.
532 */
533 send_log(sess->fe, LOG_WARNING,
534 "Internal error: yield not allowed with tcp-request session actions.");
535 /* fall through */
536 case ACT_RET_STOP:
537 case ACT_RET_DONE:
538 goto end;
539 case ACT_RET_CONT:
540 break;
541 case ACT_RET_DENY:
542 case ACT_RET_ABRT:
543 case ACT_RET_ERR:
544 case ACT_RET_INV:
545 result = 0;
546 goto end;
547 }
548 continue; /* eval the next rule */
549 }
550
551 /* If not action function defined, check for known actions */
Willy Tarreau39713102016-11-25 15:49:32 +0100552 if (rule->action == ACT_ACTION_ALLOW) {
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100553 goto end;
Willy Tarreau39713102016-11-25 15:49:32 +0100554 }
555 else if (rule->action == ACT_ACTION_DENY) {
Olivier Houchard64dbb2d2019-03-08 18:55:10 +0100556 _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_sess, 1);
Willy Tarreaua12dde02016-12-22 18:14:41 +0100557 if (sess->listener && sess->listener->counters)
Olivier Houchard64dbb2d2019-03-08 18:55:10 +0100558 _HA_ATOMIC_ADD(&sess->listener->counters->denied_sess, 1);
Willy Tarreau39713102016-11-25 15:49:32 +0100559
560 result = 0;
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100561 goto end;
Willy Tarreau39713102016-11-25 15:49:32 +0100562 }
Willy Tarreau39713102016-11-25 15:49:32 +0100563 }
564 }
Christopher Fauletcd26e8a2019-12-18 11:13:39 +0100565 end:
Willy Tarreau39713102016-11-25 15:49:32 +0100566 return result;
567}
568
569/* Parse a tcp-response rule. Return a negative value in case of failure */
570static int tcp_parse_response_rule(char **args, int arg, int section_type,
Willy Tarreau01825162021-03-09 09:53:46 +0100571 struct proxy *curpx, const struct proxy *defpx,
Willy Tarreau39713102016-11-25 15:49:32 +0100572 struct act_rule *rule, char **err,
573 unsigned int where,
574 const char *file, int line)
575{
576 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
577 memprintf(err, "%s %s is only allowed in 'backend' sections",
578 args[0], args[1]);
579 return -1;
580 }
581
582 if (strcmp(args[arg], "accept") == 0) {
583 arg++;
584 rule->action = ACT_ACTION_ALLOW;
Christopher Faulet245cf792019-12-18 14:58:12 +0100585 rule->flags |= ACT_FLAG_FINAL;
Willy Tarreau39713102016-11-25 15:49:32 +0100586 }
587 else if (strcmp(args[arg], "reject") == 0) {
588 arg++;
589 rule->action = ACT_ACTION_DENY;
Christopher Faulet245cf792019-12-18 14:58:12 +0100590 rule->flags |= ACT_FLAG_FINAL;
Willy Tarreau39713102016-11-25 15:49:32 +0100591 }
592 else if (strcmp(args[arg], "close") == 0) {
593 arg++;
594 rule->action = ACT_TCP_CLOSE;
Christopher Faulet245cf792019-12-18 14:58:12 +0100595 rule->flags |= ACT_FLAG_FINAL;
Willy Tarreau39713102016-11-25 15:49:32 +0100596 }
597 else {
598 struct action_kw *kw;
599 kw = tcp_res_cont_action(args[arg]);
600 if (kw) {
601 arg++;
Willy Tarreau39713102016-11-25 15:49:32 +0100602 rule->kw = kw;
603 if (kw->parse((const char **)args, &arg, curpx, rule, err) == ACT_RET_PRS_ERR)
604 return -1;
605 } else {
Willy Tarreaudb67b0e2021-03-12 13:46:10 +0100606 const char *extra[] = { "accept", "reject", "close", NULL };
607 const char *best = action_suggest(args[arg], &tcp_res_cont_keywords, extra);
608
Willy Tarreau39713102016-11-25 15:49:32 +0100609 action_build_list(&tcp_res_cont_keywords, &trash);
610 memprintf(err,
Willy Tarreaudb67b0e2021-03-12 13:46:10 +0100611 "'%s %s' expects 'accept', 'close', 'reject', %s in %s '%s' (got '%s').%s%s%s",
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200612 args[0], args[1], trash.area,
Willy Tarreaudb67b0e2021-03-12 13:46:10 +0100613 proxy_type_str(curpx), curpx->id, args[arg],
614 best ? " Did you mean '" : "",
615 best ? best : "",
616 best ? "' maybe ?" : "");
Willy Tarreau39713102016-11-25 15:49:32 +0100617 return -1;
618 }
619 }
620
621 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Christopher Faulet1b421ea2017-09-22 14:38:56 +0200622 if ((rule->cond = build_acl_cond(file, line, &curpx->acl, curpx, (const char **)args+arg, err)) == NULL) {
Willy Tarreau39713102016-11-25 15:49:32 +0100623 memprintf(err,
624 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
625 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
626 return -1;
627 }
628 }
629 else if (*args[arg]) {
630 memprintf(err,
631 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
632 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
633 return -1;
634 }
635 return 0;
636}
637
Christopher Fauletac98d812019-12-18 09:20:16 +0100638
639/* This function executes a track-sc* actions. On success, it returns
640 * ACT_RET_CONT. If it must yield, it return ACT_RET_YIELD. Otherwsize
641 * ACT_RET_ERR is returned.
642 */
643static enum act_return tcp_action_track_sc(struct act_rule *rule, struct proxy *px,
644 struct session *sess, struct stream *s, int flags)
645{
646 struct stksess *ts;
647 struct stktable *t;
648 struct stktable_key *key;
649 struct sample smp;
650 int opt;
651
Christopher Faulet67307792020-02-10 09:54:49 +0100652 opt = SMP_OPT_DIR_REQ;
Christopher Fauletac98d812019-12-18 09:20:16 +0100653 if (flags & ACT_FLAG_FINAL)
654 opt |= SMP_OPT_FINAL;
Willy Tarreau39713102016-11-25 15:49:32 +0100655
Christopher Fauletac98d812019-12-18 09:20:16 +0100656 t = rule->arg.trk_ctr.table.t;
Christopher Faulet67307792020-02-10 09:54:49 +0100657 if (rule->from == ACT_F_TCP_REQ_CNT) { /* L7 rules: use the stream */
658 if (stkctr_entry(&s->stkctr[rule->action]))
659 goto end;
Christopher Fauletac98d812019-12-18 09:20:16 +0100660
Christopher Faulet67307792020-02-10 09:54:49 +0100661 key = stktable_fetch_key(t, s->be, sess, s, opt, rule->arg.trk_ctr.expr, &smp);
Christopher Fauletac98d812019-12-18 09:20:16 +0100662
Christopher Faulet67307792020-02-10 09:54:49 +0100663 if ((smp.flags & SMP_F_MAY_CHANGE) && !(flags & ACT_FLAG_FINAL))
664 return ACT_RET_YIELD; /* key might appear later */
665
666 if (key && (ts = stktable_get_entry(t, key))) {
667 stream_track_stkctr(&s->stkctr[rule->action], t, ts);
Christopher Fauletac98d812019-12-18 09:20:16 +0100668 stkctr_set_flags(&s->stkctr[rule->action], STKCTR_TRACK_CONTENT);
669 if (sess->fe != s->be)
670 stkctr_set_flags(&s->stkctr[rule->action], STKCTR_TRACK_BACKEND);
671 }
672 }
Christopher Faulet67307792020-02-10 09:54:49 +0100673 else { /* L4/L5 rules: use the session */
674 if (stkctr_entry(&sess->stkctr[rule->action]))
675 goto end;
676
677 key = stktable_fetch_key(t, sess->fe, sess, NULL, opt, rule->arg.trk_ctr.expr, NULL);
678 if (key && (ts = stktable_get_entry(t, key)))
679 stream_track_stkctr(&sess->stkctr[rule->action], t, ts);
680 }
Christopher Fauletac98d812019-12-18 09:20:16 +0100681
682 end:
683 return ACT_RET_CONT;
684}
Willy Tarreau39713102016-11-25 15:49:32 +0100685
Christopher Fauletd73b96d2019-12-19 17:27:03 +0100686/* This function executes a capture actions. It executes a fetch expression,
687 * turns the result into a string and puts it in a capture slot. On success, it
688 * returns ACT_RET_CONT. If it must yield, it return ACT_RET_YIELD. Otherwsize
689 * ACT_RET_ERR is returned.
690 */
691static enum act_return tcp_action_capture(struct act_rule *rule, struct proxy *px,
692 struct session *sess, struct stream *s, int flags)
693{
694 struct sample *key;
695 struct cap_hdr *h = rule->arg.cap.hdr;
696 char **cap = s->req_cap;
697 int len, opt;
698
699 opt = ((rule->from == ACT_F_TCP_REQ_CNT) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES);
700 if (flags & ACT_FLAG_FINAL)
701 opt |= SMP_OPT_FINAL;
702
703 key = sample_fetch_as_type(s->be, sess, s, opt, rule->arg.cap.expr, SMP_T_STR);
704 if (!key)
705 goto end;
706
707 if ((key->flags & SMP_F_MAY_CHANGE) && !(flags & ACT_FLAG_FINAL))
708 return ACT_RET_YIELD; /* key might appear later */
709
710 if (cap[h->index] == NULL) {
711 cap[h->index] = pool_alloc(h->pool);
712 if (cap[h->index] == NULL) /* no more capture memory, ignore error */
713 goto end;
714 }
715
716 len = key->data.u.str.data;
717 if (len > h->len)
718 len = h->len;
719
720 memcpy(cap[h->index], key->data.u.str.area, len);
721 cap[h->index][len] = 0;
722
723 end:
724 return ACT_RET_CONT;
725}
726
Christopher Fauletadfc6e82020-01-14 15:05:33 +0100727static void release_tcp_capture(struct act_rule * rule)
728{
729 release_sample_expr(rule->arg.cap.expr);
730}
731
732
733static void release_tcp_track_sc(struct act_rule * rule)
734{
735 release_sample_expr(rule->arg.trk_ctr.expr);
736}
737
Willy Tarreau39713102016-11-25 15:49:32 +0100738/* Parse a tcp-request rule. Return a negative value in case of failure */
739static int tcp_parse_request_rule(char **args, int arg, int section_type,
Willy Tarreau01825162021-03-09 09:53:46 +0100740 struct proxy *curpx, const struct proxy *defpx,
Willy Tarreau39713102016-11-25 15:49:32 +0100741 struct act_rule *rule, char **err,
742 unsigned int where, const char *file, int line)
743{
744 if (curpx == defpx) {
745 memprintf(err, "%s %s is not allowed in 'defaults' sections",
746 args[0], args[1]);
747 return -1;
748 }
749
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100750 if (strcmp(args[arg], "accept") == 0) {
Willy Tarreau39713102016-11-25 15:49:32 +0100751 arg++;
752 rule->action = ACT_ACTION_ALLOW;
Christopher Faulet245cf792019-12-18 14:58:12 +0100753 rule->flags |= ACT_FLAG_FINAL;
Willy Tarreau39713102016-11-25 15:49:32 +0100754 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100755 else if (strcmp(args[arg], "reject") == 0) {
Willy Tarreau39713102016-11-25 15:49:32 +0100756 arg++;
757 rule->action = ACT_ACTION_DENY;
Christopher Faulet245cf792019-12-18 14:58:12 +0100758 rule->flags |= ACT_FLAG_FINAL;
Willy Tarreau39713102016-11-25 15:49:32 +0100759 }
760 else if (strcmp(args[arg], "capture") == 0) {
761 struct sample_expr *expr;
762 struct cap_hdr *hdr;
763 int kw = arg;
764 int len = 0;
765
766 if (!(curpx->cap & PR_CAP_FE)) {
767 memprintf(err,
768 "'%s %s %s' : proxy '%s' has no frontend capability",
769 args[0], args[1], args[kw], curpx->id);
770 return -1;
771 }
772
773 if (!(where & SMP_VAL_FE_REQ_CNT)) {
774 memprintf(err,
775 "'%s %s' is not allowed in '%s %s' rules in %s '%s'",
776 args[arg], args[arg+1], args[0], args[1], proxy_type_str(curpx), curpx->id);
777 return -1;
778 }
779
780 arg++;
781
782 curpx->conf.args.ctx = ARGC_CAP;
Willy Tarreaue3b57bf2020-02-14 16:50:14 +0100783 expr = sample_parse_expr(args, &arg, file, line, err, &curpx->conf.args, NULL);
Willy Tarreau39713102016-11-25 15:49:32 +0100784 if (!expr) {
785 memprintf(err,
786 "'%s %s %s' : %s",
787 args[0], args[1], args[kw], *err);
788 return -1;
789 }
790
791 if (!(expr->fetch->val & where)) {
792 memprintf(err,
793 "'%s %s %s' : fetch method '%s' extracts information from '%s', none of which is available here",
794 args[0], args[1], args[kw], args[arg-1], sample_src_names(expr->fetch->use));
Christopher Fauletfdb6fbf2020-01-14 15:05:56 +0100795 release_sample_expr(expr);
Willy Tarreau39713102016-11-25 15:49:32 +0100796 return -1;
797 }
798
799 if (strcmp(args[arg], "len") == 0) {
800 arg++;
801 if (!args[arg]) {
802 memprintf(err,
803 "'%s %s %s' : missing length value",
804 args[0], args[1], args[kw]);
Christopher Fauletfdb6fbf2020-01-14 15:05:56 +0100805 release_sample_expr(expr);
Willy Tarreau39713102016-11-25 15:49:32 +0100806 return -1;
807 }
808 /* we copy the table name for now, it will be resolved later */
809 len = atoi(args[arg]);
810 if (len <= 0) {
811 memprintf(err,
812 "'%s %s %s' : length must be > 0",
813 args[0], args[1], args[kw]);
Christopher Fauletfdb6fbf2020-01-14 15:05:56 +0100814 release_sample_expr(expr);
Willy Tarreau39713102016-11-25 15:49:32 +0100815 return -1;
816 }
817 arg++;
818 }
819
820 if (!len) {
821 memprintf(err,
822 "'%s %s %s' : a positive 'len' argument is mandatory",
823 args[0], args[1], args[kw]);
824 free(expr);
825 return -1;
826 }
827
828 hdr = calloc(1, sizeof(*hdr));
829 hdr->next = curpx->req_cap;
830 hdr->name = NULL; /* not a header capture */
831 hdr->namelen = 0;
832 hdr->len = len;
833 hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED);
834 hdr->index = curpx->nb_req_cap++;
835
836 curpx->req_cap = hdr;
837 curpx->to_log |= LW_REQHDR;
838
Christopher Faulet711ed6a2019-07-16 14:16:10 +0200839 /* check if we need to allocate an http_txn struct for HTTP parsing */
Willy Tarreau39713102016-11-25 15:49:32 +0100840 curpx->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
841
842 rule->arg.cap.expr = expr;
843 rule->arg.cap.hdr = hdr;
Christopher Fauletd73b96d2019-12-19 17:27:03 +0100844 rule->action = ACT_CUSTOM;
845 rule->action_ptr = tcp_action_capture;
846 rule->check_ptr = check_capture;
Christopher Fauletadfc6e82020-01-14 15:05:33 +0100847 rule->release_ptr = release_tcp_capture;
Willy Tarreau39713102016-11-25 15:49:32 +0100848 }
Frédéric Lécaillea41d5312018-01-29 12:05:07 +0100849 else if (strncmp(args[arg], "track-sc", 8) == 0) {
Willy Tarreau39713102016-11-25 15:49:32 +0100850 struct sample_expr *expr;
851 int kw = arg;
Frédéric Lécaillea41d5312018-01-29 12:05:07 +0100852 unsigned int tsc_num;
853 const char *tsc_num_str;
Willy Tarreau39713102016-11-25 15:49:32 +0100854
855 arg++;
856
Frédéric Lécaillea41d5312018-01-29 12:05:07 +0100857 tsc_num_str = &args[kw][8];
858 if (cfg_parse_track_sc_num(&tsc_num, tsc_num_str, tsc_num_str + strlen(tsc_num_str), err) == -1) {
859 memprintf(err, "'%s %s %s' : %s", args[0], args[1], args[kw], *err);
860 return -1;
861 }
862
Willy Tarreau39713102016-11-25 15:49:32 +0100863 curpx->conf.args.ctx = ARGC_TRK;
Willy Tarreaue3b57bf2020-02-14 16:50:14 +0100864 expr = sample_parse_expr(args, &arg, file, line, err, &curpx->conf.args, NULL);
Willy Tarreau39713102016-11-25 15:49:32 +0100865 if (!expr) {
866 memprintf(err,
867 "'%s %s %s' : %s",
868 args[0], args[1], args[kw], *err);
869 return -1;
870 }
871
872 if (!(expr->fetch->val & where)) {
873 memprintf(err,
874 "'%s %s %s' : fetch method '%s' extracts information from '%s', none of which is available here",
875 args[0], args[1], args[kw], args[arg-1], sample_src_names(expr->fetch->use));
Christopher Fauletfdb6fbf2020-01-14 15:05:56 +0100876 release_sample_expr(expr);
Willy Tarreau39713102016-11-25 15:49:32 +0100877 return -1;
878 }
879
Christopher Faulet711ed6a2019-07-16 14:16:10 +0200880 /* check if we need to allocate an http_txn struct for HTTP parsing */
Willy Tarreau39713102016-11-25 15:49:32 +0100881 curpx->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
882
883 if (strcmp(args[arg], "table") == 0) {
884 arg++;
885 if (!args[arg]) {
886 memprintf(err,
887 "'%s %s %s' : missing table name",
888 args[0], args[1], args[kw]);
Christopher Fauletfdb6fbf2020-01-14 15:05:56 +0100889 release_sample_expr(expr);
Willy Tarreau39713102016-11-25 15:49:32 +0100890 return -1;
891 }
892 /* we copy the table name for now, it will be resolved later */
893 rule->arg.trk_ctr.table.n = strdup(args[arg]);
894 arg++;
895 }
Christopher Fauletac98d812019-12-18 09:20:16 +0100896 rule->action = tsc_num;
Willy Tarreau39713102016-11-25 15:49:32 +0100897 rule->arg.trk_ctr.expr = expr;
Christopher Fauletac98d812019-12-18 09:20:16 +0100898 rule->action_ptr = tcp_action_track_sc;
Christopher Faulet78880fb2017-09-18 14:43:55 +0200899 rule->check_ptr = check_trk_action;
Christopher Fauletadfc6e82020-01-14 15:05:33 +0100900 rule->release_ptr = release_tcp_track_sc;
Willy Tarreau39713102016-11-25 15:49:32 +0100901 }
902 else if (strcmp(args[arg], "expect-proxy") == 0) {
903 if (strcmp(args[arg+1], "layer4") != 0) {
904 memprintf(err,
905 "'%s %s %s' only supports 'layer4' in %s '%s' (got '%s')",
906 args[0], args[1], args[arg], proxy_type_str(curpx), curpx->id, args[arg+1]);
907 return -1;
908 }
909
910 if (!(where & SMP_VAL_FE_CON_ACC)) {
911 memprintf(err,
912 "'%s %s' is not allowed in '%s %s' rules in %s '%s'",
913 args[arg], args[arg+1], args[0], args[1], proxy_type_str(curpx), curpx->id);
914 return -1;
915 }
916
917 arg += 2;
918 rule->action = ACT_TCP_EXPECT_PX;
919 }
920 else if (strcmp(args[arg], "expect-netscaler-cip") == 0) {
921 if (strcmp(args[arg+1], "layer4") != 0) {
922 memprintf(err,
923 "'%s %s %s' only supports 'layer4' in %s '%s' (got '%s')",
924 args[0], args[1], args[arg], proxy_type_str(curpx), curpx->id, args[arg+1]);
925 return -1;
926 }
927
928 if (!(where & SMP_VAL_FE_CON_ACC)) {
929 memprintf(err,
930 "'%s %s' is not allowed in '%s %s' rules in %s '%s'",
931 args[arg], args[arg+1], args[0], args[1], proxy_type_str(curpx), curpx->id);
932 return -1;
933 }
934
935 arg += 2;
936 rule->action = ACT_TCP_EXPECT_CIP;
937 }
938 else {
939 struct action_kw *kw;
940 if (where & SMP_VAL_FE_CON_ACC) {
941 /* L4 */
942 kw = tcp_req_conn_action(args[arg]);
943 rule->kw = kw;
Willy Tarreau39713102016-11-25 15:49:32 +0100944 } else if (where & SMP_VAL_FE_SES_ACC) {
945 /* L5 */
946 kw = tcp_req_sess_action(args[arg]);
947 rule->kw = kw;
Willy Tarreau39713102016-11-25 15:49:32 +0100948 } else {
949 /* L6 */
950 kw = tcp_req_cont_action(args[arg]);
951 rule->kw = kw;
Willy Tarreau39713102016-11-25 15:49:32 +0100952 }
953 if (kw) {
954 arg++;
955 if (kw->parse((const char **)args, &arg, curpx, rule, err) == ACT_RET_PRS_ERR)
956 return -1;
957 } else {
Willy Tarreaudb67b0e2021-03-12 13:46:10 +0100958 const char *extra[] = { "accept", "reject", "capture", "track-sc", "expect-proxy", "expect-netscaler-ip", NULL };
959 const char *best = NULL;
960
961
962 if (where & SMP_VAL_FE_CON_ACC) {
Willy Tarreau39713102016-11-25 15:49:32 +0100963 action_build_list(&tcp_req_conn_keywords, &trash);
Willy Tarreaudb67b0e2021-03-12 13:46:10 +0100964 best = action_suggest(args[arg], &tcp_req_conn_keywords, extra);
965 }
966 else if (where & SMP_VAL_FE_SES_ACC) {
Willy Tarreau39713102016-11-25 15:49:32 +0100967 action_build_list(&tcp_req_sess_keywords, &trash);
Willy Tarreaudb67b0e2021-03-12 13:46:10 +0100968 best = action_suggest(args[arg], &tcp_req_sess_keywords, extra);
969 }
970 else {
Willy Tarreau39713102016-11-25 15:49:32 +0100971 action_build_list(&tcp_req_cont_keywords, &trash);
Willy Tarreaudb67b0e2021-03-12 13:46:10 +0100972 best = action_suggest(args[arg], &tcp_req_cont_keywords, extra);
973 }
974
Willy Tarreau39713102016-11-25 15:49:32 +0100975 memprintf(err,
Willy Tarreau72d012f2021-03-12 13:42:43 +0100976 "'%s %s' expects 'accept', 'reject', 'capture', 'expect-proxy', 'expect-netscaler-ip', 'track-sc0' ... 'track-sc%d', %s "
Willy Tarreaudb67b0e2021-03-12 13:46:10 +0100977 "in %s '%s' (got '%s').%s%s%s\n",
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200978 args[0], args[1], MAX_SESS_STKCTR-1,
979 trash.area, proxy_type_str(curpx),
Willy Tarreaudb67b0e2021-03-12 13:46:10 +0100980 curpx->id, args[arg],
981 best ? " Did you mean '" : "",
982 best ? best : "",
983 best ? "' maybe ?" : "");
Willy Tarreau39713102016-11-25 15:49:32 +0100984 return -1;
985 }
986 }
987
988 if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) {
Christopher Faulet1b421ea2017-09-22 14:38:56 +0200989 if ((rule->cond = build_acl_cond(file, line, &curpx->acl, curpx, (const char **)args+arg, err)) == NULL) {
Willy Tarreau39713102016-11-25 15:49:32 +0100990 memprintf(err,
991 "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s",
992 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err);
993 return -1;
994 }
995 }
996 else if (*args[arg]) {
997 memprintf(err,
998 "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')",
999 args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]);
1000 return -1;
1001 }
1002 return 0;
1003}
1004
1005/* This function should be called to parse a line starting with the "tcp-response"
1006 * keyword.
1007 */
1008static int tcp_parse_tcp_rep(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01001009 const struct proxy *defpx, const char *file, int line,
Willy Tarreau39713102016-11-25 15:49:32 +01001010 char **err)
1011{
1012 const char *ptr = NULL;
1013 unsigned int val;
1014 int warn = 0;
1015 int arg;
1016 struct act_rule *rule;
1017 unsigned int where;
1018 const struct acl *acl;
1019 const char *kw;
1020
1021 if (!*args[1]) {
1022 memprintf(err, "missing argument for '%s' in %s '%s'",
1023 args[0], proxy_type_str(curpx), curpx->id);
1024 return -1;
1025 }
1026
1027 if (strcmp(args[1], "inspect-delay") == 0) {
1028 if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) {
1029 memprintf(err, "%s %s is only allowed in 'backend' sections",
1030 args[0], args[1]);
1031 return -1;
1032 }
1033
1034 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
1035 memprintf(err,
1036 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1037 args[0], args[1], proxy_type_str(curpx), curpx->id);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001038
1039 if (ptr == PARSE_TIME_OVER)
1040 memprintf(err, "%s (timer overflow in '%s', maximum value is 2147483647 ms or ~24.8 days)", *err, args[2]);
1041 else if (ptr == PARSE_TIME_UNDER)
1042 memprintf(err, "%s (timer underflow in '%s', minimum non-null value is 1 ms)", *err, args[2]);
1043 else if (ptr)
Willy Tarreau39713102016-11-25 15:49:32 +01001044 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
1045 return -1;
1046 }
1047
1048 if (curpx->tcp_rep.inspect_delay) {
1049 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1050 args[0], args[1], proxy_type_str(curpx), curpx->id);
1051 return 1;
1052 }
1053 curpx->tcp_rep.inspect_delay = val;
1054 return 0;
1055 }
1056
1057 rule = calloc(1, sizeof(*rule));
1058 LIST_INIT(&rule->list);
1059 arg = 1;
1060 where = 0;
1061
1062 if (strcmp(args[1], "content") == 0) {
1063 arg++;
1064
1065 if (curpx->cap & PR_CAP_FE)
1066 where |= SMP_VAL_FE_RES_CNT;
1067 if (curpx->cap & PR_CAP_BE)
1068 where |= SMP_VAL_BE_RES_CNT;
Christopher Fauletcb9106b2019-12-19 15:23:17 +01001069 rule->from = ACT_F_TCP_RES_CNT;
Willy Tarreau39713102016-11-25 15:49:32 +01001070 if (tcp_parse_response_rule(args, arg, section_type, curpx, defpx, rule, err, where, file, line) < 0)
1071 goto error;
1072
1073 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1074 if (acl) {
1075 if (acl->name && *acl->name)
1076 memprintf(err,
1077 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1078 acl->name, args[0], args[1], sample_ckp_names(where));
1079 else
1080 memprintf(err,
1081 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1082 args[0], args[1],
1083 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
1084 sample_ckp_names(where));
1085
1086 warn++;
1087 }
1088 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1089 if (acl->name && *acl->name)
1090 memprintf(err,
1091 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
1092 acl->name, kw, sample_ckp_names(where));
1093 else
1094 memprintf(err,
1095 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
1096 kw, sample_ckp_names(where));
1097 warn++;
1098 }
1099
1100 LIST_ADDQ(&curpx->tcp_rep.inspect_rules, &rule->list);
1101 }
1102 else {
1103 memprintf(err,
1104 "'%s' expects 'inspect-delay' or 'content' in %s '%s' (got '%s')",
1105 args[0], proxy_type_str(curpx), curpx->id, args[1]);
1106 goto error;
1107 }
1108
1109 return warn;
1110 error:
1111 free(rule);
1112 return -1;
1113}
1114
1115
1116/* This function should be called to parse a line starting with the "tcp-request"
1117 * keyword.
1118 */
1119static int tcp_parse_tcp_req(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01001120 const struct proxy *defpx, const char *file, int line,
Willy Tarreau39713102016-11-25 15:49:32 +01001121 char **err)
1122{
1123 const char *ptr = NULL;
1124 unsigned int val;
1125 int warn = 0;
1126 int arg;
1127 struct act_rule *rule;
1128 unsigned int where;
1129 const struct acl *acl;
1130 const char *kw;
1131
1132 if (!*args[1]) {
1133 if (curpx == defpx)
1134 memprintf(err, "missing argument for '%s' in defaults section", args[0]);
1135 else
1136 memprintf(err, "missing argument for '%s' in %s '%s'",
1137 args[0], proxy_type_str(curpx), curpx->id);
1138 return -1;
1139 }
1140
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001141 if (strcmp(args[1], "inspect-delay") == 0) {
Willy Tarreau39713102016-11-25 15:49:32 +01001142 if (curpx == defpx) {
1143 memprintf(err, "%s %s is not allowed in 'defaults' sections",
1144 args[0], args[1]);
1145 return -1;
1146 }
1147
1148 if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) {
1149 memprintf(err,
1150 "'%s %s' expects a positive delay in milliseconds, in %s '%s'",
1151 args[0], args[1], proxy_type_str(curpx), curpx->id);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001152
1153 if (ptr == PARSE_TIME_OVER)
1154 memprintf(err, "%s (timer overflow in '%s', maximum value is 2147483647 ms or ~24.8 days)", *err, args[2]);
1155 else if (ptr == PARSE_TIME_UNDER)
1156 memprintf(err, "%s (timer underflow in '%s', minimum non-null value is 1 ms)", *err, args[2]);
1157 else if (ptr)
Willy Tarreau39713102016-11-25 15:49:32 +01001158 memprintf(err, "%s (unexpected character '%c')", *err, *ptr);
1159 return -1;
1160 }
1161
1162 if (curpx->tcp_req.inspect_delay) {
1163 memprintf(err, "ignoring %s %s (was already defined) in %s '%s'",
1164 args[0], args[1], proxy_type_str(curpx), curpx->id);
1165 return 1;
1166 }
1167 curpx->tcp_req.inspect_delay = val;
1168 return 0;
1169 }
1170
1171 rule = calloc(1, sizeof(*rule));
1172 LIST_INIT(&rule->list);
1173 arg = 1;
1174 where = 0;
1175
1176 if (strcmp(args[1], "content") == 0) {
1177 arg++;
1178
1179 if (curpx->cap & PR_CAP_FE)
1180 where |= SMP_VAL_FE_REQ_CNT;
1181 if (curpx->cap & PR_CAP_BE)
1182 where |= SMP_VAL_BE_REQ_CNT;
Christopher Fauletcb9106b2019-12-19 15:23:17 +01001183 rule->from = ACT_F_TCP_REQ_CNT;
Willy Tarreau39713102016-11-25 15:49:32 +01001184 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where, file, line) < 0)
1185 goto error;
1186
1187 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1188 if (acl) {
1189 if (acl->name && *acl->name)
1190 memprintf(err,
1191 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1192 acl->name, args[0], args[1], sample_ckp_names(where));
1193 else
1194 memprintf(err,
1195 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1196 args[0], args[1],
1197 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
1198 sample_ckp_names(where));
1199
1200 warn++;
1201 }
1202 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1203 if (acl->name && *acl->name)
1204 memprintf(err,
1205 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
1206 acl->name, kw, sample_ckp_names(where));
1207 else
1208 memprintf(err,
1209 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
1210 kw, sample_ckp_names(where));
1211 warn++;
1212 }
1213
1214 /* the following function directly emits the warning */
1215 warnif_misplaced_tcp_cont(curpx, file, line, args[0]);
1216 LIST_ADDQ(&curpx->tcp_req.inspect_rules, &rule->list);
1217 }
1218 else if (strcmp(args[1], "connection") == 0) {
1219 arg++;
1220
1221 if (!(curpx->cap & PR_CAP_FE)) {
1222 memprintf(err, "%s %s is not allowed because %s %s is not a frontend",
1223 args[0], args[1], proxy_type_str(curpx), curpx->id);
1224 goto error;
1225 }
1226
1227 where |= SMP_VAL_FE_CON_ACC;
Christopher Fauletcb9106b2019-12-19 15:23:17 +01001228 rule->from = ACT_F_TCP_REQ_CON;
Willy Tarreau39713102016-11-25 15:49:32 +01001229 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where, file, line) < 0)
1230 goto error;
1231
1232 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1233 if (acl) {
1234 if (acl->name && *acl->name)
1235 memprintf(err,
1236 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1237 acl->name, args[0], args[1], sample_ckp_names(where));
1238 else
1239 memprintf(err,
1240 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1241 args[0], args[1],
1242 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
1243 sample_ckp_names(where));
1244
1245 warn++;
1246 }
1247 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1248 if (acl->name && *acl->name)
1249 memprintf(err,
1250 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
1251 acl->name, kw, sample_ckp_names(where));
1252 else
1253 memprintf(err,
1254 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
1255 kw, sample_ckp_names(where));
1256 warn++;
1257 }
1258
1259 /* the following function directly emits the warning */
1260 warnif_misplaced_tcp_conn(curpx, file, line, args[0]);
1261 LIST_ADDQ(&curpx->tcp_req.l4_rules, &rule->list);
1262 }
1263 else if (strcmp(args[1], "session") == 0) {
1264 arg++;
1265
1266 if (!(curpx->cap & PR_CAP_FE)) {
1267 memprintf(err, "%s %s is not allowed because %s %s is not a frontend",
1268 args[0], args[1], proxy_type_str(curpx), curpx->id);
1269 goto error;
1270 }
1271
1272 where |= SMP_VAL_FE_SES_ACC;
Christopher Fauletcb9106b2019-12-19 15:23:17 +01001273 rule->from = ACT_F_TCP_REQ_SES;
Willy Tarreau39713102016-11-25 15:49:32 +01001274 if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where, file, line) < 0)
1275 goto error;
1276
1277 acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL;
1278 if (acl) {
1279 if (acl->name && *acl->name)
1280 memprintf(err,
1281 "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'",
1282 acl->name, args[0], args[1], sample_ckp_names(where));
1283 else
1284 memprintf(err,
1285 "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'",
1286 args[0], args[1],
1287 LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw,
1288 sample_ckp_names(where));
1289 warn++;
1290 }
1291 else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) {
1292 if (acl->name && *acl->name)
1293 memprintf(err,
1294 "acl '%s' involves keyword '%s' which is incompatible with '%s'",
1295 acl->name, kw, sample_ckp_names(where));
1296 else
1297 memprintf(err,
1298 "anonymous acl involves keyword '%s' which is incompatible with '%s'",
1299 kw, sample_ckp_names(where));
1300 warn++;
1301 }
1302
1303 /* the following function directly emits the warning */
1304 warnif_misplaced_tcp_sess(curpx, file, line, args[0]);
1305 LIST_ADDQ(&curpx->tcp_req.l5_rules, &rule->list);
1306 }
1307 else {
1308 if (curpx == defpx)
1309 memprintf(err,
1310 "'%s' expects 'inspect-delay', 'connection', or 'content' in defaults section (got '%s')",
1311 args[0], args[1]);
1312 else
1313 memprintf(err,
1314 "'%s' expects 'inspect-delay', 'connection', or 'content' in %s '%s' (got '%s')",
1315 args[0], proxy_type_str(curpx), curpx->id, args[1]);
1316 goto error;
1317 }
1318
1319 return warn;
1320 error:
1321 free(rule);
1322 return -1;
1323}
1324
1325static struct cfg_kw_list cfg_kws = {ILH, {
1326 { CFG_LISTEN, "tcp-request", tcp_parse_tcp_req },
1327 { CFG_LISTEN, "tcp-response", tcp_parse_tcp_rep },
1328 { 0, NULL, NULL },
1329}};
1330
Willy Tarreau0108d902018-11-25 19:14:37 +01001331INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreau39713102016-11-25 15:49:32 +01001332
1333/*
1334 * Local variables:
1335 * c-indent-level: 8
1336 * c-basic-offset: 8
1337 * End:
1338 */