Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Stream filters related variables and functions. |
| 3 | * |
| 4 | * Copyright (C) 2015 Qualys Inc., Christopher Faulet <cfaulet@qualys.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 13 | #include <haproxy/api.h> |
Willy Tarreau | 2741c8c | 2020-06-02 11:28:02 +0200 | [diff] [blame] | 14 | #include <haproxy/buf-t.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 15 | #include <haproxy/cfgparse.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 16 | #include <haproxy/compression.h> |
Willy Tarreau | 8d36697 | 2020-05-27 16:10:29 +0200 | [diff] [blame] | 17 | #include <haproxy/errors.h> |
Willy Tarreau | c7babd8 | 2020-06-04 21:29:29 +0200 | [diff] [blame] | 18 | #include <haproxy/filters.h> |
Willy Tarreau | 7d865a5 | 2020-06-04 10:57:05 +0200 | [diff] [blame] | 19 | #include <haproxy/flt_http_comp.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 20 | #include <haproxy/http_ana.h> |
Willy Tarreau | 8773533 | 2020-06-04 09:08:41 +0200 | [diff] [blame] | 21 | #include <haproxy/http_htx.h> |
Willy Tarreau | 16f958c | 2020-06-03 08:44:35 +0200 | [diff] [blame] | 22 | #include <haproxy/htx.h> |
Willy Tarreau | 7a00efb | 2020-06-02 17:02:59 +0200 | [diff] [blame] | 23 | #include <haproxy/namespace.h> |
Willy Tarreau | daa6f1a | 2021-05-08 20:22:17 +0200 | [diff] [blame] | 24 | #include <haproxy/proxy.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 25 | #include <haproxy/stream.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 26 | #include <haproxy/stream_interface.h> |
Willy Tarreau | 48fbcae | 2020-06-03 18:09:46 +0200 | [diff] [blame] | 27 | #include <haproxy/tools.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 28 | #include <haproxy/trace.h> |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 29 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 30 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 31 | #define TRACE_SOURCE &trace_strm |
| 32 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 33 | /* Pool used to allocate filters */ |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 34 | DECLARE_STATIC_POOL(pool_head_filter, "filter", sizeof(struct filter)); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 35 | |
| 36 | static int handle_analyzer_result(struct stream *s, struct channel *chn, unsigned int an_bit, int ret); |
| 37 | |
| 38 | /* - RESUME_FILTER_LOOP and RESUME_FILTER_END must always be used together. |
| 39 | * The first one begins a loop and the seconds one ends it. |
| 40 | * |
| 41 | * - BREAK_EXECUTION must be used to break the loop and set the filter from |
| 42 | * which to resume the next time. |
| 43 | * |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 44 | * Here is an example: |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 45 | * |
| 46 | * RESUME_FILTER_LOOP(stream, channel) { |
| 47 | * ... |
| 48 | * if (cond) |
| 49 | * BREAK_EXECUTION(stream, channel, label); |
| 50 | * ... |
| 51 | * } RESUME_FILTER_END; |
| 52 | * ... |
| 53 | * label: |
| 54 | * ... |
| 55 | * |
| 56 | */ |
| 57 | #define RESUME_FILTER_LOOP(strm, chn) \ |
| 58 | do { \ |
| 59 | struct filter *filter; \ |
| 60 | \ |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 61 | if (strm_flt(strm)->current[CHN_IDX(chn)]) { \ |
| 62 | filter = strm_flt(strm)->current[CHN_IDX(chn)]; \ |
| 63 | strm_flt(strm)->current[CHN_IDX(chn)] = NULL; \ |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 64 | goto resume_execution; \ |
| 65 | } \ |
| 66 | \ |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 67 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { \ |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 68 | resume_execution: |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 69 | |
| 70 | #define RESUME_FILTER_END \ |
| 71 | } \ |
| 72 | } while(0) |
| 73 | |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 74 | #define BREAK_EXECUTION(strm, chn, label) \ |
| 75 | do { \ |
| 76 | strm_flt(strm)->current[CHN_IDX(chn)] = filter; \ |
| 77 | goto label; \ |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 78 | } while (0) |
| 79 | |
| 80 | |
| 81 | /* List head of all known filter keywords */ |
| 82 | static struct flt_kw_list flt_keywords = { |
| 83 | .list = LIST_HEAD_INIT(flt_keywords.list) |
| 84 | }; |
| 85 | |
| 86 | /* |
| 87 | * Registers the filter keyword list <kwl> as a list of valid keywords for next |
| 88 | * parsing sessions. |
| 89 | */ |
| 90 | void |
| 91 | flt_register_keywords(struct flt_kw_list *kwl) |
| 92 | { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 93 | LIST_APPEND(&flt_keywords.list, &kwl->list); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | /* |
| 97 | * Returns a pointer to the filter keyword <kw>, or NULL if not found. If the |
| 98 | * keyword is found with a NULL ->parse() function, then an attempt is made to |
| 99 | * find one with a valid ->parse() function. This way it is possible to declare |
| 100 | * platform-dependant, known keywords as NULL, then only declare them as valid |
| 101 | * if some options are met. Note that if the requested keyword contains an |
| 102 | * opening parenthesis, everything from this point is ignored. |
| 103 | */ |
| 104 | struct flt_kw * |
| 105 | flt_find_kw(const char *kw) |
| 106 | { |
| 107 | int index; |
| 108 | const char *kwend; |
| 109 | struct flt_kw_list *kwl; |
| 110 | struct flt_kw *ret = NULL; |
| 111 | |
| 112 | kwend = strchr(kw, '('); |
| 113 | if (!kwend) |
| 114 | kwend = kw + strlen(kw); |
| 115 | |
| 116 | list_for_each_entry(kwl, &flt_keywords.list, list) { |
| 117 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 118 | if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) && |
| 119 | kwl->kw[index].kw[kwend-kw] == 0) { |
| 120 | if (kwl->kw[index].parse) |
| 121 | return &kwl->kw[index]; /* found it !*/ |
| 122 | else |
| 123 | ret = &kwl->kw[index]; /* may be OK */ |
| 124 | } |
| 125 | } |
| 126 | } |
| 127 | return ret; |
| 128 | } |
| 129 | |
| 130 | /* |
| 131 | * Dumps all registered "filter" keywords to the <out> string pointer. The |
| 132 | * unsupported keywords are only dumped if their supported form was not found. |
| 133 | */ |
| 134 | void |
| 135 | flt_dump_kws(char **out) |
| 136 | { |
| 137 | struct flt_kw_list *kwl; |
| 138 | int index; |
| 139 | |
Christopher Faulet | 784063e | 2020-05-18 12:14:18 +0200 | [diff] [blame] | 140 | if (!out) |
| 141 | return; |
| 142 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 143 | *out = NULL; |
| 144 | list_for_each_entry(kwl, &flt_keywords.list, list) { |
| 145 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 146 | if (kwl->kw[index].parse || |
| 147 | flt_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) { |
| 148 | memprintf(out, "%s[%4s] %s%s\n", *out ? *out : "", |
| 149 | kwl->scope, |
| 150 | kwl->kw[index].kw, |
| 151 | kwl->kw[index].parse ? "" : " (not supported)"); |
| 152 | } |
| 153 | } |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | /* |
Christopher Faulet | b3f4e14 | 2016-03-07 12:46:38 +0100 | [diff] [blame] | 158 | * Lists the known filters on <out> |
| 159 | */ |
| 160 | void |
| 161 | list_filters(FILE *out) |
| 162 | { |
| 163 | char *filters, *p, *f; |
| 164 | |
| 165 | fprintf(out, "Available filters :\n"); |
| 166 | flt_dump_kws(&filters); |
| 167 | for (p = filters; (f = strtok_r(p,"\n",&p));) |
| 168 | fprintf(out, "\t%s\n", f); |
| 169 | free(filters); |
| 170 | } |
| 171 | |
| 172 | /* |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 173 | * Parses the "filter" keyword. All keywords must be handled by filters |
| 174 | * themselves |
| 175 | */ |
| 176 | static int |
| 177 | parse_filter(char **args, int section_type, struct proxy *curpx, |
Willy Tarreau | 0182516 | 2021-03-09 09:53:46 +0100 | [diff] [blame] | 178 | const struct proxy *defpx, const char *file, int line, char **err) |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 179 | { |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 180 | struct flt_conf *fconf = NULL; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 181 | |
| 182 | /* Filter cannot be defined on a default proxy */ |
| 183 | if (curpx == defpx) { |
Christopher Faulet | cc7317d | 2016-04-04 10:51:17 +0200 | [diff] [blame] | 184 | memprintf(err, "parsing [%s:%d] : %s is not allowed in a 'default' section.", |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 185 | file, line, args[0]); |
| 186 | return -1; |
| 187 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 188 | if (strcmp(args[0], "filter") == 0) { |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 189 | struct flt_kw *kw; |
| 190 | int cur_arg; |
| 191 | |
| 192 | if (!*args[1]) { |
| 193 | memprintf(err, |
| 194 | "parsing [%s:%d] : missing argument for '%s' in %s '%s'.", |
| 195 | file, line, args[0], proxy_type_str(curpx), curpx->id); |
| 196 | goto error; |
| 197 | } |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 198 | fconf = calloc(1, sizeof(*fconf)); |
| 199 | if (!fconf) { |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 200 | memprintf(err, "'%s' : out of memory", args[0]); |
| 201 | goto error; |
| 202 | } |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 203 | |
| 204 | cur_arg = 1; |
| 205 | kw = flt_find_kw(args[cur_arg]); |
| 206 | if (kw) { |
| 207 | if (!kw->parse) { |
| 208 | memprintf(err, "parsing [%s:%d] : '%s' : " |
| 209 | "'%s' option is not implemented in this version (check build options).", |
| 210 | file, line, args[0], args[cur_arg]); |
| 211 | goto error; |
| 212 | } |
Thierry Fournier | 3610c39 | 2016-04-13 18:27:51 +0200 | [diff] [blame] | 213 | if (kw->parse(args, &cur_arg, curpx, fconf, err, kw->private) != 0) { |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 214 | if (err && *err) |
| 215 | memprintf(err, "'%s' : '%s'", |
| 216 | args[0], *err); |
| 217 | else |
| 218 | memprintf(err, "'%s' : error encountered while processing '%s'", |
| 219 | args[0], args[cur_arg]); |
| 220 | goto error; |
| 221 | } |
| 222 | } |
| 223 | else { |
| 224 | flt_dump_kws(err); |
| 225 | indent_msg(err, 4); |
| 226 | memprintf(err, "'%s' : unknown keyword '%s'.%s%s", |
| 227 | args[0], args[cur_arg], |
| 228 | err && *err ? " Registered keywords :" : "", err && *err ? *err : ""); |
| 229 | goto error; |
| 230 | } |
| 231 | if (*args[cur_arg]) { |
| 232 | memprintf(err, "'%s %s' : unknown keyword '%s'.", |
| 233 | args[0], args[1], args[cur_arg]); |
| 234 | goto error; |
| 235 | } |
Christopher Faulet | 00e818a | 2016-04-19 17:00:44 +0200 | [diff] [blame] | 236 | if (fconf->ops == NULL) { |
| 237 | memprintf(err, "'%s %s' : no callbacks defined.", |
| 238 | args[0], args[1]); |
| 239 | goto error; |
| 240 | } |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 241 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 242 | LIST_APPEND(&curpx->filter_configs, &fconf->list); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 243 | } |
| 244 | return 0; |
| 245 | |
| 246 | error: |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 247 | free(fconf); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 248 | return -1; |
| 249 | |
| 250 | |
| 251 | } |
| 252 | |
| 253 | /* |
| 254 | * Calls 'init' callback for all filters attached to a proxy. This happens after |
| 255 | * the configuration parsing. Filters can finish to fill their config. Returns |
| 256 | * (ERR_ALERT|ERR_FATAL) if an error occurs, 0 otherwise. |
| 257 | */ |
Willy Tarreau | 64bca59 | 2016-12-21 20:13:11 +0100 | [diff] [blame] | 258 | static int |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 259 | flt_init(struct proxy *proxy) |
| 260 | { |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 261 | struct flt_conf *fconf; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 262 | |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 263 | list_for_each_entry(fconf, &proxy->filter_configs, list) { |
| 264 | if (fconf->ops->init && fconf->ops->init(proxy, fconf) < 0) |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 265 | return ERR_ALERT|ERR_FATAL; |
| 266 | } |
| 267 | return 0; |
| 268 | } |
| 269 | |
Christopher Faulet | 71a6a8e | 2017-07-27 16:33:28 +0200 | [diff] [blame] | 270 | /* |
| 271 | * Calls 'init_per_thread' callback for all filters attached to a proxy for each |
| 272 | * threads. This happens after the thread creation. Filters can finish to fill |
| 273 | * their config. Returns (ERR_ALERT|ERR_FATAL) if an error occurs, 0 otherwise. |
| 274 | */ |
| 275 | static int |
| 276 | flt_init_per_thread(struct proxy *proxy) |
| 277 | { |
| 278 | struct flt_conf *fconf; |
| 279 | |
| 280 | list_for_each_entry(fconf, &proxy->filter_configs, list) { |
| 281 | if (fconf->ops->init_per_thread && fconf->ops->init_per_thread(proxy, fconf) < 0) |
| 282 | return ERR_ALERT|ERR_FATAL; |
| 283 | } |
| 284 | return 0; |
| 285 | } |
| 286 | |
Willy Tarreau | 64bca59 | 2016-12-21 20:13:11 +0100 | [diff] [blame] | 287 | /* Calls flt_init() for all proxies, see above */ |
| 288 | static int |
| 289 | flt_init_all() |
| 290 | { |
| 291 | struct proxy *px; |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 292 | int err_code = ERR_NONE; |
Willy Tarreau | 64bca59 | 2016-12-21 20:13:11 +0100 | [diff] [blame] | 293 | |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 294 | for (px = proxies_list; px; px = px->next) { |
Christopher Faulet | 400829c | 2020-11-02 16:08:09 +0100 | [diff] [blame] | 295 | if (px->disabled) { |
| 296 | flt_deinit(px); |
| 297 | continue; |
| 298 | } |
Willy Tarreau | 64bca59 | 2016-12-21 20:13:11 +0100 | [diff] [blame] | 299 | err_code |= flt_init(px); |
| 300 | if (err_code & (ERR_ABORT|ERR_FATAL)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 301 | ha_alert("Failed to initialize filters for proxy '%s'.\n", |
| 302 | px->id); |
Willy Tarreau | 64bca59 | 2016-12-21 20:13:11 +0100 | [diff] [blame] | 303 | return err_code; |
| 304 | } |
| 305 | } |
| 306 | return 0; |
| 307 | } |
| 308 | |
Joseph Herlant | b35ea68 | 2018-11-15 12:24:23 -0800 | [diff] [blame] | 309 | /* Calls flt_init_per_thread() for all proxies, see above. Be careful here, it |
| 310 | * returns 0 if an error occurred. This is the opposite of flt_init_all. */ |
Christopher Faulet | 71a6a8e | 2017-07-27 16:33:28 +0200 | [diff] [blame] | 311 | static int |
| 312 | flt_init_all_per_thread() |
| 313 | { |
| 314 | struct proxy *px; |
| 315 | int err_code = 0; |
| 316 | |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 317 | for (px = proxies_list; px; px = px->next) { |
Christopher Faulet | 400829c | 2020-11-02 16:08:09 +0100 | [diff] [blame] | 318 | if (px->disabled) |
| 319 | continue; |
| 320 | |
Christopher Faulet | 71a6a8e | 2017-07-27 16:33:28 +0200 | [diff] [blame] | 321 | err_code = flt_init_per_thread(px); |
| 322 | if (err_code & (ERR_ABORT|ERR_FATAL)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 323 | ha_alert("Failed to initialize filters for proxy '%s' for thread %u.\n", |
| 324 | px->id, tid); |
Christopher Faulet | 71a6a8e | 2017-07-27 16:33:28 +0200 | [diff] [blame] | 325 | return 0; |
| 326 | } |
| 327 | } |
| 328 | return 1; |
| 329 | } |
| 330 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 331 | /* |
| 332 | * Calls 'check' callback for all filters attached to a proxy. This happens |
| 333 | * after the configuration parsing but before filters initialization. Returns |
| 334 | * the number of encountered errors. |
| 335 | */ |
| 336 | int |
| 337 | flt_check(struct proxy *proxy) |
| 338 | { |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 339 | struct flt_conf *fconf; |
| 340 | int err = 0; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 341 | |
Christopher Faulet | ff17b18 | 2019-01-07 15:03:22 +0100 | [diff] [blame] | 342 | err += check_implicit_http_comp_flt(proxy); |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 343 | list_for_each_entry(fconf, &proxy->filter_configs, list) { |
| 344 | if (fconf->ops->check) |
| 345 | err += fconf->ops->check(proxy, fconf); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 346 | } |
| 347 | return err; |
| 348 | } |
| 349 | |
| 350 | /* |
| 351 | * Calls 'denit' callback for all filters attached to a proxy. This happens when |
| 352 | * HAProxy is stopped. |
| 353 | */ |
| 354 | void |
| 355 | flt_deinit(struct proxy *proxy) |
| 356 | { |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 357 | struct flt_conf *fconf, *back; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 358 | |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 359 | list_for_each_entry_safe(fconf, back, &proxy->filter_configs, list) { |
Christopher Faulet | 743bd6a | 2020-11-03 16:40:37 +0100 | [diff] [blame] | 360 | if (fconf->ops->deinit) |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 361 | fconf->ops->deinit(proxy, fconf); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 362 | LIST_DELETE(&fconf->list); |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 363 | free(fconf); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 364 | } |
| 365 | } |
| 366 | |
Christopher Faulet | 71a6a8e | 2017-07-27 16:33:28 +0200 | [diff] [blame] | 367 | /* |
| 368 | * Calls 'denit_per_thread' callback for all filters attached to a proxy for |
| 369 | * each threads. This happens before exiting a thread. |
| 370 | */ |
| 371 | void |
| 372 | flt_deinit_per_thread(struct proxy *proxy) |
| 373 | { |
| 374 | struct flt_conf *fconf, *back; |
| 375 | |
| 376 | list_for_each_entry_safe(fconf, back, &proxy->filter_configs, list) { |
| 377 | if (fconf->ops->deinit_per_thread) |
| 378 | fconf->ops->deinit_per_thread(proxy, fconf); |
| 379 | } |
| 380 | } |
| 381 | |
| 382 | |
| 383 | /* Calls flt_deinit_per_thread() for all proxies, see above */ |
| 384 | static void |
| 385 | flt_deinit_all_per_thread() |
| 386 | { |
| 387 | struct proxy *px; |
| 388 | |
Christopher Faulet | 743bd6a | 2020-11-03 16:40:37 +0100 | [diff] [blame] | 389 | for (px = proxies_list; px; px = px->next) |
| 390 | flt_deinit_per_thread(px); |
Christopher Faulet | 71a6a8e | 2017-07-27 16:33:28 +0200 | [diff] [blame] | 391 | } |
| 392 | |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 393 | /* Attaches a filter to a stream. Returns -1 if an error occurs, 0 otherwise. */ |
| 394 | static int |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 395 | flt_stream_add_filter(struct stream *s, struct flt_conf *fconf, unsigned int flags) |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 396 | { |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 397 | struct filter *f; |
Christopher Faulet | 31ed32d | 2016-06-21 11:42:37 +0200 | [diff] [blame] | 398 | |
Christopher Faulet | 0f17a9b | 2019-04-05 10:11:38 +0200 | [diff] [blame] | 399 | if (IS_HTX_STRM(s) && !(fconf->flags & FLT_CFG_FL_HTX)) |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 400 | return 0; |
| 401 | |
Willy Tarreau | 1bbec38 | 2021-03-22 21:02:50 +0100 | [diff] [blame] | 402 | f = pool_zalloc(pool_head_filter); |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 403 | if (!f) /* not enough memory */ |
| 404 | return -1; |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 405 | f->config = fconf; |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 406 | f->flags |= flags; |
Christopher Faulet | 31ed32d | 2016-06-21 11:42:37 +0200 | [diff] [blame] | 407 | |
| 408 | if (FLT_OPS(f)->attach) { |
| 409 | int ret = FLT_OPS(f)->attach(s, f); |
| 410 | if (ret <= 0) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 411 | pool_free(pool_head_filter, f); |
Christopher Faulet | 31ed32d | 2016-06-21 11:42:37 +0200 | [diff] [blame] | 412 | return ret; |
| 413 | } |
| 414 | } |
| 415 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 416 | LIST_APPEND(&strm_flt(s)->filters, &f->list); |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 417 | strm_flt(s)->flags |= STRM_FLT_FL_HAS_FILTERS; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 418 | return 0; |
| 419 | } |
| 420 | |
| 421 | /* |
| 422 | * Called when a stream is created. It attaches all frontend filters to the |
| 423 | * stream. Returns -1 if an error occurs, 0 otherwise. |
| 424 | */ |
| 425 | int |
| 426 | flt_stream_init(struct stream *s) |
| 427 | { |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 428 | struct flt_conf *fconf; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 429 | |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 430 | memset(strm_flt(s), 0, sizeof(*strm_flt(s))); |
| 431 | LIST_INIT(&strm_flt(s)->filters); |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 432 | list_for_each_entry(fconf, &strm_fe(s)->filter_configs, list) { |
| 433 | if (flt_stream_add_filter(s, fconf, 0) < 0) |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 434 | return -1; |
| 435 | } |
| 436 | return 0; |
| 437 | } |
| 438 | |
| 439 | /* |
| 440 | * Called when a stream is closed or when analyze ends (For an HTTP stream, this |
| 441 | * happens after each request/response exchange). When analyze ends, backend |
| 442 | * filters are removed. When the stream is closed, all filters attached to the |
| 443 | * stream are removed. |
| 444 | */ |
| 445 | void |
| 446 | flt_stream_release(struct stream *s, int only_backend) |
| 447 | { |
| 448 | struct filter *filter, *back; |
| 449 | |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 450 | list_for_each_entry_safe(filter, back, &strm_flt(s)->filters, list) { |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 451 | if (!only_backend || (filter->flags & FLT_FL_IS_BACKEND_FILTER)) { |
Christopher Faulet | 31ed32d | 2016-06-21 11:42:37 +0200 | [diff] [blame] | 452 | if (FLT_OPS(filter)->detach) |
| 453 | FLT_OPS(filter)->detach(s, filter); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 454 | LIST_DELETE(&filter->list); |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 455 | pool_free(pool_head_filter, filter); |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 456 | } |
| 457 | } |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 458 | if (LIST_ISEMPTY(&strm_flt(s)->filters)) |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 459 | strm_flt(s)->flags &= ~STRM_FLT_FL_HAS_FILTERS; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 460 | } |
| 461 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 462 | /* |
| 463 | * Calls 'stream_start' for all filters attached to a stream. This happens when |
| 464 | * the stream is created, just after calling flt_stream_init |
| 465 | * function. Returns -1 if an error occurs, 0 otherwise. |
| 466 | */ |
| 467 | int |
| 468 | flt_stream_start(struct stream *s) |
| 469 | { |
| 470 | struct filter *filter; |
| 471 | |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 472 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 473 | if (FLT_OPS(filter)->stream_start && FLT_OPS(filter)->stream_start(s, filter) < 0) |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 474 | return -1; |
| 475 | } |
Christopher Faulet | 5647fba | 2021-03-08 13:40:30 +0100 | [diff] [blame] | 476 | if (strm_li(s) && (strm_li(s)->analysers & AN_REQ_FLT_START_FE)) |
| 477 | s->req.flags |= CF_FLT_ANALYZE; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 478 | return 0; |
| 479 | } |
| 480 | |
| 481 | /* |
| 482 | * Calls 'stream_stop' for all filters attached to a stream. This happens when |
| 483 | * the stream is stopped, just before calling flt_stream_release function. |
| 484 | */ |
| 485 | void |
| 486 | flt_stream_stop(struct stream *s) |
| 487 | { |
| 488 | struct filter *filter; |
| 489 | |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 490 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 491 | if (FLT_OPS(filter)->stream_stop) |
| 492 | FLT_OPS(filter)->stream_stop(s, filter); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 493 | } |
| 494 | } |
| 495 | |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 496 | /* |
Christopher Faulet | a00d817 | 2016-11-10 14:58:05 +0100 | [diff] [blame] | 497 | * Calls 'check_timeouts' for all filters attached to a stream. This happens when |
| 498 | * the stream is woken up because of expired timer. |
| 499 | */ |
| 500 | void |
| 501 | flt_stream_check_timeouts(struct stream *s) |
| 502 | { |
| 503 | struct filter *filter; |
| 504 | |
| 505 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
| 506 | if (FLT_OPS(filter)->check_timeouts) |
| 507 | FLT_OPS(filter)->check_timeouts(s, filter); |
| 508 | } |
| 509 | } |
| 510 | |
| 511 | /* |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 512 | * Called when a backend is set for a stream. If the frontend and the backend |
Christopher Faulet | 31ed32d | 2016-06-21 11:42:37 +0200 | [diff] [blame] | 513 | * are not the same, this function attaches all backend filters to the |
| 514 | * stream. Returns -1 if an error occurs, 0 otherwise. |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 515 | */ |
| 516 | int |
| 517 | flt_set_stream_backend(struct stream *s, struct proxy *be) |
| 518 | { |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 519 | struct flt_conf *fconf; |
Christopher Faulet | 31ed32d | 2016-06-21 11:42:37 +0200 | [diff] [blame] | 520 | struct filter *filter; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 521 | |
| 522 | if (strm_fe(s) == be) |
Christopher Faulet | 31ed32d | 2016-06-21 11:42:37 +0200 | [diff] [blame] | 523 | goto end; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 524 | |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 525 | list_for_each_entry(fconf, &be->filter_configs, list) { |
| 526 | if (flt_stream_add_filter(s, fconf, FLT_FL_IS_BACKEND_FILTER) < 0) |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 527 | return -1; |
| 528 | } |
Christopher Faulet | 31ed32d | 2016-06-21 11:42:37 +0200 | [diff] [blame] | 529 | |
| 530 | end: |
| 531 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
| 532 | if (FLT_OPS(filter)->stream_set_backend && |
| 533 | FLT_OPS(filter)->stream_set_backend(s, filter, be) < 0) |
| 534 | return -1; |
| 535 | } |
Christopher Faulet | 5647fba | 2021-03-08 13:40:30 +0100 | [diff] [blame] | 536 | if (be->be_req_ana & AN_REQ_FLT_START_BE) |
| 537 | s->req.flags |= CF_FLT_ANALYZE; |
| 538 | if ((strm_fe(s)->fe_rsp_ana | be->be_rsp_ana) & (AN_RES_FLT_START_FE|AN_RES_FLT_START_BE)) |
| 539 | s->res.flags |= CF_FLT_ANALYZE; |
Christopher Faulet | 31ed32d | 2016-06-21 11:42:37 +0200 | [diff] [blame] | 540 | |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 541 | return 0; |
| 542 | } |
| 543 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 544 | |
| 545 | /* |
| 546 | * Calls 'http_end' callback for all filters attached to a stream. All filters |
| 547 | * are called here, but only if there is at least one "data" filter. This |
| 548 | * functions is called when all data were parsed and forwarded. 'http_end' |
| 549 | * callback is resumable, so this function returns a negative value if an error |
| 550 | * occurs, 0 if it needs to wait for some reason, any other value otherwise. |
| 551 | */ |
| 552 | int |
| 553 | flt_http_end(struct stream *s, struct http_msg *msg) |
| 554 | { |
Christopher Faulet | 22fca1f | 2020-11-16 10:10:38 +0100 | [diff] [blame] | 555 | unsigned long long *strm_off = &FLT_STRM_OFF(s, msg->chn); |
| 556 | unsigned int offset = 0; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 557 | int ret = 1; |
| 558 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 559 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s, s->txn, msg); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 560 | RESUME_FILTER_LOOP(s, msg->chn) { |
Christopher Faulet | 22fca1f | 2020-11-16 10:10:38 +0100 | [diff] [blame] | 561 | unsigned long long flt_off = FLT_OFF(filter, msg->chn); |
| 562 | offset = flt_off - *strm_off; |
| 563 | |
Christopher Faulet | 401e6db | 2020-11-24 09:49:01 +0100 | [diff] [blame] | 564 | /* Call http_end for data filters only. But the filter offset is |
| 565 | * still valid for all filters |
| 566 | . */ |
| 567 | if (!IS_DATA_FILTER(filter, msg->chn)) |
| 568 | continue; |
| 569 | |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 570 | if (FLT_OPS(filter)->http_end) { |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 571 | DBG_TRACE_DEVEL(FLT_ID(filter), STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s); |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 572 | ret = FLT_OPS(filter)->http_end(s, filter, msg); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 573 | if (ret <= 0) |
| 574 | BREAK_EXECUTION(s, msg->chn, end); |
| 575 | } |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 576 | } RESUME_FILTER_END; |
Christopher Faulet | 22fca1f | 2020-11-16 10:10:38 +0100 | [diff] [blame] | 577 | |
| 578 | c_adv(msg->chn, offset); |
| 579 | *strm_off += offset; |
| 580 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 581 | end: |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 582 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 583 | return ret; |
| 584 | } |
| 585 | |
| 586 | /* |
| 587 | * Calls 'http_reset' callback for all filters attached to a stream. This |
| 588 | * happens when a 100-continue response is received. |
| 589 | */ |
| 590 | void |
| 591 | flt_http_reset(struct stream *s, struct http_msg *msg) |
| 592 | { |
| 593 | struct filter *filter; |
| 594 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 595 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s, s->txn, msg); |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 596 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 597 | if (FLT_OPS(filter)->http_reset) { |
| 598 | DBG_TRACE_DEVEL(FLT_ID(filter), STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s); |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 599 | FLT_OPS(filter)->http_reset(s, filter, msg); |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 600 | } |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 601 | } |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 602 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 603 | } |
| 604 | |
| 605 | /* |
| 606 | * Calls 'http_reply' callback for all filters attached to a stream when HA |
| 607 | * decides to stop the HTTP message processing. |
| 608 | */ |
| 609 | void |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 610 | flt_http_reply(struct stream *s, short status, const struct buffer *msg) |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 611 | { |
| 612 | struct filter *filter; |
| 613 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 614 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s, s->txn, msg); |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 615 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 616 | if (FLT_OPS(filter)->http_reply) { |
| 617 | DBG_TRACE_DEVEL(FLT_ID(filter), STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s); |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 618 | FLT_OPS(filter)->http_reply(s, filter, status, msg); |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 619 | } |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 620 | } |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 621 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 622 | } |
| 623 | |
| 624 | /* |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 625 | * Calls 'http_payload' callback for all "data" filters attached to a |
| 626 | * stream. This function is called when some data can be forwarded in the |
| 627 | * AN_REQ_HTTP_XFER_BODY and AN_RES_HTTP_XFER_BODY analyzers. It takes care to |
| 628 | * update the filters and the stream offset to be sure that a filter cannot |
| 629 | * forward more data than its predecessors. A filter can choose to not forward |
| 630 | * all data. Returns a negative value if an error occurs, else the number of |
| 631 | * forwarded bytes. |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 632 | */ |
| 633 | int |
| 634 | flt_http_payload(struct stream *s, struct http_msg *msg, unsigned int len) |
| 635 | { |
| 636 | struct filter *filter; |
| 637 | unsigned long long *strm_off = &FLT_STRM_OFF(s, msg->chn); |
Christopher Faulet | 421e769 | 2019-06-13 11:16:45 +0200 | [diff] [blame] | 638 | unsigned int out = co_data(msg->chn); |
Christopher Faulet | 81340d7 | 2020-02-26 15:47:22 +0100 | [diff] [blame] | 639 | int ret, data; |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 640 | |
Christopher Faulet | 6071c2d | 2021-01-25 12:02:00 +0100 | [diff] [blame] | 641 | strm_flt(s)->flags &= ~STRM_FLT_FL_HOLD_HTTP_HDRS; |
| 642 | |
Christopher Faulet | 81340d7 | 2020-02-26 15:47:22 +0100 | [diff] [blame] | 643 | ret = data = len - out; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 644 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s, s->txn, msg); |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 645 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
Christopher Faulet | 401e6db | 2020-11-24 09:49:01 +0100 | [diff] [blame] | 646 | unsigned long long *flt_off = &FLT_OFF(filter, msg->chn); |
| 647 | unsigned int offset = *flt_off - *strm_off; |
| 648 | |
| 649 | /* Call http_payload for filters only. Forward all data for |
| 650 | * others and update the filter offset |
| 651 | */ |
| 652 | if (!IS_DATA_FILTER(filter, msg->chn)) { |
| 653 | *flt_off += data - offset; |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 654 | continue; |
Christopher Faulet | 401e6db | 2020-11-24 09:49:01 +0100 | [diff] [blame] | 655 | } |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 656 | |
Christopher Faulet | 401e6db | 2020-11-24 09:49:01 +0100 | [diff] [blame] | 657 | if (FLT_OPS(filter)->http_payload) { |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 658 | DBG_TRACE_DEVEL(FLT_ID(filter), STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s); |
Christopher Faulet | 71179a3 | 2020-02-07 16:40:33 +0100 | [diff] [blame] | 659 | ret = FLT_OPS(filter)->http_payload(s, filter, msg, out + offset, data - offset); |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 660 | if (ret < 0) |
| 661 | goto end; |
Christopher Faulet | c50ee0b | 2020-02-24 16:20:09 +0100 | [diff] [blame] | 662 | data = ret + *flt_off - *strm_off; |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 663 | *flt_off += ret; |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 664 | } |
| 665 | } |
Christopher Faulet | 71179a3 | 2020-02-07 16:40:33 +0100 | [diff] [blame] | 666 | |
Christopher Faulet | 6071c2d | 2021-01-25 12:02:00 +0100 | [diff] [blame] | 667 | /* If nothing was forwarded yet, we take care to hold the headers if |
| 668 | * following conditions are met : |
| 669 | * |
| 670 | * - *strm_off == 0 (nothing forwarded yet) |
| 671 | * - ret == 0 (no data forwarded at all on this turn) |
| 672 | * - STRM_FLT_FL_HOLD_HTTP_HDRS flag set (at least one filter want to hold the headers) |
| 673 | * |
| 674 | * Be careful, STRM_FLT_FL_HOLD_HTTP_HDRS is removed before each http_payload loop. |
| 675 | * Thus, it must explicitly be set when necessary. We must do that to hold the headers |
| 676 | * when there is no payload. |
| 677 | */ |
| 678 | if (!ret && !*strm_off && (strm_flt(s)->flags & STRM_FLT_FL_HOLD_HTTP_HDRS)) |
| 679 | goto end; |
| 680 | |
| 681 | ret = data; |
| 682 | *strm_off += ret; |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 683 | end: |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 684 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s); |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 685 | return ret; |
| 686 | } |
| 687 | |
| 688 | /* |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 689 | * Calls 'channel_start_analyze' callback for all filters attached to a |
| 690 | * stream. This function is called when we start to analyze a request or a |
| 691 | * response. For frontend filters, it is called before all other analyzers. For |
| 692 | * backend ones, it is called before all backend |
| 693 | * analyzers. 'channel_start_analyze' callback is resumable, so this function |
| 694 | * returns 0 if an error occurs or if it needs to wait, any other value |
| 695 | * otherwise. |
| 696 | */ |
| 697 | int |
| 698 | flt_start_analyze(struct stream *s, struct channel *chn, unsigned int an_bit) |
| 699 | { |
| 700 | int ret = 1; |
| 701 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 702 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_FLT_ANA, s); |
| 703 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 704 | /* If this function is called, this means there is at least one filter, |
| 705 | * so we do not need to check the filter list's emptiness. */ |
| 706 | |
Christopher Faulet | e600624 | 2017-03-10 11:52:44 +0100 | [diff] [blame] | 707 | /* Set flag on channel to tell that the channel is filtered */ |
| 708 | chn->flags |= CF_FLT_ANALYZE; |
| 709 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 710 | RESUME_FILTER_LOOP(s, chn) { |
Christopher Faulet | 0184ea7 | 2017-01-05 14:06:34 +0100 | [diff] [blame] | 711 | if (!(chn->flags & CF_ISRESP)) { |
| 712 | if (an_bit == AN_REQ_FLT_START_BE && |
| 713 | !(filter->flags & FLT_FL_IS_BACKEND_FILTER)) |
| 714 | continue; |
| 715 | } |
| 716 | else { |
| 717 | if (an_bit == AN_RES_FLT_START_BE && |
| 718 | !(filter->flags & FLT_FL_IS_BACKEND_FILTER)) |
| 719 | continue; |
| 720 | } |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 721 | |
Christopher Faulet | b2e5849 | 2019-11-12 11:13:01 +0100 | [diff] [blame] | 722 | FLT_OFF(filter, chn) = 0; |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 723 | if (FLT_OPS(filter)->channel_start_analyze) { |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 724 | DBG_TRACE_DEVEL(FLT_ID(filter), STRM_EV_FLT_ANA, s); |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 725 | ret = FLT_OPS(filter)->channel_start_analyze(s, filter, chn); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 726 | if (ret <= 0) |
| 727 | BREAK_EXECUTION(s, chn, end); |
| 728 | } |
| 729 | } RESUME_FILTER_END; |
| 730 | |
| 731 | end: |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 732 | ret = handle_analyzer_result(s, chn, an_bit, ret); |
| 733 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_FLT_ANA, s); |
| 734 | return ret; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 735 | } |
| 736 | |
| 737 | /* |
Christopher Faulet | 3a394fa | 2016-05-11 17:13:39 +0200 | [diff] [blame] | 738 | * Calls 'channel_pre_analyze' callback for all filters attached to a |
| 739 | * stream. This function is called BEFORE each analyzer attached to a channel, |
| 740 | * expects analyzers responsible for data sending. 'channel_pre_analyze' |
| 741 | * callback is resumable, so this function returns 0 if an error occurs or if it |
| 742 | * needs to wait, any other value otherwise. |
| 743 | * |
| 744 | * Note this function can be called many times for the same analyzer. In fact, |
| 745 | * it is called until the analyzer finishes its processing. |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 746 | */ |
| 747 | int |
Christopher Faulet | 3a394fa | 2016-05-11 17:13:39 +0200 | [diff] [blame] | 748 | flt_pre_analyze(struct stream *s, struct channel *chn, unsigned int an_bit) |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 749 | { |
| 750 | int ret = 1; |
| 751 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 752 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_FLT_ANA, s); |
| 753 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 754 | RESUME_FILTER_LOOP(s, chn) { |
Christopher Faulet | 3a394fa | 2016-05-11 17:13:39 +0200 | [diff] [blame] | 755 | if (FLT_OPS(filter)->channel_pre_analyze && (filter->pre_analyzers & an_bit)) { |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 756 | DBG_TRACE_DEVEL(FLT_ID(filter), STRM_EV_FLT_ANA, s); |
Christopher Faulet | 3a394fa | 2016-05-11 17:13:39 +0200 | [diff] [blame] | 757 | ret = FLT_OPS(filter)->channel_pre_analyze(s, filter, chn, an_bit); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 758 | if (ret <= 0) |
| 759 | BREAK_EXECUTION(s, chn, check_result); |
Christopher Faulet | 476013c | 2021-05-20 18:00:55 +0200 | [diff] [blame] | 760 | filter->pre_analyzers &= ~an_bit; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 761 | } |
| 762 | } RESUME_FILTER_END; |
| 763 | |
| 764 | check_result: |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 765 | ret = handle_analyzer_result(s, chn, 0, ret); |
| 766 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_FLT_ANA, s); |
| 767 | return ret; |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 768 | } |
| 769 | |
| 770 | /* |
Christopher Faulet | 3a394fa | 2016-05-11 17:13:39 +0200 | [diff] [blame] | 771 | * Calls 'channel_post_analyze' callback for all filters attached to a |
| 772 | * stream. This function is called AFTER each analyzer attached to a channel, |
| 773 | * expects analyzers responsible for data sending. 'channel_post_analyze' |
| 774 | * callback is NOT resumable, so this function returns a 0 if an error occurs, |
| 775 | * any other value otherwise. |
| 776 | * |
| 777 | * Here, AFTER means when the analyzer finishes its processing. |
| 778 | */ |
| 779 | int |
| 780 | flt_post_analyze(struct stream *s, struct channel *chn, unsigned int an_bit) |
| 781 | { |
| 782 | struct filter *filter; |
| 783 | int ret = 1; |
| 784 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 785 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_FLT_ANA, s); |
| 786 | |
Christopher Faulet | 3a394fa | 2016-05-11 17:13:39 +0200 | [diff] [blame] | 787 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
| 788 | if (FLT_OPS(filter)->channel_post_analyze && (filter->post_analyzers & an_bit)) { |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 789 | DBG_TRACE_DEVEL(FLT_ID(filter), STRM_EV_FLT_ANA, s); |
Christopher Faulet | 3a394fa | 2016-05-11 17:13:39 +0200 | [diff] [blame] | 790 | ret = FLT_OPS(filter)->channel_post_analyze(s, filter, chn, an_bit); |
| 791 | if (ret < 0) |
| 792 | break; |
Christopher Faulet | 476013c | 2021-05-20 18:00:55 +0200 | [diff] [blame] | 793 | filter->post_analyzers &= ~an_bit; |
Christopher Faulet | 3a394fa | 2016-05-11 17:13:39 +0200 | [diff] [blame] | 794 | } |
| 795 | } |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 796 | ret = handle_analyzer_result(s, chn, 0, ret); |
| 797 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_FLT_ANA, s); |
| 798 | return ret; |
Christopher Faulet | 3a394fa | 2016-05-11 17:13:39 +0200 | [diff] [blame] | 799 | } |
| 800 | |
| 801 | /* |
Christopher Faulet | 0184ea7 | 2017-01-05 14:06:34 +0100 | [diff] [blame] | 802 | * This function is the AN_REQ/RES_FLT_HTTP_HDRS analyzer, used to filter HTTP |
| 803 | * headers or a request or a response. Returns 0 if an error occurs or if it |
| 804 | * needs to wait, any other value otherwise. |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 805 | */ |
| 806 | int |
| 807 | flt_analyze_http_headers(struct stream *s, struct channel *chn, unsigned int an_bit) |
| 808 | { |
Christopher Faulet | 1339d74 | 2016-05-11 16:48:33 +0200 | [diff] [blame] | 809 | struct http_msg *msg; |
| 810 | int ret = 1; |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 811 | |
Christopher Faulet | 1339d74 | 2016-05-11 16:48:33 +0200 | [diff] [blame] | 812 | msg = ((chn->flags & CF_ISRESP) ? &s->txn->rsp : &s->txn->req); |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 813 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s, s->txn, msg); |
| 814 | |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 815 | RESUME_FILTER_LOOP(s, chn) { |
Christopher Faulet | 1339d74 | 2016-05-11 16:48:33 +0200 | [diff] [blame] | 816 | if (FLT_OPS(filter)->http_headers) { |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 817 | DBG_TRACE_DEVEL(FLT_ID(filter), STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s); |
Christopher Faulet | 1339d74 | 2016-05-11 16:48:33 +0200 | [diff] [blame] | 818 | ret = FLT_OPS(filter)->http_headers(s, filter, msg); |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 819 | if (ret <= 0) |
| 820 | BREAK_EXECUTION(s, chn, check_result); |
| 821 | } |
| 822 | } RESUME_FILTER_END; |
Christopher Faulet | 9c44e48 | 2020-02-12 15:31:20 +0100 | [diff] [blame] | 823 | |
| 824 | if (HAS_DATA_FILTERS(s, chn)) { |
| 825 | size_t data = http_get_hdrs_size(htxbuf(&chn->buf)); |
| 826 | struct filter *f; |
| 827 | |
Christopher Faulet | 401e6db | 2020-11-24 09:49:01 +0100 | [diff] [blame] | 828 | list_for_each_entry(f, &strm_flt(s)->filters, list) |
| 829 | FLT_OFF(f, chn) = data; |
Christopher Faulet | 9c44e48 | 2020-02-12 15:31:20 +0100 | [diff] [blame] | 830 | } |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 831 | |
| 832 | check_result: |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 833 | ret = handle_analyzer_result(s, chn, an_bit, ret); |
| 834 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_HTTP_ANA|STRM_EV_FLT_ANA, s); |
| 835 | return ret; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 836 | } |
| 837 | |
| 838 | /* |
| 839 | * Calls 'channel_end_analyze' callback for all filters attached to a |
| 840 | * stream. This function is called when we stop to analyze a request or a |
| 841 | * response. It is called after all other analyzers. 'channel_end_analyze' |
| 842 | * callback is resumable, so this function returns 0 if an error occurs or if it |
| 843 | * needs to wait, any other value otherwise. |
| 844 | */ |
| 845 | int |
| 846 | flt_end_analyze(struct stream *s, struct channel *chn, unsigned int an_bit) |
| 847 | { |
| 848 | int ret = 1; |
| 849 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 850 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_FLT_ANA, s); |
| 851 | |
Christopher Faulet | e600624 | 2017-03-10 11:52:44 +0100 | [diff] [blame] | 852 | /* Check if all filters attached on the stream have finished their |
| 853 | * processing on this channel. */ |
| 854 | if (!(chn->flags & CF_FLT_ANALYZE)) |
| 855 | goto sync; |
| 856 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 857 | RESUME_FILTER_LOOP(s, chn) { |
Christopher Faulet | b2e5849 | 2019-11-12 11:13:01 +0100 | [diff] [blame] | 858 | FLT_OFF(filter, chn) = 0; |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 859 | unregister_data_filter(s, chn, filter); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 860 | |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 861 | if (FLT_OPS(filter)->channel_end_analyze) { |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 862 | DBG_TRACE_DEVEL(FLT_ID(filter), STRM_EV_FLT_ANA, s); |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 863 | ret = FLT_OPS(filter)->channel_end_analyze(s, filter, chn); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 864 | if (ret <= 0) |
| 865 | BREAK_EXECUTION(s, chn, end); |
| 866 | } |
| 867 | } RESUME_FILTER_END; |
| 868 | |
Christopher Faulet | e600624 | 2017-03-10 11:52:44 +0100 | [diff] [blame] | 869 | end: |
| 870 | /* We don't remove yet this analyzer because we need to synchronize the |
| 871 | * both channels. So here, we just remove the flag CF_FLT_ANALYZE. */ |
| 872 | ret = handle_analyzer_result(s, chn, 0, ret); |
Christopher Faulet | 570f799 | 2017-07-06 15:53:02 +0200 | [diff] [blame] | 873 | if (ret) { |
Christopher Faulet | e600624 | 2017-03-10 11:52:44 +0100 | [diff] [blame] | 874 | chn->flags &= ~CF_FLT_ANALYZE; |
Christopher Faulet | 02c7b22 | 2015-12-22 12:01:29 +0100 | [diff] [blame] | 875 | |
Christopher Faulet | 570f799 | 2017-07-06 15:53:02 +0200 | [diff] [blame] | 876 | /* Pretend there is an activity on both channels. Flag on the |
| 877 | * current one will be automatically removed, so only the other |
| 878 | * one will remain. This is a way to be sure that |
| 879 | * 'channel_end_analyze' callback will have a chance to be |
| 880 | * called at least once for the other side to finish the current |
Joseph Herlant | b35ea68 | 2018-11-15 12:24:23 -0800 | [diff] [blame] | 881 | * processing. Of course, this is the filter responsibility to |
Christopher Faulet | 570f799 | 2017-07-06 15:53:02 +0200 | [diff] [blame] | 882 | * wakeup the stream if it choose to loop on this callback. */ |
| 883 | s->req.flags |= CF_WAKE_ONCE; |
| 884 | s->res.flags |= CF_WAKE_ONCE; |
| 885 | } |
| 886 | |
| 887 | |
Christopher Faulet | e600624 | 2017-03-10 11:52:44 +0100 | [diff] [blame] | 888 | sync: |
| 889 | /* Now we can check if filters have finished their work on the both |
| 890 | * channels */ |
| 891 | if (!(s->req.flags & CF_FLT_ANALYZE) && !(s->res.flags & CF_FLT_ANALYZE)) { |
| 892 | /* Sync channels by removing this analyzer for the both channels */ |
| 893 | s->req.analysers &= ~AN_REQ_FLT_END; |
| 894 | s->res.analysers &= ~AN_RES_FLT_END; |
Christopher Faulet | c6062be | 2016-10-31 11:22:37 +0100 | [diff] [blame] | 895 | |
Christopher Faulet | e600624 | 2017-03-10 11:52:44 +0100 | [diff] [blame] | 896 | /* Remove backend filters from the list */ |
| 897 | flt_stream_release(s, 1); |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 898 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_FLT_ANA, s); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 899 | } |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 900 | else { |
| 901 | DBG_TRACE_DEVEL("waiting for sync", STRM_EV_STRM_ANA|STRM_EV_FLT_ANA, s); |
| 902 | } |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 903 | return ret; |
| 904 | } |
| 905 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 906 | |
| 907 | /* |
Christopher Faulet | b2e5849 | 2019-11-12 11:13:01 +0100 | [diff] [blame] | 908 | * Calls 'tcp_payload' callback for all "data" filters attached to a |
| 909 | * stream. This function is called when some data can be forwarded in the |
| 910 | * AN_REQ_FLT_XFER_BODY and AN_RES_FLT_XFER_BODY analyzers. It takes care to |
| 911 | * update the filters and the stream offset to be sure that a filter cannot |
| 912 | * forward more data than its predecessors. A filter can choose to not forward |
| 913 | * all data. Returns a negative value if an error occurs, else the number of |
| 914 | * forwarded bytes. |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 915 | */ |
Christopher Faulet | b2e5849 | 2019-11-12 11:13:01 +0100 | [diff] [blame] | 916 | int |
| 917 | flt_tcp_payload(struct stream *s, struct channel *chn, unsigned int len) |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 918 | { |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 919 | struct filter *filter; |
Christopher Faulet | b2e5849 | 2019-11-12 11:13:01 +0100 | [diff] [blame] | 920 | unsigned long long *strm_off = &FLT_STRM_OFF(s, chn); |
| 921 | unsigned int out = co_data(chn); |
Christopher Faulet | 81340d7 | 2020-02-26 15:47:22 +0100 | [diff] [blame] | 922 | int ret, data; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 923 | |
Christopher Faulet | 81340d7 | 2020-02-26 15:47:22 +0100 | [diff] [blame] | 924 | ret = data = len - out; |
Christopher Faulet | b2e5849 | 2019-11-12 11:13:01 +0100 | [diff] [blame] | 925 | DBG_TRACE_ENTER(STRM_EV_TCP_ANA|STRM_EV_FLT_ANA, s); |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 926 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
Christopher Faulet | 401e6db | 2020-11-24 09:49:01 +0100 | [diff] [blame] | 927 | unsigned long long *flt_off = &FLT_OFF(filter, chn); |
| 928 | unsigned int offset = *flt_off - *strm_off; |
| 929 | |
| 930 | /* Call tcp_payload for filters only. Forward all data for |
| 931 | * others and update the filter offset |
| 932 | */ |
| 933 | if (!IS_DATA_FILTER(filter, chn)) { |
| 934 | *flt_off += data - offset; |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 935 | continue; |
Christopher Faulet | 401e6db | 2020-11-24 09:49:01 +0100 | [diff] [blame] | 936 | } |
| 937 | |
Christopher Faulet | b2e5849 | 2019-11-12 11:13:01 +0100 | [diff] [blame] | 938 | if (FLT_OPS(filter)->tcp_payload) { |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 939 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 940 | DBG_TRACE_DEVEL(FLT_ID(filter), STRM_EV_TCP_ANA|STRM_EV_FLT_ANA, s); |
Christopher Faulet | 71179a3 | 2020-02-07 16:40:33 +0100 | [diff] [blame] | 941 | ret = FLT_OPS(filter)->tcp_payload(s, filter, chn, out + offset, data - offset); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 942 | if (ret < 0) |
| 943 | goto end; |
Christopher Faulet | c50ee0b | 2020-02-24 16:20:09 +0100 | [diff] [blame] | 944 | data = ret + *flt_off - *strm_off; |
Christopher Faulet | b2e5849 | 2019-11-12 11:13:01 +0100 | [diff] [blame] | 945 | *flt_off += ret; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 946 | } |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 947 | } |
Christopher Faulet | 71179a3 | 2020-02-07 16:40:33 +0100 | [diff] [blame] | 948 | |
| 949 | /* Only forward data if the last filter decides to forward something */ |
| 950 | if (ret > 0) { |
| 951 | ret = data; |
| 952 | *strm_off += ret; |
| 953 | } |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 954 | end: |
Christopher Faulet | b2e5849 | 2019-11-12 11:13:01 +0100 | [diff] [blame] | 955 | DBG_TRACE_LEAVE(STRM_EV_TCP_ANA|STRM_EV_FLT_ANA, s); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 956 | return ret; |
| 957 | } |
| 958 | |
| 959 | /* |
| 960 | * Called when TCP data must be filtered on a channel. This function is the |
Christopher Faulet | 0184ea7 | 2017-01-05 14:06:34 +0100 | [diff] [blame] | 961 | * AN_REQ/RES_FLT_XFER_DATA analyzer. When called, it is responsible to forward |
| 962 | * data when the proxy is not in http mode. Behind the scene, it calls |
| 963 | * consecutively 'tcp_data' and 'tcp_forward_data' callbacks for all "data" |
| 964 | * filters attached to a stream. Returns 0 if an error occurs or if it needs to |
| 965 | * wait, any other value otherwise. |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 966 | */ |
| 967 | int |
| 968 | flt_xfer_data(struct stream *s, struct channel *chn, unsigned int an_bit) |
| 969 | { |
Christopher Faulet | b2e5849 | 2019-11-12 11:13:01 +0100 | [diff] [blame] | 970 | unsigned int len; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 971 | int ret = 1; |
| 972 | |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 973 | DBG_TRACE_ENTER(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA|STRM_EV_FLT_ANA, s); |
| 974 | |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 975 | /* If there is no "data" filters, we do nothing */ |
Christopher Faulet | b2e5849 | 2019-11-12 11:13:01 +0100 | [diff] [blame] | 976 | if (!HAS_DATA_FILTERS(s, chn)) |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 977 | goto end; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 978 | |
| 979 | /* Be sure that the output is still opened. Else we stop the data |
| 980 | * filtering. */ |
| 981 | if ((chn->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) || |
Willy Tarreau | 44a41a8 | 2018-06-19 07:16:31 +0200 | [diff] [blame] | 982 | ((chn->flags & CF_SHUTW) && (chn->to_forward || co_data(chn)))) |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 983 | goto end; |
| 984 | |
Christopher Faulet | b2e5849 | 2019-11-12 11:13:01 +0100 | [diff] [blame] | 985 | if (s->flags & SF_HTX) { |
| 986 | struct htx *htx = htxbuf(&chn->buf); |
| 987 | len = htx->data; |
| 988 | } |
| 989 | else |
| 990 | len = c_data(chn); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 991 | |
Christopher Faulet | b2e5849 | 2019-11-12 11:13:01 +0100 | [diff] [blame] | 992 | ret = flt_tcp_payload(s, chn, len); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 993 | if (ret < 0) |
| 994 | goto end; |
Willy Tarreau | bcbd393 | 2018-06-06 07:13:22 +0200 | [diff] [blame] | 995 | c_adv(chn, ret); |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 996 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 997 | /* Stop waiting data if the input in closed and no data is pending or if |
| 998 | * the output is closed. */ |
Christopher Faulet | b2e5849 | 2019-11-12 11:13:01 +0100 | [diff] [blame] | 999 | if (chn->flags & CF_SHUTW) { |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1000 | ret = 1; |
| 1001 | goto end; |
| 1002 | } |
Christopher Faulet | b2e5849 | 2019-11-12 11:13:01 +0100 | [diff] [blame] | 1003 | if (chn->flags & CF_SHUTR) { |
| 1004 | if (((s->flags & SF_HTX) && htx_is_empty(htxbuf(&chn->buf))) || c_empty(chn)) { |
| 1005 | ret = 1; |
| 1006 | goto end; |
| 1007 | } |
| 1008 | } |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1009 | |
| 1010 | /* Wait for data */ |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1011 | DBG_TRACE_DEVEL("waiting for more data", STRM_EV_STRM_ANA|STRM_EV_TCP_ANA|STRM_EV_FLT_ANA, s); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1012 | return 0; |
| 1013 | end: |
| 1014 | /* Terminate the data filtering. If <ret> is negative, an error was |
| 1015 | * encountered during the filtering. */ |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1016 | ret = handle_analyzer_result(s, chn, an_bit, ret); |
| 1017 | DBG_TRACE_LEAVE(STRM_EV_STRM_ANA|STRM_EV_TCP_ANA|STRM_EV_FLT_ANA, s); |
| 1018 | return ret; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1019 | } |
| 1020 | |
| 1021 | /* |
| 1022 | * Handles result of filter's analyzers. It returns 0 if an error occurs or if |
| 1023 | * it needs to wait, any other value otherwise. |
| 1024 | */ |
| 1025 | static int |
| 1026 | handle_analyzer_result(struct stream *s, struct channel *chn, |
| 1027 | unsigned int an_bit, int ret) |
| 1028 | { |
| 1029 | int finst; |
Christopher Faulet | e058f73 | 2019-09-06 15:24:55 +0200 | [diff] [blame] | 1030 | int status = 0; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1031 | |
| 1032 | if (ret < 0) |
| 1033 | goto return_bad_req; |
| 1034 | else if (!ret) |
| 1035 | goto wait; |
| 1036 | |
| 1037 | /* End of job, return OK */ |
| 1038 | if (an_bit) { |
| 1039 | chn->analysers &= ~an_bit; |
| 1040 | chn->analyse_exp = TICK_ETERNITY; |
| 1041 | } |
| 1042 | return 1; |
| 1043 | |
| 1044 | return_bad_req: |
| 1045 | /* An error occurs */ |
| 1046 | channel_abort(&s->req); |
| 1047 | channel_abort(&s->res); |
| 1048 | |
| 1049 | if (!(chn->flags & CF_ISRESP)) { |
Christopher Faulet | 0184ea7 | 2017-01-05 14:06:34 +0100 | [diff] [blame] | 1050 | s->req.analysers &= AN_REQ_FLT_END; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1051 | finst = SF_FINST_R; |
Christopher Faulet | e058f73 | 2019-09-06 15:24:55 +0200 | [diff] [blame] | 1052 | status = 400; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1053 | /* FIXME: incr counters */ |
| 1054 | } |
| 1055 | else { |
Christopher Faulet | 0184ea7 | 2017-01-05 14:06:34 +0100 | [diff] [blame] | 1056 | s->res.analysers &= AN_RES_FLT_END; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1057 | finst = SF_FINST_H; |
Christopher Faulet | e058f73 | 2019-09-06 15:24:55 +0200 | [diff] [blame] | 1058 | status = 502; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1059 | /* FIXME: incr counters */ |
| 1060 | } |
| 1061 | |
Christopher Faulet | 3d11969 | 2019-07-15 22:04:51 +0200 | [diff] [blame] | 1062 | if (IS_HTX_STRM(s)) { |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1063 | /* Do not do that when we are waiting for the next request */ |
Christopher Faulet | e058f73 | 2019-09-06 15:24:55 +0200 | [diff] [blame] | 1064 | if (s->txn->status > 0) |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1065 | http_reply_and_close(s, s->txn->status, NULL); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1066 | else { |
Christopher Faulet | e058f73 | 2019-09-06 15:24:55 +0200 | [diff] [blame] | 1067 | s->txn->status = status; |
| 1068 | http_reply_and_close(s, status, http_error_message(s)); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1069 | } |
| 1070 | } |
| 1071 | |
| 1072 | if (!(s->flags & SF_ERR_MASK)) |
| 1073 | s->flags |= SF_ERR_PRXCOND; |
| 1074 | if (!(s->flags & SF_FINST_MASK)) |
| 1075 | s->flags |= finst; |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1076 | DBG_TRACE_DEVEL("leaving on error", STRM_EV_FLT_ANA|STRM_EV_FLT_ERR, s); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1077 | return 0; |
| 1078 | |
| 1079 | wait: |
| 1080 | if (!(chn->flags & CF_ISRESP)) |
| 1081 | channel_dont_connect(chn); |
Christopher Faulet | eea8fc7 | 2019-11-05 16:18:10 +0100 | [diff] [blame] | 1082 | DBG_TRACE_DEVEL("wairing for more data", STRM_EV_FLT_ANA, s); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1083 | return 0; |
| 1084 | } |
| 1085 | |
| 1086 | |
| 1087 | /* Note: must not be declared <const> as its list will be overwritten. |
| 1088 | * Please take care of keeping this list alphabetically sorted, doing so helps |
| 1089 | * all code contributors. |
| 1090 | * Optional keywords are also declared with a NULL ->parse() function so that |
| 1091 | * the config parser can report an appropriate error when a known keyword was |
| 1092 | * not enabled. */ |
| 1093 | static struct cfg_kw_list cfg_kws = {ILH, { |
| 1094 | { CFG_LISTEN, "filter", parse_filter }, |
| 1095 | { 0, NULL, NULL }, |
| 1096 | } |
| 1097 | }; |
| 1098 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1099 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 1100 | |
Willy Tarreau | 172f5ce | 2018-11-26 11:21:50 +0100 | [diff] [blame] | 1101 | REGISTER_POST_CHECK(flt_init_all); |
| 1102 | REGISTER_PER_THREAD_INIT(flt_init_all_per_thread); |
| 1103 | REGISTER_PER_THREAD_DEINIT(flt_deinit_all_per_thread); |
| 1104 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1105 | /* |
| 1106 | * Local variables: |
| 1107 | * c-indent-level: 8 |
| 1108 | * c-basic-offset: 8 |
| 1109 | * End: |
| 1110 | */ |