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 | |
| 13 | #include <common/buffer.h> |
| 14 | #include <common/debug.h> |
| 15 | #include <common/cfgparse.h> |
| 16 | #include <common/compat.h> |
| 17 | #include <common/config.h> |
| 18 | #include <common/errors.h> |
Willy Tarreau | b96b77e | 2018-12-11 10:22:41 +0100 | [diff] [blame] | 19 | #include <common/htx.h> |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 20 | #include <common/initcall.h> |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 21 | #include <common/namespace.h> |
| 22 | #include <common/standard.h> |
Christopher Faulet | 71a6a8e | 2017-07-27 16:33:28 +0200 | [diff] [blame] | 23 | #include <common/hathreads.h> |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 24 | |
| 25 | #include <types/filters.h> |
| 26 | #include <types/proto_http.h> |
| 27 | |
| 28 | #include <proto/compression.h> |
| 29 | #include <proto/filters.h> |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 30 | #include <proto/flt_http_comp.h> |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 31 | #include <proto/http_htx.h> |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 32 | #include <proto/proto_http.h> |
| 33 | #include <proto/stream.h> |
| 34 | #include <proto/stream_interface.h> |
| 35 | |
| 36 | /* Pool used to allocate filters */ |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 37 | DECLARE_STATIC_POOL(pool_head_filter, "filter", sizeof(struct filter)); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 38 | |
| 39 | static int handle_analyzer_result(struct stream *s, struct channel *chn, unsigned int an_bit, int ret); |
| 40 | |
| 41 | /* - RESUME_FILTER_LOOP and RESUME_FILTER_END must always be used together. |
| 42 | * The first one begins a loop and the seconds one ends it. |
| 43 | * |
| 44 | * - BREAK_EXECUTION must be used to break the loop and set the filter from |
| 45 | * which to resume the next time. |
| 46 | * |
Bertrand Jacquin | 874a35c | 2018-09-10 21:26:07 +0100 | [diff] [blame] | 47 | * Here is an example: |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 48 | * |
| 49 | * RESUME_FILTER_LOOP(stream, channel) { |
| 50 | * ... |
| 51 | * if (cond) |
| 52 | * BREAK_EXECUTION(stream, channel, label); |
| 53 | * ... |
| 54 | * } RESUME_FILTER_END; |
| 55 | * ... |
| 56 | * label: |
| 57 | * ... |
| 58 | * |
| 59 | */ |
| 60 | #define RESUME_FILTER_LOOP(strm, chn) \ |
| 61 | do { \ |
| 62 | struct filter *filter; \ |
| 63 | \ |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 64 | if (strm_flt(strm)->current[CHN_IDX(chn)]) { \ |
| 65 | filter = strm_flt(strm)->current[CHN_IDX(chn)]; \ |
| 66 | strm_flt(strm)->current[CHN_IDX(chn)] = NULL; \ |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 67 | goto resume_execution; \ |
| 68 | } \ |
| 69 | \ |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 70 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { \ |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 71 | resume_execution: |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 72 | |
| 73 | #define RESUME_FILTER_END \ |
| 74 | } \ |
| 75 | } while(0) |
| 76 | |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 77 | #define BREAK_EXECUTION(strm, chn, label) \ |
| 78 | do { \ |
| 79 | strm_flt(strm)->current[CHN_IDX(chn)] = filter; \ |
| 80 | goto label; \ |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 81 | } while (0) |
| 82 | |
| 83 | |
| 84 | /* List head of all known filter keywords */ |
| 85 | static struct flt_kw_list flt_keywords = { |
| 86 | .list = LIST_HEAD_INIT(flt_keywords.list) |
| 87 | }; |
| 88 | |
| 89 | /* |
| 90 | * Registers the filter keyword list <kwl> as a list of valid keywords for next |
| 91 | * parsing sessions. |
| 92 | */ |
| 93 | void |
| 94 | flt_register_keywords(struct flt_kw_list *kwl) |
| 95 | { |
| 96 | LIST_ADDQ(&flt_keywords.list, &kwl->list); |
| 97 | } |
| 98 | |
| 99 | /* |
| 100 | * Returns a pointer to the filter keyword <kw>, or NULL if not found. If the |
| 101 | * keyword is found with a NULL ->parse() function, then an attempt is made to |
| 102 | * find one with a valid ->parse() function. This way it is possible to declare |
| 103 | * platform-dependant, known keywords as NULL, then only declare them as valid |
| 104 | * if some options are met. Note that if the requested keyword contains an |
| 105 | * opening parenthesis, everything from this point is ignored. |
| 106 | */ |
| 107 | struct flt_kw * |
| 108 | flt_find_kw(const char *kw) |
| 109 | { |
| 110 | int index; |
| 111 | const char *kwend; |
| 112 | struct flt_kw_list *kwl; |
| 113 | struct flt_kw *ret = NULL; |
| 114 | |
| 115 | kwend = strchr(kw, '('); |
| 116 | if (!kwend) |
| 117 | kwend = kw + strlen(kw); |
| 118 | |
| 119 | list_for_each_entry(kwl, &flt_keywords.list, list) { |
| 120 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 121 | if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) && |
| 122 | kwl->kw[index].kw[kwend-kw] == 0) { |
| 123 | if (kwl->kw[index].parse) |
| 124 | return &kwl->kw[index]; /* found it !*/ |
| 125 | else |
| 126 | ret = &kwl->kw[index]; /* may be OK */ |
| 127 | } |
| 128 | } |
| 129 | } |
| 130 | return ret; |
| 131 | } |
| 132 | |
| 133 | /* |
| 134 | * Dumps all registered "filter" keywords to the <out> string pointer. The |
| 135 | * unsupported keywords are only dumped if their supported form was not found. |
| 136 | */ |
| 137 | void |
| 138 | flt_dump_kws(char **out) |
| 139 | { |
| 140 | struct flt_kw_list *kwl; |
| 141 | int index; |
| 142 | |
| 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, |
| 178 | struct proxy *defpx, const char *file, int line, char **err) |
| 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 | } |
| 188 | if (!strcmp(args[0], "filter")) { |
| 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 | |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 242 | LIST_ADDQ(&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; |
| 292 | int err_code = 0; |
| 293 | |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 294 | for (px = proxies_list; px; px = px->next) { |
Christopher Faulet | 73e7d1c | 2020-11-02 16:08:09 +0100 | [diff] [blame] | 295 | if (px->state == PR_STSTOPPED) { |
| 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 | 73e7d1c | 2020-11-02 16:08:09 +0100 | [diff] [blame] | 318 | if (px->state == PR_STSTOPPED) |
| 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 | df36d43 | 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); |
| 362 | LIST_DEL(&fconf->list); |
| 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 | df36d43 | 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 | |
| 402 | f = pool_alloc(pool_head_filter); |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 403 | if (!f) /* not enough memory */ |
| 404 | return -1; |
| 405 | memset(f, 0, sizeof(*f)); |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 406 | f->config = fconf; |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 407 | f->flags |= flags; |
Christopher Faulet | 31ed32d | 2016-06-21 11:42:37 +0200 | [diff] [blame] | 408 | |
| 409 | if (FLT_OPS(f)->attach) { |
| 410 | int ret = FLT_OPS(f)->attach(s, f); |
| 411 | if (ret <= 0) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 412 | pool_free(pool_head_filter, f); |
Christopher Faulet | 31ed32d | 2016-06-21 11:42:37 +0200 | [diff] [blame] | 413 | return ret; |
| 414 | } |
| 415 | } |
| 416 | |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 417 | LIST_ADDQ(&strm_flt(s)->filters, &f->list); |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 418 | strm_flt(s)->flags |= STRM_FLT_FL_HAS_FILTERS; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 419 | return 0; |
| 420 | } |
| 421 | |
| 422 | /* |
| 423 | * Called when a stream is created. It attaches all frontend filters to the |
| 424 | * stream. Returns -1 if an error occurs, 0 otherwise. |
| 425 | */ |
| 426 | int |
| 427 | flt_stream_init(struct stream *s) |
| 428 | { |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 429 | struct flt_conf *fconf; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 430 | |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 431 | memset(strm_flt(s), 0, sizeof(*strm_flt(s))); |
| 432 | LIST_INIT(&strm_flt(s)->filters); |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 433 | list_for_each_entry(fconf, &strm_fe(s)->filter_configs, list) { |
| 434 | if (flt_stream_add_filter(s, fconf, 0) < 0) |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 435 | return -1; |
| 436 | } |
| 437 | return 0; |
| 438 | } |
| 439 | |
| 440 | /* |
| 441 | * Called when a stream is closed or when analyze ends (For an HTTP stream, this |
| 442 | * happens after each request/response exchange). When analyze ends, backend |
| 443 | * filters are removed. When the stream is closed, all filters attached to the |
| 444 | * stream are removed. |
| 445 | */ |
| 446 | void |
| 447 | flt_stream_release(struct stream *s, int only_backend) |
| 448 | { |
| 449 | struct filter *filter, *back; |
| 450 | |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 451 | list_for_each_entry_safe(filter, back, &strm_flt(s)->filters, list) { |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 452 | if (!only_backend || (filter->flags & FLT_FL_IS_BACKEND_FILTER)) { |
Christopher Faulet | 31ed32d | 2016-06-21 11:42:37 +0200 | [diff] [blame] | 453 | if (FLT_OPS(filter)->detach) |
| 454 | FLT_OPS(filter)->detach(s, filter); |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 455 | LIST_DEL(&filter->list); |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 456 | pool_free(pool_head_filter, filter); |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 457 | } |
| 458 | } |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 459 | if (LIST_ISEMPTY(&strm_flt(s)->filters)) |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 460 | strm_flt(s)->flags &= ~STRM_FLT_FL_HAS_FILTERS; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 461 | } |
| 462 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 463 | /* |
| 464 | * Calls 'stream_start' for all filters attached to a stream. This happens when |
| 465 | * the stream is created, just after calling flt_stream_init |
| 466 | * function. Returns -1 if an error occurs, 0 otherwise. |
| 467 | */ |
| 468 | int |
| 469 | flt_stream_start(struct stream *s) |
| 470 | { |
| 471 | struct filter *filter; |
| 472 | |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 473 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 474 | 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] | 475 | return -1; |
| 476 | } |
| 477 | return 0; |
| 478 | } |
| 479 | |
| 480 | /* |
| 481 | * Calls 'stream_stop' for all filters attached to a stream. This happens when |
| 482 | * the stream is stopped, just before calling flt_stream_release function. |
| 483 | */ |
| 484 | void |
| 485 | flt_stream_stop(struct stream *s) |
| 486 | { |
| 487 | struct filter *filter; |
| 488 | |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 489 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 490 | if (FLT_OPS(filter)->stream_stop) |
| 491 | FLT_OPS(filter)->stream_stop(s, filter); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 492 | } |
| 493 | } |
| 494 | |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 495 | /* |
Christopher Faulet | a00d817 | 2016-11-10 14:58:05 +0100 | [diff] [blame] | 496 | * Calls 'check_timeouts' for all filters attached to a stream. This happens when |
| 497 | * the stream is woken up because of expired timer. |
| 498 | */ |
| 499 | void |
| 500 | flt_stream_check_timeouts(struct stream *s) |
| 501 | { |
| 502 | struct filter *filter; |
| 503 | |
| 504 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
| 505 | if (FLT_OPS(filter)->check_timeouts) |
| 506 | FLT_OPS(filter)->check_timeouts(s, filter); |
| 507 | } |
| 508 | } |
| 509 | |
| 510 | /* |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 511 | * 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] | 512 | * are not the same, this function attaches all backend filters to the |
| 513 | * stream. Returns -1 if an error occurs, 0 otherwise. |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 514 | */ |
| 515 | int |
| 516 | flt_set_stream_backend(struct stream *s, struct proxy *be) |
| 517 | { |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 518 | struct flt_conf *fconf; |
Christopher Faulet | 31ed32d | 2016-06-21 11:42:37 +0200 | [diff] [blame] | 519 | struct filter *filter; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 520 | |
| 521 | if (strm_fe(s) == be) |
Christopher Faulet | 31ed32d | 2016-06-21 11:42:37 +0200 | [diff] [blame] | 522 | goto end; |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 523 | |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 524 | list_for_each_entry(fconf, &be->filter_configs, list) { |
| 525 | 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] | 526 | return -1; |
| 527 | } |
Christopher Faulet | 31ed32d | 2016-06-21 11:42:37 +0200 | [diff] [blame] | 528 | |
| 529 | end: |
| 530 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
| 531 | if (FLT_OPS(filter)->stream_set_backend && |
| 532 | FLT_OPS(filter)->stream_set_backend(s, filter, be) < 0) |
| 533 | return -1; |
| 534 | } |
| 535 | |
Christopher Faulet | 92d3638 | 2015-11-05 13:35:03 +0100 | [diff] [blame] | 536 | return 0; |
| 537 | } |
| 538 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 539 | /* |
| 540 | * Calls 'http_data' callback for all "data" filters attached to a stream. This |
| 541 | * function is called when incoming data are available (excluding chunks |
| 542 | * envelope for chunked messages) in the AN_REQ_HTTP_XFER_BODY and |
| 543 | * AN_RES_HTTP_XFER_BODY analyzers. It takes care to update the next offset of |
| 544 | * filters and adjusts available data to be sure that a filter cannot parse more |
| 545 | * data than its predecessors. A filter can choose to not consume all available |
| 546 | * data. Returns -1 if an error occurs, the number of consumed bytes otherwise. |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 547 | * |
| 548 | * DEPRECATED FUNCTION - CALLED FROM LEGACY HTTP ANALYZERS |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 549 | */ |
| 550 | int |
| 551 | flt_http_data(struct stream *s, struct http_msg *msg) |
| 552 | { |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 553 | struct filter *filter; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 554 | unsigned int buf_i; |
Christopher Faulet | 55048a4 | 2016-06-21 10:44:32 +0200 | [diff] [blame] | 555 | int delta = 0, ret = 0; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 556 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 557 | /* Save buffer state */ |
Willy Tarreau | 44a41a8 | 2018-06-19 07:16:31 +0200 | [diff] [blame] | 558 | buf_i = ci_data(msg->chn); |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 559 | |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 560 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 561 | unsigned int *nxt; |
| 562 | |
| 563 | /* Call "data" filters only */ |
| 564 | if (!IS_DATA_FILTER(filter, msg->chn)) |
| 565 | continue; |
| 566 | |
Christopher Faulet | 2fb2880 | 2015-12-01 10:40:57 +0100 | [diff] [blame] | 567 | /* If the HTTP parser is ahead, we update the next offset of the |
| 568 | * current filter. This happens for chunked messages, at the |
Joseph Herlant | b35ea68 | 2018-11-15 12:24:23 -0800 | [diff] [blame] | 569 | * beginning of a new chunk. */ |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 570 | nxt = &FLT_NXT(filter, msg->chn); |
| 571 | if (msg->next > *nxt) |
| 572 | *nxt = msg->next; |
| 573 | |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 574 | if (FLT_OPS(filter)->http_data) { |
Willy Tarreau | 44a41a8 | 2018-06-19 07:16:31 +0200 | [diff] [blame] | 575 | unsigned int i = ci_data(msg->chn); |
Christopher Faulet | 55048a4 | 2016-06-21 10:44:32 +0200 | [diff] [blame] | 576 | |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 577 | ret = FLT_OPS(filter)->http_data(s, filter, msg); |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 578 | if (ret < 0) |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 579 | break; |
Willy Tarreau | 44a41a8 | 2018-06-19 07:16:31 +0200 | [diff] [blame] | 580 | delta += (int)(ci_data(msg->chn) - i); |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 581 | |
| 582 | /* Update the next offset of the current filter */ |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 583 | *nxt += ret; |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 584 | |
| 585 | /* And set this value as the bound for the next |
| 586 | * filter. It will not able to parse more data than this |
| 587 | * one. */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 588 | b_set_data(&msg->chn->buf, co_data(msg->chn) + *nxt); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 589 | } |
| 590 | else { |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 591 | /* Consume all available data and update the next offset |
| 592 | * of the current filter. buf->i is untouched here. */ |
Willy Tarreau | 44a41a8 | 2018-06-19 07:16:31 +0200 | [diff] [blame] | 593 | ret = MIN(msg->chunk_len + msg->next, ci_data(msg->chn)) - *nxt; |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 594 | *nxt += ret; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 595 | } |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 596 | } |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 597 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 598 | /* Restore the original buffer state */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 599 | b_set_data(&msg->chn->buf, co_data(msg->chn) + buf_i + delta); |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 600 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 601 | return ret; |
| 602 | } |
| 603 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 604 | /* |
| 605 | * Calls 'http_chunk_trailers' callback for all "data" filters attached to a |
| 606 | * stream. This function is called for chunked messages only when a part of the |
| 607 | * trailers was parsed in the AN_REQ_HTTP_XFER_BODY and AN_RES_HTTP_XFER_BODY |
| 608 | * analyzers. Filters can know how much data were parsed by the HTTP parsing |
| 609 | * until the last call with the msg->sol value. Returns a negative value if an |
| 610 | * error occurs, any other value otherwise. |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 611 | * |
| 612 | * DEPRECATED FUNCTION - CALLED FROM LEGACY HTTP ANALYZERS |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 613 | */ |
| 614 | int |
| 615 | flt_http_chunk_trailers(struct stream *s, struct http_msg *msg) |
| 616 | { |
Christopher Faulet | 2fb2880 | 2015-12-01 10:40:57 +0100 | [diff] [blame] | 617 | struct filter *filter; |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 618 | int ret = 1; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 619 | |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 620 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 621 | unsigned int *nxt; |
| 622 | |
| 623 | /* Call "data" filters only */ |
| 624 | if (!IS_DATA_FILTER(filter, msg->chn)) |
| 625 | continue; |
| 626 | |
Christopher Faulet | 2fb2880 | 2015-12-01 10:40:57 +0100 | [diff] [blame] | 627 | /* Be sure to set the next offset of the filter at the right |
| 628 | * place. This is really useful when the first part of the |
| 629 | * trailers was parsed. */ |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 630 | nxt = &FLT_NXT(filter, msg->chn); |
| 631 | *nxt = msg->next; |
| 632 | |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 633 | if (FLT_OPS(filter)->http_chunk_trailers) { |
| 634 | ret = FLT_OPS(filter)->http_chunk_trailers(s, filter, msg); |
Christopher Faulet | 2fb2880 | 2015-12-01 10:40:57 +0100 | [diff] [blame] | 635 | if (ret < 0) |
| 636 | break; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 637 | } |
Christopher Faulet | 2fb2880 | 2015-12-01 10:40:57 +0100 | [diff] [blame] | 638 | /* Update the next offset of the current filter. Here all data |
| 639 | * are always consumed. */ |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 640 | *nxt += msg->sol; |
Christopher Faulet | 2fb2880 | 2015-12-01 10:40:57 +0100 | [diff] [blame] | 641 | } |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 642 | return ret; |
| 643 | } |
| 644 | |
| 645 | /* |
| 646 | * Calls 'http_end' callback for all filters attached to a stream. All filters |
| 647 | * are called here, but only if there is at least one "data" filter. This |
| 648 | * functions is called when all data were parsed and forwarded. 'http_end' |
| 649 | * callback is resumable, so this function returns a negative value if an error |
| 650 | * occurs, 0 if it needs to wait for some reason, any other value otherwise. |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 651 | * |
| 652 | * Be carefull, this function can be called from the HTTP legacy analyzers or |
| 653 | * from HTX analyzers. If your filter is compatible with the two modes, use |
| 654 | * IS_HTX_STRM macro on the stream. |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 655 | */ |
| 656 | int |
| 657 | flt_http_end(struct stream *s, struct http_msg *msg) |
| 658 | { |
| 659 | int ret = 1; |
| 660 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 661 | RESUME_FILTER_LOOP(s, msg->chn) { |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 662 | if (FLT_OPS(filter)->http_end) { |
| 663 | ret = FLT_OPS(filter)->http_end(s, filter, msg); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 664 | if (ret <= 0) |
| 665 | BREAK_EXECUTION(s, msg->chn, end); |
| 666 | } |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 667 | } RESUME_FILTER_END; |
| 668 | end: |
| 669 | return ret; |
| 670 | } |
| 671 | |
| 672 | /* |
| 673 | * Calls 'http_reset' callback for all filters attached to a stream. This |
| 674 | * happens when a 100-continue response is received. |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 675 | * |
| 676 | * Be carefull, this function can be called from the HTTP legacy analyzers or |
| 677 | * from HTX analyzers. If your filter is compatible with the two modes, use |
| 678 | * IS_HTX_STRM macro on the stream. |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 679 | */ |
| 680 | void |
| 681 | flt_http_reset(struct stream *s, struct http_msg *msg) |
| 682 | { |
| 683 | struct filter *filter; |
| 684 | |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 685 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 686 | if (FLT_OPS(filter)->http_reset) |
| 687 | FLT_OPS(filter)->http_reset(s, filter, msg); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 688 | } |
| 689 | } |
| 690 | |
| 691 | /* |
| 692 | * Calls 'http_reply' callback for all filters attached to a stream when HA |
| 693 | * decides to stop the HTTP message processing. |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 694 | * |
| 695 | * Be carefull, this function can be called from the HTTP legacy analyzers or |
| 696 | * from HTX analyzers. If your filter is compatible with the two modes, use |
| 697 | * IS_HTX_STRM macro on the stream. |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 698 | */ |
| 699 | void |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 700 | flt_http_reply(struct stream *s, short status, const struct buffer *msg) |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 701 | { |
| 702 | struct filter *filter; |
| 703 | |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 704 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 705 | if (FLT_OPS(filter)->http_reply) |
| 706 | FLT_OPS(filter)->http_reply(s, filter, status, msg); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 707 | } |
| 708 | } |
| 709 | |
| 710 | /* |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 711 | * Calls 'http_forward_data' callback for all "data" filters attached to a HTTP |
| 712 | * legacy stream. This function is called when some data can be forwarded in the |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 713 | * AN_REQ_HTTP_XFER_BODY and AN_RES_HTTP_XFER_BODY analyzers. It takes care to |
| 714 | * update the forward offset of filters and adjusts "forwardable" data to be |
| 715 | * sure that a filter cannot forward more data than its predecessors. A filter |
| 716 | * can choose to not forward all parsed data. Returns a negative value if an |
| 717 | * error occurs, else the number of forwarded bytes. |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 718 | * |
| 719 | * DEPRECATED FUNCTION - CALLED FROM LEGACY HTTP ANALYZERS |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 720 | */ |
| 721 | int |
| 722 | flt_http_forward_data(struct stream *s, struct http_msg *msg, unsigned int len) |
| 723 | { |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 724 | struct filter *filter; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 725 | int ret = len; |
| 726 | |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 727 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 728 | unsigned int *nxt, *fwd; |
| 729 | |
| 730 | /* Call "data" filters only */ |
| 731 | if (!IS_DATA_FILTER(filter, msg->chn)) |
| 732 | continue; |
| 733 | |
Christopher Faulet | 2fb2880 | 2015-12-01 10:40:57 +0100 | [diff] [blame] | 734 | /* If the HTTP parser is ahead, we update the next offset of the |
| 735 | * current filter. This happens for chunked messages, when the |
| 736 | * chunk envelope is parsed. */ |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 737 | nxt = &FLT_NXT(filter, msg->chn); |
| 738 | fwd = &FLT_FWD(filter, msg->chn); |
| 739 | if (msg->next > *nxt) |
| 740 | *nxt = msg->next; |
| 741 | |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 742 | if (FLT_OPS(filter)->http_forward_data) { |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 743 | /* Remove bytes that the current filter considered as |
| 744 | * forwarded */ |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 745 | ret = FLT_OPS(filter)->http_forward_data(s, filter, msg, ret - *fwd); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 746 | if (ret < 0) |
| 747 | goto end; |
| 748 | } |
| 749 | |
| 750 | /* Adjust bytes that the current filter considers as |
| 751 | * forwarded */ |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 752 | *fwd += ret; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 753 | |
| 754 | /* And set this value as the bound for the next filter. It will |
| 755 | * not able to forward more data than the current one. */ |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 756 | ret = *fwd; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 757 | } |
| 758 | |
| 759 | if (!ret) |
| 760 | goto end; |
| 761 | |
| 762 | /* Finally, adjust filters offsets by removing data that HAProxy will |
| 763 | * forward. */ |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 764 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 765 | if (!IS_DATA_FILTER(filter, msg->chn)) |
| 766 | continue; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 767 | FLT_NXT(filter, msg->chn) -= ret; |
| 768 | FLT_FWD(filter, msg->chn) -= ret; |
| 769 | } |
| 770 | end: |
| 771 | return ret; |
| 772 | } |
| 773 | |
| 774 | /* |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 775 | * Calls 'http_payload' callback for all "data" filters attached to a |
| 776 | * stream. This function is called when some data can be forwarded in the |
| 777 | * AN_REQ_HTTP_XFER_BODY and AN_RES_HTTP_XFER_BODY analyzers. It takes care to |
| 778 | * update the filters and the stream offset to be sure that a filter cannot |
| 779 | * forward more data than its predecessors. A filter can choose to not forward |
| 780 | * all data. Returns a negative value if an error occurs, else the number of |
| 781 | * forwarded bytes. |
| 782 | * |
| 783 | * Be carefull, this callback is only called from HTX analyzers. So the |
| 784 | * channel's buffer must be considered as an HTX structured. Of course, your |
| 785 | * filter must support HTX streams. |
| 786 | */ |
| 787 | int |
| 788 | flt_http_payload(struct stream *s, struct http_msg *msg, unsigned int len) |
| 789 | { |
| 790 | struct filter *filter; |
| 791 | unsigned long long *strm_off = &FLT_STRM_OFF(s, msg->chn); |
Christopher Faulet | 421e769 | 2019-06-13 11:16:45 +0200 | [diff] [blame] | 792 | unsigned int out = co_data(msg->chn); |
Christopher Faulet | 11920a4 | 2020-02-26 15:47:22 +0100 | [diff] [blame] | 793 | int ret, data; |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 794 | |
Christopher Faulet | 11920a4 | 2020-02-26 15:47:22 +0100 | [diff] [blame] | 795 | ret = data = len - out; |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 796 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
| 797 | /* Call "data" filters only */ |
| 798 | if (!IS_DATA_FILTER(filter, msg->chn)) |
| 799 | continue; |
| 800 | if (FLT_OPS(filter)->http_payload) { |
| 801 | unsigned long long *flt_off = &FLT_OFF(filter, msg->chn); |
| 802 | unsigned int offset = *flt_off - *strm_off; |
| 803 | |
Christopher Faulet | a2f67b3 | 2020-02-07 16:40:33 +0100 | [diff] [blame] | 804 | 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] | 805 | if (ret < 0) |
| 806 | goto end; |
Christopher Faulet | 31df636 | 2020-02-24 16:20:09 +0100 | [diff] [blame] | 807 | data = ret + *flt_off - *strm_off; |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 808 | *flt_off += ret; |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 809 | } |
| 810 | } |
Christopher Faulet | a2f67b3 | 2020-02-07 16:40:33 +0100 | [diff] [blame] | 811 | |
| 812 | /* Only forward data if the last filter decides to forward something */ |
| 813 | if (ret > 0) { |
| 814 | ret = data; |
| 815 | *strm_off += ret; |
| 816 | } |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 817 | end: |
| 818 | return ret; |
| 819 | } |
| 820 | |
| 821 | /* |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 822 | * Calls 'channel_start_analyze' callback for all filters attached to a |
| 823 | * stream. This function is called when we start to analyze a request or a |
| 824 | * response. For frontend filters, it is called before all other analyzers. For |
| 825 | * backend ones, it is called before all backend |
| 826 | * analyzers. 'channel_start_analyze' callback is resumable, so this function |
| 827 | * returns 0 if an error occurs or if it needs to wait, any other value |
| 828 | * otherwise. |
| 829 | */ |
| 830 | int |
| 831 | flt_start_analyze(struct stream *s, struct channel *chn, unsigned int an_bit) |
| 832 | { |
| 833 | int ret = 1; |
| 834 | |
| 835 | /* If this function is called, this means there is at least one filter, |
| 836 | * so we do not need to check the filter list's emptiness. */ |
| 837 | |
Christopher Faulet | e600624 | 2017-03-10 11:52:44 +0100 | [diff] [blame] | 838 | /* Set flag on channel to tell that the channel is filtered */ |
| 839 | chn->flags |= CF_FLT_ANALYZE; |
| 840 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 841 | RESUME_FILTER_LOOP(s, chn) { |
Christopher Faulet | 0184ea7 | 2017-01-05 14:06:34 +0100 | [diff] [blame] | 842 | if (!(chn->flags & CF_ISRESP)) { |
| 843 | if (an_bit == AN_REQ_FLT_START_BE && |
| 844 | !(filter->flags & FLT_FL_IS_BACKEND_FILTER)) |
| 845 | continue; |
| 846 | } |
| 847 | else { |
| 848 | if (an_bit == AN_RES_FLT_START_BE && |
| 849 | !(filter->flags & FLT_FL_IS_BACKEND_FILTER)) |
| 850 | continue; |
| 851 | } |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 852 | |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 853 | FLT_NXT(filter, chn) = 0; |
| 854 | FLT_FWD(filter, chn) = 0; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 855 | |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 856 | if (FLT_OPS(filter)->channel_start_analyze) { |
| 857 | ret = FLT_OPS(filter)->channel_start_analyze(s, filter, chn); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 858 | if (ret <= 0) |
| 859 | BREAK_EXECUTION(s, chn, end); |
| 860 | } |
| 861 | } RESUME_FILTER_END; |
| 862 | |
| 863 | end: |
| 864 | return handle_analyzer_result(s, chn, an_bit, ret); |
| 865 | } |
| 866 | |
| 867 | /* |
Christopher Faulet | 3a394fa | 2016-05-11 17:13:39 +0200 | [diff] [blame] | 868 | * Calls 'channel_pre_analyze' callback for all filters attached to a |
| 869 | * stream. This function is called BEFORE each analyzer attached to a channel, |
| 870 | * expects analyzers responsible for data sending. 'channel_pre_analyze' |
| 871 | * callback is resumable, so this function returns 0 if an error occurs or if it |
| 872 | * needs to wait, any other value otherwise. |
| 873 | * |
| 874 | * Note this function can be called many times for the same analyzer. In fact, |
| 875 | * it is called until the analyzer finishes its processing. |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 876 | */ |
| 877 | int |
Christopher Faulet | 3a394fa | 2016-05-11 17:13:39 +0200 | [diff] [blame] | 878 | 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] | 879 | { |
| 880 | int ret = 1; |
| 881 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 882 | RESUME_FILTER_LOOP(s, chn) { |
Christopher Faulet | 3a394fa | 2016-05-11 17:13:39 +0200 | [diff] [blame] | 883 | if (FLT_OPS(filter)->channel_pre_analyze && (filter->pre_analyzers & an_bit)) { |
| 884 | ret = FLT_OPS(filter)->channel_pre_analyze(s, filter, chn, an_bit); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 885 | if (ret <= 0) |
| 886 | BREAK_EXECUTION(s, chn, check_result); |
| 887 | } |
| 888 | } RESUME_FILTER_END; |
| 889 | |
| 890 | check_result: |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 891 | return handle_analyzer_result(s, chn, 0, ret); |
| 892 | } |
| 893 | |
| 894 | /* |
Christopher Faulet | 3a394fa | 2016-05-11 17:13:39 +0200 | [diff] [blame] | 895 | * Calls 'channel_post_analyze' callback for all filters attached to a |
| 896 | * stream. This function is called AFTER each analyzer attached to a channel, |
| 897 | * expects analyzers responsible for data sending. 'channel_post_analyze' |
| 898 | * callback is NOT resumable, so this function returns a 0 if an error occurs, |
| 899 | * any other value otherwise. |
| 900 | * |
| 901 | * Here, AFTER means when the analyzer finishes its processing. |
| 902 | */ |
| 903 | int |
| 904 | flt_post_analyze(struct stream *s, struct channel *chn, unsigned int an_bit) |
| 905 | { |
| 906 | struct filter *filter; |
| 907 | int ret = 1; |
| 908 | |
| 909 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
| 910 | if (FLT_OPS(filter)->channel_post_analyze && (filter->post_analyzers & an_bit)) { |
| 911 | ret = FLT_OPS(filter)->channel_post_analyze(s, filter, chn, an_bit); |
| 912 | if (ret < 0) |
| 913 | break; |
| 914 | } |
| 915 | } |
| 916 | return handle_analyzer_result(s, chn, 0, ret); |
| 917 | } |
| 918 | |
| 919 | /* |
Christopher Faulet | 0184ea7 | 2017-01-05 14:06:34 +0100 | [diff] [blame] | 920 | * This function is the AN_REQ/RES_FLT_HTTP_HDRS analyzer, used to filter HTTP |
| 921 | * headers or a request or a response. Returns 0 if an error occurs or if it |
| 922 | * needs to wait, any other value otherwise. |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 923 | * |
| 924 | * Be carefull, this function can be called from the HTTP legacy analyzers or |
| 925 | * from HTX analyzers. If your filter is compatible with the two modes, use |
| 926 | * IS_HTX_STRM macro on the stream. |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 927 | */ |
| 928 | int |
| 929 | flt_analyze_http_headers(struct stream *s, struct channel *chn, unsigned int an_bit) |
| 930 | { |
Christopher Faulet | 1339d74 | 2016-05-11 16:48:33 +0200 | [diff] [blame] | 931 | struct filter *filter; |
| 932 | struct http_msg *msg; |
| 933 | int ret = 1; |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 934 | |
Christopher Faulet | 1339d74 | 2016-05-11 16:48:33 +0200 | [diff] [blame] | 935 | msg = ((chn->flags & CF_ISRESP) ? &s->txn->rsp : &s->txn->req); |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 936 | RESUME_FILTER_LOOP(s, chn) { |
Christopher Faulet | 1339d74 | 2016-05-11 16:48:33 +0200 | [diff] [blame] | 937 | if (FLT_OPS(filter)->http_headers) { |
| 938 | ret = FLT_OPS(filter)->http_headers(s, filter, msg); |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 939 | if (ret <= 0) |
| 940 | BREAK_EXECUTION(s, chn, check_result); |
| 941 | } |
| 942 | } RESUME_FILTER_END; |
| 943 | |
Christopher Faulet | df7d681 | 2020-02-12 15:31:20 +0100 | [diff] [blame] | 944 | if (IS_HTX_STRM(s)) { |
| 945 | if (HAS_DATA_FILTERS(s, chn)) { |
| 946 | size_t data = http_get_hdrs_size(htxbuf(&chn->buf)); |
| 947 | struct filter *f; |
| 948 | |
| 949 | list_for_each_entry(f, &strm_flt(s)->filters, list) { |
| 950 | if (IS_DATA_FILTER(f, chn)) |
| 951 | FLT_OFF(f, chn) = data; |
| 952 | } |
| 953 | } |
| 954 | } |
Christopher Faulet | 75bc913 | 2018-11-30 15:18:09 +0100 | [diff] [blame] | 955 | else { |
| 956 | /* We increase next offset of all "data" filters after all processing on |
| 957 | * headers because any filter can alter them. So the definitive size of |
| 958 | * headers (msg->sov) is only known when all filters have been |
| 959 | * called. */ |
| 960 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
| 961 | /* Handle "data" filters only */ |
| 962 | if (!IS_DATA_FILTER(filter, chn)) |
| 963 | continue; |
| 964 | FLT_NXT(filter, chn) = msg->sov; |
| 965 | } |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 966 | } |
| 967 | |
| 968 | check_result: |
| 969 | return handle_analyzer_result(s, chn, an_bit, ret); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 970 | } |
| 971 | |
| 972 | /* |
| 973 | * Calls 'channel_end_analyze' callback for all filters attached to a |
| 974 | * stream. This function is called when we stop to analyze a request or a |
| 975 | * response. It is called after all other analyzers. 'channel_end_analyze' |
| 976 | * callback is resumable, so this function returns 0 if an error occurs or if it |
| 977 | * needs to wait, any other value otherwise. |
| 978 | */ |
| 979 | int |
| 980 | flt_end_analyze(struct stream *s, struct channel *chn, unsigned int an_bit) |
| 981 | { |
| 982 | int ret = 1; |
| 983 | |
Christopher Faulet | e600624 | 2017-03-10 11:52:44 +0100 | [diff] [blame] | 984 | /* Check if all filters attached on the stream have finished their |
| 985 | * processing on this channel. */ |
| 986 | if (!(chn->flags & CF_FLT_ANALYZE)) |
| 987 | goto sync; |
| 988 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 989 | RESUME_FILTER_LOOP(s, chn) { |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 990 | FLT_NXT(filter, chn) = 0; |
| 991 | FLT_FWD(filter, chn) = 0; |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 992 | unregister_data_filter(s, chn, filter); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 993 | |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 994 | if (FLT_OPS(filter)->channel_end_analyze) { |
| 995 | ret = FLT_OPS(filter)->channel_end_analyze(s, filter, chn); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 996 | if (ret <= 0) |
| 997 | BREAK_EXECUTION(s, chn, end); |
| 998 | } |
| 999 | } RESUME_FILTER_END; |
| 1000 | |
Christopher Faulet | e600624 | 2017-03-10 11:52:44 +0100 | [diff] [blame] | 1001 | end: |
| 1002 | /* We don't remove yet this analyzer because we need to synchronize the |
| 1003 | * both channels. So here, we just remove the flag CF_FLT_ANALYZE. */ |
| 1004 | ret = handle_analyzer_result(s, chn, 0, ret); |
Christopher Faulet | 570f799 | 2017-07-06 15:53:02 +0200 | [diff] [blame] | 1005 | if (ret) { |
Christopher Faulet | e600624 | 2017-03-10 11:52:44 +0100 | [diff] [blame] | 1006 | chn->flags &= ~CF_FLT_ANALYZE; |
Christopher Faulet | 02c7b22 | 2015-12-22 12:01:29 +0100 | [diff] [blame] | 1007 | |
Christopher Faulet | 570f799 | 2017-07-06 15:53:02 +0200 | [diff] [blame] | 1008 | /* Pretend there is an activity on both channels. Flag on the |
| 1009 | * current one will be automatically removed, so only the other |
| 1010 | * one will remain. This is a way to be sure that |
| 1011 | * 'channel_end_analyze' callback will have a chance to be |
| 1012 | * called at least once for the other side to finish the current |
Joseph Herlant | b35ea68 | 2018-11-15 12:24:23 -0800 | [diff] [blame] | 1013 | * processing. Of course, this is the filter responsibility to |
Christopher Faulet | 570f799 | 2017-07-06 15:53:02 +0200 | [diff] [blame] | 1014 | * wakeup the stream if it choose to loop on this callback. */ |
| 1015 | s->req.flags |= CF_WAKE_ONCE; |
| 1016 | s->res.flags |= CF_WAKE_ONCE; |
| 1017 | } |
| 1018 | |
| 1019 | |
Christopher Faulet | e600624 | 2017-03-10 11:52:44 +0100 | [diff] [blame] | 1020 | sync: |
| 1021 | /* Now we can check if filters have finished their work on the both |
| 1022 | * channels */ |
| 1023 | if (!(s->req.flags & CF_FLT_ANALYZE) && !(s->res.flags & CF_FLT_ANALYZE)) { |
| 1024 | /* Sync channels by removing this analyzer for the both channels */ |
| 1025 | s->req.analysers &= ~AN_REQ_FLT_END; |
| 1026 | s->res.analysers &= ~AN_RES_FLT_END; |
Christopher Faulet | c6062be | 2016-10-31 11:22:37 +0100 | [diff] [blame] | 1027 | |
Christopher Faulet | e600624 | 2017-03-10 11:52:44 +0100 | [diff] [blame] | 1028 | /* Clean up the HTTP transaction if needed */ |
| 1029 | if (s->txn && (s->txn->flags & TX_WAIT_CLEANUP)) |
| 1030 | http_end_txn_clean_session(s); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1031 | |
Christopher Faulet | e600624 | 2017-03-10 11:52:44 +0100 | [diff] [blame] | 1032 | /* Remove backend filters from the list */ |
| 1033 | flt_stream_release(s, 1); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1034 | } |
Christopher Faulet | 2b553de | 2017-03-30 11:13:22 +0200 | [diff] [blame] | 1035 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1036 | return ret; |
| 1037 | } |
| 1038 | |
| 1039 | |
| 1040 | /* |
| 1041 | * Calls 'tcp_data' callback for all "data" filters attached to a stream. This |
| 1042 | * function is called when incoming data are available. It takes care to update |
| 1043 | * the next offset of filters and adjusts available data to be sure that a |
| 1044 | * filter cannot parse more data than its predecessors. A filter can choose to |
| 1045 | * not consume all available data. Returns -1 if an error occurs, the number of |
| 1046 | * consumed bytes otherwise. |
| 1047 | */ |
| 1048 | static int |
| 1049 | flt_data(struct stream *s, struct channel *chn) |
| 1050 | { |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 1051 | struct filter *filter; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1052 | unsigned int buf_i; |
Christopher Faulet | 55048a4 | 2016-06-21 10:44:32 +0200 | [diff] [blame] | 1053 | int delta = 0, ret = 0; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1054 | |
| 1055 | /* Save buffer state */ |
Willy Tarreau | 44a41a8 | 2018-06-19 07:16:31 +0200 | [diff] [blame] | 1056 | buf_i = ci_data(chn); |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 1057 | |
| 1058 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 1059 | unsigned int *nxt; |
| 1060 | |
| 1061 | /* Call "data" filters only */ |
| 1062 | if (!IS_DATA_FILTER(filter, chn)) |
| 1063 | continue; |
| 1064 | |
| 1065 | nxt = &FLT_NXT(filter, chn); |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 1066 | if (FLT_OPS(filter)->tcp_data) { |
Willy Tarreau | 44a41a8 | 2018-06-19 07:16:31 +0200 | [diff] [blame] | 1067 | unsigned int i = ci_data(chn); |
Christopher Faulet | 55048a4 | 2016-06-21 10:44:32 +0200 | [diff] [blame] | 1068 | |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 1069 | ret = FLT_OPS(filter)->tcp_data(s, filter, chn); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1070 | if (ret < 0) |
| 1071 | break; |
Willy Tarreau | 44a41a8 | 2018-06-19 07:16:31 +0200 | [diff] [blame] | 1072 | delta += (int)(ci_data(chn) - i); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1073 | |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 1074 | /* Increase next offset of the current filter */ |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 1075 | *nxt += ret; |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 1076 | |
| 1077 | /* And set this value as the bound for the next |
| 1078 | * filter. It will not able to parse more data than the |
| 1079 | * current one. */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1080 | b_set_data(&chn->buf, co_data(chn) + *nxt); |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 1081 | } |
| 1082 | else { |
| 1083 | /* Consume all available data */ |
Willy Tarreau | 44a41a8 | 2018-06-19 07:16:31 +0200 | [diff] [blame] | 1084 | *nxt = ci_data(chn); |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 1085 | } |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1086 | |
| 1087 | /* Update <ret> value to be sure to have the last one when we |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 1088 | * exit from the loop. This value will be used to know how much |
| 1089 | * data are "forwardable" */ |
| 1090 | ret = *nxt; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1091 | } |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 1092 | |
| 1093 | /* Restore the original buffer state */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1094 | b_set_data(&chn->buf, co_data(chn) + buf_i + delta); |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 1095 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1096 | return ret; |
| 1097 | } |
| 1098 | |
| 1099 | /* |
| 1100 | * Calls 'tcp_forward_data' callback for all "data" filters attached to a |
| 1101 | * stream. This function is called when some data can be forwarded. It takes |
| 1102 | * care to update the forward offset of filters and adjusts "forwardable" data |
| 1103 | * to be sure that a filter cannot forward more data than its predecessors. A |
| 1104 | * filter can choose to not forward all parsed data. Returns a negative value if |
| 1105 | * an error occurs, else the number of forwarded bytes. |
| 1106 | */ |
| 1107 | static int |
| 1108 | flt_forward_data(struct stream *s, struct channel *chn, unsigned int len) |
| 1109 | { |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 1110 | struct filter *filter; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1111 | int ret = len; |
| 1112 | |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 1113 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 1114 | unsigned int *fwd; |
| 1115 | |
| 1116 | /* Call "data" filters only */ |
| 1117 | if (!IS_DATA_FILTER(filter, chn)) |
| 1118 | continue; |
| 1119 | |
| 1120 | fwd = &FLT_FWD(filter, chn); |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 1121 | if (FLT_OPS(filter)->tcp_forward_data) { |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1122 | /* Remove bytes that the current filter considered as |
| 1123 | * forwarded */ |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 1124 | ret = FLT_OPS(filter)->tcp_forward_data(s, filter, chn, ret - *fwd); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1125 | if (ret < 0) |
| 1126 | goto end; |
| 1127 | } |
| 1128 | |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 1129 | /* Adjust bytes that the current filter considers as |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1130 | * forwarded */ |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 1131 | *fwd += ret; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1132 | |
| 1133 | /* And set this value as the bound for the next filter. It will |
| 1134 | * not able to forward more data than the current one. */ |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 1135 | ret = *fwd; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1136 | } |
| 1137 | |
| 1138 | if (!ret) |
| 1139 | goto end; |
| 1140 | |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 1141 | /* Finally, adjust filters offsets by removing data that HAProxy will |
| 1142 | * forward. */ |
Christopher Faulet | fcf035c | 2015-12-03 11:48:03 +0100 | [diff] [blame] | 1143 | list_for_each_entry(filter, &strm_flt(s)->filters, list) { |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 1144 | if (!IS_DATA_FILTER(filter, chn)) |
| 1145 | continue; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1146 | FLT_NXT(filter, chn) -= ret; |
| 1147 | FLT_FWD(filter, chn) -= ret; |
| 1148 | } |
| 1149 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1150 | end: |
| 1151 | return ret; |
| 1152 | } |
| 1153 | |
| 1154 | /* |
| 1155 | * 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] | 1156 | * AN_REQ/RES_FLT_XFER_DATA analyzer. When called, it is responsible to forward |
| 1157 | * data when the proxy is not in http mode. Behind the scene, it calls |
| 1158 | * consecutively 'tcp_data' and 'tcp_forward_data' callbacks for all "data" |
| 1159 | * filters attached to a stream. Returns 0 if an error occurs or if it needs to |
| 1160 | * wait, any other value otherwise. |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1161 | */ |
| 1162 | int |
| 1163 | flt_xfer_data(struct stream *s, struct channel *chn, unsigned int an_bit) |
| 1164 | { |
| 1165 | int ret = 1; |
| 1166 | |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 1167 | /* If there is no "data" filters, we do nothing */ |
Christopher Faulet | 166bd75 | 2019-11-08 15:31:49 +0100 | [diff] [blame] | 1168 | if (!HAS_DATA_FILTERS(s, chn) || (s->flags & SF_HTX)) |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 1169 | goto end; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1170 | |
| 1171 | /* Be sure that the output is still opened. Else we stop the data |
| 1172 | * filtering. */ |
| 1173 | 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] | 1174 | ((chn->flags & CF_SHUTW) && (chn->to_forward || co_data(chn)))) |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1175 | goto end; |
| 1176 | |
| 1177 | /* Let all "data" filters parsing incoming data */ |
| 1178 | ret = flt_data(s, chn); |
| 1179 | if (ret < 0) |
| 1180 | goto end; |
| 1181 | |
| 1182 | /* And forward them */ |
| 1183 | ret = flt_forward_data(s, chn, ret); |
| 1184 | if (ret < 0) |
| 1185 | goto end; |
| 1186 | |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 1187 | /* Consume data that all filters consider as forwarded. */ |
Willy Tarreau | bcbd393 | 2018-06-06 07:13:22 +0200 | [diff] [blame] | 1188 | c_adv(chn, ret); |
Christopher Faulet | da02e17 | 2015-12-04 09:25:05 +0100 | [diff] [blame] | 1189 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1190 | /* Stop waiting data if the input in closed and no data is pending or if |
| 1191 | * the output is closed. */ |
| 1192 | if ((chn->flags & CF_SHUTW) || |
Willy Tarreau | 5ba6552 | 2018-06-15 15:14:53 +0200 | [diff] [blame] | 1193 | ((chn->flags & CF_SHUTR) && !ci_data(chn))) { |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1194 | ret = 1; |
| 1195 | goto end; |
| 1196 | } |
| 1197 | |
| 1198 | /* Wait for data */ |
| 1199 | return 0; |
| 1200 | end: |
| 1201 | /* Terminate the data filtering. If <ret> is negative, an error was |
| 1202 | * encountered during the filtering. */ |
| 1203 | return handle_analyzer_result(s, chn, an_bit, ret); |
| 1204 | } |
| 1205 | |
| 1206 | /* |
| 1207 | * Handles result of filter's analyzers. It returns 0 if an error occurs or if |
| 1208 | * it needs to wait, any other value otherwise. |
| 1209 | */ |
| 1210 | static int |
| 1211 | handle_analyzer_result(struct stream *s, struct channel *chn, |
| 1212 | unsigned int an_bit, int ret) |
| 1213 | { |
| 1214 | int finst; |
Christopher Faulet | eab13f0 | 2019-09-06 15:24:55 +0200 | [diff] [blame] | 1215 | int status = 0; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1216 | |
| 1217 | if (ret < 0) |
| 1218 | goto return_bad_req; |
| 1219 | else if (!ret) |
| 1220 | goto wait; |
| 1221 | |
| 1222 | /* End of job, return OK */ |
| 1223 | if (an_bit) { |
| 1224 | chn->analysers &= ~an_bit; |
| 1225 | chn->analyse_exp = TICK_ETERNITY; |
| 1226 | } |
| 1227 | return 1; |
| 1228 | |
| 1229 | return_bad_req: |
| 1230 | /* An error occurs */ |
| 1231 | channel_abort(&s->req); |
| 1232 | channel_abort(&s->res); |
| 1233 | |
| 1234 | if (!(chn->flags & CF_ISRESP)) { |
Christopher Faulet | 0184ea7 | 2017-01-05 14:06:34 +0100 | [diff] [blame] | 1235 | s->req.analysers &= AN_REQ_FLT_END; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1236 | finst = SF_FINST_R; |
Christopher Faulet | eab13f0 | 2019-09-06 15:24:55 +0200 | [diff] [blame] | 1237 | status = 400; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1238 | /* FIXME: incr counters */ |
| 1239 | } |
| 1240 | else { |
Christopher Faulet | 0184ea7 | 2017-01-05 14:06:34 +0100 | [diff] [blame] | 1241 | s->res.analysers &= AN_RES_FLT_END; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1242 | finst = SF_FINST_H; |
Christopher Faulet | eab13f0 | 2019-09-06 15:24:55 +0200 | [diff] [blame] | 1243 | status = 502; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1244 | /* FIXME: incr counters */ |
| 1245 | } |
| 1246 | |
| 1247 | if (s->txn) { |
| 1248 | /* Do not do that when we are waiting for the next request */ |
Christopher Faulet | eab13f0 | 2019-09-06 15:24:55 +0200 | [diff] [blame] | 1249 | if (s->txn->status > 0) |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1250 | http_reply_and_close(s, s->txn->status, NULL); |
| 1251 | else { |
Christopher Faulet | eab13f0 | 2019-09-06 15:24:55 +0200 | [diff] [blame] | 1252 | s->txn->status = status; |
| 1253 | http_reply_and_close(s, status, http_error_message(s)); |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1254 | } |
| 1255 | } |
| 1256 | |
| 1257 | if (!(s->flags & SF_ERR_MASK)) |
| 1258 | s->flags |= SF_ERR_PRXCOND; |
| 1259 | if (!(s->flags & SF_FINST_MASK)) |
| 1260 | s->flags |= finst; |
| 1261 | return 0; |
| 1262 | |
| 1263 | wait: |
| 1264 | if (!(chn->flags & CF_ISRESP)) |
| 1265 | channel_dont_connect(chn); |
| 1266 | return 0; |
| 1267 | } |
| 1268 | |
| 1269 | |
| 1270 | /* Note: must not be declared <const> as its list will be overwritten. |
| 1271 | * Please take care of keeping this list alphabetically sorted, doing so helps |
| 1272 | * all code contributors. |
| 1273 | * Optional keywords are also declared with a NULL ->parse() function so that |
| 1274 | * the config parser can report an appropriate error when a known keyword was |
| 1275 | * not enabled. */ |
| 1276 | static struct cfg_kw_list cfg_kws = {ILH, { |
| 1277 | { CFG_LISTEN, "filter", parse_filter }, |
| 1278 | { 0, NULL, NULL }, |
| 1279 | } |
| 1280 | }; |
| 1281 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1282 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 1283 | |
Willy Tarreau | 172f5ce | 2018-11-26 11:21:50 +0100 | [diff] [blame] | 1284 | REGISTER_POST_CHECK(flt_init_all); |
| 1285 | REGISTER_PER_THREAD_INIT(flt_init_all_per_thread); |
| 1286 | REGISTER_PER_THREAD_DEINIT(flt_deinit_all_per_thread); |
| 1287 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1288 | /* |
| 1289 | * Local variables: |
| 1290 | * c-indent-level: 8 |
| 1291 | * c-basic-offset: 8 |
| 1292 | * End: |
| 1293 | */ |