Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 1 | /* |
| 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 Tarreau | dcc048a | 2020-06-04 19:11:43 +0200 | [diff] [blame] | 12 | #include <haproxy/acl.h> |
Willy Tarreau | 122eba9 | 2020-06-04 10:15:32 +0200 | [diff] [blame] | 13 | #include <haproxy/action.h> |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 14 | #include <haproxy/api.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 15 | #include <haproxy/arg-t.h> |
Willy Tarreau | 278161c | 2020-06-04 11:18:28 +0200 | [diff] [blame] | 16 | #include <haproxy/capture-t.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 17 | #include <haproxy/cfgparse.h> |
Willy Tarreau | f1d32c4 | 2020-06-04 21:07:02 +0200 | [diff] [blame] | 18 | #include <haproxy/channel.h> |
Willy Tarreau | 7ea393d | 2020-06-04 18:02:10 +0200 | [diff] [blame] | 19 | #include <haproxy/connection.h> |
Willy Tarreau | f268ee8 | 2020-06-04 17:05:57 +0200 | [diff] [blame] | 20 | #include <haproxy/global.h> |
Willy Tarreau | 853b297 | 2020-05-27 18:01:47 +0200 | [diff] [blame] | 21 | #include <haproxy/list.h> |
Willy Tarreau | aeed4a8 | 2020-06-04 22:01:04 +0200 | [diff] [blame] | 22 | #include <haproxy/log.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 23 | #include <haproxy/proxy.h> |
Willy Tarreau | e6ce10b | 2020-06-04 15:33:47 +0200 | [diff] [blame] | 24 | #include <haproxy/sample.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 25 | #include <haproxy/stick_table.h> |
| 26 | #include <haproxy/stream-t.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 27 | #include <haproxy/stream_interface.h> |
Willy Tarreau | 8b550af | 2020-06-04 17:42:48 +0200 | [diff] [blame] | 28 | #include <haproxy/tcp_rules.h> |
Willy Tarreau | c2f7c58 | 2020-06-02 18:15:32 +0200 | [diff] [blame] | 29 | #include <haproxy/ticks.h> |
Willy Tarreau | 92b4f13 | 2020-06-01 11:05:15 +0200 | [diff] [blame] | 30 | #include <haproxy/time.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 31 | #include <haproxy/tools.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 32 | #include <haproxy/trace.h> |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 33 | |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 34 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 35 | #define TRACE_SOURCE &trace_strm |
| 36 | |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 37 | /* List head of all known action keywords for "tcp-request connection" */ |
| 38 | struct list tcp_req_conn_keywords = LIST_HEAD_INIT(tcp_req_conn_keywords); |
| 39 | struct list tcp_req_sess_keywords = LIST_HEAD_INIT(tcp_req_sess_keywords); |
| 40 | struct list tcp_req_cont_keywords = LIST_HEAD_INIT(tcp_req_cont_keywords); |
| 41 | struct list tcp_res_cont_keywords = LIST_HEAD_INIT(tcp_res_cont_keywords); |
| 42 | |
| 43 | /* |
| 44 | * Register keywords. |
| 45 | */ |
| 46 | void tcp_req_conn_keywords_register(struct action_kw_list *kw_list) |
| 47 | { |
| 48 | LIST_ADDQ(&tcp_req_conn_keywords, &kw_list->list); |
| 49 | } |
| 50 | |
| 51 | void tcp_req_sess_keywords_register(struct action_kw_list *kw_list) |
| 52 | { |
| 53 | LIST_ADDQ(&tcp_req_sess_keywords, &kw_list->list); |
| 54 | } |
| 55 | |
| 56 | void tcp_req_cont_keywords_register(struct action_kw_list *kw_list) |
| 57 | { |
| 58 | LIST_ADDQ(&tcp_req_cont_keywords, &kw_list->list); |
| 59 | } |
| 60 | |
| 61 | void 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 Fournier | 7a71a6d | 2020-11-28 17:40:24 +0100 | [diff] [blame] | 69 | struct action_kw *tcp_req_conn_action(const char *kw) |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 70 | { |
| 71 | return action_lookup(&tcp_req_conn_keywords, kw); |
| 72 | } |
| 73 | |
Thierry Fournier | 7a71a6d | 2020-11-28 17:40:24 +0100 | [diff] [blame] | 74 | struct action_kw *tcp_req_sess_action(const char *kw) |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 75 | { |
| 76 | return action_lookup(&tcp_req_sess_keywords, kw); |
| 77 | } |
| 78 | |
Thierry Fournier | 7a71a6d | 2020-11-28 17:40:24 +0100 | [diff] [blame] | 79 | struct action_kw *tcp_req_cont_action(const char *kw) |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 80 | { |
| 81 | return action_lookup(&tcp_req_cont_keywords, kw); |
| 82 | } |
| 83 | |
Thierry Fournier | 7a71a6d | 2020-11-28 17:40:24 +0100 | [diff] [blame] | 84 | struct action_kw *tcp_res_cont_action(const char *kw) |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 85 | { |
| 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 | */ |
| 96 | int 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 Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 100 | int partial; |
Christopher Faulet | 105ba6c | 2019-12-18 14:41:51 +0100 | [diff] [blame] | 101 | int act_opts = 0; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 102 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 103 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s); |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 104 | |
| 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 Tarreau | 2375233 | 2018-06-15 14:54:53 +0200 | [diff] [blame] | 115 | if ((req->flags & CF_SHUTR) || channel_full(req, global.tune.maxrewrite) || |
Christopher Faulet | 2747fbb | 2020-07-28 11:56:13 +0200 | [diff] [blame] | 116 | !s->be->tcp_req.inspect_delay || tick_is_expired(s->rules_exp, now_ms)) |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 117 | 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 Faulet | 105ba6c | 2019-12-18 14:41:51 +0100 | [diff] [blame] | 148 | act_opts |= ACT_OPT_FIRST; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 149 | resume_execution: |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 150 | |
| 151 | /* Always call the action function if defined */ |
| 152 | if (rule->action_ptr) { |
| 153 | if (partial & SMP_OPT_FINAL) |
Christopher Faulet | 105ba6c | 2019-12-18 14:41:51 +0100 | [diff] [blame] | 154 | act_opts |= ACT_OPT_FINAL; |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 155 | |
Christopher Faulet | 105ba6c | 2019-12-18 14:41:51 +0100 | [diff] [blame] | 156 | switch (rule->action_ptr(rule, s->be, s->sess, s, act_opts)) { |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 157 | 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 Faulet | 99aaca9 | 2020-07-28 11:30:19 +0200 | [diff] [blame] | 164 | 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 Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 170 | 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 Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 184 | if (rule->action == ACT_ACTION_ALLOW) { |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 185 | goto end; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 186 | } |
| 187 | else if (rule->action == ACT_ACTION_DENY) { |
Christopher Faulet | 282992e | 2019-12-16 12:34:31 +0100 | [diff] [blame] | 188 | goto deny; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 189 | } |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 190 | } |
| 191 | } |
| 192 | |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 193 | end: |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 194 | /* 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 Faulet | 2747fbb | 2020-07-28 11:56:13 +0200 | [diff] [blame] | 198 | req->analyse_exp = s->rules_exp = TICK_ETERNITY; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 199 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s); |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 200 | 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 Faulet | 2747fbb | 2020-07-28 11:56:13 +0200 | [diff] [blame] | 205 | 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 Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 208 | DBG_TRACE_DEVEL("waiting for more data", STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s); |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 209 | return 0; |
| 210 | |
Christopher Faulet | 282992e | 2019-12-16 12:34:31 +0100 | [diff] [blame] | 211 | 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 Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 244 | } |
| 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 | */ |
| 252 | int 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 Faulet | 105ba6c | 2019-12-18 14:41:51 +0100 | [diff] [blame] | 257 | int act_opts = 0; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 258 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 259 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s); |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 260 | |
| 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 Tarreau | 55ae1ab | 2020-06-15 18:08:07 +0200 | [diff] [blame] | 270 | if ((rep->flags & CF_SHUTR) || channel_full(rep, global.tune.maxrewrite) || |
Christopher Faulet | 2747fbb | 2020-07-28 11:56:13 +0200 | [diff] [blame] | 271 | !s->be->tcp_rep.inspect_delay || tick_is_expired(s->rules_exp, now_ms)) |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 272 | 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 Faulet | 2747fbb | 2020-07-28 11:56:13 +0200 | [diff] [blame] | 288 | s->rules_exp = TICK_ETERNITY; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 289 | |
| 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 Faulet | 2747fbb | 2020-07-28 11:56:13 +0200 | [diff] [blame] | 295 | if (ret == ACL_TEST_MISS) |
| 296 | goto missing_data; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 297 | |
| 298 | ret = acl_pass(ret); |
| 299 | if (rule->cond->pol == ACL_COND_UNLESS) |
| 300 | ret = !ret; |
| 301 | } |
| 302 | |
| 303 | if (ret) { |
Christopher Faulet | 105ba6c | 2019-12-18 14:41:51 +0100 | [diff] [blame] | 304 | act_opts |= ACT_OPT_FIRST; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 305 | resume_execution: |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 306 | /* Always call the action function if defined */ |
| 307 | if (rule->action_ptr) { |
| 308 | if (partial & SMP_OPT_FINAL) |
Christopher Faulet | 105ba6c | 2019-12-18 14:41:51 +0100 | [diff] [blame] | 309 | act_opts |= ACT_OPT_FINAL; |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 310 | |
Christopher Faulet | 105ba6c | 2019-12-18 14:41:51 +0100 | [diff] [blame] | 311 | switch (rule->action_ptr(rule, s->be, s->sess, s, act_opts)) { |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 312 | 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 Faulet | 99aaca9 | 2020-07-28 11:30:19 +0200 | [diff] [blame] | 319 | 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 Faulet | 2747fbb | 2020-07-28 11:56:13 +0200 | [diff] [blame] | 325 | channel_dont_close(rep); |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 326 | 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 Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 340 | if (rule->action == ACT_ACTION_ALLOW) { |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 341 | goto end; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 342 | } |
| 343 | else if (rule->action == ACT_ACTION_DENY) { |
Christopher Faulet | 282992e | 2019-12-16 12:34:31 +0100 | [diff] [blame] | 344 | goto deny; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 345 | } |
| 346 | else if (rule->action == ACT_TCP_CLOSE) { |
| 347 | chn_prod(rep)->flags |= SI_FL_NOLINGER | SI_FL_NOHALF; |
Willy Tarreau | 0f9cd7b | 2019-01-31 19:02:43 +0100 | [diff] [blame] | 348 | si_must_kill_conn(chn_prod(rep)); |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 349 | si_shutr(chn_prod(rep)); |
| 350 | si_shutw(chn_prod(rep)); |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 351 | goto end; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 352 | } |
| 353 | } |
| 354 | } |
| 355 | |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 356 | end: |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 357 | /* 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 Faulet | 2747fbb | 2020-07-28 11:56:13 +0200 | [diff] [blame] | 361 | rep->analyse_exp = s->rules_exp = TICK_ETERNITY; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 362 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s); |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 363 | return 1; |
Christopher Faulet | 282992e | 2019-12-16 12:34:31 +0100 | [diff] [blame] | 364 | |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 365 | missing_data: |
Christopher Faulet | 54f3e18 | 2020-07-29 12:00:23 +0200 | [diff] [blame] | 366 | /* just set the analyser timeout once at the beginning of the response */ |
Christopher Faulet | 2747fbb | 2020-07-28 11:56:13 +0200 | [diff] [blame] | 367 | 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 Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 370 | DBG_TRACE_DEVEL("waiting for more data", STRM_EV_STRM_ANA|STRM_EV_TCP_ANA, s); |
| 371 | return 0; |
| 372 | |
Christopher Faulet | 282992e | 2019-12-16 12:34:31 +0100 | [diff] [blame] | 373 | deny: |
Christopher Faulet | cff0f73 | 2019-12-16 16:13:44 +0100 | [diff] [blame] | 374 | _HA_ATOMIC_ADD(&s->sess->fe->fe_counters.denied_resp, 1); |
Christopher Faulet | 282992e | 2019-12-16 12:34:31 +0100 | [diff] [blame] | 375 | _HA_ATOMIC_ADD(&s->be->be_counters.denied_resp, 1); |
Christopher Faulet | cff0f73 | 2019-12-16 16:13:44 +0100 | [diff] [blame] | 376 | if (s->sess->listener->counters) |
| 377 | _HA_ATOMIC_ADD(&s->sess->listener->counters->denied_resp, 1); |
Christopher Faulet | 282992e | 2019-12-16 12:34:31 +0100 | [diff] [blame] | 378 | if (objt_server(s->target)) |
| 379 | _HA_ATOMIC_ADD(&__objt_server(s->target)->counters.denied_resp, 1); |
| 380 | goto reject; |
| 381 | |
| 382 | internal: |
Christopher Faulet | cff0f73 | 2019-12-16 16:13:44 +0100 | [diff] [blame] | 383 | _HA_ATOMIC_ADD(&s->sess->fe->fe_counters.internal_errors, 1); |
Christopher Faulet | 282992e | 2019-12-16 12:34:31 +0100 | [diff] [blame] | 384 | _HA_ATOMIC_ADD(&s->be->be_counters.internal_errors, 1); |
Christopher Faulet | cff0f73 | 2019-12-16 16:13:44 +0100 | [diff] [blame] | 385 | if (s->sess->listener->counters) |
| 386 | _HA_ATOMIC_ADD(&s->sess->listener->counters->internal_errors, 1); |
Christopher Faulet | 282992e | 2019-12-16 12:34:31 +0100 | [diff] [blame] | 387 | 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 Faulet | 19dbf2d | 2020-07-28 11:40:07 +0200 | [diff] [blame] | 404 | rep->analysers &= AN_RES_FLT_END; |
Christopher Faulet | 282992e | 2019-12-16 12:34:31 +0100 | [diff] [blame] | 405 | |
| 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 Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 412 | } |
| 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 | */ |
| 420 | int tcp_exec_l4_rules(struct session *sess) |
| 421 | { |
| 422 | struct act_rule *rule; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 423 | 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 Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 441 | /* Always call the action function if defined */ |
| 442 | if (rule->action_ptr) { |
Christopher Faulet | 105ba6c | 2019-12-18 14:41:51 +0100 | [diff] [blame] | 443 | switch (rule->action_ptr(rule, sess->fe, sess, NULL, ACT_OPT_FINAL | ACT_OPT_FIRST)) { |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 444 | 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 Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 467 | if (rule->action == ACT_ACTION_ALLOW) { |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 468 | goto end; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 469 | } |
| 470 | else if (rule->action == ACT_ACTION_DENY) { |
Olivier Houchard | 64dbb2d | 2019-03-08 18:55:10 +0100 | [diff] [blame] | 471 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_conn, 1); |
Willy Tarreau | a12dde0 | 2016-12-22 18:14:41 +0100 | [diff] [blame] | 472 | if (sess->listener && sess->listener->counters) |
Olivier Houchard | 64dbb2d | 2019-03-08 18:55:10 +0100 | [diff] [blame] | 473 | _HA_ATOMIC_ADD(&sess->listener->counters->denied_conn, 1); |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 474 | |
| 475 | result = 0; |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 476 | goto end; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 477 | } |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 478 | else if (rule->action == ACT_TCP_EXPECT_PX) { |
Willy Tarreau | 4450b58 | 2020-01-23 15:23:13 +0100 | [diff] [blame] | 479 | if (!(conn->flags & CO_FL_HANDSHAKE)) { |
Olivier Houchard | fe50bfb | 2019-05-27 12:09:19 +0200 | [diff] [blame] | 480 | if (xprt_add_hs(conn) < 0) { |
| 481 | result = 0; |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 482 | goto end; |
Olivier Houchard | fe50bfb | 2019-05-27 12:09:19 +0200 | [diff] [blame] | 483 | } |
| 484 | } |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 485 | conn->flags |= CO_FL_ACCEPT_PROXY; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 486 | } |
| 487 | else if (rule->action == ACT_TCP_EXPECT_CIP) { |
Willy Tarreau | 4450b58 | 2020-01-23 15:23:13 +0100 | [diff] [blame] | 488 | if (!(conn->flags & CO_FL_HANDSHAKE)) { |
Olivier Houchard | fe50bfb | 2019-05-27 12:09:19 +0200 | [diff] [blame] | 489 | if (xprt_add_hs(conn) < 0) { |
| 490 | result = 0; |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 491 | goto end; |
Olivier Houchard | fe50bfb | 2019-05-27 12:09:19 +0200 | [diff] [blame] | 492 | } |
| 493 | } |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 494 | conn->flags |= CO_FL_ACCEPT_CIP; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 495 | } |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 496 | } |
| 497 | } |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 498 | end: |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 499 | 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 | */ |
| 509 | int tcp_exec_l5_rules(struct session *sess) |
| 510 | { |
| 511 | struct act_rule *rule; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 512 | 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 Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 526 | /* Always call the action function if defined */ |
| 527 | if (rule->action_ptr) { |
Christopher Faulet | 105ba6c | 2019-12-18 14:41:51 +0100 | [diff] [blame] | 528 | switch (rule->action_ptr(rule, sess->fe, sess, NULL, ACT_OPT_FINAL | ACT_OPT_FIRST)) { |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 529 | 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 Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 552 | if (rule->action == ACT_ACTION_ALLOW) { |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 553 | goto end; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 554 | } |
| 555 | else if (rule->action == ACT_ACTION_DENY) { |
Olivier Houchard | 64dbb2d | 2019-03-08 18:55:10 +0100 | [diff] [blame] | 556 | _HA_ATOMIC_ADD(&sess->fe->fe_counters.denied_sess, 1); |
Willy Tarreau | a12dde0 | 2016-12-22 18:14:41 +0100 | [diff] [blame] | 557 | if (sess->listener && sess->listener->counters) |
Olivier Houchard | 64dbb2d | 2019-03-08 18:55:10 +0100 | [diff] [blame] | 558 | _HA_ATOMIC_ADD(&sess->listener->counters->denied_sess, 1); |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 559 | |
| 560 | result = 0; |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 561 | goto end; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 562 | } |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 563 | } |
| 564 | } |
Christopher Faulet | cd26e8a | 2019-12-18 11:13:39 +0100 | [diff] [blame] | 565 | end: |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 566 | return result; |
| 567 | } |
| 568 | |
| 569 | /* Parse a tcp-response rule. Return a negative value in case of failure */ |
| 570 | static int tcp_parse_response_rule(char **args, int arg, int section_type, |
| 571 | struct proxy *curpx, struct proxy *defpx, |
| 572 | 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 Faulet | 245cf79 | 2019-12-18 14:58:12 +0100 | [diff] [blame] | 585 | rule->flags |= ACT_FLAG_FINAL; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 586 | } |
| 587 | else if (strcmp(args[arg], "reject") == 0) { |
| 588 | arg++; |
| 589 | rule->action = ACT_ACTION_DENY; |
Christopher Faulet | 245cf79 | 2019-12-18 14:58:12 +0100 | [diff] [blame] | 590 | rule->flags |= ACT_FLAG_FINAL; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 591 | } |
| 592 | else if (strcmp(args[arg], "close") == 0) { |
| 593 | arg++; |
| 594 | rule->action = ACT_TCP_CLOSE; |
Christopher Faulet | 245cf79 | 2019-12-18 14:58:12 +0100 | [diff] [blame] | 595 | rule->flags |= ACT_FLAG_FINAL; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 596 | } |
| 597 | else { |
| 598 | struct action_kw *kw; |
| 599 | kw = tcp_res_cont_action(args[arg]); |
| 600 | if (kw) { |
| 601 | arg++; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 602 | rule->kw = kw; |
| 603 | if (kw->parse((const char **)args, &arg, curpx, rule, err) == ACT_RET_PRS_ERR) |
| 604 | return -1; |
| 605 | } else { |
| 606 | action_build_list(&tcp_res_cont_keywords, &trash); |
| 607 | memprintf(err, |
| 608 | "'%s %s' expects 'accept', 'close', 'reject', %s in %s '%s' (got '%s')", |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 609 | args[0], args[1], trash.area, |
| 610 | proxy_type_str(curpx), curpx->id, args[arg]); |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 611 | return -1; |
| 612 | } |
| 613 | } |
| 614 | |
| 615 | if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) { |
Christopher Faulet | 1b421ea | 2017-09-22 14:38:56 +0200 | [diff] [blame] | 616 | if ((rule->cond = build_acl_cond(file, line, &curpx->acl, curpx, (const char **)args+arg, err)) == NULL) { |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 617 | memprintf(err, |
| 618 | "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s", |
| 619 | args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err); |
| 620 | return -1; |
| 621 | } |
| 622 | } |
| 623 | else if (*args[arg]) { |
| 624 | memprintf(err, |
| 625 | "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')", |
| 626 | args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]); |
| 627 | return -1; |
| 628 | } |
| 629 | return 0; |
| 630 | } |
| 631 | |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 632 | |
| 633 | /* This function executes a track-sc* actions. On success, it returns |
| 634 | * ACT_RET_CONT. If it must yield, it return ACT_RET_YIELD. Otherwsize |
| 635 | * ACT_RET_ERR is returned. |
| 636 | */ |
| 637 | static enum act_return tcp_action_track_sc(struct act_rule *rule, struct proxy *px, |
| 638 | struct session *sess, struct stream *s, int flags) |
| 639 | { |
| 640 | struct stksess *ts; |
| 641 | struct stktable *t; |
| 642 | struct stktable_key *key; |
| 643 | struct sample smp; |
| 644 | int opt; |
| 645 | |
Christopher Faulet | 6730779 | 2020-02-10 09:54:49 +0100 | [diff] [blame] | 646 | opt = SMP_OPT_DIR_REQ; |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 647 | if (flags & ACT_FLAG_FINAL) |
| 648 | opt |= SMP_OPT_FINAL; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 649 | |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 650 | t = rule->arg.trk_ctr.table.t; |
Christopher Faulet | 6730779 | 2020-02-10 09:54:49 +0100 | [diff] [blame] | 651 | if (rule->from == ACT_F_TCP_REQ_CNT) { /* L7 rules: use the stream */ |
| 652 | if (stkctr_entry(&s->stkctr[rule->action])) |
| 653 | goto end; |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 654 | |
Christopher Faulet | 6730779 | 2020-02-10 09:54:49 +0100 | [diff] [blame] | 655 | key = stktable_fetch_key(t, s->be, sess, s, opt, rule->arg.trk_ctr.expr, &smp); |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 656 | |
Christopher Faulet | 6730779 | 2020-02-10 09:54:49 +0100 | [diff] [blame] | 657 | if ((smp.flags & SMP_F_MAY_CHANGE) && !(flags & ACT_FLAG_FINAL)) |
| 658 | return ACT_RET_YIELD; /* key might appear later */ |
| 659 | |
| 660 | if (key && (ts = stktable_get_entry(t, key))) { |
| 661 | stream_track_stkctr(&s->stkctr[rule->action], t, ts); |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 662 | stkctr_set_flags(&s->stkctr[rule->action], STKCTR_TRACK_CONTENT); |
| 663 | if (sess->fe != s->be) |
| 664 | stkctr_set_flags(&s->stkctr[rule->action], STKCTR_TRACK_BACKEND); |
| 665 | } |
| 666 | } |
Christopher Faulet | 6730779 | 2020-02-10 09:54:49 +0100 | [diff] [blame] | 667 | else { /* L4/L5 rules: use the session */ |
| 668 | if (stkctr_entry(&sess->stkctr[rule->action])) |
| 669 | goto end; |
| 670 | |
| 671 | key = stktable_fetch_key(t, sess->fe, sess, NULL, opt, rule->arg.trk_ctr.expr, NULL); |
| 672 | if (key && (ts = stktable_get_entry(t, key))) |
| 673 | stream_track_stkctr(&sess->stkctr[rule->action], t, ts); |
| 674 | } |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 675 | |
| 676 | end: |
| 677 | return ACT_RET_CONT; |
| 678 | } |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 679 | |
Christopher Faulet | d73b96d | 2019-12-19 17:27:03 +0100 | [diff] [blame] | 680 | /* This function executes a capture actions. It executes a fetch expression, |
| 681 | * turns the result into a string and puts it in a capture slot. On success, it |
| 682 | * returns ACT_RET_CONT. If it must yield, it return ACT_RET_YIELD. Otherwsize |
| 683 | * ACT_RET_ERR is returned. |
| 684 | */ |
| 685 | static enum act_return tcp_action_capture(struct act_rule *rule, struct proxy *px, |
| 686 | struct session *sess, struct stream *s, int flags) |
| 687 | { |
| 688 | struct sample *key; |
| 689 | struct cap_hdr *h = rule->arg.cap.hdr; |
| 690 | char **cap = s->req_cap; |
| 691 | int len, opt; |
| 692 | |
| 693 | opt = ((rule->from == ACT_F_TCP_REQ_CNT) ? SMP_OPT_DIR_REQ : SMP_OPT_DIR_RES); |
| 694 | if (flags & ACT_FLAG_FINAL) |
| 695 | opt |= SMP_OPT_FINAL; |
| 696 | |
| 697 | key = sample_fetch_as_type(s->be, sess, s, opt, rule->arg.cap.expr, SMP_T_STR); |
| 698 | if (!key) |
| 699 | goto end; |
| 700 | |
| 701 | if ((key->flags & SMP_F_MAY_CHANGE) && !(flags & ACT_FLAG_FINAL)) |
| 702 | return ACT_RET_YIELD; /* key might appear later */ |
| 703 | |
| 704 | if (cap[h->index] == NULL) { |
| 705 | cap[h->index] = pool_alloc(h->pool); |
| 706 | if (cap[h->index] == NULL) /* no more capture memory, ignore error */ |
| 707 | goto end; |
| 708 | } |
| 709 | |
| 710 | len = key->data.u.str.data; |
| 711 | if (len > h->len) |
| 712 | len = h->len; |
| 713 | |
| 714 | memcpy(cap[h->index], key->data.u.str.area, len); |
| 715 | cap[h->index][len] = 0; |
| 716 | |
| 717 | end: |
| 718 | return ACT_RET_CONT; |
| 719 | } |
| 720 | |
Christopher Faulet | adfc6e8 | 2020-01-14 15:05:33 +0100 | [diff] [blame] | 721 | static void release_tcp_capture(struct act_rule * rule) |
| 722 | { |
| 723 | release_sample_expr(rule->arg.cap.expr); |
| 724 | } |
| 725 | |
| 726 | |
| 727 | static void release_tcp_track_sc(struct act_rule * rule) |
| 728 | { |
| 729 | release_sample_expr(rule->arg.trk_ctr.expr); |
| 730 | } |
| 731 | |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 732 | /* Parse a tcp-request rule. Return a negative value in case of failure */ |
| 733 | static int tcp_parse_request_rule(char **args, int arg, int section_type, |
| 734 | struct proxy *curpx, struct proxy *defpx, |
| 735 | struct act_rule *rule, char **err, |
| 736 | unsigned int where, const char *file, int line) |
| 737 | { |
| 738 | if (curpx == defpx) { |
| 739 | memprintf(err, "%s %s is not allowed in 'defaults' sections", |
| 740 | args[0], args[1]); |
| 741 | return -1; |
| 742 | } |
| 743 | |
| 744 | if (!strcmp(args[arg], "accept")) { |
| 745 | arg++; |
| 746 | rule->action = ACT_ACTION_ALLOW; |
Christopher Faulet | 245cf79 | 2019-12-18 14:58:12 +0100 | [diff] [blame] | 747 | rule->flags |= ACT_FLAG_FINAL; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 748 | } |
| 749 | else if (!strcmp(args[arg], "reject")) { |
| 750 | arg++; |
| 751 | rule->action = ACT_ACTION_DENY; |
Christopher Faulet | 245cf79 | 2019-12-18 14:58:12 +0100 | [diff] [blame] | 752 | rule->flags |= ACT_FLAG_FINAL; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 753 | } |
| 754 | else if (strcmp(args[arg], "capture") == 0) { |
| 755 | struct sample_expr *expr; |
| 756 | struct cap_hdr *hdr; |
| 757 | int kw = arg; |
| 758 | int len = 0; |
| 759 | |
| 760 | if (!(curpx->cap & PR_CAP_FE)) { |
| 761 | memprintf(err, |
| 762 | "'%s %s %s' : proxy '%s' has no frontend capability", |
| 763 | args[0], args[1], args[kw], curpx->id); |
| 764 | return -1; |
| 765 | } |
| 766 | |
| 767 | if (!(where & SMP_VAL_FE_REQ_CNT)) { |
| 768 | memprintf(err, |
| 769 | "'%s %s' is not allowed in '%s %s' rules in %s '%s'", |
| 770 | args[arg], args[arg+1], args[0], args[1], proxy_type_str(curpx), curpx->id); |
| 771 | return -1; |
| 772 | } |
| 773 | |
| 774 | arg++; |
| 775 | |
| 776 | curpx->conf.args.ctx = ARGC_CAP; |
Willy Tarreau | e3b57bf | 2020-02-14 16:50:14 +0100 | [diff] [blame] | 777 | expr = sample_parse_expr(args, &arg, file, line, err, &curpx->conf.args, NULL); |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 778 | if (!expr) { |
| 779 | memprintf(err, |
| 780 | "'%s %s %s' : %s", |
| 781 | args[0], args[1], args[kw], *err); |
| 782 | return -1; |
| 783 | } |
| 784 | |
| 785 | if (!(expr->fetch->val & where)) { |
| 786 | memprintf(err, |
| 787 | "'%s %s %s' : fetch method '%s' extracts information from '%s', none of which is available here", |
| 788 | args[0], args[1], args[kw], args[arg-1], sample_src_names(expr->fetch->use)); |
Christopher Faulet | fdb6fbf | 2020-01-14 15:05:56 +0100 | [diff] [blame] | 789 | release_sample_expr(expr); |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 790 | return -1; |
| 791 | } |
| 792 | |
| 793 | if (strcmp(args[arg], "len") == 0) { |
| 794 | arg++; |
| 795 | if (!args[arg]) { |
| 796 | memprintf(err, |
| 797 | "'%s %s %s' : missing length value", |
| 798 | args[0], args[1], args[kw]); |
Christopher Faulet | fdb6fbf | 2020-01-14 15:05:56 +0100 | [diff] [blame] | 799 | release_sample_expr(expr); |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 800 | return -1; |
| 801 | } |
| 802 | /* we copy the table name for now, it will be resolved later */ |
| 803 | len = atoi(args[arg]); |
| 804 | if (len <= 0) { |
| 805 | memprintf(err, |
| 806 | "'%s %s %s' : length must be > 0", |
| 807 | args[0], args[1], args[kw]); |
Christopher Faulet | fdb6fbf | 2020-01-14 15:05:56 +0100 | [diff] [blame] | 808 | release_sample_expr(expr); |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 809 | return -1; |
| 810 | } |
| 811 | arg++; |
| 812 | } |
| 813 | |
| 814 | if (!len) { |
| 815 | memprintf(err, |
| 816 | "'%s %s %s' : a positive 'len' argument is mandatory", |
| 817 | args[0], args[1], args[kw]); |
| 818 | free(expr); |
| 819 | return -1; |
| 820 | } |
| 821 | |
| 822 | hdr = calloc(1, sizeof(*hdr)); |
| 823 | hdr->next = curpx->req_cap; |
| 824 | hdr->name = NULL; /* not a header capture */ |
| 825 | hdr->namelen = 0; |
| 826 | hdr->len = len; |
| 827 | hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED); |
| 828 | hdr->index = curpx->nb_req_cap++; |
| 829 | |
| 830 | curpx->req_cap = hdr; |
| 831 | curpx->to_log |= LW_REQHDR; |
| 832 | |
Christopher Faulet | 711ed6a | 2019-07-16 14:16:10 +0200 | [diff] [blame] | 833 | /* check if we need to allocate an http_txn struct for HTTP parsing */ |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 834 | curpx->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY); |
| 835 | |
| 836 | rule->arg.cap.expr = expr; |
| 837 | rule->arg.cap.hdr = hdr; |
Christopher Faulet | d73b96d | 2019-12-19 17:27:03 +0100 | [diff] [blame] | 838 | rule->action = ACT_CUSTOM; |
| 839 | rule->action_ptr = tcp_action_capture; |
| 840 | rule->check_ptr = check_capture; |
Christopher Faulet | adfc6e8 | 2020-01-14 15:05:33 +0100 | [diff] [blame] | 841 | rule->release_ptr = release_tcp_capture; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 842 | } |
Frédéric Lécaille | a41d531 | 2018-01-29 12:05:07 +0100 | [diff] [blame] | 843 | else if (strncmp(args[arg], "track-sc", 8) == 0) { |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 844 | struct sample_expr *expr; |
| 845 | int kw = arg; |
Frédéric Lécaille | a41d531 | 2018-01-29 12:05:07 +0100 | [diff] [blame] | 846 | unsigned int tsc_num; |
| 847 | const char *tsc_num_str; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 848 | |
| 849 | arg++; |
| 850 | |
Frédéric Lécaille | a41d531 | 2018-01-29 12:05:07 +0100 | [diff] [blame] | 851 | tsc_num_str = &args[kw][8]; |
| 852 | if (cfg_parse_track_sc_num(&tsc_num, tsc_num_str, tsc_num_str + strlen(tsc_num_str), err) == -1) { |
| 853 | memprintf(err, "'%s %s %s' : %s", args[0], args[1], args[kw], *err); |
| 854 | return -1; |
| 855 | } |
| 856 | |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 857 | curpx->conf.args.ctx = ARGC_TRK; |
Willy Tarreau | e3b57bf | 2020-02-14 16:50:14 +0100 | [diff] [blame] | 858 | expr = sample_parse_expr(args, &arg, file, line, err, &curpx->conf.args, NULL); |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 859 | if (!expr) { |
| 860 | memprintf(err, |
| 861 | "'%s %s %s' : %s", |
| 862 | args[0], args[1], args[kw], *err); |
| 863 | return -1; |
| 864 | } |
| 865 | |
| 866 | if (!(expr->fetch->val & where)) { |
| 867 | memprintf(err, |
| 868 | "'%s %s %s' : fetch method '%s' extracts information from '%s', none of which is available here", |
| 869 | args[0], args[1], args[kw], args[arg-1], sample_src_names(expr->fetch->use)); |
Christopher Faulet | fdb6fbf | 2020-01-14 15:05:56 +0100 | [diff] [blame] | 870 | release_sample_expr(expr); |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 871 | return -1; |
| 872 | } |
| 873 | |
Christopher Faulet | 711ed6a | 2019-07-16 14:16:10 +0200 | [diff] [blame] | 874 | /* check if we need to allocate an http_txn struct for HTTP parsing */ |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 875 | curpx->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY); |
| 876 | |
| 877 | if (strcmp(args[arg], "table") == 0) { |
| 878 | arg++; |
| 879 | if (!args[arg]) { |
| 880 | memprintf(err, |
| 881 | "'%s %s %s' : missing table name", |
| 882 | args[0], args[1], args[kw]); |
Christopher Faulet | fdb6fbf | 2020-01-14 15:05:56 +0100 | [diff] [blame] | 883 | release_sample_expr(expr); |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 884 | return -1; |
| 885 | } |
| 886 | /* we copy the table name for now, it will be resolved later */ |
| 887 | rule->arg.trk_ctr.table.n = strdup(args[arg]); |
| 888 | arg++; |
| 889 | } |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 890 | rule->action = tsc_num; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 891 | rule->arg.trk_ctr.expr = expr; |
Christopher Faulet | ac98d81 | 2019-12-18 09:20:16 +0100 | [diff] [blame] | 892 | rule->action_ptr = tcp_action_track_sc; |
Christopher Faulet | 78880fb | 2017-09-18 14:43:55 +0200 | [diff] [blame] | 893 | rule->check_ptr = check_trk_action; |
Christopher Faulet | adfc6e8 | 2020-01-14 15:05:33 +0100 | [diff] [blame] | 894 | rule->release_ptr = release_tcp_track_sc; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 895 | } |
| 896 | else if (strcmp(args[arg], "expect-proxy") == 0) { |
| 897 | if (strcmp(args[arg+1], "layer4") != 0) { |
| 898 | memprintf(err, |
| 899 | "'%s %s %s' only supports 'layer4' in %s '%s' (got '%s')", |
| 900 | args[0], args[1], args[arg], proxy_type_str(curpx), curpx->id, args[arg+1]); |
| 901 | return -1; |
| 902 | } |
| 903 | |
| 904 | if (!(where & SMP_VAL_FE_CON_ACC)) { |
| 905 | memprintf(err, |
| 906 | "'%s %s' is not allowed in '%s %s' rules in %s '%s'", |
| 907 | args[arg], args[arg+1], args[0], args[1], proxy_type_str(curpx), curpx->id); |
| 908 | return -1; |
| 909 | } |
| 910 | |
| 911 | arg += 2; |
| 912 | rule->action = ACT_TCP_EXPECT_PX; |
| 913 | } |
| 914 | else if (strcmp(args[arg], "expect-netscaler-cip") == 0) { |
| 915 | if (strcmp(args[arg+1], "layer4") != 0) { |
| 916 | memprintf(err, |
| 917 | "'%s %s %s' only supports 'layer4' in %s '%s' (got '%s')", |
| 918 | args[0], args[1], args[arg], proxy_type_str(curpx), curpx->id, args[arg+1]); |
| 919 | return -1; |
| 920 | } |
| 921 | |
| 922 | if (!(where & SMP_VAL_FE_CON_ACC)) { |
| 923 | memprintf(err, |
| 924 | "'%s %s' is not allowed in '%s %s' rules in %s '%s'", |
| 925 | args[arg], args[arg+1], args[0], args[1], proxy_type_str(curpx), curpx->id); |
| 926 | return -1; |
| 927 | } |
| 928 | |
| 929 | arg += 2; |
| 930 | rule->action = ACT_TCP_EXPECT_CIP; |
| 931 | } |
| 932 | else { |
| 933 | struct action_kw *kw; |
| 934 | if (where & SMP_VAL_FE_CON_ACC) { |
| 935 | /* L4 */ |
| 936 | kw = tcp_req_conn_action(args[arg]); |
| 937 | rule->kw = kw; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 938 | } else if (where & SMP_VAL_FE_SES_ACC) { |
| 939 | /* L5 */ |
| 940 | kw = tcp_req_sess_action(args[arg]); |
| 941 | rule->kw = kw; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 942 | } else { |
| 943 | /* L6 */ |
| 944 | kw = tcp_req_cont_action(args[arg]); |
| 945 | rule->kw = kw; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 946 | } |
| 947 | if (kw) { |
| 948 | arg++; |
| 949 | if (kw->parse((const char **)args, &arg, curpx, rule, err) == ACT_RET_PRS_ERR) |
| 950 | return -1; |
| 951 | } else { |
| 952 | if (where & SMP_VAL_FE_CON_ACC) |
| 953 | action_build_list(&tcp_req_conn_keywords, &trash); |
| 954 | else if (where & SMP_VAL_FE_SES_ACC) |
| 955 | action_build_list(&tcp_req_sess_keywords, &trash); |
| 956 | else |
| 957 | action_build_list(&tcp_req_cont_keywords, &trash); |
| 958 | memprintf(err, |
| 959 | "'%s %s' expects 'accept', 'reject', 'track-sc0' ... 'track-sc%d', %s " |
| 960 | "in %s '%s' (got '%s').\n", |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 961 | args[0], args[1], MAX_SESS_STKCTR-1, |
| 962 | trash.area, proxy_type_str(curpx), |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 963 | curpx->id, args[arg]); |
| 964 | return -1; |
| 965 | } |
| 966 | } |
| 967 | |
| 968 | if (strcmp(args[arg], "if") == 0 || strcmp(args[arg], "unless") == 0) { |
Christopher Faulet | 1b421ea | 2017-09-22 14:38:56 +0200 | [diff] [blame] | 969 | if ((rule->cond = build_acl_cond(file, line, &curpx->acl, curpx, (const char **)args+arg, err)) == NULL) { |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 970 | memprintf(err, |
| 971 | "'%s %s %s' : error detected in %s '%s' while parsing '%s' condition : %s", |
| 972 | args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg], *err); |
| 973 | return -1; |
| 974 | } |
| 975 | } |
| 976 | else if (*args[arg]) { |
| 977 | memprintf(err, |
| 978 | "'%s %s %s' only accepts 'if' or 'unless', in %s '%s' (got '%s')", |
| 979 | args[0], args[1], args[2], proxy_type_str(curpx), curpx->id, args[arg]); |
| 980 | return -1; |
| 981 | } |
| 982 | return 0; |
| 983 | } |
| 984 | |
| 985 | /* This function should be called to parse a line starting with the "tcp-response" |
| 986 | * keyword. |
| 987 | */ |
| 988 | static int tcp_parse_tcp_rep(char **args, int section_type, struct proxy *curpx, |
| 989 | struct proxy *defpx, const char *file, int line, |
| 990 | char **err) |
| 991 | { |
| 992 | const char *ptr = NULL; |
| 993 | unsigned int val; |
| 994 | int warn = 0; |
| 995 | int arg; |
| 996 | struct act_rule *rule; |
| 997 | unsigned int where; |
| 998 | const struct acl *acl; |
| 999 | const char *kw; |
| 1000 | |
| 1001 | if (!*args[1]) { |
| 1002 | memprintf(err, "missing argument for '%s' in %s '%s'", |
| 1003 | args[0], proxy_type_str(curpx), curpx->id); |
| 1004 | return -1; |
| 1005 | } |
| 1006 | |
| 1007 | if (strcmp(args[1], "inspect-delay") == 0) { |
| 1008 | if (curpx == defpx || !(curpx->cap & PR_CAP_BE)) { |
| 1009 | memprintf(err, "%s %s is only allowed in 'backend' sections", |
| 1010 | args[0], args[1]); |
| 1011 | return -1; |
| 1012 | } |
| 1013 | |
| 1014 | if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) { |
| 1015 | memprintf(err, |
| 1016 | "'%s %s' expects a positive delay in milliseconds, in %s '%s'", |
| 1017 | args[0], args[1], proxy_type_str(curpx), curpx->id); |
Willy Tarreau | 9faebe3 | 2019-06-07 19:00:37 +0200 | [diff] [blame] | 1018 | |
| 1019 | if (ptr == PARSE_TIME_OVER) |
| 1020 | memprintf(err, "%s (timer overflow in '%s', maximum value is 2147483647 ms or ~24.8 days)", *err, args[2]); |
| 1021 | else if (ptr == PARSE_TIME_UNDER) |
| 1022 | memprintf(err, "%s (timer underflow in '%s', minimum non-null value is 1 ms)", *err, args[2]); |
| 1023 | else if (ptr) |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 1024 | memprintf(err, "%s (unexpected character '%c')", *err, *ptr); |
| 1025 | return -1; |
| 1026 | } |
| 1027 | |
| 1028 | if (curpx->tcp_rep.inspect_delay) { |
| 1029 | memprintf(err, "ignoring %s %s (was already defined) in %s '%s'", |
| 1030 | args[0], args[1], proxy_type_str(curpx), curpx->id); |
| 1031 | return 1; |
| 1032 | } |
| 1033 | curpx->tcp_rep.inspect_delay = val; |
| 1034 | return 0; |
| 1035 | } |
| 1036 | |
| 1037 | rule = calloc(1, sizeof(*rule)); |
| 1038 | LIST_INIT(&rule->list); |
| 1039 | arg = 1; |
| 1040 | where = 0; |
| 1041 | |
| 1042 | if (strcmp(args[1], "content") == 0) { |
| 1043 | arg++; |
| 1044 | |
| 1045 | if (curpx->cap & PR_CAP_FE) |
| 1046 | where |= SMP_VAL_FE_RES_CNT; |
| 1047 | if (curpx->cap & PR_CAP_BE) |
| 1048 | where |= SMP_VAL_BE_RES_CNT; |
Christopher Faulet | cb9106b | 2019-12-19 15:23:17 +0100 | [diff] [blame] | 1049 | rule->from = ACT_F_TCP_RES_CNT; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 1050 | if (tcp_parse_response_rule(args, arg, section_type, curpx, defpx, rule, err, where, file, line) < 0) |
| 1051 | goto error; |
| 1052 | |
| 1053 | acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL; |
| 1054 | if (acl) { |
| 1055 | if (acl->name && *acl->name) |
| 1056 | memprintf(err, |
| 1057 | "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'", |
| 1058 | acl->name, args[0], args[1], sample_ckp_names(where)); |
| 1059 | else |
| 1060 | memprintf(err, |
| 1061 | "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'", |
| 1062 | args[0], args[1], |
| 1063 | LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, |
| 1064 | sample_ckp_names(where)); |
| 1065 | |
| 1066 | warn++; |
| 1067 | } |
| 1068 | else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) { |
| 1069 | if (acl->name && *acl->name) |
| 1070 | memprintf(err, |
| 1071 | "acl '%s' involves keyword '%s' which is incompatible with '%s'", |
| 1072 | acl->name, kw, sample_ckp_names(where)); |
| 1073 | else |
| 1074 | memprintf(err, |
| 1075 | "anonymous acl involves keyword '%s' which is incompatible with '%s'", |
| 1076 | kw, sample_ckp_names(where)); |
| 1077 | warn++; |
| 1078 | } |
| 1079 | |
| 1080 | LIST_ADDQ(&curpx->tcp_rep.inspect_rules, &rule->list); |
| 1081 | } |
| 1082 | else { |
| 1083 | memprintf(err, |
| 1084 | "'%s' expects 'inspect-delay' or 'content' in %s '%s' (got '%s')", |
| 1085 | args[0], proxy_type_str(curpx), curpx->id, args[1]); |
| 1086 | goto error; |
| 1087 | } |
| 1088 | |
| 1089 | return warn; |
| 1090 | error: |
| 1091 | free(rule); |
| 1092 | return -1; |
| 1093 | } |
| 1094 | |
| 1095 | |
| 1096 | /* This function should be called to parse a line starting with the "tcp-request" |
| 1097 | * keyword. |
| 1098 | */ |
| 1099 | static int tcp_parse_tcp_req(char **args, int section_type, struct proxy *curpx, |
| 1100 | struct proxy *defpx, const char *file, int line, |
| 1101 | char **err) |
| 1102 | { |
| 1103 | const char *ptr = NULL; |
| 1104 | unsigned int val; |
| 1105 | int warn = 0; |
| 1106 | int arg; |
| 1107 | struct act_rule *rule; |
| 1108 | unsigned int where; |
| 1109 | const struct acl *acl; |
| 1110 | const char *kw; |
| 1111 | |
| 1112 | if (!*args[1]) { |
| 1113 | if (curpx == defpx) |
| 1114 | memprintf(err, "missing argument for '%s' in defaults section", args[0]); |
| 1115 | else |
| 1116 | memprintf(err, "missing argument for '%s' in %s '%s'", |
| 1117 | args[0], proxy_type_str(curpx), curpx->id); |
| 1118 | return -1; |
| 1119 | } |
| 1120 | |
| 1121 | if (!strcmp(args[1], "inspect-delay")) { |
| 1122 | if (curpx == defpx) { |
| 1123 | memprintf(err, "%s %s is not allowed in 'defaults' sections", |
| 1124 | args[0], args[1]); |
| 1125 | return -1; |
| 1126 | } |
| 1127 | |
| 1128 | if (!*args[2] || (ptr = parse_time_err(args[2], &val, TIME_UNIT_MS))) { |
| 1129 | memprintf(err, |
| 1130 | "'%s %s' expects a positive delay in milliseconds, in %s '%s'", |
| 1131 | args[0], args[1], proxy_type_str(curpx), curpx->id); |
Willy Tarreau | 9faebe3 | 2019-06-07 19:00:37 +0200 | [diff] [blame] | 1132 | |
| 1133 | if (ptr == PARSE_TIME_OVER) |
| 1134 | memprintf(err, "%s (timer overflow in '%s', maximum value is 2147483647 ms or ~24.8 days)", *err, args[2]); |
| 1135 | else if (ptr == PARSE_TIME_UNDER) |
| 1136 | memprintf(err, "%s (timer underflow in '%s', minimum non-null value is 1 ms)", *err, args[2]); |
| 1137 | else if (ptr) |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 1138 | memprintf(err, "%s (unexpected character '%c')", *err, *ptr); |
| 1139 | return -1; |
| 1140 | } |
| 1141 | |
| 1142 | if (curpx->tcp_req.inspect_delay) { |
| 1143 | memprintf(err, "ignoring %s %s (was already defined) in %s '%s'", |
| 1144 | args[0], args[1], proxy_type_str(curpx), curpx->id); |
| 1145 | return 1; |
| 1146 | } |
| 1147 | curpx->tcp_req.inspect_delay = val; |
| 1148 | return 0; |
| 1149 | } |
| 1150 | |
| 1151 | rule = calloc(1, sizeof(*rule)); |
| 1152 | LIST_INIT(&rule->list); |
| 1153 | arg = 1; |
| 1154 | where = 0; |
| 1155 | |
| 1156 | if (strcmp(args[1], "content") == 0) { |
| 1157 | arg++; |
| 1158 | |
| 1159 | if (curpx->cap & PR_CAP_FE) |
| 1160 | where |= SMP_VAL_FE_REQ_CNT; |
| 1161 | if (curpx->cap & PR_CAP_BE) |
| 1162 | where |= SMP_VAL_BE_REQ_CNT; |
Christopher Faulet | cb9106b | 2019-12-19 15:23:17 +0100 | [diff] [blame] | 1163 | rule->from = ACT_F_TCP_REQ_CNT; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 1164 | if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where, file, line) < 0) |
| 1165 | goto error; |
| 1166 | |
| 1167 | acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL; |
| 1168 | if (acl) { |
| 1169 | if (acl->name && *acl->name) |
| 1170 | memprintf(err, |
| 1171 | "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'", |
| 1172 | acl->name, args[0], args[1], sample_ckp_names(where)); |
| 1173 | else |
| 1174 | memprintf(err, |
| 1175 | "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'", |
| 1176 | args[0], args[1], |
| 1177 | LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, |
| 1178 | sample_ckp_names(where)); |
| 1179 | |
| 1180 | warn++; |
| 1181 | } |
| 1182 | else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) { |
| 1183 | if (acl->name && *acl->name) |
| 1184 | memprintf(err, |
| 1185 | "acl '%s' involves keyword '%s' which is incompatible with '%s'", |
| 1186 | acl->name, kw, sample_ckp_names(where)); |
| 1187 | else |
| 1188 | memprintf(err, |
| 1189 | "anonymous acl involves keyword '%s' which is incompatible with '%s'", |
| 1190 | kw, sample_ckp_names(where)); |
| 1191 | warn++; |
| 1192 | } |
| 1193 | |
| 1194 | /* the following function directly emits the warning */ |
| 1195 | warnif_misplaced_tcp_cont(curpx, file, line, args[0]); |
| 1196 | LIST_ADDQ(&curpx->tcp_req.inspect_rules, &rule->list); |
| 1197 | } |
| 1198 | else if (strcmp(args[1], "connection") == 0) { |
| 1199 | arg++; |
| 1200 | |
| 1201 | if (!(curpx->cap & PR_CAP_FE)) { |
| 1202 | memprintf(err, "%s %s is not allowed because %s %s is not a frontend", |
| 1203 | args[0], args[1], proxy_type_str(curpx), curpx->id); |
| 1204 | goto error; |
| 1205 | } |
| 1206 | |
| 1207 | where |= SMP_VAL_FE_CON_ACC; |
Christopher Faulet | cb9106b | 2019-12-19 15:23:17 +0100 | [diff] [blame] | 1208 | rule->from = ACT_F_TCP_REQ_CON; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 1209 | if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where, file, line) < 0) |
| 1210 | goto error; |
| 1211 | |
| 1212 | acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL; |
| 1213 | if (acl) { |
| 1214 | if (acl->name && *acl->name) |
| 1215 | memprintf(err, |
| 1216 | "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'", |
| 1217 | acl->name, args[0], args[1], sample_ckp_names(where)); |
| 1218 | else |
| 1219 | memprintf(err, |
| 1220 | "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'", |
| 1221 | args[0], args[1], |
| 1222 | LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, |
| 1223 | sample_ckp_names(where)); |
| 1224 | |
| 1225 | warn++; |
| 1226 | } |
| 1227 | else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) { |
| 1228 | if (acl->name && *acl->name) |
| 1229 | memprintf(err, |
| 1230 | "acl '%s' involves keyword '%s' which is incompatible with '%s'", |
| 1231 | acl->name, kw, sample_ckp_names(where)); |
| 1232 | else |
| 1233 | memprintf(err, |
| 1234 | "anonymous acl involves keyword '%s' which is incompatible with '%s'", |
| 1235 | kw, sample_ckp_names(where)); |
| 1236 | warn++; |
| 1237 | } |
| 1238 | |
| 1239 | /* the following function directly emits the warning */ |
| 1240 | warnif_misplaced_tcp_conn(curpx, file, line, args[0]); |
| 1241 | LIST_ADDQ(&curpx->tcp_req.l4_rules, &rule->list); |
| 1242 | } |
| 1243 | else if (strcmp(args[1], "session") == 0) { |
| 1244 | arg++; |
| 1245 | |
| 1246 | if (!(curpx->cap & PR_CAP_FE)) { |
| 1247 | memprintf(err, "%s %s is not allowed because %s %s is not a frontend", |
| 1248 | args[0], args[1], proxy_type_str(curpx), curpx->id); |
| 1249 | goto error; |
| 1250 | } |
| 1251 | |
| 1252 | where |= SMP_VAL_FE_SES_ACC; |
Christopher Faulet | cb9106b | 2019-12-19 15:23:17 +0100 | [diff] [blame] | 1253 | rule->from = ACT_F_TCP_REQ_SES; |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 1254 | if (tcp_parse_request_rule(args, arg, section_type, curpx, defpx, rule, err, where, file, line) < 0) |
| 1255 | goto error; |
| 1256 | |
| 1257 | acl = rule->cond ? acl_cond_conflicts(rule->cond, where) : NULL; |
| 1258 | if (acl) { |
| 1259 | if (acl->name && *acl->name) |
| 1260 | memprintf(err, |
| 1261 | "acl '%s' will never match in '%s %s' because it only involves keywords that are incompatible with '%s'", |
| 1262 | acl->name, args[0], args[1], sample_ckp_names(where)); |
| 1263 | else |
| 1264 | memprintf(err, |
| 1265 | "anonymous acl will never match in '%s %s' because it uses keyword '%s' which is incompatible with '%s'", |
| 1266 | args[0], args[1], |
| 1267 | LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, |
| 1268 | sample_ckp_names(where)); |
| 1269 | warn++; |
| 1270 | } |
| 1271 | else if (rule->cond && acl_cond_kw_conflicts(rule->cond, where, &acl, &kw)) { |
| 1272 | if (acl->name && *acl->name) |
| 1273 | memprintf(err, |
| 1274 | "acl '%s' involves keyword '%s' which is incompatible with '%s'", |
| 1275 | acl->name, kw, sample_ckp_names(where)); |
| 1276 | else |
| 1277 | memprintf(err, |
| 1278 | "anonymous acl involves keyword '%s' which is incompatible with '%s'", |
| 1279 | kw, sample_ckp_names(where)); |
| 1280 | warn++; |
| 1281 | } |
| 1282 | |
| 1283 | /* the following function directly emits the warning */ |
| 1284 | warnif_misplaced_tcp_sess(curpx, file, line, args[0]); |
| 1285 | LIST_ADDQ(&curpx->tcp_req.l5_rules, &rule->list); |
| 1286 | } |
| 1287 | else { |
| 1288 | if (curpx == defpx) |
| 1289 | memprintf(err, |
| 1290 | "'%s' expects 'inspect-delay', 'connection', or 'content' in defaults section (got '%s')", |
| 1291 | args[0], args[1]); |
| 1292 | else |
| 1293 | memprintf(err, |
| 1294 | "'%s' expects 'inspect-delay', 'connection', or 'content' in %s '%s' (got '%s')", |
| 1295 | args[0], proxy_type_str(curpx), curpx->id, args[1]); |
| 1296 | goto error; |
| 1297 | } |
| 1298 | |
| 1299 | return warn; |
| 1300 | error: |
| 1301 | free(rule); |
| 1302 | return -1; |
| 1303 | } |
| 1304 | |
| 1305 | static struct cfg_kw_list cfg_kws = {ILH, { |
| 1306 | { CFG_LISTEN, "tcp-request", tcp_parse_tcp_req }, |
| 1307 | { CFG_LISTEN, "tcp-response", tcp_parse_tcp_rep }, |
| 1308 | { 0, NULL, NULL }, |
| 1309 | }}; |
| 1310 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1311 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
Willy Tarreau | 3971310 | 2016-11-25 15:49:32 +0100 | [diff] [blame] | 1312 | |
| 1313 | /* |
| 1314 | * Local variables: |
| 1315 | * c-indent-level: 8 |
| 1316 | * c-basic-offset: 8 |
| 1317 | * End: |
| 1318 | */ |